/********************* popups *********************/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    display: none;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.close-wrapper {
    width: 100%;
    text-align: right;
    cursor: pointer;
}

.close-wrapper img {
    width: 40px;
    height: 40px;
    margin-right: -40px;
    transition: transform 0.3s ease;
}

.close-wrapper.cvv-close img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.close-wrapper img:hover {
    transform: rotate(90deg);
}

.close-wrapper.close-chat-popup-wrapper {
    margin-bottom: -40px;
}

.popup_image-shadow {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1.5));
}

@media (max-width: 768px) {
    .popup {
        left: 50%;
        transform: translateX(-50%);
    }
    .popup_image-shadow {
        max-width: 70%;
    }
    .close-wrapper img {
    }
}
/*******************************************************/


/************************ dob *******************************/

.background_popup_with_dob,
.background-discount-offer-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 100;
    background: #495b6a6b;
}

.popup_with_dob {
    width: 90%;
    max-width: 500px;
    text-align: center;
    max-height: 300px;
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: #00000087 0px 5px 15px 4px;
}

.discount-offer-popup-content {
    width: 90%;
    max-width: 500px;
    text-align: center;
    max-height: 460px;
    background-color: #fcfcfc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: #00000087 0px 5px 15px 4px;
}

.popup_with_dob p {
    color: #007c70;
    font-size: x-large;
    font-weight: bold;
}

.discount-offer-popup-content p {
    color: #007c70;
    font-size: large;
    font-weight: bold;
}

.popup_with_dob-inner,
.discount-offer-popup-content-inner {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup_with_dob-inner input {
    width: 100%;
    max-width: 300px;
    height: 35px;
    margin-bottom: 10px;
    border: 1px solid #747474;
    padding: 10px;
    border-radius: 5px;
    font-size: large;
}

.discount-offer-popup-content-inner input {
    width: 100%;
    height: 35px;
    border: 1px solid #747474;
    padding: 10px;
    border-radius: 5px;
    font-size: large;
}

.popup_with_dob-inner .button {
    border-radius: 5px;
    height: 35px;
    color: #000;
    line-height: 34px;
    width: fit-content;
    padding: 0 15px;
    font-weight: 600;
    font-family: 'Inter';
    letter-spacing: 0.3px;
    background-color: #fec130;
    margin-left: 15px;
    cursor: pointer;
}

.discount-offer-popup-content-inner .button {
    border-radius: 5px;
    height: 35px;
    color: #000;
    line-height: 34px;
    width: fit-content;
    padding: 0 15px;
    font-weight: 600;
    font-family: 'Inter';
    letter-spacing: 0.3px;
    background-color: #fec130;
    cursor: pointer;
}

.dob_2 {
    display: none;
}

.discount-offer-popup-error {
    margin-bottom: 10px;
    text-align: left !important;
    display: block;
    visibility: hidden;
    height: 20px;
}

.button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.cancel-button {
    background-color: #ccc;
    color: #333;
    margin-left: 20px;
}

.cancel-button:hover,
.button:hover {
    background-color: #ddd;
}

@media (max-width: 768px) {
    .popup_with_dob p {
        color: #007c70;
        font-size: 26px;
        line-height: initial;
        font-weight: bold;
    }
}

.discount-offer-popup-content-2 {
    display: none;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

@keyframes blink {
    0% {
        opacity: 1;
        transform: scale(1.15);
    }
    50% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.get-discounts {
    animation: blink 2s infinite;
    display: inline-block;
}
