/* General styles for the popup */
#__EAAPS_PORTAL {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 1000; /* Make sure the popup is on top of everything */
  
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resize the video to cover the container */
    z-index: -1; /* Place the video behind the popup */
}

/* Styles for the popup container */
.eapp-age-verification-popup-container {
    background-color: rgb(17, 17, 17);
    width: 400px;
    min-height: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Shadow for a "floating" effect */
    text-align: center;
}

/* Styles for the error message */
.eapp-age-verification-item-error {
    visibility: hidden;
    max-height: 0px;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid red;
    background-color: #ffe6e6; /* Light red */
    color: red;
    font-weight: bold;
    text-align: center;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10%);
    transition: opacity 1s ease, transform 1s ease, visibility 1s, max-height 1s ease, padding 1s, margin 1s ease;
    border-radius: 5px;
}

.eapp-age-verification-item-error.show {
    visibility: visible;
    max-height: 100px;
    transform: translateY(0%);
    opacity: 1;
    padding: 20px;
    margin: 10px 0;
}

/* Styles for the question */
.eapp-age-verification-item-message {
    font-size: 20px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 35px;
}

/* Styles for the buttons container */
.eapp-age-verification-item-allow-buttons-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.eapp-age-verification-item-allow-buttons-yes,
.eapp-age-verification-item-allow-buttons-no {
    background-color: #2ca935; /* Blue */
    color: white;
    border: none;
    padding: 10px 40px;
    margin: 10px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.eapp-age-verification-item-allow-buttons-yes:hover,
.eapp-age-verification-item-allow-buttons-no:hover {
    background-color: #047c0c; /* Darker blue */
}

.eapp-age-verification-item-additionalInfo {
    font-size: 14px;
    color: rgb(255, 255, 255);
    margin-top: 35px;
}