/* ageGate steps */

@font-face {
    font-family: "Inter";
    src: url("/themes/custom/aguila/css/fonts/Inter-Medium.woff2") format("woff2"), url("/themes/custom/aguila/css/fonts/Inter-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter Semi";
    src: url("/themes/custom/aguila/css/fonts/Inter-SemiBold.woff2") format("woff2"), url("/themes/custom/aguila/css/fonts/Inter-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: FuturaLT;
    src: url('/themes/custom/aguila/css/fonts/FuturaLT-Bold.woff2') format('woff2'),
        url('/themes/custom/aguila/css/fonts/FuturaLT-Bold.ttf') format("truetype"),
        url('/themes/custom/aguila/css/fonts/FuturaLT-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: FuturaLT;
    src: url('/themes/custom/aguila/css/fonts/FuturaLT-Heavy.woff2') format('woff2'),
        url('/themes/custom/aguila/css/fonts/FuturaLT-Heavy.ttf') format("truetype"),
        url('/themes/custom/aguila/css/fonts/FuturaLT-Heavy.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

:root {
    --font-agegate: FuturaLT;
}

* {
    box-sizing: border-box;
}

*:before,
*:after {
    box-sizing: border-box;
}

.agegate-visible .form-age .form-age__content button {
    width: 111px;
    height: 137px;
    font-size: 40px;
    font-family: Futura;
    background-color: #0834c3;
    color: #ffeb00;
    transition: 0.5s all;
    margin: 0px 8px;
}

.agegate-visible .form-age .form-age__content button:hover,
.agegate-visible .form-age .form-age__content button:focus,
.agegate-visible .form-age .form-age__content button:active {
    outline: 0;
    outline-color: transparent !important;
    border: 1px solid transparent;
}

.agegate-visible .form-age .form-age__content button:hover,
.agegate-visible .form-age .form-age__content button:visited,
.agegate-visible .form-age .form-age__content button:active {
    background-color: #ffeb00;
    color: #0834c3;
}

.agegate-visible #agv2 .agegate-legal .agegate-legal__row label.agv2__checkbox {
    /* border: 1px solid red; */
    max-width: 250px;
    margin: 0px auto;
    margin-bottom: 50px;
}

.agegate-visible #agv2 .agegate-legal .agegate-legal__row label.agv2__checkbox .agv2__label {
    font-size: 16px;
    /* font-family: Futura; */
}

/* .age_gate_yes */

#agv2 {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    font-size: 16px !important;
    font-family: var(--font-agegate,Futura);
    background-color: #ffffff;
}

#agv2 .agv2__container {
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 0 4rem;
    height: 100%;
}

#agv2 .agv2__container.black {
    color: black;
}

#agv2 .agv2__container.white {
    color: white;
}

#agv2 .agv2__wrapper {
    width: 100%;
    padding: 2rem 1rem;
    max-width: 547px;
    margin: 0 auto;
}

#agv2 .agv2__brand {
    max-width: 350px;
    /* margin: 0 auto; */
    margin-left: -6vw;
    width: 80%;
}

#agv2 .agv2__brand img {
    width: 100%;
}

#agv2 .agv2__p {
    /* font-size: 1rem; */
    font-size: 35px;
}

#agv2 .agv2__p.small {
    font-size: 0.9rem;
}

#agv2 .agv2__p.bold {
    font-weight: 500;
}

#agv2 .agv2__input {
    background: white;
    color: black;
    margin: 0.5rem;
    border-style: none;
    width: 100px;
    height: 150px;
    text-align: center;
    font-size: 3rem;
}

#agv2 .agv2__input::placeholder {
    color: black;
    opacity: 1;
}

#agv2 input[type="number"] {
    appearance: textfield;
}

#agv2 .agv2__checkbox {
    display: grid;
    grid-template-columns: min-content auto;
    grid-gap: 0.5em;
    font-size: 2rem;
}

#agv2 .agv2__checkbox--disabled {
    color: var(--disabled);
}

#agv2 .agv2__checkbox .checkbox__control {
    display: inline-grid;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    background: #ffffff;
    border: 5px solid white;
}

#agv2 .agv2__checkbox .checkbox__control svg {
    transition: transform 0.1s ease-in 25ms;
    transform: scale(0);
    transform-origin: bottom left;
}

#agv2 .agv2__checkbox .checkbox__input {
    display: flex;
    justify-content: center;
    align-items: center;
}

#agv2 .agv2__checkbox .checkbox__input > * {
    grid-area: checkbox;
}

#agv2 .agv2__checkbox .checkbox__input input {
    opacity: 0;
    width: 1em;
    height: 1em;
}

#agv2 .agv2__checkbox .checkbox__input input:focus + .checkbox__control {
    box-shadow: 0 0 0 0.05em #fff, 0 0 0.15em 0.1em currentColor;
}

#agv2 .agv2__checkbox .checkbox__input input:checked + .checkbox__control svg {
    transform: scale(1);
}

#agv2 .agv2__checkbox .checkbox__input input:disabled + .checkbox__control {
    color: var(--disabled);
}

#agv2 .agv2__label {
    font-size: 1.6rem;
    font-weight: 500;
}

#agv2 .form-age {
    margin: 2rem 0;
}

#agv2 .form-age__content {
    margin: 1rem 0;
    position: relative;
}

#agv2 .form-age__navigation {
    display: flex;
    justify-content: end;
    position: absolute;
    left: 0;
    top: 45%;
    width: 20%;
}

#agv2 .agegate-legal {
    margin: 3rem 0 1rem;
    text-align: left;
}

#agv2 .agegate-legal__row {
    margin: 1rem 0;
}

#agv2 .agegate__btns {
    text-align: center;
    margin: 2rem 0;
    display: none;
}

#agv2 .agegate__btn.main {
    width: 200px;
    height: 64px;
    background: #ffffff;
    border: 1px solid #877b52;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    line-height: 3.7rem;
    font-size: 1.7rem;
    color: black;
    font-weight: 500;
}

#agv2 .form-age__back {
    display: block;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
}

#age-gate-01 .error-year {
    font-weight: bold;
    color: red;
}

#age-gate-02 .error-year,
#age-gate-03 .error-year {
    font-weight: bold;
    color: white;
}

/* animation agegate */

/* #age-gate-01 {
  transition-delay: 0.1s;
}

#age-gate-02 {
  transition-delay: 0s;
}

#age-gate-03 {
  transition-delay: 0.8s;
} */

.buttons {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: -1;
}

.buttons button {
    border: none;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 5px;
    cursor: pointer;
}

.buttons button:hover {
    background: rgba(0, 0, 0, 0.04);
}

.buttons #top {
    position: absolute;
    top: 0%;
    left: 50%;
}

.buttons #bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
}

.buttons #left {
    position: absolute;
    top: 50%;
    left: 0px;
}

.buttons #right {
    position: absolute;
    top: 50%;
    right: 0;
}

.top-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    bottom: auto;
    right: auto;
    transition: all 0.9s cubic-bezier(0.6, 0.05, 0.4, 1);
}

.top-layer.active {
    top: 100%;
}

.top-layer--2 {
    transition-delay: 0.6s;
}

.top-layer--3 {
    transition-delay: 0.4s;
}

.top-layer--4 {
    transition-delay: 0.2s;
}

.top-layer--5 {
    transition-delay: 0.1s;
}

.bottom-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    bottom: auto;
    right: auto;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.bottom-layer.active {
    top: -100%;
}

.bottom-layer--2 {
    transition-delay: 0.12s;
}

.bottom-layer--3 {
    transition-delay: 0.4s;
}

.left-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    left: -100%;
    bottom: auto;
    right: auto;
    transition: all 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.left-layer.active {
    left: 0;
}

.left-layer--2 {
    transition-delay: 0.3s;
}

.left-layer--3 {
    transition-delay: 0.12s;
}

.left-layer--4 {
    transition-delay: 0.08s;
}

.right-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    top: auto;
    left: -100%;
    bottom: auto;
    right: auto;
    transition: all 0.9s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.right-layer.active {
    left: 0;
}

.right-layer--2 {
    transition-delay: 0.3s;
}

.right-layer--3 {
    transition-delay: 0.2s;
}

.agegate-visible .eapp-popup-layout-variation-slide-in-left-component {
    display: none !important;
}

/* animation agegate */

/* media querys */

@media (max-width: 420px) {
    #agv2 .agv2__input {
        width: 60px;
        height: 100px;
        font-size: 2.5rem;
    }
}

/* media querys */

/*# sourceMappingURL=agegate.css.map */

.agegate-visible #agv2 {
    position: relative;
    /* height: 100vh; */
    height: 115vh;
}

.agegate-visible #agv2 .agv2__container {
    padding: 0;
}

#age-gate-01,
.agegate-visible .agv2__container {
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.agegate-visible #agv2 .agv2__brand {
    /* width: 143px; */
    width: 241px;
    max-width: inherit;
    object-fit: contain;
    margin-bottom: 80px;
    position: absolute;
    top: 37px;
    left: 10vw;
}

.agegate-visible #agv2 .agv2__p.bold {
    color: white;
    text-transform: uppercase;
}

.agegate-visible #agv2 .agv2__wrapper {
    padding: 0;
}

.agegate-visible #agv2 .agv2__p.bold.nm {
    margin-bottom: 0;
}

.agegate-visible #agv2 .agv2__input {
    color: #003ca5;
}

.agegate-visible #agv2 .agv2__input::-webkit-input-placeholder {
    color: #003ca5;
}

.agegate-visible #agv2 .agv2__input:-ms-input-placeholder {
    color: #003ca5;
}

.agegate-visible #agv2 .agv2__input::placeholder {
    color: #003ca5;
}

.agegate-visible .dialog-off-canvas-main-canvas {
    position: relative;
    z-index: 999999;
}

.agegate-visible #header,
.agegate-visible .highlighted,
.agegate-visible #main-wrapper {
    display: none;
}

.agegate-visible #agv2 .agv2__checkbox .checkbox__control {
    width: 0.5em;
    height: 0.5em;
}

.agegate-visible .agv2__label,
.agegate-visible .agv2__p.small {
    color: white;
}

.agegate-visible #agv2 .form-age {
    margin: 1.5rem 0 0;
}

.agegate-visible #agv2 .agegate-legal__row .agv2__label,
.agegate-visible #agv2 .agegate-legal__row .agv2__p.small {
    font-family: "Inter";
    /* font-size: 0.6rem */
    font-size: 12px;
}

.agegate-visible #agv2 .agegate-legal__row .agv2__checkbox .agv2__label {
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.agegate-visible #agv2 .agegate-legal {
    margin: 0;
}

.agegate-visible #agv2 .agegate-legal__row {
    margin: 1rem 0 0;
}

.agegate-visible #agv2 .agegate-legal .agegate-legal__row:first-of-type {
    margin: 0;
}

.agegate-visible #agv2 .agegate__btns {
    margin: 2rem 0 0;
}

.agegate-visible #agv2 .agegate__btn.main {
    text-decoration: none;
    font-family: "Inter Semi";
    line-height: inherit;
    background: #ffeb00;
    color: #377dff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-newagegate__video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

@media (max-width: 640px) {
    .agegate-visible #agv2 .agv2__brand {
        width: 161px;
        position: unset;
        top: unset;
        left: unset;
    }
    #agv2 .agv2__brand {
        margin: 0px auto;
    }
    .agegate-visible #agv2 .agegate-legal .agegate-legal__row {
        /* border: 5px solid red; */
        padding: 0px 5px;
    }
    .agegate-visible
        #agv2
        .agegate-legal
        .agegate-legal__row
        label.agv2__checkbox
        .checkbox__input
        input[type="checkbox"] {
        position: absolute;
    }
    .agegate-visible .form-age .form-age__content button {
        width: 92px;
        height: 112px;
        margin: 0px 5px;
    }
    .agegate-visible #agv2 {
        position: relative;
        min-height: 680px;
        height: 100vh;
    }
    .agegate-visible #agv2 .agv2__label {
        font-size: 1.25rem;
    }
    .agegate-visible #agv2 #agv2 .agegate__btn.main {
        height: 54px;
        width: 170px;
    }
    .agegate-visible #agv2 .agv2__input {
        width: 60px;
        height: 90px;
        margin: 0.25rem;
    }
    .agegate-visible #agv2 .agv2__p.bold {
        /* font-size: 1rem; */
        font-size: 25px;
    }
}

@media (max-width: 280px) {
    .agegate-visible .form-age .form-age__content {
        display: flex;
        justify-content: space-evenly;
    }
}

/*@media screen and (min-width: 1280px){
  .agegate-visible #agv2{min-height: 950px;height: 950px;}
}*/

#onetrust-consent-sdk {
    font-family: initial !important;
}

/* Estilos Loyalty 06/2023 */

.agegate-visible #agv2 {
    height: 100vh !important;
}

.agv2__wrapper header {
    position: absolute;
    left: 6%;
    top: 33%;
}
@media (max-width: 1093px) {
    .agv2__wrapper header {
        position: relative;
        left: auto;
    }
}

#agv2 .agv2__brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.agegate-visible #agv2 .agv2__container {
    padding-top: 44px !important;
}
@media (max-height: 650px) {
    .agegate-visible #agv2 .agv2__container {
        padding-top: 0px !important;
    }
}

@media (max-width: 570px) {
    #agv2 .agv2__container .agv2__wrapper {
        /* row-gap: 46px; */
    }
}

.agegate-visible #agv2 .agv2__container .agv2__container__bg  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.agegate-visible #agv2 .agv2__container .agv2__container__bg img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
}

#agv2 .agv2__container .agv2__wrapper .form-age .form-age__header p.sub {
    font-size: 28px !important;
    line-height: 30px !important;
    font-weight: 500 !important;
    width: 466px;
    position: relative;
    margin: 24px auto 0;
    text-transform: inherit;
}
@media (max-width: 570px) {
    #agv2 .agv2__container .agv2__wrapper .form-age .form-age__header p.sub {
        font-size: 16px !important;
        line-height: 20px !important;
        width: 260px;
    }
}

#agv2 .agv2__container .agv2__wrapper .agv2__brand {
    width: 360px !important;
}
@media (max-width: 1318px) {
    #agv2 .agv2__container .agv2__wrapper .agv2__brand {
        width: 260px !important;
    }
}
@media (max-width: 570px) {
    #agv2 .agv2__container .agv2__wrapper .agv2__brand {
        width: 180px !important;
    }
}
@media (max-height: 700px) {
    #agv2 .agv2__container .agv2__wrapper .agv2__brand {
        width: 120px !important;
    }
}

#agv2 .agv2__container .agv2__wrapper .form-age .agegate-legal p.agv2__p {
    position: absolute;
    bottom: 15px;
    left: 0;
    padding: 0 5px;
    right: 0;
    text-align: center;
    font-family: var(--font-agegate) !important;
    font-weight: 200 !important;
}

#agv2 .agv2__checkbox .checkbox__control {
    border-radius: 0 !important;
    border: 2px solid #2c35ff !important;
}

#agv2 .agv2__container .agv2__wrapper .form-age .form-age__content .age_gate_yes,
#agv2 .agv2__container .agv2__wrapper .form-age .form-age__content .age_gate_no {
    background-color: #ffffff !important;
    border: 2px solid #2c35ff !important;
    color: #2c35ff !important;
    font-family: var(--font-agegate) !important;
    font-weight: 700;
    font-size: 26px !important;
    line-height: 26px !important;
    width: 107px !important;
    height: 125px !important;
}
@media (max-width: 1093px) {
    #agv2 .agv2__container .agv2__wrapper .form-age .form-age__content .age_gate_yes,
    #agv2 .agv2__container .agv2__wrapper .form-age .form-age__content .age_gate_no {
        width: 77px !important;
        height: 88px !important;
    }
}
#agv2 .agv2__container .agv2__wrapper .form-age .form-age__content .age_gate_yes:hover,
#agv2 .agv2__container .agv2__wrapper .form-age .form-age__content .age_gate_no:hover {
    background-color: #ffe100 !important;
    color: #000 !important;
    border: 2px solid #ffe100 !important;
}

#agv2 .agv2__container .agv2__wrapper .form-age .agegate-legal .agv2__checkbox span.agv2__label {
    font-weight: 200 !important;
    margin-left: 0 !important;
    font-family: var(--font-agegate) !important;
    font-weight: 200;
    font-size: 24px !important;
    line-height: 30px !important;
}
@media (max-width: 570px) {
    #agv2 .agv2__container .agv2__wrapper .form-age .agegate-legal .agv2__checkbox span.agv2__label {
        font-size: 18px !important;
    }
}

#agv2 .agv2__container .agv2__wrapper .form-age .agegate-legal {
    padding-top: 0 !important;
}

#agv2 .agv2__container .agv2__wrapper .form-age .form-age__header p {
    font-family: var(--font-agegate) !important;
    font-weight: 900;
    font-size: 45px !important;
    line-height: 45px !important;
    width: 350px;
    position: relative;
    margin: 0 auto;
}
@media (max-width: 570px) {
    #agv2 .agv2__container .agv2__wrapper .form-age .form-age__header p {
        font-size: 30px !important;
        line-height: 33px !important;
        width: 240px;
    }
}

#agv2 .agv2__container .agv2__wrapper .form-age .form-age__content {
    margin-top: 25px;
}

.left-layer {
    transition: none !important;
}
