/*
*
* ==========================================
* CUSTOM UTIL CLASSES
* ==========================================
*
*/
.clearfix::after,
.calendar ol::after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* ================
Calendar Styling */
.calendar {
  border-radius: 10px;
}

.month {
  font-size: 2rem;
}

@media (min-width: 992px) {
  .month {
    font-size: 3.5rem;
  }
}

.calendar ol li {
  float: left;
  width: 14.28571%;
}

.calendar .day-names {
  border-bottom: 1px solid #eee;
}

.calendar .day-names li {
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.calendar .days li {
  border-bottom: 1px solid #eee;
  min-height: 3rem;
}

.calendar .days li .date {
  margin: 0.5rem 0;
  cursor: pointer;
  text-align: center;
}

.calendar .days li .event {
  font-size: 0.75rem;
  padding: 0.4rem;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4rem;
  margin-bottom: 1px;
}

.calendar .days li .event.span-2 {
  width: 200%;
}

.calendar .days li .event.begin {
  border-radius: 1rem 0 0 1rem;
}

.calendar .days li .event.end {
  border-radius: 0 1rem 1rem 0;
}

.calendar .days li .event.clear {
  background: none;
}

.calendar .days li:nth-child(n+29) {
  border-bottom: none;
}

.calendar .days li.outside .date {
  color: #ddd;
}

/*
*
* ==========================================
* FOR DEMO PURPOSES
* ==========================================
*
*/
#calender_body {
  /*min-height: 100vh;
  background-color: #3ca55c;
  background-image: linear-gradient(147deg, #3ca55c 0%, #b5ac49 100%);*/
  min-height: 100vh;
  background-color: #72d7e7;
  background-image: linear-gradient(147deg, #007bff 0%, #49b583 100%);
}
.underline{
  text-decoration: underline;
}
.disable_date{
  pointer-events: none;
  background-color: #e9ecef;
  border-radius: 20%;
}

.calendar .days li:hover{
  background-color: #28a745!important;
  color: #fff;
  border-radius: 20%;
}

.today{
  background-color: #d3a45d!important;
  color: #fff;
  border-radius: 20%;
}
.selected_date{
  background-color: #28a745!important;
  color: #fff;
  border-radius: 20%; 
}
.cal-left-right {
   float: right;
}
.cal-left-right button {
   padding: 9px;
    vertical-align: middle;
    width: 50px;
    height: 42px;
    display: inline-block;
    background-color: #e9ecef;
    border: none;
    border-radius: 50%;
        margin: 0 2px;
}
.cal-left-right button:hover {
    background-color: #5f72c5;
}
.calendar .days {
    margin-bottom: 0;
}
.calendar .days li {
    border: 1px dashed #eee;
    min-height: 3rem;
    border-radius: 20%;
}

.left-cus-pannel .card-header {
    border-radius: 10px 10px 0 0;
}
.right-cus-pannel .card-header {
    border-radius: 10px 10px 0 0;
}
.right-cus-pannel .card-footer {
    border-radius: 0 0 10px 10px;
}
.left-cus-pannel .card {
    border-radius: 10px;
}
.left-cus-pannel .card .card-body {
    padding: 0.6rem 0.6rem;
}
.right-cus-pannel .card {
    border-radius: 10px;
}
.cus-pannel-overflow {
    overflow-y: scroll;
    max-height: 490px;
}

.ser-cus-name {
    font-size: 18px;
    font-weight: 600;
}
.ser-cus-date {
    font-size: 14px;
    font-weight: 400;
}

.cus-center-form .form-control {
    padding: 10px 15px;
    height: 50px;
}


@media only screen and (max-width: 767px) {
    .left-cus-pannel {
      margin-bottom: 15px;
  }
  .center-cus-pannel {
      margin-bottom: 15px;
  }
  .cus-center-form .form-control {
        width: 80px;
    }
    .left-cus-pannel {
        margin-top: 40px;
    }
}