.date-picker,
.time-picker,
.special-options {
  background: #fff;
  width: 400px !important;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.date-picker header,
.time-picker header,
.special-options header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
}
.calndar p:not(.calendar-header-title), label {
  color: var(--color-primary);
}
.time-picker {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header .calendar-navigation {
  display: flex;
}
header .calendar-navigation span {
  height: 38px;
  width: 38px;
  margin: 0 1px;
  cursor: pointer;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  user-select: none;
  color: #aeabab;
  font-size: 1.9rem;
}
.calendar-navigation span:last-child {
  margin-right: -10px;
}
header .calendar-navigation span:hover {
  background: #f2f2f2;
}

header p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.45rem;
}

.calendar-body {
  padding: 20px;
}

.calendar-body ul,
.time-slots {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding-left: 0;
  justify-content: space-around;
}

.calendar-body li{
  width: calc(100% / 7);
  font-size: 1.07rem;
  color: #414141;
}

.calendar-body .calendar-weekdays li {
  cursor: default;
  font-weight: 500;
}

.calendar-body .calendar-dates li,
.time-slots li {
  margin-top: 30px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.calendar-dates li.inactive,
.time-slots li.inactive {
  color: #aaa;
  cursor: auto;
}
.time-slots li.inactive {
  text-decoration: line-through;
}

.calendar-dates li.active,
.time-slots li.active {
  color: #fff;
}
.calendar-dates li::before {
  position: absolute;
  content: "";
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.calendar-dates li.active::before,
.time-slots li.active {
  background-color: #6332c5;
}

.calendar-dates li:not(.active):not(.inactive):hover::before,
.time-slots li:not(.active):not(.inactive):hover {
  background: #e4e1e1;
}


.time-slots * {
  padding: .5rem 1rem;
  margin: .5rem;
  border-radius: 15px;

  font-size: 1.07rem;
  color: #414141;
}

.times-error, .times-warning {
  background: rgb(255, 94, 94);
  color: white;
  width: max-content;
}

.special-options .form-group {
  margin: .2rem .25rem;
  margin-top: 0;
}
.special-options .form-group label {
  text-align: left;
}