/* Css for age verification modal popup */

#show-modal {
    display: flex;
    align-items: center;
    background-color: #363360;
}

.main-content-modal {
    width: 40%;
    animation: main-content-modal ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    color: #000;
}

.button-set {
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
}

button#valid,
button#not-valid {
    border: solid 2px #ed3f46;
    background: transparent;
    color: #ed3f46;
}

button#valid:hover,
button#not-valid:hover {
    background: #ed3f46;
    color: white;
}

.valid-age,
.not-valid-age {
    width: 144px !important;
    font-size: 15px !important;
    padding: 15px !important;
}

.age_title {
    font-size: 38px;
    line-height: 34px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    word-wrap: break-word;
    color: #363360;
}

.age_info {
    text-align: center;
}

.age-header {
    display: flex;
    justify-content: center;
    padding-top: 4rem !important;
    padding-bottom: 3rem !important;
}

.copyright-content {
    width: 100%;
    text-align: center;
    padding: 30px;
}

.age-message {
    width: 100%;
    text-align: center;
    padding: 15px;
}

.notverify {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cancel-icon {
    font-size: 48px !important;
    padding: 10px;
    color: #d60b15;
}

.notverify-text {
    font-size: 24px;
    margin: 0;
}

.text-info {
    font-size: medium;
}

.main-content-modal .modal-header .age_logo{
    width: 50%;
}

/* ----------------------------------------------- */


/* Css for animation */

@keyframes main-content-modal {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* ----------------------------------------------- */

/* Responsive CSS */

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

    .valid-age,
    .not-valid-age,
    .text-info {
        font-size: 12px !important;
    }

    .age_title {
        font-size: 32px;
    }
}

/* ----------------------------------------------- */


/* ----------------------------------------------- */
/* md screen */

@media (max-width: 1199px) {
    #age-verified {
        width: 60%;
    }
}

/* ----------------------------------------------- */


/* ----------------------------------------------- */
/* xs screen */
@media (max-width: 767px) {
    #age-verified {
        width: 90%;
    }
}

/* ----------------------------------------------- */