: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,.15);
    --tr-odd-dark: rgba(51,153,204,.30);
    --tr-odd-light: rgba(51,153,204,.15);
    --tr-even: rgba(102, 204, 204,.25);
    --tr-even-dark: rgba(102, 204, 204, .35);
    --tr-even-light: rgba(102, 204, 204, .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), .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 .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .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;
    min-width: 380px;
    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:not(:last-child):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: .125rem 2.25rem .175rem .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 .75rem center;
    background-size: 16px 12px;
    border: var(--bs-border-width) solid #1b5e87;
    border-radius: 1px;
    transition: border-color .15s ease-in-out,box-shadow .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;
}

.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: .5rem .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: 10px 0px;
}
.logo img {
    height: 50px;
}
.head-menu {
    background-color: var(--primary);
    margin-bottom: 25px;
}
.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: .3s;
    -o-transition: .3s;
    transition: .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: .375rem .75rem;
}
.form-control, .form-select {
    padding: .375rem .75rem;
    border-color:var(--primary);
    border-radius: var(--border-radius);
}
.form-select {
    padding: .375rem 2.25rem .375rem .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;
}
.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;
}
.detail__price li {
    font-weight: 500;
}
.marker {
    float:right;
}
.included {
    list-style-type: none;
    gap: 35px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}
/*.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;
}
#navbarNavDropdown {
    justify-content: space-between;
}
.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 {
    line-height: 30px;
    padding-left: 30px;
}
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.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;
}

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;
}

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;
}

ol, ul {
    padding-left: .5rem;
}

@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(--white);
    }
    .nav-item {
        padding: 5px 10px;
    }
    .navbar-text {
        color: var(--white);
        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;
    }
}