/* ------------------------------------------------------------ *\
	footer

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.footer {
    flex-shrink: 0;
    position: relative;
    background-color: var(--footer-background-color);
    padding: 1.6rem 0;
    color: var(--footer-text-color-base);
;
}

.footer .footer__inner {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    gap: 2.4rem;
}

.footer .footer__logo {
    display: inline-block;
}

.footer .footer__content {
    display: flex;
    justify-content: space-between;
}

.footer .footer__aside {
    display: flex;
    justify-content: space-between;
}

.footer__bar {
    padding-top: 0.2rem;
    flex: 0 0 100%;
}

@media only screen and (max-width: 767px) {
    .footer {
        padding: 1.9rem 0 1.8rem;
    }

    .footer .footer__inner {
        display: block;
        margin: 0rem -0.2rem;
    }

    .footer .footer__logo {
        max-width: 15.8rem;
    }

    .footer .footer__aside {
        flex-direction: column-reverse;
        padding: 2.4rem 0;
        gap: 2.4rem;
    }

    .footer__bar {
        padding-top: 0rem;
    }
}

/* ------------------------------------------------------------ *\
	logo bbb

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.logo-bbb {
    transition: opacity 0.3s;
}

@media (hover: hover) {
    .logo-bbb:hover {
        opacity: 0.7;
    }
}

@media only screen and (max-width: 767px) {
    .logo-bbb {
        top: 0;
    }
}

/* ------------------------------------------------------------ *\
	nav terms

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.nav-terms {
}

.nav-terms ul {
    display: flex;
    font-weight: 700;
}

.nav-terms li + li:before {
    content: "|";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--footer-text-color-anchor);
}

.nav-terms li + li {
    padding-left: 1rem;
    margin-left: 0.6rem;
}

.nav-terms li {
    position: relative;
    font-size: 1.4rem;
}

.nav-terms li a {
    text-decoration: none;
    color: var(--footer-text-color-anchor);
}

@media (hover: hover) {
    .nav-terms li a:hover {
        text-decoration: underline;
    }
}

@media only screen and (max-width: 767px) {
    .nav-terms ul {
        display: block;
    }

    .nav-terms li {
        font-size: 1.5rem;
    }

    .nav-terms li:before {
        display: none;
    }

    .nav-terms li + li {
        margin-left: 0;
        padding-left: 0;
        padding-top: 1.6rem;
    }
}

/* ------------------------------------------------------------ *\
	copyright

	Can be found on the index.html page.
\* ------------------------------------------------------------ */

.copyright {
    font-size: 1.2rem;
    text-align: left;
    color: var(--body-text-color-fadedgray);
}

@media only screen and (max-width: 767px) {

}

/* ------------------------------------------------------------ *\
	Popup Modals

    Can be found on the index.html page.
\* ------------------------------------------------------------ */
.js-popup.popup {
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modal-background-color);
    z-index: 1;
    max-width: 100%;
}
.js-popup.popup:before {
    content: none;
}
.js-popup.popup .popup__content {
    padding: 28px 21px 20px;
    width: 616px;
    background-color: red;
    margin: 0 auto;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: -o-radial-gradient(
        center top,
        ellipse,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
    background: radial-gradient(
        ellipse at center top,
        var(--modal-content-background-color) 0,
        var(--modal-content-background-color) 100%
    );
;
    border-radius: 12px;
}
.mobile-only {
    display: none;
}
.desktop-only {
    display: block;
}
@media (max-width: 767px) {
    .mobile-only {
        display: block;
    }
    .desktop-only {
        display: none;
    }
}
@media (max-width: 767px),
    screen and (max-width: 812px) and (orientation: landscape) {
    .js-popup.popup .popup__content {
        width: 94%;
    }
}
.js-popup.popup .popup__title {
    text-align: center;
    font-size: 24px;
    color: var(--modal-header-text-color);
    text-transform: uppercase;
    margin-bottom: 23px;
    pointer-events: none;
}
.js-popup.popup .popup__body {
    background-color: var(--modal-content-background-color);
    padding: 33px 20px 20px 28px;

    border-radius: 5px;
    overflow: auto;
    height: 368px;
    font-size: 13px;
    letter-spacing: -0.0125em;
    margin-bottom: 23px;
    max-width: 100%;
    text-align: left;
}
.js-popup.popup .popup__body h4 {
    color: var(--body-text-color);
    font-size: 13px;
    margin-bottom: 0;
    }
    
.js-popup.popup .popup__body h3 {
    color: var(--modal-content-header-text-color);
    margin-bottom: 17px;
    font-size: 16px;
    letter-spacing: 0.017em;
    text-transform: uppercase;
}
.js-popup.popup .popup__body p {
    margin-bottom: 42px;
}
.js-popup.popup .popup__actions {
    text-align: center;
    margin-bottom: 6px;
}
/* .js-popup.popup .popup__actions .btn {
    background: var(--button-background-secondary);
} */
.js-popup.popup.is-visible {
    opacity: 1;
    pointer-events: all;
    z-index: 1060;
}
.wrapper.is-fixed {
    height: 100vh;
    overflow: hidden;
}
.offer-wrapper.is-fixed {
    overflow: inherit;
}
.popup__actions .js-close:after {
    content: normal;
}
.btn.js-close {
    min-width: 280px;
}
