.booking_appointment-container{
    width: 100%;
    height:100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking_appointment-box{
    display: flex;
    width: 80%;
    /* height: 100%; */
    min-height: 60vh;
    /* background-color: violet; */
    gap: 20px;
    overflow: hidden;
}

.booking_title{
    font-size: 30px;
    font-weight: 600;
    border-bottom: 3px solid #eee;
    /* color: #5c5c5c; */
    color:#cd5d08;
    padding-bottom: 15px;
    position: relative;
    text-transform: capitalize;
    margin-bottom:15px ;
}
.booking_title::after{
    bottom: -3px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 32px;
    background: #d6996b;
}




.appointment-forms-container{

    width: 50%;
}

/* .appointment-forms{
    margin-top: 15px;
} */

.appointment-forms input, .appointment-forms  textarea{
    border: 0px;
    border-bottom: 1px solid #eee;
    background-color: transparent;
    margin-bottom: 24px;
    padding: 15px;
    border-radius: 0;
    outline: none;

}
.appointment-date-time{
    width: 100%;
    /* background-color: red; */
    display: inline-flex;
    align-items: center;

}
.appointment-date-time input[type=date]::-webkit-calendar-picker-indicator, .appointment-date-time input[type=time]::-webkit-calendar-picker-indicator{
    /* filter: invert(54%) brightness(110%) sepia(90%) saturate(600%); */
    filter: invert(35%) brightness(90%) sepia(95%) saturate(800%);


}
.appointment-forms input:focus{
    outline: none;
    outline-width: 0;
}
.appointment_location{
    width: 50%;
}

.form-control {
    display: block;
    width: 100%;

    padding: 6px 12px;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;

}


#appointment_image{
    position: relative;
    background-color: red;
    width: 100%;
    height: 100%;
}


#appointment_image img{
    position: absolute;
    /* background-color: red; */
    /* width: 100%;
     */
    width: 100%;
    height: 100%;
    object-fit: cover; 
    /* 
    height: 10%;
    */
}



.leaflet-layer,
    .leaflet-control-zoom-in,
    .leaflet-control-zoom-out,
    .leaflet-control-attribution {
    filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%);
    }

.popup-message-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 3rem;
}
.popup-message{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 20%;
    height: 5rem;
    color: #161111;
    /* background-color: #cd5d08; */
    border-radius: 0.5rem;
    border:2px solid #cd5d08c7 ;
}

