.lv-book-float {
  position: fixed;
  top: 98px;
  right: 155px;
  z-index: 9996;
  display: block;
  box-sizing: border-box;
  width: 236px;
  height: 86px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #16181a;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 520ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 520ms linear,
    border-color 220ms ease;
}

.lv-book-float::after {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  pointer-events: none;
  transition: border-color 220ms ease;
}

body.is-opening-finished .lv-book-float,
html.is-after-opening-reload .lv-book-float {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.is-global-menu-open .lv-book-float,
body.is-location-gallery-open .lv-book-float,
body:has(.is-gallery-zoom-open) .lv-book-float,
html.is-booking-modal-open .lv-book-float,
html.is-contact-modal-open .lv-book-float,
html.is-contact-thanks-open .lv-book-float {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lv-book-float__media,
.lv-book-float__slide,
.lv-book-float__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lv-book-float__slide {
  background-color: #16181a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  transition: opacity 800ms ease;
}

.lv-book-float__slide.is-active {
  opacity: 1;
}

.lv-book-float__shade {
  background: rgba(0, 0, 0, 0.48);
  transition: background-color 220ms ease;
}

.lv-book-float__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px 1fr 16px;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  box-sizing: border-box;
}

.lv-book-float__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 17px;
  color: #fff;
}

.lv-book-float__icon svg {
  display: block;
  width: 17px;
  height: 17px;
}

.lv-book-float__copy {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.42em;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}

.lv-book-float__property {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
}

.lv-book-float__cta {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

.lv-book-float__arrow {
  justify-self: end;
  width: 0;
  height: 0;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5.5px solid rgba(255, 255, 255, 0.88);
}

.lv-book-float:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.lv-book-float:hover::after {
  border-color: rgba(255, 255, 255, 0.68);
}

.lv-book-float:hover .lv-book-float__shade {
  background: rgba(0, 0, 0, 0.40);
}

.lv-book-float:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

@media (max-width: 1280px) and (min-width: 1051px) {
  .lv-book-float {
    top: 98px;
    right: 155px;
    width: 220px;
    height: 80px;
  }

  .lv-book-float__inner {
    padding: 0 16px;
  }

  .lv-book-float__property {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .lv-book-float__cta {
    font-size: 0.64rem;
  }
}

@media (max-width: 1050px) {
  .lv-book-float {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lv-book-float,
  .lv-book-float::after,
  .lv-book-float__slide,
  .lv-book-float__shade {
    transition: none;
  }
}
