@import url("variables.css");
:root {
  --black: #000;
  --white: #fff;
  --primary: #1b5e87;
  --secondary: #5c636a;
  --bs-border-radius: 2px;
  --border-radius: 5px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.49);
  --tr-odd: rgba(51, 153, 204, 0.15);
  --tr-odd-dark: rgba(51, 153, 204, 0.3);
  --tr-odd-light: rgba(51, 153, 204, 0.15);
  --tr-even: rgba(102, 204, 204, 0.25);
  --tr-even-dark: rgba(102, 204, 204, 0.35);
  --tr-even-light: rgba(102, 204, 204, 0.25);
}
@import url("style-init.css");

body {
  font-display: swap;
  margin: 0;
  padding: 0;
  color: var(--black);
  font-family: Roboto, "Segoe UI", sans-serif;
  font-weight: normal;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.row > * {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.btn {
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.175rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: var(--white);
  --bs-btn-bg: transparent;
  --bs-btn-border-width: var(--bs-border-width);
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: var(--bs-border-radius);
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), 0.5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  color: var(--bs-btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--primary);
  --bs-btn-border-color: var(--primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #0b5ed7;
  --bs-btn-hover-border-color: #0a58ca;
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--primary);
  --bs-btn-active-border-color: var(--primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--primary);
  --bs-btn-disabled-border-color: var(--primary);
}
.btn-light {
  --bs-btn-color: #000;
  --bs-btn-bg: #f8f9fa;
  --bs-btn-border-color: #f8f9fa;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #d3d4d5;
  --bs-btn-hover-border-color: #c6c7c8;
  --bs-btn-focus-shadow-rgb: 211, 212, 213;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #c6c7c8;
  --bs-btn-active-border-color: #babbbc;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #f8f9fa;
  --bs-btn-disabled-border-color: #f8f9fa;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0;
}

a {
  color: var(--primary);
}

table.table {
  border-color: var(--primary);
}
table.table th {
  background-color: var(--primary);
  color: var(--white);
  font-weight: normal;
  position: relative;
  vertical-align: top;
  position: sticky;
  top: 0;
}
table.table th.border0 {
  border: 0;
}
table.table th.text-right {
  text-align: right;
}
table.table th:not(:last-child):not(.border0):after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  border-right: 1px solid var(--white);
}

table.table tr td {
  background-color: var(--tr-odd-light);
}
table.table tr:nth-child(even) td {
  background-color: var(--tr-even-light);
}

.itogo td {
  font-weight: bold;
}
.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 0.125rem 2.25rem 0.175rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1b5e87;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: var(--bs-body-bg);
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: var(--bs-border-width) solid #1b5e87;
  border-radius: 1px;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
}
i.bi {
  color: var(--primary);
}
i.bi.btn-big {
  font-size: 150%;
}
i.bi.red {
  color: red;
}
i.bi:hover {
  color: var(--secondary);
}
i.bi.bi-caret-right-fill {
  font-size: 80%;
}

.btn-bi-icon {
  padding: 0px 13px !important;
  background: none;
  line-height: 10px;
  border: 1px solid var(--primary);
}
.btn-bi-icon:hover {
  border-color: var(--secondary);
}

.col-form-label {
  margin-right: 20px;
}

.color-red {
  color: red !important;
}

.fixed-top {
  position: fixed;
  top: 0;
}
.itogo td {
  font-weight: bold;
}

.align-items-center {
  margin-left: 20px !important;
}

.icon-btn,
.icon {
  text-decoration: none;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--primary);
  margin: 5px 3px;
  border-radius: var(--border-radius);
  padding: 0px 18px;
  box-shadow: var(--shadow);
}
.icon-btn:hover,
.icon:hover {
  /*box-shadow: 0 5px 8px rgba(0, 0, 0, 0.49);*/
  background-color: var(--primary);
}
.icon-btn:hover > i.bi,
.icon:hover > i.bi {
  color: var(--white) !important; /* TODO: стили иконок инлайн (!) */
}

/**********************************************/
.main-table {
  border-spacing: 0 10px;
  border-collapse: separate;
  border-radius: 5px;
}
.main-table th {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.5rem 0.5rem;
  font-weight: 400;
  border-right: 1px solid var(--white);
  position: sticky;
  top: 0;
}
.main-table th:first-child {
  border-radius: 5px 0px 0px 5px;
}
.main-table th:last-child {
  border-right: none;
  border-radius: 0px 5px 5px 0px;
}
.main-table td {
  border: 1px solid var(--primary);
  border-right: none;
  padding: 5px;
  background-color: var(--tr-odd);
}
.main-table td:first-child {
  border-radius: 5px 0px 0px 5px;
  background-color: var(--tr-odd-dark);
}
.main-table td:last-child {
  border-right: 1px solid var(--primary);
  border-radius: 0px 5px 5px 0px;
}
.main-table tr:nth-child(even) td {
  background-color: var(--tr-even);
}
.main-table tr:nth-child(even) td:first-child {
  background-color: var(--tr-even-dark);
}

/**********************************************/
.head-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 50px;
}
.head-menu {
  background-color: var(--primary);
  margin-bottom: 25px;
}
.head-menu.desktop .hide {
  display: none;
}
.head-menu > div > ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: var(--white);
}
.head-menu li > a {
  position: relative;
}
.head-menu li > a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 0;
  height: 1px;
  background-color: var(--white);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.head-menu li > a:hover:before {
  width: 100%;
}

/**********************************************/
.form-cover {
  max-width: 800px;
  margin: 0 auto;
  --bs-body-font-size: 14px;
}

.form-head {
  background-color: var(--primary);
  color: #fff;
  padding: 10px;
}
.form-row {
  padding: 10px;
  display: flex;
}
.form-label {
  width: 250px;
}
.form-row > div:not(:first-child) {
  flex: 1;
}
.color {
  color: var(--primary);
  margin-top: -15px;
  margin-bottom: 3px;
  width: 100%;
}
.small {
  font-size: 12px;
  margin-bottom: 3px;
  width: 100%;
  color: #444;
}
.btn {
  padding: 0.375rem 0.75rem;
}
.form-control,
.form-select {
  padding: 0.375rem 0.75rem;
  border-color: var(--primary);
  border-radius: var(--border-radius);
}
.form-select {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}
.form-control.num,
.form-select.num {
  border-color: var(--primary);
  width: 131px;
  height: 38px;
}
.form-input ~ .col-auto {
  margin-left: 20px !important;
}

/**********************************************/
.item__name a {
  text-decoration: none;
  color: #000;
}
.item {
  /* border: solid 1px #e0e0e0; */
  padding: 10px;
}
.item:hover {
  background: #f7f4f4;
  box-shadow: 9px 11px 5px rgb(217 215 215);
  border-radius: 10px;
  /* border: solid 1px #e0e0e0;*/
  /* padding: 5px; */
}
.item__title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.item__name {
  font-weight: 500;
  font-size: 1.2rem;
  min-height: 99px;
}
.item__image {
  margin-bottom: 15px;
  position: relative;
}
.stickers {
  position: absolute;
  right: 12px;
  top: -8px;
}
.sticker {
  padding: 2px 8px;
  font-size: 14px;
}

.item__image img {
  border-radius: 10px;
}
.item__price {
  margin: 10px auto;
  font-size: 24px;
}
.item__price:after {
  content: " \20BD";
}
.form__wrapper {
  margin: 0 auto;
  max-width: 700px;
}
.detail__img {
  /* width: 700px!important; */
}
.detail__price {
  list-style-type: none;
  padding: 10px;
}

.wrap-icon {
  padding-left: 30px;
  position: relative;
}

.marker {
  float: right;
}
.included {
  list-style-type: none;
  gap: 35px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
.btn-cust {
  border: 1px solid #1b5e87;
  background: #1b5e87;
  cursor: pointer;
  color: #fff;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  padding: 12px 25px;
  border-radius: 4px;
  line-height: 1;
  font-size: 18px;
  text-decoration: none;
}
.btn_outline {
  background: transparent;
  color: #1b5e87;
  border: 1px solid #1b5e87;
}
.btn-cust:hover {
  border-color: #1b5e87;
  color: #1b5e87;
  background: transparent;
}
.btn_outline:hover {
  background: #1b5e87;
  color: #fff;
}
/*.icon {
    text-decoration: none;
    font-size: 18px;
}
.icon-btn {
    text-decoration: none;
    font-size: 18px;
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 1px solid;
    margin: 5px 3px;
    border-radius: 5px;
}*/
.tox-promotion {
  display: none;
}
.ul-list {
  list-style-type: none;
}
.custom-success {
  background: #6ccf7d;
  font-size: 22px;
}
.custom-danger {
  background: #f37000;
  font-size: 22px;
}
#catalogFrame,
#formFrame {
  color: #fff;
  background: #000;
  padding: 15px;
  border-radius: 15px;
}
.reports-nav {
  display: flex;
  gap: 10px;
  list-style-type: none;
}

.filter {
  margin: 30px 0px !important;
}
.filter-type {
  flex: 1 0 49% !important;
  padding-left: 40px !important;
  padding-right: 0 !important;
  background: url(../images/icon-filter-type.png) left center no-repeat;
}
.filter-time {
  flex: 1 0 26% !important;
  padding-left: 50px !important;
  padding-right: 0 !important;
  background: url(../images/icon-filter-time.png) 10px center no-repeat;
}
.filter-location {
  flex: 1 0 24% !important;
  padding-left: 50px !important;
  padding-right: 0 !important;
  background: url(../images/icon-filter-location.png) 15px center no-repeat;
}
.filter a {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #0b5394;
  display: inline-block;
  border: 1px solid #0b5394;
  border-radius: 20px;
  padding: 13px 15px;
  vertical-align: top;
  margin-right: 10px;
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
.filter a.selected {
  color: #ffffff;
  background-color: #0b5394;
}

header.fixed {
  width: 100%;
  position: fixed;
  z-index: 999;
}
.header {
  padding: 25px 3px 10px;
  clear: both;
  width: 1085px;
  min-height: 120px;
  display: flex;
}
.header > div {
  float: left;
}
.header > div:last-child {
  float: right;
  min-width: 340px;
  text-align: right;
}
.logo > a.img {
  width: 156px;
  height: 107px;
  float: left;
  background: url(/image/logo.png) center center;
  background-size: contain;
}
.slogan {
  float: left;
  font-size: 56px;
  color: rgb(11, 83, 148);
  line-height: 45px;
  font-weight: bold;
  margin: 5px 25px 5px 10px;
}
.slogan > span {
  font-size: 22px;
  color: #333333;
}
.phone > a {
  font-size: 32px;
  color: #333333;
  padding-left: 40px;
  background: url(/image/phone.jpg) left center no-repeat;
  font-weight: bold;
  text-decoration: none;
}
a.btn-orange,
button.btn-orange,
a.btn-orange:hover,
button.btn-orange:hover {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background-color: rgb(230, 145, 56);
  border-radius: 5px;
  padding: 8px 30px 10px;
  text-decoration: none;
  border: none;
}
a.btn-orange.light,
button.btn-orange.light {
  font-weight: normal;
  font-size: 20px;
}
button.btn-orange.btn-secondary {
  background-color: #6c757d;
}

.filter a {
  margin-right: 0 !important;
}
.filter-type {
  flex: 1 0 43% !important;
}

.logo > a.img186 {
  margin-top: 20px;
  width: 207px;
  height: 81px;
  float: left;
  background: url(/image/logo186.png) center center no-repeat;
  background-size: contain;
}
.slogan186,
.slogan186 > span {
  float: left;
  font-size: 42px;
  color: rgb(11, 83, 148);
  line-height: 45px;
  font-weight: bold;
  margin: 5px 15px 5px 10px;
}
.slogan186 > span {
  margin-left: 0;
}

ul.iconed {
  list-style-type: none;
  padding: 0;
}
ul.iconed > li {
  margin-bottom: 10px;
  /* line-height: 30px; */
  padding-left: 30px;
  position: relative;
}
.iconed .item-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

ul.iconed > li svg path {
  fill: var(--primary);
}
/* ul.iconed > li.time {
  background: url(/image/icon-item-time.png) left 5px no-repeat;
}
ul.iconed > li.type {
  background: url(/image/icon-item-type.png) left 5px no-repeat;
}
ul.iconed > li.start {
  background: url(/image/icon-item-start.png) left 5px no-repeat;
  line-height: 35px;
}
ul.iconed > li.hourglass {
  background: url(/image/hourglass-split.png) left 5px no-repeat;
  line-height: 35px;
}
ul.iconed > li.place {
  background: url(/image/icon-item-location.png) left 5px no-repeat;
  max-height: 55px;
  overflow: hidden;
} */
.orange {
  background-color: rgb(230, 145, 56) !important;
  border: 1px solid rgb(230, 145, 56) !important;
}

span.excludes {
  font-size: 18px;
  line-height: 40px;
  display: inline-block;
  padding-left: 55px;
  background: url(/image/icon-item-contain-1.png) 15px center no-repeat;
}

.modal-places {
  max-width: 500px;
  width: 100%;
  min-height: 250px;
  display: none;
}

.modal-places .content {
  margin-top: 20px;
}

.check-link {
  display: inline-block;
  text-decoration: underline dashed;
  text-underline-offset: 4px;
  padding: 5px 0;
  color: var(--primary);
  cursor: pointer;
}

.list-places,
.list-places li {
  list-style: disc;
}
.list-places li {
  padding: 10px 0;
  font-size: 18px;
}

input[type="date"],
#excursionDate {
  position: relative;
  background: url(/image/icon-calendar.png) 100px center no-repeat;
  background-size: 18px;
  width: 131px;
  cursor: pointer;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  color: transparent;
  background: transparent;
  opacity: 0;
}
@supports not selector(::-webkit-calendar-picker-indicator) {
  input[type="date"] {
    background: none;
  }
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-clear-button {
  z-index: 1;
}

.item__attributes {
  height: 210px;
}
.item_link {
  color: inherit;
  text-decoration: none;
}
.borderRLT {
  border-top: solid 1px #dee2e6;
  border-right: solid 1px #dee2e6;
  border-left: solid 1px #dee2e6;
  border-radius: 0 10px 10px 0;
}

.borderRLB {
  border-bottom: solid 1px #dee2e6;
  border-right: solid 1px #dee2e6;
  border-left: solid 1px #dee2e6;
  border-radius: 10px 0 0 10px;
}
.borderRLT p {
  margin-top: 20px;
  margin-left: 20px;
}

.borderRLB p {
  margin-bottom: 20px;
  margin-left: 20px;
}
#price-block {
  font-size: 24px;
}

.carousel-caption {
  right: 50px !important;
  top: 75px !important;
  left: auto !important;
  bottom: auto !important;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}
.carousel-caption.bottom-btn {
  right: auto !important;
  top: auto !important;
  left: calc(50% - 198px) !important;
  bottom: 55px !important;
}
.carousel-caption.bottom-btn > .btn-orange {
  padding: 12px 90px 15px;
}

.btn-warning {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: rgb(230, 145, 56) !important;
  --bs-btn-border-color: rgb(230, 145, 56) !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: #ffca2c;
  --bs-btn-hover-border-color: #ffc720;
  --bs-btn-focus-shadow-rgb: 217, 164, 6;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: #ffcd39;
  --bs-btn-active-border-color: #ffc720;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #ffc107;
  --bs-btn-disabled-border-color: #ffc107;
}

.btn-secondary {
  --bs-btn-bg: #959ba4 !important;
  --bs-btn-border-color: #959ba4 !important;
}

@keyframes glowing {
  0% {
    background-color: #0d6efd;
    box-shadow: 0 0 5px #0d6efd;
  }
  50% {
    background-color: #0b5ed7;
    box-shadow: 0 0 20px #0b5ed7;
  }
  100% {
    background-color: #0d6efd;
    box-shadow: 0 0 5px #0d6efd;
  }
}
.btn-primary.glow {
  animation: glowing 1300ms infinite;
}

@keyframes glowing2 {
  0% {
    background-color: #e69138;
    box-shadow: 0 0 5px #e69138;
  }
  50% {
    background-color: #fab619;
    box-shadow: 0 0 20px #fab619;
  }
  100% {
    background-color: #e69138;
    box-shadow: 0 0 5px #e69138;
  }
}
.btn-orange.glow:not(.btn-secondary) {
  animation: glowing2 1300ms infinite;
}

#consentDiv > input[type="checkbox"] {
  width: 23px;
  height: 23px;
  float: left;
}
#consentDiv > a {
  cursor: pointer;
  text-decoration: underline;
  line-height: 20px;
}

.error {
  display: inline-block;
  float: left;
  line-height: 36px;
  padding-left: 20px;
  color: red;
  font-weight: bold;
}
.error-str {
  color: red;
  font-weight: bold;
}

div.tableDetailsRow {
  border-top: 1px solid #bbbbbb;
  margin-top: 5px;
  padding-top: 5px;
}

tr.paused > td {
  color: #dc3545;
  font-weight: bold;
}
.pWrap {
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  z-index: 9999;
}
.pInner {
  width: 50px;
  height: 50px;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.inner__tab-content {
  padding: 30px;
}

.nav-tabs li {
  font-weight: 600;
  font-size: 22px;
}
.nav-tabs .nav-link {
  color: #1b5e87;
}

.route-list svg rect {
  fill: var(--primary);
}
.route-list,
.route-list li {
  list-style: none;
}
.route-list li {
  position: relative;
  display: grid;
  grid-template-columns: 65px auto;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--detail-prod-text);
}
.route-list li:not(:first-child, :last-child) {
  text-transform: uppercase;
}
.route-list li + li {
  padding-top: 52px;
}

.route-list li:first-child svg,
.route-list li:last-child svg {
  /* position: absolute; */
  /* left: 0; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
}

.route-list li .decor {
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  z-index: -1;
}
.route-list li .decor path {
  stroke: var(--primary);
}
.expenses-items {
  padding-left: 45px;
}
.expenses-items,
.expenses-item {
  list-style: disc;
}
.expenses-item + .expenses-item {
  margin-top: 6px;
}
.expenses-items-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
/* .route-list li:not(:first-child, :last-child)::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-color: var(--primary);
  border-radius: 100%;
} */
.route-list li:not(:last-child, :first-child, .decor)::before {
  content: "";
  position: static;
  display: inline-block;
  /* left: 14px; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  width: 11px;
  height: 11px;
  background-color: var(--primary);
  border-radius: 100%;
  margin-left: 15px;
}

.section-title {
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  font-family: "Oswald", sans-serif;
  font-size: 40px;
  line-height: 59px;
  color: var(--primary);
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.section-title svg path {
  fill: var(--primary);
}

@media (max-width: 490px) {
  .section-title {
    font-size: 22px;
  }
  .section-title svg {
    width: 25px;
    height: 25px;
    min-width: 25px;
    min-height: 25px;
  }
}

ol,
ul {
  padding-left: 0.5rem;
}

.mini-catalog .btn {
  max-width: 150px;
  width: 100%;
}

.excursions .item__name {
  margin-bottom: 20px;
  min-height: auto;
}
.excursions .item__attributes {
  margin-top: auto;
  height: auto;
}

.excursions .item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.excursions .item_link {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.excursions .place {
  margin-bottom: 10px;
}
.prod-detail-img-wrap {
  max-height: 476px;
  height: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  display: block;
  position: relative;
}
.prod-detail-img {
  border-radius: 10px;
}

.prod-gallery {
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.prod-gallery .swiper-pagination {
  position: static;
}
.prod-detail-img {
  cursor: pointer;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
}
.prod-gallery .swiper-slide {
  height: auto;
}
.prod-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  object-fit: cover;
  cursor: pointer;
}

.slider-btn {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  background-color: var(--circle-btn-slider);
  opacity: 1 !important;
  box-shadow: 0px 4px 14px 1px rgba(0, 0, 0, 0.16);
}

.slider-btn_gray {
  background-color: var(--gray);
}
.slider-btn svg {
  height: 16px;
  width: 16px;
}
.slider-btn svg path {
  fill: var(--primary);
}

.ic rect,
.ic circle {
  fill: var(--icon);
}

/* excursions */

.excursions-link-more {
  padding: 18px 50px;
  border-radius: 10px;
  font-size: 20px;
  line-height: 24px;
}

.excursions .item__price {
  margin: 0;
}
.excursions .item_link {
  flex: auto;
}

.excursions .item__image img {
  max-width: 100%;
  border-radius: 0;
  border-radius: 10px 10px 0 0;
}
.excursions .item__content {
  padding: 0 14px 18px 20px;
  height: 100%;
}
.excursions .items {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.excursions .item__name {
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
}
.excursions .item-date-name {
  margin-bottom: 14px;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}
.excursions .iconed {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.7);
}
.excursions .item {
  width: 100%;
  max-width: 297px;
  padding: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.15);
}

.excursions .item-footer {
  margin-top: 20px;
  align-items: center;
}

.detail-prod .nav-link .tab-icon {
}
/* .detail-prod .nav-link::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjUiIHZpZXdCb3g9IjAgMCAyNSAyNSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9IjEuNDI5MzQiIHkxPSIyMy4wMzU5IiB4Mj0iMjEuNDI5MyIgeTI9IjIuNjAxMTEiIHN0cm9rZT0iI0ZGODAwMCIgc3Ryb2tlLXdpZHRoPSI0Ii8+CjxsaW5lIHgxPSIwLjg1ODY3MyIgeTE9IjIiIHgyPSIyMy44NTg3IiB5Mj0iMiIgc3Ryb2tlPSIjRkY4MDAwIiBzdHJva2Utd2lkdGg9IjQiLz4KPHBhdGggZD0iTTIxLjg1ODcgMUwyMi4yMDYzIDI0LjQzNDgiIHN0cm9rZT0iI0ZGODAwMCIgc3Ryb2tlLXdpZHRoPSI0Ii8+Cjwvc3ZnPgo=");
  background-size: contain;
  background-repeat: no-repeat;
} */
.detail-prod .tab-content {
  border: 1px solid var(--primary);
  border-top: 0;
  box-shadow: 4px 4px 18px rgba(0, 0, 0, 0.15);
  border-radius: 0px 0px 10px 10px;
}
.detail-prod-tabs {
  margin-top: 60px;
  margin-bottom: 60px;
}

.detail-prod .inner__tab-content {
  padding: 40px 23px 60px 40px;
}

.detail-prod .slider-btn {
  background-color: var(--primary);
}
.detail-prod .slider-btn svg path {
  fill: var(--white);
}

.detail-prod-title {
  color: var(--primary);
}

.detail-prod .gallery__slider {
  padding: 0;
}

.detail-prod .gallery__slider .swiper-slide {
  border-radius: 10px;
  overflow: hidden;
}
.detail-prod .gallery__slider .slider-btn-next {
  right: 25px;
}
.detail-prod .gallery__slider .slider-btn-prev {
  left: 25px;
}
.detail-prod .prod-gallery .swiper-slide img {
  max-height: 154px;
}
.detail-prod .day {
  margin-bottom: 12px;
  padding: 5px 10px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  width: 55px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 18px;
  color: var(--detail-prod-text);
}
.detail-prod .item-time {
  margin-top: 12px;
  text-align: center;
}
.detail-prod .detail-price-name {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: var(--detail-prod-text);
  position: relative;
  display: flex;
  column-gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.detail-prod .detail-info-section {
  margin-bottom: 30px;
}
.detail-info-section svg {
  width: 20px;
  height: 20px;
}
.detail__price li:first-child svg path,
.detail__price li:nth-child(2) svg path {
  stroke: var(--primary);
}
.detail__price li:not(:first-child, :nth-child(2)) svg path {
  fill: var(--primary);
}
.detail-price-decor {
  flex: 1;
  overflow: hidden;
  display: inline-block;
  height: 5px;
  width: 100%;
  align-self: flex-end;
  transform: translateY(-3px);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTc0IiBoZWlnaHQ9IjEiIHZpZXdCb3g9IjAgMCAxNzQgMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGxpbmUgeDE9IjMuOTg0MTFlLTA4IiB5MT0iMC41IiB4Mj0iMTc0IiB5Mj0iMC41MDAwMTciIHN0cm9rZT0iI0M5QzlDOSIgc3Ryb2tlLWRhc2hhcnJheT0iMiAyIi8+Cjwvc3ZnPgo=");
  background-repeat: repeat-x;
}

.detail-price-comm.small {
  font-size: 14px;
  line-height: 17px;
  color: var(--detail-prod-text);
}
.detail-prod .price {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: var(--primary);
}
.detail-price-info {
  position: relative;
  display: flex;
  align-items: flex-start;
  column-gap: 13px;
}
.detail-price-info > div {
  flex: 1;
}

.detail-prod-content h2 {
  margin-bottom: 14px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--dark);
}
.detail-prod-content h2 p {
  font-size: 14px;
  line-height: 17px;
  color: var(--detail-prod-text);
  margin-top: 14px;
  font-weight: 400;
}
.detail-price-name {
  display: block;
}
.detail-prod .detail__price {
  padding: 0;
}
.detail-prod .detail__price li + li {
  margin-top: 10px;
}

.detail-prod .gallery__slider {
  overflow: hidden;
}
.detail-prod-content {
  color: var(--detail-prod-text);
}
.detail-prod .start {
  padding-left: 0;
  position: relative;
}
.detail-prod .start-wrap {
  display: flex;
  column-gap: 4px;
}

.detail-prod .nav-tabs {
  justify-content: space-between;
  border-bottom-color: var(--primary);
}
.detail-prod .nav-item {
  max-width: 295px;
  width: 100%;
}
.detail-prod .nav-link {
  padding: 23px 5px;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--primary);
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  width: 100%;
  color: var(--dark);
}
.detail-prod .nav-link.active {
  padding-bottom: 32px;
  border-radius: 10px 10px 0 0;
  border-color: var(--primary);
  border-bottom: 0;
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 12px -13px 18px rgba(0, 0, 0, 0.15);
}
.detail-prod .nav-link svg path {
  stroke: var(--primary);
}
.detail-prod .nav-link.active svg path {
  stroke: var(--white);
}
.detail-prod .nav-link .tab-icon path {
  fill: var(--primary);
}
.detail-prod .nav-link.active .tab-icon path {
  fill: var(--white);
}
.detail-prod .tab-content p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--detail-prod-text);
}

.detail-prod .btn-bookings {
  padding: 18px 40px;
  width: auto;
  display: inline-block;
  border-width: 2px;
  font-size: 20px;
  line-height: 24px;
  border-radius: 10px;
  border-width: 3px;
}

.inner__tab-content h2 {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: var(--dark);
}
.inner__tab-content p {
  margin-bottom: 20px;
}

.bx-filter.bx-blue .bx-filter-section {
  background: var(--filter-bg);
  color: var(--filter-text);
}
.bx-filter .bx-filter-parameters-box-title span {
  color: var(--primary);
  font-weight: 600;
}
.bx-filter .btn {
  border-radius: 10px;
}
.bx-filter .btn:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

@media (max-width: 460px) {
  /* .detail-prod-tabs {
    position: relative;
  }

  .detail-prod-tabs .nav-tabs {
    transition: box-shadow 0.2s ease;
  }

  .detail-prod-tabs .nav-tabs.nav-tabs--sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .detail-prod-tabs .nav-tabs {
    position: relative;
    background: #fff;
    z-index: 100;
    transition: box-shadow 0.2s;
  }

  .detail-prod-tabs .nav-tabs.nav-tabs--sticky {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  } */
  .detail-prod-tabs .nav-tabs {
    background: #fff;
    z-index: 100;
    transition: box-shadow 0.2s;
  }

  .detail-prod-tabs .nav-tabs.nav-tabs--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }

  .nav-tabs-placeholder {
    display: none;
  }

  .nav-tabs-placeholder.is-visible {
    display: block;
  }
}

.wrapper {
  overflow-x: hidden;
  height: 100%;
}

@supports (overflow: clip) {
  .wrapper {
    overflow-x: clip;
  }
}

@media (max-width: 1220px) {
  .detail-prod .nav-tabs {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    border-bottom: 0;
  }
  .detail-prod .nav-link.active {
    border-radius: 10px;
    padding: 23px 5px;
    padding-left: 20px;
  }
  .detail-prod .nav-link {
    padding-left: 20px;
    justify-content: flex-start;
  }
  .detail-prod .nav-item {
    max-width: 100%;
    padding: 0;
  }
  .detail-prod .tab-content {
    border: none;
    border-top: 0;
    box-shadow: none;
    border-radius: 0;
  }
  .detail-prod .inner__tab-content {
    padding: 0;
  }
}

@media (max-width: 1100px) {
  .bx-breadcrumb {
    margin: 10px 0;
    margin-top: 0;
  }
  .bx-breadcrumb .bx-breadcrumb-item span {
    font-size: 14px;
    line-height: 20px;
  }
  .breadcrumb-arrow,
  .bx-breadcrumb .bx-breadcrumb-item {
    margin-right: 5px;
  }
  .detail-prod .start-wrap {
    display: flex;
    column-gap: 4px;
    flex-direction: column;
    row-gap: 10px;
  }
  .start-wrap > div {
    display: flex;
    column-gap: 10px;
  }
  .detail-prod .day {
    margin-bottom: 0;
  }
}

@media (max-width: 820px) {
  .detail-prod .price {
    font-size: 18px;
    line-height: 20px;
  }
  .detail-price-info {
    column-gap: 8px;
  }
  .detail-prod-content h2 p {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .detail-prod .detail-info-section {
    margin-bottom: 20px;
  }
  .detail-prod-content h2 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .route-list li + li {
    padding-top: 20px;
  }
  .route-list li {
    grid-template-columns: 55px auto;
  }
  .detail-prod .gallery__slider .slider-btn-next {
    right: 10px;
  }
  .detail-prod .gallery__slider .slider-btn-prev {
    left: 10px;
  }
  .inner__tab-content h2 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .inner__tab-content p {
    margin-bottom: 10px;
    line-height: 100%;
  }
  .detail-prod .nav-link.active,
  .detail-prod .nav-link {
    padding: 12px 18px;
  }
  .detail-prod .btn-bookings {
    padding: 12px 20px;
    font-size: 16px;
  }
  .detail-prod-tabs {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .detail-prod .btn-bookings {
    width: 100%;
  }
  .detail-prod .start-wrap {
    flex-direction: row;
  }
  .start-wrap > div {
    display: block;
  }
}

@media (max-width: 520px) {
  .detail-price-comm.small {
    font-size: 12px;
  }
  .bx-breadcrumb .bx-breadcrumb-item span {
    font-size: 12px;
  }
}

@media (max-width: 490px) {
  .detail-prod .nav-link.active,
  .detail-prod .nav-link {
    padding: 8px 18px;
    font-size: 14px;
  }
  .detail-prod .tab-content p {
    font-size: 12px;
  }
  .breadcrumb-arrow {
    width: 16px;
  }
  .detail-prod .start-wrap {
    flex-direction: column;
  }
  .start-wrap > div {
    display: flex;
    align-items: center;
  }
  .bx-breadcrumb .bx-breadcrumb-item {
    margin-bottom: 5px;
  }
  .detail-prod .item-time {
    margin-top: 0;
    text-align: left;
  }
}

@media (max-width: 992px) {
  .excursions .item {
    width: 100%;
    max-width: calc(50% - 17px / 2);
  }
}
@media (max-width: 576px) {
  .excursions .item {
    width: 100%;
    max-width: 100%;
  }
}
/* excursions */

@media (max-width: 992px) {
  .btn-cust-empty,
  .excursions-link-more {
    padding: 10px 20px;
    font-size: 18px;
  }
  .btn-cust {
    padding: 8px 10px;
    font-size: 16px;
  }
}
@media (max-width: 380px) {
  .btn-cust-empty {
    padding: 8px 10px;
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .mobile {
    display: none;
  }
}
@media (max-width: 992px) {
  .desktop {
    display: none;
  }

  .navbar.bg-light {
    background-color: var(--primary) !important;
  }
  .navbar-nav a {
    color: var(--black);
  }
  .broneks .navbar-nav a {
    color: var(--white);
  }
  .nav-item {
    padding: 5px 10px;
  }
  .navbar-text {
    padding: 5px 10px;
  }
  .container {
    padding: 5px 10px;
  }

  .form-label {
    width: 50%;
  }
  .form-row {
    flex-direction: column;
  }
  .form-control.num:not(#calendar),
  .form-select.num:not(#calendar) {
    width: 100% !important;
  }
  .navbar-nav .dropdown-menu {
    background-color: var(--primary);
  }

  .align-items-center {
    margin-left: 0 !important;
    margin-bottom: 10px;
  }

  .boooking-item {
    border: 1px solid var(--primary);
    margin: 5px 0px;
  }
  .boooking-item > div {
    padding: 5px !important;
    background-color: var(--tr-even-light);
  }
  .boooking-item > div:first-child {
    background-color: var(--primary);
    color: var(--white);
  }

  .tickets-detail {
    position: absolute;
    top: 100%;
    right: 0;
    width: max-content;
    border: 1px solid var(--primary);
    padding: 5px 10px;
    background-color: var(--primary);
    font-weight: 300;
    display: none;
  }
  .tickets-detail-btn {
    display: inline-block;
    padding-left: 10px;
  }
}

@media (max-width: 410px) {
  .prod-detail-img-wrap {
    max-height: 460px;
  }
}
.table-danger {
  --bs-table-striped-bg: #ffd507;
}
