html {
    overflow-y: hidden;
}

#av-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    z-index: 999999;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 999993;

    color: #fff;
}

.av-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1;
}

.content-wrapper-h {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60%;

    z-index: 1;
}

.age-verification .av-logo img {
    max-width: 200px;
    min-width: 200px;
}

.age-verification .av-text {
    text-align: center;
}

.age-verification .av-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 3em;
    line-height: 1.5em;
}

.age-verification .av-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 1.2em;
    line-height: 1.5em;
}

.age-verification .av-accept-button button,
.age-verification .av-decline-button button {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;

    text-transform: uppercase;
    border-radius: 300px;
}

.age-verification .av-accept-button button {
    color: #fff;
    margin: 1em 0;
    padding: 10px 40px;
    font-size: 2.2em;
}

.age-verification .av-decline-button button {
    border-width: 1px;
    border-style: solid;
    font-size: 1.1em;
    padding: 10px 20px;
    background-color: transparent;
}

.av-background {
    background-image: url('/wp-content/plugins/vrlove-age-verification/img/background.jpg');
}

.age-verification .av-accept-button button:hover {
    background: #ff4070;
}

.age-verification .av-decline-button button:hover {
    color: #ff4070;
    border-color: #ff4070;
}

.web-primary-background {
    background-color: #ed2660;
}

.web-primary-color {
    color: #ed2660;
}

.web-primary-border {
    border-color: #ed2660;
}

/* Media Queries */

@media screen and (min-width: 426px) {
    .av-background {
        background-position: 60% 10%;
    }

    .age-verification button,
    .age-verification button:hover {
        -webkit-transition: background 0.1s linear;
        -moz-transition: background 0.1s linear;
        -o-transition: background 0.1s linear;
        transition: background 0.1s linear;
    }
}

@media screen and (max-width: 600px) {
    .av-background {
        background-position: 10%;
    }
}

@media screen and (min-width: 425px) and (max-width: 991px) {
    .age-verification .av-accept-button button {
        font-size: 1.5em;
    }
}

@media screen and (max-width: 425px) {
    .age-verification .av-logo img {
        max-width: 180px;
    }

    .age-verification button,
    .age-verification button:hover {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    .age-verification .av-accept-button button {
        font-size: 1.4em;
    }

    .age-verification .av-decline-button button {
        padding: 5px 15px;
    }

    .content-wrapper-h {
        width: 90%;
    }
}