/* MODAL */

.is-visible {
  z-index: 999999;
  opacity: 1;
  visibility: visible !important;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}

.rgpd img {
  width: 52px;
}

/* The Modal RGPD (background) */
.modal-rgpd, .modal-mentions-legales {
    display: none;
    position: fixed;
	z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

/* Modal Content */
.modal-rgpd-content, .modal-mentions-legales-content {
    position: relative;
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 50%;
    border-radius: 8px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
}

/* The Close Button */
.close-rgpd, .close-mentions-legales {
    color: #aaa; /* 01a020 (vert) */
    float: right;
	margin-top: -10px;
    cursor: pointer;
    transition: color 0.2s;
}

.close-rgpd:hover, .close-mentions-legales:hover, 
.close-rgpd:focus, .close-mentions-legales:focus  {
    color: #dc3545;
}

/* Modal Text */
.modal-rgpd-content p {
    font-size: 1.1rem;
}

.modal-mentions-legales-content p {
    font-size: 1rem;
}

.show-hide {
	display: block;
}

/* RGPD link */

.learn-more {
  font-weight: 600;
  color: #382b22;
  text-transform: uppercase;
  padding: 1.25em 2em;
  background: #fff0f0;
  border: 2px solid #b18597;
  border-radius: 0.75em;
  transform-style: preserve-3d;
  transition: transform 150ms cubic-bezier(0, 0, 0.58, 1), background 150ms cubic-bezier(0, 0, 0.58, 1);
}

a.learn-more:link, a.learn-more:active, a.learn-more:visited {
  background-color: var(--bs-red);
  color:  var(--bs-white);
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 10px;
  border: 0;
}

a.learn-more:hover {
  background-color: var(--bs-pink);
  color: #fff;
}