#date_picker {}

.date_picker_input {
  position: relative;
}



#executionDate:hover {
  cursor: pointer;
}

#executionDate.onFocus:focus {
  outline: none;
}

.date_picker_input:after {
  content: "";
  background-image: url(./images/Vector.svg);
  padding: 15px 17px;
  position: absolute;
  background-position: center center;
  right: 0px;
  /* top: 42%; */
  color: #8A8F9F;
  background-repeat: no-repeat;
}

.date_picker_input.showCal:after {
  transform: rotate(180deg);
}

.date_picker_calendar {
  min-height: fit-content;
  border-radius: 4px;
  box-shadow: var(--boxShadow);
  overflow: hidden;
  padding: 1rem 1.25rem;
  border-radius: 15px;
  background: var(--userSettingBG);
  width: 300px;
}

#executionDate {
  border: 0.5px solid var(--userSettingInputBorderColor);
  border-radius: 4px;
  width: 120px;
  font-size: 12px;
  color: var(--userSettingTextColor);
  background: var(--userSettingBG);
  padding: 5px 10px;
}


/* 
  * calendar body
  */

.calendar_header {
  width: 100%;
  min-height: 30px;
  /*   background: pink; */
  padding-bottom: 8px;
  color: var(--userSettingTextColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid var(--userSettingBorderColor);
}

.cal-btn {
  cursor: pointer;
}

.cal-btn img {
  width: 42%;
  height: 42%;
}

.cal-btn.back img {
  transform: rotate(90deg);
}

.cal-btn.front img {
  transform: rotate(-90deg);
}

.cal_days,
.calendar_main {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  row-gap: 5px;
  column-gap: 5px;
}

.cal_days {
  font-size: 12px;
  color: var(--labelTextColor);
}

.calendar_main {
  font-size: 12px;
  grid-template-rows: repeat(5, min(30px));
}

.cal_days {
  margin-top: 10px;
  margin-bottom: 10px;
}


.cell_wrapper {
  /*   background: yellow; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  position: relative;
}

.current {
  color: var(--userSettingTextColor);
}

.current:not(.activeDate):hover {
  color: var(--tvBlueColor);
  border: 2px solid var(--tvBlueColor);
  /* display: none; */
}

.cal-btn:hover,
.current:hover {
  cursor: pointer;
}

.activeDate {
  background: var(--tvBlueColor);
  color: white;
}

.inactive_indicator:after {
  /*   text-decoration: underline; */
  content: '';
  width: 3px;
  height: 3px;
  background: red;
  border-radius: 50%;
  position: absolute;
  bottom: 3px;
  left: 50%;
}

.hidden {
  display: none;
}

.dateArrows {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60px;
}