/* The Modal (background) */
.modalBooking {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index:2000; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left:0;
    top:0;
    width: 100% !important; /* Full width */
    height: 100% !important; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content */
.modalBooking-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
}

/* The Close Button */
.closeBooking {
    color: #333;
    float: right;
    font-size: 22px;
    font-weight: bold;
}

.closeBooking:hover,
.closeBooking:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}







@media (min-width:768px) {
	
.modalBooking-content {
    width: 80%;
}

}

@media (max-width:768px) {
	
.modalBooking-content {
    width: 90%;
}

}

