.calbox a:hover,
.calbox button:hover {
  text-decoration: none;
  transition: 0.3s all;
  -webkit-transition: 0.3s all;
  -moz-transition: 0.3s all;
  -o-transition: 0.3s all;
  -ms-transition: 0.3s all;
}
.calendar,
.datepicker {
  max-width: 300px;
  margin: auto;
}
.calendar {
  border: 1px solid #cccccc;
  padding: .5rem;
}
.datepicker input {
  margin: 0;
  font-family: inherit;
  display: block;
  width: 85%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem 0.375rem 2.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.datepicker input:focus {
  color: #495057;
  background-color: #fff;
  border-color: #f28388;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(219, 61, 68, 0.25);
}
.datepicker i {
  position: absolute;
}
.datepicker .icon {
  padding: 16px;
  font-size: larger;
  color: #555555;
}
.calendar .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.calendar .title .arrow-control {
  border: none;
  border-radius: 50px;
  background-color: transparent;
  width: 35px;
  height: 24px;
	font-weight: bold;
}
.calendar .title .arrow-control:hover {
  background-color: #7EBE20;
  color: white;
  cursor: pointer;
}
.calendar .title .year-month:hover,
.calendar .title .year:hover {
  color: #cccccc;
  cursor: pointer;
  transition: 0.3s all;
}
.calendar .title h4,
.calendar .title p {
	margin: 0;
}
.calendar .week .day {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.28%;
  font-weight: bold;
}
.calendar .list,
.calendar .week {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.calendar .list .date {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14.28%;
  height: 42px;
  border: none;
  border-radius: 50px;
  background-color: transparent;
}
.calendar .list .date:hover,
.calendar .list .date:focus,
.calendar .list .mon:hover,
.calendar .list .mon:focus {
  background-color: #7EBE20;
  color: white;
  cursor: pointer;
}
.calendar .active {
  background-color: #7EBE20 !important;
  color: white;
}
.calendar .list .fadeout {
  color: #dadada;
}
.calendar .list .today {
  border: 1px solid #7EBE20;
  color: #7EBE20;
}
.calendar .list .today.active {
  color: white;
}
.calendar .list .mon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  height: 50px;
  margin-top: 1em;
  /* padding: 7.14%; */
  border: none;
  border-radius: 50px;
  background-color: transparent;
}
#yearlist .mon:first-child,
#yearlist .mon:last-child {
  color: #9d9d9d;
}
.calbox .d-none {
  display: none;
}
