.overlay {
    font-family: "Public sans", sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    /* opacity: 0; */
    /* z-index: 0; */
    /* pointer-events: all; */
    z-index: 100;
    /* transition: all 0.2s ease-out; */
}
.overlay.active {
    display: block;
    /* animation: active 0.2s ease-out forwards; */
}
@keyframes active {
    0% {
        opacity: 0;
        pointer-events: none;
        z-index: 0;
    }
    100% {
        opacity: 1;
        z-index: 50;
        pointer-events: all;
    }
}

.container {
    position: absolute;
    width: 90%;
    max-width: 640px;
    background: var(--secondary-color);
    padding: 35px 30px;
    border-radius: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    opacity: 0;
    color: #fff;
    /* transition: all 0.2s ease-out; */
}

.overlay.active .container {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.cancel_container {
    position: absolute;
    top: 10px;
    cursor: pointer;
    right: 10px;
    height: 25px;
    width: 25px;
}

.cta {
    background: var(--gradient);
    color: #fff;
    padding: 8px 20px;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.head {
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0px;
}
.form {
    margin-top: 25px;
}
.total {
    font-size: 14px;
}
