.reservation-wrap {
    width: 920px;
    background-color: black;
    padding: 32px;
    margin-top: 80px;
    border-radius: 24px;
}

.reservation-content-wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
}

.reservation-selecting-half {
    width: 48%;
}

.reservation-contact-half {
    width: 48%;
}

.reservation-group-row {
    display: flex;
    justify-content: space-between;
}

.reservation-group {
    width: 48%;
    margin-top: 24px;
}

.reservation-group-contact {
    width: 100%;
    margin-top: 24px;
}

.reservation-group-contact input{
    outline: 0;
    width: 100%;
    height: 56px;
    background-color: #151515;
    border-radius: 8px;
    border: 0;
    margin-top: 16px;
    padding: 8px 16px;
    color: white;
}

.custom-select {
    margin-top: 16px;
    border: 0;
    color: white;
    cursor: pointer;
    position: relative;
}

.custom-selected {
    width: 100%;
    height: 56px;
    background-color: #151515;
    display: flex;
    align-items: center;
    border-radius: 12px;
    padding: 0 16px;
}

.custom-select-dropdown {
    width: 100%;
    background-color: #151515;
    top: calc(100% + 8px);
    position: absolute;
    z-index: 10;
    left: 0;
    border-radius: 12px;
    height: 200px;
    overflow-y: scroll;
    scrollbar-width: none;
}

.custom-select-dropdown::-webkit-scrollbar {
    display: none;
}

.custom-select-dropdown li {
    width: 100%;
    border-bottom: 1px solid #575757;
    padding: 16px;
    list-style: none;
}

.reservation-submit {
    height: 64px;
    color: white;
    background-color: #97041D;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 500;
    border: 0;
    width: 360px;
    margin-top: 24px;
    transition: all 0.2s;
}

.reservation-submit:hover {
    background-color: #6e0012;
}

@media only screen and (max-width: 980px) {
    .reservation-wrap {
        width: 94%;
    }

    #reservation-form {
        width: 100%;
        display: flex;
        justify-content: center;
    }
}

@media only screen and (max-width: 700px) {
    .reservation-wrap {
        width: 88%;
    }

    .reservation-content-wrap {
        flex-direction: column;
    }

    .reservation-selecting-half {
        width: 100%;
    }

    .reservation-contact-half {
        width: 100%;
    }
}

@media only screen and (max-width: 560px) {
    .reservation-submit {
        width: 100%;
    }
}

@media only screen and (max-width: 500px) {
    .reservation-wrap {
        width: 92%;
        padding: 24px;
    }
}