.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
}
.overlay.hide {
    display: none;
}

.popup_container {
    position: relative;
    width: 640px;
    background: var(--secondary-color);
    padding: 30px;
    border-radius: 5px;
}

.popup_container p {
    font-size: 16px;
    margin-bottom: 5px;
}
.heading {
    font-size: 20px !important;
    font-weight: 700;
    width: 90%;
    margin-bottom: 10px !important;
}

.payment_popup_form {
    margin: 20px 0;
}

.pay_button {
    border: none;
    /* width: 150px; */
    padding: 12px 35px;
    border-radius: 5px;
    background: var(--gradient);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
}
.pay_button:active {
    transform: scale(0.98);
}

.cancel_container {
    position: absolute;
    top: 15px;
    right: 20px;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.error_message {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.error_message p {
    margin-top: 5px;
    margin-left: 5px;
    font-size: 14px;
    color: var(--error);
    font-weight: bold;
}
