/* -------------------------------------------------- Mixins */
/*
<div class="progress-circle p{VALUE_OF_PROGRESS} {if VALUE_OF_PROGRESS > 50}over50{/if}">
	<span>{VALUE_OF_PROGRESS}%</span>
	<div class="left-half-clipper">
		<div class="first50-bar"></div>
		<div class="value-bar"></div>
	</div>
</div>
*/
/* ---------------------------------------------------------------------- */
/* -------------------------------------------------- Pricecalendar */
#priceCalendarWrapper {
  margin: 0 auto 4rem auto;
  padding: 0 1.5rem;
  position: relative;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media (min-width: 1024px) {
  #priceCalendarWrapper {
    width: 102.4rem;
  }
}
@media (min-width: 1366px) {
  #priceCalendarWrapper {
    padding: 0;
    width: 128rem;
  }
}

.priceCalendar {
  display: flex;
  font-family: var(--open-sans);
  font-size: 1rem;
  padding: 1rem 4rem 0 4rem;
  position: relative;
  width: 100%;
}
.priceCalendar .pCSingle {
  cursor: pointer;
  height: 15rem;
  padding: 0.2rem 0.2rem 0;
  position: relative;
  width: 5rem;
}
.priceCalendar .pCSingle:hover, .priceCalendar .pCSingle:focus, .priceCalendar .pCSingle:active {
  outline: 0;
}
.priceCalendar .pCSingle:hover {
  cursor: default;
}
.priceCalendar .pCSingle.active .pCLower {
  background-color: var(--grey-lite);
  border-color: var(--grey-lite);
}
.priceCalendar .pCUpper > .pCInner {
  background-color: var(--primary);
  border-color: var(--primary);
}
.priceCalendar .pCUpper > .pCInner:hover {
  background-color: var(--primary--dark--transparent);
  border-color: #1e689f;
}
.priceCalendar .pCUpper > .pCInner.pCMin {
  background-color: var(--primary--dark--transparent);
  border-color: #1e689f;
}
.priceCalendar .pCInner {
  border: 0.1rem solid;
  border-radius: 0.2rem 0.2rem 0 0;
  color: var(--white);
  position: relative;
  text-align: center;
  width: 100%;
}
.priceCalendar .pCInner:hover {
  cursor: pointer;
}
.priceCalendar .pCInner .pCPrice {
  border: none;
  display: inline-block;
  padding: 0.8rem 0.2rem 0.2rem 0.2rem;
}
.priceCalendar .pCInner .pCDuration {
  border: unset;
  bottom: 0;
  left: 0;
  padding: 0.2rem;
  position: absolute;
}
.priceCalendar .pCLower {
  background: var(--white);
  border: 0.1rem solid var(--primary);
  border-radius: 0 0 0.2rem 0.2rem;
  display: inline-block;
  height: 25%;
  margin-top: 0.5rem;
  text-align: center;
  width: 100%;
}
.priceCalendar .pCLower:hover {
  cursor: pointer;
}
.priceCalendar .pCLower .pCDate {
  border: unset;
  margin: unset;
  padding-top: 0.2rem;
}
.priceCalendar .pCLower .pCDay {
  border: unset;
  margin: unset;
  padding-top: 0.2rem;
}
.priceCalendar .pCUpper {
  align-items: flex-end;
  display: flex;
  height: 70%;
  width: 100%;
}
.priceCalendar .swiper-wrapper {
  width: 100%;
}
.priceCalendar .swiper-button-prev, .priceCalendar .swiper-button-next {
  background: var(--primary--xlite);
  cursor: pointer;
  height: 100%;
  margin: 0;
  top: 0;
  width: 4rem;
  z-index: 2;
}
.priceCalendar .swiper-button-prev:hover:after, .priceCalendar .swiper-button-prev:focus:after, .priceCalendar .swiper-button-prev:active:after, .priceCalendar .swiper-button-next:hover:after, .priceCalendar .swiper-button-next:focus:after, .priceCalendar .swiper-button-next:active:after {
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  height: 4rem;
  justify-content: center;
  width: 4rem;
}
.priceCalendar .swiper-button-prev:after, .priceCalendar .swiper-button-next:after {
  color: var(--primary);
  font-family: "RTK";
  font-size: 1.2rem;
  position: absolute;
}
@media (min-width: 768px) {
  .priceCalendar .swiper-button-prev:after, .priceCalendar .swiper-button-next:after {
    font-size: 2rem;
  }
}
.priceCalendar .swiper-button-prev {
  left: 0;
}
.priceCalendar .swiper-button-prev:hover:after, .priceCalendar .swiper-button-prev:focus:after, .priceCalendar .swiper-button-prev:active:after {
  left: -0.2rem;
}
.priceCalendar .swiper-button-prev:before {
  left: 0;
}
.priceCalendar .swiper-button-prev:after {
  content: "\e982";
  left: 0.8rem;
}
.priceCalendar .swiper-button-next {
  right: 0;
}
.priceCalendar .swiper-button-next:hover:after, .priceCalendar .swiper-button-next:focus:after, .priceCalendar .swiper-button-next:active:after {
  right: -0.2rem;
}
.priceCalendar .swiper-button-next:before {
  right: 0;
}
.priceCalendar .swiper-button-next:after {
  content: "\e983";
  right: 0.8rem;
}

.pCArrow {
  background-color: transparent;
  color: var(--primary);
  font-size: 2rem;
  margin: 0;
  padding: 0 0.9rem;
}

.pCEmpty {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--white);
}
.pCEmpty:hover {
  background-color: var(--white);
}
/*# sourceMappingURL=priceCalendar.css.map */
