@import url("dist/css/theme.css");

/* CALENDER */
  
.ftco-section {  font-family: "Lato", Arial, sans-serif;
}

.elegant-calencar {
  font-family: "Lato", Arial, sans-serif;
  max-width: 700px;
  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:50%;
  background-image: linear-gradient(to top left, var(--primary-color), var(--primary-dark), var(--primary-light), var(--primary-lighter));


}
@media (max-width: 767.98px) {
  .wrap-header {
    width: 100%;
    padding: 10px 0;
  }
}

#header {
  width: 100%;
  position: relative;
}
#header .pre-button,
#header .next-button {
  cursor: pointer;
  width: 1em;
  height: 1em;
  line-height: 1em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}
#header .pre-button i,
#header .next-button i {
  color: #fff;
}

.pre-button {
  left: 5px;
}

.next-button {
  right: 5px;
}

.calendar-wrap {
  width: 100%;
  background: #fff;
  padding: 40px 20px 20px 20px;
}

#calendar {
  width: 100%;
}

#calendar tr {
  height: 2.4em;
}

thead tr {
  color: #000;
  font-weight: 700;
}

tbody tr {
  color: #000;
}

tbody td {
  width: 14%;
  border-radius: 50%;
  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;
}
tbody td:after {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 44px;
  height: 44px;
  margin: 0 auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 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: #000000;
  border: none;
}


tbody td:active {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

#today {
  color: #fff;
}
#today:after {
background: rgb(172, 172, 172);  
width: 30px;
height: 30px;
}

#disabled {
  cursor: default;
  background: #fff;
}

#disabled:hover {
  background: #fff;
  color: #c9c9c9;
}
#disabled:hover:after {
  background: transparent;
}


.font-date{
  font-size: 1.3rem;
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.fa{
  color:black;
}

.navbar {
  box-shadow: none !important;
}




.text-success{
  color: #373d35 !important;
}