.room-pop-up-main-sec{
 min-width: 40%;
 min-height:100%;
 position: fixed;
 z-index: 9999;
left: 50%;
/* top: 20%; */
transform: translateX(-50%);

}
.pop-up-booking {
    position: fixed;
    background-color: #2a191bb0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
} 
.room-pop-up-row-sec{
   min-width: 100%;
    text-align: center;
}
.room-pop-up-form-sec{
    background-color: #2a191b;
    padding: 15px;
    border-radius: 15px;
    
}
.room-pop-up-form-sec input,select{
    width: 80%;
    height: 35px;
  margin-bottom: 10px;
  border: none;
  padding-left: 15px;
  border-radius: 5px;
}
.room-pop-up-form-sec textarea{
    width: 80%;
    
}
.room-pop-up-form-sec input[name="name"],.room-pop-up-form-sec input[name="email"]{
    width: 39.5%;
}
.room-pop-up-form-sec input[type="date"]{
    width:80%;
}
.room-pop-up-form-sec select[name="adult"],.room-pop-up-form-sec select[name="child"]{
    width: 39.5%;
}
.room-pop-up-form-sec input[type="submit"]{
    background-color: #723700;
    color: white;
    transition: .5s ease;
}
.room-pop-up-form-sec label{
    width: 100%;
}
.room-pop-up-form-sec input[type="submit"]:hover{
    background-color:  #5b2c00;
    transition: .5s ease;
}
.pop-up-booking.active{
    display: block;
}
.pop-up-booking{
    display: none;
}
.head-popup{
    display: flex;
    justify-content: space-between;
    width: 80%;
    align-items: center;
    margin: auto;
}
@media only screen and (max-width: 600px){
    .room-pop-up-main-sec{
        width: 100%;
    }
    
}
