/************** Datepicker **************/
.datepickerContainer {
  border-radius: 5px;
  border: 1px solid #584c9d;
  background-color: transparent;
  padding: 15px 0;
}

.ol-datepicker .ol-datepicker-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: center;
}
.ol-datepicker .ol-datepicker-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 19px;
  font-weight: 700;
  width: 100%;
  padding: 0 18px;
  margin-bottom: 10px;
  color: #433a78;
}
.ol-datepicker .ol-datepicker-week {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.ol-datepicker .ol-datepicker-body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.ol-datepicker .ol-datepicker-week > div {
  color: #2d2d2d;
  width: 14.28%;
}
.ol-datepicker .ol-datepicker-body > div {
  font-weight: 700;
  width: 14.28%;
}
.ol-datepicker .ol-datepicker-selectDay {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #2d2d2d;
  text-decoration: none;
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.ol-datepicker .ol-datepicker-today .ol-datepicker-selectDay {
  background-color: white;
  border-radius: 50%;
}
.ol-datepicker .ol-datepicker-rangeElem {
  position: relative;
}
.ol-datepicker .ol-datepicker-rangeElem::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  height: 100%;
  background-color: #f6c1c1;
}
.ol-datepicker .ol-datepicker-range::before {
  left: 0;
  width: 100%;
}
.ol-datepicker .ol-datepicker-rangeStart::before {
  right: 0;
  width: 50%;
}
.ol-datepicker .ol-datepicker-rangeEnd::before {
  left: 0;
  width: 50%;
}
.ol-datepicker .ol-datepicker-rangeElem .ol-datepicker-selectDay {
  position: relative;
  z-index: 5;
}
.ol-datepicker
  .ol-datepicker-day
  .ol-datepicker-selectDay.ol-datepicker-selected {
  color: white;
  border-radius: 50%;
  background-color: #d5146a;
}
.ol-datepicker .ol-datepicker-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 35px;
  padding-top: 12px;
}
.ol-datepicker .ol-datepicker-control::before {
  content: "";
  display: block;
  width: 26px;
  height: 17px;
  background-image: url(../images/icn_next_month.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}
.ol-datepicker .ol-datepicker-prevLine::before {
  transform: scale(-1);
}
/* .ol-datepicker .ol-datepicker-weekend {
  color: var(--mint_txt);
} */
