@charset "utf-8";
/* CSS Document */

* {
  box-sizing: border-box;
}

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

[class*="col-"] {
     float: left;
     padding: 1px;
     border: 0px solid red;
}


.row::after {
     content: "";
     clear: both;
     display: table;
}

h1 {
   font-size: 30px;
}

h2 {
   font-size: 25px;
}

h3 {
   font-size: 20px;
}

h1, h2, h3, h4, h5, h6, p, ul, li, select, input[type=text], input[type=submit], option, table, ol, .toprow {
   font-family: 'Roboto Slab', serif;
   color: black;
}

p, ul, input[type=text], select, option, input[type=date], table, ol {
   font-size: 16px;
   color: black;
   font-weight: 600;
}

input[type=submit] {
   font-size: 16px;
   color: white;
   font-weight: normal;
}

input[type=text] {
   width: 100%;
}

select {
   width: 100%;
}

.main {
   margin-left: auto; 
   margin-right: auto; 
   background-color: darkkhaki; 
   border: solid 4px gold; 
   border-radius: 30px; 
   box-shadow: 10px 10px 10px black;
   padding: 10px;
}
.flex-container {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: 0px;
   justify-content: center;
   color: burlywood;
   font-size: 25px;
   font-weight: bold;
}

.flex-container > div {
   width: 45%;
   margin: 0px 20px 10px;
   padding: 10px;
   border: solid black 3px;
   color: black;
}

.flex-container > div:hover {
	border: solid white 3px;
   background: linear-gradient(silver,white,silver);
}

.flex-container-rates {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: 0px;
   justify-content: center;
   color: burlywood;
   font-size: 25px;
   font-weight: bold;
}

.flex-container-rates > div {
   width: 45%;
   margin: 0px 20px 10px;
   padding: 10px;
   border: none;
}

.flex-container-rates > div:hover {
	border: none;
}

.flex-container-3 {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: 0px;
   justify-content: center;
   color: burlywood;
   font-size: 20px;
   font-weight: bold;
}

.flex-container-3 > div {
   width: 30%;
   margin: 10px 20px;
   padding: 2px 10px;
   border: solid black 3px;
   color: black;
}

.flex-container-3 > div:hover {
	border: solid white 3px;
   background-color: darkgoldenrod;
}

.btn {
   background-color: rgba(102,66,0,1.00);
   color: white;
   border: solid black 1px;
   box-shadow: 3px 3px 5px black;
   font-family: 'Roboto Slab', serif;
   padding: 5px 10px;
   font-size: 22px;
   text-decoration: none;
   margin-bottom: 8px;
   overflow-wrap: normal;
}

.bkbtn {
   background-color: red;
   color: black;
   border: solid black 1px;
   box-shadow: 3px 3px 5px black;
   font-family: 'Roboto Slab', serif;
   padding: 10px 15px;
   font-size: 24px;
   text-decoration: none;
   margin-bottom: 8px;
   overflow-wrap: normal;
   font-weight: bold;
}

.btn:hover {
   background-color: red;
   cursor: pointer;
   color: white;
}

.bkbtn:hover {
   background-color: yellow;
   cursor: pointer;
   color: black;
}
.av-cal {
   width: 100%;
   height: 1200px;
}

.flex-container-cal {
   display: flex;
   flex-wrap: wrap;
   margin-bottom: 0px;
   justify-content: center;
   font-size: 25px;
   font-weight: bold;
}

.flex-container-cal > div {
   width: 14%;
   margin: 0px;
   padding: 3px;
   border: solid black 1px;
   color: black;
}

.flex-container-cal > div:hover {
   background: linear-gradient(silver,white,silver);
   cursor: pointer;
}

.toprow {
   background-color: gold;
   font-size: 20px;
   }

.calendar {
   background-color: lightblue;
   }
   .rate {
      font-size: 20px;
   }   

@media only screen and (max-width: 900px) {
     /* For mobile phones: */
     [class*="col-"] {
     width: 100%;
     }
 
   .flex-container > div {
      width: 100%;
   }

   .flex-container-3 > div {
      width: 100%;
   }
   
   .flex-container-rates > div {
      width: 100%;
   }
   
   h1 {
      font-size: 25px;
   }

   h2 {
      font-size: 22px;
   }

   h3 {
      font-size: 18px;
   }
   
   .av-cal {
      width: 275%;
      height: 1200px;
   }
   
   .calendar {
      background-color: lightblue;
   }
   
   .rate {
      font-size: 11px;
   }

   .toprow {
      background-color: gold;
      font-size: 16px;
   }
}