/* CSS Document */
.btn-rounded-dark{
  position: relative;
  transition: all .5s;
}
.btn-rounded-dark:after{
  content: '';
  position: absolute;
  width: 0;
  top: 50%;
  height: 0;
  border-radius: 50%;
  transition: all .5s;
  opacity: 0;
  background: #4682B4;
  border: 1px solid transparent;
}
.btn-rounded-dark:hover:after{
  content: '';/*attr(data-date);*/
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15%;
  opacity: 1;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #4682B4;
}
.btn-rounded-success{
  position: relative;
  transition: all .5s;
}
.btn-rounded-success:after{
  content: '';
  position: absolute;
  width: 0;
  top: 50%;
  height: 0;
  border-radius: 50%;
  transition: all .5s;
  opacity: 0;
  background: #4682B4;
  border: 1px solid transparent;
}
.btn-rounded-success:hover:after{
  content: '';/*attr(data-date);*/
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15%;
  opacity: 1;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #4682B4;
}
.current-date-selected{
  color: #dc3545;
  font-weight: bold;
}
.current-date-selected:after{
  content: '';/*attr(data-date);*/
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15%;
  opacity: 1;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #dc3545;
}
.current-date-selected:hover:after{
  content: '';/*attr(data-date);*/
  position: absolute;
  width: 40px;
  height: 40px;
  top: 15%;
  opacity: 1;
  background: #dc354533;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #dc3545;
}



.dropbtn {
  background-color: #4682B4;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #ddd;}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #2D5373;}


.navbar{
	padding: 0.5rem;
}


.carousel-inner img {
    width: 70%;
    height: 70%;
  }