@charset "UTF-8";
/* Variables */
:root {
  --base-black: rgba(0, 0, 0, 1);
  --base-gray-icon: rgba(204, 204, 204, 1);
  --base-gray-light: rgba(238, 238, 238, 1);
  --base-text-color: rgba(85, 85, 85, 1);
  --base-white: rgba(255, 255, 255, 1);
  --bg-modal: rgba(74, 145, 226, 0.5);
  --bookbox-bg-bookbox: rgba(255, 255, 255, 1);
  --bookbox-bg-button: rgba(74, 144, 226, 1);
  --bookbox-bg-button-hover: rgba(85, 85, 85, 1);
  --bookbox-lines: rgba(216, 215, 215, 1);
  --bookbox-mobile-bg-color: white;
  --bookbox-mobile-container-bg-color: white;
  --bookbox-text-color: rgba(85, 85, 85, 1);
  --first-color-default: #FF5300;
  --second-color-default: #222;
  --lines-gray-line: rgba(204, 204, 204, 1);
  --messages-error: rgba(194, 41, 41, 1);
  --messages-success: rgba(25, 162, 67, 1);
  --messages-warning: rgba(248, 138, 9, 1);
  --header-scroll-height: 100px;
  --bookbox-desktop-height: 60px;
  --bookbox-font-weight: 400;
  --bookbox-fw-light: 300;
  --bookbox-fw-regular: 500;
  --bookbox-fw-bold: 700;
  --bookbox-room-height: 80px;
  --bookbox-border-radius: 5px;
  --bookbox-box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  --bookbox-max-width-mobile-content: 320px;
  --distance: calc((20 / 16) * 1em);
}
@media (min-width: 1100px) {
  :root {
    --header-scroll-height: 150px;
  }
}
@media (min-width: 1500px) {
  :root {
    --header-scroll-height: 80px;
  }
}

/* Bookbox Fonts */
/* roboto-regular - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/f/roboto-v30-latin-regular.woff2") format("woff2"), url("/f/roboto-v30-latin-regular.woff") format("woff");
}
/* roboto-500 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("/f/roboto-v30-latin-500.woff2") format("woff2"), url("/f/roboto-v30-latin-500.woff") format("woff");
}
/* roboto-700 - latin */
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/f/roboto-v30-latin-700.woff2") format("woff2"), url("/f/roboto-v30-latin-700.woff") format("woff");
}
/* Helpers */
.bcbb--hide {
  display: none;
}

.bcbb--sronly {
  border: 0;
  clip-path: circle(0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Reset */
.bcbb fieldset {
  border: none;
  color: var(--bookbox-text-color);
  padding: 0;
}

/* Errores */
.bcbb__options-kids {
  position: relative;
}

.bcbb__hotels-group--error[data-error]:before,
.bcbb__ages-list--error[data-error]:before {
  background-color: var(--messages-error);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% 86%, 17% 86%, 15% 100%, 13% 86%, 0 86%);
  color: white;
  content: attr(data-error);
  display: flex;
  left: 0;
  font-size: 0.7rem;
  padding: 10px 8px 15px;
  pointer-events: none;
  position: absolute;
  top: -8px;
  transform: translateY(-100%);
  width: max-content;
  white-space: break-spaces;
}
@media (max-width: 1099px) {
  .bcbb__hotels-group--error[data-error]:before,
.bcbb__ages-list--error[data-error]:before {
    animation-name: dissappear;
    animation-duration: 5s;
    opacity: 0;
  }
}

@media (min-width: 1100px) {
  .bcbb__ages-list--error {
    position: relative;
  }
}

.bcbb__ages-select--error {
  border: 1px solid var(--messages-error) !important;
}

/* Animaciones */
.bcbb {
  --bcbb-loading-height: 8px;
  --bcbb-loading-width: 30px;
}

@keyframes bcbb_loading {
  0% {
    left: calc((150px - var(--bcbb-loading-width)) / 2);
  }
  100% {
    left: calc((150px + var(--bcbb-loading-width)) / 2);
  }
}
#booknowCompleteFake.bcbb__btn {
  transition: color 1s;
}

.bb-loading .bcbb__btn, .bb-loading.bcbb__btn {
  color: transparent;
}

.bb-loading {
  overflow: hidden;
  position: relative;
}
.bb-loading:before, .bb-loading:after {
  border-radius: var(--bcbb-loading-height);
  content: "";
  height: var(--bcbb-loading-height);
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.bb-loading:before {
  background-color: #fff;
  left: 50%;
  width: var(--bcbb-loading-width);
  z-index: 1;
}
.bb-loading:after {
  animation: bcbb_loading 0.6s ease-in-out infinite alternate;
  background-color: black;
  left: 50%;
  width: var(--bcbb-loading-height);
  z-index: 10;
}

/* Bookbox container */
.bookbox-04__container {
  position: sticky;
  z-index: 10000;
}
.lateral-container--show .bookbox-04__container {
  display: none;
}
.home:not(.bcbb--show) .bookbox-04__container {
  height: 0;
}
@media (max-width: 1099px) {
  body.bcbb--show .bookbox-04__container {
    background-color: var(--bookbox-mobile-container-bg-color);
    inset: 0;
    position: fixed;
  }
}
@media (max-width: 1099px) {
  body.no-slider:not(.bcbb--show) .bookbox-04__container {
    transform: translateY(-10px);
  }
}
@media (max-width: 767px) {
  .home:not(.bcbb--show) .bookbox-04__container {
    transform: translateY(-20px);
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .home:not(.bcbb--show) .bookbox-04__container {
    transform: translateY(-100px);
  }
}
@media (min-width: 1100px) {
  .has-slider:not(.scroll-down) .bookbox-04__container {
    transform: translateY(-200px);
  }
}
.scroll-down:not(.bcbb--show) .bookbox-04__container {
  top: calc(var(--header-scroll-height));
}
@media (max-width: 1099px) {
  .scroll-down:not(.bcbb--show) .bookbox-04__container {
    transform: translateY(-10px);
  }
}
@media (min-width: 1100px) {
  .scroll-down:not(.offer) .bookbox-04__container {
    left: 50%;
    position: fixed !important;
    top: calc(var(--header-scroll-height));
    transform: translate(-50%, 0);
  }
}
@media (min-width: 1100px) {
  .offer .bookbox-04__container {
    position: relative;
    top: 20px !important;
    transform: translateY(0);
  }
}

/* Dropdown */
.bcbb__dropdown-trigger {
  background: url("/i/165/bookbox/arrow-down.svg") calc(100% - 10px) center no-repeat;
  cursor: pointer;
  padding-right: 30px;
  position: relative;
}

.bcbb__dropdown--show {
  background-image: url("/i/165/bookbox/close-big.svg");
  background-size: 10px;
  opacity: 0.5;
}

.bcbb__dropdown {
  background-color: white;
  box-shadow: var(--bookbox-box-shadow);
  border-radius: 5px;
  padding: 20px 24px;
  position: absolute;
  top: 100%;
  left: 14px;
  transition: 0.3s;
  z-index: 10;
}

.bcbb__dropdown.bcbb--sronly {
  top: 120%;
}

.bcbb__dropdown-item, .bcbb__dropwdown-item {
  list-style: none;
}

.bcbb__dropdown-item a, .bcbb__dropwdown-item a {
  color: gray;
}

.bcbb__dropdown-item-list {
  display: grid;
  font-weight: var(--bookbox-fw-bold);
  grid-gap: 12px;
  list-style: none;
  margin-top: 8px;
}

.bcbb__dropdown-item-title {
  color: var(--bookbox-text-color);
  list-style: none;
}

.bcbb__dropdown-anchor {
  color: var(--first-color-default);
  font-size: 0.8125rem;
  font-weight: var(--bookbox-fw-light);
  transition: 0.3s;
  white-space: nowrap;
}

.bcbb__dropdown-anchor:hover, .bcbb__dropdown-item-title:hover {
  color: var(--first-color-default);
  cursor: pointer;
}

/* Styles */
.bcbb {
  border-radius: var(--bookbox-border-radius);
  font-family: Roboto, sans-serif;
  transition: transform 0.1s;
}
@media (max-width: 1099px) {
  .bcbb {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 1100px) {
  .bcbb {
    align-items: center;
    display: flex;
    height: var(--bookbox-desktop-height);
    justify-content: center;
  }
}

@media (max-width: 1099px) {
  button.bcbb__open {
    appearance: none;
    background-color: var(--first-color-default);
    border: none;
    border-radius: var(--bookbox-border-radius);
    color: white;
    font-size: 1em;
    font-weight: var(--bookbox-fw-bold);
    height: 50px;
    padding: 0 60px;
    text-transform: uppercase;
    transition: 0.3s;
  }
  button.bcbb__open:hover {
    background-color: var(--first-color-default);
    cursor: pointer;
  }
  body.bcbb--show button.bcbb__open {
    display: none;
  }
}
@media (min-width: 1100px) {
  button.bcbb__open {
    display: none;
  }
}

button.bcbb__close {
  display: none;
}
@media (max-width: 1099px) {
  .bcbb--show button.bcbb__close {
    appearance: none;
    background: url("/i/165/bookbox/close-big.svg") center center no-repeat;
    background-size: 35px;
    border: none;
    cursor: pointer;
    display: block;
    height: 40px;
    position: absolute;
    right: var(--distance);
    text-indent: -9999em;
    top: var(--distance);
    width: 40px;
  }
}
@media (min-width: 1100px) {
  button.bcbb__close {
    display: none;
  }
}

.bcbb__form {
  border-radius: var(--bookbox-border-radius);
  font-size: 0.8125em;
  font-weight: var(--bookbox-fw-bold);
  position: relative;
  text-transform: uppercase;
}
@media (max-width: 1099px) {
  .bcbb__form {
    background-color: var(--bookbox-mobile-bg-color);
    box-shadow: var(--bookbox-box-shadow);
    display: none;
    margin-top: 80px;
    padding: calc(var(--distance) / 2) var(--distance) var(--distance);
  }
  .bcbb--show .bcbb__form {
    display: grid;
    grid-template-columns: minmax(var(--bookbox-max-width-mobile-content), 1fr);
    grid-template-rows: repeat(5, 60px);
  }
  .bcbb--show .bookbox-04__container[data-chain=false] .bcbb__form {
    grid-template-rows: repeat(4, 60px);
  }
  .bcbb--show .bookbox-04__container[data-chain=true] .bcbb__form {
    grid-template-rows: repeat(5, 60px);
  }
}
@media (min-width: 1100px) {
  .bcbb__form {
    align-items: stretch;
    background-color: var(--bookbox-bg-bookbox);
    box-shadow: var(--bookbox-box-shadow);
    display: grid;
    grid-gap: 10px;
    height: var(--bookbox-desktop-height);
    padding-left: var(--distance);
  }
  .bookbox-04__container[data-chain=true] .bcbb__form {
    grid-template-columns: 240px 220px 1fr 130px 180px;
    width: 1080px;
  }
}

@media (max-width: 1099px) {
  fieldset.bcbb__form-group {
    display: flex;
    font-size: 16px !important;
  }
  fieldset.bcbb__form-group:not(:nth-last-child(-n+2)) {
    border-bottom: var(--bookbox-lines);
  }
  fieldset.bcbb__form-group:not(:nth-last-child(-n+2)) {
    border-bottom: var(--bookbox-lines);
  }
}
@media (min-width: 1100px) {
  fieldset.bcbb__form-group {
    display: flex;
  }
}

fieldset.bcbb__hotels-group {
  background: url("/i/165/bookbox/pointer-bookbox.svg") 0 center no-repeat;
  padding-left: 30px;
}
@media (max-width: 1099px) {
  fieldset.bcbb__hotels-group {
    position: relative;
  }
}
@media (min-width: 1100px) {
  fieldset.bcbb__hotels-group {
    border-right: 1px solid var(--bookbox-lines);
  }
}
.bookbox-04__container[data-chain=false] fieldset.bcbb__hotels-group {
  display: none;
}

.bcbb input {
  appearance: none;
  border: none;
  color: var(--bookbox-text-color);
  font-family: Roboto;
  font-size: 1em;
  font-weight: var(--bookbox-fw-bold);
  outline: none;
  width: 100%;
  text-overflow: ellipsis;
  text-transform: uppercase;
}

.bcbb input::placeholder {
  color: var(--bookbox-text-color);
  opacity: 1;
}

.bcbb input:focus {
  color: var(--bookbox-text-color);
  opacity: 0.7;
}

.bcbb__hotels-list {
  display: grid;
  grid-gap: 10px;
  font-size: 0.9em;
}
@media (max-width: 1099px) {
  .bcbb__hotels-list {
    margin-left: -30px;
    width: 100%;
  }
}
@media (min-width: 1100px) {
  .bcbb__hotels-list {
    left: 0;
  }
}
@media (max-width: 1099px) {
  .bookbox-04__container[data-hotels=fullwidth] .bcbb__hotels-list {
    max-height: 60vh;
    overflow: auto;
  }
}
@media (min-width: 1100px) {
  .bookbox-04__container[data-hotels=fullwidth] .bcbb__hotels-list {
    grid-gap: 20px 10px;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
}
@media (min-width: 1100px) {
  .bookbox-04__container[data-hotels=default] .bcbb__hotels-list {
    min-width: 255px;
  }
}

fieldset.bcbb__calendar-group {
  align-items: center;
  background-repeat: no-repeat;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: auto auto auto;
  justify-content: center;
}
@media (max-width: 1099px) {
  fieldset.bcbb__calendar-group {
    background-image: url("/i/165/bookbox/calendar-from.svg"), url("/i/165/bookbox/arrow-down.svg");
    background-position: 0 center, calc(100% - 10px) center;
    grid-gap: 20px;
  }
}
@media (min-width: 1100px) {
  fieldset.bcbb__calendar-group {
    background-image: url("/i/165/bookbox/calendar-from.svg");
    background-position: 5px center;
    padding-left: 20px;
  }
}

.bcbb__calendar-separator {
  background: url("/i/165/bookbox/arrow-left-gray.svg") center center no-repeat;
  height: 20px;
  width: 20px;
}

.bcbb__calendar {
  cursor: pointer;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  line-height: 1.2em;
  text-align: center;
}

.bcbb__day-name {
  font-size: 0.9em;
  grid-column: 1/-1;
}

.bcbb__day-number, .bcbb__month {
  font-size: 1.5em;
}

fieldset.bcbb__occupation-group {
  background-image: url("/i/165/bookbox/adult.svg");
  background-repeat: no-repeat;
  padding-left: 30px;
}
@media (max-width: 1099px) {
  fieldset.bcbb__occupation-group {
    background-position: 4px center;
  }
}
@media (min-width: 1100px) {
  fieldset.bcbb__occupation-group {
    background-position: 10px center;
    border-left: 1px solid var(--bookbox-lines);
    border-right: 1px solid var(--bookbox-lines);
  }
}

fieldset.bcbb__occupation-group--error {
  border-top: 2px solid var(--messages-error);
}

fieldset.bcbb__promocode-group {
  background: url("/i/165/bookbox/promocode.svg") 0 center no-repeat;
  padding-left: 30px;
}
@media (max-width: 1099px) {
  fieldset.bcbb__promocode-group {
    padding: 0 30px;
  }
}

.bcbb__promocode-group .bcbb__input-promocode {
  text-transform: none;
}
@media (max-width: 1099px) {
  .bcbb__promocode-group .bcbb__input-promocode {
    background-color: transparent;
  }
}

.bcbb__checkout-group .bcbb__btn {
  background-color: var(--first-color-default);
  color: white;
  font-size: 1rem;
  transition: 0.3s;
}
.bcbb__checkout-group .bcbb__btn:hover {
  background-color: var(--second-color-default);
  cursor: pointer;
}
@media (max-width: 1099px) {
  .bcbb__checkout-group .bcbb__btn {
    border-radius: var(--bookbox-border-radius);
    margin-top: 10px;
  }
}
@media (min-width: 1100px) {
  .bcbb__checkout-group .bcbb__btn {
    border-radius: 0 var(--bookbox-border-radius) var(--bookbox-border-radius) 0;
  }
}

/* Options ocupación */
@media (max-width: 1099px) {
  .bcbb__options-close {
    background: url("/i/165/bookbox/close-big.svg") center center no-repeat;
    color: transparent;
    height: 25px;
    justify-self: end;
    margin-left: auto;
    transition: 0.3s;
    width: 25px;
  }
  .bcbb__options-close:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}
@media (min-width: 1100px) {
  .bcbb__options-close {
    display: none;
  }
}

.bcbb__room {
  border-bottom: 1px solid var(--bookbox-lines);
  display: grid;
  max-width: 1100px;
  width: 100%;
}
@media (max-width: 1099px) {
  .bcbb__room {
    grid-gap: 20px 30px;
    padding: 20px 0;
    position: relative;
  }
}
@media (min-width: 480px) {
  .bcbb__room {
    grid-template-columns: auto 1fr;
  }
}
@media (min-width: 1100px) {
  .bcbb__room {
    align-items: center;
    grid-gap: 10px;
    padding: 29px 0;
  }
}
@media (min-width: 1100px) {
  .bookbox-04__container[data-chain=true] .bcbb__room {
    grid-template-columns: auto auto auto auto 1fr auto;
  }
}
@media (min-width: 1100px) {
  .bookbox-04__container[data-chain=false] .bcbb__room {
    grid-template-columns: auto auto auto auto 1fr;
  }
}

@media (max-width: 1099px) {
  .bcbb__room-separator {
    display: none;
  }
}
@media (min-width: 1100px) {
  .bcbb__room-separator {
    background: url("/i/165/bookbox/arrow-left-gray.svg") center center no-repeat;
    height: 20px;
    width: 10px;
  }
}

.bcbb__options-group {
  align-items: center;
  display: grid;
  grid-template-columns: 110px auto 1fr;
  grid-gap: 10px;
}
@media (min-width: 480px) {
  .bcbb__options-group {
    grid-template-columns: auto auto 1fr;
  }
}

.bcbb__options {
  grid-gap: 0;
  /*Reset*/
  left: 0;
}
@media (max-width: 1099px) {
  .bcbb__options {
    align-items: center;
    display: flex;
    flex-direction: column;
    inset: 0;
    position: fixed;
    overflow: auto;
    z-index: 1000;
  }
}
@media (min-width: 1100px) {
  .bcbb__options {
    width: 100%;
  }
}

.bcbb__options-kids {
  align-items: center;
  display: flex;
}
@media (max-width: 1099px) {
  .bcbb__options-kids {
    grid-column: 1/-1;
  }
}

.bcbb__options-label {
  align-items: center;
  display: flex;
  font-size: 1em;
  text-align: center;
  white-space: nowrap;
}

.bcbb__options-label strong {
  color: var(--bookbox-text-color);
  display: inline-block;
  font-family: Roboto;
  font-size: 1.8em;
  font-weight: var(--bookbox-fw-bold);
  margin-right: 5px;
  width: 20px;
}

.bcbb__options-minus, .bcbb__options-plus {
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  border: 1px solid black;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  color: transparent;
  display: inline-flex;
  justify-content: center;
  transition: 0.2s;
}
@media (max-width: 1099px) {
  .bcbb__options-minus, .bcbb__options-plus {
    height: 34px;
    width: 34px;
  }
}
@media (min-width: 1100px) {
  .bcbb__options-minus, .bcbb__options-plus {
    height: 40px;
    width: 40px;
  }
}

.bcbb__options-minus:hover, .bcbb__options-plus:hover {
  cursor: pointer;
  opacity: 0.7;
}

.bcbb__options-plus {
  background-image: url("/i/165/bookbox/plus.svg");
}

.bcbb__options-minus {
  background-image: url("/i/165/bookbox/minus.svg");
}

.bcbb__options--disabled {
  box-shadow: none;
  opacity: 0.5;
  pointer-events: none;
}

.bcbb__room-number {
  font-size: 1.1em;
}
@media (max-width: 1100px) {
  .bcbb__room-number {
    grid-column: 1/-1;
  }
}

.bcbb__options-kids-label {
  font-weight: var(--bookbox-fw-bold);
  margin-right: 10px;
  white-space: nowrap;
}

.bcbb__kids-ages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bcbb__kids-ages-select {
  appearance: none;
  background: url("/i/165/bookbox/arrow-down.svg") calc(100% - 5px) center no-repeat;
  border: 1px solid var(--bookbox-lines);
  box-shadow: inset 0 1px 1px 0 rgba(0, 0, 0, 0.1);
  color: var(--bookbox-text-color);
  cursor: pointer;
  height: 36px;
  padding: 0 12px;
  width: 50px;
}

.bcbb__room-close {
  transition: 0.3s;
}
.bcbb__room-close:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media (max-width: 1099px) {
  .bcbb__room-close {
    align-self: flex-start;
    background: url("/i/165/bookbox/close-small.svg") 100% center no-repeat;
    color: var(--bookbox-text-color);
    font-size: 0.75rem;
    font-weight: var(--bookbox-fw-light);
    padding-right: 20px;
    position: absolute;
    right: 0;
    text-decoration: underline;
    text-transform: initial;
    top: 20px;
  }
}
@media (min-width: 1100px) {
  .bcbb__room-close {
    background: url("/i/165/bookbox/close-big.svg") 100% center no-repeat;
    grid-column: -1;
    height: 25px;
    transition: 0.3s;
    text-indent: -99999em;
    width: 25px;
  }
}

.bcbb__options-footer {
  display: grid;
}
@media (max-width: 1099px) {
  .bcbb__options-footer {
    align-items: center;
    display: grid;
    grid-gap: calc(var(--distance) * 2);
    justify-content: center;
    padding-top: calc(var(--distance) * 2);
    max-width: var(--bookbox-max-width-mobile-content);
  }
}
@media (min-width: 1100px) {
  .bcbb__options-footer {
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
    height: var(--bookbox-room-height);
  }
}

.bcbb__options-add-room {
  background: url("/i/165/bookbox/plus-small.svg") 0 center no-repeat;
  color: var(--first-color-default);
  padding-left: var(--distance);
  text-decoration: none;
  transition: 0.3s;
}
.bcbb__options-add-room:hover {
  cursor: pointer;
  opacity: 0.7;
}
@media (max-width: 1099px) {
  .bcbb__options-add-room {
    justify-self: center;
  }
}
.bcbb__options-add-room--hidden {
  pointer-events: none;
  opacity: 0.2;
  user-select: none;
}

input.bcbb__options-apply-btn {
  appearance: none;
  background-color: var(--first-color-default);
  border-radius: 2px;
  color: #fff;
  height: 40px;
  font-size: 1rem !important;
  padding: 0 100px;
  transition: 0.3s;
}
@media (min-width: 1100px) {
  input.bcbb__options-apply-btn {
    font-size: 0.8rem;
  }
}

input.bcbb__options-apply-btn:hover, input.bcbb__options-apply-btn:focus {
  background-color: var(--first-color-default);
  color: #fff;
  cursor: pointer;
}

/* Datepicker */
@media (max-width: 1099px) {
  body.bcbb--show {
    overflow: hidden;
  }
}

.bcbb__datepicker {
  background-color: white;
}
@media (max-width: 1099px) {
  .bcbb__datepicker {
    position: absolute;
    left: 0;
    width: var(--bookbox-max-width-mobile-content);
  }
}
@media (min-width: 1100px) {
  .bcbb__datepicker {
    min-height: 480px;
  }
}

@media (max-width: 1099px) {
  .bcbb__datepicker-header {
    align-items: center;
    background-color: white;
    display: grid;
    grid-auto-flow: dense;
    grid-template-columns: 40px 1fr 40px;
    padding: 10px 0;
    position: sticky;
    top: 0;
  }
}
@media (min-width: 1100px) {
  .bcbb__datepicker-header {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
  }
}

.ui-datepicker {
  font-weight: var(--bookbox-font-weight);
  background-color: white;
  font-size: 1.3rem !important;
  font-weight: var(--bookbox-fw-light);
  text-transform: lowercase;
}
@media (max-width: 1099px) {
  body:not(.mobile) .ui-datepicker {
    display: flex !important;
    flex-direction: column;
    width: 100% !important;
  }
}
.bcbb--show.mobile .ui-datepicker {
  align-items: center;
  display: flex !important;
  flex-direction: column;
  inset: 0;
  padding-top: var(--distance);
  overflow: auto;
  position: fixed;
  width: inherit !important;
  z-index: 100;
}

.ui-datepicker .ui-datepicker-header {
  padding: 0.2em 0;
  position: relative;
  border-bottom: 1px solid var(--base-gray-light);
}
@media (min-width: 1100px) {
  .ui-datepicker .ui-datepicker-header {
    position: initial;
  }
}

.ui-datepicker .ui-datepicker-title {
  font-size: 1.2rem;
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
  text-transform: none;
}

@media (max-width: 1099px) {
  .ui-datepicker-group {
    max-width: 400px;
    width: 100% !important;
  }
}

.ui-datepicker a {
  position: relative;
  border-radius: 2px;
  text-align: center !important;
}
.ui-datepicker a:hover {
  cursor: pointer;
}

.mobile .ui-datepicker .ui-datepicker-prev,
.mobile .ui-datepicker .ui-datepicker-next {
  pointer-events: none;
  visibility: hidden;
}
@media (min-width: 1100px) {
  .ui-datepicker .ui-datepicker-prev,
  .ui-datepicker .ui-datepicker-next {
    box-shadow: var(--bookbox-box-shadow);
    border-radius: 50%;
    position: absolute;
    top: 50%;
  }
}

.ui-datepicker .ui-datepicker-prev {
  background: white url("/i/165/template/chevron-left.svg") center center no-repeat !important;
}
@media (min-width: 1100px) {
  .ui-datepicker .ui-datepicker-prev {
    transform: translate(-50%, -50%);
  }
}

.ui-datepicker .ui-datepicker-next {
  background: white url("/i/165/template/chevron-right.svg") center center no-repeat !important;
}
@media (min-width: 1100px) {
  .ui-datepicker .ui-datepicker-next {
    transform: translate(50%, -50%);
  }
}

.ui-datepicker th {
  padding: 0.5em 0.3em;
  text-align: center;
  border: 0;
}

.ui-datepicker thead span, .ui-datepicker .ui-datepicker th {
  font-weight: var(--bookbox-fw-bold);
  color: var(--bookbox-text-color);
  text-transform: none;
  font-size: 14px;
}

.w-prices .ui-datepicker td {
  position: relative !important;
}
.w-prices .ui-datepicker td:before {
  content: attr(title);
  position: absolute;
  bottom: 9px;
  right: 0;
  left: 0;
  width: 100%;
  font-size: 0.75rem;
  opacity: 0.8;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 1100px) {
  .w-prices .ui-datepicker td:before {
    bottom: 11px;
  }
}
.w-prices .ui-datepicker td.specialDate:before, .w-prices .ui-datepicker td.ui-datepicker-current-day:before, .w-prices .ui-datepicker td.betwenDate:before {
  color: #fff !important;
}

.ui-datepicker td span, .ui-datepicker td a {
  position: relative;
  display: block;
  padding: 12px;
  min-height: 40px;
  line-height: 120%;
  text-align: right;
  text-decoration: none;
  font-size: 0.85em;
  line-height: 20px;
}
.w-prices .ui-datepicker td span, .w-prices .ui-datepicker td a {
  padding: 8px 15px 15px;
  min-width: 50px;
  min-height: 50px;
}
@media (min-width: 1100px) {
  .ui-datepicker td span, .ui-datepicker td a {
    font-size: 0.8em;
    padding: 15px;
  }
  .w-prices .ui-datepicker td span, .w-prices .ui-datepicker td a {
    padding: 10px 20px 20px;
    min-width: 60px;
    min-height: 55px;
  }
}

.ui-datepicker .w-prices-loading td {
  position: relative;
}
.ui-datepicker .w-prices-loading td:before {
  content: "????";
  filter: blur(2px);
  font-size: 0.75rem;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.15);
}

.ui-datepicker a {
  border-radius: 5px;
  text-align: center !important;
}

.ui-datepicker a.ui-state-default {
  color: var(--bookbox-text-color);
  transition: 0.2s;
}

.ui-datepicker .ui-state-disabled:not(.ui-datepicker-other-month):not(.ui-datepicker-prev) {
  color: #666;
}
.ui-datepicker .ui-state-disabled:not(.ui-datepicker-other-month):not(.ui-datepicker-prev):before {
  content: "- -" !important;
}

.ui-datepicker a:hover {
  background-color: #eee;
}

.ui-datepicker .ui-datepicker-current-day a {
  background-color: var(--first-color-default);
  color: white;
}

.ui-datepicker .betwenDate a {
  background-color: #ccc;
  color: #fff !important;
}

.ui-datepicker .specialDate a {
  background-color: var(--first-color-default) !important;
  color: #fff !important;
}

.legend {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #FFF;
  border-top: 1px solid var(--base-gray-light);
  display: block;
  font-size: 11px;
  text-transform: none;
  padding: 0 10px;
  text-align: center;
  line-height: 30px;
}
@media (min-width: 1100px) {
  .legend {
    position: relative;
    border-top: none;
    font-size: 13px;
    padding-top: 10px;
  }
}
.legend span {
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  border: 1px solid #e4e4e4;
  margin: 0 4px 0 10px;
  line-height: 16px;
  color: #111;
  border-radius: 3px;
}
.legend .no-disp {
  color: #999;
}
.legend .restriction {
  background-color: #626262 !important;
  background-size: 8px 8px;
  background-image: repeating-linear-gradient(45deg, #565656 0, #565656 1.1px, #FFF 0, #FFF 50%);
}
.legend .restriction-in {
  background: #6a6a6a;
  background: linear-gradient(315deg, #777777 50%, #FFF 50%);
}
.legend .restriction-out {
  background: #6a6a6a;
  background: linear-gradient(315deg, #FFF 50%, #777777 50%);
}

