/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


#seleccted_booking_date{
  text-transform: uppercase;
    font-weight: 500;
}

 .date-button{
  padding: 20px;
  margin-left: 10px;
  margin-bottom: 10px;
  margin-top: 10px;
  border-radius: 25px;
 }

 .form-group label{
   font-size: 13px;
    font-weight: 600;
    font-family: Poppins,sans-serif;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: #555;
 }

 .error-message{
   color: red;
    font-size: 13px;
    font-weight: 700;
 }

 #myloader {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   height: 100%;
   width: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: 9999;
 }
 
 #myloader::after {
   content: "";
   display: block;
   position: absolute;
   top: 50%;
   left: 50%;
   width: 60px;
   height: 60px;
   margin: -30px 0 0 -30px;
   border-radius: 50%;
   border: 5px solid #fff;
   border-top-color: #09f;
   animation: spin 2s linear infinite;
 }
 
 @keyframes spin {
   to {
     transform: rotate(360deg);
   }
 }
