@font-face {
    font-family:'title-font';
    src: url('../fonts/title-font.woff2') format('woff2'),
		url('../fonts/title-font.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-stretch: normal;
    unicode-range: U+0020-2044;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.gray-section {
    background-color: #E7FDF2;
}

@media (max-width: 767px) {
    .flex-row div[class^="col"] {
        width: 100%;
    }
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html {
    height: 100%;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #212121;
    background-color: #fff;
    min-width: 320px;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
}

body.locked {
    overflow: hidden;
}

.index-page .main-header .main-logo {
    display: none;
}

.index-page .main-header .logo-lg {
    display: block!important;
}

.index-page .main-header .container {
    padding-left: 250px;
}

a,
button {
    cursor: pointer;
}

a {
    color: #126A57;
}

picture {
    display: block;
    width: 100%;
    height: 100%;
}

table {
    border-collapse: collapse;
}

p {
    margin: 0 0 15px;
}

img {
    max-width: 100%;
}

@media (min-width: 1399px) {
    body {
        font-size: 16px;
    }
}

.title-group {
    text-align: center;
    margin-bottom: 45px;
}

.title-group.main-title {
    margin-top: 30px;
    margin-bottom: 40px;
}

.title-group h1,
.title-group .h1 {
    font-size: 38px;
    margin: 0 0 15px;
}

.main-title h1,
.main-title .h1 {
    font-family: 'title-font', 'Roboto', Arial;
    color: #2C9B88;
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .title-group h1,
    .title-group .h1 {
        font-size: 28px;
    }
}

.select-container {
    position: relative;
    display: flex;
    align-items: center;
}

.select-container .select-label {
    font-size: 14px;
    color: #555;
    margin-right: 10px;
}

.select-container .select-button {
    background-color: #fff;
    border: 1px solid #C2C2C2;
    cursor: pointer;
    font-size: 14px;
    padding: 0 25px 0 10px;
    box-shadow: none;
    height: 40px;
    width: 190px;
    position: relative;
    text-align: left;
    outline: 0;
    display: flex;
    align-items: center;
    border-radius: 3px;
}

.select-container .select-button:focus {
    border: 1px solid #2C9B88;
}

.select-container .select-button span {
    display: block;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-container .select-button:after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    top: calc(50% - 3px);
    right: 9px;
    border-top: 6px solid #333;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transform-origin: center;
    transition: 0.3s;
}

.select-container .select-button.is-active {
    border: 1px solid #2C9B88;
}

.select-container .select-button.is-active:after {
    transform: rotate(180deg);
}

.select-container .select-dropdown {
    list-style: none;
    width: 190px;
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    padding: 0;
    margin: 0;
    z-index: 8;
    max-height: 300px;
    overflow: auto;
    z-index: 100;
    background-color: #fff;
    border: 1px solid #C2C2C2;
    border-radius: 3px;
}

.select-container .select-dropdown li {
    position: static;
    padding: 0;
}

.select-container .select-dropdown li:before {
    display: none;
}

.select-container .select-dropdown li a {
    display: block;
    border: 0;
    line-height: 1.4;
    width: 100%;
    text-decoration: none;
    padding: 8px 12px;
    color: #121212;
    font-size: 14px;
}

.select-container .select-dropdown li a:hover {
    color: #fff;
    background-color: #2C9B88;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.pagination>li {
    margin: 0 5px 10px;
    display: flex;
    align-items: center;
}

.pagination>li>a,
.pagination>li>span {
    border: 1px solid #C7C9D9;
    border-radius: 3px;
    padding: 8px 15px;
    color: #121212;
    font-weight: 500;
}

.pagination>li>a:hover,
.pagination>li>span:hover,
.pagination>li>a:focus,
.pagination>li>span:focus {
    color: #fff;
    background-color: #2C9B88;
    border-color: #2C9B88;
}

.pagination>.active>a, 
.pagination>.active>span, 
.pagination>.active>a:hover, 
.pagination>.active>span:hover, 
.pagination>.active>a:focus, 
.pagination>.active>span:focus {
    background-color: #2C9B88;
}

@media (max-width: 575px) {

    .pagination>li>a,
    .pagination>li>span {
        font-size: 13px;
        padding: 8px 10px;
    }
}

.panel-group {
    margin-bottom: 40px;
}

.panel-group .panel {
    border: 0;
    box-shadow: none;
}

.panel-group .panel+.panel {
    margin-top: 10px;
}

.panel-default>.panel-heading {
    background-color: transparent;
    padding: 0;
}

.panel-title>a {
    display: block;
    padding: 13px 60px 13px 13px;
    font-weight: 400;
    position: relative;
    background-color: #ddeafc;
    border-radius: 5px;
    line-height: 1.4;
}

.panel-title>a:before {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    top: calc(50% - 9px);
    right: 15px;
    background: url(../img/icons/plus-icon.svg) no-repeat center;
    background-size: contain;
    transform-origin: center;
    transition: 0.25s;
    transform: rotate(45deg);
}

.panel-title>a.collapsed {
    background-color: #EFF3F8;
}

.panel-title>a.collapsed:before {
    transform: rotate(0);
}

.panel-title>a:hover,
.panel-title>a:focus {
    text-decoration: none;
    outline: 0;
}

.panel-default>.panel-heading+.panel-collapse .panel-body {
    border-top: 0;
}

.panel-default .panel-body ul {
    padding-left: 20px;
}

@media (max-width: 1700px) {
    .panel-title>a {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .panel-body {
        padding: 15px 5px;
    }
}

.btn-primary {
    background-color: #2C9B88;
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.25s;
    padding: 5px;
}

.btn-primary:hover {
    background-color: #218e7b;
    text-decoration: none;
}

.btn-primary:focus,
.btn-primary:active {
    box-shadow: 0 0 0 3px #d5f0e3;
    background-color: #218e7b;
}

.btn-danger {
    border: 0;
    background-color: #F1A225;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.25s;
    outline: 0;
}

.btn-danger:focus,
.btn-danger:hover {
    background-color: #d9880a;
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #2C9B88;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.25s;
    padding: 5px;
}

.btn-outline:hover {
    background-color: #2C9B88;
    text-decoration: none;
    color: #fff;
}

.btn-outline:focus,
.btn-outline:active {
    box-shadow: 0 0 0 3px #9ab5d9;
    background-color: #071a2a;
}

.table-link {
    padding: 10px 0;
}

.table-link a {
    padding: 10px 25px;
    background-color: #db2020;
    color: #fff;
    margin: 10px 0 0 0;
}

.table-link a:hover {
    background-color: #ff0d0d;
}

.form-group label {
    margin-bottom: 1px;
    font-weight: 500;
}

.form-control {
    border: 1px solid #C2C2C2;
    box-shadow: none;
    height: 42px;
    transition: 0.2s;
}

.red_line .form-control {
    border-color: #f00;
}

.red_line .help-block {
    color: #f00;
}

.red_line .form-check-label:before {
    border-color: #f00;
}

.form-control.red_line,
.form-control.red {
    border-color: #f00;
}

.form-control:focus {
    border-color: #2C9B88;
    box-shadow: 0 0 0 3px #c9dbf3;
}

.iti__flag {
    background-image: url("../img/flags/flags.png");
}

.iti.form-control {
    padding: 0;
    border: 0;
}

select.form-control {
    padding-right: 26px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDgiIGhlaWdodD0iNjciIHZpZXdCb3g9IjAgMCA0OCA2NyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTI2LjgyMzkgNjUuODM5M0MyNS4yNjIgNjcuMzg2OSAyMi43MjU1IDY3LjM4NjkgMjEuMTYzNiA2NS44MzkzTDEuMTcxNDIgNDYuMDNDLTAuMzkwNDcyIDQ0LjQ4MjQgLTAuMzkwNDcyIDQxLjk2OSAxLjE3MTQyIDQwLjQyMTRDMi43MzMzMSAzOC44NzM4IDUuMjY5ODIgMzguODczOCA2LjgzMTcxIDQwLjQyMTRMMjQgNTcuNDMyN0w0MS4xNjgzIDQwLjQzMzhDNDIuNzMwMiAzOC44ODYyIDQ1LjI2NjcgMzguODg2MiA0Ni44Mjg2IDQwLjQzMzhDNDguMzkwNSA0MS45ODE0IDQ4LjM5MDUgNDQuNDk0NyA0Ni44Mjg2IDQ2LjA0MjNMMjYuODM2NCA2NS44NTE3TDI2LjgyMzkgNjUuODM5M1oiIGZpbGw9IiM5MTkxOTEiLz4KPHBhdGggZD0iTTIxLjE3NjEgMS4xNjA3QzIyLjczOCAtMC4zODY5MDEgMjUuMjc0NSAtMC4zODY5MDEgMjYuODM2NCAxLjE2MDdMNDYuODI4NiAyMC45N0M0OC4zOTA1IDIyLjUxNzYgNDguMzkwNSAyNS4wMzEgNDYuODI4NiAyNi41Nzg2QzQ1LjI2NjcgMjguMTI2MiA0Mi43MzAyIDI4LjEyNjIgNDEuMTY4MyAyNi41Nzg2TDI0IDkuNTY3MjlMNi44MzE3MSAyNi41NjYyQzUuMjY5ODIgMjguMTEzOCAyLjczMzMxIDI4LjExMzggMS4xNzE0MiAyNi41NjYyQy0wLjM5MDQ3MiAyNS4wMTg2IC0wLjM5MDQ3MiAyMi41MDUzIDEuMTcxNDIgMjAuOTU3N0wyMS4xNjM2IDEuMTQ4MzJMMjEuMTc2MSAxLjE2MDdaIiBmaWxsPSIjOTE5MTkxIi8+Cjwvc3ZnPgo=);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: right 10px top 50%;
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    .iti__flag {
        background-image: url("../img/flags/flags@2x.png");
    }
}

.form-check {
    position: relative;
}

.form-check-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.form-check-label {
    position: relative;
    padding-left: 34px;
    display: block;
    cursor: pointer;
    line-height: 1.6;
}

.form-check .form-check-label {
    font-size: 16px;
}

.form-check-label:before {
    content: '';
    position: absolute;
    left: 0;
    top: -2px;
    width: 26px;
    height: 26px;
    border: 1px solid #c2c2c2;
    border-radius: 3px;
}

.form-check-label:after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 26px;
    height: 26px;
    border-radius: 3px;
    background: #2C9B88 url(../img/icons/check-white.svg) no-repeat center;
    background-size: 16px;
    display: none;
}

.form-check-input:checked~.form-check-label:after {
    display: block;
}

.back-link {
    position: relative;
    color: #2A398C;
    padding-left: 25px;
}

.back-link:before {
    content: '';
    width: 16px;
    height: 16px;
    background: url(../img/icons/left-arrow.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    left: 0;
    top: calc(50% - 9px);
    transition: 0.2s;
}

.back-link:hover {
    text-decoration: underline;
    color: #126A57;
}

.back-link:hover:before {
    transform: translateX(-7px);
}

.white-space {
    height: 50px;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 20px 0;
    font-size: 13px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.breadcrumb>li+li:before {
    content: "//";
    padding: 0 3px;
    color: #F57D00;
}

.breadcrumb>.active {
    color: #2C9B88;
}

.breadcrumb li:last-child {
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.breadcrumb a {
    color: #121212;
}

.red-text {
    font-size: 13px;
    color: #f20c3e;
}

.main-header {
    padding: 16px 0;
    background-color: #126A57;
    color: #fff;
    position: relative;
    z-index: 1000;
    font-size: 13px;
}

.main-header .container {
    display: flex;
    align-items: center;
    position: relative;
}

.main-header .container .logo-lg {
    position: absolute;
    left: 15px;
    top: calc(100% - 20px);
    width: 260px;
}

.main-header .main-logo {
    margin-right: 25px;
    margin-top: -5px;
}

.main-header .main-logo img {
    display: block;
    max-width: 280px;
}

.index-page .main-header {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.slide-navigation {
    margin-right: auto;
}

.main-nav {
    display: flex;
}

.main-nav a {
    color: #fff;
    margin: 0 10px;
    transition: 0.25s;
    outline: 0;
}

.main-nav a.active,
.main-nav a:hover {
    color: #F57D00;
    text-decoration: none;
}

.menu-dropdown-item {
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

.menu-dropdown-item:hover .menu-dropdown-box {
    opacity: 1;
    pointer-events: auto;
}

.menu-dropdown-item:hover .menu-text-link {
    color: #F1A225;
}

.menu-dropdown-box {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding-top: 27px;
    pointer-events: none;
    opacity: 0;
    transition: 0.2s;
    color: #111;
}

.menu-dropdown-inside {
    width: 180px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #c4c4c4;
}

.horizontal-dropdown-box {
    position: relative;
    font-size: 15px;
    padding: 7px 0 7px 8px;
    cursor: pointer;
}

.horizontal-dropdown-box:after {
    content: '';
    position: absolute;
    right: 10px;
    top: 13px;
    width: 0;
    height: 0;
    border-left: 6px solid #AEB9C8;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

.horizontal-dropdown-box:hover:after {
    border-left: 6px solid #2C9B88;
}

.horizontal-dropdown-box:hover .horizontal-inside {
    opacity: 1;
    pointer-events: auto;
}

.horizontal-dropdown-box:hover {
    background-color: #E5EBF3;
}

.horizontal-inside {
    position: absolute;
    left: 100%;
    top: -1px;
    background-color: #fff;
    width: 320px;
    padding: 10px;
    border-radius: 0 10px 10px 10px;
    box-shadow: 0 4px 4px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    column-count: 2;
    column-gap: 10px;
    font-size: 14px;
    opacity: 0;
    pointer-events: none;
}

.horizontal-inside a {
    color: #111;
    display: inline-block;
    vertical-align: top;
    width: 100%;
    margin: 0 0 8px;
}

.horizontal-inside a:hover {
    text-decoration: underline;
    color: #126A57;
}

.language-item,
.support-item,
.cabinet-item {
    position: relative;
    margin-left: 25px;
    cursor: pointer;
}

.cabinet-item {
    display: flex;
    align-items: center;
    color: #fff;
}

.cabinet-item>img {
    display: block;
    max-width: 25px;
    margin-right: 7px;
    margin-top: -2px;
}

.language-item .arrow-link {
    display: flex;
    align-items: center;
}

.language-item .language-img {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    margin-right: 5px;
}

.language-item .nav-dropdown,
.support-item .nav-dropdown {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    padding-top: 35px;
    opacity: 0;
    pointer-events: none;
    transition: 0.2s;
}

.language-item:hover .nav-dropdown,
.support-item:hover .nav-dropdown {
    opacity: 1;
    pointer-events: auto;
}

.language-item .dropdown-content,
.support-item .dropdown-content {
    width: 210px;
    flex: 0 0 210px;
    background-color: #fff;
    border-radius: 2px;
    padding: 16px 16px 5px;
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.15), 0px 2px 3px -1px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    color: #121212;
}

.support-item h3,
.support-item .h3 {
    font-size: 16px;
    margin: 0 0 10px;
}

.main-header .dropdown-content a {
    color: #121212;
}

.main-header .dropdown-content a:hover {
    color: #126A57;
    text-decoration: none;
}

.support-item .link-item {
    position: relative;
    padding-left: 32px;
    margin: 13px 0;
    font-size: 14px;
}

.support-item .link-item img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 23px;
    max-height: 25px;
}

.support-item {
    display: flex;
    align-items: center;
}

.cabinet-item:hover,
.support-item:hover .arrow-link {
    color: #EE7C0E;
    text-decoration: none;
}

.support-item:hover .arrow-link img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(83%) saturate(646%) hue-rotate(352deg) brightness(105%) contrast(98%);
}

.cabinet-item:hover img {
    filter: brightness(0) saturate(100%) invert(43%) sepia(83%) saturate(646%) hue-rotate(352deg) brightness(105%) contrast(98%);
}

.support-item .arrow-link img {
    margin-right: 5px;
    margin-top: -2px;
}

.support-item .link-item:first-of-type img {
    transform: translateY(0);
    top: 3px;
}

.language-item .lang-item {
    display: flex;
    margin-bottom: 10px;
}

.language-item .lang-item.active {
    color: #2A398C;
}

.language-item .lang-item.active .lang-img {
    box-shadow: 0 0 0 2px #2A398C;
}

.language-item .lang-img {
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-right: 5px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px #CDD4DE;
}

.nav-toggle {
    background-color: transparent;
    border: 0;
    padding: 0;
    outline: 0;
    cursor: pointer;
    margin-left: 20px;
    display: none;
}

.nav-toggle span {
    width: 30px;
    height: 2px;
    border-radius: 3px;
    background-color: #fff;
    display: block;
    margin: 7px 0;
}

.nav-toggle span:nth-child(2) {
    width: 24px;
    margin-left: 6px;
}

.slide-nav-close {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 10px;
    left: 20px;
    background: url(../img/icons/close-icon.svg) no-repeat center;
    background-size: 60%;
    border: 0;
    outline: 0;
    transition: 0.25s;
    cursor: pointer;
    display: none;
    filter: brightness(0) invert(1);
}

@media (max-width: 1699px) {
    .main-header .main-logo img {
        max-width: 186px;
    }

    .index-page .main-header .container {
        padding-left: 200px;
    }

    .main-header .container .logo-lg {
        width: 220px;
    }

    .main-header {
        font-size: 12px;
    }

    .main-nav a {
        margin: 0 6px;
    }

    .main-header .main-logo {
        margin-right: 20px;
    }

    .language-item .arrow-link,
    .cabinet-item>span,
    .support-item .arrow-link {
        white-space: nowrap;
    }

    .language-item,
    .support-item,
    .cabinet-item {
        margin-left: 15px;
    }

    .horizontal-inside a {
        margin: 0 0 8px;
    }
}

@media (max-width: 1199px) {
    .index-page .main-header .logo-lg {
        display: none!important;
    }

    .index-page .main-header .main-logo {
        display: block;
    }

    .index-page .main-header .container {
        padding-left: 15px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .index-page .main-header {
        background-color: #126A57;
    }

    .main-header .main-logo {
        margin-right: 25px;
    }

    .language-item .arrow-link,
    .cabinet-item>span,
    .support-item .arrow-link {
        font-size: 0;
    }

    .support-item .arrow-link img {
        margin-right: 0;
    }

    .cabinet-item,
    .support-item {
        margin-left: 15px;
    }

    .slide-nav-close,
    .nav-toggle {
        display: block;
    }

    .slide-navigation {
        position: fixed;
        display: block;
        z-index: 100;
        width: 400px;
        right: 0;
        top: 0;
        background-color: #126A57;
        height: 100vh;
        max-height: 100vh;
        overflow-y: auto;
        padding: 55px 15px 50px 25px;
        transition: 0.3s;
        transform: translateX(150%);
    }

    .slide-navigation.active {
        transform: translateX(0);
    }

    .menu-dropdown-item {
        margin-right: 0;
    }

    .main-nav {
        display: block;
    }

    .menu-text-link {
        font-size: 20px;
    }

    .main-nav a {
        display: block;
        font-size: 20px;
        margin: 5px 0;
        padding: 3px 0;
    }

    .main-header .main-logo {
        margin-right: auto;
    }

    .menu-dropdown-box {
        position: static;
        opacity: 1;
        pointer-events: auto;
        padding-top: 5px;
        padding-left: 10px;
    }

    .horizontal-dropdown-box {
        padding: 0;
        color: #EE7C0E;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .menu-dropdown-inside {
        width: auto;
        border-radius: 0;
        border: 0;
        background-color: transparent;
    }

    .horizontal-dropdown-box:hover {
        background-color: transparent;
    }

    .horizontal-inside {
        position: static;
        opacity: 1;
        pointer-events: auto;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        background-color: transparent;
        padding: 0;
        display: none;
        column-count: auto;
        overflow: hidden;
    }

    a.horizontal-city {
        font-size: 14px;
        color: #fff;
        float: left;
        width: 50%;
    }

    a.horizontal-city:hover {
        color: #fff;
    }

    .horizontal-dropdown-box:after {
        transform: rotate(90deg);
        border-left: 8px solid #fff;
        transition: 0.25s;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }

    .horizontal-dropdown-box:hover:after {
        border-left: 8px solid #fff;
    }

    .horizontal-dropdown-box.is-active:after {
        transform: rotate(-90deg);
    }

    .menu-dropdown-item:hover .menu-text-link {
        color: #fff;
    }
}

@media(max-width: 991px) {
    .search-container:before {
        display: none;
    }
}

@media (max-width: 767px) {
    .main-header .main-logo img {
        max-width: 250px;
    }

    .main-header {
        padding: 15px 0;
    }
}

@media (max-width: 575px) {
    .main-header .main-logo {
        margin-right: 15px;
        flex-grow: 1;
    }

    .main-header .main-logo img {
        max-width: 100%;
    }

    .slide-navigation {
        width: 100%;
    }
}

@media (max-width: 479px) {
    .nav-toggle {
        margin-left: 15px;
    }

    .cabinet-item,
    .support-item {
        margin-left: 10px;
    }

    .language-item {
        margin-left: 0;
    }

    .main-header .container {
        padding: 0 10px;
    }
}

@media (min-width: 1200px) {
    .horizontal-inside {
        display: block !important;
    }
}

.results-head {
    padding-top: 90px;
}

.results-title {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 25px;
}

.results-title span {
    color: #585656;
}

.search-container {
    background: #2E957C;
    position: relative;
    z-index: 100;
    color: #fff;
    padding-top: 40px;
}

.search-container > .container {
    position: relative;
    z-index: 2;
}

.search-container:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 380px;
    background: #2E957C url(../img/green-roads.svg) no-repeat center;
    background-size: cover;
    z-index: 1;
}

.search-container .hero-text {
    margin-bottom: 70px;
    margin-top: 20px;
    padding-left: 300px;
}

.search-container .logo-text {
    margin-bottom: 10px;
}

.search-container h1,
.search-container .h1 {
    font-size: 36px;
    font-family: 'title-font', 'Roboto', Arial;
    margin: 0 0 10px;
}

.search-container p {
    font-size: 18px;
}

.main-search {
    background: rgba(0,0,0, 0.2);
    backdrop-filter: blur(2px);
    /* box-shadow: 0px 4px 4px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -1px rgba(0, 0, 0, 0.06); */
    border-radius: 20px;
    padding: 25px 30px;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.search-holder {
    display: flex;
}

.main-search .search-item {
    position: relative;
    margin: 0 12px;
    flex-grow: 1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.main-search .search-from {
    margin-left: 0;
}

.main-search .search-item.search-from,
.main-search .search-item.search-to {
    background-color: #fff;
    border-radius: 8px;
}

.main-search .search-item.search-from input,
.main-search .search-item.search-to input {
    background-color: transparent;
    position: relative;
    z-index: 10;
    padding: 0 8px 0 45px;
    line-height: 54px;
}

.search-item.promocode-item {
    flex: 0 0 170px;
}

.main-search .search-item img {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}


.main-search .search-item input {
    padding: 7px 8px 6px 45px;
    display: block;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    border: 0;
    height: 54px;
    outline: 0;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.search-item.val-item {
    flex: 0 0 105px;
}

.main-search .val-item img {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}
.main-search .val-item select {
    padding: 7px 8px 6px 45px;
    display: block;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    border: 0;
    height: 54px;
    outline: 0;
    border: 1px solid #fff;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.main-search .val-item select:focus {
    box-shadow: none;
    border: 1px solid #2C9B88;
}


.main-search .search-item input::placeholder {
    color: #111;
}

.main-search .search-item input:focus {
    border: 1px solid #2C9B88;
}

.main-search .search-item input.red_line,
.main-search .search-item input.red {
    border: 1px solid #f00;
}

.main-search .btn-primary {
    height: 54px;
    padding: 3px;
    flex: 0 0 250px;
    font-size: 18px;
    margin-left: 12px;
    border-radius: 8px;
}

.main-search .double-item {
    position: relative;
    margin: 0 12px;
    display: flex;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.main-search .double-item .search-item {
    margin: 0;
    box-shadow: none;
}

.main-search .double-item .search-item input {
    max-width: 155px;
}

.main-search .double-item .search-item:first-child {
    flex: 0 0 138px;
}

.main-search .double-item .search-item:first-child input {
    border-radius: 8px 0 0 8px;
}

.main-search .double-item .search-item:last-child {
     flex: 0 0 154px;
}

.main-search .double-item .search-item:last-child input {
    border-radius: 0 8px 8px 0;
    padding-left: 40px;
    padding-right: 30px;
}

.main-search .double-item .search-item:last-child img {
    left: 9px;
}

.main-search .return-tooltip {
    position: absolute;
    top: calc(50% - 10px);
    right: 11px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-search .return-tooltip img {
    position: static;
    transform: translateY(0);
}

.main-search .double-item input {
    box-shadow: none;
}



.swap-btn {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.search-item .dropdown_menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.5), 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    border: 1px solid #E5EBF3;
    max-height: 300px;
    overflow-y: auto;
    z-index: 12;
}

.search-item .dropdown_menu a {
    display: block;
    padding: 10px;
    color: #111;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #E5EBF3;
}

.search-item .dropdown_menu a:last-child {
    border-bottom: 0;
}

.search-item .dropdown_menu a:hover {
    background-color: #2C9B88;
    color: #fff;
}

.placeholder_menu {
    position: absolute !important;
    left: 0;
    top: 0;
    width: 100%;
    color: #40587c !important;
    pointer-events: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    z-index: 1 !important;
    font-weight: 400 !important;
}

.air-datepicker--content {
    font-family: 'Roboto', sans-serif;
}

.air-datepicker-body--day-name {
    font-weight: 500;
    font-size: 14px;
}

.air-datepicker-cell.-current- {
    color: #2C9B88;
    font-weight: 700;
    background-color: #E5EBF3;
}

.air-datepicker-cell.-selected-,
.air-datepicker-cell.-selected-:hover,
.air-datepicker-cell.-selected-.-current- {
    color: #fff;
    background-color: #2C9B88;
}


@media(min-width: 768px) {
    .main-search .double-item .tooltip-inner {
        width: 300px;
    }
}



@media (max-width: 1699px) {

    .search-container .hero-text {
        margin-top: 10px;
        margin-bottom: 55px;
        padding-left: 250px;
    }

    .search-container .logo-text {
        width: 240px;
    }

    .search-container h1,
    .search-container .h1 {
        font-size: 32px;
    }

    .main-search {
        padding: 16px 12px;
        margin-bottom: -42px;
    }

    .main-search .search-item.search-from input, 
    .main-search .search-item.search-to input {
        padding: 0 8px 0 40px;
    }

    .main-search .search-item img {
        left: 9px;
    }

    .main-search .double-item,
    .main-search .search-item {
        margin: 0 2px;
    }

    .main-search .search-from {
        margin-left: 0;
    }

    .main-search .btn-primary {
        flex: 0 0 160px;
        margin-left: 2px;
    }

    .search-item.promocode-item {
        flex: 0 0 140px;
    }
}

@media (max-width: 1199px) {
    .search-container .hero-text {
        padding-left: 0;
    }

    .main-search .search-item {
        margin: 0 3px;
    }

    .main-search .search-from {
        margin-left: 0;
    }

    .main-search .btn-primary {
        font-size: 16px;
        flex: 0 0 120px;
    }

    .search-holder {
        flex-wrap: wrap;
        align-content: center;
        margin-left: 0;
    }

    .search-item.promocode-item {
        flex: 0 0 125px;
    }

    .main-search .search-item img {
        left: 8px;
    }

    .main-search .search-item input {
        padding-left: 40px;
        font-size: 13.5px;
    }

    .main-search {
        padding: 15px;
    }

    .main-search .search-item.search-from, .main-search .search-item.search-to {
        min-width: 300px;
    }

    .search-item.promocode-item,
    .search-item.val-item,
    .main-search .double-item,
    .main-search .btn-primary {
        margin-top: 20px;
    }

    .search-item.val-item {
        margin-left: 12px;
        margin-right: 12px;
    }

    .main-search .search-to {
        margin-right: 0;
    }

    .main-search .double-item {
        margin-left: 0;
        margin-right: 12px;
    }

    .main-search .btn-primary {
        flex: auto;
        margin-left: 3px;
    }

    .search-container .logo-text {
        display: none;
    }
}

@media (max-width: 991px) {
    .search-container .hero-text {
        margin-bottom: 40px;
        margin-top: 0;
        text-align: center;
    }

    .search-container h1,
    .search-container .h1 {
        font-size: 28px;
        margin: 0 0 10px;
    }

    .search-container p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .results-head {
        padding-top: 30px;
    }

    .main-search {
        margin-bottom: 0;
    }

    .search-container h1,
    .search-container .h1 {
        font-size: 24px;
        text-align: center;
    }

    .search-container .hero-text {
        margin-bottom: 25px;
    }

    .search-container p {
        text-align: center;
    }

    .search-container {
        padding: 20px 0 30px;
    }

    .main-search .btn-primary,
    .main-search .val-item select,
    .main-search .search-item input {
        height: 48px;
    }

    .main-search .double-item {
        margin-right: 0;
        width: 100%;
    }

    .main-search .double-item .search-item input {
        width: 100%;
        max-width: 100%;
    }

    .main-search .double-item .search-item:first-child,
    .main-search .double-item .search-item:last-child {
        flex: 0 0 50%;
    }

    .search-item.promocode-item {
        margin-left: 0;
    }

    .main-search .search-item.search-from, 
    .main-search .search-item.search-to {
        min-width: auto;
    }
}

@media (max-width: 575px) {

    .main-search .search-from,
    .main-search .search-to {
        width: 100%;
    }

    .main-search .search-to {
        margin-left: 0;
        margin-top: 20px;
    }

    .swap-btn {
        position: absolute;
        top: 58px;
        right: 1px;
        background-color: #fff;
        background-color: #2C9B88;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 11;
        transform: rotate(90deg);
    }
}

@media(max-width: 479px) {
    .search-item.promocode-item {
        flex: 0 0 120px;
    }

    .search-item.val-item {
        margin-left: 3px;
        margin-right: 3px;
        flex: 0 0 90px;
    }

    .main-search .val-item select {
        padding-left: 36px;
    }
}

@media(max-width: 400px) {
    .main-search .val-item select {
        font-size: 13px;
    }

    .main-search .btn-primary {
        font-size: 15px;
    }
}

@media(max-width: 375px) {
    .main-search {
        padding: 10px;
    }

    .swap-btn {
        top: 44px;
        right: 3px;
    }
}

.left-pattern {
    position: absolute;
    left: -30px;
    width: 230px;
    top: 0;
    height: 100%;
    background: url(../img/left-pattern.svg) repeat-y left top;
    /* mix-blend-mode: screen; */
    background-size: contain;
    opacity: 0.4;
    z-index: 1;
}

.right-pattern {
    position: absolute;
    right: -30px;
    width: 230px;
    top: 0;
    height: 100%;
    background: url(../img/right-pattern.svg) repeat-y left top;
    /* mix-blend-mode: screen; */
    background-size: contain;
    opacity: 0.4;
    z-index: 1;
}

@media (max-width: 1799px) {

    .left-pattern,
    .right-pattern {
        width: 120px;
        background-size: contain;
    }
}

@media (max-width: 1399px) {

    .left-pattern,
    .right-pattern {
        width: 80px;
        background-size: contain;
    }
}

@media (max-width: 1299px) {

    .left-pattern,
    .right-pattern {
        width: 60px;
    }
}

@media (max-width: 1199px) {

    .left-pattern,
    .right-pattern {
        display: none;
    }
}

.routes-section {
    padding: 60px 0;
}

.routes-section h2,
.routes-section .h2 {
    font-size: 32px;
    margin: 0 0 20px;
    font-family: 'kabelc_bold', 'Roboto', Arial;
    color: #2C9B88;
}

.routes-slider {
    margin: 0 auto;
    max-width: 2200px;
    z-index: 10;
    opacity: 0;
}

.routes-slider.slick-initialized {
    opacity: 1;
}

.routes-slider .slick-track {
    display: flex;
}

.routes-slider .route-item {
    margin: 0 10px;
    aspect-ratio: 3 / 5;
}

.routes-slider .route-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 5px;
    position: relative;
    border-radius: 30px;
    transition: 0.35s;
    height: 100%;
}

.routes-slider .route-img a {
    display: block;
    height: 100%;
    outline: 0;
}

.routes-slider .route-img:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(44, 155, 136, 0.4);
    z-index: 1;
    pointer-events: none;
    transition: 0.3s;
}

.routes-slider .country-name {
    position: absolute;
    left: 16px;
    bottom: 16px;
    right: 16px;
    color: #fff;
    background-color: rgba(44, 155, 136, 0.9);
    border-radius: 18px;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    padding: 12px 5px;
    transition: 0.35s;
    z-index: 2;
    pointer-events: none;
}


.routes-slider .route-item:hover .country-name {
    background-color: #2C9B88;
}

.routes-slider .route-direction {
    font-size: 20px;
    font-weight: 500;
    color: #2C9B88;
    line-height: 1.2;
}

.routes-slider .route-price {
    color: #2C9B88;
}

.routes-slider .route-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.routes-slider .route-item:hover .route-img img {
    transform: scale(1.08);
}

.routes-slider .route-item:hover .route-img:after {
    opacity: 0;
}

.routes-slider .slick-arrow {
    position: absolute;
    top: 95px;
    width: 42px;
    height: 42px;
    z-index: 1;
    padding: 5px 0 0;
    border-radius: 50%;
    background-color: #E5EBF3;
    border: 0;
}

.routes-slider .slick-next {
    right: -30px;
}

.routes-slider .slick-prev {
    left: -30px;
}

@media(max-width: 2000px) {
    .routes-slider .route-item {
        margin: 0 8px;
    }

    .routes-slider .route-img {
        border-radius: 16px;
    }

    .routes-slider .country-name {
        border-radius: 8px;
    }
}

@media (max-width: 1699px) {
    .routes-slider .country-name {
        font-size: 18px;
    }

    .routes-slider {
        margin-left: -50px;
        margin-right: -50px;
    }

    .routes-slider .route-direction {
        font-size: 18px;
    }

    .routes-slider .slick-arrow {
        top: 72px;
    }
}

@media (max-width: 1280px) {
    .routes-slider .slick-next {
        right: 25px;
    }

    .routes-slider .slick-prev {
        left: 25px;
    }

    .routes-slider .country-name {
        font-size: 16px;
    }
}

@media (max-width: 991px) {

    .routes-section h2,
    .routes-section .h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .routes-slider {
        margin: 0 -15px;
    }

    .routes-section {
        padding: 40px 0;
    }

    .routes-section .white-space {
        display: none;
    }
}

@media (max-width: 575px) {
    .routes-slider .route-direction {
        font-size: 16px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .routes-slider .route-item {
        width: 250px;
    }

    .routes-slider .country-name {
        left: 8px;
        right: 8px;
        bottom: 8px;
        font-size: 16px;
    }
}

@media (max-width: 479px) {
    .routes-slider .route-item {
        margin: 0 5px;
    }
}

.benefit-section {
    padding: 30px 0;
}

.benefit-section h2,
.benefit-section .h2 {
    font-size: 36px;
    margin: 0 0 10px;
    font-family: 'title-font', 'Roboto', Arial;
    color: #2C9B88;
}

.benefit-section p {
    font-size: 18px;
}

.benefit-section img {
    display: block;
    margin: 0 auto;
    max-width: 480px;
}

.benefit-section .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 320px;
}

.benefit-section .col-sm-6:first-child {
    padding-left: 180px;
}

.benefit-section .col-sm-6:last-child {
    padding-right: 180px;
}

.benefit-section .static-image,
.benefit-section .dynamic-image,
.benefit-section .dynamic-image-1,
.benefit-section .dynamic-image-2,
.benefit-section .dynamic-image-3,
.benefit-section .dynamic-image-4 {
    grid-row-start: 1;
    grid-column-start: 1;
}

.benefit-section .animated-image {
    display: grid;
    grid-template-columns: 1fr;
}

.benefit-one .dynamic-image-1 {
    transform: translateY(-50px);
    transition: opacity 1.2s, transform 2s ease;
    transition-delay: 0.2s;
    opacity: 0;
}

.benefit-one .dynamic-image-2 {
    transform: translateY(-50px);
    transition: opacity 1.2s, transform 1s ease;
    transition-delay: 0.4s;
    opacity: 0;
}

.benefit-one .dynamic-image-3 {
    transform: translateY(-50px);
    transition: opacity 1.2s, transform 1s ease;
    transition-delay: 0.6s;
    opacity: 0;
}

.benefit-one .dynamic-image-4 {
    transform: translateY(40px) translateX(40px);
    transition: opacity 1.2s, transform 1s ease;
    transition-delay: 0.8s;
    opacity: 0;
}

.benefit-one .static-image {
    transition: 0.35s;
    transform: rotate3d(1, -1, 1, -10deg);
}

.benefit-one.animated .dynamic-image-1,
.benefit-one.animated .dynamic-image-2,
.benefit-one.animated .dynamic-image-3,
.benefit-one.animated .dynamic-image-4 {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.benefit-one.animated .static-image {
    transform: rotate(0);
}

.benefit-two {
    background-color: #E7FDF2;
    text-align: right;
}

.white-section {
    background-color: #fff;
    position: relative;
    z-index: 5;
}

.green-section {
    background-color: #2C9B88;
}

.green-section {
    color: #111
}

.green-section .title-group {
    color: #fff;
}

.all-routes.green-section .ewe-routes ul a {
    color: #111;
}

.benefit-two .animated-image {
    display: grid;
    grid-template-columns: 1fr;
}

.benefit-two .dynamic-image {
    transform: translateX(-600px);
    transition: opacity 1.2s, transform 2s ease;
    opacity: 0;
}

.benefit-two.animated .dynamic-image {
    transform: translateX(0);
    opacity: 1;
}

.benefit-three .animated-image {
    width: 270px;
    margin: 0 auto;
    position: relative;
}

.benefit-three .gear-1 {
    position: absolute;
    width: 21px;
    top: 40px;
    right: 60px;
    transform-origin: center;
    animation: gear-1 5s infinite linear;
    opacity: 0;
}

.benefit-three .gear-2 {
    position: absolute;
    width: 16px;
    top: 110px;
    left: 30px;
    transform-origin: center;
    animation: gear-2 5s infinite linear;
}

.benefit-three .dynamic-image-1 {
    transition: 1s;
    opacity: 0;
    transform: scale(0.7);
}

.benefit-three.animated .dynamic-image-1 {
    opacity: 1;
    transform: scale(1);
}

.benefit-three.animated .gear-1 {
    opacity: 1;
}

@keyframes gear-1 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes gear-2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@media (max-width: 1699px) {
    .benefit-section .col-sm-6:first-child {
        padding-left: 80px;
    }

    .benefit-section .col-sm-6:last-child {
        padding-right: 80px;
    }
}

@media (max-width: 1199px) {
    .benefit-section .col-sm-6:first-child {
        padding-left: 15px;
    }

    .benefit-section .col-sm-6:last-child {
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .benefit-section img {
        max-width: 100%;
    }

    .benefit-section h2,
    .benefit-section .h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .benefit-two .row {
        flex-direction: column-reverse;
    }

    .benefit-section .col-sm-6 {
        width: 100%;
    }

    .benefit-section {
        text-align: center;
        padding: 30px 0;
    }

    .benefit-section h2,
    .benefit-section .h2,
    .benefit-section p {
        text-align: center;
    }

    .benefit-section .row {
        min-height: auto;
    }
}

.partners-section {
    padding: 60px 0;
}

.partners-section h2,
.partners-section .h2 {
    text-align: center;
    margin: 0 0 60px;
    font-size: 38px;
    font-family: 'title-font', 'Roboto', Arial;
    color: #2C9B88;
}

.partners-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.partners-row img {
    display: block;
    max-width: 300px;
}

@media (max-width: 1199px) {
    .partners-row img {
        max-width: 220px;
        max-height: 70px;
    }
}

@media (max-width: 991px) {
    .partners-row img {
        max-width: 180px;
        max-height: 60px;
    }

    .partners-section h2,
    .partners-section .h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .partners-row {
        flex-direction: column;
    }

    .partners-row img {
        margin: 20px 0;
    }

    .partners-section h2,
    .partners-section .h2 {
        margin-bottom: 20px;
    }

    .partners-section {
        padding: 40px 0 30px;
    }
}

.index-description {
    padding: 80px 0;
}

.index-description img {
    display: block;
    max-width: 100%;
    border-radius: 20px;
    margin-bottom: 15px;
}

.index-description h2,
.index-description .h2 {
    font-size: 32px;
    margin: 5px 0 10px;
    font-family: 'title-font', 'Roboto', Arial;
    color: #2C9B88;
    display: inline-block;
    vertical-align: top;
}

.index-description h3,
.index-description .h3 {
    font-family: 'title-font', 'Roboto', Arial;
    color: #2C9B88;
    margin: 8px 0 15px;
}


.index-description h2~div,
.index-description .h2~div {
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    width: 100%;
}

.index-description p {
    max-width: 640px;
}

.index-description .container {
    column-count: 2;
    column-gap: 50px;
}

.index-description .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

@media (max-width: 1700px) {

    .index-description h2,
    .index-description .h2 {
        font-size: 28px;
    }

    .index-description .container {
        column-gap: 60px;
    }
}

@media (max-width: 991px) {
    .index-description .container {
        column-count: auto;
    }

    .index-description h2,
    .index-description .h2 {
        font-size: 24px;
        margin-left: 0;
    }

    .index-description p {
        margin-left: 0;
    }

    .index-description {
        padding: 40px 0;
    }
}

.all-routes {
    padding: 60px 0;
}

.all-routes .title-group h2,
.all-routes .title-group .h2 {
    font-size: 38px;
    margin: 0;
    font-family: 'title-font', 'Roboto', Arial;
}

.all-routes .title-group:after {
    display: none;
}

.ewe-routes {
    display: flex;
    flex-wrap: wrap;
}

.ewe-routes ul {
    list-style: none;
    padding: 0;
    width: 25%;
    margin: 0;
    color: #2C9B88;
}

.ewe-routes ul li {
    margin: 8px 0;
    font-weight: 500;
}

.ewe-routes ul a {
    color: #2C9B88;
}

@media (max-width: 991px) {
    .ewe-routes ul {
        width: 50%;
    }

    .all-routes {
        padding: 40px 0;
    }

    .all-routes .title-group {
        margin-bottom: 30px;
    }

    .all-routes .title-group h2,
    .all-routes .title-group .h2 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .ewe-routes ul a {
        font-size: 13px;
        white-space: nowrap;
        max-width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        display: block;
    }
}

.tickes-filters {
    display: flex;
    align-items: center;
    margin: 0 -5px 20px;
}

.tickes-filters .day-filter {
    margin-right: auto;
}

.filter-button {
    background-color: #fff;
    color: #111;
    box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-radius: 5px;
    padding: 8px 30px;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid #fff;
    user-select: none;
}

.filter-button img {
    margin-left: 5px;
}

.filter-button.active {
    border-color: #2C9B88;
}

.single-ticket {
    background-color: #fff;
    margin-bottom: 20px;
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.15), 0px 2px 3px -1px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    position: relative;
    z-index: 1;
}

.single-ticket .ticket-body {
    padding: 15px 20px;
    display: flex;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #DBE3ED;
}

.double-ticket-footer .btn-primary,
.single-ticket .btn-primary {
    width: 260px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    letter-spacing: 0.7px;
}

.single-ticket .ticket-address {
    flex: 0 0 250px;
}

.single-ticket .address-time {
    display: flex;
}

.single-ticket .address-date {
    color: #706F6F;
}

.single-ticket .address-time span {
    font-size: 20px;
    font-weight: 700;
    margin-right: 5px;
}

.single-ticket .address-city {
    font-size: 18px;
}

.single-ticket .address-steet {
    color: #706F6F;
    max-width: 100%;
    font-size: 14px;
}

.single-ticket .ticket-duration {
    flex: 0 0 230px;
    position: relative;
    text-align: center;
    align-self: flex-start;
    margin-top: 15px;
}

.single-ticket .duration-line {
    height: 1px;
    background-color: #afa7a7;
    position: absolute;
    top: 50%;
    left: 13px;
    right: 13px;
}

.single-ticket .duration-line:before,
.single-ticket .duration-line:after {
    content: '';
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid #2C9B88;
    position: absolute;
    top: -5px;
}

.single-ticket .duration-line:before {
    right: calc(100% + 3px);
}

.single-ticket .duration-line:after {
    background-color: #2C9B88;
    left: calc(100% + 3px);
}

.single-ticket .duration-value {
    position: relative;
    z-index: 1;
    color: #676767;
    font-size: 14px;
}

.single-ticket .duration-value span {
    padding: 0 10px;
    background-color: #fff;
}

.single-ticket .ticket-choose {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
    flex: 0 0 260px;
}

.single-ticket .ticket-seats {
    color: #676767;
}

.single-ticket .ticket-choose .btn-primary {
    margin-bottom: 10px;
    user-select: none;
}

.single-ticket .ticket-seats span {
    font-weight: 500;
    color: #111;
}

.single-ticket .price-value {
    font-size: 24px;
}

.single-ticket .price-value span {
    font-weight: 500;
}

.single-ticket .discount-item {
    display: inline-block;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 13px;
    border-style: solid;
    border-width: 1px;
    padding: 1px 5px;
    cursor: pointer;
}

.single-ticket .ticket-footer {
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

.ticket-footer-toggle {
    font-size: 14px;
    position: relative;
    padding-right: 18px;
    white-space: nowrap;
    cursor: pointer;
}

.ticket-footer-toggle:after {
    content: '';
    position: absolute;
    right: 0;
    top: 5px;
    width: 14px;
    height: 12px;
    background: url(../img/icons/angle-down.svg) no-repeat center;
    background-size: contain;
    transition: 0.25s;
}

.ticket-footer-toggle.is-active:after {
    transform: rotate(-180deg);
}

.single-ticket .ticket-print {
    color: #2C9B88;
    font-size: 14px;
    flex: 0 0 300px;
    text-align: center;
}

.single-ticket .no-print,
.single-ticket .yes-print {
    position: relative;
    padding-left: 30px;
    display: inline-block;
    cursor: pointer;
}

.single-ticket .no-print:after,
.single-ticket .yes-print:after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
}

.single-ticket .yes-print:after {
    background: url(../img/icons/printer-icon.svg) no-repeat center;
    background-size: contain;
    width: 22px;
    height: 22px;
}

.single-ticket .no-print:after {
    background: url(../img/icons/noprinter-icon.svg) no-repeat center;
    background-size: contain;
    width: 24px;
    height: 24px;
}

.single-ticket .ticket-service,
.single-ticket .ticket-carrier {
    max-width: 300px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: 13px;
    color: #333333;
    margin-left: 50px;
}

.single-ticket .ticket-service span,
.single-ticket .ticket-carrier span {
    font-weight: 500;
}

.single-ticket .ticket-print {
    margin-left: auto;
}

.single-ticket .ticket-sale {
    position: absolute;
    right: calc(100% - 1px);
    top: 0;
    bottom: 0;
    color: #fff;
    background-color: #E82D2D;
    writing-mode: vertical-lr;
    transform: scale(-1, -1);
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 0 10px 10px 0;
}

.double-ticket {
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.15), 0px 2px 3px -1px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 20px;
}

.double-ticket .single-ticket {
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
    background-color: transparent;
    border-bottom: 1px dashed #111;
}

.double-ticket .single-ticket:before,
.double-ticket .single-ticket:after {
    content: '';
    width: 17px;
    height: 17px;
    background-color: #E7FDF2;
    position: absolute;
    top: calc(100% - 8px);
    border-radius: 50%;
}

.double-ticket .single-ticket:before {
    left: -8px;
}

.double-ticket .single-ticket:after {
    right: -8px;
}

.double-ticket .single-ticket .ticket-body {
    border-bottom: 0;
}

.double-ticket .single-ticket .ticket-footer {
    padding-top: 0;
}

.double-ticket .single-ticket .ticket-print {
    flex: 0 0 270px;
}

.double-ticket-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px;
}

.double-ticket-price {
    margin-left: auto;
    margin-right: 40px;
    font-size: 18px;
}

.double-ticket-price span {
    font-size: 24px;
    font-weight: 500;
}

.double-ticket .single-ticket .ticket-sale {
    bottom: -22px;
}

.double-ticket .single-ticket:nth-child(2) .ticket-sale {
    top: 8px;
}

.double-ticket-footer .ticket-zvorot {
    display: flex;
    align-items: center;
}

.double-ticket-footer .zvorot-item {
    position: relative;
    margin-right: 6px;
    width: 180px;
}

.double-ticket-footer .zvorot-item > img {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
}

.double-ticket-footer .zvorot-item .form-control {
    padding: 7px 30px 6px 45px;
    display: block;
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    border: 0;
    height: 50px;
    outline: 0;
    border: 1px solid #ACA6A6;
    font-size: 14px;
    font-weight: 500;
    color: #111;
}

.double-ticket-footer .zvorot-item .form-control::placeholder {
    color: #111;
}

.double-ticket-footer .zvorot-item .return-tooltip {
    position: absolute;
    top: calc(50% - 10px);
    right: 11px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.double-ticket-footer .add-zvorot {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #EE7907;
    background-color: #FFEFE0;
    border: 1px solid #EE7907;
    padding: 0 25px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.25s;
}

.double-ticket-footer .add-zvorot:hover {
    background-color: #EE7907;
    color: #fff;
}


.ticket-dropdown {
    padding: 0 20px;
    will-change: max-height;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid #fff;
}

.ticket-dropdown.active {
    max-height: 150000px;
}

.ticket-dropdown .row {
    margin-bottom: 20px;
}

.ticket-dropdown>.h3,
.ticket-dropdown>h3 {
    font-size: 18px;
}

.ticket-dropdown p {
    margin: 0 0 5px;
    font-size: 14px;
}

.ticket-dropdown p span {
    color: #706F6F;
}

.ticket-dropdown p a {
    color: #2A398C;
}

.ticket-dropdown .ticket-route {
    position: relative;
}

.ticket-dropdown .ticket-route:after {
    content: '';
    width: 1px;
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50px;
    background-color: #444;
}

.ticket-dropdown .route-station {
    display: flex;
    align-items: center;
    padding: 5px 0;
    color: #706F6F;
    font-size: 13px;
}

.ticket-dropdown .route-station span {
    font-weight: 500;
    color: #111;
}

.ticket-dropdown .route-station .station-name {
    max-width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.ticket-dropdown .route-station:first-child .station-name,
.ticket-dropdown .route-station:last-child .station-name {
    font-size: 17px;
}

.ticket-dropdown .route-station:first-child .station-circle {
    box-shadow: 0 0 0 2px #2C9B88;
    border: 1px solid #2C9B88;
}

.ticket-dropdown .route-station:last-child .station-circle {
    box-shadow: 0 0 0 1px #2C9B88;
}

.ticket-dropdown .route-station:last-child .station-circle:after {
    content: '';
    position: absolute;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    left: calc(50% - 5.5px);
    top: calc(50% - 5.5px);
    background-color: #2C9B88;
}

.ticket-dropdown .station-time {
    flex: 0 0 42px;
    padding-right: 8px;
    text-align: right;
    font-size: 13px;
}

.ticket-dropdown .station-circle,
.ticket-dropdown .transfer-circle {
    width: 17px;
    flex: 0 0 17px;
    height: 17px;
    border: 1px solid #444;
    border-radius: 50%;
    margin-right: 8px;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.ticket-dropdown .transfer-circle {
    border-color: #6C7591;
}

.ticket-dropdown .transfer-circle:before,
.ticket-dropdown .transfer-circle:after {
    content: '';
    position: absolute;
}

.ticket-dropdown .transfer-circle:before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid #6C7591;
    left: calc(50% - 3.5px);
    top: calc(50% - 3.5px);
    background-color: #fff;
    z-index: 2;
}

.ticket-dropdown .transfer-circle:after {
    width: 11px;
    height: 1px;
    left: calc(50% - 5.5px);
    top: calc(50% - 0.5px);
    background-color: #6C7591;
    z-index: 1;
}

.ticket-dropdown .station-transfer {
    border: 1px solid #2A398C;
    padding: 1px 5px;
    border-radius: 3px;
    color: #2A398C;
}

.order-ticket {
    padding: 0 20px;
    will-change: max-height;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid #fff;
}

.order-ticket.active {
    max-height: 5000px;
}

.order-ticket .passenger-amount {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    margin-top: 50px;
}

.order-ticket .passenger-amount .h3 {
    font-size: 22px;
    margin: 0 15px 0 0;
}

.order-ticket .radio-row {
    display: flex;
}

.order-ticket .radio-item {
    position: relative;
    margin-right: 5px;
}

.order-ticket .radio-row input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.order-ticket .radio-row label {
    width: 32px;
    height: 32px;
    border: 1px solid #d3cbcb;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
}

.order-ticket .radio-row input:checked~label {
    background-color: #2C9B88;
    border-color: #2C9B88;
    color: #fff;
}

.order-ticket .bus-container {
    text-align: center;
}

.order-ticket .bus-holder {
    display: inline-block;
    margin: 0 20px 30px;
}

.order-ticket .bus-map {
    display: inline-block;
    border-radius: 42px 10px 10px 42px;
    border: 3px solid #2C9B88;
    position: relative;
}

.order-ticket .bus-head {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 20px 5px 25px;
    float: left;
}

.order-ticket .small-bus .bus-head {
    padding: 10px;
}

.order-ticket .bus-head img {
    width: 30px;
}

.order-ticket .bus-salon {
    display: flex;
    padding: 10px 12px 10px 0;
}

.order-ticket .bus-salon.bus-blured {
    filter: blur(5px);
}

.order-ticket .seats-row {
    margin: 6px 0;
    white-space: nowrap;
}

.order-ticket .empty-seat,
.order-ticket .bus-seat {
    float: left;
    height: 30px;
    width: 30px;
    margin: 0 3px;
}

.order-ticket .bus-seat {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 14px;
}

.order-ticket .bus-seat.not-available {
    background-color: #E7F1FB;
    color: #747070;
}

.order-ticket .bus-seat.is-available {
    background-color: #3EBC12;
    color: #fff;
    cursor: pointer;
}

.order-ticket .bus-seat.is-available.selected {
    background-color: #EE7907;
}

.order-ticket .bus-direction {
    margin-bottom: 5px;
}

.order-ticket .blur-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seats-legend {
    display: flex;
    margin-bottom: 50px;
    margin-left: 50px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.legend-color {
    width: 25px;
    height: 25px;
    border-radius: 3px;
    margin-right: 8px;
}

.order-passenger-item {
    border-top: 1px dashed #676767;
    border-bottom: 1px dashed #676767;
    padding: 20px 100px;
}

.order-passenger-item h3,
.order-passenger-item .h3 {
    font-weight: 400;
    font-size: 20px;
}

.order-payer-item .row {
    display: flex;
    flex-wrap: wrap;
}

.order-payer-item .col-md-7 {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.order-payer-item label,
.order-passenger-item label {
    font-weight: 400;
    font-size: 14px;
    color: #5A5C60;
    margin-bottom: 3px;
}

.order-payer-item .help-block,
.order-passenger-item .help-block {
    display: none;
    font-size: 12px;
    margin: 5px 0 0;
}

.has-error .help-block {
    display: block;
}

.order-payer-item {
    padding: 30px 100px 20px;
    margin-bottom: 30px;
}

.order-payer-item .btn-primary {
    width: 100%;
    height: 42px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}


.order-payer-item .btn-primary:hover,
.order-payer-item .btn-primary:focus,
.order-payer-item .btn-primary:active {
    background-color: #218e7b!important;
}

.order-payer-item .btn-primary.disabled,
.order-payer-item .btn-primary:disabled {
    background-color: #82b6ad!important;
}


.order-payer-item .form-check {
    margin-bottom: 12px;
}

.order-payer-item .form-check a {
    color: #2C9B88;
    text-decoration: underline;
    font-weight: 500;
}

.order-payer-item .form-check a:hover {
    text-decoration: none;
}

.order-payer-item h3,
.order-payer-item .h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 30px;
}

.order-step-two {
    background-color: #fff;
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.15), 0px 2px 3px -1px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    padding: 80px 100px 100px;
    margin: 20px 0;
}

.order-head {
    text-align: center;
    margin-bottom: 45px;
}

.order-head .h2,
.order-head h2 {
    margin: 0 0 15px;
}

.order-head span {
    font-weight: 500;
}

.order-table {
    width: 100%;
    margin-bottom: 20px;
}

.order-table th {
    color: #706F6F;
    font-weight: 400;
    padding: 10px 0;
}

.order-table td {
    padding: 10px 0;
}

.order-table td:nth-child(1),
.order-table td:nth-child(2) {
    padding-right: 8px;
}

.order-table th,
.order-table td {
    border-top: 1px dashed #676767;
}

.order-table .table-date {
    font-size: 18px;
}

.order-table .table-date span {
    font-weight: 500;
    display: block;
    width: 100%;
}

.order-table .table-street {
    font-size: 14px;
    color: #706F6F;
}

.order-table .table-price {
    font-size: 18px;
}

.order-table .table-price span {
    font-weight: 500;
}

.order-table .table-bonus {
    font-size: 14px;
    color: #706F6F;
}

.table-total-price {
    font-size: 18px;
    text-align: right;
}

.table-total-price span {
    font-size: 22px;
    font-weight: 500;
}

.order-timer {
    margin-bottom: 40px;
    font-size: 18px;
}

.order-timer span {
    color: #DE000D;
    font-weight: 500;
}

.order-controls .reserv-payment-place {
    border: 1px solid #156E5B;
    display: flex;
    flex-wrap: wrap;
    height: 100px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    color: #121212;
    padding-right: 15px;
    align-content: center;
    margin-bottom: 30px;
    padding-left: 90px;
    text-decoration: none;
}

.order-controls .reserv-payment-place:hover {
    background-color: #E7FDF2;
}

.order-controls .online-payment,
.order-controls .cash-payment,
.order-controls .book-payment {
    border: 1px solid #8BC8FF;
    display: flex;
    flex-wrap: wrap;
    height: 100px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    color: #121212;
    padding-right: 15px;
    align-content: center;
    margin-bottom: 30px;
}

.order-controls .online-payment:hover,
.order-controls .cash-payment:hover,
.order-controls .book-payment:hover {
    text-decoration: none;
    background-color: #ECF8FF;
}

.order-controls .reserv-payment-place img,
.order-controls .online-payment img,
.order-controls .cash-payment img,
.order-controls .book-payment img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
}

.order-controls .reserv-payment-place h4,
.order-controls .online-payment h4,
.order-controls .cash-payment h4,
.order-controls .book-payment h4 {
    margin: 0 0 5px;
    width: 100%;
}

.order-controls .online-payment {
    padding-left: 180px;
}

.order-controls .online-payment p {
    margin: 0;
    font-size: 13px;
}

.order-controls .cash-payment {
    padding-left: 135px;
}

.order-controls .book-payment {
    padding-left: 90px;
}

.order-controls .cancel-order {
    border: 1px solid #DE000D;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    height: 100px;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    color: #121212;
    align-content: center;
}

.order-controls .cancel-order:hover {
    background-color: #ffdee0;
    text-decoration: none;
}

.cancel-choice {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px 0 30px;
}

.cancel-choice-text {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 10px;
    width: 100%;
}

.cancel-choice .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 5px);
    height: 50px;
    font-size: 18px;
}

.order-final {
    background-color: #fff;
    background-color: #fff;
    box-shadow: 0px 2px 3px -1px rgba(0, 0, 0, 0.15), 0px 2px 3px -1px rgba(0, 0, 0, 0.08);
    border-radius: 5px;
    padding: 80px 100px 100px;
    margin: 20px 0;
}

.order-info {
    max-width: 620px;
    margin-bottom: 40px;
    font-size: 14px;
}

.order-info h4,
.order-info .h4 {
    font-weight: 400;
    font-size: 18px;
}

.order-info h4 span,
.order-info .h4 span {
    font-weight: 500;
}

.order-info p span {
    font-weight: 500;
}

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

.preloader-text .btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 42px;
}

.preloader-text .btn-primary:hover,
.preloader-text .btn-primary:focus {
    text-decoration: none;
}

.preloader-bus {
    width: 280px;
    margin: 100px auto 50px;
}

.bus-footer {
    width: 250px;
    margin: 0 auto;
    position: relative;
}

.bus-body {
    position: relative;
    width: 250px;
    margin: 0 auto;
    animation: updown-half 0.4s linear infinite;
}

.bus-wheel-front,
.bus-wheel-last,
.bus-wheel-back {
    border-radius: 100%;
    position: absolute;
    background-color: #333;
    top: -17px;
    height: 22px;
    width: 22px;
    animation: wheel-spin 0.6s linear infinite;
}

.bus-wheel-front:before,
.bus-wheel-last:before,
.bus-wheel-back:after {
    content: '';
    border-radius: 100%;
    left: 6px;
    top: 6px;
    position: absolute;
    background: linear-gradient(135deg, #afbdc3 0%, #afbdc3 50%, #8fa3ad 51%, #8fa3ad 100%);
    height: 10px;
    width: 10px;
}

.bus-wheel-front {
    right: 30px;
}

.bus-wheel-back {
    left: 44px;
}

.bus-wheel-last {
    left: 20px;
}

.bus-ground {
    margin-top: 6px;
    border-bottom: 1px solid #aeb3bc;
    margin-left: -20px;
    margin-right: -20px;
}

@keyframes wheel-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes updown-half {
    50% {
        transform: translateY(-2.5%);
    }

    70% {
        transform: translateY(-2%);
    }
}

.results-title {
    opacity: 0;
    transition: all 1s ease;
}

.search-results {
    max-height: 0;
    overflow: hidden;
    transform: translateY(400px);
    transition: opacity 0.5s, transform cubic-bezier(0.17, 0.67, 0.44, 0.91) 0.7s;
}

.ticket-show .search-results {
    opacity: 1;
    max-height: 1000000px;
    overflow: visible;
    transform: translateY(0);
}

.results-tickets {
    transition: opacity 0.5s, transform cubic-bezier(0.17, 0.67, 0.44, 0.91) 0.7s;
    transform: translateY(400px);
    max-height: 0;
    overflow: hidden;
}

.ticket-show .results-tickets {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000000px;
    overflow: visible;
}

.double-ticket {
    transform: translateY(70px);
    transition: all 0.8s ease;
    opacity: 0;
}

.tickes-filters {
    transform: translateY(70px);
    transition: all 0.8s ease;
    opacity: 0;
}

.double-ticket:nth-child(1) {
    transition-delay: 0.5s;
}

.double-ticket:nth-child(2) {
    transition-delay: 0.6s;
}

.double-ticket:nth-child(3) {
    transition-delay: 0.8s;
}

.double-ticket:nth-child(4) {
    transition-delay: 1s;
}

.double-ticket:nth-child(5) {
    transition-delay: 1.2s;
}

.double-ticket:nth-child(6) {
    transition-delay: 1.4s;
}

.double-ticket:nth-child(7) {
    transition-delay: 1.6s;
}

.double-ticket:nth-child(8) {
    transition-delay: 1.8s;
}

.double-ticket:nth-child(9) {
    transition-delay: 2s;
}

.double-ticket:nth-child(10) {
    transition-delay: 2.2s;
}

body.ticket-show .double-ticket {
    transform: translateY(0);
    opacity: 1;
}

body.ticket-show .tickes-filters {
    transform: translateY(0);
    opacity: 1;
}

body.ticket-show .results-title {
    opacity: 1;
}

body.ticket-show .search-results-preloader {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
}

.price-value.cross {
    font-size: 14px;
    text-decoration: line-through;
}

@media (max-width: 1699px) {
    .double-ticket-price {
        margin-right: 25px;
    }

    .double-ticket-footer .btn-primary,
    .single-ticket .btn-primary {
        width: 180px;
        font-size: 16px;
        height: 42px;
    }

     .double-ticket-footer .add-zvorot {
        padding: 0 20px;
        font-size: 15px;
        height: 42px;
     }

    .double-ticket-footer .zvorot-item .form-control {
        height: 42px;
    }

    .single-ticket .ticket-address {
        flex: 0 0 220px;
    }

    .single-ticket .ticket-choose {
        flex: 0 0 220px;
    }

    .single-ticket .ticket-duration {
        flex: 0 0 200px;
    }

    .single-ticket .duration-value {
        font-size: 14px;
    }

    .single-ticket .address-steet {
        font-size: 13px;
        max-width: 220px;
    }

    .single-ticket .order-payer-item .btn-primary {
        width: 100%;
        letter-spacing: 0.3px;
    }

    .order-payer-item .form-check .form-check-label {
        font-size: 14px;
    }

    .order-step-two {
        padding: 50px 70px 70px;
    }

    .order-controls .online-payment p {
        font-size: 11px;
    }

    .order-controls .online-payment {
        padding-left: 150px;
    }

    .order-controls .online-payment img {
        width: 120px;
    }

    .order-controls .reserv-payment-place h4,
    .order-controls .online-payment h4,
    .order-controls .cash-payment h4,
    .order-controls .book-payment h4 {
        font-size: 16px;
    }

    .order-head .h2,
    .order-head h2 {
        font-size: 24px;
    }

    .order-table .table-date {
        font-size: 17px;
    }

    .order-table .table-bonus,
    .order-table .table-street {
        font-size: 13px;
    }
}

@media (max-width: 1199px) {
    .single-ticket .ticket-duration {
        flex: 0 0 150px;
        margin-top: 5px;
        margin-left: -70px;
    }

    .order-ticket .small-bus .empty-seat img {
        transform: rotate(90deg);
    }


    .single-ticket .ticket-choose {
        flex: 0 0 200px;
    }

    .single-ticket .ticket-address {
        flex: 0 0 200px;
    }

    .single-ticket .address-steet {
        max-width: 100%;
    }

    .double-ticket-price {
        font-size: 16px;
    }

    .double-ticket-price span {
        font-size: 20px;
    }

    .ticket-dropdown .route-station:first-child .station-name,
    .ticket-dropdown .route-station:last-child .station-name {
        font-size: 16px;
    }

    .ticket-dropdown>.h3,
    .ticket-dropdown>h3 {
        margin: 0 0 15px;
    }

    .ticket-dropdown .ticket-route {
        margin-bottom: 20px;
    }

    .order-ticket .bus-map {
        border-radius: 42px 42px 10px 10px;
    }

    .order-ticket .seats-row {
        width: 30px;
        display: inline-block;
        float: right;
        margin-top: 20px;
    }

    .order-ticket .bus-salon {
        flex-direction: column;
        padding: 0 10px 12px 10px;
    }

    .order-ticket .empty-seat,
    .order-ticket .bus-seat {
        margin: 6px 0 0;
    }

    .order-ticket .seats-row {
        margin: 0 3px;
    }

    .order-ticket .bus-head img {
        transform: rotate(90deg);
    }

    .order-ticket .bus-head {
        padding: 20px 0 10px 3px;
    }

    .order-ticket .passenger-amount {
        flex-wrap: wrap;
    }

    .order-ticket .passenger-amount .h3 {
        width: 100%;
        text-align: center;
        margin: 0 0 20px;
    }

    .order-ticket .blur-text span {
        background-color: #fff;
        padding: 5px 0;
    }

    .order-info h4,
    .order-info .h4 {
        font-size: 16px;
        line-height: 1.4;
    }

    .order-table .table-date {
        font-size: 16px;
    }

    .order-table .table-price {
        font-size: 16px;
    }

    .table-total-price {
        font-size: 17px;
    }

    .order-timer {
        font-size: 16px;
    }

    .order-controls .online-payment img {
        width: 90px;
        left: 10px;
    }

    .order-controls .online-payment {
        padding-left: 110px;
    }

    .order-controls .cash-payment {
        padding-left: 110px;
    }

    .order-controls .cash-payment img {
        width: 70px;
    }

    .order-controls .online-payment,
    .order-controls .cash-payment,
    .order-controls .book-payment {
        padding-right: 5px;
    }

    .order-controls .reserv-payment-place h4,
    .order-controls .online-payment h4,
    .order-controls .cash-payment h4,
    .order-controls .book-payment h4 {
        font-size: 14px;
    }

    .order-controls .cancel-order h4 {
        font-size: 16px;
    }

    .order-controls .online-payment p,
    .order-controls .cash-payment p,
    .order-controls .book-payment p {
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .double-ticket-footer .ticket-zvorot {
        width: 100%;
        margin-bottom: 12px;
    }

    .double-ticket-footer .zvorot-item {
        flex-grow: 1;
        width: auto;
        min-width: 142px;
    }

    .double-ticket-footer .add-zvorot {
        white-space: nowrap;
    }

    .single-ticket .ticket-body {
        flex-wrap: wrap;
        padding: 12px;
    }

    .single-ticket .address-steet {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
        max-width: none;
        width: 100%;
    }

    .single-ticket .address-date {
        display: none;
    }

    .single-ticket .address-time {
        position: relative;
        padding-right: 21px;
        margin-right: 8px;
    }

    .single-ticket .address-time:after {
        content: '';
        position: absolute;
        right: 0;
        top: 6px;
        width: 17px;
        height: 17px;
        border-radius: 50%;
        border: 1px solid #888;
        background-color: #fff;
        z-index: 5;
        display: block;
    }

    .double-ticket .address-to {
        margin-bottom: 20px;
    }

    .single-ticket .address-to .address-time:after {
        background-color: #2C9B88;
        border: 3px solid #fff;
        box-shadow: 0 0 0 1px #2C9B88;
    }

    .single-ticket .address-from .address-time:before {
        content: '';
        width: 1px;
        height: 60px;
        background-color: #aaa;
        position: absolute;
        right: 8px;
        top: 14px;
    }

    .single-ticket .address-time span {
        flex: 0 0 52px;
        font-weight: 400;
    }

    .single-ticket .ticket-address {
        display: flex;
        align-items: baseline;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .single-ticket .address-city {
        margin-right: 10px;
    }

    .single-ticket .ticket-price {
        display: flex;
        align-items: center;
    }

    .single-ticket .price-value {
        margin-right: 10px;
    }

    .single-ticket .ticket-duration {
        margin: 2px 0 5px 25px;
        flex: 0 0 80px;
    }

    .single-ticket .duration-value span {
        font-size: 10px;
        padding: 2px 0 3px;
    }

    .single-ticket .duration-line {
        display: none;
    }

    .single-ticket .ticket-choose .btn-primary {
        margin-bottom: 5px;
    }

    .single-ticket .btn-primary {
        height: 40px;
        margin-top: 15px;
    }

    .single-ticket .ticket-footer .ticket-service,
    .single-ticket .ticket-footer .ticket-carrier {
        display: none;
    }

    .single-ticket .ticket-print {
        flex: 0 0 200px;
    }

    .single-ticket .ticket-footer {
        padding: 10px 12px;
    }

    .double-ticket .ticket-footer {
        padding: 0 12px 13px;
    }

    .order-ticket .passenger-amount .h3 {
        font-size: 18px;
    }

    .order-ticket .radio-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .filter-button {
        font-size: 13px;
        padding: 8px 8px 8px 8px;
    }

    .tickes-filters .day-filter {
        padding: 8px;
    }

    .order-final,
    .order-step-two {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .single-ticket .ticket-sale {
        font-size: 11px;
        line-height: 1.3;
        right: calc(100% - 2px);
    }

    .ticket-dropdown {
        padding: 0 15px;
    }

    .ticket-dropdown>.h3,
    .ticket-dropdown>h3 {
        font-size: 17px;
    }

    .ticket-dropdown .route-station:first-child .station-name,
    .ticket-dropdown .route-station:last-child .station-name {
        font-size: 14px;
    }

    .order-passenger-item {
        padding: 20px 30px;
    }

    .order-payer-item {
        padding: 30px;
    }

    .tickes-filters {
        flex-wrap: wrap;
    }

    .tickes-filters .day-filter {
        margin-right: 5px;
    }

    .filter-button {
        margin-bottom: 8px;
        font-size: 12px;
    }

    .results-title {
        font-size: 18px;
    }

    .order-table .table-price {
        font-size: 14px;
    }

    .order-table .table-user {
        font-size: 13px;
    }

    .order-table .table-bonus,
    .order-table .table-street {
        font-size: 11px;
    }

    .order-table .table-date {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .single-ticket .price-value {
        font-size: 20px;
        width: 100%;
        margin: 0 0 5px;
    }

    .single-ticket .address-time span {
        font-size: 18px;
    }

    .single-ticket .address-city {
        font-size: 16px;
    }

    .single-ticket .address-time:after {
        top: 4px;
    }

    .single-ticket .address-steet {
        font-size: 12px;
    }

    .single-ticket .ticket-price {
        flex: 0 0 57.5%;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .single-ticket .discount-item {
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .single-ticket .ticket-print {
        font-size: 12px;
    }

    .double-ticket-price {
        font-size: 14px;
        margin-right: 20px;
    }

    .single-ticket .ticket-choose {
        flex: 0 0 41.5%;
        flex-direction: column-reverse;
        margin-top: 10px;
        font-size: 13px;
    }

    .single-ticket .ticket-choose .btn-primary {
        width: 100%;
        margin-bottom: 0;
        margin-top: 5px;
    }

    .ticket-footer-toggle {
        font-size: 13px;
        padding-right: 16px;
    }

    .ticket-footer-toggle:after {
        width: 12px;
        top: 4px;
    }

    .double-ticket-price {
        width: 100%;
        text-align: center;
        margin: 0 0 5px;
    }

    .double-ticket .address-to {
        margin-bottom: 10px;
    }

    .double-ticket-footer .btn-primary {
        width: 100%;
    }

    .order-passenger-item {
        padding: 20px 10px;
    }

    .order-payer-item {
        padding: 30px 10px;
    }

    .order-passenger-item h3,
    .order-passenger-item .h3,
    .order-payer-item h3,
    .order-payer-item .h3 {
        font-size: 18px;
        font-weight: 500;
    }

    .seats-legend {
        display: block;
        margin-left: 10px;
        margin-bottom: 30px;
    }

    .legend-item {
        width: 100%;
        margin: 0 0 10px;
    }

    .order-table .table-bonus,
    .order-table .table-street {
        font-size: 10px;
    }

    .order-head .h2,
    .order-head h2 {
        font-size: 20px;
    }

    .order-final,
    .order-step-two {
        padding: 25px 10px;
    }

    .table-total-price span {
        font-size: 20px;
    }

    .order-controls .online-payment,
    .order-controls .cash-payment,
    .order-controls .book-payment,
    .order-controls .cancel-order {
        height: 90px;
        margin-bottom: 15px;
    }

    .double-ticket-footer .add-zvorot {
        font-size: 13px;
        padding: 0 12px;
    }
}

@media(max-width: 390px) {
    .double-ticket-footer .zvorot-item {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .double-ticket-footer .ticket-zvorot {
        flex-wrap: wrap;
    }

    .double-ticket-footer .add-zvorot {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .single-ticket .ticket-print {
        font-size: 11px;
        flex: auto;
        margin-left: 7px;
    }

    .single-ticket .no-print,
    .single-ticket .yes-print {
        padding-left: 25px;
    }

    .ticket-footer-toggle {
        font-size: 11px;
    }

    .single-ticket .no-print:after {
        width: 22px;
        height: 22px;
    }

    .ticket-footer-toggle:after {
        top: 2px;
    }

    .order-table .table-date {
        font-size: 13px;
    }
}

.choose-dates {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #BACADF;
    margin-bottom: 60px;
    margin-top: 70px;
}

.dates-head {
    flex: 0 0 300px;
    font-size: 20px;
}

.dates-head .dates-title span {
    font-weight: 700;
}

.dates-body {
    display: flex;
    flex-grow: 1;
}

.dates-body .date-item {
    width: calc(100% / 7);
    text-align: center;
    padding: 30px 10px;
    cursor: pointer;
    position: relative;
}

.dates-body .date-item:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background-color: #2C9B88;
    display: none;
}

.date-item .date-name {
    color: #758293;
    margin-bottom: 5px;
}

.date-item .date-price span {
    font-weight: 500;
}

.dates-body .date-item.active:after {
    display: block;
}

.dates-body .date-item.active .date-name {
    color: #111;
    font-weight: 500;
}

.city-section {
    padding: 60px 0;
}

.city-section .container {
    column-count: 2;
    column-gap: 50px;
}

.city-section img {
    border-radius: 10px;
    display: block;
    max-width: 100%;
}

.city-section ul,
.city-section ol {
    padding-left: 20px;
}

@media (max-width: 1699px) {
    .date-item .date-name {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .dates-head {
        flex: 0 0 220px;
    }

    .dates-head .dates-title {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .dates-head {
        flex: 0 0 180px;
    }

    .dates-body .date-item {
        padding: 20px 10px;
        display: block;
        width: 90px;
        flex: 0 0 90px;
    }

    .dates-head .dates-title {
        font-size: 18px;
    }

    .dates-body {
        overflow-x: auto;
    }

    .dates-body .date-item:after {
        bottom: 0;
    }

    .city-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .choose-dates {
        margin: 20px 0 40px;
    }

    .dates-head .dates-title {
        font-size: 16px;
    }

    .city-section .container {
        column-count: 1;
    }
}

.about-text ul,
.about-text ol {
    padding-left: 20px;
}

.about-img {
    position: relative;
}

.about-img .vertical-img {
    width: 460px;
}

.about-img .vertical-img img {
    display: block;
    max-width: 100%;
    border-radius: 5px;
}

.about-img .sm-img {
    position: absolute;
    top: 40px;
    right: 60px;
}

.about-img .sm-img img {
    display: block;
    width: 320px;
    border: 3px solid #fff;
    border-radius: 5px;
}

.about-img .well {
    width: 190px;
    background-color: #E9F0F9;
    border: 3px solid #fff;
    text-align: center;
    box-shadow: none;
    border-radius: 5px;
    position: absolute;
    bottom: -70px;
    left: 360px;
    padding: 50px 15px;
}

.about-img .well .h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 10px;
    color: #2C9B88;
}

.about-text h1 {
    font-size: 32px;
}

.about-text h2 {
    font-size: 26px;
}

.about-text a {
    color: #2C9B88;
    text-decoration: underline;
    font-weight: 500;
}

.about-text a span {
    color: #2C9B88!important;
}

.about-text a:hover {
    text-decoration: none;
}

.about-text ul {
    margin-top: 10px;
}


@media (max-width: 1699px) {
    .about-img .vertical-img {
        width: 420px;
    }

    .about-img .well {
        left: 320px;
    }

    .about-img .sm-img {
        top: 20px;
    }

    .about-img .sm-img img {
        width: 280px;
    }

    .about-text h1 {
        font-size: 28px;
    }

    .about-text h2 {
        font-size: 24px;
    }
}

@media (max-width: 1199px) {
    .about-img .vertical-img {
        width: 320px;
    }

    .about-img .well {
        left: 250px;
    }

    .about-img .sm-img img {
        width: 150px;
    }

    .about-img .well {
        width: 180px;
        padding: 40px 15px;
    }

    .about-img .well .h2 {
        font-size: 38px;
    }
}

@media (max-width: 991px) {
    .about-img {
        margin-bottom: 50px;
    }

    .about-img .vertical-img {
        width: 400px;
    }

    .about-img .sm-img {
        right: auto;
        left: 380px;
    }

    .about-img .sm-img img {
        width: 300px;
    }

    .about-img .well {
        width: 300px;
        padding: 30px 10px;
        bottom: -40px;
    }

    .about-text h1 {
        font-size: 24px;
    }

    .about-text h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .about-img .sm-img {
        left: 300px;
    }

    .about-img .sm-img img {
        width: 200px;
    }

    .about-img .vertical-img {
        width: 320px;
    }
}

@media (max-width: 575px) {
    .about-img .sm-img {
        left: 150px;
    }

    .about-img .sm-img img {
        width: 200px;
    }

    .about-img .vertical-img {
        width: 280px;
    }

    .about-img .well {
        width: 150px;
    }
}

@media (max-width: 479px) {
    .about-img .sm-img {
        left: 120px;
        top: -50px;
    }

    .about-img .sm-img img {
        width: 200px;
    }

    .about-img .vertical-img {
        margin-bottom: 80px;
        margin-top: 50px;
    }

    .about-img .well {
        width: 150px;
        left: 180px;
        bottom: -80px;
    }
}

@media (max-width: 375px) {
    .about-img .sm-img {
        left: 100px;
    }

    .about-img .well {
        left: 150px;
    }
}

.accordion-head h3,
.accordion-head .h3 {
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 12px;
}

.faq-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.faq-aside figure {
    width: 490px;
    position: relative;
    max-width: 100%;
}

.faq-aside figure img {
    display: block;
    max-width: 100%;
    border-radius: 5px;
}

.faq-aside figcaption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #fff;
    border-radius: 5px;
    padding: 20px 10px 15px 25px;
    font-size: 18px;
    color: #6A6868;
}

.faq-aside figcaption a {
    font-size: 28px;
    color: #121212;
    font-weight: 500;
}

.faq-aside figcaption a:hover {
    text-decoration: underline;
}

.faq-aside .btn-primary {
    display: block;
    width: 100%;
    font-size: 18px;
    padding: 8px 0;
    font-weight: 400;
    margin-top: 40px;
}

.faq-aside .form-group {
    margin-bottom: 20px;
}

.faq-aside .form-holder {
    width: 490px;
    margin-top: 50px;
    max-width: 100%;
}

.faq-aside .form-holder h2,
.faq-aside .form-holder .h2 {
    font-size: 28px;
    font-weight: 500;
    margin: 0 0 5px;
}

.faq-aside .form-holder>p {
    font-size: 16px;
    color: #74747A;
}

@media (max-width: 1699px) {
    .faq-aside figure {
        width: 400px;
    }

    .faq-aside .form-holder {
        width: 400px;
    }

    .faq-aside .form-holder h2,
    .faq-aside .form-holder .h2 {
        font-size: 24px;
    }

    .accordion-head h3,
    .accordion-head .h3 {
        font-size: 20px;
    }
}

@media (max-width: 1199px) {
    .panel-title>a {
        font-size: 14px;
    }

    .faq-aside .form-holder,
    .faq-aside figure {
        width: 320px;
    }

    .faq-aside figcaption a {
        font-size: 22px;
    }

    .faq-aside figcaption {
        left: 10px;
        right: 10px;
        bottom: 10px;
        font-size: 16px;
    }

    .faq-aside .form-holder h2,
    .faq-aside .form-holder .h2 {
        font-size: 20px;
    }

    .faq-aside .form-holder>p {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .faq-aside figure img {
        display: none;
    }

    .faq-aside .form-holder,
    .faq-aside figure {
        width: 100%;
    }

    .faq-aside figcaption {
        position: static;
        background-color: #E7FDF2;
        color: #333;
    }

    .accordion-head h3,
    .accordion-head .h3 {
        font-size: 18px;
    }
}

.contact-item h3,
.contact-item .h3,
.contacts-maps h3,
.contacts-maps .h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 15px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item .link-item {
    position: relative;
    padding-left: 32px;
    margin: 13px 0;
}

.contact-item .link-item img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 23px;
    max-height: 25px;
}

.contact-item .link-item a {
    color: #121212;
}

.contact-item.wide-item .link-item {
    display: inline-flex;
    margin: 5px 20px 10px 0;
    padding-left: 30px;
}

.contact-item.wide-item .link-item:last-child {
    padding-left: 25px;
}

.poll-box {
    background-color: #E9F6FE;
    border-radius: 5px;
    max-width: 580px;
    padding: 35px 35px 25px;
    font-size: 18px;
    color: #545454;
    margin-top: 50px;
}

.poll-box h2,
.poll-box .h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 15px;
    color: #121212;
}

.poll-box a {
    color: #2A398C;
    font-weight: 500;
    text-decoration: underline;
}

.poll-box a:hover {
    text-decoration: none;
}

.frame-item {
    margin-bottom: 50px;
}

.frame-item p {
    font-size: 18px;
    margin: 0 0 10px;
}

.frame-item iframe {
    width: 100% !important;
    height: 280px !important;
}

@media (max-width: 1699px) {
    .poll-box {
        font-size: 16px;
    }

    .poll-box h2,
    .poll-box .h2 {
        font-size: 20px;
    }

    .frame-item p {
        font-size: 16px;
    }
}

@media (max-width: 1199px) {
    .contacts-maps {
        margin-top: 50px;
    }

    .contact-item h3,
    .contact-item .h3,
    .contacts-maps h3,
    .contacts-maps .h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .poll-box {
        max-width: 100%;
        font-size: 14px;
    }

    .poll-box h2,
    .poll-box .h2 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {

    .contact-item h3,
    .contact-item .h3,
    .contacts-maps h3,
    .contacts-maps .h3 {
        font-size: 20px;
    }

    .contact-item .link-item {
        font-size: 16px;
    }

    .poll-box {
        margin-top: 20px;
        padding: 25px 25px 10px;
    }
}

.news-head {
    display: flex;
    margin-bottom: 40px;
}

.news-head .select-container {
    margin-left: auto;
}

.news-item {
    margin-bottom: 60px;
}

.news-item .item-img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.25s;
    margin-bottom: 5px;
    position: relative;
    border-radius: 5px;
    margin-bottom: 8px;
    aspect-ratio: 4 / 2.8;
}

.news-item .item-img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    outline: none;
}

.news-item .item-img picture {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.news-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.news-item .item-img:hover {
    opacity: 0.8;
}

.news-item .item-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #121212;
    line-height: 1.2;
}

.news-item .item-title a {
    text-decoration: none;
    color: inherit;
}

.news-item .item-title a:hover {
    text-decoration: underline;
}

.news-item .item-date {
    color: #121212;
    font-size: 13px;
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    text-align: center;
    line-height: 1.2;
    padding: 8px 8px 10px;
}

.news-item .item-date span {
    font-size: 24px;
    font-weight: 500;
    display: block;
}

.btn-primary.load-more {
    width: 320px;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 10px 5px;
}

.article-col {
    padding-right: 50px;
}

.article-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.article-col img {
    display: block;
    max-width: 100%;
    border-radius: 5px;
}

.article-col ul,
.article-col ol {
    padding-left: 20px;
    margin: -5px 0 10px;
}

.article-col iframe {
    max-width: 100%;
    margin: 15px 0;
}

.aside-col {
    background-color: #E7FDF2;
    border-radius: 5px;
    padding: 25px 25px 5px;
}

.article-col h1,
.article-col .h1 {
    font-size: 36px;
    margin: 0 0 20px;
}

.aside-col .h3,
.aside-col h3 {
    font-size: 24px;
    margin: 0 0 20px;
    font-weight: 500;
}

.aside-col .news-item {
    display: flex;
    margin-bottom: 20px;
}

.aside-col .item-body {
    margin-top: -3px;
}

.aside-col .item-img {
    height: 110px;
    width: 150px;
    flex: 0 0 150px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.25s;
    margin-right: 12px;
}

.aside-col .item-img picture {
    display: block;
    width: 100%;
    height: 100%;
}

.aside-col .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aside-col .item-img a {
    display: block;
    width: 100%;
    height: 100%;
    outline: 0;
}

.aside-col .item-img:hover {
    opacity: 0.8;
}

.aside-col .item-title {
    font-size: 16px;
    line-height: 1.4;
}

.aside-col .item-title a {
    color: inherit;
    text-decoration: none;
}

.aside-col .item-title a:hover {
    text-decoration: underline;
}

.aside-col .item-date {
    font-size: 10px;
    left: 8px;
    bottom: 8px;
}

.aside-col .item-date span {
    font-size: 16px;
}

@media (max-width: 1699px) {
    .news-item .item-title {
        font-size: 17px;
    }

    .news-item .item-date {
        font-size: 11px;
    }

    .news-item .item-date span {
        font-size: 20px;
    }

    .article-col h1,
    .article-col .h1 {
        font-size: 32px;
    }

    .article-col h2,
    .article-col .h2 {
        font-size: 28px;
    }

    .aside-col {
        padding: 20px 20px 5px;
    }

    .news-item .item-title {
        font-size: 16px;
    }

    .aside-col .item-img {
        height: 110px;
    }
}

@media (max-width: 1199px) {
    .aside-col .item-img {
        height: 100px;
        width: 120px;
        flex: 0 0 120px;
    }

    .news-item .item-date {
        font-size: 10px;
        left: 5px;
        bottom: 5px;
        padding: 5px;
    }

    .news-item .item-title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .aside-col {
        margin-top: 30px;
    }

    .aside-col .item-img {
        height: 150px;
        width: 200px;
        flex: 0 0 200px;
    }

    .news-item .item-title {
        font-size: 16px;
    }

    .article-col {
        padding-right: 15px;
    }

    .article-col h2,
    .article-col .h2 {
        font-size: 24px;
    }

    .article-col h3,
    .article-col .h3 {
        font-size: 20px;
    }

    .article-col h4,
    .article-col .h4 {
        font-size: 18px;
    }

    .article-col h5,
    .article-col .h5 {
        font-size: 16px;
    }

    .article-col h6,
    .article-col .h6 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .news-head {
        width: 500px;
        margin: 0 auto 30px;
    }

    .news-head .select-container {
        display: block;
        width: 100%;
    }

    .news-head .select-container .select-dropdown,
    .news-head .select-container .select-button,
    .news-head .select-container .select-box {
        width: 100%;
    }

    .news-item {
        width: 500px;
        margin: 0 auto 30px;
    }

    .aside-col .item-img {
        height: 150px;
        width: 200px;
        flex: 0 0 200px;
    }

    .aside-col .news-item {
        width: 100% !important;
    }

    .article-col h1,
    .article-col .h1 {
        font-size: 28px;
        line-height: 1.4;
    }
}

@media (max-width: 575px) {
    .news-head {
        width: 400px;
    }

    .news-item {
        width: 400px;
    }

    .aside-col .item-img {
        height: 100px;
        width: 150px;
        flex: 0 0 150px;
    }

    .article-col h1,
    .article-col .h1 {
        font-size: 24px;
    }

    .article-col iframe {
        height: 280px !important;
    }
}

@media (max-width: 479px) {
    .news-head {
        width: 360px;
    }

    .news-item {
        width: 360px;
    }

    .aside-col .item-img {
        height: 80px;
        width: 120px;
        flex: 0 0 120px;
    }

    .btn-primary.load-more {
        width: 100%;
    }
}

@media (max-width: 400px) {
    .news-head {
        width: 100%;
    }

    .news-item {
        width: 100%;
    }
}

@media (max-width: 375px) {
    .aside-col .item-img {
        height: 80px;
        width: 120px;
        flex: 0 0 120px;
    }

    .news-item .item-title {
        font-size: 14px;
    }
}

.map-section {
    padding: 50px 0;
}

.map-section iframe {
    width: 100% !important;
    height: 450px !important;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.review-section {
    padding: 60px 0 0;
}

.route-title {
    font-size: 38px;
    margin: 0 0 25px;
    font-family: 'title-font', 'Roboto', Arial;
    color: #2C9B88;
}


.reviews-head {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.reviews-head .btn-outline {
    width: 280px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.reviews-head .btn-outline .active-state {
    display: none;
}

.reviews-head .btn-outline .default-state {
    display: block;
}

.reviews-head .btn-outline.is-active .active-state {
    display: block;
}

.reviews-head .btn-outline.is-active .default-state {
    display: none;
}

.review-section .route-title {
    margin-bottom: 5px;
    font-size: 30px;
}

.review-section .reviews-head p {
    color: #454545;
    margin: 0;
}

.reviews-slider {
    margin: 0 -15px 50px;
    z-index: 10;
}

.reviews-slider .slick-track {
    display: flex;
}

.reviews-slider .item {
    margin: 0 15px;
    background-color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    padding: 15px;
    outline: 0;
    min-height: 300px;
}

.reviews-slider .slick-list {
    padding: 0 0 10px;
}

.reviews-slider .route-img {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 5px;
}

.reviews-slider .route-direction {
    font-size: 20px;
    font-weight: 500;
    color: #2C9B88;
    line-height: 1.2;
}

.reviews-slider .route-price {
    color: #2C9B88;
}

.reviews-slider .route-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviews-slider .slick-arrow {
    position: absolute;
    top: calc(50% - 21px);
    width: 42px;
    height: 42px;
    z-index: 1;
    padding: 5px 0 0;
    border-radius: 50%;
    background-color: transparent;
    border: 0;
}

.reviews-slider .slick-next {
    right: -35px;
}

.reviews-slider .slick-prev {
    left: -35px;
}

.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.review-author {
    font-size: 20px;
    font-weight: 500;
}

.review-date {
    color: #676767;
    font-size: 14px;
}

.review-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 8px;
}

.review-stars span {
    margin-right: 1px;
}

.review-city {
    margin-bottom: 5px;
    color: #454545;
}

.review-text {
    font-size: 14px;
}

.review-stars p {
    margin: 2px 0 0;
    margin-left: 7px;
    font-size: 15px;
}

.review-stars .full-star {
    font-size: 0;
    white-space: nowrap;
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    overflow: hidden;
    background: url(../img/icons/full-star.svg) no-repeat center;
    background-size: contain;
}

.review-stars .empty-star {
    font-size: 0;
    white-space: nowrap;
    display: inline-block;
    vertical-align: top;
    width: 20px;
    height: 20px;
    overflow: hidden;
    position: relative;
    background: url(../img/icons/empty-star.svg) no-repeat center;
    background-size: contain;
}

.raiting-group {
    margin: 0 0 10px 10px;
    font-size: 14px;
    font-weight: 500;
}

.star-rating {
    font-size: 0;
    white-space: nowrap;
    display: inline-block;
    vertical-align: top;
    width: 120px;
    height: 20px;
    overflow: hidden;
    position: relative;
    background: url("../img/icons/empty-star.svg") repeat-x;
    background-size: contain;
}

.star-rating i {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 20%;
    z-index: 1;
    background: url("../img/icons/full-star.svg") repeat-x;
    background-size: contain;
}

.star-rating input {
    -moz-appearance: none;
    -webkit-appearance: none;
    opacity: 0;
    display: inline-block;
    width: 20%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 2;
    position: relative;
    cursor: pointer;
}

.star-rating input:hover+i,
.star-rating input:hover+label+i,
.star-rating input:checked+i,
.star-rating input:checked+label+i {
    opacity: 1;
}

.star-rating input.error+i,
.star-rating input.error+label+i,
.star-rating input.error+i,
.star-rating input.error+label+i {
    opacity: 1;
    filter: hue-rotate(81deg);
}

.star-rating i~i {
    width: 40%;
}

.star-rating i~i~i {
    width: 60%;
}

.star-rating i~i~i~i {
    width: 80%;
}

.star-rating i~i~i~i~i {
    width: 100%;
}

.review-form-container {
    max-width: 420px;
    margin: 0 auto 50px;
    display: none;
}

.review-form-container .route-title {
    text-align: center;
}

.review-form-container>p {
    text-align: center;
    color: #74747A;
    margin: 0 0 30px;
}

.review-form-container .form-control {
    height: 48px;
}

.review-form-container .form-group label {
    font-weight: 400;
}

.review-form-container .btn-primary {
    height: 48px;
    width: 100%;
    margin-top: 10px;
}

.review-form-container textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.rating-group {
    margin-top: 25px;
    margin-bottom: 25px;
}

.rating-group label {
    font-weight: 400;
    margin-right: 5px;
    margin-bottom: 0;
}

.review-section .alert {
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
}

.routes-table {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.table-responsive {
    border-radius: 20px;
    position: relative;
}

.bordered-table {
    padding: 25px 27px;
    background-color: rgba(0,0,0, 0.2);
    border-radius: 20px;
}

.routes-table th {
    background-color: #F7F7F8;
    border-bottom: 1px solid #D2D2D6;
    padding: 15px 12px;
}

.routes-table th:first-child {
    border-top-left-radius: 16px;
}

.routes-table th:last-child {
    border-top-right-radius: 16px;
}

.routes-table td {
    padding: 11px;
    border-bottom: 1px solid #D2D2D6;
}

.routes-table .btn-primary {
    font-size: 14px;
    width: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.routes-table tr:last-child td {
    border: 0;
}

.popular-table {
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}

.popular-table table {
    width: 100%;
}

.popular-table>tbody>tr>td {
    width: 50%;
}

.popular-table>tbody>tr>td:first-child td:last-child {
    padding-right: 60px;
}

.popular-table table td:last-child {
    color: #EE7C0E;
}

.popular-table>tbody>tr>td:last-child td:first-child {
    padding-left: 60px;
}

.popular-table td {
    vertical-align: top;
}


.popular-table td td {
    padding: 20px;
    border: 0;
    border-bottom: 1px solid #D2D2D6;
}

.popular-table td td:last-child {
    text-align: right;
    font-weight: 500;
}

.popular-table a {
    color: #111;
}

.table-show-more {
    margin: 15px 0 15px 20px;
    color: #609fff;
    cursor: pointer;
}

@media(min-width: 992px) {
    .popular-table table tr:last-child td {
        border-bottom: 0;
    }
}

@media (max-width: 1699px) {
    .route-title {
        font-size: 24px;
    }

    .review-section .route-title {
        font-size: 26px;
    }
}

@media (max-width: 1199px) {
    .review-text {
        font-size: 13px;
    }

    .table-responsive {
        font-size: 13px;
    }
}

@media (max-width: 991px) {
    .reviews-slider .item {
        margin: 0 8px;
    }

    .reviews-slider {
        margin: 0 -10px 50px;
    }

    .route-title {
        font-size: 22px;
    }

    .review-section .route-title {
        font-size: 24px;
    }

    .reviews-head .btn-outline {
        width: 160px;
        padding: 5px;
    }

    .reviews-head>div {
        padding-right: 12px;
    }

    .review-section .reviews-head p {
        font-size: 13px;
    }

    .popular-table,
    .popular-table>tbody,
    .popular-table>tbody>tr,
    .popular-table>tbody>tr>td {
        display: block;
        width: 100%;
    }

    .popular-table>tbody>tr>td:first-child td:last-child {
        padding-right: 15px;
    }

    .popular-table>tbody>tr>td:last-child td:first-child {
        padding-left: 15px;
    }

    .popular-table table td {
        padding: 12px;
    }

    .popular-table>tbody>tr>td:last-child tr:last-child td {
        border: 0;
    }

    .white-space.resporsive-h {
        height: 10px;
    }
}

@media (max-width: 767px) {
    .reviews-slider .slick-list {
        padding-bottom: 10px !important;
    }

    .reviews-section {
        padding: 40px 0;
    }

    .review-section .route-title {
        font-size: 22px;
    }

    .reviews-head {
        display: block;
    }

    .reviews-head .btn-outline {
        width: 100%;
        height: 40px;
        margin-top: 15px;
    }

    .routes-table thead {
        display: none;
    }

    .routes-table {
        background-color: transparent;
        box-shadow: none;
    }

    .routes-table tr {
        display: block;
        margin-bottom: 15px;
        border-radius: 10px;
        background-color: #fff;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
    }

    .routes-table td {
        border-bottom: 1px solid #D2D2D6 !important;
        display: block;
        font-size: 13px;
        text-align: right;
    }

    .routes-table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
    }

    .routes-table td:last-child {
        border-bottom: 0 !important;
    }

    .routes-table .btn-primary {
        display: inline-block;
        text-align: center;
        width: 150px;
    }
}

@media (max-width: 575px) {
    .reviews-slider {
        margin-left: -15px;
        margin-right: -15px;
    }

    .reviews-slider .item {
        width: 280px;
    }

    .review-author {
        font-size: 16px;
    }

    .review-date {
        font-size: 11px;
    }

    .popular-table td td {
        padding: 10px !important;
    }

    .popular-table td td:last-child {
        min-width: 110px;
    }

    .bordered-table {
        padding: 0;
        background-color: transparent;
    }
}


#wrapper {
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.page-content {
    flex: 1;
}

#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 101vh;
    /* background: rgba(5, 25, 55, 0.7); */
    background: rgba(0, 13, 10, 0.7);
    z-index: 1;
    display: none;
}

@media (min-width: 1700px) {
    .container {
        width: 1440px;
    }
}

.order-ticket label.active {
    background-color: #EE7907;
    border-color: #EE7907;
    color: #fff;
}

#search-results .red input {
    border: 1px solid #ff0000 !important;
}

#search-results .rules span {
    font-weight: bold;
}

.discount_details .discount_item {
    display: block;
    width: 100%;
}

.red .form-check-label::before {
    border: 1px solid #f00;
}

.copy_link {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: #2C9B88;
    padding-left: 25px;
}

.copy_link:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='18' viewBox='0 0 24 18' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6 6C5.20435 6 4.44129 6.31607 3.87868 6.87868C3.31607 7.44129 3 8.20435 3 9C3 9.79565 3.31607 10.5587 3.87868 11.1213C4.44129 11.6839 5.20435 12 6 12H9C9.26522 12 9.51957 12.1054 9.70711 12.2929C9.89464 12.4804 10 12.7348 10 13C10 13.2652 9.89464 13.5196 9.70711 13.7071C9.51957 13.8946 9.26522 14 9 14H6C4.67392 14 3.40215 13.4732 2.46447 12.5355C1.52678 11.5979 1 10.3261 1 9C1 7.67392 1.52678 6.40215 2.46447 5.46447C3.40215 4.52678 4.67392 4 6 4H9C9.26522 4 9.51957 4.10536 9.70711 4.29289C9.89464 4.48043 10 4.73478 10 5C10 5.26522 9.89464 5.51957 9.70711 5.70711C9.51957 5.89464 9.26522 6 9 6H6ZM7 9C7 8.73478 7.10536 8.48043 7.29289 8.29289C7.48043 8.10536 7.73478 8 8 8H16C16.2652 8 16.5196 8.10536 16.7071 8.29289C16.8946 8.48043 17 8.73478 17 9C17 9.26522 16.8946 9.51957 16.7071 9.70711C16.5196 9.89464 16.2652 10 16 10H8C7.73478 10 7.48043 9.89464 7.29289 9.70711C7.10536 9.51957 7 9.26522 7 9ZM15 4C14.7348 4 14.4804 4.10536 14.2929 4.29289C14.1054 4.48043 14 4.73478 14 5C14 5.26522 14.1054 5.51957 14.2929 5.70711C14.4804 5.89464 14.7348 6 15 6H18C18.7956 6 19.5587 6.31607 20.1213 6.87868C20.6839 7.44129 21 8.20435 21 9C21 9.79565 20.6839 10.5587 20.1213 11.1213C19.5587 11.6839 18.7956 12 18 12H15C14.7348 12 14.4804 12.1054 14.2929 12.2929C14.1054 12.4804 14 12.7348 14 13C14 13.2652 14.1054 13.5196 14.2929 13.7071C14.4804 13.8946 14.7348 14 15 14H18C19.3261 14 20.5979 13.4732 21.5355 12.5355C22.4732 11.5979 23 10.3261 23 9C23 7.67392 22.4732 6.40215 21.5355 5.46447C20.5979 4.52678 19.3261 4 18 4H15Z' fill='%232C9B88'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.copy_link:hover {
    text-decoration: underline;
}

.focus-badge {
    position: absolute;
    color: #111;
    bottom: calc(100% + 10px);
    background-color: #d6e3f6;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 13px;
    width: 180px;
    margin: 0 auto;
    border-radius: 3px;
    padding: 3px;
    transition: 0.25s;
    pointer-events: none;
    opacity: 0;
}

.seat_one .disabled {
    display: none;
}

.main-footer {
    background-color: #126A57;
    color: #fff;
    padding: 40px 0 10px;
    position: relative;
    z-index: 10;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.main-footer:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../img/green-roads.svg) no-repeat center;
    background-size: cover;
    opacity: 0.15;
    z-index: 1;
}

.footer-logo {
    display: block;
    max-width: 310px;
}

.main-footer .h3 {
    color: #F1A225;
    font-size: 18px;
    margin: 5px 0 10px;
}

.main-footer ul {
    list-style: none;
    padding: 0;
    margin: 5px 0 0;
}

.main-footer ul li {
    margin-bottom: 12px;
}

.main-footer ul a {
    color: #fff;
    display: inline-block;
    transition: 0.25s;
}

.main-footer ul a:hover {
    color: #F1A225;
    text-decoration: none;
}

.footer-descr {
    margin-top: 15px;
    margin-bottom: 85px;
    max-width: 350px;
}

.main-footer .social-box {
    margin-bottom: 40px;
    display: flex;
}

.main-footer .social-box a {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: flex-end;
    margin-right: 25px;
    transition: 0.25s;
}

.main-footer .social-box a:hover {
    text-decoration: none;
    opacity: 0.7;
}

.main-footer .social-box span {
    display: block;
}

@media (max-width: 1199px) {
    .main-footer {
        padding: 30px 0 20px;
    }

    .main-footer ul a {
        font-size: 13px;
    }

    .footer-logo {
        max-width: 220px;
    }

    .footer-descr {
        font-size: 13px;
        max-width: 100%;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .main-footer .social-box a {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .main-footer {
        padding: 30px 0 5px;
    }

    .main-footer .col-md-4 {
        clear: both;
    }

    .footer-descr {
        margin-bottom: 20px;
    }

    .main-footer ul {
        margin-bottom: 30px;
    }

    .footer-copyright {
        margin-bottom: 20px;
    }

    .main-footer .h3 {
        font-size: 16px;
    }

    .main-footer .social-box {
        margin-bottom: 30px;
    }

    .main-footer .social-box a {
        font-size: 11px;
    }
}

.cookies-message {
    border: 1px solid #A7AAB4;
    border-radius: 20px;
    background-color: #fff;
    position: fixed;
    right: 40px;
    bottom: 40px;
    width: 600px;
    z-index: 1000;
    padding: 50px;
    font-size: 16px;
}

.cookies-message .h3,
.cookies-message h3 {
    font-size: 24px;
    margin: 0 0 20px;
}

.cookies-message .btn-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.cookies-message a {
    color: #2A398C;
    text-decoration: underline;
}

.cookies-message a:hover {
    text-decoration: none;
}

.cookies-message .btn-danger {
    padding: 15px;
    width: 220px;
}

@media (max-width: 1699px) {
    .cookies-message {
        padding: 35px;
        right: 30px;
        bottom: 30px;
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .cookies-message {
        padding: 25px;
        width: 500px;
    }

    .cookies-message .h3,
    .cookies-message h3 {
        font-size: 20px;
    }

    .cookies-message .btn-danger {
        width: 180px;
        height: 44px;
        padding: 10px;
    }
}

@media (max-width: 991px) {
    .cookies-message {
        padding: 20px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        width: auto;
        font-size: 14px;
    }

    .cookies-message .btn-danger {
        width: 130px;
        height: 44px;
        padding: 10px;
    }
}

@media (max-width: 479px) {
    .cookies-message {
        border-radius: 10px;
        right: 8px;
        bottom: 8px;
        left: 8px;
        font-size: 13px;
        padding: 18px;
    }

    .cookies-message .h3,
    .cookies-message h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cookies-message a {
        width: 120px;
    }
}

.text-container {
    max-width: 800px;
    margin: 0 auto 30px;
}

.text-container .h1,
.text-container h1 {
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 20px;
    text-align: center;
}

.text-container .h2,
.text-container h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 25px 0 10px;
}

.text-container .h3,
.text-container h3 {
    font-size: 20px;
    font-weight: 500;
    margin: 25px 0 10px;
}

.text-container .h4,
.text-container h4 {
    font-size: 16px;
    margin: 0 0 5px;
    font-weight: 500;
}

.text-container img {
    display: block;
    max-width: 100%;
}

.text-container p {
    margin: 0 0 10px;
}

.text-container .align-left {
    margin: 15px 20px 5px 0;
}

.text-container .align-right {
    margin: 12px 0 5px 20px;
}

.text-container b,
.text-container strong {
    font-weight: 700;
}

.text-container a {
    text-decoration: underline;
    font-weight: 500;
    color: #2A398C;
}

.text-container a:hover {
    text-decoration: none;
}

.text-container ol,
.text-container ul {
    padding-left: 20px;
    margin: -5px 0 15px;
}

.text-container iframe {
    max-width: 100%;
}

@media (max-width: 1199px) {

    .text-container .h1,
    .text-container h1 {
        font-size: 32px;
    }

    .text-container .h2,
    .text-container h2 {
        font-size: 20px;
    }

    .text-container .h3,
    .text-container h3 {
        font-size: 16px;
    }

    .text-container .h4,
    .text-container h4 {
        font-size: 14px;
    }
}

@media (max-width: 991px) {

    .text-container .h1,
    .text-container h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {

    .text-container .h1,
    .text-container h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .text-container img {
        display: block;
        float: none !important;
        margin: 10px auto !important;
    }
}

.auth-content {
    width: 420px;
    margin: 0 auto;
    padding: 80px 0 90px;
}

.auth-content .title-box {
    text-align: center;
    margin-bottom: 25px;
}

.auth-content .title-box h1,
.auth-content .title-box .h1 {
    font-size: 32px;
    margin: 0 0 8px;
    font-family: 'kabelc_bold', 'Roboto', Arial;
    color: #2C9B88;
}

.auth-content .title-box .subtitle {
    color: #68686c;
}

.auth-content .btn-primary {
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-content .flex-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    margin-top: 30px;
}

.auth-content .flex-container label {
    font-weight: 400;
    font-size: 15px;
}

.auth-content .flex-container .recover-link {
    color: #34495e;
    font-size: 15px;
}

.auth-content .form-group {
    margin-bottom: 25px;
}

.auth-content .checkbox-item {
    position: relative;
}

.auth-content .checkbox-item label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.auth-content .checkbox-item label:before,
.auth-content .checkbox-item label:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    top: 0;
}

.auth-content .checkbox-item label:before {
    width: 20px;
    height: 20px;
    border: 1px solid #C2C2C2;
    border-radius: 3px;
    z-index: 1;
}

.auth-content .checkbox-item label:after {
    background: url("../img/icons/check-icon.svg") no-repeat center;
    opacity: 0;
    z-index: 5;
}

.auth-content .checkbox-item input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

.auth-content .checkbox-item input:checked~label:before {
    background-color: red;
    border-color: red;
}

.auth-content .checkbox-item input:checked~label:after {
    opacity: 1;
}

.success-icon {
    display: block;
    width: 60px;
    margin: 0 auto 20px;
}

.success-text {
    margin-bottom: 30px;
}

.social-buttons {
    margin-bottom: 20px;
}

.social-buttons .facebook-btn,
.social-buttons .google-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    outline: 0;
    cursor: pointer;
    height: 38px;
    transition: 0.25s;
    border-radius: 4px;
}

.social-buttons .facebook-btn img,
.social-buttons .google-btn img {
    margin-right: 7px;
}

.social-buttons .facebook-btn {
    border: 1px solid #1B74E4;
    background-color: #1B74E4;
    color: #fff;
}

.social-buttons .facebook-btn img {
    max-height: 20px;
    margin-top: -2px;
}

.social-buttons .facebook-btn:hover {
    border: 1px solid #2b5bb9;
    background-color: #2b5bb9;
}

.social-buttons .google-btn {
    background-color: #fff;
    border: 1px solid #c2c2c2;
}

.social-buttons .google-btn:hover {
    border: 1px solid #abb2d4;
    background-color: #EFF3F8;
}

.form-divider {
    position: relative;
    margin: 30px 0;
    height: 10px;
}

.form-divider:before {
    content: '';
    height: 1px;
    position: absolute;
    left: 0;
    top: 5px;
    width: 100%;
    background-color: #c2c2c2;
    z-index: 1;
}

.form-divider i {
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    margin: 0 auto;
    width: 50px;
    z-index: 5;
    background-color: #fff;
    text-align: center;
    font-style: normal;
}

.auth-link-text {
    margin-top: 25px;
    text-align: center;
}

.auth-link-text a {
    color: #2C9B88;
    margin-left: 3px;
}

@media (max-width: 767px) {
    .auth-page .title-box h1 {
        font-size: 24px;
    }

    .auth-page .page-content {
        padding: 50px 0 80px;
    }
}

@media (max-width: 575px) {

    .auth-content .title-box h1,
    .auth-content .title-box .h1 {
        font-size: 28px;
    }

    .auth-content {
        width: 100%;
        padding: 50px 0;
    }

    .auth-page .title-box {
        margin-bottom: 15px;
    }

    .auth-content .flex-container label {
        font-size: 14px;
    }
}

.cabinet-navigation {
    border: 1px solid #A7AAB4;
    border-radius: 5px;
    margin-right: 30px;
    margin-top: 40px;
}

.navigation-head {
    border-bottom: 1px solid #dee2e6;
    text-align: center;
    padding: 30px 10px;
}

.navigation-head .user-mail {
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 500;
}

.navigation-head .user-registered {
    font-size: 13px;
}

.navigation-head .user-registered span {
    font-weight: 500;
}

.navigation-item:last-child a {
    border: 0;
}

.navigation-item.active a,
.navigation-item.active a:hover {
    color: #fff;
    background-color: #EE7907;
}

.navigation-item.active a img {
    filter: brightness(0) invert(1);
}

.navigation-body a {
    color: #6c757d;
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dee2e6;
}

.navigation-body a img {
    margin-right: 8px;
}

.navigation-body a:hover {
    text-decoration: none;
    background-color: #E7EDF3;
}

.cabinet-content {
    padding: 30px 0 50px 30px;
}

.cabinet-content h3.text-center,
.cabinet-content .h3.text-center {
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 0;
}

.cabinet-content .form-group {
    margin-bottom: 25px;
}

.cabinet-content .btn-danger {
    width: 100%;
    padding: 10px 10px;
    margin: 15px 0;
    font-size: 16px;
    background-color: #2C9B88;
}

.cabinet-content .btn-danger:hover,
.cabinet-content .btn-danger:focus {
    background-color: #218e7b;
}

.cabinet-content .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.cabinet-content .table>thead>tr>th {
    border-bottom-width: 1px;
}

.cabinet-content .table-head {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.cabinet-content .table-head label {
    font-weight: 400;
}

.table-head .table-search {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.table-head .table-search label {
    margin-right: 8px;
    margin-bottom: 0;
}

.table-head .table-search .form-control {
    padding: 5px 10px 5px 40px;
    background: url(../img/icons/gray-search-icon.svg) no-repeat center left 10px;
    background-size: 20px;
}

.cabinet-content .table {
    margin-bottom: 30px;
    font-size: 14px;
}

.cabinet-content .table th {
    font-size: 15px;
}

.cabinet-content .table-show label {
    margin: 0;
    display: flex;
    align-items: center;
}

.cabinet-content .table-show .form-control {
    margin: 0 7px;
}

.table-delete,
.table-edit {
    width: 28px;
    margin: 0 auto;
}

.table-delete a:hover img {
    filter: invert(16%) sepia(80%) saturate(6795%) hue-rotate(0deg) brightness(103%) contrast(123%);
}

.table-edit a:hover img {
    filter: invert(42%) sepia(87%) saturate(1491%) hue-rotate(186deg) brightness(98%) contrast(100%);
}

.contacts a {
    color: #F57D00;
}

.contact-hr {
    border-top: 1px solid #2C9B88;
}

@media (max-width: 1699px) {
    .navigation-body a {
        font-size: 14px;
    }

    .cabinet-navigation {
        margin-right: 0;
    }

    .navigation-head .user-mail {
        font-size: 16px;
    }

    .cabinet-content .table th {
        font-size: 14px;
    }
}

@media (max-width: 1199px) {
    .navigation-head {
        padding: 20px 10px;
    }

    .navigation-head .user-mail {
        font-size: 14px;
    }

    .navigation-head .user-registered {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .cabinet-content .row {
        display: block;
    }

    .cabinet-content {
        padding-left: 0;
    }

    .cabinet-navigation {
        margin-top: 0;
        margin-bottom: 30px;
        border: 0;
    }

    .navigation-head {
        border-radius: 4px;
        margin-bottom: 10px;
        border: 0;
        padding: 0 0 20px;
    }

    .navigation-body .navigation-item {
        display: inline-block;
        vertical-align: top;
        margin: 0 8px 8px 0;
    }

    .navigation-item:last-child a,
    .navigation-body a {
        border: 1px solid #A7AAB4;
        display: inline-flex;
        border-radius: 4px;
        padding: 10px;
    }

    .navigation-item.active a, .navigation-item.active a:hover {
        border: 1px solid #EE7907;
    }

    .navigation-head .user-mail {
        font-size: 16px;
    }

    .cabinet-content .table {
        font-size: 13px;
    }

    .cabinet-content h3.text-center,
    .cabinet-content .h3.text-center {
        font-size: 20px;
    }
}

@media (max-width: 767px) {

    .navigation-item:last-child a,
    .navigation-body a {
        font-size: 13px;
        padding: 5px 10px;
    }

    .cabinet-content .table-head {
        display: block;
    }

    .cabinet-content .table-show {
        margin-bottom: 15px;
    }
}

@media (max-width: 479px) {
    .navigation-body .navigation-item {
        margin-right: 3px;
    }

    .navigation-body {
        display: flex;
        flex-wrap: wrap;
    }

    .navigation-body a {
        width: 100%;
    }

    .navigation-body a img {
        max-width: 20px;
    }

    .navigation-body .navigation-item {
        width: 100%;
    }
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding: 150px 15px;
}

.error-content .text-holder {
    width: 500px;
    position: relative;
    z-index: 10;
}

.error-content .lg-nums {
    font-size: 140px;
    font-weight: 700;
    color: #2C9B88;
    line-height: 1;
}

.error-content a {
    color: #2C9B88;
    font-weight: 500;
    text-decoration: underline;
}

.error-content a:hover {
    text-decoration: none;
}

.error-content h2,
.error-content .h2 {
    font-size: 30px;
    margin: 5px 0 10px;
}

.error-img {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 100px;
    margin: 0 auto;
    width: 1000px;
    z-index: 1;
}

@media (max-width: 1700px) {
    .error-img {
        width: 800px;
    }

    .error-content .lg-nums {
        font-size: 100px;
    }
}

@media (max-width: 1199px) {
    .error-content .text-holder {
        width: 400px;
    }

    .error-img {
        width: 500px;
        right: 200px;
    }
}

@media (max-width: 991px) {
    .error-img {
        width: 400px;
    }

    .error-content .lg-nums {
        font-size: 80px;
    }

    .error-content h2,
    .error-content .h2 {
        font-size: 22px;
    }

    .error-content {
        padding: 100px 15px 200px;
    }

    .error-content .text-holder {
        width: 100%;
    }
}


.zvotor-preloader {
    padding: 15px;
    text-align: center;
}

.zvorot-preloader-bus {
    width: 220px;
    margin: 15px auto;
}

.zvotor-preloader .bus-body {
    width: 190px;
}

.zvotor-preloader  .bus-wheel-front, 
.zvotor-preloader .bus-wheel-last, 
.zvotor-preloader  .bus-wheel-back {
    width: 16px;
    height: 16px;
    top: -12px;
}

.zvotor-preloader  .bus-wheel-front {
    right: 77px;
}

.zvotor-preloader .bus-wheel-last {
    left: 28px;
}

.zvotor-preloader  .bus-wheel-back {
    left: 47px;
}


.zvotor-preloader .h2,
.zvotor-preloader .h2 {
    font-size: 24px;
}

.zvotor-preloader .bus-wheel-front:before, 
.zvotor-preloader .bus-wheel-last:before, 
.zvotor-preloader .bus-wheel-back:after {
    width: 8px;
    height: 8px;
    top: 4px;
    left: 4px;
}

@media(max-width: 767px) {
    .zvotor-preloader .h2, .zvotor-preloader .h2 {
        font-size: 18px;
    }

    .zvotor-preloader p {
        font-size: 14px;
    }
}