.popup-container {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: var(--radius-xl, 12px);
    background: var(--Colors-Background-bg-primary, #FFF);
    box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03), 0px 20px 24px -4px rgba(16, 24, 40, 0.08);
    max-width: 80%;
    width: 550px;
    height: 421px;
    text-align: center;
    padding: 45px 41px 38px 41px;
}

.popup-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.popup-message-box {
    margin-top: 60px;
    margin-bottom: 52px;
    width: 508px;
    height: 122px;
    border-radius: var(--radius-lg, 10px);
    border: 1px dashed var(--transcos-600, #D0102C);
    background: rgba(247, 216, 221, 0.40);
    color: var(--transcos-600, #D0102C);
    display: flex;
    width: 478px;
    height: 137px;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    font-family: Kanit;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.popup-info {
    text-align: left;
    vertical-align: top;
    padding-left: 27px;
}

.popup-info h2 {
    margin: 0px;
    color: #454545;
    font-family: Kanit;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
    text-transform: capitalize;
}

.popup-info .normal {
    color: #454545;
    font-family: Kanit;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
}

.popup-info .small {
    color: #747474;
    font-family: Kanit;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize
}

.popup-info a {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
}

.continue {
    width: 361px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 100px;
    background: #C2C2C2;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
    color: #FFF;
    text-align: center;
    font-family: "Kanit";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
}

@media only screen and (max-width: 820px) {
    .popup-container {
        padding: 20px;
    }

    .popup-message-box, .continue {
        width: 90%;
    }
}