@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');
.form-container.bg-1{
    background-color: #ffffff;
}
.form-container.bg-2{
    background-color: #f7f7f7;
}
.form-container.bg-3{
    background-color: #f4f5f6;
}
.form-container .form-heading{
    margin-bottom: 30px;
}
.form-container .form-heading .title{
    text-align: center;
    color: #000000;
    font-size: 36px;
    font-family: 'Oswald', sans-serif;
}
.form-container.dark-mode .form-heading .title{
    color: rgba(255, 255, 255, 0.85);
}
.form-container .form-heading p{
    color: #333333;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.form-container.dark-mode .form-heading p{
    color: rgba(255, 255, 255, 0.85);
}
.form-container form.custom-form .form-label{
    font-size: 18px;
    color: #333333;
    font-family: 'Inter', sans-serif;
}
.form-container.dark-mode form.custom-form .form-label{
    color: rgba(255, 255, 255, 0.85);
}
.form-container form.custom-form .form-group .invalid-feedback{
    color: red;
    margin-top: 10px;
}
.form-container form.custom-form.styled-input .form-control,
.form-container form.custom-form.styled-input .form-select{
    background-color: #f3f4f5;
}
.form-container form.custom-form .form-control,
.form-container form.custom-form .form-select{
    height: 52px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    font-size: 18px;
}
.form-container.dark-mode form.custom-form .form-control,
.form-container.dark-mode form.custom-form .form-select{
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.85);
}
.form-container form.custom-form.bordered{
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 40px;
}
.form-container.dark-mode form.custom-form.bordered{
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.form-container form.custom-form.centered{
    width: 50%;
    margin: 0 auto;
}
.form-container form.custom-form button[type="submit"]{
    width: 100%;
    padding: 10px;
    font-size: 21px;
    border-radius: 6px;
    background-color: #F5C34B;
    border: 1px solid #F5C34B;
    color: #041E42;
    font-family: 'Inter', sans-serif;
}
.form-container.dark-mode form.custom-form button[type="submit"]{
    background-color: rgb(0, 121, 107);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgb(0, 121, 107);
}
.form-container form.custom-form input[type="file"].has-error,
.form-container form.custom-form .form-control.has-error,
.form-container form.custom-form .form-select.has-error{
    border: 1px solid red;
}

.form-container form.custom-form .form-group.relative{
    position: relative;
}
.form-container form.custom-form .form-group.relative .dropdown{
    position: absolute;
    width: 100%;
    display: none;
    max-height: 250px;
    border: 1px solid #f4f5f6;
    overflow-y: auto;
    margin-top: 5px;
    left: 0;
    z-index: 10;
    background-color: #FFFFFF;
    border: 1px solid rgba(51, 51, 51, 0.4);
}
.form-container form.custom-form .form-group.relative .dropdown ul{
    margin-bottom: 0;
}
.form-container form.custom-form .form-group.relative .dropdown ul li{
    padding: 5px 10px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.3);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
    color: #666666;
}
.form-container form.custom-form .form-group.relative .dropdown ul li:hover{
    background-color: #333333;
    color: #ffffff;
}
.form-container form.custom-form .form-group.image-group{
    padding: 8px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.form-container form.custom-form .form-group.image-group .close-btn{
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 5px;
    color: #ffffff;
    background-color: #FF4C4C;
    padding: 0 10px;
    cursor: pointer;
}
.form-container form.custom-form .form-group.image-group .image{
    width: 150px;
    height: 150px;
}
.form-container form.custom-form .form-group.image-group .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.form-container form.custom-form .form-group.image-group .info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.form-container form.custom-form .form-group.image-group label{
    width: 90px;
    padding: 5px;
    background-color: #8CA1B1;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
}
.form-container form.custom-form .form-group.image-remove-group button.remove-image{
    background-color: #FF4C4C;
    border: none;
    color: #f4f5f6;
    cursor: pointer;
    padding: 2px 10px;
    outline: none;
    border-radius: 5px;
}
.form-container.dark-mode form .form-section .form-section-heading{
    background-color: rgba(255, 255, 255, 0.3);
    padding: 10px;
    margin-bottom: 15px;
}   
.form-container.dark-mode form .form-section .form-section-heading h4{
    text-align: center;
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}
.form-container.dark-mode form .add-more-btn{
    padding: 4px 15px;
    border-radius: 5px;
    color: #333333;
    background-color: #f4f5f6;
    border: 1px solid #f4f5f6;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}
.form-container.dark-mode form .operation-hours .operation-hour{
    background-color: #141618;
    padding: 20px 10px 10px 10px;
    border-radius: 5px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.7);
}
.form-container.dark-mode form .operation-hours .operation-hour.edit-operation-hour{
    padding: 0px 10px 10px 10px;
}
.form-container.dark-mode form .operation-hours .operation-hour.edit-operation-hour .day-title{
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Oswald', sans-serif;
    text-transform: capitalize;
    letter-spacing: 0.75px;
}
.form-container.dark-mode form .operation-hours .operation-hour.edit-operation-hour .is_closed span{
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
}
.form-container.dark-mode form .operation-hours .operation-hour.edit-operation-hour .is_closed input{
    width: 20px;
    height: 20px;
}
.form-container form .operation-hours .operation-hour span.close-icon{
    position: absolute;
    right: 10px;
    top: 3px;
    font-size: 24px;
    cursor: pointer;
    color: #FF4C4C;
}
.form-container form .operation-hours .operation-hour .time-input-control{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.form-container form .operation-hours .operation-hour .time-input-control .form-group{
    flex-basis: calc(50% - 10px);
}
.form-container form .operation-hours .operation-hour .schedules{
    margin-top: 20px;
}
.form-container form .operation-hours .operation-hour .schedules ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.form-container form .operation-hours .operation-hour .schedules ul li{
    flex-basis: calc(14.25% - 10px);
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-container form .operation-hours .operation-hour .schedules ul li input{
    height: 25px;
    width: 25px;
}
.form-container form .operation-hours .operation-hour .schedules ul li label{
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    font-family: 'Inter', sans-serif;
}
.form-container form .image-section .image-group-2{
    display: flex;
    border: 1px dashed rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    height: 170px;
    background: #141618;
    position: relative;
}
.form-container form .image-section .image-group-2 span.close-icon{
    position: absolute;
    right: 10px;
    top: 3px;
    font-size: 24px;
    cursor: pointer;
    color: #FF4C4C;
}
.form-container form .image-section .image-group-2 .image{
    width: 35%;
    background: #23283a;
    display: none;
}
.form-container form .image-section .image-group-2.show-image .image{
    display: block;
}
.form-container form .image-section .image-group-2 .image img{
    width: 100%;
    height: 100%;
}
.form-container form .image-section .image-group-2 .upload-btn{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-container form .image-section .image-group-2 .upload-btn h5{
    color: rgba(255, 255, 255, 0.85);
}
.form-container form .image-section .image-group-2 .upload-btn.show-image{
    width: 65%;
}
.form-container form .image-section .image-group-2 .upload-btn label{
    background-color: #ffffff;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}
.form-container form .amenities ul{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.form-container form .amenities ul li{
    display: flex;
    align-items: center;
    gap: 5px;
}
.form-container form .amenities ul li input{
    width: 25px;
    height: 25px;
}
.form-container form .amenities ul li label.form-label{
    margin-bottom: 0;
}
@media only screen and (max-width:1199px){
    .form-container form.custom-form.centered{
        width: 60%;
    }
}

@media only screen and (max-width:991px){
    .form-container form.custom-form.centered{
        width: 90%;
    }
}
@media only screen and (max-width:767px){
    .form-container form.custom-form.centered{
        width: 100%;
    }
    .form-container form.custom-form.bordered{
        padding: 20px;
    }
    .form-container form .amenities ul li input,
    .form-container form .operation-hours .operation-hour .schedules ul li input{
        height: 20px;
        width: 20px;
    }
    .form-container form .operation-hours .operation-hour .schedules ul li label{
        font-size: 16px;
    }
    .form-container form .image-section .image-group-2{
        height: 150px;
    }
}

@media only screen and (max-width:567px){
    .form-container form.custom-form.bordered{
        padding: 20px 10px;
    }
    .form-container form .amenities ul li input,
    .form-container form .operation-hours .operation-hour .schedules ul li input{
        height: 18px;
        width: 18px;
    }
    .form-container form .operation-hours .operation-hour .schedules ul li label{
        font-size: 14px;
    }
}
@media only screen and (max-width:525px){
    .form-container form .operation-hours .operation-hour .schedules ul{
        justify-content: start;
        gap: 10px;
    }
    .form-container form .operation-hours .operation-hour .schedules ul li{
        flex-basis: calc(20% - 5px);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .form-container form .amenities ul li input,
    .form-container form .operation-hours .operation-hour .schedules ul li input{
        height: 20px;
        width: 20px;
    }
    .form-container form .operation-hours .operation-hour .schedules ul li label{
        font-size: 18px;
    }
    .form-container form .image-section .image-group-2 .upload-btn label{
        font-size: 16px;
        padding: 5px 10px;
    }
}
@media only screen and (max-width:425px){
    .form-container form.custom-form .form-group.image-group .image{
        width: 120px;
        height: 120px;       
    }
    .form-container form .amenities ul li label.form-label,
    .form-container form.custom-form .form-label{
        font-size: 16px;
    }
    .form-container form .image-section .image-group-2{
        height: 130px;
    }
    .form-container.dark-mode form .form-section .form-section-heading h4{
        font-size: 24px;
    }
}
@media only screen and (max-width:375px){
    .form-container form.custom-form .form-group.image-group .info h5{
        font-size: 14px;
    }
    .form-container form .amenities ul li input,
    .form-container form .operation-hours .operation-hour .schedules ul li input{
        height: 18px;
        width: 18px;
    }
    .form-container form .amenities ul li label.form-label,
    .form-container form .operation-hours .operation-hour .schedules ul li label{
        font-size: 13px;
    }
    .form-container form .operation-hours .operation-hour .form-control{
        height: 40px;
    }
    .form-container.dark-mode form .add-more-btn{
        font-size: 16px;
    }
    .form-container form .image-section .image-group-2 .upload-btn label{
        font-size: 14px;
        padding: 5px 10px;
    }
    .form-container.dark-mode form .form-section .form-section-heading h4{
        font-size: 18px;
    }
}
@media only screen and (max-width:345px){
    .form-container form.custom-form .form-group.image-group .info h5{
        font-size: 14px;
    }
    .form-container form .amenities ul li label.form-label,
    .form-container form .operation-hours .operation-hour .schedules ul li label{
        font-size: 13px;
    }
}