/* ANCHOR variables */

:root {
    --slider-round-btn-size: 30px;
    --slider-round-btn-offset: calc(var(--slider-round-btn-size) / 2);
}


/* ANCHOR reset styles */

body * {
    box-sizing: border-box;
}

*:focus-visible {
    outline: none;
}

a {
    display: block;
    color: black;
    text-decoration: none;
}

p {
    margin: 0 0 12px;
}

p:last-child {
    margin: 0;
}

img, ul, ol, li {
    display: block;
    padding: 0;
    margin: 0;
}

h1, h2, h3 {
    margin: 0;
}

iframe {
    border: none;
}

button {
    display: block;
    border: none;
    background-color: transparent;
}

input,
input:focus,
input:focus-visible {
    border: none;
    outline: none;
    line-height: normal;
}

li::marker {
    color: #4AA9DA;
    font-size: 1.5rem;
}

/* ANCHOR general */

body {
    font-family: Roboto, sans-serif;
    font-weight: 400;
    line-height: normal;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex-grow: 1;
}

body.opened-modal {
    /* filter: blur(5px); */
}

.base-width {
    max-width: 1140px;
    margin: auto;
}

@media only screen and (max-width: 1190px) {
    .base-width {
        padding: 0 25px;
        margin: 0;
        max-width: none;
        width: 100%;
    }
}

@media only screen and (max-width: 540px) {
    .base-width {
        padding: 0 15px;
    }

}

.fullscreen-width {
    max-width: none;
    width: 100%;
}

.content-block-margin {
    margin-bottom: 50px;
    margin-bottom: clamp(35px, 5.88vw, 70px);
}

vendor[base-button] a,
.base-button {
    border-radius: 90px;
    font-size: 13px;
    font-weight: 500;
    padding: 13px;
    line-height: normal;
    text-align: center;
    user-select: none;
    cursor: pointer;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

vendor[base-button] a:hover,
.base-button:hover {
    filter: brightness(1.06);
    transition-duration: 0.1s;
}

.base-button.inactive {
    cursor: default;
}


.base-button.inactive:hover {
    filter: none;
}

vendor[base-button][transparent] a,
.base-button.transparent {  
    color: var(--mk2-primary);
    border: 1px solid var(--mk2-primary);
    background-color: transparent !important;
}

vendor[base-button][filled] a,
.base-button.filled {
    color: white;
    background-color:var(--mk2-primary);
    border: 1px solid var(--mk2-primary);
}

.h1, h1 {
    font-size: 25px;
    font-size: clamp(20px, 4.03vw, 40px);
    font-weight: 700;
    line-height: 1.2;
}



.main-title,
.main-text-content h1 {
    color: #272D30;
    font-size: 25px;
    font-size: clamp(20px, 3.03vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-top: clamp(11px, 1.68vw, 20px);
    margin-bottom: 18px;
    margin-bottom: clamp(11px, 1.68vw, 20px);
}

.articles-page .main-title {
    text-align: center;
    margin-top: 20px;
    margin-top: clamp(20px, 2.52vw, 30px);
    margin-bottom: 17px;
    margin-top: clamp(15px, 1.68vw, 20px);
}

.section-title {
    font-size: clamp(18px, 3.03vw, 36px);
    font-weight: 500;
    color: #272D30;
}

.modal-wrapper .section-title {
    width: 100%;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

.subsection-title {
    font-size: 20px;
    font-weight: 500;
}

.input-field {
    border-radius: 90px;
    width: 100%;
    padding: 18px 25px;
    font-size: 15px;
    border: 1px solid rgba(219, 219, 219, 0.90);
    outline: none;
}

.input-list-wrapper {
    position: relative;
    width: 100%;
    height: 56px;
    margin-bottom: 20px;
}

.input-field.list {
    position: absolute;
    z-index: 2;
    top: 0px;
    left: 0px;
    background-color: white;
}

.form-group.opened .input-field.list {
    border-radius: 28px;
}

.input-field.list .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-field.list img {
    width: 14px;
    height: 14px;
}

.input-field.list .values {
    margin-top: 18px;
    width: 100%;
    display: none;
}

.form-group.opened .input-field.list .values {
    display: block;
}

.input-field.list .row {
    font-size: 13px;
    border-top: 1px solid #c4c4c4;
    padding: 13px 0;
}

.input-field.list .row:last-child {
    padding-bottom: 0px;
}


.form-group .collapse-button {
    display: none;
}

.form-group.opened .collapse-button {
    display: block;
}

.form-group.opened .expand-button {
    display: none;
}

textarea.input-field {
    border-radius: 30px;
}

.input-field:focus-visible {
    border: 1px solid rgba(219, 219, 219, 0.90);
    outline: none;
}

.input-label {
    display: block;
    font-size: 16px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.input-file {
    display: block;
    border: none;
    background-color: transparent;
    font-size: 14px;
    text-decoration: underline;
    margin-bottom: 20px;
}

.input-error {
    color: red;
    font-size: 14px;
    margin-top: 7px;
}

.base-button.modal {
    width: 100%;
    background-color: var(--mk2-primary);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 18px;
}

body .modal-wrapper {
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 450px;
    overflow: hidden;
}

.modal-wrapper .personal-data {
    margin-bottom: 20px;
}

.description-block a,
 .personal-data a {
    color: #4AA9DA;
    text-decoration: underline;
    cursor: pointer;
    display: inline;
}

.modal-wrapper .base-button.filled {
    background-color: var(--mk2-primary);
}

.modal-result-text {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
    margin: 30px 0;
}

.form-group.error .input-field {
    border: 1px solid #fcaaaa;
}

.form-group.error .input-label.default {
    display: none;
}

.form-group .input-label.error {
    display: none;
    color: red;
}
.form-group.error .input-label.error {
    display: block;
}

.form-result {
    padding: 10px 0;
}

.form-result .section-title {
    line-height: 1.3;
    text-align: center;
    margin-bottom: 15px;
}

.form-result .article {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    font-size:  18px;
    line-height: 1.3;
}

.form-result .line {
    height: 2px;
    width: 100%;
    border-top: 1px solid #d6d6d6;
    margin-bottom: 20px;
}

.form-result .contacts-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.form-result .contacts-section .phone {
    margin-top: 6px;
}

.form-result .contacts-section .text {
    margin-top: 2px;
    margin-left: 8px;
    margin-bottom: 0;
}

.form-result .social-section {
    margin: 30px auto 0px;
    width: fit-content;
}

@media only screen and (max-width: 460px) {
    .form-result .contacts-section {
        flex-direction: column;
        gap: 15px;
    }
}

.full-image-modal-wrapper .full-image {
    width: 100%;
}

.full-image-modal-wrapper {
    width: max-content;
    margin: auto;
}

.full-image-modal-wrapper .full-image img {
    max-width: 90vw;
    max-height: 90vh;
}

@media only screen and (max-width: 767px) {
    .modal-full-image-wrapper {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.page404-article {
    font-size: 24px;
    margin-top: 60px;
    margin-bottom: 20px;
    text-align: center;

}

.page404-go-to-home {
    font-size: 18px;
    text-decoration: underline;
    color: var(--mk2-primary);
    text-align: center;
    margin-bottom: 50px;
}

.share-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    padding-top: 12px;
    padding-bottom: 10px;
}

.share-section {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.article-date {
padding-top: 12px;
padding-bottom: 10px;
}

.share-section .wrapper {
    width: max-content;
}

.share-section .wrapper:hover .menu {
    display: block;
}

.share-section .icon {
    width: 22px;
    height: 22px;
}

.share-section .text {
    font-size: 17px;
    font-weight: 500;
}

.share-section .menu {
    display: none;
    border-radius: 10px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    z-index: 3;
    position: absolute;
    top: 44px;
    left: -17px;
    padding: 17px;
    background-color: white;
}

.share-section .menu:hover {
    display: block;
}

.share-section .menu .item {
    font-size: 16px;
    font-weight: 400;
    padding: 0;
    margin-bottom: 17px;
    width: 100%;
    margin-right: auto;
    text-align: left;
}

.share-section .menu .item:hover {
    color: var(--mk2-primary);
}

.share-section .menu .item.done {
    color: green;
}
.share-section .menu .item:last-child {
    margin-bottom: 0;
}

.faq-block .section-title {
    margin-bottom: 30px;
    margin-bottom: clamp(15px, 2.52vw, 30px);
}

.faq-block .answer {
    font-size: 15px;
    line-height: 1.4;
}

.faq-block .additional-section .subsection-title {
    padding-right: 15px;
    font-size: clamp(15px, 1.68vw, 20px);
    line-height: 1.4;
}

.tags-section {
    display: flex;
    gap: 15px;
    gap: clamp(6px, 1.30vw, 15px);
    flex-wrap: wrap;
}

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

.tags-section .item {
    display: flex;
    align-items: center;
    border: 1px solid var(--mk2-primary);
    border-radius: 90px;
    padding-right: 18px;
    font-size: 12px;
}

.tags-section .icon {
    width: 35px;
    height: 35px;
    border-radius: 90px;
    background-color: var(--mk2-primary);
    margin-right: 10px;
}

.tags-section .text {
    /* margin-top: 1px; */
}

.description-block {
    position: relative;
    max-height: 120px;
    overflow: hidden;
    margin-top: 15px;
    margin-top: clamp(10px, 2.52vw, 30px);
}

.description-block .text {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
}

.description-block p {
    margin-bottom: 16px;
}

.description-block h2 {
    margin-bottom: 5px;
}

.description-block .expand-description-button .text {
    font-size: 16px;
    font-weight: 500;
    color: var(--mk2-primary);
    text-decoration: underline;
}

.description-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.description-wrapper .text {
    display: -webkit-box;
    line-clamp: 5;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.description-wrapper.expanded .text {
    -webkit-line-clamp: none;
    line-clamp: none;

}

.text-section .swiper-slide {
    width: fit-content;
}

body .description-block .expand-description-button .gradient {
    height: 23px;
    width: 65px;
    background: linear-gradient(to right, transparent, white);
}

body .page-text-section .description-block .expand-description-button {
    bottom: -3px;
}

body .page-text-section .expand-description-button .text {
    background-color: #f1f5f8;
}

body .page-text-section .expand-description-button .gradient {
    background: linear-gradient(to right, transparent, #f1f5f8);
}

body .description-block .expand-description-button {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
}

.price-prefix {
    font-size: 12px;
    margin-right: 5px;
}

.expand-description-btn {
    margin-top: 3px;
    font-weight: 500;
    color: var(--mk2-primary);
    text-decoration: underline;
    padding: 0;
}

.river-trip .expand-description-button {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
}

.river-trip .expand-description-button .gradient {
    height: 23px;
    width: 65px;
    background: linear-gradient(to right, transparent, white);
}

.river-trip .expand-description-button .text {
    font-size: 17px;
    background-color: white;
    font-weight: 500;
    color: var(--mk2-primary);
    text-decoration: underline;
}

.expand-description-button {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 1;
}

.expand-description-button .gradient {
    height: 23px;
    width: 65px;
    background: linear-gradient(to right, transparent, white);
}

.expand-description-button .text {
    font-size: 17px;
    background-color: white;
    font-weight: 500;
    color: var(--mk2-primary);
    text-decoration: underline;
}

.expand-description-button.blue .gradient {
    background: linear-gradient(to right, transparent, #f1f5f8);
}

.expand-description-button.blue .text {
    background-color: #f1f5f8;
}

.text-section .article p {
    margin-bottom: 16px;
}

.no-items-text {
    margin-top: 30px;
    font-size: 20px;
}

.main-social-section .title {
    font-size: 24px;
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}

.main-social-section .icons-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 27px;
}

.main-social-section .icons-wrapper img {
    width: 58px;
    height: 58px;
}

body .hystmodal__wrap {
    height: 100vh;
}

.social-section.simple {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-top: clamp(20px, 2.52vw, 30px);
    margin-bottom: 30px;
    margin-bottom: clamp(20px, 2.52vw, 30px);
}

.social-section.simple img {
    height: 41px;
    width: 41px;
}

.subscribe-section-light {
    padding-top: 30px;
    border-top: 1px solid #C6C6C6;
    margin-bottom: 30px;
}

.subscribe-section-light .title {
    font-size: 19px;
    font-size: clamp(18px, 1.68vw, 20px);
    margin-bottom: 23px;
    margin-bottom: clamp(20px, 2.10vw, 25px);
    font-weight: 400;
    text-align: center;
}

.subscribe-section-light .form-group {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    position: relative;
}

.subscribe-section-light .input-field {
    max-width: 390px;
    flex-shrink: 0;
    height: 58px;
    margin-right: 7px;
}

.subscribe-section-light .input-label.error {
    height: 58px;
    margin: 0;
    margin-right: 10px;
    position: absolute;
    top: 60px;
    left: -78px;
    font-size: 14px;
}

.subscribe-section-light .subscribe-success {
    height: 58px;
    text-align: center;
}

.subscribe-section-light .base-button {
    width: 175px;
    font-size: 15px;
    flex-shrink: 0;
    height: 58px;
}

.article-groups.mobile {
    display: none;
}

.article-groups .section-title {
    margin-bottom: 20px;
}

.article-groups .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 23px;
    row-gap: 30px;
}

.article-groups .show-more-button {
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    min-width: 216px;
    padding: 19px;
}

.article-groups .loading-items {
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    height: 55px;
}

.article-item {
    height: 100%;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
}

.article-item .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* height: 229px; */
}

.article-item .image img {
    width: 100%;
    object-fit: cover;
}

.article-item .image .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 90px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.article-item .title {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    height: 44px;
    overflow: hidden;
}

.article-item .info-wrapper {
    margin: 10px 0;
    font-size: 13px;
    height: 15px;
    overflow: hidden;
}


.article-item .annotation {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    height: 56px;
    overflow: hidden;
    margin-bottom: 15px;
}

.article-item .base-button {
    max-width: 179px;
}

.main-banner {
    overflow: hidden;
    margin-top: clamp(10px, 2.52vw, 30px);
    margin-bottom: clamp(10px, 2.52vw, 30px);
} 

.main-banner img {
    border-radius: 10px;
    width: 100%;
    min-height: 155px;
    object-fit: cover;
}

.main-text-content h1 {
    margin-top: 20px;
    margin-bottom: 20px;
}

.main-text-content li::marker {
    color: #4AA9DA;
    font-size: 1.5em;
}

.main-text-content li {   
    display: list-item;
    margin-left: 34px;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 8px;
}


.main-text-content ol li::marker {
    font-size: 15px;
}

.main-text-content ol, 
.main-text-content ul {
    margin-bottom: 15px;
}

@media only screen and (max-width: 850px) {
    .article-groups .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 750px) {
    body .hystmodal__wrap {
        grid-row: 1/3;
    }

    body .modal-wrapper {
        margin-top: 25px;
    }
}

@media only screen and (max-width: 630px) {
    .subscribe-section-light .form-group {
        flex-direction: column;
        width: 100%;
    }

    .subscribe-section-light .input-label.error {
        position: relative;
        left: 26px;
        top: 0px;
        height: auto;
    }

    .subscribe-section-light .input-field {
        margin-right: 0;
        margin-top: 6px;
        margin-bottom: 10px;
        width: 100%;
        max-width: none;
    }

    .subscribe-section-light .base-button {
        width: 100%;
    }

    .article-groups .grid {
        gap: 15px
    }

    .article-groups .show-more-button {
        margin-top: 25px;
        padding: 16px;
    }

    .article-groups .loading-items {
        margin-top: 25px;
        height: 49px;
    }
}

@media only screen and (max-width: 520px) {
    body .modal-wrapper {
        max-width: none;
        margin-top: 15px;
        margin-left: 15px;
        margin-right: 15px;
        width: auto;
    }

    .article-groups.mobile {
        display: block;
    }
    
    .article-groups .grid {
        grid-template-columns: 1fr;        
    }

    .article-groups.desktop {
        display: none;
    }

}

@media only screen and (max-width: 460px) {
    body .modal-wrapper .form-result .contacts-section {
        flex-direction: column;
        gap: 15px;
    }

    .modal-wrapper .form-result .article {
        font-size: 15px;
        margin-bottom: 15px;
    }
     
}

@media only screen and (max-width: 420px) {
    body .modal-wrapper {
        padding: 27px 15px;
    }
}

/* ANCHOR main-menu */

.breadcrumbs-section {
    font-size: 12px;
    margin-top: 15px;
    margin-top: clamp(5px, 1.6vw, 20px);
    margin-bottom: 20px;
    margin-bottom: clamp(0px, 0.5vw, 20px);
    align-self: flex-start;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

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

.breadcrumb-item {
    flex-shrink: 0;
    margin-bottom: 5px;
    max-width: 100%;
}

.breadcrumb-item.not-active {
    display: flex;
    align-items: center;
}

.breadcrumb-item.not-active a {
    text-decoration: underline;
    color: var(--mk2-primary);
}

.breadcrumb-item.not-active img {
    width: 7px;
    height: 7px;
    margin: 0 7px;
    margin: 0 clamp(4px, 1.07vw, 12px);
}


/* ANCHOR rating */

.top-rating-section {
    display: flex;
    margin-bottom: 15px;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    line-height: 1;
}

.top-rating-section .stars {
    background-image: url('/assets/img/icons/double-star-23px-icon.svg');
    background-position: 0 -23px;
    width: 130px;
    height: 23px;
}

.top-rating-section .stars span {
    background-image: url('/assets/img/icons/double-star-23px-icon.svg');
    height: 23px;
}

.top-rating-section .number {
    margin-top: 3px;
}

/* ANCHOR gallery */

.pier-page .gallery-section {
    margin-bottom: 20px;
}

.gallery-wrapper {
    display: flex;
    gap: 17px;
    gap: clamp(7px, 1.43vw, 17px);
    height: clamp(100px, 34.37vw, 409px);
}

.gallery-slider {
    width: 571px;
    overflow: hidden;
    position: relative;
}

.gallery-slider-item {
    border-radius: 10px;
    overflow: hidden;
}

.gallery-slider-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-static-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    gap: clamp(7px, 1.43vw, 17px);
}

.gallery-static-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-static-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery-static-item .quantity,
.gallery-static-item .background
{   
    display: none;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.gallery-static-item:last-child .quantity,
.gallery-static-item:last-child .background
{   
    display: flex;
}


.gallery-static-item .quantity {
    align-items: center;
    color: var(--mk2-primary);
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    z-index: 2;
}

.gallery-static-item .background {        
    background-color: white;
    opacity: 0.8;
    z-index: 1;
}

.gallery-static-item .quantity div {
    width: 100%;
}

.gallery-static-item:last-child[data-quantity="0"] .quantity,
.gallery-static-item:last-child[data-quantity="0"] .background {
    display: none;
}

.modal-gallery-slider {
    max-width: 90vw;
}

.modal-gallery .hystmodal__close {
    background-image: url('/assets/img/icons/close-white-icon.png');
}

body .modal-gallery-slide {
    height: 100%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-gallery-image {
    /* margin: 0 auto; */
    touch-action: manipulation;
    max-width: 100%;
    max-height: 100%;
}

body .modal-gallery {
    width: fit-content;
    background: none;
}



.modal-gallery-slider .swiper-wrapper {
    /* overflow: hidden; */
    height: 90vh;
}


/* ANCHOR homepage */

.homepage .main-banner-section {
    margin-top: 20px;
    margin-bottom: 50px;
    margin-bottom: clamp(20px, 5.88vw, 30px);
    width: 100%;
}

@media (max-width: 1024px) {
    .homepage .main-banner-section {
        margin-bottom:20px;
    }
}

.homepage .filter-section {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-bottom: clamp(10px, 3.36vw, 30px);
    display: flex;
    justify-content: space-between;
    gap: 30px;
    overflow-x: clip;
    overflow-y: visible;
}

.homepage .filter-section .item {
    width: 260px;
    height: 49px;
    position: relative;
}

.homepage .filter-section .item .wrapper {
    border: 1px solid #CCC;
    border-radius: 90px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    transition-duration: 0.1s;
}

.homepage .filter-section .item.opened .wrapper {
    border: 1px solid var(--mk2-primary);
    border-radius: 24px;
    z-index: 3;
    overflow: hidden;
}

.homepage .filter-section .item .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 17px 20px;
}

.homepage .filter-section .item .title .text {
    /* margin-top: 1px; */
    font-size: 13px;
    font-weight: 400;
}

.homepage .filter-section .item .title .icon {
    height: 11px;
    width: 11px;
}

.homepage .filter-section .item .title .icon.collapse,
.homepage .filter-section .item .title .icon.close {
    display: none;
}

.homepage .filter-section .item.opened .title .icon.expand {
    display: none;
}

.homepage .filter-section .item.opened .title .icon.collapse {
    display: block;
}


.homepage .filter-section .item.selected .title .icon {
    display: none;
}

.homepage .filter-section .item.selected .title .icon.close {
    display: block;
    margin-bottom: 1px;
}

.homepage .filter-section .item .values-section {
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.homepage .filter-section .item.opened .values-section {
    display: block;
}

.homepage .filter-section .item .row,
.homepage .filter-section .item .no-options {
    font-size: 12px;
    border-top: 1px solid #cccccc;
    padding: 8px 9px;
    margin: 0px 11px;
}

.homepage .filter-section .item .row:hover {
    color: var(--mk2-primary);
}

.homepage .filter-section .simplebar-track.simplebar-vertical {
    width: 11px;
} 

.homepage .filter-section .simplebar-track {
    bottom: 18px;
}

.homepage .filter-section .simplebar-scrollbar.simplebar-visible:before {
    background-color: #cccccc;
    opacity: 1;
}

.homepage .filter-section .price-section,
.homepage .filter-section .no-options-section {
    display: none;
    /* position: absolute; */
    /* top: 60px; */
    left: 0;
    z-index: 3;
    /* width: 265px; */
    background: #fff;
    /* border-radius: 90px; */
    padding: 20px 20px 20px;
    /* box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233); */
}

.homepage .filter-section .item.opened .price-section {
    display: block;
}

.homepage .filter-section .item.opened.no-options .price-section {
    display: none;
}

.homepage .filter-section .item.opened.no-options .no-options-section {
    display: block;
    font-size: 15px;
    text-align: center;
    width: 200px;
}

.homepage .filter-section .price-section {
    cursor: auto;
}
  
.homepage .filter-section .price-section .price-input {
    width: 100%;
    display: flex;
    margin-bottom: 24px;
    justify-content: space-between;
}

.homepage .filter-section .price-section .price-input .field {
    width: 100px;
    position: relative;
}

.homepage .filter-section .price-section .price-input .field .ruble {
    position: absolute;
    top: 31px;
    right: 17px;
    font-size: 12px;
    font-weight: 300;
    color: #797979;
}

.homepage .filter-section .price-section .price-input .field .text {
    font-size: 13px;
}

.homepage .filter-section .price-section .field input {
    width: 100%;
    outline: none;
    font-size: 13px;
    font-weight: 300;
    padding: 9px 18px;
    margin-top: 5px;
    border-radius: 90px;
    border: 1px solid #cccccc;
    -moz-appearance: textfield;
  }

.homepage .filter-section .price-section input[type="number"]::-webkit-outer-spin-button,
.homepage .filter-section .price-section input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.homepage .filter-section .price-section .slider {
    height: 4px;
    position: relative;
    background: #d9d9d9;
    border-radius: 5px;
}
  
.homepage .filter-section .price-section .slider .progress {
    height: 100%;
    left: 0%;
    right: 0%;
    position: absolute;
    border-radius: 5px;
    /* background: #8BB7FA; */
    background: var(--mk2-primary);
}

.homepage .filter-section .price-section .range-input {
    position: relative;
}

.homepage .filter-section .price-section .range-input input {
    position: absolute;
    width: 100%;
    height: 4px;
    top: -5px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.homepage .filter-section .price-section input[type="range"]::-webkit-slider-thumb {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: var(--mk2-primary);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    /* box-shadow: 0 0 6px rgba(0, 0, 0, 0.05); */
}

.homepage .filter-section .price-section input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    border: none;
    border-radius: 50%;
    background: var(--mk2-primary);
    pointer-events: auto;
    -moz-appearance: none;
    cursor: pointer;
    /* box-shadow: 0 0 6px rgba(0, 0, 0, 0.05); */
}

.homepage .filter-section .price-section .base-button {
    margin-top: 32px;
    width: 100%;
    font-size: 15px;
    padding: 10px;
}

.homepage .catalog-section .empty-result-text {
    max-width: 550px;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
}

.homepage .extended-tags-section {
    overflow: hidden;
    margin-bottom: 40px;
    margin-bottom: clamp(20px, 5.88vw, 30px);
    position: relative;
}

.homepage .extended-tags-section .image {
	/* legit rem */
    border-radius: 1rem;
    min-height: auto;
    min-height: clamp(87px, 11.18vw, 133px);
    width: 100%;
    object-fit: cover;
}

.homepage .extended-tags-section .text {
	/* legit rem */
    margin-top: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.homepage .extended-tags-section .item {
    margin-top: 10px;
    width: clamp(120px, 17.90vw, 213px);
}

.homepage .extended-tags-section .item .line {
	/* legit rem */
    display: none;
    background-color: #009EC7;
    width: 100%;
    height: 0.6rem;
    border-radius: 90rem;
    margin: 0.4rem auto 0;

}

.homepage .extended-tags-section.selected .item .image {
    filter: brightness(0.5);
}

.homepage .extended-tags-section.selected .item .text {
    color: #797979
}

.homepage .extended-tags-section.selected .item.active {
    margin-top: 0px;
}

.homepage .extended-tags-section.selected .item.active .text{
    color: black;
}

.homepage .extended-tags-section.selected .item.active .image {
    filter: brightness(1);
}

.homepage .extended-tags-section.selected .item.active .line {
    display: block;
}

.homepage .extended-tags-section .slider-button-next,
.homepage .extended-tags-section .slider-button-prev {
    top: 60px;
}

.subscribe-section {
    background-image: url('/assets/img/banners/subscribe-background-desktop.jpg');
    padding: 40px 40px 14px;
    background-repeat: no-repeat;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
    margin-bottom: 50px;
    margin-bottom: clamp(35px, 5.88vw, 70px);
}

.subscribe-section .mobile-background-image {
    display: none;
}

.subscribe-section .title {
    color: white;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 16px;
}

.subscribe-section .text {
    color: white;
    font-size: 16px;
    margin-bottom: 12px;
    max-width: 447px;
    line-height: 1.5;
}

.subscribe-section .form-group {
    position: relative;
    width: max-content;
}

.subscribe-section .input-label {
    height: 15px;
    color: white;
}

.subscribe-section .input-field {
    padding: 16px 10px 16px 44px;
    width: 342px;
    font-size: 17px;
}

.subscribe-section .form-group.error .input-field {
    border: 1px solid rgba(219, 219, 219, 0.90);
    /* border: none; */
}

.subscribe-section .icon {
    position: absolute;
    top: 46px;
    left: 22px;
    width: 16px;
    height: 16px;
}

.subscribe-section .button {
    position: absolute;
    top: 35.5px;
    right: 9.5px;
    width: 36px;
    height: 36px;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.subscribe-section .subscribe-success {
    color: #ccffb0;
    font-size: 19px;
    height: 81px;
    padding-top: 55px;
}

.subscribe-section .ajax-error {
    color: #cbcbcb;
    max-width: 500px;
    font-size: 14px;
}

.homepage .articles-section  {
    margin-bottom: 35px;
    margin-bottom: clamp(35px, 5.88vw, 70px);
    position: relative;
}

.homepage .articles-section .slider-button-next,
.homepage .articles-section .slider-button-prev {
    top: 36.42vw;
}

.homepage .articles-section .slider-button-next {
    right: 18px;
}

.homepage .articles-section .slider-button-prev {
    left: 18px;
}

.homepage .articles-section.mobile {
    display: none;
}

.homepage .articles-section .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 34px;
    row-gap: 20px;
    margin-top: 22px;
}

.homepage .articles-section .item {
    height: 170px;
    display: flex;
}

.homepage .articles-section .item .image {
    border-radius: 10px;
    margin-right: 20px;
    min-width: 266px;
    min-width: clamp(100px, 22.35vw, 266px);
    object-fit: cover;
}

.homepage .articles-section .item .info-section {
    display: flex;
    flex-direction: column;
}

.homepage .articles-section .item .title-wrapper {
    height: 69px;
    flex-shrink: 0;
}

.homepage .articles-section .item .title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 4px;
    max-height: 47px;
    overflow: hidden;
}

.homepage .articles-section .item .date {
    font-size: 13px;
    margin-bottom: 8px;
    color: #797979;
}

.homepage .articles-section .item .annotation {
    font-size: 15px;
    line-height: 1.3;
    max-height: 77px;
    overflow: hidden;
}

.homepage .articles-section .item .link-wrapper {
    display: flex;
    align-items: end;
    margin-top: 10px;
    flex-grow: 1;
}

.homepage .articles-section .item .link {
    font-size: 14px;
    color: var(--mk2-primary);
    text-decoration: underline;
}

.homepage .text-section-background {
    background-color: #F1F5F8;
    margin-bottom: 50px;
    margin-bottom: clamp(35px, 5.88vw, 70px);
}

.homepage .text-section {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-top: clamp(22px, 4.20vw, 50px);
    padding-bottom: clamp(22px, 4.20vw, 50px);
}

.homepage .text-section .images {
    position: relative;
    margin: 20px 0;
    overflow: hidden;
    width: 100%;
}

.homepage .text-section .images .image {
    border-radius: 10px;
    width: 213px;
    width: clamp(139px, 17.90vw, 213px);
}

.homepage .text-section .article {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
}

.description ul,
.description ol,
.description-block ul,
.description-block ol,
.homepage .text-section .article ul {
    list-style-type: disc;
}

.description li,
.description-block li,
.homepage .text-section .article li {
    display: list-item;
    margin-bottom: 10px;
    margin-left: 22px;
}

.homepage .article-wrapper {
    position: relative;
    /* max-height: 87px; */
    /* overflow: hidden; */
}

.homepage .expand-description-button {
    bottom: -5px;
}

.homepage .expand-description-button .gradient {
    height: 23px;
    width: 65px;
    background: linear-gradient(to right, transparent, #f1f5f8);
}

.expand-description-button .text {
    background-color: #f1f5f8;
    font-size: 15px;
}


@media only screen and (max-width: 1190px) {
    .homepage .main-banner-section img {
        width: 100%;
    }
        
    .homepage .extended-tags-section .slider-button-next,
    .homepage .extended-tags-section .slider-button-prev {
        display: none;
    }
}


@media only screen and (max-width: 750px) {
    
    .homepage .filter-section .item {
        width: 198px;
    }

    .homepage .filter-section .item .title {
        padding: 11px 11px;
    }

    .homepage .filter-section .item .title .text {
        font-size: 10px;
    }

    .homepage .filter-section .item .values-section .row {
        font-size: 10px;
        padding-left: 0px;
    }
}

@media only screen and (max-width: 832px) {
    .homepage .articles-section .wrapper {
        grid-template-columns: 1fr;
        max-height: 550px;
        overflow: hidden;
    }

    .homepage .articles-section .item .image {
        min-width: clamp(200px, 26.80vw, 260px);
    }   
}

@media only screen and (max-width: 520px) {

    .subscribe-section {
        padding: 0;
    }

    .subscribe-section .content-wrapper {
        padding: 12px 24px 14px;
    }

    .subscribe-section .title {
        font-size: 18px;
    }
    
    .subscribe-section .text {
        font-size: 13px;
    }
    
    .subscribe-section .input-label {
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .subscribe-section .form-group,
    .subscribe-section .input-field {
        width: 100%;
    }

    .subscribe-section .button {
        top: 31px;
    }

    .subscribe-section .icon {
        top: 42px;
    }

    .subscribe-section .mobile-background-image {
        display: block;
        width: 100%;
    }

    .homepage .text-section .article-wrapper {
        max-height: 79px;
    }

    .homepage .text-section .article {
        font-size: 13px;
    }

    .homepage .expand-description-button {
        bottom: -2px;
    }
}

@media only screen and (max-width: 440px) {
    .homepage .articles-section {
        overflow: hidden;
    }

    .homepage .articles-section {
        display: none;
    }

    .homepage .articles-section.mobile {
        display: block;
    }
    
    .homepage .articles-section .wrapper {
        max-height: none;
        display: flex;
        flex-direction: row;
        overflow: visible;
        column-gap: 0px;
    }    

    .homepage .articles-section .item {
        flex-direction: column;
        height: auto;
        /* margin: 0 15px; */
    }

    .homepage .articles-section .item .image {
        margin-right: 0px;
        margin-bottom: 15px;
        width: 100%;
    }

}


/* ANCHOR catalog */

.catalog-section {
    margin-bottom: 50px;
    margin-bottom: clamp(35px, 5.88vw, 70px);
    margin-top: 25px;
}

.catalog-section .show-more-btn {
    max-width: 230px;
    margin-top: 35px;
    margin-top: clamp(23px, 2.94vw, 35px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-size: 15px;
    padding: 16px;
}

.catalog-section .loading-items {
    margin-left: auto;
    margin-right: auto;
    /* width: 100%; */
    margin-top: 35px;
}

.catalog-section .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 21px;
}

.catalog-item {
    height: 100%;
    /* width: 270px; */
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
}

.catalog-item .image {
    width: 100%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* min-height: 230px; */
}

.catalog-item .image img {
    max-width: 100%;
    width: 100%;
}

.catalog-item .image .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 90px;
    color: white;
    font-size: 13px;
    font-size: clamp(12px, 1.09vw, 13px);
    font-weight: 400;
    line-height: normal;
}

.catalog-item .title {
    margin-top: 15px;
    margin-bottom: 8px;
    font-size: 20px;
    font-size: clamp(18px, 1.68vw, 20px);
    font-weight: 700;
    height: 52px;
    overflow: hidden;
}

.catalog-item .info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px; 
}

.catalog-item .info .item {
    display: flex;
    align-items: center;
    margin-right: 9px;
    width: fit-content;
}

.catalog-item__info-wrapper {
    display: flex;
    white-space: nowrap;
}

.catalog-item .info .item:last-child {
    width: 100%;
}


.catalog-item .info .icon {
    width: 12px;
    height: 12px;
}

.catalog-item .info .text {
    margin-top: 2px;
    font-size: 13px;
    font-size: clamp(12px, 1.09vw, 13px);
    margin-left: 5px;
    height: 15px;
    overflow: hidden;
}

.catalog-item .rating {
    display: flex;
    align-items: center;
    margin: 19px 0 clamp(15px, 2.35vw, 28px);
    position: relative;
    height: 16px;
}

.catalog-item .rating.hide {
    display: none;
}

.catalog-item .rating .stars {
    background-image: url('/assets/img/icons/double-star-12px-icon.svg');
    background-position: 0 -12px;
    width: 70px;
    height: 12px;
}

.catalog-item .rating .stars span {
    background-image: url('/assets/img/icons/double-star-12px-icon.svg');
    height: 12px;
}


.catalog-item .rating .number {
    font-size: 13px;
    margin-left: 6px;
    margin-top: 2px;
}

.catalog-item .advantages {
    display: flex;
    border-top: 1px solid #C6C6C6;
    border-bottom: 1px solid #C6C6C6;
    padding: 10px 0; 
    flex-wrap: wrap;
    height: 60px;
    overflow: hidden;
    margin: 0 -7px 0px;
}

.catalog-item .advantages .item {
    display: flex;
    align-items: center;
    margin: 0 7px 7px;
}

.catalog-item .advantages .icon {
    height: 4px;
    width: 4px;
}

.catalog-item .advantages .text {
    font-size: 13px;
    font-size: clamp(12px, 1.18vw, 14px);
    font-weight: 300;
    margin-left: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;    
    /* width: 108px; */
}

.catalog-item .price {
    display: flex;
    align-items: end;
    margin: 15px 0 23px;
    margin: 15px 0 clamp(15px, 2.35vw, 28px);
}

.catalog-item .price .base {
    font-size: 20px;
    font-size: clamp(18px, 1.68vw, 20px);
    font-weight: 500;
    margin-right: 15px;
}

.catalog-item .price .base .ruble {
    font-size: 16px;
    font-size: clamp(14px, 1.34vw, 16px);
    font-weight: 700;
}

.catalog-item .price .discount {
    font-size: 15px;
    font-size: clamp(14px, 1.26vw, 15px);
    margin-right: 11px;
    color: #cccccc;
    text-decoration: line-through;
}

.catalog-item .price .discount .ruble {
    font-size: 14px;
    font-size: clamp(12px, 1.18vw, 14px);
}

.catalog-item .price .percent {
    font-size: 11px;
    font-size: clamp(9px, 0.99vw, 11px);
    font-weight: 700;
    color: white;
    background-color: #FD3838;
    border-radius: 90px;
    text-align: center;
    padding: 4px 7px;
    line-height: 1;
    margin-bottom: 1px;
}

.catalog-item .buttons {
    display: flex;
    justify-content: space-between;
    gap: 17px;
}


.catalog-item vendor[base-button] a,
.catalog-item .base-button {
    font-size: 13px;
    padding: 13px 10px; 
    width: 160px;
}

.catalog-item .buy-button-wrapper {
    margin-bottom: 0;
    width: 160px;
}

.catalog-item .buy-button-wrapper a {
    font-size: 13px;
    margin-bottom: 0;
    padding: 14px 10px; 
    line-height: normal;
    width: 100%;
    color: white;
    background-color: var(--mk2-primary);
    border-radius: 90px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
}

.catalog-item .order-button:hover {
    transition-duration: 0.1s;
    opacity: 0.9;
}

@media only screen and (max-width: 1190px) {
    .catalog-item vendor[base-button] a,
    .catalog-item .base-button {
        width: auto;
        padding: 14px 22px;
    }
    
    .catalog-item .buy-button-wrapper {
        width: auto;
    }
    
    .catalog-item .buy-button-wrapper a {
        padding: 15px 22px;        
    }
    
    .catalog-item .buttons {
        gap: 0;
    }

    .subscribe-section {
        background-image: none;
        background-color: #2e4a58;
    }
}

@media only screen and (max-width: 970px) {
    .catalog-section .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 650px) {
    .catalog-section .wrapper {
        gap: 19px;
    }
    
    .catalog-item vendor[base-button] a,
    .catalog-item .base-button {
        padding: 14px 18px;
        font-size: 13px;
    }

    .catalog-item .buy-button-wrapper a {
        padding: 14px 18px;
        font-size: 13px;
    }
}

@media only screen and (max-width: 618px) {
    .catalog-section .wrapper {
        grid-template-columns: 1fr;
    }
}


/* ANCHOR contacts page */

.contacts-page {
    font-size: 18px;
}

.contacts-page .contacts-block .schedule {
    margin-bottom: 20px;
}

.contacts-page .contacts-block .schedule .title {
    font-weight: 700;
}

.contacts-page .contacts-block .row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 4px;
}

.contacts-page .contacts-block .row .title {
    margin-right: 4px;
    font-weight: 700;
}

.contacts-page .contacts-block .row .icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

@media only screen and (max-width: 460px) {
    .contacts-page {
        font-size: 16px;
    }

    .contacts-page .contacts-block .row {
        flex-wrap: wrap;
    }
}


/* ANCHOR river trip page */

.river-trip vendor[base-button] a,
.river-trip .base-button {
    width: 100%;
    font-size: 15px;
    padding: 16px;
}

.river-trip .main-section {
    display: flex;
}

.river-trip .details-section {
    width: 100%;
    margin-right: 33px;
}

.river-trip .tickets-section {
    flex-shrink: 0;
    width: 350px;
    padding: 20px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    height: max-content;
}

@media (min-width:1080px) {
.river-trip .tickets-section {
    position: sticky;
    top: 100px;
}

}

.river-trip .tickets-section .main-price-prefix {
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 5px;
}

.river-trip .tickets-section .main-price-section {
    display: flex;
    align-items: end;
    margin-bottom: 21px;
}

.river-trip .tickets-section .main-price {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.river-trip .tickets-section .base-price {
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
    color: #cccccc;
    margin-left: 15px;
    margin-right: 22px;
    margin-bottom: 1px;
}

.river-trip .tickets-section .discount-percent {
    font-size: 11px;
    font-weight: 700;
    color: white;
    background-color: #FD3838;
    border-radius: 90px;
    text-align: center;
    padding: 4px 7px;
    height: max-content;
    margin-bottom: 2px;
}

.river-trip .tickets-section vendor[base-button] a, 
.river-trip .tickets-section .base-button {
    margin-bottom: 10px;
}

.river-trip .tickets-section .money-return {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f1f5f8;
    border-radius: 10px;
    padding: 11px 26px;
}

.river-trip .tickets-section .money-return .icon {
    width: 63px;
    height: 63px;
    margin-right: 22px;
}

.river-trip .tickets-section .money-return .text {
    font-size: 13px;
    line-height: 1.2;
    max-width: 174px;
}

.river-trip .tickets-section .gift-button {
    margin-top: 20px;
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

.river-trip .tickets-section .gift-button .icon {
    height: 18px;
    width: 18px;
    margin-right: 8px;
}

.river-trip .tickets-section .gift-button .text {
    font-size: 15px;
    color: var(--mk2-primary);
    margin-top: 1px;
}

.description {
    position: relative;
    font-weight: 300;
    line-height: 1.5;
    /* max-height: 120px;
    overflow: hidden; */
}

.river-trip .summary {
    margin-top: 30px;
    margin-bottom: 20px;
    border-top: 1px solid #C6C6C6;
    border-bottom: 1px solid #C6C6C6;
    padding: 10px 0;
}

.river-trip .summary .row {
    display: flex;
    align-items: center;
    padding: 13px;
    border-bottom: 1px solid #dddddd;
}

.river-trip .summary .name-wrapper {
    display: flex;
    align-items: center;
}

.river-trip .summary .row:last-child {
    border-bottom: none;
}

.river-trip .summary .icon {
    width: 26px;
    height: 26px;
}

.river-trip .summary .name {
    margin-left: 14px;
    font-weight: 300;
}

.river-trip .summary .value {
    margin-left: auto;
    font-weight: 500;
}

.included-options-section .subsection-title {
    margin: 20px 0;
}

.included-options-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.included-options-grid .item {
    display: flex;
    align-items: center;
}

.included-options-grid .icon {
    width: 26px;
    height: 26px;
}

.included-options-grid .text {
    font-size: 17px;
    font-weight: 300;
    margin-left: 14px;
    line-height: 1.3;
}

.additional-section {
    border-radius: 10px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    margin: 13px 0;
}

.additional-section .title-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
}

.additional-section .expand-button,
.additional-section .collapse-button {
    height: 24px;
    width: 24px;
}

.additional-section.js-opened .expand-button {
    display: none;
}

.additional-section .collapse-button {
    display: none;
}

.additional-section.js-opened .collapse-button {
    display: block;
}

.additional-section .main-block {
    border-top: 1px solid #C6C6C6;
    padding: 21px 30px 24px;
}

.additional-section .important-information .item {
    padding: 10px 0px;
    font-weight: 300;
    line-height: 1.5;
    border-bottom: 1px solid #e2e2e2;
}

.additional-section .important-information .item:first-child {
    padding-top: 0px;
}

.additional-section .important-information .item:last-child {
    border-bottom: none;
    padding-bottom: 0px;
}

.river-trip .route-section {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.river-trip .route-list .title {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
    color: var(--mk2-primary);
}

.river-trip .route-list .pier {
    display: flex;
    align-items: center;
}

.river-trip .route-list .pier .icon {
    width: 26px;
    height: 26px;
}

.river-trip .route-list .pier .text {
    max-width: 220px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    margin-left: 10px;
}

.river-trip .route-list .points-block {
    margin: 12px 0 12px 13px;
    padding-left: 23px;
    border-left: 1px dashed #C6C6C6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.river-trip .route-list .points-block .item {
    font-size: 14px;
    font-weight: 300;
}

.river-trip .route-section .map-widget {
    max-width: 340px;
    max-height: 340px;
    border-radius: 10px;
    overflow: hidden;
}

.river-trip .meal-options-item {
    font-size: 20px;
    font-weight: 500;
    margin-top: 8px;
} 

.river-trip .meal-options-line {
    border-bottom: 4px solid #4AA9DA;
    height: 5px;
    width: 160px;
    margin-top: 7px;
    margin-bottom: 24px;
} 

.river-trip .meals-section {
    margin-bottom: 37px;
}

.river-trip .meals-section:last-child {
    margin-bottom: 0;
}

.river-trip .meal-item .type {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 14px;
}

.river-trip .meal-item .details {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 14px;
}

.river-trip .meal-item .details div {
    margin-bottom: 7px;
}

.river-trip .meal-item .details div:last-child {
    margin-bottom: 0;
}

.river-trip .location-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.river-trip .location-section .map-widget {
    max-width: 340px;
    max-height: 340px;
    border-radius: 10px;
    overflow: hidden;
}

.river-trip .location-section .text {
    font-size: 15px;
    font-weight: 300px;
    max-width: 332px;
    margin-bottom: 28px;
    display: none;
}

.river-trip .location-section .base-button {
    font-size: 15px;
    padding: 16px;
    width: 100%;
    margin-top: 12px;
}

.river-trip .location-section .base-button:nth-child(2) {
    margin-top: 0;
}

.river-trip .tickets-return-section {
    line-height: 1.3;
}

.river-trip .faq-section .item {
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e2e2;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.3;
}

.river-trip .faq-section .question {
    font-weight: 500;
    margin-bottom: 10px;
}

.river-trip .faq-section .answer {
    font-weight: 300;
}

.river-trip .faq-section .item:last-child {
    padding: 0;
    margin: 0;
    border-bottom: none;
}

.river-trip .similar-events-section {
    margin-top: 60px;
}

.river-trip .modal-wrapper .text {
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.4;
}

.personal-data {
    font-size: 12px;
    line-height: 1.3;
}

.fixed-bar {
    position: fixed;
    width: 100%;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    background-color: white;
    z-index: 15;
    left: 0;
}

body.modal-opened .fixed-bar {
    padding-right: 19px;
}

.fixed-bar.top {
    top: -3px;
}

.fixed-bar.bottom {
    bottom: -3px;
}

.fixed-bar .wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.fixed-bar.bottom .wrapper {
    margin-top: 7px;
    margin-bottom: 10px;
}

.river-trip .fixed-bar.bottom .wrapper {
    /* margin-bottom: 0; */
}

.fixed-bar.top a {
    font-size: 18px;
    font-size: clamp(14px, 1.68vw, 20px);
    font-weight: 500;
    height: 100%;
    line-height: 67px;
    width: fit-content;
}

.fixed-bar.top a:hover {
    opacity: 0.8;
    transition-duration: 0.1s;
}

.fixed-bar .main-price-section {
    display: flex;
    align-items: end;
}

.river-trip .fixed-bar .main-price-section .discount-wrapper {
    display: flex;
    flex-direction: row;
}

.fixed-bar .prefix {
    font-size: 14px;
    font-weight: 300;
    margin-right: 12px;
    margin-bottom: 2px;
}

.fixed-bar .main-price {
    font-size: 32px;
    font-weight: 500;
    line-height: 1;
}

.river-trip .fixed-bar .base-price {
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
    color: #cccccc;
    margin-left: 15px;
    margin-right: 22px;
    margin-bottom: 1px;
}

.river-trip .fixed-bar .discount-percent {
    font-size: 11px;
    font-weight: 700;
    color: white;
    background-color: #FD3838;
    border-radius: 90px;
    text-align: center;
    padding: 4px 7px;
    margin-bottom: 2px;
    height: max-content;
}

.fixed-bar .bottom-button-wrapper,
.fixed-bar vendor[base-button] a,
.fixed-bar .base-button {
    margin-bottom: 0;
    width: 189px;
    font-size: 15px;
}

.fixed-bar.article .base-button {
    width: auto;
    font-size: 14px;
    padding: 13px 25px;
}

.fixed-bar.bottom .bottom-button-wrapper {
   height: 49px; 
}

.river-trip .fixed-bar .bottom-button-wrapper a {
    font-size: 15px;
    margin-bottom: 0;
}

.river-trip .anchor-wrapper {
    position: relative;
}

.river-trip .anchor-wrapper .anchor {
    position: absolute;
    top: -82px;
    left: 0px;
}

.bar-anchor-wrapper {
    position: relative;
}

.bar-anchor-wrapper .anchor {
    position: absolute;
    top: -82px;
    left: 0px;
}

.river-trip .summary .row .value {
    padding-left: 20px;
    text-align: right;
}

#ship-info-anchor {
    top: -55px;
}

#ship-features-anchor {
    top: -33px;
}

@media only screen and (max-width: 1190px) {
    .river-trip .fixed-bar.top .wrapper {
        justify-content: flex-start;
    }

    .river-trip .share-section .menu {
        left: 22px;
    }
}


@media only screen and (max-width: 1080px) {
    .river-trip .main-section {
        flex-direction: column-reverse;
    }
    
    .river-trip .tickets-section {
        margin-top: 5px;
        margin-bottom: 25px;
        width: 100%;
    }
}

@media only screen and (max-width: 860px) {
    .gallery-wrapper {
        height: clamp(100px, 45.23vw, 389px);
    }

    .gallery-static-section {
        grid-template-columns: 1fr;
    }

    .gallery-static-item:nth-child(3),
    .gallery-static-item:nth-child(4) {
        display: none;
    }
}

@media only screen and (max-width: 700px) {
    .river-trip .summary .row {
        flex-direction: column;
        align-items: start;
    }
    
    .river-trip .summary .row .value {
        margin-left: 40px;
        font-size: 14px;
        padding-left: 0;
        text-align: left;
    }


    .river-trip .route-section {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .river-trip .location-section {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .river-trip .included-options-grid {
        gap: 18px;
    }
}

@media only screen and (max-width: 650px) {
    .fixed-bar.bottom .bottom-button-wrapper {
        height: 32px; 
     }
    
    .river-trip .fixed-bar.top a {
        line-height: 49px;        
    }
    
    .fixed-bar.bottom .main-price-section .prefix {
        font-size: 13px;
        margin-right: 5px;
        margin-bottom: 4px;
    }

    .ship-page .fixed-bar.bottom .main-price-section .prefix, 
    .yacht-page .fixed-bar.bottom .main-price-section .prefix {
        display: block;
        margin-bottom: 4px;
    }

    .fixed-bar.bottom .main-price-section .main-price {
        font-size: 28px;
        margin-right: 8px;
        margin-bottom: 2px;
    }
    
    .river-trip .fixed-bar.bottom .main-price-section .base-price {
        font-size: 12px;
        margin-left: 0px;
    }
    
    .river-trip .fixed-bar.bottom .main-price-section .discount-percent {
        font-size: 9px;
        padding: 2px 5px;
        width: fit-content;
    }
    
    .river-trip .fixed-bar.bottom .main-price-section .discount-wrapper {
        flex-direction: column-reverse;
    }
    
    .river-trip .fixed-bar.bottom vendor[base-button] a,
    .river-trip .fixed-bar.bottom .base-button,
    .river-trip .fixed-bar.bottom .bottom-button-wrapper a {
        padding: 9px 18px;
        font-size: 12px;
        width: fit-content;
    }

    .river-trip .fixed-bar.bottom .bottom-button-wrapper {
        width: fit-content;
    }

    .river-trip .top-rating-section {
        display: none;
    }


    .fixed-bar.article .wrapper {
        flex-direction: column;
        gap: 7px;

    }

    .fixed-bar.article .base-button {
        width: auto;
        font-size: 14px;
        padding: 13px 25px;
    }
    
}

@media only screen and (max-width: 620px) {
 
    .gallery-wrapper {
        height: clamp(100px, 65.81vw, 408px);
    }
 
    .gallery-static-section {
        display: none;
    }

    .gallery-slider .slider-button-next {
        right: 12px;
    }

    .gallery-slider .slider-button-prev {
        left: 12px;
    }
}

@media only screen and (max-width: 480px) {

    .additional-section .title-block {
        padding: 16px 15px;
    }

    .additional-section .title-block img {
        height: 18px;
        width: 18px;
    }   

    .additional-section .subsection-title {
        font-size: 17px;
    }

    .additional-section .main-block {
        padding: 16px 15px;
    }
 
    .included-options-grid .item .icon {
        width: 12px;
        height: 12px; 
    }

    .included-options-grid .item .text {
        font-size: 14px;
        margin-left: 9px;
    }

    .additional-section .important-information,
    .additional-section .tickets-return-section,
    .additional-section .faq-section .question,
    .additional-section .faq-section .answer {
        font-size: 15px;
    }


    .river-trip .tickets-section vendor[base-button] a,
    .river-trip .tickets-section .base-button {
        font-size: 14px;
    }

    .fixed-bar.article .base-button {
        width: 100%;
        font-size: 14px;
        padding: 13px;
    }
}


@media only screen and (max-width: 400px) {
    .additional-section .map-widget {
        max-height: 85vw;
    }

    .ship-page .fixed-bar.bottom .main-price-section .prefix, 
    .yacht-page .fixed-bar.bottom .main-price-section .prefix {
        margin-bottom: 4px;
        margin-right: 6px;
    }

    .ship-page .fixed-bar.bottom .base-button, 
    .yacht-page .fixed-bar.bottom .base-button {
        padding: 11px 25px;
        width: auto;
        font-size: 14px;
    }

}

@media only screen and (max-width: 350px) {
    body div.fixed-bar.bottom .main-price-section .main-price {
        font-size: 20px;
    }

    .tickets-section .main-price-section .main-price {
        font-size: 28px;
    }

    .tickets-section .main-price-section .base-price {
        font-size: 16px;
    }

    .ship-page .fixed-bar.bottom .main-price-section .prefix, 
    .yacht-page .fixed-bar.bottom .main-price-section .prefix {
        margin-bottom: 3px;
    }

    .fixed-bar.article .base-button {
        font-size: 13px;
        padding: 13px 5px;
    }

}

/* ANCHOR large map section */

.large-map-section {
    margin-top: clamp(10px, 1.68vw, 20px);
}

.large-map-section .map {
    border-radius: 10px;
    max-height: 470px;
    overflow: hidden;
}

.top-border-line {
   border-top: 1px solid #c6c6c6;
   margin-top: 20px;
   margin-top: clamp(20px, 2.52vw, 30px);
}

/* ANCHOR ship-main-section */

.ship-main-section {
    display: flex;
    gap: 34px;
}

.ship-main-section .mobile {
    display: none;
}

.ship-main-section .content-block {
    width: 100%;
}

.ship-main-section .details-block {
    flex-shrink: 0;
    width: 350px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 20px;
    height: max-content;
}

.ship-main-section .details-block .title {
    color: var(--mk2-primary);
    font-size: 17;
    font-weight: 500;
    margin-bottom: 10px;
}

.ship-main-section .details-block .title.margin-top {
    margin-top: 30px;
}

.ship-main-section .details-block .detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px dotted #c6c6c6;
}

.ship-main-section .details-block .detail.strong {
    font-weight: 700;
    margin-top: 10px;
}

.ship-main-section .details-block .detail:first-child {
    margin-top: 0;
}

.ship-main-section .details-block .detail:last-child {
    border-bottom: none;
}

.ship-main-section .details-block .detail.strong:last-child {
    border-bottom: 1px dotted #c6c6c6;
}

.ship-main-section .details-block .base-button {
    padding: 12px;
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto; 
    width: 189px;
}

@media only screen and (max-width: 990px) {
    .ship-main-section {
        flex-direction: column-reverse;
        gap: 0;
    }

    .ship-main-section .details-block {
        width: 100%;
        margin-top: 20px;
        margin-top: clamp(20px, 2.52vw, 30px);
    }

    .ship-main-section .mobile {
        display: block;
    }

    .ship-main-section .desktop {
        display: none;
    }
}


/* ANCHOR modal large*/

.modal-wrapper.large {
    max-width: 678px;
}

.modal-wrapper.large .input-list-wrapper {
    margin-bottom: 0px;
}

.modal-wrapper.large .section-title {
    margin-bottom: 10px;
}

.modal-wrapper.large .resource-name {
    margin-bottom: 20px;
    margin-bottom: clamp(20px, 2.52vw, 30px);
    width: 100%;
    text-align: center;
    font-size: 16px;
}

.modal-wrapper.large .subtitle-block {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-top: clamp(20px, 2.52vw, 30px);
}

.modal-wrapper.large .subtitle-block .icon {
    height: 23px;
    width: 23px;
    margin-right: 10px;
}

.modal-wrapper.large .subtitle-block .text {
    font-weight: 700;
    font-size: 19px;
    font-size: clamp(18px, 1.68px, 20px);
}

.modal-wrapper.large .inputs-group {
    display: flex;
    gap: 20px;
}

.modal-wrapper.large .form-group {
    width: 100%;
}

.modal-wrapper.large .base-button {
    height: 58px;
    font-size: 18px;
}

.modal-wrapper.large .radio-input-wrapper {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 30px;
}

.modal-wrapper.large .radio-input-wrapper .label {
    font-size: 16px;
    margin-right: 22px;
}

.modal-wrapper.large .radio-input-wrapper .radio-group {
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.modal-wrapper.large .radio-input-wrapper label {
    display: block;
    margin-left: 7px;
    font-weight: 300;
}

.modal-wrapper.large .inputs-group.button {
    margin-top: 20px;
}

@media only screen and (max-width: 630px) {
    .modal-wrapper.large {
        max-width: none;
        width: auto;
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media only screen and (max-width: 530px) {
    .modal-wrapper.large .inputs-group {
        flex-direction: column;
        gap: 0;
    }
}

@media only screen and (max-width: 530px) {
    .modal-wrapper.large .radio-input-wrapper {
        flex-direction: column;
        align-items: start;
        gap: 18px;
    }
}


/* ANCHOR icon filter options */

.icons-filter-options {
    display: grid;
    gap: 40px;
    gap: clamp(0px, 3.36vw, 40px);
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 25px;
    margin-bottom: clamp(20px, 2.52px, 30px);   
}

.icons-filter-options .item {
    padding: 10px 0;
    border-radius: 10px;
}

.icons-filter-options .item.active {
    background-color: #FFC107;
}

.icons-filter-options .item .icon {
    height: 78px;
    height: clamp(46px, 6.55vw, 78px);
    margin-left: auto;
    margin-right: auto;
}

.icons-filter-options .item .text {
    margin-top: 10px;
    width: 100%;
    text-align: center;
    font-size: 17px;
    font-size: clamp(12px, 1.43vw, 17px); 
    font-weight: 500;
    line-height: 1.4;
}

@media only screen and (max-width: 650px) {
    .icons-filter-options {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 345px) {
    .icons-filter-options {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ANCHOR piers catalog */

.piers-catalog {
    margin-top: 15px;
    margin-top: clamp(10px, 1.68vw, 20px);
}

.piers-catalog .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
    margin-bottom: 30px;
    margin-bottom: clamp(20px, 3.36vw, 40px);
}

.piers-catalog .item {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
}

.piers-catalog .item .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.piers-catalog .item .image img {
    width: 100%;
    height: clamp(100px, 19.24vw, 229px);
    object-fit: cover;
}

.piers-catalog .item .image .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 90px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.piers-catalog .item .title {
    margin-top: 12px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 700;
    height: 44px;
    overflow: hidden;
}

.piers-catalog .item .property {
    display: flex;
    margin-bottom: 9px;
    gap: 5px;
    height: 15px;
    overflow: hidden;
}

.piers-catalog .item .property .icon {
    height: 12px;
    width: 12px;
    margin-top: 2px;
}

.piers-catalog .item .property .text {
    font-size: 13px;
    font-weight: 300;
}

.piers-catalog .item .base-button {
    width: 208px;
    padding: 12px;
    font-size: 15px;
    margin-top: 20px;
}

.piers-catalog .show-more-btn {
    font-size: 14px;
    padding: 20px;
    width: 222px;
    margin-left: auto;
    margin-right: auto;
}

.piers-catalog .loading-items {
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    height: 58px;
}


@media only screen and (max-width: 820px) {
    .piers-catalog .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .piers-catalog .item .image img {
        height: auto;
    }
}

@media only screen and (max-width: 520px) {
    .piers-catalog .wrapper {
        grid-template-columns: 1fr;
    }

    .piers-catalog .item .image img {
        height: auto;
    }
}


/* ANCHOR sitemap page */

.sitemap-page a {
    color: var(--mk2-primary);
    text-decoration: underline;
}

.sitemap-page .parent.row {
    margin: 25px 0;
    font-size: 20px;
}

.sitemap-page .inner {
    margin-left: 20px;
    font-size: 16px;
}

.sitemap-page .row {
    margin-bottom: 10px;
    margin-top: 10px;
}

/* ANCHOR river trip slider item */

.river-trip-slider {
    box-sizing: content-box;
    position: relative;
    width: 100%;
    height: max-content;
    overflow: hidden;
    margin: 5px -12px -12px;
    padding: 12px;
}

.river-trip-slider .slider-button-next.round {
    right: 0;
}

.river-trip-slider .slider-button-prev.round {
    left: 0;
}

.river-trip-slider .river-trip-slider-item {
    height: 100%;
    width: 270px;
    padding: 12px 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
}

.river-trip-slider-item .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 170px;
}

.river-trip-slider-item .image img {
    width: 100%;
}

.river-trip-slider-item .image .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 90px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.river-trip-slider-item .title {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    height: 44px;
    overflow: hidden;
}

.river-trip-slider-item .info {
    display: flex;
    height: 16px;
}

.river-trip-slider-item .info .item {
    display: flex;
    align-items: center;
    margin-right: 9px;
}

.river-trip-slider-item .info .icon {
    width: 10px;
    height: 10px;
}

.river-trip-slider-item .info .text {
    margin-bottom: 2px;
    font-size: 12px;
    margin-left: 5px;
    height: 13px;
    overflow: hidden;
}

.river-trip-slider-item .rating {
    display: flex;
    align-items: center;
    margin: 5px 0 10px;
    position: relative;
    height: 16px;
}

.river-trip-slider-item .rating .stars {
    background-image: url('/assets/img/icons/double-star-9px-icon.svg');
    background-position: 0 -9px;
    width: 55px;
    height: 9px;
}

.river-trip-slider-item .rating .stars span {
    background-image: url('/assets/img/icons/double-star-9px-icon.svg');
    height: 9px;
}


.river-trip-slider-item .rating .number {
    font-size: 12px;
    margin-left: 6px;
    margin-top: 2px;
}

.river-trip-slider-item .advantages {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #C6C6C6;
    border-bottom: 1px solid #C6C6C6;
    padding: 10px 0; 
    column-gap: 10px;
    row-gap: 5px;
    height: 54px;
}

.river-trip-slider-item .advantages .item {
    display: flex;
    align-items: center;
}

.river-trip-slider-item .advantages .icon {
    height: 4px;
    width: 4px;
}

.river-trip-slider-item .advantages .text {
    font-size: 12px;
    font-weight: 300;
    margin-left: 5px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: clip;    
    width: 108px;
}

.river-trip-slider-item .price {
    display: flex;
    align-items: end;
    margin: 12px 0;
}

.river-trip-slider-item .price .base {
    font-size: 18px;
    font-weight: 500;
    margin-right: 12px;
}

.river-trip-slider-item .price .discount {
    font-size: 14px;
    margin-right: 7px;
    color: #cccccc;
    text-decoration: line-through;
}

.river-trip-slider-item .price .percent {
    font-size: 9px;
    font-weight: 700;
    color: white;
    background-color: #FD3838;
    border-radius: 90px;
    text-align: center;
    padding: 4px 7px;
    line-height: 1;
    margin-bottom: 1px;
}

.river-trip-slider-item .buttons {
    display: flex;
    justify-content: space-between;
}

.river-trip-slider-item vendor[base-button] a,
.river-trip-slider-item .base-button {
    font-size: 12px;
    padding: 8px 15px; 
    width: 118px;
}


.river-trip-slider-item .buy-button-wrapper {
    margin-bottom: 0;
}

.river-trip-slider-item .buy-button-wrapper a {
    font-size: 12px;
    margin-bottom: 0;
    padding: 9px 15px; 
    line-height: normal;
    height: 32px;
    width: 116px;
}

/* ANCHOR tagpage */

.banner-section {
    margin-top: 13px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.banner-section img {
    width: 100%;
    object-fit: cover;
}

.banner-section.thin img {
    height: clamp(107px, 20.42vw, 243px);
}

.tagpage .banner-section img {
    min-height: 223px;
    height: clamp(223px, 32.94vw, 392px);
} 

.banner-section .inner-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    background: linear-gradient(to bottom, transparent, transparent, black);
}

.banner-section .inner-wrapper .base-button {
    /* width: 240px; */
    margin-top: 25px;
    margin-top: clamp(15px, 2.10vw, 25px);
    margin-bottom: 25px;
    margin-bottom: clamp(15px, 2.10vw, 25px);

    padding: 15px 38px;
    padding: clamp(12px, 2.10vw, 20px) clamp(35px, 4.87vw, 58px);
}

.banner-section .text {
    font-size: 28px;
    font-size: clamp(20px, 4.03vw, 48px);
    font-weight: 700;
    color: white;
}

.banner-section .title {
    font-size: 28px;
    font-size: clamp(20px, 4.03vw, 40px);
    font-weight: 700;
    color: white;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
}

.banner-section .subtitle {
    font-size: 16px;
    font-size: clamp(10px, 1.68vw, 20px);
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 35px;
    color: white;
    padding-left: 20px;
    padding-right: 20px;
}

.show-all-trips-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.show-all-trips-section .text {
    font-size: 20px;
    font-weight: 500; 
}

.show-all-trips-section .base-button {
    width: 442px;
}

@media only screen and (max-width: 870px) {
    .show-all-trips-section {
        flex-direction: column;
        gap: 10px;
    }

    .show-all-trips-section .base-button {
        width: 328px;
    }
}

@media only screen and (max-width: 780px) {
    .banner-section .title {
        margin-bottom: 23px;
    }

    .banner-section .subtitle {
        display: none;
    }
}
@media only screen and (max-width: 500px) {
    .show-all-trips-section .text {
        font-size: 16px;
    }

    .show-all-trips-section .base-button {
        font-size: 13px;
    }
}



@media only screen and (max-width: 362px) {
    .show-all-trips-section .text {
        font-size: 16px;
    }

    .show-all-trips-section .base-button {
        width: 100%;
    }
}

/* ANCHOR advanced route section*/

.advanced-route-section {
    margin-top: 20px;
}

.advanced-route-section .mobile {
    display: none;
}

.advanced-route-section .desktop .buttons-section {
    display: flex;
    gap: 15px;
}

.advanced-route-section .desktop .buttons-section .button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    height: 169px;
    width: 100%;
}

.advanced-route-section .mobile .button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    height: 74px;
    width: 100%;
    margin-bottom: 20px;
}

.advanced-route-section .desktop .buttons-section .button .icon {
    height: 74px;
    width: 74px;
}

.advanced-route-section .mobile .button .icon {
    height: 44px;
    width: 44px;
}

.advanced-route-section .desktop .buttons-section .button .title {
    font-size: 18px;
    font-weight: 500;
    margin-top: 14px;
}

.advanced-route-section .mobile .button .title {
    font-size: 18px;
    font-weight: 500;
    margin-left: 20px;
}

.advanced-route-section .button.active {
    background-color: var(--mk2-primary);
    box-shadow: none;
}

.advanced-route-section .button .icon.active {
    display: none;
}

.advanced-route-section .button.active .icon.active {
    display: block;
}

.advanced-route-section .button.active .icon.inactive {
    display: none;
}

.advanced-route-section .button.active .title {
    color: white;
}

.advanced-route-section .map-block {
    display: none;
}

.advanced-route-section .map-block.active {
    display: block;
}

.advanced-route-section .desktop .map-block {
    margin-top: 20px;
}

.advanced-route-section .map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
}

.advanced-route-section .mobile .map {
    width: 100%;
}

.advanced-route-section .text {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.4;
    margin-top: 20px;
}

.advanced-route-section .toggle-button {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--mk2-primary);
    text-decoration: underline;
}

.advanced-route-section .mobile .toggle-button {
    margin-top: 10px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 500px) {
    .advanced-route-section .desktop {
        display: none;
    }

    .advanced-route-section .mobile {
        display: block;
    }
}


/* ANCHOR article */

.article-page .banner-section {
    margin-bottom: 8px;
    height: clamp(107px, 20.42vw, 243px);
}

.article-index-wrapper {
    margin-top: 20px;
    margin-bottom: 28px;
    margin-bottom: clamp(20px, 2.52vw, 30px);
}

.article-index {
    border: 1px solid #C6D1DA;
	padding: 20px;
	padding: clamp(15px, 2.10vw, 25px);
    border-radius: 10px;
}

.article-index .section-title {
    margin-bottom: 18px;
    margin-bottom: clamp(15px, 1.68vw, 20px);
}

.article-index .item {
    font-size: 16px;
    font-weight: 300;
    color: #4AA9DA;
    margin-bottom: 14px;
}

.article-index .item a{
    display: flex;
    gap: 5px;
    font-size: 16px;
    font-weight: 300;
    color: #4AA9DA;
}

.article-index .item:last-child {
    margin-bottom: 0px;
}

.article-index .item span {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.article-body p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
}

.article-body table {
    margin-bottom: 20px;
    border-spacing: 0px;
    border-collapse: collapse;

}

.article-body td {
    border: 1px solid gainsboro;
    padding: 8px;
    margin: 0;
}

.article-body a,
.tickets-return-section a,
.article a {
    display: inline;
    color: var(--mk2-primary);
    text-decoration: underline;
    cursor: pointer;
}

.article-body strong {
    font-weight: 500;
}

.article-body h2 {
    font-size: 22px;
    font-size: clamp(18px, 2.52vw, 30px);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
    margin-bottom: clamp(10px, 1.68vw, 20px);
    margin-top: 16px;
    margin-top: clamp(15px, 1.71vw, 25px);
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-page .text-image-wrapper {
    overflow: hidden;
    height: clamp(272px, 32.94vw, 392px);
}

.article-page .text-image {
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.article-page .text-quote {
    background-color: #F1F5F8;
    padding: 42px 81px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
}

.article-page .text-quote .icon{
    position: absolute;
}

.article-page .text-quote .start-quotes {
    top: 42px;
    left: 26px;
}

.article-page .text-quote .end-quotes {
    bottom: 42px;
    right: 26px;
}

.article-page .text-list .item {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    display: flex;
}

.article-page .text-list .item::before {
    content: ' ';
    background-color: var(--mk2-primary);
    width: 9px;
    height: 9px;
    border-radius: 90px;
    display: block;
    flex-shrink: 0;
    margin-top: 8px;
    margin-right: 17px;
}

.article-page .text-list .item:last-child {
    margin-bottom: 0px;
}

.article-page .promocode-section {
    padding-top: 30px;
    padding-top: clamp(20px, 3.36vw, 40px);
    padding-bottom: 30px;
    padding-bottom: clamp(20px, 4.20vw, 50px);
    border-top: 1px s5lid #C6C6C6;
    border-bottom: 1px solid #C6C6C6;
}

.article-page .promocode-section .text {
    text-align: center;
    font-size: 21px;
    font-size: clamp(18px, 2.02vw, 24px);
    font-weight: 500;
    margin-bottom: 30px;
}

.article-page .promocode-section .promocode-wrapper {
    display: flex;
    justify-content: center;    
    align-items: center;
    gap: 20px;
}

.article-page .promocode-section .promocode-wrapper .name {
    font-size: 21px;
    font-size: clamp(18px, 2.02vw, 24px);
}

.article-page .promocode-section .promocode-wrapper .promocode {
    padding: 20px 35px;
    text-transform: capitalize;
    font-size: 21px;
    font-size: clamp(18px, 2.02vw, 24px);
    font-weight: 700;
    background-color: #FFC107;
}

.articles-slider {
    position: relative;
    width: 100%;
    height: max-content;
    overflow: hidden;
    margin: 5px -12px -12px;
    padding: 12px;
    box-sizing: content-box;
}

.articles-slider .item {
    width: 365px;
    height: 100%;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
}

.articles-slider .item .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* height: 229px; */
}

.articles-slider .item .image img {
    width: 100%;
    object-fit: cover;
}

.articles-slider .item .image .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 90px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.articles-slider .item .title {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    height: 44px;
    overflow: hidden;
}

.articles-slider .item .info-wrapper {
    margin: 10px 0;
    font-size: 13px;
    height: 15px;
    overflow: hidden;
}

.articles-slider .item .annotation {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    height: 56px;
    overflow: hidden;
    margin-bottom: 15px;
}

.articles-slider .item .base-button {
    max-width: 179px;
}

.articles-slider .slider-button-next.round {
    right: 0;
}

.articles-slider .slider-button-prev.round {
    left: 0;
}


@media only screen and (max-width: 680px) {

    .article-page .text-quote {
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 23px 18px 23px 76px;
    }

    .article-page .text-quote .start-quotes {
        top: 23px;
        left: 19px;
    }

    .article-page .text-quote .end-quotes {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    .article-page .promocode-section .promocode-wrapper {
        flex-direction: column;
    }

    .article-page .promocode-section .promocode-wrapper .promocode {
        padding: 17px;
        background-color: #F1F5F8;
        color: var(--mk2-primary);
        width: 100%;
        text-align: center;
    }

}

@media only screen and (max-width: 395px) {
    .articles-slider .item {
        width: 270px;
    }
}



/* ANCHOR page text section */

.page-text-section-background {
    background-color: #F1F5F8;
    margin-bottom: 50px;
    margin-bottom: clamp(35px, 5.88vw, 70px);
}

.page-text-section {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-top: clamp(22px, 4.20vw, 50px);
    padding-bottom: clamp(22px, 4.20vw, 50px);
}

.page-text-section .images {
    position: relative;
    margin: 20px 0;
    overflow: hidden;
    width: 100%;
}

.page-text-section .images .image {
    border-radius: 10px;
    width: 213px;
    width: clamp(139px, 17.90vw, 213px);
}

.page-text-section .article-wrapper {
    max-height: 87px;
}

.page-text-section .article {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
}

.page-text-section .article ul {
    list-style-type: disc;
}

.page-text-section .article li {
    display: list-item;
    margin-bottom: 10px;
    margin-left: 19px;
}

@media only screen and (max-width: 520px) {
    .page-text-section .article-wrapper {
        max-height: 79px;
    }

    .page-text-section .article {
        font-size: 13px;
    }
}


/* ANCHOR success page */

.success-page .main-title {
    width: 100%;
    text-align: center;
}

.success-page .main-text {
    font-size: 16px;
    font-size: clamp(14px, 1.68vw, 20px);
    line-height: 1.4;
    width: 100%;
    text-align: center;
    margin-bottom: 24px;
}


.success-page .main-text a {
    display: inline;
    color: #4AA9DA;
}

.success-page .alert-block {
    padding: 15px;
    padding: clamp(20px, 2.52vw, 30px) clamp(10px, 10.84vw, 129px);
    margin-bottom: 30px;
    margin-bottom: clamp(30px, 4.20vw, 50px);
    background-color: #F1F5F8;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 23px;
}

.success-page .alert-block .icon {
    width: 78px;
    height: 78px;
}

.success-page .alert-block .text {
    font-size: 16px;
    font-size: clamp(14px, 1.68vw, 20px);
    line-height: 1.4;
}

.success-page .promocode-title {
    width: 100%;
    text-align: center;
    color: var(--mk2-primary);
    font-size: 28px;
    font-size: clamp(20px, 3.03vw, 36px);
    margin-bottom: 20px;
}

.success-page .promocode-text {
    font-size: 16px;
    font-size: clamp(14px, 1.68vw, 20px);
    line-height: 1.4;
    width: 100%;
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.success-page .promocode {
    text-transform: uppercase;
    font-size: 16px;
    padding: 20px;
    background-color: #FFC107;
    max-width: 390px;
    width: 100%;
    color: var(--mk2-primary);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    margin-bottom: clamp(30px, 4.20vw, 50px);
    margin-left: auto;
    margin-right: auto;
}

.success-page .line {
    width: 100%;
    border-bottom: 1px solid #c6c6c6;
    margin-bottom: 30px;
    margin-bottom: clamp(30px, 4.20vw, 50px);
}

.success-page .contact-title {
    width: 100%;
    text-align: center;
    font-size: 28px;
    font-size: clamp(20px, 3.03vw, 36px);
    margin-bottom: 20px;
}

.success-page .contacts-section {
    margin-bottom: 30px;
    margin-bottom: clamp(30px, 4.20vw, 50px);
    display: flex;
    gap:42px;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
}

.success-page .contacts-wrapper {
    display: flex;
    gap: 50px;
}

@media only screen and (max-width: 780px) {
    .success-page .contacts-section {
        flex-direction: column;
        gap: 20px;
    }
}

@media only screen and (max-width: 490px) {
    .success-page .alert-block {
        flex-direction: column;
    }

    .success-page .alert-block .text {
        text-align: center;
    }
}

@media only screen and (max-width: 375px) {
    .success-page .contacts-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .success-page .base-button {
        width: 250px;
    }
}


/* ANCHOR ships main form */

.ships-main-form {
    padding: 15px;
    padding: clamp(10px, 1.68vw, 20px);
    border-radius: 10px;
    border: 1px dotted var(--mk2-primary);
}

.ships-main-form .title-wrapper {
    display: flex;
    padding: 13px;
    padding-left: 20px;
    padding-left: clamp(13px, 1.68vw, 20px);
    border-radius: 10px;
    background-color: var(--mk2-primary);
    align-items: center;
}

.ships-main-form .title-wrapper .section-title {
    font-size: 18px;
    font-size: clamp(18px, 2.52vw, 30px);
    font-weight: 700;
    color: white;
    margin-left: 10px;
}

.ships-main-form .title-wrapper .icon {
    height: 21px;
    width: 21px;
    height: clamp(21px, 3.53vw, 42px);
    width: clamp(21px, 3.53vw, 42px);
}

.ships-main-form .inputs-group {
    display: flex;
    gap: 13px;
    justify-content: space-between;
}

.ships-main-form .input-wrapper {
    padding: 30px 0;
    padding: clamp(20px, 2.52vw, 30px) 0;
    border-bottom: 1px solid var(--mk2-primary);
}

.ships-main-form .form-group .input-label {
    margin-top: 0px;
}

.ships-main-form .input-wrapper {
    font-size: 16px;
    margin-bottom: 12px;
}

.ships-main-form .radio-input-wrapper {
    display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 132px;
}

.ships-main-form .radio-input-wrapper.full-width {
    justify-content: space-between;
    gap: 0;
}

.ships-main-form .radio-input-wrapper .label {
    font-size: 16px;
    margin-right: 22px;
}

.ships-main-form .radio-input-wrapper .radio-group {
    display: flex;
    align-items: center;
}

.ships-main-form .radio-input-wrapper label {
    display: block;
    margin-left: 7px;
    font-weight: 300;
}

.ships-main-form .textarea-wrapper {
    margin-top: 25px;
    margin-top: clamp(20px, 2.52vw, 30px);
    margin-bottom: 25px;
    margin-bottom: clamp(20px, 2.52vw, 30px);
}

.ships-main-form .buttons-group {
    display: flex;
    justify-content: end;
    gap: 9px;
}

.ships-main-form .base-button.filled {
    width: 164px;
}

.ships-main-form .base-button.transparent {
    width: 183px;
}

@media only screen and (max-width: 1030px) {
    .ships-main-form .inputs-group {
        flex-direction: column;
    }

    .ships-main-form .radio-input-wrapper,
    .ships-main-form .radio-input-wrapper.full-width {
        flex-direction: column;
        align-items: start;
        gap: 12px;
    }
}


/* ANCHOR ships catalog */

.ships-catalog .section-title {
    margin-top: -10px;
    margin-bottom: 20px;
}

.ships-catalog .no-options {
    font-size: 18px;
    line-height: 1.2;
}

.ships-catalog .wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}

.ships-catalog .item {
    width: 100%;
    height: 100%;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
}

.ships-catalog .item .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* height: 229px; */
}

.ships-catalog .item .image img {
    width: 100%;
    object-fit: cover;
}

.ships-catalog .item .image .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 90px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.ships-catalog .item .title {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    height: 44px;
    overflow: hidden;
}

.ships-catalog .item .info-wrapper {
    margin: 10px 0;
    font-size: 13px;
    height: 144px;
}

.yachts-page .ships-catalog .item .info-wrapper {
    height: 72px;
}

.ships-catalog .item .info-wrapper .detail {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #c6c6c6;
    height: 36px;
    overflow: hidden;
}

.ships-catalog .item .annotation {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    height: 56px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ships-catalog .item .button-wrapper {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.ships-catalog .item .base-button {
    width: 100%;
}

.ships-catalog .slider-button-next.round {
    right: 0;
}

.ships-catalog .slider-button-prev.round {
    left: 0;
}

.ships-catalog .show-more-button {
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    min-width: 216px;
    padding: 19px;
}

.ships-catalog .loading-items {
    margin-right: auto;
    margin-left: auto;
    margin-top: 30px;
    height: 55px;
}


@media only screen and (max-width: 1005px) {

    .ships-catalog .wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .ships-catalog .item .base-button {
        font-size: 12px;
        padding: 9px;
    }

    .ships-catalog .item .base-button.filled {
        min-width: 124px;
    }
}

@media only screen and (max-width: 630px) {
    .ships-catalog .show-more-button {
        margin-top: 25px;
        padding: 16px;
    }

    .ships-catalog .loading-items {
        margin-top: 25px;
        height: 49px;
    }
}

@media only screen and (max-width: 580px) {
    .ships-catalog .wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ANCHOR ships slider */

.catalog-search {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.catalog-search .search-wrapper {
    width: 100%;
    position: relative;
}

.catalog-search .search-wrapper .input-field {
    font-size: 16px;
    padding: 17px 70px 17px 40px;
    border: 1px solid #cccccc;
}

.catalog-search .search-wrapper .icon {
    position: absolute;
    right: 40px;
    top: 17px;
    width: 22px;
    height: 22px;
}

.catalog-search .search-wrapper .icon.cancel {
    display: none;
}

.catalog-search .search-wrapper.active .icon.cancel {
    display: block;
}

.catalog-search .search-wrapper.active .icon.search {
    display: none;
}


.catalog-search .sort-wrapper {
    display: flex;
    gap: 9px;
}

.catalog-search .sort-wrapper .base-button {
    border-radius: 90px;
    font-size: 16px;
    padding: 17px;
    height: 55px;
    width: 179px;
    border: 1px solid #cccccc;
}

.catalog-search .sort-wrapper .base-button.active {
    background-color: #FFC107;
    border: 1px solid #FFC107;
    font-weight: 500;
}


@media only screen and (max-width: 780px) {
    .catalog-search {
        flex-direction: column;
    }

    .catalog-search .sort-wrapper .base-button {
        width: 100%;
    }
}

@media only screen and (max-width: 400px) {
    .catalog-search {
        gap: 10px;
    }

    .catalog-search .search-wrapper .input-field {
        font-size: 12px;
        padding: 17px 39px 17px 20px;
    }
    
    .catalog-search .search-wrapper .icon {
        width: 15px;
        height: 15px;
        right: 20px;
    }

    .catalog-search .sort-wrapper .base-button {
        font-size: 12px;
        padding: 11px;
        height: 50px;
    }
}

/* ANCHOR ships slider */

.ships-slider {
    position: relative;
    width: 100%;
    height: max-content;
    overflow: hidden;
    margin: 5px -12px -12px;
    padding: 12px;
    box-sizing: content-box;
}

.ships-slider .item {
    width: 365px;
    height: 100%;
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.233);
}

.ships-slider .item .image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    /* height: 229px; */
}

.ships-slider .item .image img {
    width: 100%;
    object-fit: cover;
}

.ships-slider .item .image .tag {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 5px 12px;
    border-radius: 90px;
    color: white;
    font-size: 13px;
    font-weight: 400;
    line-height: normal;
}

.ships-slider .item .title {
    margin-top: 12px;
    margin-bottom: 6px;
    font-size: 18px;
    font-weight: 700;
    height: 44px;
    overflow: hidden;
}

.ships-slider .item .info-wrapper {
    margin: 10px 0;
    font-size: 13px;
    height: 144px;
}

.ships-slider .item .info-wrapper .detail {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #c6c6c6;
    height: 36px;
    overflow: hidden;
}

.ships-slider .item .annotation {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.4;
    height: 56px;
    overflow: hidden;
    margin-bottom: 15px;
}

.ships-slider .item .button-wrapper {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.ships-slider .item .base-button {
    width: 100%;
}

.ships-slider .slider-button-next.round {
    right: 0;
}

.ships-slider .slider-button-prev.round {
    left: 0;
}


@media only screen and (max-width: 395px) {
    .ships-slider .item {
        width: 270px;
    }
}


/* ANCHOR articles */


.articles-page .description {
    font-size: 16px;
    font-size: clamp(14px, 1.68vw, 20px);
    line-height: 1.4;
    text-align: center;
}





/* ANCHOR reviews */

.reviews-section-wrapper {
    margin-top: 60px;
    margin-top: clamp(35px, 5.11vw, 60px);
    padding: 50px 0;
    padding: clamp(25px, 4.07vw, 50px);
    background-color: #F1F5F8;
}

.reviews-section .section-title {
    margin-bottom: 20px;
}

.reviews-section .rating .main-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reviews-section .rating .details {
    display: flex;
    align-items: end;
}

.reviews-section .rating .description {
    margin-top: 16px;
    font-size: 16px;
}

.reviews-section .rating .main-block .number {
    font-size: 64px;
    font-weight: 500;
    color: var(--mk2-primary);
    margin-right: 10px;
    line-height: 1;
}

.reviews-section .rating .stars-wrapper {
    margin-bottom: 5px;
}

.reviews-section .rating .base-button {
    font-size: 13px;
    max-width: 178px;
    padding: 13px;
    width: 100%;
}

.reviews-section .rating .base-button.mobile {
    display: none;
}

.stars {
    background-image: url('/assets/img/icons/double-star-icon.svg');
    background-position: 0 -17px;
    background-repeat: repeat-x;
    width: 100px;
    height: 17px;
}

.stars span {
    background-image: url('/assets/img/icons/double-star-icon.svg');
    background-position: 0 0;
    background-repeat: repeat-x;
    display: block;
    height: 17px;
    width: 0;
}

.reviews-form .stars {
    float: none;
}

.reviews-form .stars span {
    background-position: 0 33px;
    background-repeat: no-repeat;
    width: 20px;
    height: 17px;
    float: left;
    display: block;
    margin: 0;
    cursor: pointer;
}

.reviews-form .stars span.active,
.reviews-form .stars span.active2 {
    background-position: 0 0;
}

.reviews-form .stars span.active-disabled {
    background-position: 0 -17px;
}

.reviews-form .stars-description {
    float: none;
}


.reviews-section .stars  span.rating-5 {
    width: 100px;
}

.reviews-section .stars  span.rating-4 {
    width: 80px;
}

.reviews-section .stars  span.rating-3 {
    width: 60px;
}

.reviews-section .stars  span.rating-2 {
    width: 40px;
}

.reviews-section .stars span.rating-1 {
    width: 20px;
}


.reviews-section .rating .lines-wrapper {
    margin: 15px 0 30px;
    font-size: 16px;
}

.reviews-section .rating .lines-block .item {
    display: flex;
    align-items: center;
    margin: 17px 0;
}

.reviews-section .rating .number {
    display: flex;
}

.reviews-section .rating .number .icon {
    margin-left: 5px;
    width: 17px;
    height: 17px;
}

.reviews-section .rating .progress {
    position: relative;
    margin: 0 20px;
    border-radius: 90px;
    overflow: hidden;
    height: 9px;
    width: 100%;
}

.reviews-section .rating .progress .empty,
.reviews-section .rating .progress .filled
{
    position: absolute;
    top: 0;
    bottom: 0;
}

.reviews-section .rating .progress .empty {
    background-color: #d9d9d9;
    width: 100%;
    height: 100%;
}

.reviews-section .rating .progress .filled {
    background-color: var(--mk2-primary);
    height: 100%;    
}

.reviews-section .images-title {
    font-size: 24px;
    font-size: clamp(18px, 2.02vw, 24px);
    font-weight: 500;
    margin-bottom: 20px;
}

.reviews-section .images-slider {
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.reviews-section .images-slider .item {
    border-radius: 10px;
    overflow: hidden;
    width: fit-content;
}

.reviews-section .images-slider .item img {
    width: 213px;
    width: clamp(139px, 17.90vw, 213px);
}

.reviews-section .messages {
    margin-top: 30px;
}

.reviews-section .messages .item {
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.reviews-section .messages .item:last-child {
    margin-bottom: none;
}

.reviews-section .messages .info-section {
    display: flex;
    align-items: center;
}

.reviews-section .messages .info-section .icon {
    height: 55px;
    width: 55px;
    line-height: 55px;
    background-color: var(--mk2-primary);
    color: white;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-right: 14px;
    border-radius: 50%;
}

.reviews-section .messages .info-section .name {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 8px;
}

.reviews-section .messages .info-section .date-wrapper {
    display: flex;
    justify-content: end;
    font-size: 15px;
}

.reviews-section .messages .info-section .trip-name {
    margin-left: 5px;
}

.reviews-section .messages .stars {
    margin-top: 15px;
    margin-bottom: 20px;
}

.reviews-section .messages .text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

.reviews-section .messages .images {
    margin-top: 20px;
    overflow: hidden;
}

.reviews-section .messages .images .image {
    height: 80px;
    width: 80px;
    margin-right: 12px;
}

.reviews-section .messages .base-button {
    max-width: 230px;
    margin-top: 30px;
    margin-top: clamp(20px, 2.89vw, 30px);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-size: 15px;
    padding: 16px;
}

.section-title.no-reviews {
    width: 100%;
    text-align: center;
}

.no-reviews-section {
    /* display: flex; */
    width: 100%;
}

.no-reviews-section .text {
    font-size: 22px;
    font-size: clamp(15px, 1.72vw, 22px);
    line-height: 1.4;
    max-width: 400px;
    text-align: center;
    margin-top: 35px;
    margin-top: clamp(20px, 2.94vw, 35px);
    margin-bottom: 25px;
    margin-bottom: clamp(15px, 2.10vw, 25px);
    margin-right: auto;
    margin-left: auto;
}

.no-reviews-section .base-button {
    font-size: 17px;
    font-size: clamp(15px, 1.43vw, 17px);
    /* margin-left: 40px; */
    margin-right: auto;
    margin-left: auto;
    max-width: 278px;
    height: max-content;
    padding: 19px;
    padding: clamp(11px, 1.66vw, 19px);
}

@media only screen and (max-width: 1190px) {
    .reviews-section .images-slider .slider-button-next,   
    .reviews-section .images-slider .slider-button-prev {
        display: none;
    }
}

@media only screen and (max-width: 650px) {
    .reviews-section .rating .base-button.mobile {
        display: block;
        margin-bottom: 25px;
    }

    .reviews-section .rating .base-button.desktop {
        display: none;
    }

    .reviews-section .rating .lines-wrapper {
        margin-bottom: 15px;
    }
    
    .reviews-section .rating .details .number {
        font-size: 48px;
    }

    .reviews-section .rating .stars-wrapper {
        margin-bottom: 4px;
    }

    .reviews-section .rating .stars-wrapper .description {
        font-size: 12px;
        margin-top: 11px;
    }

    .reviews-section .rating .lines-block .item {
        margin: 9px 0;
    }

    .reviews-section .messages .item {
        padding: 18px 15px;
    }

    .reviews-section .messages .item .info-section .icon {
        width: 33px;
        height: 33px;
        line-height: 33px;
        font-size: 17px;
        margin-right: 10px;
        flex-shrink: 0;
    }
    
    .reviews-section .messages .item .info-section .name {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .reviews-section .messages .item .info-section .date-wrapper {
        font-size: 12px;
    }

    .reviews-section .messages .item .info-section .date-wrapper .date {
        flex-shrink: 0;
    }
    
    .reviews-section .messages .item .text {
        font-size: 13px;
    }

    .reviews-section .messages .item .stars {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .reviews-section .messages .item .images {
        margin-top: 15px;
    }
}

/* ANCHOR static advantages */

.static-advantages-background {
    background-color: #F1F5F8;
}

.static-advantages-section {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-top: clamp(30px, 4.19vw, 52px);
    padding-bottom: clamp(30px, 4.19vw, 52px);
}

.static-advantages-section .section-title {
    margin-bottom: 36px;
    margin-bottom: clamp(20px, 3.03vw, 36px);
}

.static-advantages-section .wrapper {
    display: flex;
    justify-content: space-between;
}

.static-advantages-section .item {
    display: flex;
    align-items: center;
    max-width: 220px;
}

.static-advantages-section .item .icon {
    height: 66px;
    width: 66px;
    margin-right: 15px;
}

.static-advantages-section .item .text {
    font-size: 20px;
    line-height: 1.3;
}


@media only screen and (max-width: 950px) {
    .static-advantages-section .item .icon {
        height: 43px;
        width: 43px;
    }
    
    .static-advantages-section .item .text {
        font-size: 16px;
    }
}

@media only screen and (max-width: 640px) {
    .static-advantages-section .wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .static-advantages-section .item {
        max-width: none;
    }
}

/* ANCHOR verification error */


.verification-error-section {
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
    margin-bottom: 80px;
}

.verification-error-section .error-text {
    font-size: 20px;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.4;
}

.verification-error-section .contacts-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
}

.verification-error-section .social-section {
    margin: 30px auto 0px;
    width: fit-content;
}


/* ANCHOR tickets modal */

.modal-wrapper {
    overflow-y: auto;
}

.modal-wrapper .ticket-row {
    border-bottom: 1px solid #C6C6C6;
    padding: 15px 0;
}

.modal-wrapper .ticket-row:last-child {
    border: none;
    margin-bottom: 20px;
}
.modal-wrapper .ticket-row .category {
    font-size: 17px;
    font-weight: 300;
    margin-bottom: 10px;
}

.modal-wrapper .ticket-row .price {
    font-size: 17px;
    font-weight: 500;
}

.modal-wrapper.tickets-modal .base-button:last-child {
    margin-bottom: 0px;
}

.modal-wrapper .base-button {
    width: 100%;
}

/* ANCHOR slider */

/* .swiper-wrapper {
    overflow: hidden;
} */

.slider-button-prev,
.slider-button-next
{   
    position: absolute;
    top: calc(50% - var(--slider-round-btn-offset));
    width: var(--slider-round-btn-size);
    height: var(--slider-round-btn-size);
    font-size: 1px;
    z-index: 5;
    background-size: cover;
}

.slider-button-next.round
{
    background-image: url("/assets/img/icons/slider-arrow-right.svg");
    right: 30px;
}

.slider-button-next.white
{
    background-image: url("/assets/img/icons/right-arrow-white.svg");
    right: 6px;
    height: 30px;
    width: 30px;
}

.slider-button-prev.round
{
    background-image: url("/assets/img/icons/slider-arrow-left.svg");
    left: 30px;
}

.slider-button-prev.white
{
    background-image: url("/assets/img/icons/left-arrow-white.svg");
    left: 6px;
    height: 30px;
    width: 30px;
}

.swiper-container .slider-button-next {
    right: -40px;
}

.swiper-container .slider-button-prev {
    left: -40px;
}

@media (max-width: 1240px) {
    .swiper-container .slider-button-next {
        right: -17px;
    }

    .swiper-container .slider-button-prev {
        left: -17px;
    }
    
}

.swiper-button-disabled {
    display: none !important;
}

/* .always-visible.swiper-button-disabled {
    display: block !important;
} */

/* .swiper-button-lock {
    display: block !important;
} */

/* ANCHOR hystmodal */


body .hystmodal__close:focus {
    outline: none;
}

/* ANCHOR input file field */

.inf__drop-area * {
	box-sizing: border-box;
}

.inf__drop-area {
	position: relative;
	display: flex;
	align-items: center;
    height: 65px;
	width: 450px;
	max-width: 100%;
	border: 1px dashed #c4c4c4;
	border-radius: 3px;
	padding: 0 20px;
	transition: 0.2s;
    border-radius: 10px;
    margin-bottom: 20px;
}

.inf__drop-area.is-active {
	background-color: rgba(0, 20, 20, 0.03);
}

input[type="file"] {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	cursor: pointer;
}

input[type="file"]:focus {
	outline: none;
}

.inf__btn {
	display: inline-block;
	border: 1px solid #c4c4c4;
	border-radius: 3px;
	padding: 5px 12px;
	margin-right: 10px;
	font-size: 10px;
	text-transform: uppercase;
}

.inf__hint {
	flex: 1;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* ANCHOR vendor */

.river-trip .order-button {
    margin-bottom: 10px;
    width: 100%;
    font-size: 15px;
    padding: 16px;
    color: white;
    background-color: var(--mk2-primary);
    border-radius: 90px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
}

.river-trip .order-button:hover {
    filter: brightness(1.06);
    transition-duration: 0.1s;
}

.river-trip-slider .order-button {
    margin-bottom: 10px;
    width: 100%;
    font-size: 15px;
    padding: 16px;
    color: white;
    background-color: var(--mk2-primary);
    border-radius: 90px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
}

.river-trip-slider .order-button:hover {
    filter: brightness(1.06);
    transition-duration: 0.1s;
}


.river-trip .button-wrapper {
    height: 49px;
    margin-bottom: 10px;
}

.river-trip .bottom-button-wrapper {
    margin-bottom: 10px;
}

.river-trip .fixed-bar .bottom-button-wrapper {
    margin-bottom: 0px;
}


.fixed-bar vendor[base-button] a, 
.fixed-bar a.base-button {
    text-decoration: none;
}

.river-trip .bottom-button-wrapper a {
    width: 100%;
    font-size: 15px;
    padding: 16px;
    color: white;
    background-color: var(--mk2-primary);
    border-radius: 90px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
}

.ti-tickets-event-tickets-buy:focus {
    box-shadow: none !important;
}


body .ti-tickets-event-tickets-buy {
    margin-bottom: 10px;
    width: 100%;
    font-size: 15px;
    padding: 16px;
    color: var(--mk2-primary);
    background-color: white;
    border: 1px solid var(--mk2-primary);
    border-radius: 90px;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
    background-image: none;
    display: block;
    font-family: Roboto, sans-serif;
    line-height: 1;
}

body .filled .ti-tickets-event-tickets-buy {
    color: white;
    background-color: var(--mk2-primary);
}

body .tickets-section .ti-tickets-event-tickets-buy {
    margin-bottom: 10px;
}

body .transparent .ti-tickets-event-tickets-buy:hover {
    background: none;
    border: 1px solid var(--mk2-primary);
    filter: brightness(1.06);
    transition-duration: 0.1s;
}

body .filled .ti-tickets-event-tickets-buy:hover {
    background: var(--mk2-primary);
    border: 1px solid var(--mk2-primary);
    filter: brightness(1.06);
    transition-duration: 0.1s;
}

.river-trip .ti-tickets-event-tickets-buy:focus {
    box-shadow: none;
}

.teplohod-info-wrapper .ti-tickets-loader {
    z-index: -100 !important;
}

.hystmodal--active:before {
    opacity: 0.85 !important;
}

.ec-rating-description {
    font-size: 14px;
    padding-top: 8px !important;
}

.grecaptcha-badge {
    display: none !important;
}

vendor .radario-button {
    background-color: transparent;
    display: block;
    margin: 0;
    opacity: 1;
}

.nz-moskva-widget a {
    margin: 0 0 0px !important;
    font-size: 15px !important;
    padding: 16px !important;
    border-radius: 90px !important;
    background-color: var(--mk2-primary) !important;
    font-family: inherit !important;
    font-weight: 500 !important;
    line-height: normal !important;
    text-transform: none !important;
    border: 1px solid var(--mk2-primary);
}

.nz-moskva-widget a:hover {
    background-color: var(--mk2-primary) !important;
    opacity: 0.9;
    transition-duration: 0.1s;
}

.catalog-item .nz-moskva-widget a {
    font-size: 13px !important;
    padding: 13px 10px !important;
}


.catalog-item .nz-moskva-widget {
    height: 45px;
}

.tickets-section .nz-moskva-widget a {
    margin-bottom: 10px !important;
}

.river-trip-slider-item .nz-moskva-widget a {
    padding: 8px 15px !important;
    font-size: 12px !important;
    content: 'Ð—Ð°Ð¿Ð¸ÑÐ°Ñ‚ÑŒÑÑ' !important;
    max-width: 112px !important;
}

.river-trip-slider-item .nz-moskva-widget {
    height: 33px;
}

/* ANCHOR modifiers */

.js-hidden {
    display: none !important;
}

.js-show-full-img {
    cursor: pointer;
}


/* ANCHOR cursor, no-selection */

.pointer {
    cursor: pointer;
}

.noselect {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
  }

.hover:hover {
    opacity: 0.9;
    /* filter: brightness(0.); */
    transition-duration: 0.1s;
}

.article-groups .content-block-margin {
    margin-bottom: 30px;
}

.gallery-slider .swiper-pagination {
    color: #FFFF;
}


.go-to-top-btn {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 147, 185, 1);
    background-color: rgba(230, 245, 248, 0.8);
    position: fixed;
    bottom: 68px;
    left: 40px;
    z-index: 20;
}

.go-to-top-btn:hover {
   background-color: rgba(230, 245, 248, 1);
}

.go-to-top-btn img {
    margin:auto;
    width: 25px;
}

.toggle-button-show-img,
.toggle-button-hide-img {
    display: inline-block;
    margin: auto 0 -6px 5px;
}

.toggle-button {
cursor: pointer;}


h2, .h2,
.article-body h2 {
    font-size: clamp(18px, 3.03vw, 36px);
    font-weight: 500;
    color: #272D30;
}

h3, .h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.agreement-text {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    line-height: 1.5;
}

.agreement-text a{
    color: white;
    display: inline;
    color: rgba(255, 255, 255, 0.7);
    transition: all .3s ease;
}

.agreement-text a:hover{
    color: white;
}

.subscribe-section-light .agreement-text,
.reviews-form .agreement-text {
    color: #272d307a;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
}

.reviews-form .agreement-text {
    margin-bottom: 15px;
}

.subscribe-section-light .agreement-text a,
.reviews-form .agreement-text a {
    color: #272d307a;
}

.subscribe-section-light .agreement-text a:hover,
.reviews-form .agreement-text a:hover{
    color: #272D30;
}

@media (max-width: 1000px) {
    .breadcrumb-item,
    .breadcrumb-item.not-active {
        display: none;
    }
}

.contacts-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contacts-block.content-block-margin {
    margin-bottom: 50px;
    margin-bottom: clamp(35px, 5.88vw, 70px);
}

.contacts-page .map-wrapper {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.contacts-form {
    max-width: 442px;
    width: 100%;
    padding: 60px 46px;
    border: 1px solid rgba(221, 221, 221, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0px 19px 21.9px 0px rgba(35, 119, 163, 0.2);
    border-radius: 10px;
}

.contacts-form .section-title {
    font-size: 27px;
    text-align: center;
}

.contacts-form .subtitle {
    font-size: 16px;
    text-align: center;
    margin: 15px 0 30px;
}

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

.contacts-form .base-button {
    width: 100%;
    font-size: 18px;
}

.requisites .title {
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: 500;
}

.contacts-block.requisites {
    justify-content: start;
    gap: 65px;
}

@media (max-width: 1080px) {
    .contacts-block {
        flex-wrap: wrap;
    }

}

@media (max-width: 850px) {
    .contacts-block {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: flex-start;
        gap: 20px;
    }
}

@media (max-width: 445px) {
    .contacts-form {
        padding: 40px 20px;
    }

    .contacts-form .section-title {
        font-size: 20px;
    }

    .contacts-form .subtitle {
        font-size: 14px;
    }
}

#gifts-modal .text {
    font-size: 14px;
    margin: 20px 0;
}

.question-modal .form-group {
    margin-bottom: 20px;
}

.contacts-block .social-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
}

.contacts-block .social-wrapper img {
    width: 40px;
    height: 40px;
}

.contacts-item .base-button {
    margin-top: 20px;
}

.ships-main-form__bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
}

.ships-main-form__bottom .agreement-text {
color: #272d307a;
margin: auto 0;
}

.ships-main-form__bottom .agreement-text a {
    color: #272d307a;
}

.ships-main-form__bottom .agreement-text a:hover{
    color: #272D30;
}

@media (max-width: 700px) {

    .ships-main-form__bottom {
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
    }

    .ships-main-form__bottom .agreement-text {
    margin: 0 auto;
    }
}

.contacts-widget{
    position: fixed;
    bottom: 70px;
    right: -65px;
}

.contacts-widget__hover {
    position: relative;
    border-radius: 10px;
    border: 1px solid rgba(0, 147, 185, 1);
    background-color: white;
    width: 230px;
    z-index: 21;
}

.contacts-widget__icon-wrapper {
    position: relative;
} 

.contacts-widget__icon-background  {
    position: absolute;
    background-color: white;
    top: 5px;
    left: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 150;
}
    

.contacts-widget__hover-wrapper {
    position: absolute;
    right: 85px;
    bottom: 0;
    padding-bottom: 50px;
}

.contacts-widget__hover-items {
    display: flex;
    flex-direction: column;
    padding: 7px 0;
}

.contacts-widget__hover-item {
    display: flex;
    flex-direction: row;
    gap: 7px;
    padding: 8px 11px;
    color: black;
}

.contacts-widget__hover-item:hover {
    background-color: #f0f0f0;
}

.contacts-widget__hover-item-text {
    font-size: 13px;
    font-weight: 500;
    margin: auto 0;
}

.contacts-widget__hover-item-img {
    width: 13px;
    height: 13px;
    margin: auto 0;
}


.contacts-widget__hover {
    display: none;
}

.contacts-widget .contacts-widget__icon-wrapper:hover,
.contacts-widget:hover .contacts-widget__hover{
    display: block;
}


@media (max-width: 500px) {

    .contacts-widget__hover-wrapper {
        padding-right: 60px;
    }
}

.contacts-widget__icon-background-back {
    position: absolute;
    bottom: -14px;
    right: 68px;
    width: 68px;
    height: 68px;
    background-color: rgba(0, 147, 185, 0.1);
    border-radius: 50%;
}

.contacts-widget__icon-background-front{
    position: absolute;
    bottom: -7px;
    right: 74px;
    width: 54px;
    height: 54px;
    background-color: rgba(0, 147, 185, 0.2);
    border-radius: 50%;
}

.contacts-widget__title {
    width: 230px;
    color: black;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 20px;
    background-color: white;
    border-radius: 90px;
    border: 1px solid rgba(0, 147, 185, 1);
    position: absolute;
    bottom: -1px;
    right: 82px;
}

.contacts-widget__icon {
    position: absolute;
    z-index: 21;
    width: 40px;
    bottom: 0px;
    right: 81px;
}

@media (max-width: 1200px) {
.contacts-widget {
    right: -45px;
}

}

@media (max-width: 780px) {

    .contacts-widget__title {
        display: none;
    }

    .contacts-widget {
        right: auto;
        left: 30px;
        bottom : 102px;
    }

    .contacts-widget__icon-background-back {
        right: auto;
        left: -14px;
    }

    .contacts-widget__icon-background-front{
        right: auto;
        left: -7px;
    }

    .contacts-widget__icon {
        right: auto;
    }

    .contacts-widget__hover-wrapper {
        right: auto;
    }

    .go-to-top-btn {
        bottom: 102px;
        left: auto;
        right: 15px;
        padding: 0;
    }

    .go-to-top-btn img {
        margin: auto;
        width: 25px;
    }

}

.faq-title-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}

.faq-title-wrapper .base-button {
    width: fit-content;
    min-width: 222px;
}

.faq-title-wrapper .main-title {
    margin: 0;
}

.included-options-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

@media (max-width: 780px) {
    .faq-title-wrapper {
        flex-direction: column;
        gap: 10px;
    }

    .included-options-wrapper {
        grid-template-columns: 1fr;
    }
}

.included-options-grid .subsection-title {
    margin-bottom: 0;
}

.rivertrip-slider {
    width: 100%;
    height: 390px;
    margin-top: 32px;
    position: relative;
    overflow: hidden
}


.rivertrip-slide {
    overflow: hidden;
    border-radius: 20px;
    height: 100%;
    position: relative;

}
.rivertrip-slide__image {
    position: absolute;
    z-index: 1;
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.rivertrip-slide__gradient {
    z-index: 2;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4) 100%;
}


.rivertrip-slide__content {
    z-index: 3;
    position: relative;
    height: 100%;
    width: 100%;
    padding: 20px 30px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .rivertrip-slide__content h2{
        color: white;
    }

    .rivertrip-slide__image  img {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 20px;
    }

.rivertrip-slide__bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.rivertrip-slide__tabs {
    display: flex;
    gap: 10px;
}

.rivertrip-slide__date-tab,
.rivertrip-slide__duration-tab {
    display: flex;
    flex-wrap: wrap;
    align-content: end;
    font-size: 16px;
    padding: 9px 20px;
    background-color: rgba(35, 119, 163, 1);
    border-radius: 90px;
}

.rivertrip-slide__date-tab img,
.rivertrip-slide__duration-tab img{
    width: 19px;
    margin-right: 5px;
    display: inline-block;
}

.rivertrip-slide__price-block {
    display: flex;
    gap: 10px;
}

.rivertrip-slide__price {
    font-size: 32px;
    font-weight: 500;
}

.rivertrip-slide__old-price {
    color: rgba(255, 255, 255, 0.5);
    font-size: 20px;
    font-weight: 400;
    text-decoration: line-through;
    margin: auto 0;
}

.rivertrip-slide__discount {
    font-size: 11px;
    font-weight: 800;
    padding: 3px 7px;
    margin: auto 0;
    border-radius: 90px;
    background-color: rgba(253, 56, 56, 1);
}

.rivertrip-slider .swiper-pagination {
    display: none;
}

.rivertrip-slider .swiper-pagination-bullet-active {
    background-color: rgba(35, 119, 163, 1);
}


@media (max-width: 850px) {

.rivertrip-slide__content {
    justify-content: flex-start;
}

.rivertrip-slide__bottom {
    height: 100%;
    flex-direction: column;
    align-content: space-between;
    margin-top: 10px;
}

.rivertrip-slider .slider-button-prev, 
.rivertrip-slider .slider-button-next {
    display: none;
}

.rivertrip-slider .swiper-pagination {
    display: block;
}

.rivertrip-slider {
    padding-bottom: 40px;
}

}


@media (max-width: 780px) {

    .rivertrip-slide__content {
        padding: 10px 15px;
    }

    .rivertrip-slide__price {
        font-size: 40px;
    }

    .rivertrip-slide__old-price {
        font-size: 18px;
    }

    .rivertrip-slide__discount {
        font-size: 11px;
    }

    .rivertrip-slide__date-tab,
    .rivertrip-slide__duration-tab {
        font-size: 14px;
        padding: 4px 8px;
    }

    .rivertrip-slide__date-tab img,
    .rivertrip-slide__duration-tab img{
       width: 9px;
    }

    .rivertrip-slider {
        height: 195px;
    }
}

@media (max-width: 380px) {
    .rivertrip-slide__price {
        font-size: 35px;
    }

    .rivertrip-slide__old-price {
        font-size: 16px;
    }

    .rivertrip-slide__discount {
        font-size: 10px;
    }
}

@media (max-width: 350px) {
    .rivertrip-slide__price {
        font-size: 32px;
    }

    .rivertrip-slide__old-price {
        font-size: 16px;
    }

    .rivertrip-slide__discount {
        font-size: 10px;
    }
}


.gslide-description.description-bottom {
    background: #141414 !important;
    color: white !important;
}

.glightbox-clean .gdesc-inner {
    padding: 3px 20px !important;
    text-align: center;
}

.swiper-container {
    position: relative;
}

.extended-tags-section .simplebar-scrollbar {
  /* background-color: red; */
}

.simplebar-track.simplebar-horizontal {
    /* height: 11px; */
} 

.simplebar-scrollbar.simplebar-visible::before {
    /* background-color: #f82424;
    opacity: 1; */
}

.swiper-container {
    position: relative;
}

.relative {
    position: relative;
}

.large-margin-bottom {
    margin-bottom: 65px;
}

.swiper-scrollbar {
    --swiper-scrollbar-sides-offset: 0px !important;
    --swiper-scrollbar-size: 4px !important;
    bottom: -25px !important;
    z-index: 5 !important;
}

.swiper-scrollbar-drag {
    background-color: #009ec7 !important;
}



@media (max-width: 1190px) {
    .swiper-scrollbar {
        --swiper-scrollbar-sides-offset: 25px !important;
    }

    .filter-swiper-container {
        margin-bottom: 55px;
    }

    .filter-swiper-container .swiper-scrollbar {
        bottom: -25px !important;
    }
}


@media (max-width: 750px) {
    .filter-swiper-container {
        margin-bottom: 40px;
    }

    .filter-swiper-container .swiper-scrollbar {
        bottom: -7px !important;
    }

}

@media (max-width: 540px) {
    .swiper-scrollbar {
        --swiper-scrollbar-sides-offset: 20px !important;
    }
}

.highlight-red {
    color: #FD3838;;
}

.menu-download {
    display: flex;
    gap: 5px;
    transition: all .3s ease;
}

.menu-download:hover{
    color: var(--mk2-primary);
    text-decoration: underline;
}

.menu-download-icon {
    width: 16px;
    height: 16px;
    align-self: center;
}


@media (max-width: 980px) {
    .catalog-item .rating.hide {
        display:none
    }
    .catalog-item .info.add-margin {
    margin-bottom: 7px;
    }
}

.header-city-selector {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    position: relative;
    /* width: 160px; */
}

.header-city-selector .arrow-icon {
    width: 9px;
    height: 9px;
    margin-left: 2px;
}

.header-city-selector .city {
    font-size: 15px;
}

.city-selector-menu {
    position: absolute;
    top: 34px;
    left: 0px;
    width: 180px;
    background-color: white;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
    z-index: 5;
    border-radius: 10px;
    display: none;
    overflow: hidden;
}

.city-selector-menu .city-item {
    padding: 9px 15px;
    width: 100%;
    font-size: 15px;
    border-bottom: 1px solid gainsboro;
}

.city-selector-menu .city-item:hover {
    background-color: rgb(233, 233, 233);
}

.city-selector-menu .city-item:last-child {
    border-bottom: none;
}

.header-city-selector.opened .city-selector-menu {
    display: block;
}

.header-city-selector.opened .arrow-icon {
    transform: rotate(180deg);
}

.page-text-section .swiper-slide {
    width: fit-content;
}

.more-ships {
    display: flex;
    justify-content: center;
    gap: 9px;
}

.more-ships__text {
    margin: auto 0;
    font-weight: 600;
}

.catalog-item__price-wrapper {
    display: flex;
    gap: 20px;
}

@media (max-width: 350px) {
    .catalog-item__price-wrapper {
        flex-direction: column;
    gap: 0;
    margin-bottom: 10px;
    }
}


.expand-description-btn.mobile {
    display: none;
}


@media (max-width: 580px) {
    .expand-description-btn.mobile {
        display: block;
    }

    .expand-description-btn.desktop {
        display: none;
    }
    
}

@media (min-width: 1024px) {
    .globalClass__puoAD ._orientationLeft__LsM4r.wrap__HOHut {
        left: auto;
        right: 24px;
        margin-bottom: 46px !important;
    }

}

.features-wrapper {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.features-wrapper h2 {
    height: 24px;
}


.fixed-bar.bottom.ship-catalog .base-button {
    width: auto;
}

.fixed-bar.bottom.ship-catalog .flex-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: flex-end;
    width: 100%;
}



@media (max-width: 700px) {
    .features-wrapper h2 {
        height: auto;
    }

    .features-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .fixed-bar.bottom.ship-catalog .flex-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    .fixed-bar.bottom.ship-catalog .base-button {
        width: 100%;
    }
}


@media (max-width: 660px) {
    .js-ships-slider-button-next.round,
    .js-ships-slider-button-prev.round,
    .js-similar-trips-slider-button-next.round,
    .js-similar-trips-slider-button-prev.round
    {
        display: none;
    }
}



#cookie_note {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 280px;
    z-index: 200;
    background-color: white;
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    border-radius: 8px;
    padding: 10px 30px 10px 10px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
}

#cookie_note button {
    height: 15px;
    width: 15px;
    top: 10px;
    right: 10px;
}

.cookie-text {
    font-size: 13px;
    line-height: 1.6;
}

.cookie-text .link {
    display: inline-block;
    color:var(--mk2-primary);
    text-decoration: underline;
}

@media (max-width: 1680px) {
    #cookie_note {
        justify-content: flex-start;
    }
}

@media (max-width: 1340px) {
    #cookie_note {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-text {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    #cookie_note {
        align-items: flex-start;
    }
}

@media (max-width: 500px) {
    #cookie_note {
        align-items: center;
        flex-direction: row;
        gap: 10px;
        width: calc(100% - 40px);
        left: 20px;
        bottom: 62px;
    }

    .cookie-text {
        font-size: 14px;
    }

    #cookie_note .base-button {
        min-width: 100px;
    }
}

.form-agreement-section {
    margin-bottom: 20px;
}


.form-agreement-section .agreement-text {
    color: black;
    font-size: 14px;
}

.form-agreement-section .agreement-error {
    color: #FD3838;
}

.form-agreement-section .agreement-text .link {
    color: var(--mk2-primary);
}

.agreement-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.checkbox-icon {
    width: 100%;
    display: block;
}

.checkbox-icon.checked {
    display: none;
}

.form-agreement-section.checked .checkbox-icon.checked {
    display: block;
}

.form-agreement-section.checked .checkbox-icon.empty {
    display: none;
}

.agreement-btn {
    width: 22px;
    flex-shrink: 0;
    cursor: pointer;
    /* margin-top: 2px; */
}

.agreement-error {
    margin-top: 5px;
    color: #f8002c !important;
    display: none;
}

.form-agreement-section.error .agreement-error {
    display: block;
}

.subscribe-section-wrapper .form-agreement-section .agreement-text {
    color: white;
    max-width: 400px;
}

.subscribe-section-wrapper .form-agreement-section {
    margin-bottom: 0;
}

.subscribe-section-wrapper .form-agreement-section .agreement-text {
    font-size: 12px;
    margin-top: 10px;
}

.subscribe-section-wrapper .form-agreement-section .agreement-error {
    margin-top: 0px;
    color: #FD3838;
}

.subscribe-section-wrapper {
    background-color: var(--mk2-primary);
    border-radius: 10px;
}

.subscribe-section-light {
    padding-bottom: 5px;
}

.subscribe-section-light .title {
    color: white;
}

.subscribe-section-light .form-agreement-section {
    margin-top: 15px;
    margin-bottom: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-section-light .form-agreement-section .agreement-text {
    margin-left: 0px;
}

.ships-main-form__bottom .agreement-error {
    margin-top: 10px;
    font-size: 14px;
}

.ships-main-form__bottom .base-button {
    height: 45px;
}

.teplohod-widget-nearest {
    margin-left: 26px;
	/* legit rem  */
	min-height: 7.7rem;
}

.catalog-item .teplohod-widget-nearest {
    margin-left: 0px;
    margin-bottom: 5px;
}

.teplohod-widget-nearest .widget-loaded {
    margin-left: 14px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
}

.nearest-widget-items {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.nearest-widget-link {
    padding: 5px 7px;
    background-color: var(--mk2-primary);
    border-radius: 90px;
    cursor: pointer;
    color: white;
    font-weight: 400;
}

.catalog-item .teplohod-widget-nearest .widget-loaded {
    margin-left: 0px;
    margin-top: 10px;
    font-size: 14px;
    font-weight: 500;
}

.catalog-item .teplohod-widget-nearest .name {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 300;
}

.nearest-widget-link__disabled {
    background: #ccc;
    cursor: not-allowed;
}

.article-index__list{
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .article-index__list{
        flex-wrap: wrap;
        max-height: 300px;
    }
}


.bottom-h1 {
    font-weight: 500;
    font-size: 14px;
    margin: 0px 0px 20px;
    opacity: 0.5;
}

.article-page .share-section {
    margin-top: 20px;
}

.article-author-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
} 

.article-author-wrapper img {
    border-radius: 100px;
    width: 40px;
    height: 40px;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
}

.author-job {
    font-size: 14px;
    opacity: 0.5;
}

@media (max-width: 400px) {
    .article-page .share-section {
        flex-direction: column;
        gap: 10px;
    }

    .article-date {
        font-size: 16px;
    }
}

.success-message-modal {
    font-size: 26px;
    color: #393939;
    text-align: center;
    padding: 30px 0;
    line-height: 1.2;
}

@media (max-width:450px) {
    .success-message-modal {
        font-size: 21px;
        padding: 31px 0;
    }
}

footer .telgram {
    width: 31px;
    height: 31px;
}

.cookie-policy {
    margin-bottom: 30px;
}

.cookie-policy section {
    margin-top: 30px;
    margin-bottom: 30px;
}


.cookie-policy h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cookie-policy h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.cookie-policy a {
    display: inline-block;
    color:var(--mk2-primary);
    text-decoration: underline;
}
