.c-product-calendar__title {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.5em;
  font-family: "Playfair Display", serif;
  color: #144051;
  margin: 50px 0;
}
@media (max-width: 767.98px) {
  .c-product-calendar__title {
    flex-direction: column;
    align-items: flex-start;
    text-align: left !important;
    margin: 50px 0 30px;
  }
}
.c-product-calendar__title:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #c2a800;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 100px;
}
@media (max-width: 767.98px) {
  .c-product-calendar__title:after {
    flex: auto;
  }
}
.c-product-calendar__wrapper {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  margin: 50px auto;
}
@media (max-width: 1199.98px) {
  .c-product-calendar__wrapper {
    margin: 30px auto;
  }
}
.c-product-calendar__nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  width: 100%;
  position: absolute;
  top: 0;
}
.c-product-calendar__nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  outline: none;
  background-color: transparent;
}
@media (max-width: 1199.98px) {
  .c-product-calendar__nav-btn {
    width: 28px;
    height: 28px;
  }
}
.c-product-calendar__nav-btn:hover {
  opacity: 0.8;
}
.c-product-calendar__nav-btn:disabled {
  opacity: 0.4;
  cursor: default;
}
.c-product-calendar__nav-btn.prev {
  background-image: url("/wp-content/themes/banus/img/icons/arrow-left-gold-rounded.svg");
}
.c-product-calendar__nav-btn.next {
  background-image: url("/wp-content/themes/banus/img/icons/arrow-right-gold-rounded-slider.svg");
}
.c-product-calendar__slider {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}
@media (max-width: 1199.98px) {
  .c-product-calendar__slider {
    justify-content: center;
  }
}
.c-product-calendar__month {
  display: none;
}
.c-product-calendar__month h3 {
  font-size: 1.5em;
  line-height: 1.25;
  font-family: "Playfair Display", serif;
  color: #000000;
  font-weight: bold;
  width: 100%;
  text-align: center;
  margin: 0 auto 30px;
}
.c-product-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px 13px;
}
.c-product-calendar__day {
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  text-align: center;
  font-size: 1.125em;
}
@media (max-width: 1199.98px) {
  .c-product-calendar__day {
    width: 38px;
    height: 38px;
    line-height: 38px;
    font-size: 0.9375em;
  }
}
.c-product-calendar__day.available {
  background-color: #eafbcc;
  color: #629a00;
}
.c-product-calendar__day.not-available {
  background-color: rgba(143, 0, 0, 0.05);
  color: #8f0000;
}
.c-product-calendar__day--empty {
  background-color: transparent;
  color: transparent;
  pointer-events: none;
}
.c-product-calendar__legend {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
  justify-content: flex-end;
  width: 100%;
  font-weight: normal;
  font-size: 1em;
  font-style: italic;
  line-height: 1.63;
  color: #343434;
}
@media (max-width: 575.98px) {
  .c-product-calendar__legend {
    justify-content: center;
  }
}
.c-product-calendar__legend .dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.c-product-calendar__legend .dot.available {
  background-color: #eafbcc;
}
.c-product-calendar__legend .dot.not-available {
  background-color: rgba(143, 0, 0, 0.05);
}