/*age gate*/
.age-gate-background-color,.age-gate-background {
    display: none;
}

.age-gate-wrapper {
    background-color: rgba(0,0,0,0.7); 
}

.age-gate {
    max-width: 36vw;
    width: 100%;
    padding-left: 4.466vw;
    padding-right: 4.466vw;
    padding-top: 20px;
    overflow: hidden;
    height: 100vh;
    overflow-y: scroll;
}
@media screen and (max-width: 767px) {
    .age-gate-wrapper {
     padding: 0;   
    }
    .age-gate {
        margin:0;
        max-width: 100%;   
        max-height: inherit;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
   
    .age-gate  {
        max-width: 62vw;
    }
}

.age-gate-form::-webkit-scrollbar {
  display: none;
}

.age-gate-subheading,
.age-gate-headline {
  font-size: 14px;
  line-height: 22px;
  font-weight: 300;
  font-family: var(--body-font);
  color: #373737;
  margin-top:30px;
  margin-bottom: 3.660vw;
}


.age-gate-label {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 10px;
}

.age-gate select.age-gate-select,
.age-gate select.age-gate__region {
    cursor: pointer;
    max-width: 100%;
    text-align: left;
    border: none;
    padding-bottom: 11px;
    padding-left: 0;
    border-bottom: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    font-size: 14px;
    line-height: 19px;
    font-family: var(--body-font);
    -webkit-appearance: none;
    border-radius: 0;
    background-color: transparent;
}

.age-gate select.age-gate-select,
.age-gate select.age-gate__region {
    background-image: url(../images/svg/arrow-down.svg);
    background-repeat: no-repeat;
    background-position: right center;
}

.age-gate-form-elements {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 0px; /* hotfix: otherwise on small viewport height, the validate button get flex-shrinked */
}

.age-gate-form-elements .age-gate-form-section {
    display:none;
}

.age-gate-form-elements .age-gate-form-section:last-child {
    display: block;
    width: 100%;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-bottom: 0px; /* hotfix: otherwise on small viewport height, the validate button get flex-shrinked */
}

.age-gate-form-elements.visible .age-gate-form-section {
    display: block;
    width: 30%;
    margin: 0px;
    margin-bottom: 30px;
}


.age-gate-form-elements .age-gate-form-section label {
    display: none;
}

.note {
  font-size: 12px;
  line-height: 22px;
  text-align: left;
  color: var(--secondary-color);
  margin-bottom: 5.124vw;
}

.capitalize {
   text-transform: uppercase;
}

.age-gate-remember-wrapper {
    text-align: left;
    width: 100%;
    display: flex;
}

.age-gate-remember-text {
    font-size: 12px;
    line-height: 22px;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}

.age-gate-remember input::before {
    content:'';
    width:10px;
    height: 10px;
    background-color: var(--primary-color);
    position: absolute;
    top: 1px;
    left: 1px;
    opacity: 0;
    -webkit-transition: all 450ms ease;
    -o-transition: all 450ms ease;
    transition: all 450ms ease;
}

.age-gate-remember input:checked::before {
    opacity: 1;
}

.age-gate-remember input {
    height: 14px;
    width: 14px;
    border: 1px solid rgba(55, 55, 55, 0.3);
    margin: 0px;
    margin-right: 10px;
    position: relative;
    border-radius: 0px;
}

form input, form input:focus, form select, form select:focus {
    outline: none;
}

.age-gate-additional-information {
  font-size: 12px;
  line-height: 22px;
  text-align: left;
  color: var(--secondary-color);
}

button.age-gate-button {
    background-color: transparent !important;
    border: none;
    border-radius: 0;
    color: #000 !important;
    cursor: var(--ag-button-cursor, pointer);
    font-size: inherit;
    font-weight: inherit;
    padding: inherit;   
    letter-spacing: 2px;
    width: 100%;
    height: 100%;
}

button.age-gate-button:hover,
button.age-gate-button:focus
button.age-gate-button:active {
    background-color: transparent;
    color: #FFF !important;
}

.age-gate-submit {
    height: 50px;
    width: 100%;
    background-color: transparent;
    border: 1px solid var(--secondary-color);
    margin-top: 20px;
    font-size: 11px;
    letter-spacing: 2px;
    line-height: 15px;
    text-align: center;
    text-transform: uppercase;
    color: var(--secondary-color);
    cursor: pointer;
    -webkit-transition: all 350ms ease;
    -o-transition: all 350ms ease;
    transition: all 350ms ease;
    border-radius: 0px;
}

.age-gate-submit:hover {
    background-color: var(--tertiary-color);
    color: white;
    border-color:  var(--tertiary-color);
}

.age-gate-error.has-error {
    margin-top: -2vw;
    margin-bottom: 2vw;
}

.age-gate-error-message {
    color: var(--tertiary-color);
}

.age-gate-working .age-gate-form {
    opacity: 0;
}

.age-gate-loading-icon {
    background-color: white;
    border-radius: 7px;
}
