.modal-wrapper {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: auto;
    z-index: 12;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal {
    padding: 50px;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px rgba(34, 41, 47, 0.1);
    border-radius: 20px;
    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: 12px;
    right: 12px;
    transition: all 0.3s ease;
}

.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: var(--middle-font-size); */
    margin-bottom: 30px;
}

.modal-input {
    padding: 14px 22px;
    border-radius: 30px;
    border: 1px solid #989898;
    display: block;
    /* margin: 20px auto; */
    margin-bottom: 30px;
    width: calc(100% - 46px);
}

.modal-error {
    font-size: var(--middle-font-size);
    color: red;
    margin: 15px auto;
}
