.wrapper-search-form-calendar {
  position: absolute;
  top: calc(100% - 10px);
  left: -20px;

  display: none;
  padding: 30px;

  background-color: #f6f9fe;
  border: 1px solid #b4b4b4;
  box-shadow: 0 4px 4px rgba(0,0,0,.07);
  border-radius: 9px;

  z-index: 15;
}

.wrapper-search-form-calendar-active {
  display: flex;
}

.wrapper-search-form-calendar:before {
  position: absolute;
  top: -25px;
  left: 28px;

  content: "";

  border: 20px solid transparent;
  border-bottom: 4px solid #b4b4b4;
}

.wrapper-search-form-calendar:after {
  position: absolute;
  top: -24px;
  left: 28px;

  content: "";

  border: 20px solid transparent;
  border-bottom: 4px solid #f6f9fe;
}

.search-form-calendar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
}

.search-form-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-form-calendar-header span {
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 163.9%;
  color: #000;
}

.search-form-calendar-header-button svg {
  position: relative;
  left: 0;
  top: 0;

  transform: none;

  cursor: pointer;
}

.search-form-calendar-header-button-disabled svg {
  cursor: default;
}

.search-form-calendar-header-button-disabled svg circle {
  stroke: gray;
}

.search-form-calendar-header-button-disabled svg path {
  fill: gray
}

.search-form-calendar-body-weekdays {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-form-calendar-body-weekdays div {
  width: 45px;
  height: 45px;

  text-align: center;
  text-transform: uppercase;

  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 163.9%;
  color: #000;
}

.search-form-calendar-body-weekdays div:nth-last-child(-n + 2) {
  color: #981200;
}

.search-form-calendar-body-days {
  display: grid;
  grid-template-columns: repeat(7, 45px);
  grid-gap: 4px;
  margin-top:-9px;
}

.search-form-calendar-body-days .day {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;

  width: 45px;
  height: 45px;

  background: #fff;
  border-radius: 5px;
}

.search-form-calendar-body-days .day:not(.day-passive):not(.day-empty) {
  cursor: pointer;
}

.search-form-calendar-body-days .day-weekend {
  color: #981200;
}

.search-form-calendar-body-days .day-selected {
  border: 2px solid #ffc122;
}

.search-form-calendar-body-days .day span {
  font-weight: 600;
  font-size: 14px;
  line-height: 163.9%;
}

.search-form-calendar-body-days .day i:not(.loading-price) {
  font-style: normal;
  font-weight: 600;
  font-size: 9px;
  line-height: 0%;
  color: #009035;
}

.search-form-calendar-body-days .day i.loading-price {
  background: #80808088;
    
  height: 6px;
  width: 16px;
  margin-top: -6px;

  border-radius: 5px;
}

.search-form-calendar-body-days .day-passive span {
  opacity: 0.5;
}