/* Orlowsky Booking Widget v2.0.1 */
:root {
  --owb-gold: #ffbf00;
  --owb-gold-hover: #f2b500;
  --owb-green: #0a5e54;
  --owb-green-dark: #07453f;
  --owb-ink: #17201f;
  --owb-muted: #64706e;
  --owb-line: #dfe6e4;
  --owb-soft: #f3f6f5;
  --owb-white: #ffffff;
  --owb-danger: #b42318;
  --owb-success: #16794b;
  --owb-shadow: 0 22px 60px rgba(11, 45, 41, 0.16);
}

[data-orlowsky-booking-widget],
[data-orlowsky-booking-widget] *,
.owb-floating-layer,
.owb-floating-layer * {
  box-sizing: border-box;
}

[data-orlowsky-booking-widget] {
  display: block;
  width: 100%;
  min-width: 0;
  color: var(--owb-ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  isolation: isolate;
}

[data-orlowsky-booking-widget] button,
[data-orlowsky-booking-widget] input,
[data-orlowsky-booking-widget] textarea,
[data-orlowsky-booking-widget] select,
.owb-floating-layer button,
.owb-floating-layer input,
.owb-floating-layer textarea,
.owb-floating-layer select {
  font: inherit;
}

[data-orlowsky-booking-widget] button,
.owb-floating-layer button {
  -webkit-tap-highlight-color: transparent;
}

.owb-widget {
  width: 100%;
}

.owb-search-wrap {
  width: 100%;
  padding: 0;
}

.owb-search-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) minmax(220px, 1fr) minmax(230px, 1fr);
  gap: 26px;
  width: 100%;
  padding: 10px 20px;
  background: rgba(195, 207, 202, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 10px 30px rgba(0, 35, 31, 0.12);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.owb-control {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  min-height: 59px;
  padding: 6px 50px 7px 12px;
  color: #fff;
  text-align: left;
  background: rgba(177, 176, 158, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.owb-control:hover,
.owb-control:focus-visible,
.owb-control[aria-expanded="true"] {
  background: rgba(155, 157, 139, 0.86);
  border-color: #fff;
  outline: none;
}

.owb-control:active {
  transform: translateY(1px);
}

.owb-control-copy {
  display: block;
  min-width: 0;
}

.owb-control-label {
  display: block;
  margin: 0 0 2px;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.owb-control-value {
  display: block;
  overflow: hidden;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.owb-control-value.is-placeholder {
  color: rgba(255, 255, 255, 0.88);
}

.owb-calendar-icon {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 29px;
  height: 31px;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.96);
  pointer-events: none;
}

.owb-find-button {
  min-height: 59px;
  padding: 0 24px;
  color: #090909;
  background: var(--owb-gold);
  border: 0;
  border-radius: 4px;
  box-shadow: none;
  cursor: pointer;
  font-size: 20px;
  font-weight: 400;
  transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.owb-find-button:hover,
.owb-find-button:focus-visible {
  background: var(--owb-gold-hover);
  outline: none;
  box-shadow: 0 8px 20px rgba(255, 191, 0, 0.24);
}

.owb-find-button:active {
  transform: translateY(1px);
}

.owb-find-button:disabled {
  cursor: wait;
  opacity: 0.74;
}

.owb-inline-error {
  display: none;
  margin-top: 9px;
  padding: 9px 12px;
  color: #fff;
  background: rgba(180, 35, 24, 0.94);
  border-radius: 4px;
  font-size: 14px;
}

.owb-inline-error.is-visible {
  display: block;
}

.owb-results {
  display: none;
  width: 100%;
  margin-top: 24px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--owb-line);
  border-radius: 18px;
  box-shadow: var(--owb-shadow);
}

.owb-results.is-visible {
  display: block;
  animation: owbFadeUp 260ms ease both;
}

@keyframes owbFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.owb-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.owb-results-eyebrow {
  margin: 0 0 5px;
  color: var(--owb-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owb-results-title {
  margin: 0;
  color: var(--owb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.1;
}

.owb-results-summary {
  margin: 8px 0 0;
  color: var(--owb-muted);
  font-size: 15px;
}

.owb-results-change {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--owb-green-dark);
  background: #fff;
  border: 1px solid #bfd0cc;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.owb-results-change:hover,
.owb-results-change:focus-visible {
  background: #eef5f3;
  outline: none;
}

.owb-room-list {
  display: grid;
  gap: 16px;
}

.owb-room-card {
  display: grid;
  grid-template-columns: minmax(240px, 31%) minmax(0, 1fr) minmax(190px, 220px);
  min-height: 230px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--owb-line);
  border-radius: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.owb-room-card:hover {
  border-color: #bfcfcb;
  box-shadow: 0 14px 34px rgba(21, 57, 52, 0.12);
  transform: translateY(-2px);
}

.owb-room-media {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  background: linear-gradient(135deg, #275c54, #0f3e39 55%, #b89359);
}

.owb-room-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.owb-room-card:hover .owb-room-media img {
  transform: scale(1.025);
}

.owb-room-media-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(7, 49, 44, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  font-size: 12px;
  font-weight: 700;
}

.owb-room-main {
  min-width: 0;
  padding: 24px 24px 22px;
}

.owb-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 8px;
  color: var(--owb-green);
  font-size: 13px;
  font-weight: 700;
}

.owb-room-title {
  margin: 0 0 10px;
  color: var(--owb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.12;
}

.owb-room-description {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #53605e;
  font-size: 15px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.owb-room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.owb-room-amenity {
  padding: 5px 8px;
  color: #3b504c;
  background: #eff4f2;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.owb-room-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 22px;
  background: #f7f9f8;
  border-left: 1px solid var(--owb-line);
}

.owb-room-price-label {
  color: var(--owb-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.owb-room-price {
  color: var(--owb-ink);
  font-size: 27px;
  font-weight: 800;
  line-height: 1.1;
}

.owb-room-price small {
  display: block;
  margin-top: 4px;
  color: var(--owb-muted);
  font-size: 12px;
  font-weight: 400;
}

.owb-room-select {
  width: 100%;
  min-height: 46px;
  padding: 10px 16px;
  color: #111;
  background: var(--owb-gold);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.owb-room-select:hover,
.owb-room-select:focus-visible {
  background: var(--owb-gold-hover);
  outline: none;
}

.owb-room-source {
  color: var(--owb-green);
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.owb-room-source:hover {
  color: var(--owb-green-dark);
}

.owb-results-note {
  margin: 18px 0 0;
  padding-top: 15px;
  color: #65706f;
  border-top: 1px solid var(--owb-line);
  font-size: 12px;
  line-height: 1.5;
}

.owb-results-note a {
  color: var(--owb-green);
}

.owb-empty {
  padding: 34px;
  color: var(--owb-muted);
  background: var(--owb-soft);
  border-radius: 10px;
  text-align: center;
}

.owb-loading {
  display: grid;
  gap: 14px;
}

.owb-skeleton {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(90deg, #edf1f0 25%, #f7f9f8 42%, #edf1f0 62%);
  background-size: 400% 100%;
  border-radius: 12px;
  animation: owbShimmer 1.2s infinite;
}

@keyframes owbShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

/* Floating calendar and guests */
.owb-floating-layer {
  position: fixed;
  z-index: 2147483000;
  color: var(--owb-ink);
  font-family: Arial, Helvetica, sans-serif;
}

.owb-popover {
  width: min(690px, calc(100vw - 24px));
  padding: 18px;
  background: #fff;
  border: 1px solid #d8e0de;
  border-radius: 12px;
  box-shadow: 0 24px 70px rgba(0, 31, 27, 0.28);
  animation: owbPopoverIn 140ms ease both;
}

@keyframes owbPopoverIn {
  from { opacity: 0; transform: translateY(-4px) scale(0.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Повторная отрисовка месяцев не выглядит как открытие второго окна. */
.owb-popover.is-updating {
  animation: none;
}

.owb-calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.owb-calendar-prompt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: var(--owb-green-dark);
}

.owb-calendar-prompt strong {
  font-size: 15px;
  font-weight: 800;
}

.owb-calendar-prompt span {
  color: #66716f;
  font-size: 12px;
  font-weight: 600;
}

.owb-calendar-close,
.owb-popover-close {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: #33413f;
  background: #f1f4f3;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.owb-calendar-nav {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.owb-calendar-nav button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--owb-green-dark);
  background: #eff4f2;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 24px;
}

.owb-calendar-nav button:hover,
.owb-calendar-nav button:focus-visible {
  background: #e1ece8;
  outline: none;
}

.owb-calendar-month-labels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  color: var(--owb-ink);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.owb-calendar-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.owb-month {
  min-width: 0;
}

.owb-weekdays,
.owb-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.owb-weekdays {
  margin-bottom: 4px;
}

.owb-weekday {
  padding: 4px 0;
  color: #88918f;
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.owb-day {
  position: relative;
  isolation: isolate;
  min-height: 40px;
  padding: 0;
  color: #25312f;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 14px;
}

.owb-day::after {
  position: absolute;
  top: 3px;
  right: 0;
  bottom: 3px;
  left: 0;
  z-index: 0;
  background: transparent;
  content: "";
  pointer-events: none;
}

.owb-day-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 3px auto;
  border-radius: 50%;
  transition: background-color 100ms ease, color 100ms ease, box-shadow 100ms ease;
}

.owb-day:hover .owb-day-number,
.owb-day:focus-visible .owb-day-number {
  background: #e8f0ed;
}

.owb-day:focus-visible {
  outline: none;
}

.owb-day.is-other {
  color: #bbc2c0;
  cursor: default;
  text-decoration: none;
}

.owb-day.is-disabled {
  color: #c9cfcd;
  cursor: not-allowed;
  text-decoration: line-through;
}

.owb-day.is-disabled:hover .owb-day-number,
.owb-day.is-disabled:focus-visible .owb-day-number {
  background: transparent;
}

/*
 * Непрерывная полоса между датой заезда и выезда, как в гостиничных
 * системах бронирования: тёмные круглые края и светлая заливка диапазона.
 */
.owb-day.is-range::after {
  background: #dcebe6;
}

.owb-day.is-range-start::after {
  background: linear-gradient(to right, transparent 0 50%, #dcebe6 50% 100%);
}

.owb-day.is-range-end::after {
  background: linear-gradient(to right, #dcebe6 0 50%, transparent 50% 100%);
}

.owb-day.is-range-start.is-range-end::after,
.owb-day.is-range-start.is-range-single::after {
  background: transparent;
}

.owb-day.is-range-start .owb-day-number,
.owb-day.is-range-end .owb-day-number {
  color: #fff;
  background: var(--owb-green);
  font-weight: 800;
}

.owb-day.is-range-start:hover .owb-day-number,
.owb-day.is-range-end:hover .owb-day-number,
.owb-day.is-range-start:focus-visible .owb-day-number,
.owb-day.is-range-end:focus-visible .owb-day-number {
  background: var(--owb-green-dark);
}

.owb-day.is-preview-end .owb-day-number {
  box-shadow: 0 0 0 2px rgba(10, 94, 84, 0.22);
}

.owb-day.is-today:not(.is-range-start):not(.is-range-end) .owb-day-number {
  color: var(--owb-green);
  font-weight: 800;
}

.owb-calendar-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid #e5eae8;
}

.owb-calendar-selected {
  color: #55615f;
  font-size: 13px;
}

.owb-calendar-clear {
  padding: 8px 10px;
  color: var(--owb-green);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.owb-guests-popover {
  width: min(390px, calc(100vw - 24px));
}

.owb-guests-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.owb-guests-title {
  margin: 0;
  font-size: 20px;
}

.owb-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  border-top: 1px solid #edf0ef;
}

.owb-guest-row:first-of-type {
  border-top: 0;
}

.owb-guest-copy strong {
  display: block;
  font-size: 15px;
}

.owb-guest-copy span {
  display: block;
  margin-top: 2px;
  color: #77817f;
  font-size: 12px;
}

.owb-counter {
  display: grid;
  grid-template-columns: 36px 34px 36px;
  align-items: center;
}

.owb-counter button {
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--owb-green-dark);
  background: #eff4f2;
  border: 1px solid #d7e1de;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.owb-counter button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.owb-counter-value {
  text-align: center;
  font-size: 16px;
  font-weight: 800;
}

.owb-child-ages {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 7px;
  padding-top: 14px;
  border-top: 1px solid #edf0ef;
}

.owb-child-age {
  display: grid;
  gap: 5px;
}

.owb-child-age label {
  color: #596562;
  font-size: 12px;
  font-weight: 700;
}

.owb-child-age select {
  width: 100%;
  height: 42px;
  padding: 0 34px 0 10px;
  color: var(--owb-ink);
  background: #fff;
  border: 1px solid #ccd7d4;
  border-radius: 6px;
}

.owb-guests-done {
  width: 100%;
  min-height: 45px;
  margin-top: 15px;
  color: #111;
  background: var(--owb-gold);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
}

/* Contact modal */
.owb-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483600;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 24, 22, 0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  animation: owbModalFade 150ms ease both;
}

@keyframes owbModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.owb-modal-dialog {
  position: relative;
  width: min(780px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  animation: owbModalIn 190ms ease both;
}

@keyframes owbModalIn {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.owb-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #1d2a28;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dce3e1;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
}

.owb-modal-grid {
  display: grid;
  grid-template-columns: minmax(240px, 36%) minmax(0, 1fr);
}

.owb-modal-summary {
  min-height: 100%;
  padding: 30px 24px;
  color: #fff;
  background: linear-gradient(155deg, #0c5e54 0%, #063f39 58%, #7a5d38 100%);
}

.owb-modal-summary-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owb-modal-room-name {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1.15;
}

.owb-modal-trip {
  display: grid;
  gap: 10px;
}

.owb-modal-trip-item {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.owb-modal-trip-item span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  text-transform: uppercase;
}

.owb-modal-trip-item strong {
  display: block;
  margin-top: 2px;
  font-size: 15px;
}

.owb-modal-price {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.owb-modal-price strong {
  display: block;
  font-size: 25px;
}

.owb-modal-price small {
  color: rgba(255, 255, 255, 0.68);
}

.owb-modal-form-wrap {
  padding: 34px 34px 30px;
}

.owb-modal-eyebrow {
  margin: 0 0 5px;
  color: var(--owb-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.owb-modal-title {
  margin: 0 45px 7px 0;
  color: var(--owb-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.1;
}

.owb-modal-subtitle {
  margin: 0 0 20px;
  color: var(--owb-muted);
  font-size: 14px;
}

.owb-form {
  display: grid;
  gap: 13px;
}

.owb-field {
  display: grid;
  gap: 6px;
}

.owb-field label {
  color: #35413f;
  font-size: 13px;
  font-weight: 800;
}

.owb-field input,
.owb-field textarea {
  width: 100%;
  color: var(--owb-ink);
  background: #fff;
  border: 1px solid #cbd5d2;
  border-radius: 7px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.owb-field input {
  height: 48px;
  padding: 0 13px;
}

.owb-field textarea {
  min-height: 92px;
  padding: 12px 13px;
  resize: vertical;
}

.owb-field input:focus,
.owb-field textarea:focus {
  border-color: var(--owb-green);
  box-shadow: 0 0 0 3px rgba(10, 94, 84, 0.12);
}

.owb-field input[aria-invalid="true"],
.owb-field textarea[aria-invalid="true"] {
  border-color: var(--owb-danger);
}

.owb-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.owb-consent {
  color: #707b79;
  font-size: 11px;
  line-height: 1.5;
}

.owb-consent a {
  color: var(--owb-green);
}

.owb-form-message {
  min-height: 18px;
  color: var(--owb-danger);
  font-size: 13px;
  font-weight: 700;
}

.owb-form-message.is-success {
  color: var(--owb-success);
}

.owb-submit {
  min-height: 50px;
  color: #111;
  background: var(--owb-gold);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
}

.owb-submit:hover,
.owb-submit:focus-visible {
  background: var(--owb-gold-hover);
  outline: none;
}

.owb-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.owb-success-box {
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 42px;
  text-align: center;
}

.owb-success-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--owb-success);
  border-radius: 50%;
  font-size: 34px;
}

.owb-success-box h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.owb-success-box p {
  max-width: 450px;
  margin: 0;
  color: var(--owb-muted);
}

.owb-success-close {
  margin-top: 22px;
  padding: 11px 19px;
  color: #111;
  background: var(--owb-gold);
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
}

body.owb-lock-scroll {
  overflow: hidden !important;
}

@media (max-width: 1120px) {
  .owb-search-bar {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .owb-room-card {
    grid-template-columns: minmax(220px, 34%) minmax(0, 1fr);
  }

  .owb-room-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-top: 1px solid var(--owb-line);
    border-left: 0;
  }

  .owb-room-select {
    width: 190px;
  }

  .owb-room-source {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .owb-search-bar {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 10px;
  }

  .owb-control,
  .owb-find-button {
    min-height: 56px;
  }

  .owb-control-label {
    font-size: 14px;
  }

  .owb-control-value {
    font-size: 18px;
  }

  .owb-results {
    margin-top: 16px;
    padding: 18px 12px;
    border-radius: 12px;
  }

  .owb-results-head {
    display: block;
  }

  .owb-results-change {
    margin-top: 12px;
  }

  .owb-room-card {
    display: block;
  }

  .owb-room-media,
  .owb-room-media img {
    min-height: 210px;
    height: 210px;
  }

  .owb-room-main {
    padding: 20px 16px 16px;
  }

  .owb-room-side {
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .owb-room-select {
    width: 100%;
  }

  .owb-room-source {
    text-align: center;
  }

  .owb-calendar-months,
  .owb-calendar-month-labels {
    grid-template-columns: 1fr;
  }

  .owb-calendar-months .owb-month:nth-child(2),
  .owb-calendar-month-labels span:nth-child(2) {
    display: none;
  }

  .owb-popover {
    padding: 14px;
  }

  .owb-modal {
    padding: 8px;
    align-items: end;
  }

  .owb-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 8px);
    border-radius: 16px 16px 0 0;
  }

  .owb-modal-grid {
    display: block;
  }

  .owb-modal-summary {
    min-height: 0;
    padding: 23px 20px;
  }

  .owb-modal-room-name {
    margin-right: 40px;
    font-size: 23px;
  }

  .owb-modal-trip {
    grid-template-columns: 1fr 1fr;
    gap: 0 14px;
  }

  .owb-modal-form-wrap {
    padding: 25px 20px 24px;
  }

  .owb-modal-title {
    font-size: 28px;
  }
}

@media (max-width: 390px) {
  .owb-child-ages {
    grid-template-columns: 1fr;
  }

  .owb-modal-trip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-orlowsky-booking-widget] *,
  .owb-floating-layer *,
  .owb-modal * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}


/* ORLOWSKY_SITE_FIX_START */
.owb-room-price-label,.owb-room-source,.owb-results-note{display:none!important}
/* ORLOWSKY_SITE_FIX_END */
