.ibc-calendar {
  --ibc-available: #16a34a;
  --ibc-available-bg: #dcfce7;
  --ibc-booked: #b91c1c;
  --ibc-booked-bg: #fee2e2;
  --ibc-past: #9ca3af;
  --ibc-past-bg: #f3f4f6;
  --ibc-border: #e5e7eb;
  --ibc-text: #111827;
  --ibc-muted: #6b7280;
  --ibc-radius: 10px;
  max-width: 760px;
  margin: 0 auto;
  color: var(--ibc-text);
  font-size: 15px;
  line-height: 1.4;
}

.ibc-calendar__title {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.ibc-calendar__toolbar {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

.ibc-calendar__viewport {
  flex: 1 1 auto;
  overflow: hidden;
}

.ibc-calendar__track {
  display: flex;
  transition: transform 0.3s ease;
  will-change: transform;
}

.ibc-month {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  padding: 0.25rem;
}

.ibc-month__header {
  text-align: center;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: capitalize;
}

.ibc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.ibc-weekday {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ibc-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-bottom: 4px;
}

.ibc-grid--days {
  margin-top: 2px;
}

.ibc-day {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ibc-border);
  border-radius: var(--ibc-radius);
  font-variant-numeric: tabular-nums;
  background: #fff;
}

.ibc-day--empty {
  border: none;
  background: transparent;
}

.ibc-day--available {
  background: var(--ibc-available-bg);
  border-color: var(--ibc-available-bg);
  color: var(--ibc-available);
  font-weight: 600;
}

.ibc-day--booked {
  background: var(--ibc-booked-bg);
  border-color: var(--ibc-booked-bg);
  color: var(--ibc-booked);
  text-decoration: line-through;
}

.ibc-day--past {
  background: var(--ibc-past-bg);
  border-color: var(--ibc-past-bg);
  color: var(--ibc-past);
}

.ibc-nav {
  flex: 0 0 auto;
  width: 40px;
  border: 1px solid var(--ibc-border);
  border-radius: var(--ibc-radius);
  background: #fff;
  color: var(--ibc-text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.ibc-nav:hover:not(:disabled) {
  background: var(--ibc-past-bg);
}

.ibc-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.ibc-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--ibc-muted);
}

.ibc-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.ibc-swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
}

.ibc-swatch--available {
  background: var(--ibc-available-bg);
  border: 1px solid var(--ibc-available);
}

.ibc-swatch--booked {
  background: var(--ibc-booked-bg);
  border: 1px solid var(--ibc-booked);
}

.ibc-swatch--past {
  background: var(--ibc-past-bg);
  border: 1px solid var(--ibc-past);
}

.ibc-notice {
  border: 1px solid var(--ibc-border, #e5e7eb);
  background: #fff7ed;
  color: #9a3412;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  max-width: 760px;
  margin: 0 auto;
}

.ibc-day--today {
  outline: 3px solid var(--ibc-text);
  outline-offset: 2px;
}

.ibc-timeline {
  --ibc-green: #66cc66;
  --ibc-green-dark: #166534;
  --ibc-green-soft: #dcfce7;
  --ibc-ink: #111111;
  --ibc-muted: #6b7280;
  --ibc-line: #d1d5db;
  width: 100%;
  color: var(--ibc-ink);
  font-size: 15px;
  line-height: 1.4;
}
.ibc-timeline .ibc-timeline__title {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
.ibc-timeline .ibc-timeline__scroll {
  display: flex;
  align-items: stretch;
  gap: 5px;
  width: 100%;
  padding: 0px;
  overflow-x: auto;
  scrollbar-width: thin;
}
.ibc-timeline .ibc-timeline__range {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  border-radius: 3px;
  overflow: hidden;
}
.ibc-timeline .ibc-timeline__dates {
  display: flex;
  align-items: stretch;
}
.ibc-timeline .ibc-timeline__date {
  position: relative;
  flex: 0 0 100px;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  box-sizing: border-box;
  padding: 5px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--ibc-green);
  color: #ffffff;
  font-variant-numeric: tabular-nums;
  user-select: none;
}
.ibc-timeline .ibc-timeline__date:last-child {
  border-right: 0;
}
.ibc-timeline .ibc-timeline__date--unavailable {
  background: #f5f5f5;
  color: var(--ibc-ink);
}
.ibc-timeline .ibc-timeline__date--unavailable:not(.ibc-timeline__date--today) {
  filter: saturate(0);
}
.ibc-timeline .ibc-timeline__date--unavailable:not(.ibc-timeline__date--today) > * {
  opacity: 0.2;
}
.ibc-timeline .ibc-timeline__date--cleaning {
  background-color: #496995;
  opacity: 1;
  background: repeating-linear-gradient(-45deg, #bbbbbb, #bbbbbb 5px, #cccccc 5px, #cccccc 20px);
}
.ibc-timeline .ibc-timeline__date--today {
  background: var(--ibc-ink);
  color: #ffffff;
}
.ibc-timeline .ibc-timeline__month-label,
.ibc-timeline .ibc-timeline__weekday,
.ibc-timeline .ibc-timeline__today {
  font-size: var(--wp--preset--font-size--xxs);
  line-height: 1;
  text-transform: uppercase;
}
.ibc-timeline .ibc-timeline__month-label {
  margin-bottom: 10px;
  font-weight: 400;
}
.ibc-timeline .ibc-timeline__day {
  display: flex;
  flex-direction: column;
}
.ibc-timeline .ibc-timeline__day .ibc-timeline__day_number {
  font-size: var(--wp--preset--font-size--l);
  line-height: 1;
}
.ibc-timeline .ibc-timeline__weather {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 24px;
  font-size: var(--wp--preset--font-size--xxs);
  line-height: 1;
  white-space: nowrap;
}
.ibc-timeline .ibc-timeline__weather img {
  display: block;
  width: 24px;
  height: 24px;
}
.ibc-timeline .ibc-timeline__booking {
  flex: 0 0 0px;
  display: flex;
  justify-content: flex-start;
  box-sizing: border-box;
  padding: 10px;
  background: var(--ibc-green);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.ibc-timeline .ibc-timeline__booking .ibc-booking-button {
  padding: 10px 15px;
  border: none;
  border-radius: 3px;
  background: #ffffff;
  color: #000;
  font: inherit;
  cursor: pointer;
  user-select: none;
}
.ibc-timeline .ibc-timeline__booking .ibc-booking-button:hover, .ibc-timeline .ibc-timeline__booking .ibc-booking-button:focus-visible {
  background: #000;
  color: #fff;
}
.ibc-timeline .ibc-timeline__booking .ibc-booking-button:focus-visible, .ibc-timeline .ibc-timeline__booking .ibc-booking-button a:focus-visible {
  outline: 2px solid var(--ibc-ink);
  outline-offset: 2px;
}

.ibc-booking-popover {
  position: fixed;
  z-index: 900;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  padding: 20px;
  border-radius: 10px;
  background: #ffffff;
  color: var(--ibc-ink);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: translate(-50%, -50%);
}
@media (max-width: 600px) {
  .ibc-booking-popover {
    bottom: 0px;
    left: 0px;
    max-width: unset;
    transform: none;
    gap: 20px;
  }
}
.ibc-booking-popover[hidden] {
  display: none;
}
.ibc-booking-popover .ibc-booking-popover__title,
.ibc-booking-popover .ibc-booking-popover__direct {
  margin: 0;
}
.ibc-booking-popover .ibc-booking-popover__title {
  font-weight: 400;
  font-size: var(--wp--preset--font-size--m);
  text-align: left;
}
.ibc-booking-popover .ibc-booking-popover__links {
  display: flex;
  gap: 10px;
  padding: 10px 0px;
}
.ibc-booking-popover a {
  flex: 1;
  display: block;
  padding: 20px;
  border-radius: 3px;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border: 1px Solid #eeeeee;
  min-height: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 80%;
  text-decoration: underline;
}
@media (max-width: 600px) {
  .ibc-booking-popover a {
    min-height: 120px;
  }
}
.ibc-booking-popover a.sutochno {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22130%22%20height%3D%2220%22%20viewBox%3D%220%200%20130%2020%22%20fill%3D%22none%22%3E%3Cg%20clip-path%3D%22url%28%23clip0_2065_20%29%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.24355%205.85039C3.22854%205.77761%203.21139%205.707%203.19339%205.638C2.97863%204.85864%202.28847%205.2254%202.14187%204.68872C1.92882%203.90894%204.17118%203.77098%204.73402%203.63051C6.1945%203.26838%208.20883%202.407%2010.3131%201.83667C12.4269%201.29789%2014.6093%201.05605%2016.0594%200.653122C16.6176%200.498765%2018.6306%20-0.48206%2018.8436%200.297721C18.9898%200.8344%2018.2058%200.855428%2018.4167%201.63605C18.7185%202.7052%2019.5655%204.03217%2019.9895%205.53958C20.4816%207.28211%2020.5557%209.20461%2020.8665%2010.3045C20.9664%2010.6565%2021.1704%2010.8294%2021.3428%2010.9699C21.8426%2011.2828%2021.882%2011.928%2021.2759%2012.0874C20.954%2012.1719%2020.5043%2012.3103%2019.9895%2012.3044C19.7207%2012.3014%2019.6144%2012.1841%2019.5852%2011.9793C19.4695%2011.1839%2019.3276%2010.0887%2019.0799%209.21306C18.8565%208.41939%2018.3674%207.12817%2017.9207%206.41822C17.6747%206.02706%2017.3515%205.55388%2017.6014%205.2397C18.0292%204.7026%2017.8869%203.86015%2017.45%203.35838C16.9669%202.80194%2016.1336%202.82002%2015.2527%203.05177C14.8416%203.15986%2014.3975%203.32768%2014.0413%203.46185C13.8501%203.53419%2013.6893%203.59518%2013.6434%203.60779C13.0189%203.78108%2012.1478%203.93796%2011.1962%204.10872C10.1862%204.29042%209.08588%204.48852%207.91386%204.78714L7.90574%204.78882C6.73803%205.10553%205.68436%205.47397%204.71731%205.81211C4.40137%205.92272%204.09488%206.03%203.80295%206.12928C3.80295%206.12928%203.34214%206.31056%203.24355%205.85039ZM11.4961%2017.9189C9.41962%2018.3652%207.28146%2018.5721%205.8068%2018.9409C4.77372%2019.1946%204.38964%2019.8322%203.86752%2019.9697C3.26139%2020.1292%203.01404%2019.6316%203.28711%2019.1155C3.36427%2018.909%203.45385%2018.6596%203.36084%2018.3054C3.09292%2017.3229%202.15542%2016.4027%201.46955%2013.8072C0.784107%2011.2121%201.32466%2010.5476%201.06489%209.59661C0.850127%208.81683%200.160826%209.18361%200.0142218%208.64694C-0.198826%207.86672%202.04354%207.72917%202.60509%207.58911C4.50238%207.11722%206.29676%206.30883%208.18507%205.79489C10.0823%205.31372%2012.0486%205.13329%2013.9318%204.61133C14.4899%204.45656%2016.5017%203.47615%2016.7147%204.25593C16.8613%204.79261%2016.0777%204.81364%2016.2891%205.59428C16.5488%206.54522%2017.3556%206.85522%2018.0839%209.43933C18.813%2012.0234%2018.4701%2013.2802%2018.7384%2014.2627C18.8383%2014.6147%2019.0432%2014.7872%2019.2151%2014.9277C19.7149%2015.241%2019.7539%2015.7932%2019.1483%2015.9522C18.6257%2016.0898%2017.9681%2015.7259%2016.9445%2016.0128C15.4789%2016.4166%2013.522%2017.2868%2011.4961%2017.9189ZM15.012%207.39817C16.6513%209.93311%2015.7879%2013.3286%2015.2315%2014.7271C15.2186%2014.7598%2015.1929%2014.8465%2015.3314%2014.7876C17.398%2014.0697%2017.3869%209.34639%2015.0974%207.34017C15.0974%207.34017%2014.8959%207.21817%2015.012%207.39817Z%22%20fill%3D%22%23F51449%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M107.5%2011.0498C108.649%2011.0498%20109.582%2011.9722%20109.582%2013.1136C109.582%2014.2549%20108.649%2015.1773%20107.5%2015.1773C106.352%2015.1773%20105.419%2014.2549%20105.419%2013.1136C105.411%2011.9722%20106.344%2011.0498%20107.5%2011.0498Z%22%20fill%3D%22%23F51449%22%2F%3E%3Cpath%20d%3D%22M33.2215%2015.5922C33.8605%2015.5802%2034.6717%2015.467%2035.381%2015.194C35.9276%2014.9838%2036.4139%2014.6779%2036.7125%2014.2512C36.9517%2013.9081%2037.0546%2013.5446%2037.0252%2013.1908C36.9961%2012.8354%2036.833%2012.4898%2036.5419%2012.1869C36.2829%2011.9493%2036.0722%2011.8413%2035.8858%2011.8186C35.7011%2011.7968%2035.538%2011.8601%2035.3753%2011.9656C35.0706%2012.1638%2034.6331%2012.3416%2034.1828%2012.4628C33.7413%2012.5821%2033.2857%2012.647%2032.9308%2012.6248C32.1548%2012.5757%2031.4644%2012.2898%2030.9767%2011.8191C30.5128%2011.3713%2030.2314%2010.7562%2030.2314%2010.0179C30.2314%209.48989%2030.3954%208.98667%2030.6856%208.56461C30.975%208.14422%2031.3901%207.80417%2031.8935%207.60211C32.3548%207.41711%2032.838%207.368%2033.3183%207.40772C33.7976%207.44744%2034.2742%207.57644%2034.7236%207.74778C35.0991%207.88872%2035.3542%207.9665%2035.5965%207.89344C35.8401%207.81994%2036.0758%207.59267%2036.4118%207.12406C36.5182%206.94461%2036.5885%206.77117%2036.6263%206.60628C36.7077%206.25339%2036.6426%205.93511%2036.4768%205.66044C36.3106%205.38444%2036.0428%205.15119%2035.7187%204.96963C35.4338%204.80985%2035.1049%204.68981%2034.7645%204.6159C34.3116%204.51807%2033.7729%204.45912%2033.2352%204.44843C32.7207%204.43776%2032.2067%204.47065%2031.7726%204.55396C30.4314%204.81113%2029.2776%205.51389%2028.4588%206.48367C27.6392%207.45472%2027.155%208.69406%2027.155%2010.0231L27.1564%2010.141C27.188%2011.7259%2027.8621%2013.0892%2028.9328%2014.0559C30.004%2015.0227%2031.4719%2015.5934%2033.0905%2015.5934L33.2215%2015.5922Z%22%20fill%3D%22%231C1C1C%22%2F%3E%3Cpath%20d%3D%22M125.217%207.84944C125.054%208.12372%20124.741%208.09978%20124.591%207.80628L123.299%205.37462C123.03%204.94571%20122.587%204.68639%20122.102%204.59454C121.524%204.48517%20120.356%204.69707%20120.031%205.30413C119.948%205.45921%20119.955%205.64633%20120.098%205.91761L122.997%2011.3807C123.113%2011.5452%20123.118%2011.8122%20123.017%2011.9844L122.023%2013.8667C121.883%2014.1289%20121.821%2014.2452%20121.847%2014.4421C121.943%2015.1414%20122.576%2015.3846%20123.23%2015.3846C123.939%2015.3846%20124.828%2015.1521%20125.18%2014.4942L129.344%206.65283C129.765%205.9445%20129.6%205.04909%20128.797%204.70946C128.411%204.54627%20127.901%204.49884%20127.336%204.57232C127.204%204.58941%20127.083%204.63%20126.975%204.70861C126.866%204.78764%20126.768%204.90555%20126.68%205.07686C126.68%205.07686%20125.235%207.81567%20125.217%207.84944Z%22%20fill%3D%22%231C1C1C%22%2F%3E%3Cpath%20d%3D%22M44.3339%205.35668C44.0006%205.98256%2043.1031%207.66828%2042.9984%207.8755H43.0261L43.0072%207.90711C42.9531%207.99856%2042.8893%208.05878%2042.8234%208.09039C42.7812%208.11089%2042.7372%208.11983%2042.6946%208.11817C42.6519%208.11644%2042.6101%208.1045%2042.5706%208.08228C42.5077%208.04722%2042.4514%207.98617%2042.4092%207.90411L41.1472%205.52286C41.1296%205.48997%2041.1111%205.45836%2041.0918%205.42802C40.8222%204.99868%2040.3838%204.74193%2039.8996%204.65051C39.4155%204.55908%2038.8843%204.63256%2038.431%204.86326C38.3892%204.88504%2038.3474%204.90768%2038.3074%204.93161C38.0884%205.07728%2037.9121%205.20417%2037.8281%205.36009C37.7454%205.51474%2037.7524%205.70228%2037.8958%205.97356L40.7958%2011.4457C40.8521%2011.526%2040.8829%2011.6307%2040.8859%2011.7374C40.8895%2011.8438%2040.8657%2011.9523%2040.8138%2012.0403L39.8196%2013.9222C39.6798%2014.1849%2039.6182%2014.3011%2039.6451%2014.4981C39.6881%2014.8146%2039.8425%2015.0398%2040.0619%2015.1906C40.3178%2015.3657%2040.663%2015.4405%2041.0266%2015.4405C41.4215%2015.4405%2041.8665%2015.3687%2042.2452%2015.1957C42.5547%2015.0539%2042.8203%2014.8441%2042.9773%2014.5498C43.2631%2014.0179%2044.2318%2012.1933%2045.1645%2010.4328C46.1732%208.52911%2047.1367%206.70922%2047.1367%206.70622L47.1389%206.69767C47.3174%206.29867%2047.3746%205.95433%2047.3355%205.66639C47.306%205.45408%2047.2224%205.27209%2047.0962%205.12172C46.97%204.97091%2046.799%204.85214%2046.5945%204.76542C46.2075%204.60223%2045.6987%204.55481%2045.1333%204.62829C45.0013%204.64538%2044.8804%204.68596%2044.7723%204.76457C44.6632%204.8436%2044.5652%204.96151%2044.4776%205.13282C44.4776%205.13282%2044.4222%205.21869%2044.3339%205.35668Z%22%20fill%3D%22%231C1C1C%22%2F%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M99.0566%204.44629C95.8878%204.44629%2093.3198%206.94117%2093.3198%2010.0201C93.3198%2013.0986%2095.8884%2015.5934%2099.0566%2015.5934C102.225%2015.5934%20104.793%2013.0986%20104.793%2010.0201C104.793%206.94972%20102.217%204.44629%2099.0566%204.44629ZM113.93%2010.0026C113.931%2010.2529%20114.228%2010.443%20114.465%2010.443C114.632%2010.443%20114.796%2010.4426%20114.962%2010.4358C115.561%2010.4106%20116.097%2010.2649%20116.477%209.75139C116.821%209.28528%20116.835%208.66794%20116.543%208.17411C116.168%207.53844%20115.641%207.42478%20114.965%207.40344C114.733%207.39617%20114.513%207.40472%20114.395%207.43889C114.206%207.46239%20113.93%207.64611%20113.93%207.85028V10.0026ZM113.485%2015.3068C113.744%2015.2589%20113.929%2015.0744%20113.929%2014.8129L113.93%2013.712C113.942%2013.4518%20114.16%2013.2429%20114.432%2013.2429C116.534%2013.2429%20118.037%2012.5479%20118.857%2011.4696C119.732%2010.3208%20119.863%208.70894%20119.401%207.36156C118.994%206.17861%20118.079%205.18237%20116.723%204.81198C116.004%204.61632%20115.086%204.53514%20114.167%204.56035C113.238%204.58556%20112.31%204.7197%20111.587%204.95296C111.37%205.02601%20111.18%205.12128%20111.043%205.25969C110.909%205.39683%20110.828%205.57883%20110.828%205.82617L110.827%206.65917C110.825%209.08272%20110.824%2011.5063%20110.826%2013.9303C110.837%2014.3037%20110.869%2014.5963%20110.995%2014.8219C111.28%2015.3341%20112.018%2015.3965%20112.553%2015.3935C112.886%2015.3922%20113.225%2015.3593%20113.485%2015.3068ZM51.6652%207.83617C51.6652%207.65417%2051.5192%207.49994%2051.3266%207.49994H49.336C48.7428%207.49994%2048.6153%206.81044%2048.5867%206.36017C48.5586%205.921%2048.621%205.12256%2049.0524%204.82522C49.2133%204.71457%2049.4283%204.65263%2049.7128%204.64195H57.2436C57.7922%204.64195%2057.8948%205.41776%2057.9374%205.81761C57.953%206.282%2057.8981%206.7045%2057.7076%207.00911C57.5182%207.312%2057.1927%207.49994%2056.6654%207.49994H55.1026C54.9104%207.50422%2054.7662%207.64522%2054.7662%207.83278L54.7693%2014.8168C54.7693%2015.0787%2054.585%2015.2628%2054.3269%2015.3111C54.0662%2015.3636%2053.7271%2015.3961%2053.3933%2015.3978C52.8582%2015.4003%2052.1213%2015.3384%2051.8354%2014.8262C51.7096%2014.6006%2051.6771%2014.3062%2051.6652%2013.9329C51.6652%2013.9329%2051.6665%209.86967%2051.6652%207.83617ZM80.02%2015.3068C80.2777%2015.2589%2080.4632%2015.0744%2080.4632%2014.8129V12.4391C80.4632%2010.3278%2080.4638%208.21656%2080.4621%206.106C80.4503%205.73261%2080.4184%205.43997%2080.2929%205.21398C80.0077%204.70218%2079.2702%204.63981%2078.7346%204.64281C78.4017%204.64451%2078.0621%204.67698%2077.8016%204.7291C77.5438%204.77737%2077.3583%204.96193%2077.3583%205.22338C77.3589%206.09361%2077.3589%206.96383%2077.3589%207.83406C77.3589%208.606%2076.617%209.02767%2075.8818%209.03533C75.1355%209.04389%2074.3549%208.62611%2074.3549%207.83406C74.3549%207.60811%2074.3555%207.3825%2074.3555%207.15683V7.14306C74.3555%206.79767%2074.356%206.45228%2074.3555%206.106C74.3437%205.73261%2074.3123%205.43997%2074.1862%205.21398C73.9005%204.70218%2073.1636%204.63981%2072.6285%204.64281C72.2945%204.64451%2071.9555%204.67698%2071.6955%204.7291C71.4372%204.77737%2071.2523%204.96193%2071.2523%205.22338C71.2523%206.30506%2071.2523%207.38589%2071.2523%208.468C71.2523%209.60356%2071.8104%2010.5733%2072.7573%2011.2355C73.5278%2011.7751%2074.5062%2012.0702%2075.4733%2012.0702C75.9547%2012.0702%2076.4338%2011.9891%2076.8989%2011.872C76.9689%2011.8549%2077.0345%2011.8481%2077.0961%2011.8596C77.2636%2011.8908%2077.3471%2012.0275%2077.3589%2012.1809C77.3589%2012.7641%2077.3595%2013.3472%2077.36%2013.9303C77.3712%2014.3037%2077.4032%2014.5963%2077.5292%2014.8219C77.8145%2015.3341%2078.5513%2015.3965%2079.087%2015.3935C79.421%2015.3922%2079.76%2015.3593%2080.02%2015.3068ZM82.2188%205.22337C82.2188%204.96192%2082.4031%204.77737%2082.6614%204.72909C82.922%204.67697%2083.261%204.64451%2083.5944%204.64279C84.1296%204.63981%2084.867%204.70218%2085.1527%205.21397C85.2788%205.43997%2085.3096%205.73261%2085.322%206.106L85.3231%208.01344C85.3231%208.28344%2085.5495%208.50089%2085.8263%208.50089H88.2929C88.5714%208.50089%2088.795%208.28217%2088.7944%208.01217V7.97622C88.7939%207.05861%2088.7933%206.141%2088.7933%205.22337C88.7933%204.96192%2088.9788%204.77737%2089.2365%204.72909C89.4965%204.67697%2089.8367%204.64451%2090.1695%204.64279C90.7046%204.63981%2091.4426%204.70218%2091.7273%205.21397C91.8528%205.43997%2091.8853%205.73261%2091.8965%206.106C91.8982%207.81306%2091.8982%209.52028%2091.8982%2011.2276C91.8982%2012.4227%2091.8982%2013.6178%2091.8987%2014.8129C91.8987%2015.0744%2091.7138%2015.2589%2091.4555%2015.3068C91.1955%2015.3593%2090.8559%2015.3922%2090.5225%2015.3935C89.9874%2015.3965%2089.25%2015.3341%2088.9648%2014.8219C88.8393%2014.5963%2088.8073%2014.3037%2088.795%2013.9303C88.795%2013.5643%2088.7939%2013.1979%2088.7933%2012.8313V12.8298C88.7922%2012.5357%2088.7916%2012.2406%2088.7911%2011.9463C88.7619%2011.7011%2088.5473%2011.5153%2088.2929%2011.5153H85.8246C85.5523%2011.5153%2085.3309%2011.7263%2085.3231%2011.9908C85.3248%2012.9315%2085.3253%2013.8718%2085.3253%2014.8129C85.3253%2015.0744%2085.1404%2015.2589%2084.8827%2015.3068C84.6221%2015.3593%2084.2825%2015.3922%2083.9497%2015.3935C83.414%2015.3965%2082.6766%2015.3341%2082.3914%2014.8219C82.2658%2014.5963%2082.2339%2014.3037%2082.2227%2013.9303C82.2199%2011.0278%2082.2188%208.12583%2082.2188%205.22337ZM60.1888%206.07867C61.2271%205.07001%2062.6616%204.44629%2064.2457%204.44629C65.8259%204.44629%2067.2604%205.07215%2068.2992%206.08167C69.3381%207.09111%2069.9831%208.48467%2069.9831%2010.0201C69.9831%2011.5593%2069.3404%2012.9528%2068.3026%2013.9611C67.2643%2014.9697%2065.8304%2015.5934%2064.2457%2015.5934C62.6616%2015.5934%2061.2271%2014.9697%2060.1888%2013.9611C59.1505%2012.9528%2058.5089%2011.5589%2058.5089%2010.0201C58.5089%208.48083%2059.1505%207.08683%2060.1888%206.07867ZM66.8989%2010.0201C66.8989%2010.7327%2066.6014%2011.3761%2066.1223%2011.8417C65.6415%2012.3091%2064.9764%2012.5974%2064.2457%2012.5974C63.5139%2012.5974%2062.8499%2012.3086%2062.3697%2011.8421C61.89%2011.3761%2061.5925%2010.7314%2061.5925%2010.0201C61.5925%209.30961%2061.8895%208.66411%2062.3702%208.19672C62.8499%207.73111%2063.5122%207.44189%2064.2457%207.44189C64.9809%207.44189%2065.6455%207.7285%2066.1251%208.19461C66.6036%208.65983%2066.8989%209.30367%2066.8989%2010.0201ZM99.0566%2012.5974C100.521%2012.5974%20101.71%2011.4427%20101.71%2010.0201C101.71%208.58933%20100.529%207.44228%2099.0566%207.44228C97.5918%207.44228%2096.4033%208.59706%2096.4033%2010.0201C96.4033%2011.4422%2097.5918%2012.5974%2099.0566%2012.5974Z%22%20fill%3D%22%231C1C1C%22%2F%3E%3C%2Fg%3E%3Cdefs%3E%3CclipPath%20id%3D%22clip0_2065_20%22%3E%3Crect%20width%3D%22130%22%20height%3D%2220%22%20fill%3D%22white%22%2F%3E%3C%2FclipPath%3E%3C%2Fdefs%3E%3C%2Fsvg%3E");
}
.ibc-booking-popover a.ostrovok {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%3F%3E%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22130%22%20height%3D%2240%22%20viewBox%3D%220%200%20130%2040%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M71.84%2024.51C69.68%2024.51%2068.05%2022.71%2068.05%2020.54C68.05%2018.38%2069.68%2016.58%2071.84%2016.58C74.01%2016.58%2075.82%2018.38%2075.82%2020.54C75.82%2022.71%2074.01%2024.51%2071.84%2024.51ZM71.94%2013.51C68.14%2013.51%2065.07%2016.58%2065.07%2020.54C65.07%2024.51%2068.14%2027.39%2071.94%2027.39C75.73%2027.39%2078.8%2024.33%2078.8%2020.54C78.8%2016.76%2075.73%2013.51%2071.94%2013.51Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M56.9%2024.67C54.65%2024.67%2052.96%2022.79%2052.96%2020.54C52.96%2018.29%2054.65%2016.41%2056.9%2016.41C58.96%2016.41%2060.64%2018.29%2060.64%2020.54C60.64%2022.79%2058.96%2024.67%2056.9%2024.67ZM57.3%2013.51C55.59%2013.51%2054.03%2014.31%2052.94%2015.66L52.81%2013.87H49.89V31.72H53.14V26.67L52.99%2025.33C54.08%2026.62%2055.62%2027.39%2057.3%2027.39C60.73%2027.39%2063.62%2024.33%2063.62%2020.54C63.62%2016.76%2060.73%2013.51%2057.3%2013.51Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M29.3%2016.58C30.74%2016.58%2032%2017.48%2032.73%2018.74L35.44%2017.3C34.35%2014.95%2032%2013.51%2029.29%2013.51C25.5%2013.51%2022.43%2016.58%2022.43%2020.54C22.43%2024.51%2025.5%2027.39%2029.29%2027.39C32%2027.39%2034.35%2025.95%2035.44%2023.61L32.73%2022.16C32%2023.43%2030.74%2024.33%2029.3%2024.33C27.31%2024.33%2025.5%2022.53%2025.5%2020.54C25.5%2018.38%2027.31%2016.58%2029.3%2016.58Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M36.34%2016.76H40.68V27.03H43.75V16.76H48.09V13.87H36.34V16.76Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M11.41%2024.15C8.16001%2024.15%205.26001%2021.26%205.26001%2017.84C5.26001%2014.59%208.16001%2011.71%2011.41%2011.71C14.84%2011.71%2017.55%2014.59%2017.55%2017.84C17.55%2021.26%2014.84%2024.15%2011.41%2024.15ZM11.41%208.28003C6.17001%208.28003%202.01001%2012.61%202.01001%2017.84C2.01001%2023.06%206.17001%2027.39%2011.41%2027.39C16.65%2027.39%2020.98%2023.24%2020.98%2017.84C20.98%2012.43%2016.83%208.28003%2011.41%208.28003Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M125.73%2027.39C126.93%2027.39%20127.9%2026.42%20127.9%2025.23C127.9%2024.03%20126.93%2023.06%20125.73%2023.06C124.53%2023.06%20123.56%2024.03%20123.56%2025.23C123.56%2026.42%20124.53%2027.39%20125.73%2027.39Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M127.09%2021.08L127.99%208.28003H123.47L124.38%2021.08H127.09Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M116.57%2020.36C117.65%2020.18%20118.37%2019.64%20119.1%2017.84L120.54%2013.87H117.38L116.11%2017.66C115.75%2018.74%20115.12%2019.1%20114.22%2019.1H112.68V13.87H109.52V27.03H112.68V21.8H114.04C115.12%2021.8%20115.57%2022.16%20116.11%2023.24L117.74%2027.03H121.26L119.27%2022.7C118.55%2021.26%20117.65%2020.54%20116.56%2020.36H116.57Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M87.3%2024.51H83.86V21.44H87.48C88.38%2021.44%2089.11%2021.98%2089.11%2022.89C89.11%2023.97%2088.38%2024.51%2087.3%2024.51ZM83.86%2016.41H87.12C88.2%2016.41%2088.74%2016.79%2088.74%2017.75C88.74%2018.33%2088.56%2019.28%2087.3%2019.28H83.86V16.41ZM90.03%2020.39V20.33C90.03%2020.33%2091.81%2019.59%2091.81%2017.3C91.81%2015.24%2090.19%2013.87%2087.3%2013.87H80.79V27.03H87.61C90.5%2027.03%2092.35%2025.76%2092.35%2023.31C92.35%2020.85%2090.03%2020.39%2090.03%2020.39Z%22%20fill%3D%22%230E41D2%22%2F%3E%3Cpath%20d%3D%22M100.57%2024.51C98.41%2024.51%2096.78%2022.71%2096.78%2020.54C96.78%2018.38%2098.41%2016.58%20100.57%2016.58C102.74%2016.58%20104.55%2018.38%20104.55%2020.54C104.55%2022.71%20102.74%2024.51%20100.57%2024.51ZM100.67%2013.51C96.87%2013.51%2093.8%2016.58%2093.8%2020.54C93.8%2024.51%2096.87%2027.39%20100.67%2027.39C104.46%2027.39%20107.53%2024.33%20107.53%2020.54C107.53%2016.76%20104.46%2013.51%20100.67%2013.51Z%22%20fill%3D%22%230E41D2%22%2F%3E%3C%2Fsvg%3E");
}
.ibc-booking-popover a:hover {
  border: 1px Solid var(--ibc-green);
}

.ibc-booking-popover__direct {
  padding-top: 20px;
  border-top: 1px solid var(--ibc-line);
  color: var(--ibc-muted);
  font-size: var(--wp--preset--font-size--xs);
}

.ibc-timeline__empty {
  margin: 0;
  color: var(--ibc-muted);
}

.ibc-calendar .sr-only,
.ibc-timeline .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 480px) {
  .ibc-calendar {
    font-size: 14px;
  }
  .ibc-day {
    border-radius: 8px;
  }
}

/*# sourceMappingURL=style.css.map */
