.main-modal-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 12;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    padding: 50px 30px;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(34, 41, 47, 0.1);
    border-radius: 21px;
    z-index: 2;
    /* background-image: url(/images/go_meal_modal.png); */
    background-repeat: no-repeat;
    background-position: bottom left;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 18px;
    right: 18px;
    transition: all 0.3s ease;
}

.quiz-nav {
    margin: 10px auto;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal {
    width: 350px;
    text-align: center;
}

.modal-close-btn:hover {
    cursor: pointer;
    transform: rotate(90deg);
}

.modal-close-btn>button {
    background: none;
    border: none;
    cursor: pointer;
}

.modal-header {
    font-size: 25px;
    font-weight: 600;
}

.modal-input {
    padding: 20px 10px;
    /* border-radius: 20px; */
    border: none;
    border-bottom: 2px solid var(--dark-color);
    display: block;
    margin: 20px auto;
    width: calc(100% - 20px);
    color: rgba(0, 0, 0, 0.58);
    font-size: 20px;
}

.modal-body {
    /* padding: 0 13%; */
    text-align: left;
    margin-top: 30px;
    font-size: 20px;
}

.modal-arrow-right,
.modal-arrow-left {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D9D9D9;
    /* position: absolute; */
    cursor: pointer;
}

.modal-arrow-right {
    top: 40%;
    right: 10px;
}

.modal-arrow-left {
    top: 40%;
    left: 10px;
    transform: rotate(180deg);
}

.modal-error {
    font-size: var(--middle-font-size);
    color: red;
    margin: 15px auto;
}

.modal-text {
    font-size: 20px;
    text-align: center;
    margin: 49px 0;
}

.popup-form-input {
    border: 1px solid #828282;
    background-color: #fff;
    color: #828282;
    padding: 10px 25px;
    width: calc(100% - 50px);
    margin-bottom: 6px;
    font-size: 16px;
    border-radius: 100px;
}

.popup-form-subheader {
    font-weight: 500;
    font-size: 20px;
    color: #6F6F6F;
    text-align: center;
    width: 100%;
    /* max-width: 345px; */
    margin: 0 auto 15px;
}

#popup-form {
    display: flex;
    gap: 20px;
}

.popup-form-div {
    width: 500px;
}

@media screen and (max-width: 900px) {
    .modal {
        padding: 40px 20px;
        margin-top: 100px;
    }
    .modal-header {
        font-size: 20px;
    }
    .popup-form-subheader {
        font-size: 16px;
    }
    #popup-form {
        gap: 0px;
        flex-wrap: wrap;
    }
    .popup-form-div {
        width: 100%;
    }
    /* .modal-body {
        padding: 0 13%;
    } */
}