html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  /* background-image: url("/img/bg1-op.webp"); */
  background-color: #b3d6f7;
  
}
.noopacity {
  opacity: 1;
  background-color: rgb(144, 202, 230);
}

.row-cols-7 > * {
  flex: 0 0 auto;
  width: 14.285714285%;
}

  /* declare a 7 column grid on the table */
  #calendar {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
  }
  
  #calendar tr, #calendar tbody {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
   width: 100%;
  }
  
  caption {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 130%;
    font-weight: bold;
    padding: 10px 0;
  }
  
  #calendar a {
    color: #8e352e;
    text-decoration: none;
  }
  
  #calendar td, #calendar th {
    padding: 5px;
    box-sizing:border-box;
    border: 1px solid #080808;
  }
  
  #calendar .weekdays {
    background: #8e352e;  
  }
  
  
  #calendar .weekdays th {
    text-align: center;
    text-transform: uppercase;
    line-height: 20px;
    border: none !important;
    padding: 10px 6px;
    color: #fff;
    font-size: 13px;
  }
  
  #calendar td {
    min-height: 180px;
    display: flex;
    flex-direction: column;
  }
  
  #calendar .days li:hover {
    background: #d3d3d3;
  }
  /*
  #calendar .date {
    text-align: center;
    margin-bottom: 5px;
    padding: 4px;
    background: #333;
    color: #fff;
    width: 20px;
    border-radius: 50%;
    flex: 0 0 auto;
    align-self: flex-end;
  }
  */
  #calendar .event {
    flex: 0 0 auto;
    font-size: 16px;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 5px;
    line-height: 14px;
    background: #e4f2f2;
    border: 1px solid #b5dbdc;
    color: #009aaf;
    text-decoration: none;
  }
  
  #calendar .event-desc {
    color: #666;
    margin: 3px 0 7px 0;
    text-decoration: none;	
  }
  
  #calendar .other-month {
    background: #f5f5f5;
    color: #666;
  }
  
  /* ============================
          Mobile Responsiveness
     ============================*/
  
  
  @media(max-width: 1008px) {
  
    #calendar .weekdays, #calendar .other-month {
      display: none;
    }
  
    #calendar li {
      height: auto !important;
      border: 1px solid #ededed;
      width: 100%;
      padding: 10px;
      margin-bottom: -1px;
    }
    
    #calendar, #calendar tr, #calendar tbody {
      grid-template-columns: 1fr;
    }
    
    #calendar  tr {
      grid-column: 1 / 2;
    }
  
    #calendar .date {
      align-self: flex-start;
    }
    
  }
  /* Style The Dropdown Button */
.dropbtn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {
  background-color: #3e8e41;
}