/* Bootstrap modifications */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

.modal-dialog {
    max-width: 1200px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.modal-content {
    margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input:focus{
    outline: none;
}

@media (max-width: 1199.98px) {
    .sm-background-container {
        background: center center;
        background-size: cover;
        height: 100vh;
        width: 100vw;
        overflow: hidden;
    }
}

.xl-background-container {
    position: relative;
    
}

.xl-background-container::after {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    z-index:-1;
    background-position: right;
    background-size: cover;
    background-image: url('/assets/img/desktopback-rewind-mobile.jpg');
}

@media (min-width: 900px) {
    .xl-background-container::after {
        background-position: top center;
        background-size: cover;
        background-image: url('/assets/img/desktopback-rewind.jpg');
    }
}

@media (min-width: 1200px) {
    .xl-background-container::after {
        background-position: top right;
        background-size: cover;
        background-image: url('/assets/img/desktopback-rewind.jpg');
    }
}

@media (min-width: 1200px) {
    .xl-background-container {
        height: 100vh;
        width: 100vw;
        overflow: hidden;
    }
}

.footer-pan {
    background-color: white;
    border-radius: 10px;
    margin: 9px;
}

.play-button {
    animation: pulse-animation 2.5s infinite;
    transition: all 1s ease-out;
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}


/* LEFT COL */

.content {
    display: flex;
    flex-direction: column;
}

.top-bar {
    margin-top: 1rem;
}

.play {
    margin-top: auto;
}

#play {
    width: 88px;
}



.title {
    margin-top: 3.125rem;
    margin-bottom: 4rem;
    color: #ffffff;
}

.title h1 {
    font-family: "Bebas Neue", Arial, sans-serif;
    font-size: 3.5rem;
    letter-spacing: 0.25rem;
}

.title h2 {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.1rem;
    font-weight: bold;
}

.btn-don-mobile {
    width: 300px;
}

@media (max-width: 700px) {
    .title {
        margin-top: 1.5rem;
        margin-bottom: 2rem;
    }

    .title h1 {
        font-size: 1.6875rem;
    }

    .title h2 {
        font-size: 0.75rem;
    }
}

.footer {
    margin-bottom: 0.5rem;
}

.footer>.col, .footer>.col-auto {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}


.dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: black;
    border-radius: 50%;
    display: inline-flex;
    margin-right: 0.25rem;
}

.menu {
    border-radius: 1000px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1;
    padding: 0.5rem 1rem;
    border: #B9B6B6 1px solid;
    display: none;
}

.menu a {
    color: #ffffff;
    font-family: "Open Sans", Arial, sans-serif;
}

.menu-container:hover .menu, .menu-container.opened .menu {
    display: flex;
}

@media (max-width: 1199.98px) {
    .menu {
        display: flex;
        visibility: hidden;
    }

    .menu a {
        color: #000000;
        opacity: 0.73;
        font-size: 0.625rem;
    }

    .menu-container:hover .menu, .menu-container.opened .menu {
        visibility: visible;
    }
}



/* RIGHT COL */

#formulaire-dons {
    width: 350px;
    background-color: white;
    padding: 3rem 1.25rem;
    border-radius: 10px;
    font-family: "Open Sans", Arial, sans-serif;
}

@media (max-width: 1199.98px) {
    #formulaire-dons {
        width: 100%;
    }
}

.frequence-dons {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.frequence-dons label {
    margin-bottom: 0.5rem;
    opacity: 0.3;
}

.frequence-dons label.checked {
    opacity: 1;
}

.frequence-dons input {
    -webkit-appearance: none;
}

.frequence-dons input:checked {
    font-weight: bold;
}

.frequence-dons input:after {
    background-color: #B9B6B6;
    border-radius: 50%;
    content: '';
    display: block;
    height: 1.1rem;
    top: -2px;
    left: -1px;
    width: 1.1rem;
    position: relative;
}

.frequence-dons input:checked:after {
    background-color: #ffffff;
    border: 3px solid #EF5713;
}

.equiv {
    border: 1px solid black;
    border-radius: 10px;
    text-align: center;
    color: black;
    font-size: 1.625rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    cursor: pointer;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    font-weight: bold;
    opacity: 0.3;
    transition: all 0.5s;
}

.equiv.selected, .equiv:hover {
    background-color: #EF5713;
    color: #ffffff;
    border-color: #EF5713;
    opacity: 1;
}

.equiv-row .col {
    padding: 0 0.325rem;
}

.equiv input, .equiv input:focus {
    width: 90px;
    background: unset;
    border: unset;
    line-height: 1.75rem;
    text-align: center;
    font-weight: bold;
}

.equiv.selected input {
    color: #ffffff;
}

.equiv input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000000;
    opacity: 1; /* Firefox */
    font-size: 0.75rem;
}

.equiv input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #000000;
    font-size: 0.75rem;
}

.equiv input::-ms-input-placeholder { /* Microsoft Edge */
    color: #000000;
    font-size: 0.75rem;
}

.equiv.selected input::placeholder, .equiv:hover input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #ffffff;
    opacity: 1; /* Firefox */
    font-size: 0.75rem;
}

.equiv.selected input:-ms-input-placeholder, .equiv:hover input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #ffffff;
    font-size: 0.75rem;
}

.equiv.selected input::-ms-input-placeholder, .equiv:hover input::-ms-input-placeholder { /* Microsoft Edge */
    color: #ffffff;
    font-size: 0.75rem;
}

.reduc {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.bouton-don {
    margin-bottom: 0.5rem;
}

.bouton-don img {
    width: 250px;
    transform: scale(1);
    transition: all 0.5s;
}

.bouton-don img:hover {
    transform: scale(1.2);
}

.rs p {
    font-family: "Open Sans", Arial, sans-serif;
    font-size: 0.825rem;
}

.rs img {
    width: 35px;
}

.rs>.col, .rs>.col-auto {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.footer-mobile-text {
    text-align: center;
    font-size:0.625rem;
    font-family: "Open Sans", Arial, sans-serif;
    color: #000000;
    opacity: 0.5;
    max-width: 240px;
    margin-top: 0.5rem;
}

.col-auto {
    max-width: 100vw;
}