/* CSS for mobile */
@media (max-width: 768px) {
  .tooltip {
    pointer-events: none;
  }
}

.elegant-calendar {
  text-align: center;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 5px;
  -webkit-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 19px 27px -20px rgba(0, 0, 0, 0.16); }

.wrap-header {
  position: relative;
  width: 45%;
  background: #39cb75; }
@media (max-width: 767.98px) {
  .wrap-header {
    width: 100%;
    padding: 20px 0; } }

.pre-button {
  font-size: 1.9rem ;
  cursor: pointer;
  left: 5px; }

.next-button {
  font-size: 1.9rem ;
  cursor: pointer;
  right: 5px; }

.head-month {
font-size: 1rem;
font-weight: 600;
color: black;
}

.calendar-wrap {
  width: 100%;
  height: 18rem;
  background: #fff;
  /*padding: 40px 0px 0px 20px;*/
  padding: 5%;
  font-size: 0.9rem;
}


.calendar-wrap h6{
  font-size: 0.8rem;
}

.calendar-wrap .list-group-item{
padding: .5rem .5rem;
}

.bscalendar {
  width: 100%;
  line-height: 1;
  font-size: 1rem;
}

.bscalendar tr {
  height: 2rem;
}

thead tr {
  color: #000;
  font-weight: 700; }

tbody tr {
  color: #000; }

.bscalendar tbody td {
  width: 14%;
  border-radius: 0%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  position: relative;
  z-index: 0; }

.bscalendar tbody td:after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  height: 100%;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
  }
@media (prefers-reduced-motion: reduce) {
  tbody td:after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; } }

tbody td:hover, .selected {
  color: #fff;
  border: none; }
tbody td:hover:after, .selected:after {
  background: #D3D3D3; }

tbody td:active {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7); }

#today {
  color: #fff;
  line-height: 1;
  font-size: 1rem;
  border-radius: 0px;
  background: #39cb75;
  }

/*
#today:after {
  background: #39cb75; }
*/
#disabled {
  cursor: default;
  background: #fff; }

#disabled:hover {
  background: #fff;
  color: #c9c9c9; }
#disabled:hover:after {
  background: transparent; }

#selectedDay {
  width: 100%;
  height: 100%;
  display: none;
}

#backToCalendar {
}

#selectedDayContent {

}
