:root{    /* URL-encoded inline SVG (witte check) */
--check-svg: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 8'/></svg>");
}

#agecheck-overlay {
    display:none;
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:10000;
    background-color:#FFF;
}

#agecheck-invalid{
    color:#FFF;
    font-size: 14px;
    background-color:rgba(200,0,0,.95);
    padding:5px 10px;
    margin-top:10px;
    text-align: center;
}

#agecheck-prompt.hidden,
#agecheck-invalid.hidden,
body>.preloading.hidden .spin
{
    display:none;
    opacity:0;
}

.agecheck-container
{
    position: fixed;
    left:0px;
    top:0px;
    bottom:0px;
    right:0px;
    opacity:1;
    -webkit-transition: opacity .3s linear;
    -moz-transition: opacity .3s linear;
    transition: opacity .3s linear;
    display: flex;
    flex:1;
    justify-content: center;
    align-items: center;
    overflow:auto;
}

.agecheck-container .center-box
{
    display:block;
    width:100%;
    margin:10px;
}
.agecheck-container .center-box .content
{
    margin:0 auto;
    max-width:540px;
    min-height:450px;
    padding:40px 40px 20px 40px;
    background-color:rgba(255,255,255,.3);
    color:#FFF;
    text-align: left;
}

#agecheck-prompt input[type="number"]{
    background-color:transparent;
    color:#FFF;
    border:none;
    border-bottom:1px solid #FFF;
    padding:10px 0px;
    margin: 0px 20px 30px 0;
    width:60px;
}
#agecheck-prompt input[type="number"]::placeholder{
    color:#FFF;
}

#agecheck-prompt .checkbox{
    position: relative;
    margin-top: 20px;
    margin-bottom:20px;
    display:flex;
    padding-left:30px;
    font-size:12px;
}

#rememberme_input{
    -webkit-appearance: none;
    appearance: none;
    opacity:.5;
}
#agecheck-prompt .checkbox__check{
    position: absolute;
    top:0;
    left:0px;
    height: 24px;
    width: 24px;
    min-width: 24px;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border:2px solid #FFF;
    background-color: rgba(255,255,255,0);
    transition: all 400ms cubic-bezier(0.3,0,0.7,1);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
}

#agecheck-prompt .checkbox__check.checked{
    background-color: #FFF;
    background-image: var(--check-svg);
}

#agecheck-prompt #enter-agecheck
{
    margin:20px auto;
    display:block;
    width:100%;
    max-width: 150px;
    color:#000 !important;
    border:3px solid #FFF !important;
    &:hover{
        background-color: transparent !important;
        color:#FFF !important;
    }
}



#agecheck-prompt #agecheck-endorsing-message {
    font-size: 12px;
    line-height: 20px;
}
