:root {
    --header-height: 182px;

    --color-black: #000;
    --color-dark: #333;
    --color-grey: #999;
    --color-grey2: #ccc;
    --color-light-grey: #E0E0E0;
    --color-white: #fff;
    --color-red: #e02020;
    --color-dark-red: #7f1d1d;
    --color-yellow: #F7C945;

    --panel-bg: #fff4f4;
    --panel-border: #f1bcbc;

    --main-image-content-padding: 34px;

    --field-bg: #ffffff;
    --field-border: #e5e7eb;
    --field-text: #111827;
    --placeholder: #9ca3af;

    --focus: #facc15;
    --focus-shadow: #fde68a;

    --shadow: 0 18px 40px rgba(0,0,0,.18);
}

@font-face {
    font-family: "FontAwesome";
    font-weight: normal;
    font-display: swap;
    font-style: normal;
    src: url("https://use.fontawesome.com/releases/v4.7.0/fonts/fontawesome-webfont.woff2") format("woff2");
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Regular.otf') format('opentype'), url('../fonts/ProximaNova-Regular.woff') format('woff'), url('../fonts/ProximaNova-Regular.ttf') format('truetype'), url('../fonts/ProximaNova-Regular.svg#ProximaNova-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-RegularIt.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-RegularIt.otf') format('opentype'), url('../fonts/ProximaNova-RegularIt.woff') format('woff'), url('../fonts/ProximaNova-RegularIt.ttf') format('truetype'), url('../fonts/ProximaNova-RegularIt.svg#ProximaNova-RegularIt') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Bold.otf') format('opentype'), url('../fonts/ProximaNova-Bold.woff') format('woff'), url('../fonts/ProximaNova-Bold.ttf') format('truetype'), url('../fonts/ProximaNova-Bold.svg#ProximaNova-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Semibold.otf') format('opentype'), url('../fonts/ProximaNova-Semibold.woff') format('woff'), url('../fonts/ProximaNova-Semibold.ttf') format('truetype'), url('../fonts/ProximaNova-Semibold.svg#ProximaNova-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Light.otf') format('opentype'), url('../fonts/ProximaNova-Light.woff') format('woff'), url('../fonts/ProximaNova-Light.ttf') format('truetype'), url('../fonts/ProximaNova-Light.svg#ProximaNova-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'ProximaNova';
    src: url('../fonts/ProximaNova-Extrabld.eot?#iefix') format('embedded-opentype'), url('../fonts/ProximaNova-Extrabld.otf') format('opentype'), url('../fonts/ProximaNova-Extrabld.woff') format('woff'), url('../fonts/ProximaNova-Extrabld.ttf') format('truetype'), url('../fonts/ProximaNova-Extrabld.svg#ProximaNova-Extrabld') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AvenirNext-Heavy';
    src: url('../fonts/AvenirNext-Heavy.eot?#iefix') format('embedded-opentype'), url('../fonts/AvenirNext-Heavy.woff') format('woff'), url('../fonts/AvenirNext-Heavy.ttf') format('truetype'), url('../fonts/AvenirNext-Heavy.svg#AvenirNext-Heavy') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* --------------------------------------------------------------

   reset.css
   * Resets default browser CSS.

-------------------------------------------------------------- */

html {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
dfn,
em,
img,
q,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}


/* This helps to make newer HTML5 elements behave like DIVs in older browsers */

article,
aside,
details,
figcaption,
figure,
dialog,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}


/* Line-height should always be unitless! */

body {
    line-height: 1.5;
    background: white;
}


/* Tables still need 'cellspacing="0"' in the markup. */

table {
    border-collapse: separate;
    border-spacing: 0;
}


/* float:none prevents the span-x classes from breaking table-cell display */

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    float: none !important;
}

table,
th,
td {
    vertical-align: middle;
}

* {
    box-sizing: border-box;
}


/* Remove possible quote marks (") from <q>, <blockquote>. */

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
}

blockquote,
q {
    quotes: "" "";
}


/* Remove annoying border on linked images. */

a img {
    border: none;
}


/* Remember to define your own focus styles! */

:focus {
    outline: 0;
}

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'ProximaNova', sans-serif;
    font-size: 14px;
    color: var(--color-black);
}

body.open-menu {
    overflow: hidden;
}

header {
    background: var(--color-red);
    color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 180;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

header>.container {
    height: auto;
    line-height: unset;
}

header a {
    color: var(--color-white);
    text-decoration: none;
}

.header_row_desctop {
    display: none;
}

#container .main-image {
    height: 360px;
}

.logo {
    fill: var(--color-white);
}

.logo:hover {
    fill: #97301a;
}

.logo,
.social,
.burger {
    display: inline-block;
    vertical-align: middle;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.phone {
    font-size: 18px;
    font-weight: bold;
}

.phone:hover {
    color: #ddd;
}

.social img,
.social svg {
    vertical-align: middle;
    margin-right: 22px;
}

header .social svg {
    fill: var(--color-white);
    fill-rule: evenodd;
}

header .social a:hover svg {
    fill: #ddd;
}

header .social a:nth-child(1) svg {
    margin-right: 18px;
}

header .social a:nth-child(2) svg {
    margin-right: 21px;
}

header .social a:nth-child(4) svg {
    height: 16px;
}

header .contacts-info .social a:nth-child(4) svg {
    height: 27px;
    width: 38px;
}

.col_social {
    transform: translateY(-3px)
}

.burger {
    cursor: pointer;
    margin-left: 0;
    width: 32px;
    height: 32px;
    background: var(--color-yellow);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    float: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger .wrap {
    width: 19px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.burger i {
    width: 100%;
    height: 2px;
    background: var(--color-dark);
}

.main-image {
    height: calc(100vh - 60px);
    min-height: 350px;
}

.main-image .container {
    height: 100%;
    position: relative;
}

.main-image__backgrounds {
    position: absolute;
    top: 0;
    bottom: 0;
    right: var(--bs-gutter-x, .75rem);
    left: var(--bs-gutter-x, .75rem);
}

.main-image__content {
    height: 100%;
    position: relative;
    z-index: 10;
    padding-left: var(--main-image-content-padding);
    padding-right: var(--main-image-content-padding);
    padding-bottom: 50px;
}

.main-image__button {
    margin-top: 40px;
}

.main-image__desktop,
.main-image .swiper-container,
.main-image__mobile {
    width: 100%;
    height: 100%;
}

.main-image,
.main-image .swiper-slide,
.main-image__desktop,
.main-image__mobile {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.bg-image {
    position: relative;
}

.bg-image:after,
.main-image .swiper-slide:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.4);
    z-index: 3;
}

.main-title {
    z-index: 5;
}

.main-title .sub {
    font-size: 22px;
    font-weight: normal;
    color: var(--color-white);
    line-height: 1.46em;
    margin-top: 1em;
}

.tpl-10 .main-title .sub {
    margin-top: 20px;
}

.main-title .title {
    font-weight: bold;
    color: var(--color-white);
    font-size: 32px;
    line-height: 1.28em;
    letter-spacing: 0.01em;
    position: relative;
}

.main-title .btn-play,
.main-title .btn {
    margin-top: 50px;
}

.main-title .row .btn {
    margin-top: 0;
    vertical-align: top;
}

.swiper-slide .main-title {
    position: relative;
    z-index: 5;
    padding: 80px 0 0;
}

.main-title.left-align .btn {
    position: absolute;
    bottom: 10px;
    right: 0;
    margin-top: 0;
}

.btn {
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    color: var(--color-black);
    font-size: 14px;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 32px;
    border-radius: 30px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-sm {
    height: 40px;
    line-height: 40px;
    letter-spacing: 0.05em;
    padding: 0 20px;
}

.btn-orange {
    background: #ffc800;
    border: 2px solid var(--color-white);
}

.btn-orange:hover {
    background: var(--color-white);
    border: 2px solid var(--color-red);
}

.btn-bordered {
    background: var(--color-white);
    border: 2px solid #ffc800;
}

.btn-bordered:hover {
    background: #ffc800;
}

.btn-trans {
    background: none;
    border: 2px solid var(--color-white);
    line-height: 58px;
    color: var(--color-white);
}

.btn:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.btn-vk {
    background: #5a74a2;
    width: 576px;
}

.h2 {
    font-size: 28px;
    text-align: center;
    line-height: 1.2em;
    color: var(--color-red);
}

.sub-h2 {
    text-align: center;
    font-size: 18px;
    line-height: 1.09em;
    margin-top: 21px;
}

.tours {
    padding-top: 87px;
}

.tours-items {
    margin-top: 40px;
    padding-bottom: 70px;
    text-align: center;
}

.vertical-item {
    text-align: left;
}

.tour-data {
    bottom: 41px;
    left: 35px;
    color: var(--color-white);
    font-size: 13px;
    font-style: italic;
}

.tour-data .it {
    display: inline-block;
    margin-right: 14px;
    position: relative;
}

.tour-data .it:last-child {
    margin-right: 0;
}

.tour-data .it img {
    vertical-align: middle;
    margin-right: 8px;
    position: relative;
    top: -1px;
}

.top_old_price {
    position: absolute;
    top: -20px;
    text-decoration: line-through;
    white-space: nowrap;
}

.tour-item {
    position: relative;
    text-align: left;
    top: 0;
    -webkit-transition: top .3s ease-in-out;
    transition: top .3s ease-in-out;
}

.tour-item .tour-img {
    position: relative;
}

.tour-item .tour-img img {
    width: 100%;
    height: auto;
}

.tour-item .bg {
    height: 420px;
    display: block;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.tour-item .tour-img:after,
.tour-data,
.tour-item .title,
.tour-item .title2,
.tour-item .more-info {
    position: absolute;
    z-index: 5;
}

.tour-item .tour-img:after {
    z-index: 3;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../i/overlay-line-2.png) 0 100% repeat-x;
}

.tour-item .title,
.tour-item .title2 {
    bottom: 107px;
    left: 35px;
    right: 30px;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2em;
    color: var(--color-white);
    -webkit-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.tour-item .more-info {
    bottom: 23px;
    right: 35px;
    padding: 0 50px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.tour-info {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 50%;
    bottom: 0;
    left: 0;
    background: var(--color-white);
    color: var(--color-black);
    font-size: 14px;
    line-height: 1.43em;
    padding: 35px 25px 85px 35px;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-in-out;
    transition: opacity 0.6s ease-in-out;
}

.tour-item .tour-info .title {
    color: var(--color-red);
    position: static;
    margin-bottom: 38px;
    max-height: 78px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.tour-item:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    top: -5px;
}

.tour-item:hover .tour-info .title {
    opacity: 1;
}

.tour-item .tour-info .tour-data {
    color: var(--color-red);
}

.tour-item:hover .tour-info {
    opacity: 1;
}

.tour-item:hover .more-info {
    border-color: var(--color-red);
}

.tour-item:hover .more-info:hover {
    color: var(--color-white);
    background: var(--color-red);
}

.tour-item:hover .title {
    opacity: 0;
}

.grid-item,
.tour-item-col {
    margin-bottom: 40px;
}

.show-more {
    border: none;
    background: none;
    color: #b6b6b6;
    font-family: 'ProximaNova', sans-serif;
    font-size: 18px;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    margin-top: 50px;
}

.show-more.btn-more {
    font-size: 14px;
    white-space: nowrap;
    width: 200px;
    margin-bottom: 20px;
}

.show-more .ic {
    background: var(--color-black);
    color: var(--color-white);
    font-size: 28px;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: inline-block;
    border-radius: 50%;
    line-height: 50px;
    margin-bottom: 18px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.show-more:hover .ic {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.corp {
    padding-top: 95px;
    padding-bottom: 135px;
}

#inner .h2 {
    color: var(--color-black);
}

#inner .vacancy .h2 {
    color: var(--color-white);
}

#inner .corp {
    padding-top: 110px;
    padding-bottom: 64px;
}

#inner .corp .h2 {
    margin-bottom: 80px;
}

.corp-items {
    margin-top: 90px;
    margin-bottom: 117px;
}

.corp-item {
    text-align: center;
}

.corp-item .ic {
    height: 70px;
    line-height: 70px;
    margin-bottom: 18px;
}

.corp-item .ic svg {
    fill: var(--color-red);
    display: inline-block;
    vertical-align: middle;
}

.corp-item .title {
    max-width: 150px;
    margin: 0 auto;
    color: #3a3a3a;
    font-size: 16px;
    line-height: 1.5em;
    text-transform: uppercase;
    font-weight: 300;
}

.corp-order {
    display: block;
    margin: 0 auto;
    max-width: 577px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.corp-order:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.corp-items-mobile {
    margin: 30px 0;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
    background: var(--color-red);
}

.testimonials {
    padding-top: 60px;
    padding-bottom: 150px;
}

.sep {
    position: relative;
}

.sep:before {
    content: '';
    background: var(--color-red);
    width: 30px;
    height: 3px;
    margin-left: -15px;
    left: 50%;
    top: 0;
    position: absolute;
}

.h3 {
    font-size: 34px;
    margin-bottom: 70px;
    text-align: center;
}

.scr {
    margin: 0 auto;
}

.partners {
    padding-bottom: 140px;
}

.partners .item {
    width: 110px;
}

.partners .item a {
    display: block;
}

.partners .item img {
    width: 100%;
}

.partners .container {
    position: relative;
}

.partners .items {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-around;
    justify-content: space-around;
}

.partners .swiper-container {
    margin-left: 50px;
    margin-right: 50px;
}

.partners .swiper-button-prev,
.partners .swiper-button-next {
    background: none;
    width: 25px;
    height: 23px;
    margin-top: -12px;
}

.partners .swiper-button-prev:after,
.partners .swiper-button-prev:before,
.partners .swiper-button-next:after,
.partners .swiper-button-next:before {
    content: '';
    position: absolute;
}

.partners .swiper-button-prev:after,
.partners .swiper-button-next:after {
    width: 17px;
    height: 17px;
    border-right: 1px solid #b6b6b6;
    border-bottom: 1px solid #b6b6b6;
    top: 3px;
}

.partners .swiper-button-prev:after {
    transform: rotate(135deg);
    left: 2px;
}

.partners .swiper-button-next:after {
    transform: rotate(-45deg);
    right: 2px;
}

.partners .swiper-button-prev:before,
.partners .swiper-button-next:before {
    width: 25px;
    height: 1px;
    background: #b6b6b6;
    top: 50%;
}

.partners .swiper-button-prev:hover:after,
.partners .swiper-button-next:hover:after {
    border-color: var(--color-red);
}

.partners .swiper-button-prev:hover:before,
.partners .swiper-button-next:hover:before {
    background: var(--color-red);
}


/*.white-forest-bg {
	background: var(--color-white) url(../i/white-forest-bg.jpg) center bottom no-repeat;
}*/

.booking {
    background: var(--color-white);
    padding-top: 60px;
    padding-bottom: 60px;
    color: #111;
}

.row.g-0 {
    margin-left: 0;
    margin-right: 0;
}

.row.g-unset {
    margin-left: -15px;
    margin-right: -15px;
}

.row.g-unset>* {
    padding-left: 15px;
    padding-right: 15px;
}

.booking .h2 {
    margin-bottom: 50px;
}

.form-title {
    line-height: 80px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: #ffc800;
    margin-bottom: 30px;
}

.booking-form .form-group {
    margin-bottom: 24px;
}

.booking-form label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 40px;
    text-transform: uppercase;
}
/*
input[type=text],
input[type=date] {
    height: 30px;
    font-size: 18px;
    background: none;
    border: none;
    border-bottom: 2px solid var(--color-white);
    width: 100%;
    color: var(--color-white);
    font-family: 'ProximaNova', sans-serif;
    font-weight: 300;
}

input[type=text]:disabled,
input[type=date]:disabled {
    opacity: 0.5;
}*/

.jq-selectbox {
    width: 100%;
    border-bottom: 2px solid var(--color-white);
    font-size: 16px;
    cursor: pointer;
}

.jq-selectbox__select-text {
    line-height: 30px;
    margin-right: 30px;
}

.jq-selectbox__trigger {
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    bottom: 0;
}

.jq-selectbox__trigger-arrow {
    border-right: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 7px;
    right: 3px;
    width: 10px;
    height: 10px;
}

.jq-selectbox__dropdown {
    left: -10px;
    right: 0;
}

.jq-selectbox__dropdown ul {
    width: 100%;
    background: var(--color-white);
    color: var(--color-black);
}

.jq-selectbox__dropdown ul li {
    padding: 5px 10px;
    cursor: pointer;
}

.jq-selectbox__dropdown ul li:hover {
    background: #f1f1f1;
}

.jq-selectbox__dropdown ul li.selected {
    background: rgba(207, 94, 54, .38);
}

.jq-selectbox.opened .jq-selectbox__trigger-arrow {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 12px;
}

.add-traveler {
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 44px;
    margin-left: 22px;
    color: #111;
    text-decoration: none;
}

.add-traveler span {
    display: inline-block;
}

.add-traveler span.ic {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--color-red);
    line-height: 28px;
    margin-right: 12px;
}

.add-traveler span.t {
    line-height: 1em;
    border-bottom: 1px solid #111;
}

.traveler-form {
    margin-top: 50px;
}

.traveler-title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 20px;
}

::-webkit-input-placeholder {
    color: #bababa;
}

::-moz-placeholder {
    color: #1a1a1a;
}


/* Firefox 19+ */

:-moz-placeholder {
    color: #1a1a1a;
}


/* Firefox 18- */

:-ms-input-placeholder {
    color: #1a1a1a;
}

.btn-white {
    border: none;
    background: #ffc800;
    color: var(--color-black);
}

.btn-trans:hover {
    color: var(--color-white);
    background: var(--color-red);
    border-color: var(--color-red);
}

.traveler-form .button-group .btn {
    width: 100%;
    vertical-align: bottom;
}

.booking-form .traveler-form .form-group {
    margin-bottom: 33px;
}

.traveler-form .phone-field {
    margin-top: 30px;
}

.phone-field {
    letter-spacing: 0.1em;
}

.calendar .months {
    line-height: 80px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    background: var(--color-black);
    margin-bottom: 39px;
    position: relative;
}

.calendar .months .m-prev,
.calendar .months .m-next {
    width: 22px;
    height: 22px;
    border-right: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    top: 30px;
    position: absolute;
    cursor: pointer;
}

.calendar .months .m-prev:hover,
.calendar .months .m-next:hover {
    border-color: var(--color-white);
}

.calendar .months .m-prev {
    left: 20px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.calendar .months .m-next {
    right: 20px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.calendar .weeks,
.calendar .days {
    overflow: hidden;
}

.calendar .weeks .item {
    float: left;
    font-size: 18px;
    font-weight: bold;
    width: 14.28%;
    text-transform: uppercase;
    text-align: center;
}

.calendar .weeks {
    margin-bottom: 30px;
}

.calendar .day {
    width: 14.28%;
    font-size: 18px;
    text-align: center;
    float: left;
    padding: 7px 0;
    cursor: pointer;
}

.calendar .day b {
    display: inline-block;
    height: 70px;
    width: 70px;
    border: 2px solid transparent;
    border-radius: 50%;
    line-height: 66px;
    color: #111;
    text-align: center;
}

.calendar .day.unact b {
    opacity: .3;
}

.calendar .day.has b {
    border-color: var(--color-white);
}

.calendar .day.act b {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-red);
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.calendar .day.book b {
    background: var(--color-black);
    border-color: var(--color-black);
}

.calendar .day:hover b {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-red);
}

.calendar .day.unact,
.calendar .day.book {
    cursor: default;
}

#simple_form .h2 {
    color: var(--color-white);
}

footer {
    background: #232323;
    color: #737373;
    padding: 30px 0;
    font-size: 14px;
}

footer a {
    color: #737373;
    text-decoration: none;
}

footer .social svg {
    margin-right: 0;
    vertical-align: middle;
}

footer .social a:nth-child(1) svg {
    margin-right: 20px;
}

footer .social a:nth-child(2) svg {
    margin-right: 23px;
}

footer .social a:nth-child(3) svg {
    margin-right: 0;
}

footer .social a:nth-child(4) svg {
    height: 18px;
    width: 25px;
}

footer .social {
    margin-bottom: 24px;
}

footer .col1 {
    font-weight: bold;
    line-height: 1.43em;
}

footer .col2 {
    font-weight: 300;
    line-height: 1.57em;
}

footer .col3 {
    font-weight: 600;
}

footer .dev {
    margin-bottom: 30px;
}

footer .dev svg {
    width: 80px;
    height: auto;
}

footer svg {
    fill: #858585;
    fill-rule: evenodd;
}

footer a:hover svg {
    fill: var(--color-white);
}

.big-logo img {
    width: 270px;
    height: 51px;
}

/* Mobile menu */
.mobile-menu {
    background: var(--color-white);
    position: fixed;
    right: 0;
    top: var(--header-height);
    bottom: 0;
    width: 320px;
    z-index: 150;
    text-align: center;
    display: none;
    /*height: calc(100vh - var(--header-height));*/
    padding: 30px 40px;
    transform: translateX(100%);
    -webkit-transition: transform .5s ease-in-out;
    transition: transform .5s ease-in-out;
    overflow: auto;          /* скролл внутри меню */
    overscroll-behavior: contain; /* чтобы жесты не “пробивали” фон */
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}

.mobile-menu ul {
    text-align: left;
    list-style-type: none;
    border-bottom: 1px solid var(--color-light-grey);
    padding-bottom: 16px;
}

.mobile-menu ul.mobile-menu__second {
    padding-bottom: 23px;
    padding-top: 23px;
}

.mobile-menu li:not(:last-child) {
    margin-bottom: 7px;
}

.mobile-menu li a,
.mobile-menu li .a {
    display: block;
    line-height: 1.5em;
    color: var(--color-black);
    font-size: 14px;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: 0 center;
}

.mobile-menu ul.mobile-menu__second li:not(:last-child) {
    margin-bottom: 10px;
}

.mobile-menu ul.mobile-menu__second li a {
    font-weight: bold;
}

.mobile-menu__backcall {
    text-align: left;
}

.mobile-menu__backcall .btn_backcall {
    width: 100%;
    text-align: center;
}

.mobile-menu .soc-icons {
    margin-top: 27px;
    justify-content: center;
}

.mobile-menu .soc-icons svg path {
    fill: var(--color-black);
}

.open-menu .mobile-menu,
.open-filter .filter_col {
    transform: translateX(0);
}

/* end Mobile menu */

.organize {
    padding-top: 110px;
}

.text {
    font-size: 16px;
    line-height: 1.5em;
}

.text p,
.text ul,
.text table {
    margin-bottom: 1.2em;
}

.text p:last-child,
.text ul:last-child,
.text table:last-child {
    margin-bottom: 0;
}

.text h2 {
    font-size: 24px;
    line-height: 1.21em;
    margin-bottom: 1.21em;
    font-weight: bold;
}

.text table {
    width: 100%;
    font-size: 0.85em;
    line-height: 1.2em;
    border-collapse: collapse;
}

.text table td {
    border: 1px solid #bbb;
    padding: 5px 10px;
    vertical-align: top;
}

.testim-slider {
    padding-top: 80px;
}

.testim-slider .h2 {
    margin-bottom: 75px;
}

.tours-slide,
.d-slider .swiper-slide {
    /* width: 580px;*/
    height: 419px;
    background-repeat: no-repeat;
    background-position: 0 0;
    text-align: center;
}

.tours-slide {
    height: 420px;
}

.actions-slider,
.tours-slider,
.d-slider {
    height: 449px;
    padding-bottom: 130px;
    width: auto;
    margin-left: -120px;
    margin-right: -120px;
}

.testim-slider {
    overflow: hidden;
    padding-bottom: 110px;
}

.tours-slide:before,
.d-slider .swiper-slide:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    z-index: 2;
    left: 0;
    top: 0;
}

.actions-slider .cont,
.tours-slider .cont,
.d-slider .cont {
    position: relative;
    z-index: 5;
    color: var(--color-white);
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.d-slider .title {
    font-size: 18px;
}

.d-slider .img {
    border: 2px solid #dd6236;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 26px;
}

.d-slider .img img {
    height: 100%;
}

.d-slider .position {
    font-size: 14px;
    opacity: .5;
}

.d-slider .testim-text {
    margin-top: 50px;
    font-size: 16px;
    line-height: 1.2em;
    font-style: italic;
    padding: 0 20px;
}

.tours-slider .swiper-slide-active,
.actions-slider .swiper-slide-active,
.d-slider .swiper-slide-active {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .3);
}

.testim-slider .container,
.slider-actions .container {
    overflow: hidden;
    position: relative;
    padding-bottom: 40px;
}

.slider-relative-wrapper {
    position: relative;
}

#inner .partners {
    padding-top: 70px;
}

#inner .partners .h2 {
    margin-bottom: 50px;
}

.order-corp {
    background: var(--color-red);
    padding-top: 80px;
    padding-bottom: 89px;
}

.order-corp .h2 {
    margin-bottom: 20px;
}

.order-corp .desc {
    text-align: center;
}

#inner .order-corp .h2 {
    color: var(--color-white);
}

textarea {
    background: var(--color-white);
    font-family: 'ProximaNova', sans-serif;
    font-size: 16px;
    padding: 20px;
    border: none;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.order-corp .desc {
    font-size: 18px;
    line-height: 1.67em;
    letter-spacing: 0.05em;
    margin-bottom: 36px;
}

.order-corp .form-group {
    margin-bottom: 30px;
}

.order-corp textarea {
    height: 159px;
    vertical-align: bottom;
    color: var(--color-black);
}

.order-corp .button-group {
    text-align: center;
}

.order-corp .control-label {
    color: var(--color-dark-red);
}

.order-corp .btn {
    width: 100%;
}

.slider-tours {
    margin-top: 60px;
    background: #c35731;
    padding-top: 68px;
    padding-bottom: 100px;
}

.slider-tours .container {
    overflow: hidden;
    position: relative;
}

#inner .slider-tours .h2 {
    color: var(--color-white);
}

.slider-tours .h2 {
    margin-bottom: 56px;
}

.tours-slider {
    height: 500px;
}

.tours-slide .title {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.19em;
    margin-bottom: 40px;
}

.tours-slide .desc {
    font-size: 22px;
    line-height: 1.19em;
}

.tours-slide .btn {
    position: absolute;
    bottom: 56px;
    left: 50%;
    margin-left: -100px;
    width: 200px;
}

.tours-slide .swiper-slide:hover .btn-trans {
    border-color: var(--color-red);
}

.tours-slide .swiper-slide {
    padding: 0 30px;
}

.tours-slide .cont {
    height: 100%;
}

.swiper-container-horizontal>.swiper-scrollbar {
    left: 40%;
    right: 40%;
    width: auto;
    bottom: 10px;
    height: 2px;
    background: rgba(255, 255, 255, .2);
}

.swiper-container-horizontal>.swiper-scrollbar .swiper-scrollbar-drag {
    background: var(--color-white);
}

.testim-slider .swiper-button-next,
.testim-slider .swiper-button-prev,
.slider-tours .swiper-button-prev,
.slider-tours .swiper-button-next,
.rooms-gallery .swiper-button-prev,
.rooms-gallery .swiper-button-next {
    background: none;
    width: 25px;
    height: 23px;
    margin-top: -12px;
    bottom: 0;
    top: 50%;
}

.testim-slider .swiper-button-next:after,
.testim-slider .swiper-button-prev:after,
.testim-slider .swiper-button-next:before,
.testim-slider .swiper-button-prev:before,
.slider-tours .swiper-button-prev:after,
.slider-tours .swiper-button-prev:before,
.slider-tours .swiper-button-next:after,
.slider-tours .swiper-button-next:before,
.rooms-gallery .swiper-button-prev:after,
.rooms-gallery .swiper-button-prev:before,
.rooms-gallery .swiper-button-next:after,
.rooms-gallery .swiper-button-next:before {
    content: '';
    position: absolute;
}

.testim-slider .swiper-button-next:after,
.testim-slider .swiper-button-prev:after,
.slider-tours .swiper-button-prev:after,
.slider-tours .swiper-button-next:after,
.rooms-gallery .swiper-button-prev:after,
.rooms-gallery .swiper-button-next:after {
    width: 17px;
    height: 17px;
    border-right: 1px solid var(--color-white);
    border-bottom: 1px solid var(--color-white);
    top: 3px;
}

.testim-slider .swiper-button-next:after,
.testim-slider .swiper-button-prev:after {
    border-color: #b6b6b6;
}

.testim-slider .swiper-button-prev:after,
.slider-tours .swiper-button-prev:after,
.rooms-gallery .swiper-button-prev:after {
    transform: rotate(135deg);
    left: 2px;
}

.testim-slider .swiper-button-next:after,
.slider-tours .swiper-button-next:after,
.rooms-gallery .swiper-button-next:after {
    transform: rotate(-45deg);
    right: 2px;
}

.testim-slider .swiper-button-next:before,
.testim-slider .swiper-button-prev:before,
.slider-tours .swiper-button-prev:before,
.slider-tours .swiper-button-next:before,
.rooms-gallery .swiper-button-prev:before,
.rooms-gallery .swiper-button-next:before {
    width: 25px;
    height: 1px;
    background: var(--color-white);
    top: 50%;
    margin-top: -1px;
}

.testim-slider .swiper-button-next:before,
.testim-slider .swiper-button-prev:before {
    background: #b6b6b6;
}

.testim-slider .swiper-button-next:hover:after,
.testim-slider .swiper-button-prev:hover:after,
.slider-tours .swiper-button-prev:hover:after,
.slider-tours .swiper-button-next:hover:after,
.rooms-gallery .swiper-button-prev:hover:after,
.rooms-gallery .swiper-button-next:hover:after {
    border-color: var(--color-red);
}

.testim-slider .swiper-button-next:hover:before,
.testim-slider .swiper-button-prev:hover:before,
.slider-tours .swiper-button-prev:hover:before,
.slider-tours .swiper-button-next:hover:before,
.rooms-gallery .swiper-button-prev:hover:before,
.rooms-gallery .swiper-button-next:hover:before {
    background: var(--color-red);
}

.has-tours {
    padding-top: 90px;
    padding-bottom: 80px;
}

.has-tours .h2 {
    margin-bottom: 80px;
}

.h4 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 36px;
}

.jq-radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e5e5e5;
    vertical-align: middle;
    margin-right: 1em;
    position: relative;
    top: -1px;
    cursor: pointer;
}

.jq-radio .jq-radio__div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 5px 0 0 5px;
}

.jq-radio.checked .jq-radio__div {
    background: var(--color-red);
}

.jq-checkbox {
    width: 20px;
    height: 20px;
    background: #e5e5e5;
    vertical-align: middle;
    margin-right: 1em;
    transform: translateY(-2px);
    cursor: pointer;
}

.jq-checkbox .jq-checkbox__div {
    width: 10px;
    height: 10px;
    margin: 5px 0 0 5px;
    background: var(--color-red);
    display: none;
}

.jq-checkbox.checked .jq-checkbox__div {
    display: block;
}

.has-tours .radio {
    font-size: 22px;
    color: var(--color-red);
    margin-bottom: 16px;
}

.has-tours .radio label {
    cursor: pointer;
}

.has-tours .note {
    font-size: 14px;
    line-height: 1.43em;
    margin-bottom: 42px;
}

.has-tours form button {
    width: 100%;
}

.slider-values {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: -webkit-flex;
    display: flex;
    color: var(--color-red);
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 60px;
}

.slider.slider-horizontal {
    width: 100%;
}

.slider-track,
.slider-selection {
    background: #e5e5e5;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.slider-track {
    border-radius: 5px;
}

.slider.slider-horizontal .slider-track {
    margin-top: -1px;
}

.slider.slider-horizontal .slider-handle {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    background: var(--color-red);
    width: 25px;
    height: 25px;
    margin-left: -12.5px;
}

#sliderDays.ui-widget.ui-widget-content {
    border: none;
    background: #e5e5e5;
    border-radius: 5px;
    height: 10px;
    margin-right: 10px;
    margin-left: 4px;
}

#sliderDays .ui-state-default,
#sliderDays .ui-widget-content .ui-state-default {
    background: var(--color-red);
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

#sliderDays.ui-slider-horizontal .ui-slider-handle {
    top: -8px;
    margin-left: -12px;
}

#sliderDays.ui-slider-horizontal .ui-slider-handle.ui-state-active {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.gray-bg {
    /* background: #e6e6e6; */
    background: #f7f7f7;
}

#inner .tours {
    padding-top: 120px;
}

#inner .tours-items {
    margin-top: 0;
}

#inner.tpl-15 .tours {
    padding-top: 60px;
    padding-bottom: 120px;
}

.about-digits {
    padding-top: 140px;
    padding-bottom: 100px;
    background: url(../i/about-bg.svg) center 112px no-repeat;
}

.about-text {
    font-size: 22px;
    line-height: 1.88em;
    font-weight: normal;
    margin-bottom: 110px;
}

.digits {
    padding-top: 100px;
}

.digits .item {
    text-align: center;
}

.digits .item .d {
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
    color: var(--color-red);
    margin-bottom: 50px;
}

.digits .item .desc {
    font-size: 18px;
    line-height: 1.2em;
}

.tpl-51 .history {
    padding-top: 60px;
}

.history {
    padding-top: 65px;
    font-size: 16px;
    line-height: 1.5em;
    padding-bottom: 92px;
    margin-bottom: 77px;
}

.history p {
    margin-bottom: 1.5em;
}

.history .h3 {
    text-align: left;
    margin-bottom: 50px;
}

.history .img {
    position: relative;
}

.history .img img {
    vertical-align: bottom;
    width: 100%;
}

.history .name {
    font-size: 79px;
    line-height: 0.85em;
    font-weight: bold;
    color: var(--color-red);
    text-transform: uppercase;
    position: absolute;
    bottom: -9px;
    left: 0;
}

.history .position {
    color: var(--color-white);
    font-size: 20px;
    white-space: nowrap;
    bottom: 348px;
    left: 0;
    position: absolute;
    transform: rotate(-90deg);
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    transform-origin: 0 0;
    line-height: 1em;
}

.find-agents {
    padding-top: 80px;
    text-align: center;
    padding-bottom: 123px;
}

.find-agents .sub-h2 {
    color: var(--color-black);
    margin-bottom: 65px;
}

#inner .testimonials {
    padding-bottom: 90px;
}

.orange-bg {
    background: var(--color-red);
    color: var(--color-white);
}

.orange-bg .btn-trans {
    color: var(--color-white);
}

.orange-bg .btn-trans:hover {
    background: var(--color-white);
    color: var(--color-red);
    border-color: var(--color-white);
}

.vacancy {
    padding-top: 70px;
    padding-bottom: 95px;
}

.vacancy .sub-h2 {
    font-size: 18px;
    line-height: 1.67em;
    color: var(--color-white);
}

.vacancy .h2 {
    margin-bottom: 20px;
}

.vacancy-items {
    margin-top: 60px;
}

.accordion h3 {
    background: var(--color-white);
    color: var(--color-red);
    font-weight: bold;
}

.ui-widget {
    font-family: 'ProximaNova', sans-serif;
}

.accordion .ui-state-active {
    border: none;
}

.accordion.ui-accordion .ui-accordion-header {
    margin: 29px 0 0;
    font-size: 18px;
    font-weight: bold;
    padding: 0 35px;
    line-height: 83px;
    height: 83px;
}

.accordion h3,
.accordion .ui-accordion .ui-accordion-content,
.accordion .ui-corner-bottom {
    border-radius: 0;
}

.accordion .ui-widget-content {
    border: 3px solid var(--color-white);
    background: none;
    color: var(--color-white);
    padding: 30px 72px 64px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion .ui-widget-content p {
    font-size: 16px;
    line-height: 1.5;
}

.accordion .ui-widget-content .h4 {
    margin-bottom: 24px;
}

.accordion .ui-widget-content .row {
    margin-top: 50px;
}

.accordion .ui-state-default {
    border: none;
}

.accordion .ui-accordion-header-icon {
    position: absolute;
    background: none;
    width: 22px;
    height: 22px;
    right: 40px;
    top: 32px;
    border-bottom: 2px solid var(--color-black);
    border-right: 2px solid var(--color-black);
    transform: rotate(45deg);
}

.accordion .ui-accordion-header-active .ui-accordion-header-icon {
    transform: rotate(225deg);
    top: 42px;
}

.accordion .btn {
    width: 100%;
}

.accordion .price {
    line-height: 60px;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.accordion .price-right {
    float: right;
    color: var(--color-black);
    font-size: 20px;
    font-weight: 300;
    margin-right: 82px;
}

.sub-icons .tour-data {
    position: static;
    font-size: 16px;
}

.sub-icons .tour-data .ic {
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--color-red);
    text-align: center;
    margin-right: 16px;
}

.sub-icons .tour-data .it {
    margin-right: 34px;
}

.sub-icons .tour-data .it img {
    position: static;
    margin: 0;
}

.sub-icons .row {
    --bs-gutter-y: 1.5rem;
}

.tour-intro-section {
    padding-top: 30px;
}

.inline-submenu,
.filter-button-group {
    list-style-type: none;
    margin-bottom: 100px;
}

.filter-button-group li,
.inline-submenu li {
    display: inline-block;
    margin-right: 66px;
}

.filter-button-group li:last-child,
.inline-submenu li:last-child {
    margin-right: 0;
}

.filter-button-group li,
.inline-submenu li a {
    color: var(--color-red);
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.1em;
    display: inline-block;
    border-bottom: 2px solid var(--color-red);
    text-transform: uppercase;
    padding-bottom: 3px;
}

.tour-intro {
    font-size: 22px;
    line-height: 1.8em;
    font-weight: 500;
    margin-bottom: 80px;
}

.tour-menu-container {
    position: relative;
    z-index: 15;
}

.tour-menu {
    border: 3px solid var(--color-red);
    width: 440px;
    padding: 20px 25px 5px;
    list-style-type: none;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: 40px;
    background: var(--color-white);
}

.tour-menu a {
    color: var(--color-black);
    text-decoration: none;
}

.tour-menu li {
    margin-bottom: 20px;
}

.tour-menu .active a {
    color: var(--color-red);
    border-bottom: 2px solid var(--color-red);
    padding-bottom: 3px;
    display: inline-block;
}

.tour-images {
    margin-bottom: 105px;
}

.tour-images img {
    vertical-align: bottom;
    width: 100%;
}

.tour-images .graph {
    display: inline-block;
    font-weight: bold;
    color: var(--color-red);
    font-size: 40px;
    line-height: 1.25em;
    margin-left: 55px;
    vertical-align: top;
}

.tour-images .left-side {
    position: relative;
}

.tour-images .left-side .img {
    width: 60%;
    position: relative;
    display: inline-block;
    z-index: 10;
}

.tour-video {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 50%;
    margin-left: -570px;
}

.tour-video img.cover {
    width: 100%;
    vertical-align: bottom;
}

.tour-video .img-wrap {
    margin-left: 490px;
}

@media (min-width: 1200px) {
    .tour-video {
        margin-left: -570px;
    }
}

@media (min-width: 1300px) {
    .tour-video {
        margin-left: -600px;
    }
}

.day-img {
    vertical-align: bottom;
    width: 100%;
}

.day-num {
    font-size: 60px;
    line-height: 1em;
    color: #6c6c6c;
    font-weight: bold;
    float: left;
}

.day-info {
    margin-left: 110px;
}

.day-info .title,
.day-info .time {
    line-height: 60px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.day-info .title {
    color: var(--color-red);
    margin-right: 28px;
}

.day-info .time {
    color: #a1a1a1;
}

.day-info .desc {
    margin-top: 20px;
}

.text h3 {
    margin-bottom: 1em;
    font-size: 24px;
    font-weight: bold;
}

.row.day {
    margin-bottom: 28px;
    position: relative;
}

.row.day:not(:last-child):before {
    content: '';
    position: absolute;
    display: block;
    width: 2px;
    top: 70px;
    bottom: -20px;
    left: 54px;
    background: #f2f2f2;
}

.paginate {
    text-align: center;
    list-style-type: none;
    margin-bottom: 17px;
    margin-top: 57px;
}

.paginate li {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin: 0 30px;
}

.paginate li a {
    display: inline-block;
    text-decoration: none;
    color: var(--color-black);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
}

.paginate li a:hover,
.paginate li.active a {
    color: var(--color-white);
    background: var(--color-black);
}

.paginate li.active a {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.paginate-note {
    font-size: 20px;
    /*color: #b6b6b6;*/
    color: var(--color-black);
    text-align: center;
    margin-bottom: 45px;
}

.oferta_button_section {
    text-align: center;
    margin-top: 30px;
}

.oferta_button_section .btn-trans {
    border-color: var(--color-red);
    /*width: 100%;*/
    color: var(--color-red);
    margin-top: 30px;
}

.oferta_button_section .btn-trans:hover {
    color: var(--color-white);
}

.payment {
    margin-top: 89px;
    padding-top: 62px;
    padding-bottom: 60px;
}

.payment .h2 {
    margin-bottom: 100px;
}

.payment .iframe {
    width: 100%;
}

.text h3:not(:first-child) {
    margin-top: 1.5em;
}

.traveler-note {
    padding-top: 76px;
    padding-bottom: 57px;
}

.traveler-note .note {
    border: 3px solid var(--color-red);
    padding: 40px 110px 50px;
    margin-top: 110px;
}

#inner .traveler-note .note .h2 {
    color: var(--color-red);
}

.traveler-note .note .h2 {
    font-size: 32px;
    font-weight: normal;
    text-transform: uppercase;
    color: var(--color-red);
    margin-bottom: 24px;
    line-height: 1em;
}

.slider-actions {
    padding-top: 56px;
}

.slider-actions .h2 {
    margin-bottom: 48px;
}

.tours.other-tours {}

#inner .tours.other-tours {
    padding-top: 79px;
}

#inner .tours.other-tours .h2 {
    margin-bottom: 64px;
}

.contacts {
    height: auto;
    position: relative;
    padding-bottom: 60px;
}

.map-bg,
.map-bg:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-bg:after {
    content: '';
    z-index: 4;
    background: rgba(255, 255, 255, .8)
}

.map-bg {
    z-index: 3;
}

.contacts-info {
    padding-top: 30px;
    position: relative;
    z-index: 5;
}

.contacts-map {
    height: 583px;
}

h1,
.h1 {
    font-size: 32px;
    line-height: 1.28em;
    color: var(--color-red);
    font-weight: bold;
    margin-bottom: 50px;
}

.contacts-intro {
    font-weight: normal;
    font-size: 22px;
    line-height: 1.46em;
}

.contacts-form {
    position: relative;
    max-width: 800px;
}

.contacts-form .personal_box,
.order-corp .personal_box {
    margin-top: 0;
}

.contacts-form .social {
    float: left;
    line-height: 60px;
}

.contacts-form .social a:hover svg {
    fill: #97301a;
}

.contacts-form .social svg {
    fill: var(--color-red);
    fill-rule: evenodd;
    vertical-align: middle;
    width: 26px;
    height: 26px;
}

.contacts-form button {
    width: 274px;
}

.req {
    margin-top: 52px;
}

.contacts-info a[href^=tel],
.contacts-intro a {
    text-decoration: none;
    color: var(--color-red);
}

.styled-checkbox {
    display: none;
}

.styled-checkbox__label {
    position: relative;
    cursor: pointer;
}

.styled-checkbox__label::before {
    content: '';
    display: inline-block;
    position: relative;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 20px;
    height: 20px;
    background: #e5e5e5;
    vertical-align: middle;
    margin-right: 0.6em;
    transform: translateY(-2px);
}

.styled-checkbox__label::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    top: 3px;
    left: 5px;
    background: var(--color-red);
    display: none;
}

.no-secondname__wrapper .styled-checkbox__label {
    margin-bottom: 0;
    font-weight: normal;
}

.no-secondname__wrapper {
    display:flex;
    justify-content:space-between
}

.tourist label.styled-checkbox__label {
    padding-left: 28px;
}

.tourist label.styled-checkbox__label::before {
    position: absolute;
    left: 0;
    top: 0;
}

.personal_group .styled-checkbox__label::after {
    top: 1px;
}

.styled-checkbox:checked + .styled-checkbox__label::after {
    display: inline-block;
}

#inner .tours.gallery {
    padding-top: 174px;
    background: var(--color-white);
}

#inner .tours.gallery .h2 {
    margin-bottom: 70px;
}

.filter-button-group {
    text-align: center;
}

.filter-button-group li {
    margin: 0 30px;
    color: var(--color-black);
    border-bottom-color: var(--color-black);
    font-size: 18px;
    cursor: pointer;
}

.filter-button-group li.active,
.filter-button-group li:hover {
    color: var(--color-red);
    border-bottom-color: var(--color-red);
}

.hf,
.stage:not(:first-child) {
    display: none;
}

#Calendar .event {
    /*display: none !important;*/
}

#Calendar .cell {
    position: relative;
    vertical-align: top;
}

.main-image .swiper-button-prev:after,
.main-image .swiper-button-next:after,
.main-image .swiper-button-prev,
.main-image .swiper-button-next,
.red-arrows .swiper-button-prev:after,
.red-arrows .swiper-button-next:after,
.red-arrows .swiper-button-prev,
.red-arrows .swiper-button-next,
.btn-play,
#Calendar .prev a,
.swiper-button-prev:before,
.swiper-button-prev:after,
.btn,
.logo,
.phone,
.social svg {
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

input,
textarea {
    -webkit-border-radius: 0;
    border-radius: 0;
}

textarea {
    resize: none;
}

input,
button,
textarea {
    -webkit-appearance: none;
}

header a[href^=tel] {
    color: var(--color-white);
    text-decoration: none;
}

/* Video */

.homepage-hero-module {
    border-right: none;
    border-left: none;
    position: relative;
}

.no-video .video-container video,
.touchevents .video-container video {
    display: none;
}

.no-video .video-container .poster,
.touchevents .video-container .poster {
    display: block !important;
}

.video-container {
    position: relative;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: var(--color-black);
}

.video-container .poster {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

.video-container .filter {
    z-index: 100;
    position: absolute;
    background-image: radial-gradient(circle at 52% 6%, rgba(255, 255, 255, 0), #033e59);
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    transition: 1s opacity;
}


/* end Video */

.mobile-link-over {
    position: absolute;
    z-index: 50;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.advantages {
    padding-top: 20px;
    padding-bottom: 80px;
}

.advantages .h2 {
    margin-bottom: 60px;
}

.swiper-slide .col-advant {
    width: auto;
    padding-left: 0;
    padding-right: 0;
    float: none;
}

.col-advant {
    width: 20%;
    padding-left: 20px;
    padding-right: 20px;
    float: left;
    text-align: center;
}

.col-advant .d {
    font-size: 150px;
    line-height: 1em;
    font-family: 'AvenirNext-Heavy', sans-serif;
    color: var(--color-red);
    text-shadow: 0 20px 20px rgba(0, 0, 0, .1);
}

.col-advant .desc {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.38em;
    max-width: 200px;
    margin: 12px auto 0;
    color: #525252;
}

.advantages .note {
    margin-top: 80px;
    color: var(--color-red);
    text-align: center;
    font-size: 16px;
}

.individ {
    padding-top: 83px;
    padding-bottom: 63px;
}

.individ .h2 {
    margin-bottom: 55px;
    text-align: left;
}

.text ul {
    list-style-type: none;
}

.text ul li {
    position: relative;
    padding-left: 23px;
}

.text ul li:before {
    content: '';
    position: absolute;
    background: var(--color-red);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    left: 0;
    top: 7px;
}

.text ul li ul li:before {
    border-radius: 0;
    height: 2px;
    top: 11px;
}

.pricelist {
    border: 3px solid var(--color-red);
}

.pricelist .title {
    line-height: 57px;
    background: var(--color-red);
    padding: 0 24px;
    color: var(--color-white);
    font-size: 24px;
    font-weight: bold;
}

.price-text {
    font-size: 18px;
    line-height: 1.67em;
    padding: 20px 21px;
}

.action .offer,
.agent .offer,
.individ .offer {
    color: var(--color-red);
    font-size: 22px;
    line-height: 1.36em;
    text-align: center;
    margin-top: 73px;
}

.f-message {
    width: 800px;
    padding: 30px 20px 20px;
    font-size: 18px;
    text-align: center;
    margin: auto;
    position: relative;
    background-color: var(--color-white);
}

.f-message.success {
    padding-bottom: 80px;
}

.f-message .f1 {
    font-size: 60px;
    line-height: 1em;
    font-weight: bold;
    color: var(--color-red);
    padding-top: 55px;
}

.f-message .f2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1em;
    margin-top: 40px;
}

.f-message .f3 {
    font-size: 16px;
    line-height: 1.2em;
    color: var(--color-red);
    max-width: 490px;
    margin: 40px auto;
}

.f-message .f2 span {
    color: var(--color-red);
}

.f-message .f_buttons {
    margin: 40px auto;
}

.f-message .f_buttons .btn {
    margin-bottom: 20px;
}

.f-message .f_buttons a {
    color: var(--color-black);
}

.fancybox-close-small:focus,
.fancybox-close-small:active {
    outline: none;
}


/*
.fancybox-close-small:after,
.fancybox-close-small:before {
	content: '';
	width: 16px;
	height: 2px;
	background: var(--color-black);
	border-radius: 0;
	position: absolute;
    top: 27px;
    left: auto;
    right: 20px;
    -webkit-transition: background 0.3s;
    -o-transition: background 0.3s;
    transition: background 0.3s;
}
.fancybox-close-small:hover:after,
.fancybox-close-small:hover:before {
	background: #999;
}
.fancybox-close-small:after {
	transform: rotate(45deg);
}
.fancybox-close-small:before {
	transform: rotate(135deg);
}*/

.btn-play {
    width: 70px;
    height: 70px;
    background: var(--color-red);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    /* position: absolute;
	top: 50%;
	left: 50%;
	margin: -35px 0 0 -35px;
	z-index: 128; */
}

.btn-play:after {
    content: '';
    position: absolute;
    border-left: 20px solid var(--color-white);
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    top: 50%;
    left: 50%;
    margin: -14px 0 0 -7px;
}

.btn-play:hover {
    background: #97301a;
}

.traveler {
    position: relative;
}

.traveler .del:after,
.traveler .del:before {
    content: '';
    width: 14px;
    height: 2px;
    background: var(--color-black);
    position: absolute;
}

.traveler .del:after {
    transform: rotate(45deg);
}

.traveler .del:before {
    transform: rotate(-45deg);
}

.traveler .del {
    display: inline-block;
    font-size: 12px;
    color: var(--color-black);
    margin-left: 5px;
    position: relative;
    top: -7px;
    cursor: pointer;
}

.main-image .swiper-button-prev,
.main-image .swiper-button-next,
.red-arrows .swiper-button-prev,
.red-arrows .swiper-button-next {
    background: rgba(255, 255, 255, .5);
    width: 50px;
    height: 50px;
    /*margin-top: -25px;*/
    margin-top: -40px;
}

.main-image .swiper-button-prev:hover,
.main-image .swiper-button-next:hover,
.red-arrows .swiper-button-prev:hover,
.red-arrows .swiper-button-next:hover {
    background: rgba(188, 78, 40, .5);
}

.main-image .swiper-button-prev {
    left: 0;
}

.main-image .swiper-button-next {
    right: 0;
}

.red-arrows .swiper-button-prev {
    left: -80px;
}

.red-arrows .swiper-button-next {
    right: -80px;
}

.main-image .swiper-button-prev:after,
.main-image .swiper-button-next:after,
.red-arrows .swiper-button-prev:after,
.red-arrows .swiper-button-next:after {
    content: '';
    width: 20px;
    height: 20px;
    border-right: 3px solid var(--color-red);
    border-bottom: 3px solid var(--color-red);
    position: absolute;
    top: 15px;
}

.red-arrows .swiper-button-next:after,
.main-image .swiper-button-next:after {
    transform: rotate(-45deg);
    right: 18px;
}

.red-arrows .swiper-button-prev:after,
.main-image .swiper-button-prev:after {
    transform: rotate(135deg);
    left: 18px;
}

.red-arrows .swiper-button-prev:hover:after,
.red-arrows .swiper-button-next:hover:after,
.main-image .swiper-button-prev:hover:after,
.main-image .swiper-button-next:hover:after {
    border-color: var(--color-white);
}

.vk-head {
    text-align: center;
    color: var(--color-white);
    font-size: 22px;
    line-height: 80px;
    background: #5a74a2;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.vk-content {
    background: #ededf0;
    padding: 40px 42px 50px 87px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.vk-t-item {
    border-bottom: 1px solid #bdbdbd;
    padding: 28px 0;
    font-size: 18px;
    overflow: hidden;
    margin-right: 68px;
    position: relative;
}

.vk-t-item:last-child {
    border-bottom: none;
}

.vk-t-item .img {
    float: left;
}

.vk-t-item .userimg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.vk-t-item .vk-t-content {
    margin-left: 150px;
}

.vk-t-item .date {
    float: right;
    color: #b4b9bc;
}

.vk-t-item .text {
    color: #717171;
    font-size: 14px;
}

.vk-t-item .name {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.vk-t-item .name a {
    text-decoration: none;
    color: #5a74a2;
}

.vk-t-item .gallery {
    margin-top: 1.2em;
}

.vk-t-item .gallery img {
    margin-right: 3px;
}

.vk-t-item .hide_testim {
    float: right;
    margin-top: 20px;
}

.vk-content-scroll {
    height: auto;
    max-height: 700px;
    overflow: auto;
}

.vk-content-scroll .jspVerticalBar {
    background: none;
    width: 5px;
}

.vk-content-scroll .jspHorizontalBar {
    background: none;
    height: 5px;
}

.vk-content-scroll .jspTrack {
    background: #cdcdcd;
    border-radius: 3px;
}

.vk-content-scroll .jspDrag {
    background: #6080b9;
    border-radius: 3px;
}

.vk-button {
    text-align: center;
    margin-top: 60px;
}

.vk-button a {
    color: var(--color-white);
}

.btn-vk svg {
    fill: var(--color-white);
}

#personal,
#oferta {
    width: 80%;
}

.paper {
    font-size: 16px;
    padding: 3em;
}

.paper .h2 {
    margin-bottom: 1em;
}

.paper .text-block {
    padding-left: 2.75em;
}

.paper p {
    padding: 0;
    margin: 0 0 .5em;
}

.paper p.form_note {
    margin-bottom: 1.5em;
}

.order-list ol,
.order-list ol ol {
    margin-left: -2.75em;
}

.order-list {
    counter-reset: item;
    padding: 0;
    margin-bottom: 1em;
    list-style-position: inside;
}

.order-list li {
    position: relative;
    display: block;
    padding-left: 2.75em;
    margin-bottom: .5em;
}

.order-list li:before {
    content: counters(item, ".") " ";
    counter-increment: item;
    position: absolute;
    left: 0;
    width: 36px;
    text-align: right;
}

.table {
    width: 100%;
}

.table caption,
.table td,
.table th {
    padding: .25em .5em;
    box-sizing: border-box;
}

.table caption {
    padding: .5em .25em;
}

.table tr:nth-child(even) {
    background: rgba(77, 104, 123, .11);
}

.table__wrap {
    margin: 1.5em 0;
}

th {
    font-weight: bold;
}

.booked {
    position: relative;
}

.booked-tip {
    position: absolute;
    font-size: 14px;
    text-align: center;
    line-height: 40px;
    background: #eaeaea;
    top: -20px;
    left: 50%;
    width: 140px;
    margin-left: -70px;
    border-radius: 20px;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
    opacity: 0;
}

.booked-tip:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    margin-left: -10px;
    border-top: 10px solid #2e2e2e;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.booked:hover .booked-tip {
    top: -44px;
    opacity: 1;
}

.fancy-video .fancybox-bg {
    opacity: 1;
    background: var(--color-black);
}

.agent,
.action {
    padding-top: 95px;
}

.agent {
    padding-bottom: 80px;
}

.agent-block {
    background: var(--color-red);
    height: 320px;
    line-height: 320px;
    font-size: 52px;
    font-weight: bold;
    color: var(--color-white);
}

.agent-text {
    line-height: 1.35em;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 5;
    margin-left: 73px;
}

.agent-block:before {
    content: '%';
    position: absolute;
    z-index: 2;
    font-size: 273px;
    line-height: 1em;
    top: 30px;
    right: 50px;
    color: var(--color-red);
    text-shadow: 0 20px 20px rgba(0, 0, 0, .3);
    font-family: 'AvenirNext-Heavy', sans-serif;
}

.agent .col1,
.agent .col2 {
    margin-bottom: 86px;
}

.agent h2 {
    color: var(--color-black);
    margin-bottom: 1em;
    font-size: 34px;
    font-weight: normal;
}

.action .h2 {
    margin-bottom: 50px;
}

.action .offer {
    margin-top: 55px;
}

.text a {
    color: var(--color-red);
    text-decoration: underline;
}

.text a.btn {
    text-decoration: none;
}

.text a.btn.btn-orange {
    color: var(--color-white);
}

.agent .btn-group {
    margin-top: 40px;
    text-align: center;
}

.agent .btn-group .btn {
    width: 577px;
}

.tour-item .tour-info .more-info {
    display: none;
}

#Calendar .weekend .event {
    color: var(--color-white);
}

#Calendar .event {
    background: none;
    border: none;
    min-height: 0;
    max-height: none;
    min-width: 260px;
    max-width: none;
    width: 260px;
    margin: 0 0 0 -130px;
    overflow: hidden;
    font-size: 14px;
    bottom: 70px;
    left: 50%;
    z-index: 120;
    padding-bottom: 25px;
    font-weight: normal;
}

#Calendar td:last-child .event {
    left: auto;
    right: -10px;
    margin: 0;
}

#Calendar.tpl7 .event,
#Calendar.tpl11 .event,
#Calendar.tpl24 .event {
    display: none !important;
}

#Calendar .event ul {
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 15px 15px 15px 35px;
    line-height: 1.2em;
    background: var(--color-black);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

#Calendar .event ul:after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    margin-left: -10px;
    border-top: 10px solid var(--color-black);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

#Calendar td:last-child .event ul:after {
    left: auto;
    right: 42px;
    margin-left: 0;
}

#Calendar .event ul li:not(:last-child) {
    margin-bottom: 1.2em;
}

#Calendar .event ul li {
    cursor: pointer;
}

#Calendar .event ul li:hover {
    color: #330d00;
}

#Calendar .event ul li i {
    white-space: nowrap;
}

.jq-selectbox.disabled {
    opacity: 0.4;
}

.sim-input {
    /*color: #5d2916;*/
    color: var(--color-white);
    border-bottom: 2px solid var(--color-white);
    font-size: 16px;
    line-height: 30px;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.main-image .swiper-pagination {
    bottom: 30px;
}

.testim-slider .d-slider .cont {
    padding-top: 100px;
}

.red-arrows .swiper-pagination {
    width: 100%;
}

.red-arrows .swiper-pagination-bullet {
    margin: 0 4px;
}

.slider-days-wrapper {
    margin-left: 12px;
    margin-right: 12px;
}

.agentam_form {
    width: 577px;
    margin: 0 auto;
}

.agentam_form .jq-selectbox {
    vertical-align: bottom;
}

.agentam_form input[type=text],
.agentam_form input[type=date] {
    height: 32px;
}

.agentam_form .add-traveler {
    overflow: hidden;
    margin-top: 32px;
}

.agentam_form #travelers {
    width: 100%;
}

.agentam-form-section {
    padding-top: 60px;
}

#inner .agentam-form-section .h2 {
    font-size: 34px;
    line-height: 1.21em;
    color: var(--color-red);
    margin-bottom: 81px;
}

.agentam-form-section .traveler-title {
    color: var(--color-red);
}

.agentam_form input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, .2);
}

.agentam_form input::-moz-placeholder {
    color: rgba(255, 255, 255, .2);
}


/* Firefox 19+ */

.agentam_form input:-moz-placeholder {
    color: rgba(255, 255, 255, .2);
}


/* Firefox 18- */

.agentam_form input:-ms-input-placeholder {
    color: rgba(255, 255, 255, .2);
}

.agentam_form .form-group {
    margin-bottom: 33px;
}

.agentam_form .traveler-form .form-group {
    margin-bottom: 23px;
}

.agentam_form .traveler-form .phone-field {
    margin-top: 0;
}

.agentam_form label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .05em;
    line-height: 40px;
    text-transform: uppercase;
    color: var(--color-white);
}

.agentam_form .add-traveler span.t,
.agentam_form .add-traveler span.ic,
.agentam_form .jq-selectbox__select-text {
    color: var(--color-white);
}

.agentam_form textarea {
    background: #232323;
    height: 81px;
    color: var(--color-white);
}

.agentam_form textarea::-webkit-input-placeholder {
    color: #b5b0b0;
}

.agentam_form textarea::-moz-placeholder {
    color: #b5b0b0;
}


/* Firefox 19+ */

.agentam_form textarea:-moz-placeholder {
    color: #b5b0b0;
}


/* Firefox 18- */

.agentam_form textarea:-ms-input-placeholder {
    color: #b5b0b0;
}

.agentam_form .button-group {
    text-align: center;
}

.agentam_form .btn-white {
    color: #232323;
}

.agentam_new_form input[type=text],
.agentam_new_form input[type=date],
.agentam_new_form .jq-selectbox {
    border-bottom-color: var(--color-red);
    color: var(--color-dark);
    font-weight: normal;
}

.agentam_new_form .jq-selectbox__trigger-arrow {
    border-right-color: var(--color-red);
    border-bottom-color: var(--color-red);
}

.agentam_new_form .info-form {
    margin-bottom: 60px;
}

.agentam_new_form .jq-selectbox__dropdown {
    border: 1px solid #bbb;
}

.tpl-7 .advantages {
    padding-bottom: 0;
}


/* input[type="date"]:before {
	content: attr(placeholder) !important;
	color: #aaa;
	margin-right: 0.5em;
}
input[type="date"]:focus:before,
input[type="date"]:valid:before {
	content: "";
} */

html,
body.height100 {
    height: 100%;
}

.dwl_button {
    margin-left: 110px;
}

.height100 #container {
    position: relative;
    min-height: 100%;
}

.height100 footer {
    width: 100%;
}

.error404 {
    padding-bottom: 100px;
    background: #f34c15 url(../i/404error2.jpg) 50% 0 no-repeat;
    text-align: center;
    min-height: 100vh;
}

.tpl-13 .error404 {
    height: auto;
}

.hf {
    display: none;
}

.error404:after,
.center-content {
    display: inline-block;
    vertical-align: middle;
}

.error404:after {
    width: 0;
    height: 100%;
    content: '';
}

.big-dig .b {
    font-size: 330px;
    font-family: 'ProximaNova', sans-serif;
    color: var(--color-red);
    line-height: 1.1em;
}

.error404 .t {
    color: var(--color-white);
    font-size: 18px;
    max-width: 640px;
    margin: 50px auto;
}

.error404 .d {
    font-size: 40px;
    color: var(--color-white);
    line-height: 1em;
    font-weight: 600;
    position: relative;
    top: -250px;
}

.big-dig {
    position: relative;
    top: 20px;
}

.sitemap {
    text-align: left;
    font-size: 16px;
    padding-top: 30px;
}

.sitemap,
.sitemap ul {
    padding-left: 3em;
}

.sitemap a {
    color: var(--color-white);
}

.gut {
    text-align: left;
}

.gut h2 {
    color: var(--color-red);
    font-size: 34px;
    margin-bottom: 50px;
}

.gut p {
    color: #232323;
    font-size: 18px;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.gut .btn-group {
    margin-top: 60px;
}

.gut .btn-group .btn {
    width: 280px;
    text-transform: uppercase;
}

.error404.id63 {
    background-image: url(../i/success-bg.jpg);
}

.error404.id64 {
    background-image: url(../i/error-bg.jpg);
}

.error404.id64 p {
    color: var(--color-white);
}

.col-payment-text {
    -webkit-column-count: 2;
    column-count: 2;
    -webkit-column-gap: 30px;
    column-gap: 30px;
}

.payment_page {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.payment_page .contacts-form {
    margin-top: 57px;
}

.contacts-form input.sm-input {
    width: 100px;
}

.center-form {
    text-align: center;
}

.contacts-form.center-form .form-group {
    margin-left: auto;
    margin-right: auto;
}

.link-personal {
    color: #111;
    text-decoration: none;
    line-height: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.simple_form .jq-checkbox,
.booking-form .jq-checkbox,
.agentam_form .jq-checkbox {
    background: none;
    border: 1px solid var(--color-red);
}

.simple_form .jq-checkbox .jq-checkbox__div,
.booking-form .jq-checkbox .jq-checkbox__div,
.agentam_form .jq-checkbox .jq-checkbox__div {
    background: #ffc800;
    margin: 4px 0 0 4px;
}

.agentam_form .personal_box {
    color: var(--color-white);
}


/*input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}*/

.contacts-form .link-personal {
    color: var(--color-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.contacts-form .jq-checkbox {
    background: var(--color-white);
    border: 1px solid var(--color-red);
}

.contacts-form .jq-checkbox .jq-checkbox__div {
    background: var(--color-red);
    margin: 4px 0 0 4px;
}

.personal_box {
    margin-top: 20px;
}

.after_submit,
.after_submit_v2,
.after_submit_v3 {
    display: none;
}

#circleG,
.circleG-wrapper {
    width: 34px;
    margin: auto;
    display: inline-block;
}

.circleG {
    background-color: rgb(255, 255, 255);
    float: left;
    height: 6px;
    margin-left: 4px;
    width: 6px;
    animation-name: bounce_circleG;
    -webkit-animation-name: bounce_circleG;
    -moz-animation-name: bounce_circleG;
    animation-duration: 1.2675s;
    -webkit-animation-duration: 1.2675s;
    -moz-animation-duration: 1.2675s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-direction: normal;
    -webkit-animation-direction: normal;
    -moz-animation-direction: normal;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}

#circleG_1,
.circleG_1 {
    animation-delay: 0.2495s;
    -webkit-animation-delay: 0.2495s;
    -moz-animation-delay: 0.2495s;
}

#circleG_2,
.circleG_1 {
    animation-delay: 0.5955s;
    -webkit-animation-delay: 0.5955s;
    -moz-animation-delay: 0.5955s;
}

#circleG_3,
.circleG_1 {
    animation-delay: 0.7585s;
    -webkit-animation-delay: 0.7585s;
    -moz-animation-delay: 0.7585s;
}

@keyframes bounce_circleG {
    0% {}
    50% {
        background-color: rgba(170, 71, 36, 0.98);
    }
    100% {}
}

@-o-keyframes bounce_circleG {
    0% {}
    50% {
        background-color: rgba(170, 71, 36, 0.98);
    }
    100% {}
}

@-ms-keyframes bounce_circleG {
    0% {}
    50% {
        background-color: rgba(170, 71, 36, 0.98);
    }
    100% {}
}

@-webkit-keyframes bounce_circleG {
    0% {}
    50% {
        background-color: rgba(170, 71, 36, 0.98);
    }
    100% {}
}

@-moz-keyframes bounce_circleG {
    0% {}
    50% {
        background-color: rgba(170, 71, 36, 0.98);
    }
    100% {}
}


/* Гиды */

.guides {
    padding-top: 80px;
    padding-bottom: 60px;
}

.guides .container,
.guide {
    padding-left: 12px;
    padding-right: 12px;
}

.guide {
    width: 16.66666667%;
    float: left;
    margin-bottom: 1.6em;
}

.guide,
.buses_item {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.guides_title,
.guides_subtitle,
.section_title,
.section_subtitle {
    line-height: 1.2em;
    text-align: center;
}

.guides_title,
.section_title {
    color: var(--color-red);
    font-size: 2.13em;
    margin-bottom: 0.8em;
}

.guides_subtitle,
.section_subtitle {
    color: var(--color-black);
    font-size: 1.38em;
    margin-bottom: 2.9em;
}

.reviews {
    padding-top: 4.31em;
    padding-bottom: 4.56em;
}

.reviews .section_title,
.reviews .section_subtitle {
    text-align: left;
}

.tpl-17 .reviews {
    padding-top: 60px;
}

.review__text {
    font-size: 16px;
    line-height: 1.4em;
}

.review__text p {
    margin-bottom: 1.4em;
}

.review__name {
    font-size: 20px;
    font-weight: 600;
}

.review__item {
    margin-bottom: 40px;
    padding: 30px;
    border: 1px solid #d6dde3;
    border-radius: 6px;
    background: var(--color-white);
}

.review__col-ava img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}
.review__col-ava {
    width: 110px;
}

.review__row-ava {
    flex-wrap: nowrap;
}

.review__rating {
    margin-top: 15px;
    display: flex;
    align-items: center;
    height: 26px;
}
.rating-star {
    margin-right: 8px;
}
.rating-star svg .cls-1 {
    fill: #d6dde3;
}
.rating-star.active svg .cls-1 {
    fill: #fdcf00;
}
.rating-star svg {
    width: 20px;
    height: 20px;
    transition: all .3s;
    display: inline-block;
    vertical-align: middle;
}
.star-click:hover svg {
    transform: scale(120%);
}
.rating-star-value {
    display: none;
    margin-left: 15px;
    font-weight: 600;
    background: #e6e6e6;
    border-radius: 4px;
    line-height: 1.6em;
    padding: 0 6px;
    color: var(--color-red);
    font-size: 16px;
}
.review__date {
    color: #d6dde3;
}
.review__date-more {
    margin-top: 20px;
    font-size: 16px;
}

.review__more {
    text-decoration: none;
    color: var(--color-red);
}
.review__more span {
    border-bottom: 1px dashed var(--color-red);
}
.review__gallery {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.review__gallery > a {
    margin-right: 10px;
    margin-bottom: 10px;
}
.review__gallery > a img {
    vertical-align: bottom;
    border-radius: 6px;
    width: 100px;
    height: 100px;
}

.show-full-text .review__short-text, 
.review__full-text,
#pdopage-reviews .pagination {
    display: none;
}

.show-full-text .review__full-text {
    display: block;
}

.review__more::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 8px;
    border-right: 2px solid var(--color-red);
    border-bottom: 2px solid var(--color-red);
    transform: rotate(45deg);
    position: relative;
    top: -2px;
}

.show-full-text .review__more::after {
    transform: rotate(225deg);
    top: 4px;
}

.review__no-ava {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #d6dde3;
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.review__no-ava svg {
    width: 75%;
    height: 75%;
}

.review__no-ava .user-cls {
    stroke: #d6dde3;
}

.drop-area {
    border: 3px dashed #d6dde3;
    border-radius: 6px;
    height: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.drop-area__label {
    font-size: 18px;
    margin-bottom: 20px;
    color: #d6dde3;
}

.drop-area__button {
    position: relative;
}

.drop-area__button input {
    position: absolute;
    opacity: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
}

.uploaded-files {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.upl-file {
    width: 100px;
    margin: 0 5px 5px 0;
}
.upl-file .preview-img {
    width: 100%;
    vertical-align: bottom;
}

.upl-file .progress {
    height: 3px;
    background-color: #d6dde3;
}

.upl-file__img-wrap {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-black);
}

.upl-file .progress-bar {
    height: 100%;
}

.bg-primary {
    background-color: var(--color-red);
}

.review-form .form-group {
    margin-bottom: 30px;
}

.guide .name {
    font-size: 1.13em;
    color: var(--color-red);
    margin-bottom: 0.94em;
}

.guide .desc {
    font-size: 0.75em;
    line-height: 1.17em;
}

.guide img {
    vertical-align: bottom;
    width: 100%;
    margin-bottom: 1.38em;
}


/* Автобусы и гостиницы */

.buses_item {
    width: 50%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}

.buses_item img {
    width: 100%;
    vertical-align: bottom;
}

.buses .row {
    margin-left: -20px;
    margin-right: -20px;
}

.buses .container {
    padding-left: 20px;
    padding-right: 20px;
}

.buses {
    padding-top: 4.31em;
    padding-bottom: 4.56em;
}

.buses_item .img {
    position: relative;
    margin-bottom: 2.31em;
    overflow: hidden;
    border-radius: 6px;
}

.buses_item .img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 53%;
    z-index: 2;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.buses_item .img a {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 3;
    left: 0;
    top: 0;
}

.buses_item .img a .linktitle {
    text-align: center;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 3.13em;
    color: var(--color-white);
    width: 7.42em;
    border-top: 3px solid var(--color-red);
    border-bottom: 3px solid var(--color-red);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -3.71em;
    margin-top: -1.56em;
}

.buses_item .img a:hover {
    background: rgba(216, 99, 56, .5);
}

.buses_item .desc {
    line-height: 1.25em;
}


/* Gallery caption */

.fancybox-caption-wrap {
    background: rgba(0, 0, 0, .8);
    padding-top: 0;
    text-align: center;
}


/* Tour video */

.tour-video-intro-cover {
    width: 100%;
    vertical-align: bottom;
    position: relative;
    z-index: 3;
}

.tour-video-intro {
    margin-bottom: 110px;
    position: relative;
}

.tour-video-intro-link {
    vertical-align: bottom;
}

.tour-video-intro .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -35px 0 0 -35px;
    z-index: 5;
}

.tour-video-intro:before {
    content: '';
    position: absolute;
    bottom: 0;
    height: 10px;
    left: 3%;
    right: 3%;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .8);
    box-shadow: 0 0 30px rgba(0, 0, 0, .8);
}

.stages_desc {
	margin-top: 80px;
    font-size: 22px;
    line-height: 1.8em;
    font-weight: 500;
}

.booking_notes {
	margin-top: 80px;
}

.breadcrumbs {
    padding: 20px 0 10px;
    position: relative;
    z-index: 5;
}

.tpl-27 .breadcrumbs {
    padding-bottom: 50px;
}

.breadcrumb {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.breadcrumb a {
    color: var(--color-white);
}

.breadcrumb li {
    display: inline-block;
    font-size: 14px;
    font-weight: normal;
}

.breadcrumb svg {
    margin: -2px 4px 0;
}

.main-image .breadcrumb,
.slider-tours .breadcrumb,
.agentam-form-section .breadcrumb {
    color: var(--color-white);
}

.slider-tours .breadcrumb,
.gallery .breadcrumb,
.agentam-form-section .breadcrumb {
    text-align: center;
    margin-bottom: 15px;
}

.standart-page .breadcrumb a,
.contacts .breadcrumb a,
.gallery .breadcrumb a {
    color: var(--color-black);
}

@keyframes borderChangeColor {
    0% {
        border-color: var(--color-red);
    }
    50% {
        border-color: var(--color-white);
    }
    100% {
        border-color: var(--color-red);
    }
}

.gift-bnr {
    border: 5px solid var(--color-red);
    padding: 20px 25px;
    margin-bottom: 40px;
    background: var(--color-white);
    font-weight: bold;
    color: var(--color-black);
    font-size: 40px;
    line-height: 1.25em;
    text-decoration: none;
    display: block;
    overflow: hidden;
    animation: borderChangeColor 1s infinite;
}

.gift-bnr .icon {
    margin-right: 25px;
    position: relative;
    top: 7px;
}

.gift-bnr .btn {
    float: right;
}

#gift {
    width: 800px;
    padding: 0;
}

#gift .order-corp {
    margin: 2em -3em -3em;
    padding-left: 3em;
    padding-right: 3em;
}

#gift {
    font-size: 18px;
}

#gift .img {
    width: 250px;
    position: relative;
    margin-right: 2em;
    float: left;
}

#gift .img img {
    width: 100%;
    vertical-align: bottom;
}

#gift .img span {
    position: absolute;
    top: 15px;
    left: 0;
    padding: 6px 10px;
    background: var(--color-red);
    color: var(--color-white);
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.05em;
}

#gift .serv_item {
    overflow: hidden;
    margin-bottom: 2em;
}

#gift .serv_item p {
    font-size: 24px;
    line-height: 1.2em;
    margin-bottom: 1.2em;
}

.gift_popup_desc {
    margin-bottom: 50px;
}

.gift_popup_desc p {
    font-size: 20px;
}

.improved_price_section {
    padding-bottom: 70px;
}

.improved_price_section .h2 {
    margin-bottom: 50px;
}

.improved_price_section .btn_group {
    text-align: center;
}

.price_grad,
.price_type {
    margin-bottom: 50px;
}

.price_grad .items,
.price_type .items {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin-left: -15px;
    margin-right: -15px;
    align-items: flex-end;
}

.price_grad .item,
.price_type .item {
    flex: 1 1 10px;
    font-size: 18px;
    line-height: 1.2em;
    padding-left: 15px;
    padding-right: 15px;
    cursor: pointer;
}

.price_type .item {
    max-width: 25%;
}

.price_grad .item {
    max-width: 50%;
}

.product_prices .price_type .items {
    flex-wrap: wrap;
}

.product_prices .price_type .item {
    min-width: 25%;
    margin-bottom: 40px;
}

.price_grad .item .item_wrap {
    background: #f5f5f5;
    border: 2px solid #f5f5f5;
    padding: 15px;
    min-height: 131px;
}

.price_grad .item:hover .item_wrap {
    border: 2px solid var(--color-red);
}

.price_grad .item.active .item_wrap {
    background: var(--color-red);
    border: 2px solid var(--color-red);
    color: var(--color-white);
}

.price_grad .item .item_title,
.price_type .item .item_title {
    font-size: 24px;
    font-weight: bold;
}

.price_grad .item .item_title {
    margin-bottom: 0.5em;
}

.price_grad .item .desc {
    font-size: 16px;
}

.price_type .item .item_title {
    position: relative;
    padding-right: 30px;
    margin-bottom: 5px;
}

.price_type .item .item_title .close {
    position: absolute;
    right: 0;
    top: 0;
    width: 22px;
    height: 22px;
    display: none;
}

.price_type .item.active .item_title .close {
    display: block;
}

.price_type .item .item_title .close:before,
.price_type .item .item_title .close:after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 10px;
    background: var(--color-black);
}

.price_type .item .item_title .close:hover:before,
.price_type .item .item_title .close:hover:after {
    background: var(--color-red);
}

.price_type .item .item_title .close:before {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.price_type .item .item_title .close:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.price_type .item .item_info {
    border: 2px solid #e5e5e5;
    padding: 15px;
    min-height: 127px;
    font-size: 24px;
    margin-top: 10px;
}

.price_type .item.active .item_info {
    border-color: var(--color-red);
}

.price_type .item .item_info .old_price {
    text-decoration: line-through;
    color: #bfbfbf;
    font-size: 20px;
}

.price_type .item .item_info .price,
.price_type .item .item_info .old_price {
    margin-bottom: .5em;
}

.price_type .item .number input[type=number] {
    border: 1px solid #b3b3b3;
    width: 100px;
    font-size: 18px;
    padding: 8px 15px;
}

.price_type .item .number {
    font-size: 14px;
}

.price_type .note {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
}

.note_links {
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.dashed_link {
    text-decoration: none;
    border-bottom: 1px dashed rgba(0, 0, 0, .3);
    color: var(--color-black);
    font-size: 18px;
}

.note_links a {
    text-decoration: none;
    font-size: 18px;
}

.note_links a,
.note_links a:hover {
    color: var(--color-red);
    border-bottom: 1px dashed var(--color-red);
}

.info_popup {
    width: 640px;
}

.fancybox-slide>.info_popup {
    padding: 0;
}

.orange_font {
    color: var(--color-red);
    font-weight: bold;
}

#popup_gift_order_form {
    padding-top: 50px;
    padding-bottom: 50px;
}

#popup_gift_order_form .btn {
    width: 100%;
}

#popup_gift_order_form .h2 {
    margin-bottom: 1.5em;
}

#popup_gift_order_form .button-group {
    padding-top: 0;
}

#popup_gift_order_form .form-group {
    margin-bottom: 0;
    margin-top: 16px;
}

.traveler {
    padding: 20px 20px 0;
    border: 2px solid #111;
    margin-bottom: 20px;
    background: #f5f5f5;
}

.traveler-info {
    margin-bottom: 20px;
    font-size: 18px;
}

.variant_info {
    font-style: italic;
    font-size: 16px;
}

.t_num {
    font-size: 18px;
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 2px solid var(--color-red);
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

#inner .booking .h2 span {
    font-size: 18px;
}

.price_info {
    font-size: 20px;
}

#offer {
    padding: 0;
    width: 600px;
}

.popup_contact {
    width: 400px;
    padding: 0;
}

.popup_contact .contacts-form {
    margin-top: 0;
}

.popup_contact .personal_box {
    position: static;
    width: auto;
    font-size: 14px;
}

.popup_contact .contacts-form .personal_box {
    margin-top: 0;
}

.popup_contact .contacts-form .form-group {
    margin-bottom: 30px;
}

.popup_contact .contacts-form .button-group .btn {
    float: none;
    width: 100%;
}

.text_page {
    padding-top: 40px;
    padding-bottom: 60px;
    line-height: 1.4em;
}

.text_page img {
    max-width: 100%;
}

.text_page ul {
    padding-left: 2em;
}

.text_page a {
    color: var(--color-black);
}

.text_page h1,
.text_page .h1 {
    font-size: 36px;
    margin-bottom: 0.8em;
}

.text_page h2,
.text_page .h2 {
    font-size: 26px;
    color: var(--color-red);
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.text_page p {
    margin-bottom: 1.4em;
}

.tpl-8 .text_page {
    padding-top: 200px;
}

.article-cat-item {
    margin-top: 45px;
}

.article-cat-item h2,
.article-cat-item .h2 {
    margin-bottom: 1em;
}

.breadcrumbs ul {
    margin: 0 0 20px 2px;
    padding-left: 0;
    color: #999;
    font-size: 14px;
}


.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs ul li:nth-last-child(1) {
    color: #999;
}

.breadcrumbs a {
    color: #999;
    border-bottom: 1px solid transparent;
    text-decoration: none;
}

.breadcrumbs a:hover {
    border-bottom: 1px solid #999;
}

.sitemap-link a {
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.sitemap-link a:hover {
    border-bottom-color: var(--color-white);
    color: var(--color-white);
}

.acticle_item {
    display: block;
    text-decoration: none;
    position: relative;
    -webkit-transition: top .3s ease-in-out;
    transition: top .3s ease-in-out;
    top: 0;
}

.acticle_item:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    top: -5px;
}

.acticle_item:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
}

.acticle_item img {
    width: 100%;
    vertical-align: bottom;
}

.acticle_item .title {
    position: absolute;
    color: var(--color-white);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.2em;
    left: 30px;
    bottom: 90px;
}

.acticle_item .more {
    background: 0 0;
    border: 2px solid var(--color-white);
    line-height: 38px;
    color: var(--color-white);
    text-align: center;
    position: absolute;
    bottom: 25px;
    left: 25px;
    font-size: 12px;
    letter-spacing: .1em;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    width: 160px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.acticle_item:hover .more {
    border-color: var(--color-red);
}

.acticle_item:hover .more:hover {
    color: var(--color-white);
    background: var(--color-red);
}

.main-image .title h1,
.main-image .title .h1 {
    color: var(--color-white);
    margin-bottom: 0;
    font-size: 32px;
}

.traveler .passport_input {
    margin-top: 15px;
}

.traveler input[type="date"] {
    height: 30px;
    font-size: 18px;
    background: 0 0;
    color: var(--color-white);
    border: none;
    border-bottom: 2px solid var(--color-white);
    width: 100%;
    font-family: 'ProximaNova', sans-serif;
}


/*SkyKa*/

.mobile-menu ul li ul {
    position: absolute;
    display: none;
    left: 0;
    background-color: white;
    width: auto;
    height: auto;
    top: 27px;
    padding: 12px 0 5px;
}

.mobile-menu ul li:hover ul {
    display: block;
}

.mobile-menu ul li ul li {
    white-space: nowrap;
    width: 100%;
    padding: 0 5px;
}

.mobile-menu ul li ul li a {
    padding: 0;
}

.mobile-menu ul li ul li a:after {
    display: none;
}

.mobile-menu ul li ul li a span.title {
    max-width: unset;
}

.mobile-menu ul li ul li a span.ic {
    display: none;
}

.mobile-menu ul>li {
    position: relative;
}

.iti__country-name {
    color: var(--color-black);
}

.paper {
    background-color: white;
}

.popup_contact .contacts-form .form-group {
    text-align: left;
}

.popup_contact .contacts-form .form-group .iti {
    width: 100%;
}

.contacts-form .link-personal {
    display: inline;
}

.contacts-form .oferta_link {
    color: var(--color-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    display: inline;
}

.popup_contact .contacts-form .personal_box {
    text-align: left;
}

.info_popup p {
    text-align: left;
}

.info_popup .h2 {
    font-size: 100%;
}

.text ul li {
    text-align: left;
}

.tour-block-left .tour--header .h5 a {
    overflow: hidden;
    max-height: 57px;
}

.as_product .tour-block-left {
    width: 200px;
}

#msg_pop {
    background-color: rgb(70, 70, 70);
    display: none;
    position: fixed;
    z-index: 99999;
    bottom: 20px;
    right: 20px;
    width: 250px;
    padding: 10px;
    color: var(--color-white);
    font-size: 13px;
    line-height: 13px;
    -webkit-box-shadow: 0 0 10px #999;
    box-shadow: 0 0 10px #999;
    -webkit-border-radius: 15px;
    border-radius: 15px;
}

.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: 0.4s;
    -webkit-animation-duration: 0.4s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

#container {
    position: relative;
}

.warning {
    background: #1f75fe;
    padding: 0 30px;
    height: 44px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-decoration: none;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
}

#msg_close {
    margin-top: 2px;
    float: right;
    display: block;
    position: absolute;
    top: 5px;
    right: 10px;
    line-height: 15px;
    width: 16px;
    height: 16px;
    margin-bottom: 10px;
    text-align: center;
    color: var(--color-white);
    cursor: pointer;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

#msg_content_div {
    display: flex;
}

#msg_content_div i {
    font-size: 35px;
    margin-right: 10px;
}

#msg_content_div p {
    margin-top: 3px;
}

.excurs_program {
    margin-top: 100px;
    margin-bottom: 50px;
}

.textcontent {
    font-size: 18px;
    line-height: 1.4em;
}

.textcontent p:not(:last-child) {
    margin-bottom: 1.4em;
}

.feedback-content {
    padding-top: 31px;
}

.feedback-content h2 {
    font-size: 24px;
    line-height: 1.21em;
    margin-bottom: 1.21em;
    font-weight: bold;
}

.feedback-content p {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.4em;
    color: #111111;
    margin-bottom: 1.4em;
}

.feedback-content ul {
    margin-bottom: 1.4em;
}

.feedback-content ul li {
    margin-bottom: .5em;
    position: relative;
    padding-left: 1em;
}

.feedback-content ul li:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--color-red);
    border-radius: 50%;
}

.tours-list-tpl .feedback-content h2 {
    margin-bottom: 1.21em;
}

.gallery_items {
    margin-left: -15px;
    margin-right: -15px;
    display: flex;
    flex-wrap: wrap;
}

.gallery_items .item {
    padding-left: 15px;
    padding-right: 15px;
    flex: 0 0 20%;
    max-width: 20%;
}

.gallery_items .item img {
    width: 100%;
    vertical-align: bottom;
}

.quick_book {
    position: fixed;
    top: 50%;
    right: 0;
    width: 44px;
    height: 240px;
    background-color: #d5eb49;
    font-size: 16px;
    font-weight: normal;
    color: var(--color-black);
    margin-top: -125px;
    cursor: pointer;
    z-index: 999;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.quick_book span {
    transform: rotate(-90deg);
    position: absolute;
    left: 0;
    bottom: 0;
    transform-origin: 0 0;
    line-height: 45px;
    white-space: nowrap;
}

.rules_text {
    font-size: 12px;
    padding: 15px 0 0;
    border-top: 1px solid #737373;
    margin-top: 15px;
}

.vyezd_table {
    border-collapse: collapse;
}

.vyezd_table td,
.vyezd_table th {
    font-size: 14px;
    padding: 10px 15px;
    border: 1px solid #bbb;
}

.vyezd_table td {
    vertical-align: top;
}

.vyezd_table th {
    color: var(--color-white);
    font-weight: 600;
    font-size: 13px;
}

.places_table i {
    font-style: normal;
    display: inline-block;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
}

.places_table td i.green {
    background: green;
    color: var(--color-white);
}

.places_table td i.red {
    background: red;
    color: var(--color-white);
}

.places_table td i.yellow {
    background: yellow;
}

.places_table td.wd {
    text-align: center;
}

.places_table td.wd a {
    text-decoration: none;
}

.places_table span {
    font-size: 13px;
    display: block;
    white-space: nowrap;
    margin-top: 3px;
}

.places_table th span {
    font-weight: normal;
    margin-top: 0;
}

.vyezd_table th {
    background: rgba(0, 0, 0, .3)
}

.vyezd_table th.wd_6,
.vyezd_table th.wd_0 {
    background: var(--color-red);
}

.vyezd_table td.wd_6,
.vyezd_table td.wd_0 {
    background: rgba(224, 32, 32, .3);
}


/*.tpl-10 #container .main-image {
	height: 200px;
    min-height: 200px;
}*/

.adv_tour {
    margin-top: 40px;
}

.adv_tour:first-child {
    border-right: 3px solid #ccc;
}

.adv_tour .h2 {
    text-align: left;
}

.advantages .adv_tour .h2 {
    margin-bottom: 40px;
}

.advantages .adv_tour_row {
    display: flex;
}

.tour-item:hover .title--category {
    opacity: 1;
}

.title--category {
    bottom: 130px !important;
}

.category-image {
    max-height: 340px !important;
}

.it--category {
    position: absolute !important;
    color: var(--color-white) !important;
    bottom: 100px;
    left: 35px;
    display: flex !important;
    align-items: center;
    z-index: 5;
}

.it--category img {
    margin-right: 10px;
}

.traveler-total {
    display: none;
}


/* ex merged css */

body {
    height: 100%;
    min-width: 320px;
    margin: 0 auto;
    position: relative;
    font-family: "ProximaNova", sans-serif;
    font-size: 14px;
    line-height: 1.2;
    overflow-x: hidden;
    background-color: #EAEAEA;
    padding-top: var(--header-height);
}

body a:hover,
body a:focus,
body a:active {
    text-decoration: none;
    outline: none;
}

body input:focus,
body input:active {
    text-decoration: none;
    outline: none;
}

body button:focus,
body button:active {
    text-decoration: none;
    outline: none;
}

body textarea:focus,
body textarea:active {
    text-decoration: none;
    outline: none;
}

body a {
    display: inline-block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

body ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body button {
    border: none;
    cursor: pointer;
}

body hr {
    border: none;
}

a {
    color: inherit;
    font-size: inherit;
}

.tours-list-tpl a {
    text-decoration: none;
}


/***************************************************GeneralStyles************************************/

.transition-opt {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.btn--white a,
.btn--orange a {
    background-color: #ffc800;
    border: 1px solid var(--color-white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: var(--color-black);
    text-decoration: none;
}

.btn--orange a {
    border: 1px solid #E46537;
    background-color: #E46537;
    color: var(--color-white);
}

.btn--orange a:hover {
    background-color: transparent;
}

.hidden {
    display: none;
}

.semi-header {
    font-weight: 600;
}

.orange-header {
    color: var(--color-red);
}

.bold-header {
    font-weight: bold;
}

.black-header {
    color: var(--color-black);
}

header {
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 180;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    padding: 0;
}

header,
.mobile-menu {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mobile-menu.header-hidden,
header.header-hidden {
    top: -127px;
}

.top-row {
    height: 45px;
    background-color: var(--color-light-grey);
    font-size: 14px;
}

.top-row .row,
.top-row .container {
    height: 100%;
}

.top-row a {
    color: #1E1E1E;
    text-decoration: none;
}

.top-row a:hover {
    color: var(--color-red);
}

.top-row ul {
    list-style-type: none;
    display: flex;
    align-items: center;
}

.top-row__menu {
    display: block;
    font-weight: bold;
}

.top-row__menu li {
    margin-right: 1em;
}

.auxiliary-menu {
    display: block;
    align-items: center;
    justify-content: flex-end;
}

.auxiliary-menu li,
.auxiliary-menu a {
    display: inline-flex;
    align-items: center;
}

.auxiliary-menu li svg {
    vertical-align: middle;
    margin-right: 4px;
}

.top-row__right-menu .auxiliary-menu li {
    margin-left: 1em;
}

.top-row__right-menu .auxiliary-menu li:first-child {
    font-weight: bold;
}

.mobile-menu .auxiliary-menu {
    padding-top: 24px;
    padding-bottom: 24px;
    border-bottom: none;
}

.mobile-menu .auxiliary-menu li:first-child {
    margin-bottom: 10px;
}

.mobile-menu .auxiliary-menu li:not(:first-child) {
    font-size: 18px;
}

.mobile-menu .auxiliary-menu li svg path {
    fill: #828282;
}

.col_logo {
    margin-right: auto;
}

.first-row {
    width: 100%;
    height: 82px;
    background-color: var(--color-red);
}

.first-row .container,
.first-row .row {
    height: 100%;
}

.first-row .row {
    --bs-gutter-x: 30px;
}

.logo_image {
    position: relative;
    vertical-align: middle;
}

.logo-text {
    margin-left: 23px;
}

.logo-text span {
    display: block;
    color: var(--color-white);
}

.logo-text span:first-child {
    font-weight: bold;
    font-size: 16px;
    line-height: 1.4em;
}

.logo-text span:last-child {
    font-size: 14px;
    line-height: 1.4em;
}

.header-phone {
    text-align: right;
    color: var(--color-white);
}

.header-phone span {
    display: block;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.17em;
}

.header-phone p {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.36em;
    color: var(--color-white);
}

.fa {
    font-size: 22px;
    line-height: 1em;
    color: var(--color-white);
}

.soc-icons {
    display: flex;
    align-items: center;
}

.soc-icons a {
    margin-right: 9px;
}

.soc-icons a:last-child {
    margin-right: 0;
}

.soc-icons a:hover {
    opacity: 0.7;
}

.sse-search {
    position: relative;
    width: 168px;
    font-weight: normal;
}

.sse-search input {
    width: 100%;
    height: 40px;
    border: 1px solid var(--color-white);
    border-radius: 6px;
    background-color: transparent;
    padding: 0 50px 0 18px;
    color: var(--color-white);
    font-family: "ProximaNova", sans-serif;
    font-size: 14px;
    box-sizing: border-box;
}

.sse-search input::-webkit-input-placeholder {
    color: #C2C2C2;
    font-family: "ProximaNova", sans-serif;
    font-size: 14px;
}

.sse-search input::-moz-placeholder {
    color: #C2C2C2;
    font-family: "ProximaNova", sans-serif;
    font-size: 14px;
}

.sse-search button {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 0;
    top: 0;
    background-color: transparent;
    border-radius: 0;
}

.btn_s {
    padding: 0 16px;
    height: 40px;
    background: var(--color-yellow);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    font-weight: 600;
    color: var(--color-dark);
    font-family: "ProximaNova", sans-serif;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}

/* Main menu */
.main-menu {
    background-color: var(--color-white);
    width: 100%;
    height: auto;
}

.main-menu>ul,
.main-menu>ul>li,
.main-menu>ul>li>a,
.main-menu>ul>li>.a {
    display: flex;
}

.main-menu>ul>li>a,
.main-menu>ul>li>.a {
    align-items: center;
    line-height: 1em;
}

.main-menu>ul {
    justify-content: space-between;
    width: 100%;
    height: 55px;
}

.main-menu>ul>li {
    padding: 0 8px;
    position: relative;
    font-size: 14px;
    height: 100%;
}

.main-menu>ul>li:hover {
    background: #eaeaea;
}

.main-menu a {
    color: var(--color-black);
}

.main-menu ul ul li a:hover {
    color: var(--color-red);
}

.main-menu-container .btn--orange {
    display: none;
}

.main-menu li.active .title {
    color: var(--color-red);
}

/* Drop-down menu */
.down_menu {
    width: auto;
    max-height: 0;
    position: absolute;
    z-index: 100;
    left: 0;
    top: 55px;
    opacity: 0;
    overflow: hidden;
    background-color: #eaeaea;
    transition: all 0.3s;
    box-sizing: border-box;
    font-size: 14px;
    box-shadow: 0 3px 3px rgba(0,0,0,.15);
}

.down_menu ul {
    height: auto;
    padding: 25px;
}

.down_menu li {
    display: block;
    float: none;
    border: none;
    padding: 0;
    margin: 0 0 17px;
    height: auto;
    top: 0;
}

.down_menu li:last-child {
    margin-bottom: 0;
}

.down_menu a {
    font-weight: normal;
    padding: 0;
    -webkit-transition: none;
    transition: none;
    display: block;
    white-space: nowrap;
}

.down_menu a:hover {
    font-weight: normal;
}

/* Fast search form */
.fast-form-section {
    position: absolute;
    bottom: 36px;
    left: var(--main-image-content-padding);
    right: var(--main-image-content-padding);
    z-index: 6;
}

.fast-form-section .tab-links {
    display: flex;
}

.fast-form-section .tab-links li {
    padding: 12px 16px 19px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.2;
    font-size: 1rem;
    margin-right: 5px;
    background: #F5F5F6;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.fast-form-section .tab-links li.active,
.fast-form-section .tab-boxes {
    background: var(--color-white);
}

.fast-form-section .tab-boxes {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
}

.fast-form {
    --bs-gutter-x: 0;
}

.fast-form .form-group {
    padding: 10px 16px 16px;
    position: relative;
    margin-bottom: 0;
}

.fast-form .form-group_button {
    padding: 0;
}

.fast-form label {
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    color: #828282;
}

.fast-form .form-control,
.fast-form .ts-control input,
.fast-form__input {
    color: var(--color-dark);
    font-size: 16px;
    height: 37px;
    display: inline-block;
    width: auto;
    line-height: 1.4em;
    font-weight: 400;
}

.fast-form .ts-control {
    color: var(--color-dark);
    font-size: 16px;
    line-height: 1.4em;
    padding: 0;
    border: 0;
    display: flex;
    flex-wrap: nowrap;
}

.fast-form .ts-control .item {
    line-height: 37px;
    white-space: nowrap;
}

.fast-form .ts-wrapper.plugin-remove_button:not(.rtl) .item .remove {
    border-left: 0;
    overflow: hidden;
    text-indent: -999px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    right: 0;
    background: url(../i/icon-remove.svg) no-repeat 50%;
}

.fast-form .form-group .calendar-icon {
    width: 20px;
    height: 20px;
    right: 16px;
    top: 22px;
    position: absolute;
    z-index: 3;
}

.fast-form .form-group .daterange-wrap {
    top: -1px;
}

.fast-form .ts-dropdown {
    font-size: 16px;
    border-radius: 0 0 6px 6px;
    white-space: nowrap;
    overflow: hidden;
}

.daterange-wrap {
    position: relative;
}

.fast-form__input {
    border: 0;
}

.fast-form__button {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-yellow);
    font-family: "ProximaNova", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.fast-form__button.disabled {
    background: rgb(239, 239, 239);
    color: #666;
}

.tours-founded {
    color: #828282;
    margin-right: 16px;
    line-height: 34px;
}

.price-tours-note {
    background: #FFDFDD;
    border-radius: 6px;
    color: var(--color-dark);
    line-height: 34px;
    padding: 0 12px;
}

.price-tours-note svg {
    vertical-align: middle;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.tours-note-line {
    padding-top: 24px;
    padding-bottom: 11px;
}

/* new page tours styles */
.simplesearch-paging {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.breadcrumbs li {
    display: inline-block;
}

.breadcrumbs a {
    font-weight: normal;
    font-size: 14px;
    color: var(--color-dark);
}

.breadcrumb>.active {
    color: var(--color-grey);
}

.breadcrumbs svg path {
    fill: var(--color-dark);
}

.main-image .breadcrumbs a {
    color: var(--color-white);
}

.main-image .breadcrumbs svg path {
    fill: var(--color-white);
}

.main-image .breadcrumb>.active {
    color: var(--color-grey2);
}

#inner.tours-list-tpl .tours {
    padding-top: 0;
    background: transparent;
}

fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

.filter-block {
    border-radius: 6px;
    background-color: var(--color-white);
    margin-bottom: 12px;
}

.tours-filters {
    margin-top: 10px;
}

.black-header {
    color: var(--color-black);
}

.tours-list-tpl h4,
.tours-list-tpl .h4 {
    font-size: 18px;
    font-weight: 600;
}

.filter--header {
    font-size: 18px;
    width: 100%;
    position: relative;
    cursor: pointer;
    padding: 9px 12px;
    font-weight: 600;
}

.tab--header {
    font-size: 18px;
    width: 100%;
    height: 50px;
    border-bottom: 1px solid #f1f1f1;
    position: relative;
    cursor: pointer;
    padding-left: 18px;
}

.filter--header .h4,
.tab--header .h4 {
    line-height: 50px;
    margin: 0;
}

.filter--header i,
.tab--header i {
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 14px;
    color: #999;
    font-size: 14px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.filter--header i svg {
    vertical-align: middle;
}

.filter_content {
    height: auto;
    position: relative;
}

.filter_content ul {
    padding: 11px 20px 0 12px;
}

.filter_content li {
    margin-bottom: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
}

.filter_content li label,
.styled-checkbox + label {
    position: relative;
    padding-left: 24px;
    cursor: pointer;
}

.filter_content li label:before,
.styled-checkbox + label:before {
    content: '';
    width: 16px;
    height: 16px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    top: 1px;
    left: 0;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-background-size: cover;
    background-size: cover;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12.4444 2.81482H3.55554C3.14644 2.81482 2.81479 3.14647 2.81479 3.55557V12.4445C2.81479 12.8536 3.14644 13.1852 3.55554 13.1852H12.4444C12.8535 13.1852 13.1852 12.8536 13.1852 12.4445V3.55557C13.1852 3.14647 12.8535 2.81482 12.4444 2.81482ZM3.55554 1.33334C2.32824 1.33334 1.33331 2.32827 1.33331 3.55557V12.4445C1.33331 13.6718 2.32824 14.6667 3.55554 14.6667H12.4444C13.6717 14.6667 14.6666 13.6718 14.6666 12.4445V3.55557C14.6666 2.32827 13.6717 1.33334 12.4444 1.33334H3.55554Z' fill='%23828282'/%3E%3C/svg%3E");
}

.filter_content li input:checked + label:before,
.styled-checkbox:checked + label:before {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.33331 3.55557C1.33331 2.32827 2.32824 1.33334 3.55554 1.33334H12.4444C13.6717 1.33334 14.6666 2.32827 14.6666 3.55557V12.4445C14.6666 13.6718 13.6717 14.6667 12.4444 14.6667H3.55554C2.32824 14.6667 1.33331 13.6718 1.33331 12.4445V3.55557Z' fill='%23F7C945'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.7537 5.14925C12.0395 5.38143 12.0829 5.8013 11.8508 6.08705L7.51742 11.4204C7.39351 11.5729 7.20864 11.663 7.01218 11.6665C6.81572 11.6701 6.62768 11.5869 6.49829 11.439L4.16496 8.77233C3.9225 8.49524 3.95058 8.07406 4.22767 7.83161C4.50476 7.58915 4.92594 7.61723 5.16839 7.89432L6.98113 9.96602L10.8159 5.24626C11.0481 4.96051 11.468 4.91707 11.7537 5.14925Z' fill='white'/%3E%3C/svg%3E");
}

.styled-checkbox {
    display: none;
}

.filter_content li:hover {
    color: var(--color-red);
}

.filter_submenu li a {
    color: var(--color-dark);
    display: inline-block;
    margin-bottom: 5px;
}

.tours-search input {
    width: 100%;
    height: 36px;
    border: 1px solid #f1f1f1;
    border-radius: 30px;
    background-color: transparent;
    padding: 0 50px 0 15px;
    font-size: 14px;
    color: var(--color-dark);
    font-family: "ProximaNova", sans-serif;
}

.tours-search .t-search-btn {
    width: 36px;
    height: 36px;
    line-height: 36px;
    background-color: var(--color-red);
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 13px;
    text-align: center;
}

.tours-search .t-search-btn:before {
    content: "\f002";
    font-family: FontAwesome, serif;
    color: var(--color-white);
}

.tours-search {
    width: 100%;
    height: 62px;
    border-radius: 6px;
    background-color: var(--color-white);
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 13px 12px;
    color: #999;
    font-family: "ProximaNova", sans-serif;
    font-size: 12px;
}

.tours-wrapper {
    margin-top: 10px;
}

.filter_content li input,
.filter_content li .jq-radio {
    display: none;
}

.popular_tours .tour_mobile_img img,
.vertical-item .tour_mobile_img img {
    width: 100%;
    vertical-align: bottom;
}

.popular_tours .tour_mobile_img a,
.vertical-item .tour_mobile_img a,
.popular_tours .tour_mobile_img,
.vertical-item .tour_mobile_img {
    display: block;
}

.tpl-33 .popular_tours .tour_block_main,
.tpl-33 .vertical-item .tour_block_main,
.tpl-7 .vertical-item .tour_block_main,
.tpl-1 .vertical-item .tour_block_main,
.tpl-42 .vertical-item .tour_block_main {
    height: 414px;
}

.tpl-33 .popular_tours {
    padding-bottom: 70px;
}

.tour-block {
    height: auto;
    background-color: var(--color-white);
    position: relative;
    -webkit-box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
    border-radius: 6px;
}

.tpl-1 .tour-block,
.tpl-42 .tour-block {
    margin-bottom: 30px;
}

.fix-border {
    border-radius: 6px 6px 0 0;
}

.tour_block_main {
    width: 100%;
    height: 258px;
    position: relative;
}

.popular_tours .tour_block_main,
.vertical-item .tour_block_main {
    height: 400px;
    display: flex;
    flex-direction: column;
}

.tour-block-left {
    width: 231px;
    float: left;
    padding-top: 13px;
    padding-left: 22px;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.popular_tours .tour-block-left,
.vertical-item .tour-block-left {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 18px;
    width: auto;
    float: none;
    flex: 1;
}

.tour--header {
    margin-bottom: auto;
}

.tour--header .h5 {
    color: var(--color-red);
    font-size: 16px;
    line-height: 1.2em;
    margin-bottom: 5px;
    font-weight: bold;
    min-height: 38px;
}

.tour--header .h5 a {
    color: var(--color-red);
    overflow: hidden;
    max-height: 57px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.tour--header p {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.2em;
    color: var(--color-black);
    overflow: hidden;
    margin-bottom: 0;
    width: auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.slide_link {
    display: block;
    text-align: right;
    padding-right: 18px;
}

.popular_tours .tour--header .slide_link,
.vertical-item .tour--header .slide_link {
    position: absolute;
    bottom: 18px;
    left: 20px;
}

.tour-block .slide_link {
    text-align: left;
}

.tour-block-left span {
    font-weight: 600;
    font-size: 12px;
    color: #bdbdbd;
}

.tour-block .slide_link span,
.tour--header span {
    font-weight: normal;
    font-size: 12px;
    color: var(--color-red);
    border-bottom: 1px dashed var(--color-red);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.tour--header span:after {
    content: "\f078";
    font-family: FontAwesome, serif;
    font-size: 6px;
    margin-left: 4px;
}

.date-price {
    position: absolute;
    bottom: 15px;
}

.popular_tours .date-price,
.vertical-item .date-price {
    position: static;
    margin-bottom: 13px;
}

.date-price .date {
    margin-top: 8px;
    background-image: url(../i/clock.svg);
    background-repeat: no-repeat;
    background-position: 0 1px;
}

.date-price .price {
    margin-top: 8px;
    background-image: url(../i/price.svg);
    background-repeat: no-repeat;
    background-position: 0 1px;
}

.date-price .calendar {
    margin-top: 8px;
    background-image: url(../i/calendar.svg);
    background-repeat: no-repeat;
    background-position: 0 1px;
    background-size: 15px;
}

.date-price span {
    font-weight: bold;
    font-size: 16px;
    color: var(--color-black);
    padding-left: 20px;
}

.date-price i {
    font-style: normal;
    text-decoration: line-through;
}

.popular_tours .tour-block-right,
.vertical-item .tour-block-right {
    height: 0;
    float: none;
    width: auto;
    position: static;
}

.tour-block-right .sticker {
    position: absolute;
    top: 10px;
    right: 0;
    padding: 5px;
    background-color: #520090;
    border-bottom-left-radius: 6px;
    border-top-left-radius: 6px;
    color: white;
    font-size: 12px;
}

.tour-block-right img {
    border-radius: 0 6px 6px 0;
}

.popular_tours .tour-block-right img,
.vertical-item .tour-block-right img {
    display: none;
}

.vertical-item .tour-block-right .sticker-logo {
    display: block;
}

.btn--tour {
    width: 120px;
    height: 30px;
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    margin: auto;
}

.popular_tours .btn--tour,
.vertical-item .btn--tour {
    right: 20px;
    left: auto;
    width: auto;
}

.btn--white a,
.btn--orange a {
    background-color: #ffc800;
    border: 1px solid var(--color-white);
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    line-height: 40px;
    color: var(--color-black);
}

.btn--tour a {
    width: 100%;
    line-height: 30px;
    font-size: 14px;
}

.popular_tours .btn--tour a,
.vertical-item .btn--tour a {
    padding-left: 20px;
    padding-right: 20px;
}

.vertical-item .tour_mobile_img {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    overflow: hidden;
    flex: 0 0 144px;
    position: relative;
}

.tour_about {
    width: 100%;
    height: 282px;
    background-color: #f1f1f1;
    position: absolute;
    z-index: 1000;
    top: 258px;
    left: 0;
    display: none;
    border-radius: 0 0 6px 6px;
}

.vertical-item .tour_about {
    height: auto;
    top: 100%;
    -webkit-box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
    box-shadow: 0 10px 10px rgb(0 0 0 / 10%);
}

.tour_about_content {
    height: 220px;
    overflow-y: auto;
    padding: 12px 50px 12px 22px;
    margin: 10px 0;
}

.popular_tours .tour_about_content,
.vertical-item .tour_about_content {
    margin-top: 0;
    height: auto;
}

.tour_about_content .about_content_block {
    margin-top: 10px;
    margin-bottom: 26px;
}

.popular_tours .tour_about_content .about_content_block,
.vertical-item .tour_about_content .about_content_block {
    margin-bottom: 0;
}

.tour_about_bottom {
    height: 40px;
}

.tour_about_bottom span {
    font-weight: normal;
    font-size: 12px;
    color: #999;
    border-bottom: 1px dashed #999;
    float: left;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    padding-top: 7px;
    margin-left: 22px;
    cursor: pointer;
}

.tour_about_bottom a {
    font-weight: bold;
    font-size: 14px;
    color: var(--color-red);
    text-transform: uppercase;
    float: right;
    margin-right: 25px;
    margin-top: 7px;
    display: inline-block;
}

/*.filter_col,
.filters-container,
.tours_col,
.filters-container .vertical-item {
    padding-right: 10px;
    padding-left: 10px;
}

.filters-container .row {
    margin-right: -10px;
    margin-left: -10px;
}*/

.tours-wrapper .row {
    --bs-gutter-y: 1.5rem;
}

.yell-arrows .swiper-button-next,
.yell-arrows .swiper-button-prev {
    background: rgba(255, 255, 255, .8);
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-top: -25px;
}

.yell-arrows .swiper-button-next:before,
.yell-arrows .swiper-button-prev:before {
    content: '';
    width: 24px;
    height: 24px;
    transform: rotate(-45deg);
    border-right: 2px solid #ffc800;
    border-bottom: 2px solid #ffc800;
    position: absolute;
    top: 50%;
    margin-top: -13px;
    left: 8px;
}

.yell-arrows .swiper-button-prev:before {
    transform: rotate(135deg);
    left: auto;
    right: 8px;
}

.popular_tours {
    padding-top: 50px;
}

.popular_tours_title {
    font-size: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.tabs {
    min-height: 500px;
    padding-top: 38px;
    padding-bottom: 50px;
}

.nav-tabs {
    height: 50px;
    background-color: #f1f1f1;
    border-radius: 6px 6px 0 0;
    border-bottom: none;
    font-size: 16px;
}

.tours-list-tpl .nav-item {
    line-height: 50px;
    text-align: center;
    font-size: 14px;
    color: #9d9d9d;
    text-transform: uppercase;
    margin: 0;
    cursor: pointer;
}

.nav-tabs .active {
    color: var(--color-red);
    background-color: var(--color-white);
    border-right: 2px solid #f2f0f2;
}

.nav-item:hover {
    color: var(--color-red);
    background: #fafafa;
}

.tab-content>.tab-pane,
.pill-content>.pill-pane {
    display: block;
}

.tab-content>.tab-pane {
    display: none;
    visibility: hidden;
}

.tab-content>.active {
    display: block;
    visibility: visible;
}

.tab-content>.active,
.pill-content>.active {
    height: auto;
}

.tabs--header {
    padding-left: 100px;
    padding-right: 100px;
    display: block;
    text-align: center;
    padding-bottom: 30px;
}

.tabs--header .h3 {
    font-size: 24px;
    line-height: 48px;
    margin-bottom: 0;
}

.tabs--header span {
    font-weight: normal;
    font-size: 14px;
}

.slider-guides-wrapper {
    width: auto;
    border-top: 1px solid #f1f1f1;
    padding-top: 31px;
}

.tour_mobile_img,
.main-menu-container .btn--orange,
.mobile-details {
    display: none;
}

.tours-list-tpl .nav-item {
    margin: 0;
}

.col-day-img img,
.guide-block img {
    border-radius: 6px;
}

.guide-block .guide-name {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--color-red);
    margin-top: 1.2em;
    display: block;
}

.guide-block .guide-name a {
    color: var(--color-red);
}

.guide-block .guide-desc {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.4em;
    color: #111;
    margin-top: 0.5em;
    padding-right: 0;
}

.guide-block .guide-desc .more {
    display: block;
    color: var(--color-red);
    text-decoration: underline;
}

.slider-guides-wrapper .slider-guides {
    width: auto;
    margin: 0 auto;
}

.slider-guides-tour .swiper-container {
    padding-bottom: 50px;
}

.slider-guides-wrapper .slick-prev {
    width: 14px;
    height: 24px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    margin-left: -61px;
    left: 0;
    z-index: 100;
    background-image: url(../../kg2/img/arr-left.svg);
    background-repeat: no-repeat;
    background-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.slider-guides-wrapper .slick-next {
    width: 14px;
    height: 24px;
    position: absolute;
    top: 50%;
    margin-top: -12px;
    margin-right: -64px;
    right: 0;
    z-index: 100;
    background-image: url('../../kg2/img/arr-right.svg');
    background-repeat: no-repeat;
    background-color: transparent;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    content: '';
}

.red-arrows {
    position: relative;
}

.our-bus {
    width: 900px;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
}

.our-bus a {
    margin-bottom: 20px;
}

.bus-image {
    width: 160px;
}

.change-hotel {
    text-align: center;
}

.change-hotel a {
    width: 130px;
    height: 36px;
    font-weight: normal;
    font-size: 14px;
    line-height: 36px;
    color: #111;
    border: 1px solid var(--color-red);
    border-radius: 20px;
    text-align: center;
    display: inline-block;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin: 0 10px;
    cursor: pointer;
}

.change-hotel .change_active,
.change-hotel a:hover {
    background-color: var(--color-red);
    color: var(--color-white);
}

.change-hotel p {
    margin-top: 20px;
    padding: 0 100px;
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
}

.hotel-slider {
    width: 900px;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 20px auto 0;
    display: none;
    -webkit-transition: all 1s;
    transition: all 1s;
    padding-bottom: 40px;
}

.hotel-slider.active-hotel-slider {
    display: block;
}

.hotel-block {
    width: 280px !important;
    height: 230px;
    border-radius: 6px;
    margin: 0 auto;
    display: block !important;
    overflow: hidden;
}

.hotel-block img {
    width: 100%;
    height: 180px;
    border-radius: 6px 6px 0 0;
    vertical-align: bottom;
}

.hotel-block .bottom_line {
    width: 100%;
    height: 50px;
    background-color: #f1f1f1;
    border-radius: 0 0 6px 6px;
    background-repeat: no-repeat;
    background-position: right 20px center;
    font-weight: bold;
    font-size: 14px;
    line-height: 50px;
    color: #111;
    padding-left: 20px;
}

.hotel-block:hover .bottom_line {
    cursor: pointer;
    background-color: var(--color-red);
    background-image: url('../../kg2/img/bottom.svg');
    background-position: right 20px center;
    color: var(--color-white);
}

.transition-opt {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.form-feedback {
    width: 100%;
    height: 280px;
    background-color: var(--color-white);
    padding-top: 35px;
}

.ff--header .h3 {
    font-size: 24px;
    line-height: 48px;
    text-align: center;
    margin-bottom: 3px;
}

.ff--header p {
    font-weight: normal;
    font-size: 14px;
    line-height: 20px;
    color: #111;
    text-align: center;
    padding: 0 120px;
}

.feedback-form {
    margin: 44px auto 0;
    display: flex;
    width: 1012px;
}

.form-group {
    margin-bottom: 20px;
}

.feedback-form input {
    width: 100%;
    height: 40px;
    border: 1px solid #c4c4c4;
    color: #999;
    font-family: "ProximaNova", sans-serif;
    font-size: 16px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 17px;
    padding: 0 19px;
    -webkit-appearance: none;
}

.feedback-form input:hover {
    border: 1px solid #777;
}

.feedback-form input.error {
    border-color: #f00;
}

.feedback-form button {
    width: 240px;
    height: 40px;
    border: 1px solid var(--color-red);
    background-color: transparent;
    border-radius: 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    cursor: pointer;
}

.feedback-form button:hover {
    background-color: #ffc800;
    color: var(--color-white);
}

footer a:hover {
    color: var(--color-white);
}

.tours-list-tpl .btn-orange {
    background: var(--color-red);
    border: 2px solid var(--color-red);
    color: var(--color-white);
}

.slick-dots {
    position: absolute;
    right: 188px;
    top: 69%;
    width: 160px;
    height: 40px;
    background-color: rgba(219, 99, 56, 0.8);
    border-radius: 30px;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
}

.slick-dots button {
    width: 8px;
    height: 8px;
    background-color: var(--color-white);
    border-radius: 50%;
    opacity: 0.5;
    padding: 0;
    margin: 15px 4px;
}

.slick-dots .slick-active button {
    opacity: 1;
}

.active-filter i,
.tab--header i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.tour-video-intro-link img {
    vertical-align: bottom;
    width: 100%;
}

.site-tours-table {
    padding-bottom: 80px;
}

.site-tours-table .form-check {
    display: flex;
    align-items: center;
}

.site-tours-table .jq-checkbox .jq-checkbox__div {
    margin: 4px 0 0 4px;
}

.simplesearch-result-pages {
    margin-right: 10px;
}

.simplesearch-highlight {
    background: rgba(255, 200, 0, .5);
}

.news-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
}

.news-gallery-grid .grid-item a {
    height: 100%;
    width: 100%;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.news-gallery-grid .grid-item {
    margin: 0;
}

.news-gallery-grid .grid-item:first-child {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.news-gallery-grid .grid-item:nth-child(n+6) {
    display: none;
}

.news-gallery {
    padding-bottom: 80px;
}

.news-gallery-grid .grid-item:nth-child(5) a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.news-gallery-grid .grid-item:nth-child(5) a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .75);
    z-index: 5;
}

.more-photo {
    position: relative;
    z-index: 6;
}

.col_guide_item {
    margin-bottom: 50px;
}

.list_page {
    padding-top: 60px;
}

/* share */

.fa-new {
    color: #999;
}

.share {
    width: 170px;
    height: 40px;
    display: block;
    border-radius: 15px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #f5f5f5;
    color: #999999;
    padding: 0 13px 0 13px;
    cursor: pointer;
    line-height: 40px;
}

.share strong {
    padding: 0 15px 0 10px;
    float: left;
}

.share .count-wrap {
    float: right;
    margin-right: 10px;
}

.share strong {
    display: block;
}

.share .link {
    display: none;
    float: left;
}

.share:hover strong {
    display: none;
}

.share:hover .link {
    display: inline-block;
}

.ya-share2__container_size_m .ya-share2__counter {
    font-size: 12px;
    line-height: 24px;
    padding: 0 8px;
}

.ya-share2,
.ya-share2 * {
    line-height: normal;
}

.ya-share2__container_size_m {
    font-size: 26px;
}

.ya-share2__list {
    display: inline-block;
    vertical-align: top;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.ya-share2__container_size_m .ya-share2__item {
    margin: 0 0 0;
}

.ya-share2__list_direction_horizontal>.ya-share2__item {
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    margin-bottom: 0;
}

.ya-share2 ul li {
    padding-left: 5px !important;
    margin-top: 0 !important;
}

.ya-share2__container_size_m .ya-share2__item a {
    margin-top: -6px;
    display: block;
}

.share .link a {
    border-bottom-color: transparent;
    margin-left: 5px;
    vertical-align: middle;
}

.share .link a i {
    vertical-align: middle;
}

.share .link a:hover i {
    color: #DB6338;
}

.article-col {
    margin-bottom: 40px;
}

.filters-container .row.mse2_number_inputs {
    --bs-gutter-x: 0;
    margin: 0 12px;
}

.mse2_number_inputs .form-group {
    margin-bottom: 0;
    padding: 5px 16px;
    background: #f5f5f6;
}

.mse2_number_inputs .form-group span {
    line-height: 30px;
}

.mse2_number_inputs .form-group:first-child {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-right: 2px solid var(--color-light-grey);
}

.mse2_number_inputs .form-group:last-child {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

#mse2_filters .filter-block .mse2_number_slider {
    font-size: 0;
    border: none;
    height: 2px;
    margin: 27px 24px 37px 16px;
    background: #FAFAFA;
}

#mse2_filters .filter-block .ui-slider-handle {
    width: 20px;
    height: 20px;
    border: none;
    background: var(--color-white);
    border-radius: 50%;
    top: -9px;
    box-shadow: 0 0 9px rgba(0,0,0,.1);
    outline: none;
}

#mse2_filters .filter-block .ui-slider-handle:last-child {
    margin-left: -9px;
}

#mse2_filters .filter-block .ui-slider-handle:nth-child(2) {
    margin-left: -4px;
}

#mse2_filters .filter-block .ui-slider-handle:after,
#mse2_filters .filter-block .ui-slider-handle:before {
    content: "";
    width: 8px;
    height: 8px;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    position: absolute;
    background: var(--color-yellow);
}

#mse2_filters .filter-block .ui-slider-range {
    background: var(--color-yellow);
}

#mse2_filters .mse2_number_inputs label {
    display: flex !important;
    color: #828282;
}

.mse2_number_inputs input {
    border: 0;
    width: 100px;
    color: var(--color-dark);
    font-family: "ProximaNova", sans-serif;
    font-size: 16px;
    text-align: left;
    height: 30px;
    vertical-align: middle;
    padding-left: 10px;
    padding-right: 10px;
    background: transparent;
}

.main-image__ship {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 0.5em;
}

.main-image__ship span {
    font-size: 32px;
    font-weight: bold;
}

.main-image__breadcrumb {
    margin-bottom: 24px;
}

.main-image__slider .container {
    padding-left: var(--main-image-content-padding);
    padding-right: var(--main-image-content-padding);
}

.route {
    font-size: 24px;
    background: var(--color-white);
    padding: 1em 0;
}

.route-short-desc {
    padding: 50px 0;
}

.cruise-section-h3 {
    font-size: 2.13em;
    margin-bottom: 0.92em;
}

.route-short-desc__text {
    font-size: 18px;
    line-height: 1.4;
}

.schedule {
    background: var(--color-white);
    padding: 50px 0;
}

.schedule__note {
    border: 3px solid var(--color-red);
    padding: 20px 25px;
    font-size: 18px;
    margin-bottom: 50px;
}

.schedule .note_links {
    margin-top: 50px;
}

.schedule__days-links {
    list-style-type: none;
    padding: 0;
}

.schedule__day-button {
    background-color: var(--color-white);
    font-weight: bold;
    text-align: center;
    color: var(--color-black);
    padding: 10px 30px;
    font-size: 20px;
    border: 2px solid var(--color-black);
    cursor: pointer;
    transition: all .3s;
}

.schedule__day-link.active .schedule__day-button,
.schedule__day-button:hover {
    background-color: #ffc800;
    border: 2px solid #ffc800;
}

.day-box {
    margin-top: 80px;
}

.day-box__icon .cls-1 {
    fill: var(--color-red);
}

.day-box__icon {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.day-box__icon svg {
    display: inline-block;
    margin-right: 15px;
}

.day-box__icons {
    margin-bottom: 30px;
}

.cruise-gallery__slide img,
.day-box__gal-thumb img {
    vertical-align: bottom;
    width: 100%;
}

.day-box__gal-thumb {
    margin-bottom: 20px;
    cursor: pointer;
    border: 2px solid transparent;
}

.day-box__gal-thumb.active {
    border: 2px solid var(--color-red);
}

.day-box__desc {
    margin-top: 50px;
}

.excursion-item {
    background: rgba(255, 200, 0, .2);
    padding: 1.5em 2em;
    margin-bottom: 2em;
}

.text h4 {
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.cruise_variats {
    padding-top: 50px;
    padding-bottom: 50px;
}

.cruise_variats h4 {
    margin-bottom: 1em;
    font-size: 20px;
    font-weight: bold;
}

.deck_tablinks,
.rooms_tablinks {
    display: flex;
}

.rooms_tablinks {
    align-items: flex-start;
}

.deck_tablinks li {
    margin-right: 15px;
    padding: 10px 20px;
    border-top: 1px solid #666;
    border-left: 1px solid #666;
    border-right: 1px solid #666;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}

.deck_tablinks li.active {
    background: var(--color-white);
    border-color: #5a74a2;
    position: relative;
    z-index: 5;
    border-bottom: 1px solid white;
}

.decks {
    border: 1px solid #666;
    position: relative;
    z-index: 2;
    top: -1px;
}

.deck {
    padding: 40px 30px;
    background: var(--color-white);
}

.deck__image {
    margin-bottom: 30px;
    max-width: 100%;
}

.rooms_tablinks li {
    margin-right: 20px;
    padding: 5px 10px;
    border: 1px solid #666;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: all .3s;
}

.rooms_tablinks li:hover,
.rooms_tablinks li.active {
    background: #5a74a2;
    border-color: #5a74a2;
    color: var(--color-white);
}

.seat-price {
    font-size: 24px;
    font-weight: bold;
    line-height: 30px;
}

.cruise-booking {
    background: var(--color-white);
    padding: 50px 0;
}

.cruise-booking-form .personal_group {
    padding: 20px 0 30px;
}

.day-box__short-desc {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 1em;
}

.rooms-gallery-wrap {
    margin-top: 50px;
}

.rooms-gallery .swiper-slide img {
    max-width: 100%;
    vertical-align: bottom;
}

.deck__col-button {
    padding-top: 30px;
}

.cruise-ticket {
    border: 1px solid #666;
    font-size: 16px;
    padding: 15px 50px 15px 15px;
    margin-bottom: 30px;
    position: relative;
}

.cruise-ticket__desc,
.cruise-ticket__type {
    margin-bottom: 7px;
}

.cruise-ticket__close {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.cruise-ticket__close:before,
.cruise-ticket__close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: -3px;
    width: 21px;
    height: 1px;
    background: var(--color-black);
}

.cruise-ticket__close:before {
    transform: rotate(45deg)
}

.cruise-ticket__close:after {
    transform: rotate(-45deg)
}

.cruise-ticket__close:hover:before,
.cruise-ticket__close:hover:after {
    background: var(--color-red);
}

.schedule__cruise-depart span {
    font-weight: normal;
}

.schedule__cruise-depart {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 2em;
}

.booking-new #Calendar .date {
    width: 50px;
    height: 50px;
    display: flex;
    line-height: normal;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.cell__price {
    font-size: 0.8em;
    color: #111;
    text-align: center;
    margin-top: 5px;
    height: 18px;
}

.cell__price_old {
    opacity: 0.5;
    text-decoration: line-through;
}

.cell__price.early {
    color: #900;
}

/* .noevent .cell__price {
    display: none;
} */

.selected-tour {
    width: 100%;
    border: 1px solid #e6e6e6;
    border-radius: 0.375rem;
    overflow: hidden;
}

.selected-tour__date {
    width: 100px;
    padding: 10px;
    text-align: center;
    background-color: #e6e6e6;
}

.selected-tour__date-d {
    font-size: 22px;
}

.selected-tour__tourname {
    padding-left: 30px;
    padding-right: 15px;
    flex: 1;
    font-size: 16px;
}

.selected-tour__price {
    font-weight: 600;
    font-size: 16px;
    padding-right: 30px;
    padding-left: 15px;
}

.selected-tour__button {
    padding-left: 15px;
    padding-right: 15px;
}

.booking-new__section {
    margin-top: 50px;
}

.booking-new__section span.error {
    color: var(--color-red);
}

.booking-new__section h4 {
    font-size: 20px;
    margin-bottom: 1em;
}

.booking-new__age {
    height: auto;
    color: var(--color-black);
    font-size: 16px;
    padding: 10px 32px 10px 24px;
    border-radius: 30px;
    text-align: center;
    cursor: pointer;
    border: 2px solid #ffc800;
}

.booking-new__age strong {
    font-weight: 600;
}

.booking-new__age:hover {
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
}

.booking-new__age i {
    font-weight: bold;
    font-style: normal;
    font-size: 20px;
}

.booking-new__age-pricing {
    display: inline-flex;
}

.booking-new__age-oldprice {
    text-decoration: line-through;
    opacity: 0.5;
    margin-right: 6px;
}

.accordion-item {
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
}


/*
.accordion .ui-accordion-header-icon {
    position: absolute;
    background: none;
    width: 22px;
    height: 22px;
    right: 40px;
    top: 32px;
    border-bottom: 2px solid var(--color-black);
    border-right: 2px solid var(--color-black);
    transform: rotate(45deg);
}
.accordion.ui-accordion .ui-accordion-header {
    margin: 29px 0 0;
    font-size: 18px;
    font-weight: bold;
    padding: 0 35px;
    line-height: 83px;
    height: 83px;
}*/

.collapse:not(.show) {
    display: none;
}

.accordion-body {
    padding: 1rem 1.25rem;
}

.accordion-item {
    background-color: var(--color-white);
    border: 2px solid #ffc800;
    overflow: hidden;
}

.accordion-item:first-of-type {
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
}

[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled),
button:not(:disabled) {
    cursor: pointer;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    color: #212529;
    text-align: left;
    background-color: var(--color-white);
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    transition: transform .2s ease-in-out;
}

.booking-new__section h4.accordion-header {
    margin-bottom: 0;
}

.tourist label {
    cursor: pointer;
}

.tourist .tourist__add-price i {
    color: #509f56;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
}

.tourist__adds .row {
    margin-left: -10px;
    margin-right: -10px;
}

.tourist__add-checkbox {
    display: flex;
    margin-right: auto;
}

.tourist__add-checkbox .jq-radio {
    margin-right: 10px;
    flex: 1 0 auto;
}

.tourist__content h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tourist__adds {
    margin-bottom: 2rem;
}

.tourist__add-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f7f7f7;
    border-radius: 0.375rem;
}

.tourist__add-item.disabled {
    opacity: 0.4;
}

.tourist__add-item.disabled * {
    cursor: default;
}

.tourist__add-price {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    margin-left: 0.8em;
}

.tourist__add-price_old {
    text-decoration: line-through;
    opacity: 0.6;
}

.tourist__remove {
    color: var(--color-red);
    text-decoration: none;
    border-bottom: 1px dashed var(--color-red);
}

.tourist__remove:hover {
    text-decoration: none;
}

.tourist__old_price {
    font-weight: normal;
    text-decoration: line-through;
    opacity: 0.5;
}

.tourist__icon {
    max-width: 18px;
    max-height: 18px;
    margin-right: 12px;
}

.tourist__icon path {
    fill: var(--color-red)
}

.tourist__price-str {
    margin-left: 30px;
    font-size: 16px;
    line-height: 1.3em;
    transform: translateY(1px);
}

.accordion-button:not(.collapsed) {
    background-color: #f7f7f7;
    box-shadow: inset 0 -1px 0 rgb(0, 0, 0, .13);
    font-weight: 600;
}

input.small-input,
textarea.small-input,
select.small-input,
.jq-selectbox.small-input,
.regular-input {
    border: 1px solid #e6e6e6;
    border-radius: 0.375rem;
    padding: 0.65rem 1rem;
    background-color: #f7f7f7;
    font-size: 0.875rem;
    height: auto;
    color: var(--color-dark);
    font-family: 'ProximaNova', sans-serif;
    font-weight: 300;
}

.regular-input {
    width: 100%;
}

.regular-input_on-red {
    appearance: none;
    border: 1px solid var(--field-border);
    background: var(--field-bg);
    color: var(--field-text);
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, transform .05s ease;
}

.regular-input_on-red::placeholder {
    color: var(--placeholder);
    font-family: 'ProximaNova', sans-serif;
}

.regular-input_on-red:focus {
    border-color: var(--focus);
    box-shadow: 0 0 0 4px var(--focus-shadow);
}

.middle-width-form {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 40px 20px;
    background: var(--panel-bg);
    border: 1px solid var(--panel-border);
    -webkit-border-radius: 6px;
    border-radius: 6px;
}

.jq-selectbox.small-input {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.small-input .jq-selectbox__dropdown {
    left: 0;
}
.small-input .jq-selectbox__dropdown ul {
    background-color: #f7f7f7;
    border: 1px solid #e6e6e6;
}
.small-input .jq-selectbox__dropdown ul li:hover {
    background-color: #e8e8e8;
}

.small-input .jq-selectbox__trigger-arrow {
    border-right-color: #999;
    border-bottom-color: #999;
}

.star-click {
    cursor: pointer;
}

.iti--allow-dropdown input.small-input {
    padding-left: 52px;
}

.booking-new__contacts label,
.tourist__data label,
.tourist__adds h6,
.control-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.tourist__adds h6 svg {
    width: 18px;
    height: 18px;
    margin-right: 0.5em;
    vertical-align: bottom;
}

.req,
.red {
    color: var(--color-red);
}

.tourist__data .row {
    --bs-gutter-x: 20px;
}

.tourist__data .form-group {
    margin-bottom: 1rem;
}

.booking-new__ages {
    margin-left: -15px;
    margin-right: -15px;
}

.booking-new__age-item {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 1rem;
}

.booking-new__tourists {
    margin-bottom: 30px;
}

.accordion-button::after {
    border-right: 2px solid #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
    width: 1rem;
    height: 1rem;
    transform: rotate(225deg);
    position: relative;
    top: 4px;
    right: 4px;
}

.accordion-button.collapsed::after {
    transform: rotate(45deg);
    top: -4px;
}

.is-customer-item {
    margin-left: 50px;
    font-weight: normal;
}

.tourist__data .is-customer-item label {
    font-weight: normal;
}

.group-customer {
    display: none;
}

.booking-new__contacts {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 20px;
}

.booking-new__contacts .iti {
    display: block;
}

.result-info {
    background-color: #f7f7f7;
    border-radius: 0.375rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    position: sticky;
    top: 140px;
}

.result-info__row {
    margin-bottom: 1rem;
}

.result-info__value {
    font-weight: 600;
}

.booking-new__contacts .form-group {
    margin-bottom: 0;
}

.result-info__total {
    font-size: 1.125rem;
    padding-top: 0.5rem;
    border-top: 2px solid #e6e6e6;
    font-weight: 600;
}

.result-info__button:not(:last-child) {
    margin-bottom: 15px;
}

.result-info input[type=text][name=phone].small-input {
    padding-left: 2.875rem;
}

.result-info .personal_group {
    font-size: 12px;
    line-height: 1.5em;
    margin-top: 0.6em;
}

.result-info .link-personal,
.result-info .oferta_link {
    display: inline;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    text-decoration: none;
}

.result-info .jq-checkbox {
    margin-right: 0.6em;
}

.pay-booking-button {
    display: inline-flex;
    align-items: center;
}

.pay-booking-button:after {
    content: '';
    width: 60px;
    height: 24px;
    display: inline-block;
    margin-left: 15px;
    background: url(../i/cards.svg);
}

.sticker-logo {
    max-width: 80px;
    max-height: 50px;
    position: absolute;
    left: 10px;
    bottom: 10px;
}

.tour-sticker-logo {
   max-width: 200px;
   max-height: 140px;
   margin-right: 40px;
}

.jq-checkbox.no-secondname {
    margin-right: 0.5em;
}

.programs-for-groups {
    padding-top: 60px;
    padding-bottom: 100px;
}
.programs-classes {
    border-collapse: collapse;
    margin-bottom: 30px;
    width: 100%;
}
.programs-classes td,
.programs-classes th {
    vertical-align: baseline;
    padding: 20px 30px;
    font-size: 18px;
    border: 1px solid var(--color-red);
}
.programs-classes th {
    background-color: var(--color-red);
    color: var(--color-white);
}
.programs-classes td:first-child,
.programs-classes th {
    font-weight: bold;
}
.programs-classes td:first-child {
    width: 30%;
}
.programs-classes td {
    background: var(--color-white);
}
.tpl-58,
.tpl-57 {
    background-color: var(--color-white);
}

.standart-page {
    padding-top: 60px;
    padding-bottom: 80px;
}

.trip-results {
    position: relative;
}

.trip-results.loading::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, .5);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.old-price {
    opacity: 0.5;
    text-decoration: line-through;
}

.smart-captcha {
    margin-bottom: 20px;
}

.paper .smart-captcha {
    height: 102px !important;
    margin-top: 20px;
}

.error_smart-token div.error {
    margin-bottom: 20px;
    color: var(--color-red);
}

.checkbox-styled {
    display: none;
}
.checkbox-styled + label {
    position: relative;
    padding-left: 1.5em;
}



.checkbox-styled + label::before,
.checkbox-styled + label::after {
    content: '';
    position: absolute;
    background: #e5e5e5;
}

.checkbox-styled + label::before {
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
}

.checkbox-styled + label::after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
}

.checkbox-styled:checked + label::after {
    background: var(--color-red);
}

.dropdown-menu li {
    white-space: nowrap;
    margin-bottom: 7px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.form-group_tourist-contact {
    display: none;
}

.is-customer-item-another {
    margin-bottom: 20px;
}

.btn-filter-set {
    width: 40px;
    height: 40px;
    background-color: var(--color-white);
    border: 1px solid var(--color-yellow);
    -webkit-border-radius: 6px;
    border-radius: 6px;
    margin-left: 8px;
}