/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;
    --font-70: clamp(30px, 3.9vw, 70px);
    --font-60: clamp(25px, 3.2vw, 60px);
    --font-48: clamp(24px, 2.5vw, 48px);
    --font-40: clamp(22px, 2.1vw, 40px);
    --font-36: clamp(18px, 2.2vw, 36px);
    --font-30: clamp(18px, 1.6vw, 30px);
    --font-24: 24px;

    --container-padding: 40px;

    --row-gap: 5px;


    /** SPECIFIC **/
    --color-primary: #92CC24;
    --color-secondary: #272727;
    --color-default: #000;
    --color-border-deafult: #ccc;
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
}

/**
 * BASIC
 */

a, input, select, textarea, option, button {
    outline: none !important;
}

em {
    padding-right: 2px;
}

.text > *:last-child {
    margin-bottom: 0;
}

.text > *:first-child {
    margin-top: 0;
}

.text h1 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin: var(--space-25) 0;
}

.text h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    margin: calc(var(--space-25) + 10px) 0;
    color: var(--color-primary);
}

.text h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: var(--space-25) 0;
}

.text h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: var(--space-25) 0;
}

.text h5 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin: var(--space-25) 0;
}

.text a:hover {
    color: var(--color-primary);
}

.text a {
    text-decoration: underline;

}

a {
    color: inherit;
}

a:hover, a:focus {
    color: inherit;
}

/**
 * EXTRA
 */
/* Animations lib */
.animationDuration {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

/* Mourning class added to body */
.mourning {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}


.grayscale {
    filter: grayscale(1);
}

.grayscale-fade {
    transition: filter 0.2s;
}

.grayscale-fade:hover,
.grayscale-fade:focus {
    filter: grayscale(0);
}

/**
 * PAGE
 */

#page,
#content {
    overflow: hidden;
}

#content {
    padding-top: calc(121px + (var(--space-25) * 2));
}

.container {
    clear: both;
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    max-width: 1720px;
    width: 100%;
}

.container-small {
    max-width: 1440px;
}

.container--noClear {
    clear: none;
}

.container--noClear::before,
.container--noClear::after {
    display: none;
}

.img-wrapper img {
    max-width: 100%;
    display: block;
}

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: contain;
    -mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: currentColor;
}

.icon-facebook {
    -webkit-mask-image: url('../images/icons/social/facebook.svg');
    mask-image: url('../images/icons/social/facebook.svg');
}

.icon-instagram {
    -webkit-mask-image: url('../images/icons/social/instagram.svg');
    mask-image: url('../images/icons/social/instagram.svg');
}

.icon-linkedin {
    -webkit-mask-image: url('../images/icons/social/linkedin.svg');
    mask-image: url('../images/icons/social/linkedin.svg');
}

.icon-twitter,
.icon-x {
    -webkit-mask-image: url('../images/icons/social/twitter.svg');
    mask-image: url('../images/icons/social/twitter.svg');
}

.icon-youtube {
    -webkit-mask-image: url('../images/icons/social/youtube.svg');
    mask-image: url('../images/icons/social/youtube.svg');
}

.icon-pinterest {
    -webkit-mask-image: url('../images/icons/social/pinterest.svg');
    mask-image: url('../images/icons/social/pinterest.svg');
}

.icon-user {
    -webkit-mask-image: url('../images/icons/user.svg');
    mask-image: url('../images/icons/user.svg');
}

.icon-register {
    -webkit-mask-image: url('../images/icons/register.svg');
    mask-image: url('../images/icons/register.svg');
}

.icon-logout {
    -webkit-mask-image: url('../images/icons/logout.svg');
    mask-image: url('../images/icons/logout.svg');
}

.icon-calendar {
    -webkit-mask-image: url('../images/icons/calendar.svg');
    mask-image: url('../images/icons/calendar.svg');
}

.icon-arrow-right {
    -webkit-mask-image: url('../images/icons/arrow-right.svg');
    mask-image: url('../images/icons/arrow-right.svg');
}

.icon-arrow-left {
    -webkit-mask-image: url('../images/icons/arrow-left.svg');
    mask-image: url('../images/icons/arrow-left.svg');
}

.icon-basket {
    -webkit-mask-image: url('../images/icons/basket.svg');
    mask-image: url('../images/icons/basket.svg');
}

.icon-phone {
    -webkit-mask-image: url('../images/icons/phone.svg');
    mask-image: url('../images/icons/phone.svg');
}

.icon-pin {
    -webkit-mask-image: url('../images/icons/pin.svg');
    mask-image: url('../images/icons/pin.svg');
}

.icon-email {
    -webkit-mask-image: url('../images/icons/email.svg');
    mask-image: url('../images/icons/email.svg');
}

.icon-bike {
    -webkit-mask-image: url('../images/icons/bike.svg');
    mask-image: url('../images/icons/bike.svg');
}

.icon-checkmark {
    -webkit-mask-image: url('../images/icons/checkmark.svg');
    mask-image: url('../images/icons/checkmark.svg');
}

.icon-question-mark {
    -webkit-mask-image: url('../images/icons/question-mark.svg');
    mask-image: url('../images/icons/question-mark.svg');
}

/**
 * THEMES
 */

.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.btn-primary.active:focus,
.btn-primary:hover:focus,
.btn-primary:hover:active,
.btn-primary:focus:active {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.btn-arrow,
.btn-arrow:hover,
.btn-arrow:focus,
.btn-arrow:active,
.btn-arrow.active,
.btn-arrow.active:focus,
.btn-arrow:hover:focus,
.btn-arrow:hover:active,
.btn-arrow:focus:active {
    box-shadow: unset !important;
    color: #fff;
    background: transparent;
    border: none;
    padding: 10px;
    margin: -10px;
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}


.btn-primary.active {
    background-color: #fff;
    color: var(--color-primary);
}

.btn-primary[disabled],
.btn-primary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active,
.btn-secondary.active:focus,
.btn-secondary:hover:focus,
.btn-secondary:hover:active,
.btn-secondary:focus:active {
    background-color: transparent;
    border-color: #000;
    color: #000000;
}

.btn-white,
.btn-white:hover,
.btn-white:focus,
.btn-white:active,
.btn-white.active,
.btn-white.active:focus,
.btn-white:hover:focus,
.btn-white:hover:active,
.btn-white:focus:active {
    background-color: transparent;
    border-color: #fff;
    color: #fff;
}

.btn-secondary.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

.btn-secondary[disabled],
.btn-secondary[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-default,
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.active:focus,
.btn-default:hover:focus,
.btn-default:hover:active,
.btn-default:focus:active {
    background-color: var(--color-default);
    border-color: var(--color-default);
    color: #fff;
}


.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: var(--color-default);
    border-color: var(--color-default);
}


.btn-default.active {
    background-color: #fff;
    color: var(--color-default);
}

.btn-default[disabled],
.btn-default[disabled]:hover {
    opacity: 0.6;
    cursor: not-allowed;
}

@media screen and (min-width: 1140px) {
    .btn-primary:not([disabled]):hover,
    .btn-primary:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-primary);
    }

    .btn-arrow:not([disabled]):hover,
    .btn-arrow:not([disabled]).active:hover {
        color: #000;
    }

    .btn-secondary:not([disabled]):hover,
    .btn-secondary:not([disabled]).active:hover {
        border-color: var(--color-primary);
        background-color: var(--color-primary);
        color: #fff;
    }

    .btn-white:not([disabled]):hover,
    .btn-white:not([disabled]).active:hover {
        border-color: var(--color-primary);
        background-color: var(--color-primary);
        color: #fff;
    }

    .btn-default:not([disabled]):hover,
    .btn-default:not([disabled]).active:hover {
        background-color: #fff;
        color: var(--color-default);
    }
}

/**
 * BUTTONS
 */

.btn {
    transition: all 300ms;
    border-radius: 8px;
}

.btn .icon {
    color: inherit;
    display: block;
}

.btn-basket {
    position: relative;
}

.btn-basket .basket-count {
    color: var(--color-primary) !important;
    border: 1px solid var(--color-primary);
    border-radius: 50%;
    position: absolute;
    top: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    padding: 5px;
    height: 20px;
    font-size: 10px;
    line-height: 1;
    right: -5px;
    background-color: #fff;
}

.btn-square .icon.icon-arrow-left,
.btn-square .icon.icon-arrow-right {
    width: 10px;
    height: 10px;
}

.btn-lg .icon.icon-arrow-left,
.btn-md .icon.icon-arrow-left {
    width: 5px;
    height: 8px;
}

.btn-lg .icon.icon-arrow-right,
.btn-md .icon.icon-arrow-right {
    width: 6px;
    height: 9px;
    margin-left: auto;
}

.btn-lg .icon {
    width: 20px;
    height: 20px;
}

.btn-lg {
    min-height: 46px;
    padding: 5px 20px;
    min-width: 180px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-md .icon {
    width: 21px;
    height: 21px;
}

.btn-md {
    min-width: 179px;
    min-height: 46px;
    padding: 5px 15px;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.btn-square .icon {
    width: 17px;
    height: 17px;
}

.btn-square {
    width: 46px;
    height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

/**
 * BOOTSTRAP
 */
.panel,
.panel-heading,
.modal-content,
.alert,
.popover {
    border-radius: 0;
}

.panel {
    box-shadow: none;
}

.panel-default {
    border-color: #e5e5e5;
}

.row {
    margin-left: calc(-1 * var(--row-gap));
    margin-right: calc(-1 * var(--row-gap));
    display: flex;
    flex-wrap: wrap;
}

.col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7,
.col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5,
.col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3,
.col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
    padding-left: var(--row-gap);
    padding-right: var(--row-gap);
}

.modal-footer[style="display: block;"] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.modal-footer:after, .modal-footer:before {
    content: none;
}

/**
 * TEXT
 */

.text {
    overflow: visible;
    font-size: 16px;
    line-height: 30px;
}

/** Text list custom dots **/
.text ul,
.text ol ul,
.text ul ul {
    list-style: none;
}

.text ul > li,
.text ol > li {
    left: 40px;
    position: relative;
    padding-right: 40px;
}

.text ul > li::before {
    content: "•";
    position: relative;
    display: inline-block;
    width: 10px;
    left: -10px;
    margin-left: -10px;
    line-height: 1em;
    font-family: sans-serif;
    font-weight: 900;
    font-size: 18px;
}

.text ol > li::marker {
    word-spacing: 3px;
}

/** Text table **/
.text table {
    margin: 30px 0;
}

.text table tr:nth-child(even) {
    background: rgba(0, 0, 0, 0.05);
}

.text table td {
    padding: 12px 12px;
    border: 1px solid #ddd;
}

/**
 * HEADER
 */
header .logo-mobile {
    display: none !important;
}

header .logo {
    max-width: 300px;
    transition: max-width 300ms;
}

header.sticky .logo {
    max-width: 200px;
}

header.sticky .header-top {
    padding: 10px 0;
}

header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
}

.header-bottom {
    background-color: var(--color-secondary);
}

.header-top {
    transition: padding 300ms;
    padding: var(--space-25) 0;
    background-color: #fff;
}

.header-top-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-center {
    display: flex;
    align-items: center;
}

.header-right .btn-reserve:not(:last-child) {
    margin-right: 10px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

header .icon-phone,
header .icon-pin {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-right: 7px;
    color: var(--color-primary);
}

.header-address {
    display: flex;
    align-items: center;
}

.header-contact a:hover {
    color: var(--color-primary);
}

.header-contact a {
    display: flex;
    transition: color 300ms;
    align-items: center;
    padding: 5px;
}

.header-contact {
    margin: -5px;
}

.header-center, .header-contact {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

.logo {
    width: 309px;
    float: left;
}

.logo a {
    display: block;
}

.logo a img {
    display: block;
    max-width: 100%;
}

#main-menu {
    width: 100%;
}

#main-menu ul:has(li:nth-child(8)) li {
    flex-grow: 1;
}

#main-menu ul li a {
    text-align: center;
}

#main-menu ul {
    font-size: 0;
    margin: 0 calc(var(--space-50) * -1);
    display: flex;
    align-items: center;
}

#main-menu li.active > a, #main-menu li > a:hover {
    background-color: var(--color-primary);
    -webkit-text-stroke-color: #fff;
}

#main-menu li:not(:first-child) a {
    margin-left: -1px;
}

#main-menu li:not(:last-child) a {
    margin-right: -2px;
}

#main-menu li a {
    transition: background-color 300ms, -webkit-text-stroke 300ms;
    -webkit-text-stroke: 0.5px transparent;
    position: relative;
    z-index: 2;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-size: 15px;
    padding: 20px var(--space-50);
    display: block;
}

#main-menu > ul > li + li:before {
    content: "";
    display: block;
    left: 0;
    width: 1px;
    height: 10px;
    background-color: #939393;
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
}

#main-menu li {
    position: relative;
    display: inline-block;
    font-size: 1rem;
}

#main-menu li > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

#main-menu li > ul > li > ul {
    top: 0;
    left: 100%;
}

#main-menu li:hover > ul {
    display: block;
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    float: left;
    position: relative;
    width: 350px;
    max-width: 100%;
}

.mainsearch-search {
    display: flex;
    align-items: stretch;
}

.mainsearch .form-element-container {
    flex-grow: 1;
}

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 15px;
    border-right: none;
    box-shadow: none;
}

.main-menu-button {
    position: relative;
}

.main-menu-button span:nth-child(1) {
    bottom: 16px;
}

.main-menu-button span:nth-child(3) {
    top: 16px;
}

.main-menu-button.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 0;
    bottom: 0;

}

.main-menu-button.active span:nth-child(2) {
    transform: rotate(45deg);
    opacity: 0;
}

.main-menu-button.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 0;
    top: 0;
}

.main-menu-button span {
    background-color: currentColor;
    width: 24px;
    height: 2px;
    display: block;
    transition: all 300ms;
    position: absolute;
    inset: 0;
    margin: auto;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.mainsearch .form-control-feedback {
    display: none;
}

/*
* USER NAV
*/

.header-top .user-nav {
    display: flex;
    align-items: stretch;
}

.header-top .user-nav-item {
    display: flex;
    align-items: stretch;
    position: relative;
}

.header-top .user-nav-item-inner {
    display: flex;
    align-items: center;
    color: #fff;
}

.header-top .user-nav-item + .user-nav-item {
    padding-left: 20px;
    margin-left: 20px;
}

.header-top .user-nav-item + .user-nav-item::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    width: 1px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.6);
}

.header-top .user-nav-item .icon {
    width: 26px;
    height: 26px;
}

/**
 * FOOTER
 */
footer {
    color: #fff;
}

.footer-wrapper {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    position: relative;
}

.footer-mask svg {
    display: block;
    width: 100%
}

.footer-mask {
    max-width: 57%;
    position: absolute;
    right: 0;
    bottom: 0;
}

.footer-top {
    padding: calc(var(--space-60) + 10px) 0;
}

/* FOOTER BAR */
.footer-bar {
    padding: calc(var(--space-40) - 5px) 0;
    line-height: 30px;
    position: relative;
    z-index: 2;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 14px;
    color: #f4f4f4;
}

.footer-bar-left {
    display: flex;
    align-items: center;
}

.footer-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.footer-bar-links {
    margin-left: -5px;
    font-size: 0;
    margin-right: 10px;
}

.footer-bar-links:has(li) + .copyright:before {
    content: "|";
    color: #fff;

    margin-right: 10px;
    display: inline-block;
}

.footer-bar-links > li + li:before {
    content: "|";
    color: #fff;
    margin-right: 10px;
    display: inline-block;
}

.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 5px;
    font-size: 13px;
    line-height: 2;
    font-weight: 300;
}

.footer-bar-links a:hover {
    text-decoration: underline;
}

.footer-bar-links a {
    color: inherit;
}

* + .copyright-undicom {
    margin-left: calc(var(--space-60) + 10px);
}

.copyright-undicom {
    float: right;
    font-family: inherit;
    font-size: 13px;
    font-weight: 300;
    font-weight: inherit;
    font-size: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
}

.copyright-undicom a img {
    filter: invert(1);
}

.copyright-undicom svg {
    max-width: 15px;
    fill: currentColor;
}

footer .social-list {
    display: flex;
    align-items: center;
    gap: var(--space-50);
}

footer .social-list .caption {
    color: #000;
    font-size: 16px;
}

.footer-cols {
    display: flex;
}

.footer-content {
    padding-bottom: 15px;
}

.footer-title {
    font-size: var(--font-24);
    margin-bottom: calc(var(--space-40) + 5px);
    font-weight: 700;
}


.footer-cols .text, .footer-cols li {
    font-size: 16px;
    line-height: 46px;
}

.footer-col:not(.logo-col) {
    padding-right: 10px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    width: 24.333%;
}

.footer-logo img {
    max-width: 100%;
    display: block;
}

.logo-col {
    display: flex;
    align-items: flex-end;
    width: 27%;
    margin-left: auto;
}

/**
 * FORM
 */
form.form {
    /* padding: 15px 0; */
}

.form .form-element-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
}

/* INPUTY */
.form-control,
.form .form-control {
    border-radius: 5px;
    border: 1px solid #e2e2e2;
    box-shadow: none;
    height: 46px;
}

/* TEXTAREA */
.form textarea.form-control:not([rows]) {
    /* height: 130px; */
}

/* KLAUZULE I ZGODY */
.form .before-consent-row,
.form .after-consent-row,
.form .consent-row label,
.form .consent-all {
    font-size: 13px;
    line-height: 1.692307692;
}

.form .consent-row .error {
    /* font-size: 12px; */
    /* letter-spacing: 0; */
}

/* CAPTCHA */
.form .captcha-image-wrapper,
.form .form-group-sm .captcha-image-wrapper,
.form .form-group-lg .captcha-image-wrapper {
    border-radius: 5px;
    box-shadow: none;
}

/* KOLOR GWIAZDKI WYMAGANEGO POLA */
.form .form-required-mark {
    /* color: #a94442; */
}

.form-element-select .form-control-feedback,
.form-element-country .glyphicon {
    display: none;
}

.form button.captcha-refresh {
    right: var(--row-gap);
    color: var(--color-primary);
    border-radius: 0 5px 5px 0;
    background-color: transparent;
    border-color: #e2e2e2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
}

.form button.captcha-refresh .fa.fa-spin {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused
}

@media screen and (min-width: 1140px) {
    .form button.captcha-refresh:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

    .form button.captcha-refresh:hover .fa.fa-spin {
        -webkit-animation-play-state: running;
        -moz-animation-play-state: running;
        -o-animation-play-state: running;
        animation-play-state: running
    }
}

.form-control-feedback {
    top: 50%;
    right: 0;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

/*---- SELECT 2 -----*/

.select2-dropdown {
    z-index: 100;
    border-radius: 0;
}

.select2-container--default .select2-selection--multiple,
.select2-container .select2-selection--single {
    height: 46px;
    border-color: #ccc;
    border-radius: 6px;
    text-align: left;
    padding: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered,
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px;
    padding-left: 12px;
    font-size: 14px;
    padding-right: 44px;
    color: #555;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-search {
    line-height: 44px;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-block;
    float: none;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-top: 8px;
}

.has-feedback .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-right: 68px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    height: auto;
    transition: all 0.4s;
    right: 16px;
    color: #000;
    text-align: center;
    font-size: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:before {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
}

.select2-container--default.select2-container--open .select2-selection__arrow {
    -webkit-transform: translateY(-50%) scaleY(-1);
    -moz-transform: translateY(-50%) scaleY(-1);
    -ms-transform: translateY(-50%) scaleY(-1);
    -o-transform: translateY(-50%) scaleY(-1);
    transform: translateY(-50%) scaleY(-1);
}

.select2-container--default .select2-selection--single .select2-selection__arrow > b {
    display: none;
}

.select2-results__option[aria-selected] {
    font-size: 14px;
    line-height: 24px;
    color: #000;
    font-weight: 300;
    padding: 6px 22px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--color-primary);
}

@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .form-element-multiselectCheckbox .select2-results__option:not([role="group"]):not(.select2-results__message)::before {
        -webkit-background-size: 200px 20px !important;
        background-size: 200px 20px !important;
    }
}

/**
 * MAP POINTS
 */

.map-point .custom-map-wrapper {
    position: relative;
}

.map-point .custom-map-wrapper .point {
    position: absolute;
    width: 28px;
    height: 40px;
    background: transparent url('../images/marker.png') no-repeat scroll center center;
    cursor: pointer;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -moz-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    -o-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.map-point #marker-cloud-wrapper {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 10%;
    height: 10%;
    background: red;
}

.map-point #marker-cloud-wrapper .popover {
    top: 0 !important;
    left: 0 !important;
    display: block;
    margin: 0;
    width: 300px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-shadow: none;
}

.map-point #marker-cloud-wrapper .popover .arrow {
    display: none !important;
}

/**
 * BREADCRUMB
 */

.breadcrumb-container {
    margin: 20px 0;
}

.breadcrumb {
    padding: 0;
    margin: 0;
    text-align: left;
    border-radius: 0;
    background-color: transparent;
}

.breadcrumb > li {
    position: relative;
    display: inline;
    color: #6d6e71;
}

.breadcrumb > li > a {
    font-size: 12px;
}

.breadcrumb > li > a:not([href]),
.breadcrumb > li > a:not(:hover) {
    color: inherit;
}

.breadcrumb > li + li:before {
    content: '>';
    font-size: 12px;
    padding: 0 15px;
    color: inherit;
}

.breadcrumb > li > a.last {
    color: var(--color-primary);
}

/**
 * PAGINATION
 */
.pagination-wrapper {
    padding: 0;
    margin: calc(var(--space-60) + 10px) 0;
}

.pagination-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-wrapper ul li a, .pagination-wrapper ul li span {
    padding: 0;
}

.pagination-wrapper ul li.prev {
    margin-right: var(--space-40);
}

.pagination-wrapper ul li.next {
    margin-left: var(--space-40);
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    display: flex;
}

.pagination-wrapper ul li a:not(.btn) {
    color: #000;
    -webkit-text-stroke: 0.5px transparent;
    transition: all 0.3s;
}

.pagination-wrapper ul li.active a {
    color: var(--color-primary);
    -webkit-text-stroke-color: var(--color-primary);
}

@media screen and (min-width: 1140px) {
    .pagination-wrapper ul li a:hover {
        color: var(--color-primary);
    }
}

/**
 * ANIMATABLE ICON
 */

.loader-spin {
    margin: 0 10px;
    font-size: 3px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

.btn .loader-spin {
    margin: 0 14px;
}

@keyframes mulShdSpin {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em,
        2em -2em 0 0em, 3em 0 0 -1em,
        2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 0;
    }
    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,
        3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    25% {
        box-shadow: 0 -3em 0 -0.5em,
        2em -2em 0 0, 3em 0 0 0.2em,
        2em 2em 0 0, 0 3em 0 -1em,
        -2em 2em 0 -1em, -3em 0 0 -1em,
        -2em -2em 0 -1em;
    }
    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,
        -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,
        -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }
    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,
        -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }
    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,
        3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
    }
    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,
        3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,
        -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}


.loader2 {
    width: 48px;
    height: 48px;
    border: 5px solid #e5e5e5;
    border-bottom-color: var(--color-primary);
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotationLoader2 1s linear infinite;
}

@keyframes rotationLoader2 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.animIcon {
    position: relative;
    display: inline-block;
    width: 32px;
    padding: 0 !important;
}

.animIcon::before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.animIcon span {
    position: absolute;
    left: 0;
    right: 0;
    display: block;
    height: 2px;
    width: 100%;
    background-color: gray;
    transition: all .4s ease;
}

/* Close */
.animIcon.animIcon--close span {
    top: 50%;
    margin-top: -1px;
    transform-origin: center;
}

.animIcon.animIcon--close span:nth-child(1) {
    transform: rotateZ(45deg);
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
}

.animIcon.animIcon--close span:nth-child(2) {
    transform: rotateZ(-45deg);
    -webkit-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
}

/* Hamburger -> Close */
.animIcon.animIcon--hamburger span {
    top: 0;
    left: 0;
    transform-origin: left center;
}

.animIcon.animIcon--hamburger span:nth-child(1) {
    margin-top: 20%;
}

.animIcon.animIcon--hamburger span:nth-child(2) {
    margin-top: 50%;
}

.animIcon.animIcon--hamburger span:nth-child(3) {
    margin-top: 80%;
}

.animIcon.animIcon--hamburger.active span:nth-child(1) {
    margin-top: 15%;
    margin-left: 15%;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg)
}

.animIcon.animIcon--hamburger.active span:nth-child(2) {
    opacity: 0;
    margin-top: 70%;
}

.animIcon.animIcon--hamburger.active span:nth-child(3) {
    margin-top: 85%;
    margin-left: 15%;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

/**
 * LOGOTYPES SLIDER
 */
.logotypes {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    height: 156px;
    padding: 28px 0;
}

.logotypes .logotypes-title {
    float: left;
    padding-right: 30px;
    font-size: 22px;
    line-height: 100px;
    vertical-align: middle;
}

.logotypes-slider-container {
    height: 100px;
}

.logotype-slider {
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
}

.slick-initialized .logotype {
    float: none;
    display: inline-block;
    vertical-align: middle;
    padding: 4px;
}

.logotype img {
    max-height: 100px;
    max-width: 100%;
    margin: 0 auto;
}


/**
 * SOCIALS
 */
.social-list > ul {
    margin: -5px;
    font-size: 0;
}

.social-list > ul > li {
    display: inline-block;
    vertical-align: middle;
    padding: 5px;
    text-align: center;
    font-size: 1rem;
}

.social-icon svg *[fill] {
    fill: currentColor;
}

.social-icon svg {
    max-width: 25px;
    max-height: 25px;
}

.social-icon svg *[stroke] {
    stroke: currentColor;
}

.social-icon:hover {
    background-color: var(--color-primary);
    color: #fff;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    background-color: #fff;
    height: 60px;
    color: var(--color-primary);
    transition: color 300ms, background-color 300ms;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

.social-icon .fa {
    font-size: 20px;
}


/**
 * LANGUAGES MENU
 */
.langs-menu {
    position: relative;
    float: right;
    margin: 0 15px;
    transition-duration: 0.4s;
    transition-property: background-color, opacity;
    z-index: 1001;
}

.langs-menu ul {
    overflow: hidden;
    position: absolute;
    top: 100%;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s;
}

.langs-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu.active,
.langs-menu.active ul {
    opacity: 1;
}

.langs-menu a {
    color: inherit;
    text-decoration: none;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.langs-menu-icon {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
    margin-right: 8px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lang {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 5px 12px;
    font-size: 0;
    transition-duration: 0.3s;
    transition-property: background-color, color;
}

.lang span {
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    text-transform: uppercase;
}

.lang .langs-menu-long {
    display: none;
}

.lang-button {
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.lang-button .arrow {
    display: inline-block;
    vertical-align: middle;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    margin-left: 10px;
    font-size: 18px;
    line-height: 12px;
    transition-duration: 0.3s;
    transition-property: transform, -webkit-transform, -ms-transform;
}

.langs-menu-icon img {
    max-width: 100%;
}

@media screen and (min-width: 1140px) {
    a.lang:hover,
    a.lang:focus {
        color: #fff;
        background-color: #f0f;
    }

    .langs-menu:not(.langs-menu--list):not(:hover):not(:focus):not(:focus-within) ul {
        pointer-events: none;
        opacity: 0;
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
    }

    .langs-menu:focus-within .lang-button .arrow,
    .langs-menu:hover .lang-button .arrow,
    .langs-menu:focus .lang-button .arrow {
        transform: rotateZ(180deg);
        -webkit-transform: rotateZ(180deg);
        -ms-transform: rotateZ(180deg);
    }
}

.flag-icon {
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.langs-menu--list .lang-button,
.langs-menu--list .langs-menu-short {
    display: none;
}

.langs-menu.langs-menu--list ul {
    position: static;
    opacity: 1;
    display: flex;
    align-items: center;
    border: none;
    background: none;
}

.langs-menu.langs-menu--list li {
    margin: 4px 10px;
    border: none;
}

.langs-menu.langs-menu--list a {
    height: auto;
    padding: 5px;
    border: none;
}

.langs-menu--list .lang {
    background: none;
}

.langs-menu--list .langs-menu-icon {
    margin: 0;
}

/**
 * ARTICLE
 */
.article {
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: table;
    clear: both;
}

.article-image {
    position: relative;
    z-index: 10;
    display: inline-block;
    vertical-align: top;
    float: left;
    max-width: 50%;
    margin-right: 50px;
    margin-bottom: 20px;
}

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

.article-subtitle {
    padding-bottom: 30px;
}

.article-date {
    font-weight: bold;
}

.article-text {
    margin-bottom: 30px;
}


/**
 * PAGINATION
 */
/*.pagination-wrapper ul li.active a {*/
/*color: #e10024;*/
/*}*/

/*@media screen and (min-width: 1140px) {*/
/*.pagination-wrapper ul li a:hover {*/
/*color: #e10024;*/
/*}*/
/*}*/


/**
 * GALLERY
 */

.gallery {
    clear: both;
}

.gallery-list {
    margin: -5px;
    font-size: 0;
}

.gallery-list-item {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    padding: 5px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    font-size: 0;
}

.gallery-picture > img {
    border-radius: 10px;
    display: block;
    width: 100%;
}

.gallery-picture-hover span:nth-child(2) {
    transform: rotate(90deg);
}

.gallery-picture-hover span {
    width: 11%;
    height: 1px;
    background-color: #fff;
    display: block;
    position: absolute;
    inset: 0;
    margin: auto;
}

.gallery-picture-hover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.45);
    transition: opacity 0.3s;
}

@media screen and (min-width: 1140px) {
    .gallery-picture:hover .gallery-picture-hover {
        opacity: 1;
    }
}

@media screen and (min-width: 1140px) {
    .page-list-aside .ui-widget.ui-widget-content {
        -webkit-transform: scaleY(33.3333%);
        -moz-transform: scaleY(33.3333%);
        -ms-transform: scaleY(33.3333%);
        -o-transform: scaleY(33.3333%);
        transform: scaleY(33.3333%);
    }

    .page-list-aside .ui-widget.ui-widget-content:hover,
    .page-list-aside .ui-widget.ui-widget-content:focus,
    .page-list-aside .ui-widget.ui-widget-content:focus-within {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .ui-slider .ui-slider-handle {
        opacity: 0;
        transition: opacity 0.2s;
    }

    .ui-widget.ui-widget-content:hover .ui-slider-handle,
    .ui-widget.ui-widget-content:focus .ui-slider-handle,
    .ui-widget.ui-widget-content:focus-within .ui-slider-handle {
        opacity: 1;
    }
}

.ui-slider .ui-slider-range {
    border-radius: 0;
    background-color: var(--color-primary);
}

.ui-slider .ui-slider-handle {
    border-radius: 0;
    border: none;
    height: 13px;
    width: 13px;
    background-color: var(--color-primary);
}

.ui-slider-horizontal .ui-slider-handle {
    top: -2px;
    left: -7px;
}

.form-range .row + .row {
    margin-top: 15px;
}

.valueFrom .input-label,
.valueFrom .price-suffix,
.valueTo .input-label,
.valueTo .price-suffix {
    display: none;
}

.valueFrom .from,
.valueTo .to {
    height: 36px;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Tenor Sans', sans-serif;
    color: var(--color-primary);
}

.valueTo:before {
    content: '-';
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 33px;
    line-height: 36px;
}

.form-range {
    background-color: transparent;
    border: none;
}

.ui-widget.ui-widget-content {
    border-radius: 0;
}

.form-range {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-range .range-row {
    width: 100%;
}

.form-range .col {
    width: 45%;
    margin-top: 10px;
}


.icheckbox_minimal-custom,
.iradio_minimal-custom {
    background-image: url(../images/minimal.png);
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi), (min-resolution: 1.25dppx) {
    .icheckbox_minimal-custom,
    .iradio_minimal-custom {
        background-image: url(../images/minimal@2x.png);
    }
}

.icon-wrapper .icon {
    width: 20px;
    height: 20px;
    display: block;
    color: inherit;
}

.icon-wrapper {
    width: 42px;
    flex-shrink: 0;
    height: 42px;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact ul + ul,
.footer-contact li + li {
    margin-top: var(--space-25);
}

.footer-cols a:hover {
    color: var(--color-primary);
}

.footer-cols a {
    transition: color 300ms;

}

.footer-contact li a {
    display: flex;
    gap: calc(var(--space-25) + 5px);
    line-height: normal;
    font-size: 20px;
    align-items: center;
}

.section-title {
    font-weight: 700;
    font-size: var(--font-40);
}

.page-header .section-teaser {
    max-width: 1100px;
    line-height: 1.8;
    margin-top: var(--space-25);
    font-size: 20px;
}

.track-section-teaser {
    font-weight: 500;
}

.page-header {
    display: flex;
    flex-direction: column;
    border: none;
    align-items: center;
    text-align: center;
    margin: var(--space-40) 0;
    padding: 0;
}

.tracks-list-wrapper {
    margin-bottom: calc(var(--space-60) + 10px);
}

.tracks-list {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.track-box {
    width: 33.333%;
    padding: 15px;
}

.track-box-inner:hover .btn {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.track-box-inner:hover {
    border-color: var(--color-primary);
    box-shadow: -1px -1px 0 var(--color-primary), 1px -1px 0 var(--color-primary), -1px 1px 0 var(--color-primary), 1px 1px 0 var(--color-primary);

}

.track-box-inner {
    height: 100%;
    background-color: #fff;
    transition: border-color 300ms, box-shadow 300ms;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: block;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
}

.track-box-content .btn {
    margin-top: auto;
}

.track-box-content {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.track-thumb img {
    width: 100%;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    display: block;
}

.track-box-content {
    padding: calc(var(--space-25) + 5px);

}

.track-label {
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    background-color: var(--color-primary);
    margin-bottom: 15px;
    padding: 5px 15px;
}

.track-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;

}

.track-box-text {
    font-size: 15px;
    line-height: 1.73;
    font-weight: 500;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    overflow: hidden;
}

.page-header .track-label {
    font-size: 18px;
    font-weight: 700;
    padding: 7px 15px;
    margin-bottom: 0;
    margin-top: var(--space-25);
}

.track-map {
    margin-bottom: var(--space-50);
}

.track-map iframe {
    display: block;
    width: 100%;
    min-height: 480px;
    border-radius: 15px;
}

.btn-row {
    margin: calc(var(--space-60) + 10px) 0;
}

.track-text + .track-text {
    margin-top: var(--space-50);
}

.gallery {
    margin: var(--space-40) 0;
}

.section-header {
    margin-bottom: var(--space-40);
}

.section-title-small {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.decorative-title {
    color: #fff;
    font-family: "Cinzel", serif;
    letter-spacing: 0.22em;
    margin-right: -0.22em;
    text-transform: uppercase;
    line-height: 0.85;
    margin-bottom: -0.13em;
    word-break: break-all;
    font-size: calc(var(--font-60) * 3 + 2px);
}

.outlined {
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.contact-section .page-header {
    margin-bottom: var(--space-50);
}

.page-header .decorative-title {
    margin-top: var(--space-50);
}

.contact-top {
    display: flex;

}

.icon-wrapper-min .icon {
    width: 18px;
    height: 18px;
}

.icon-wrapper-min {
    width: 37px;
    height: 37px;
}

.contact-info-title {
    font-size: var(--font-24);
    margin-bottom: var(--space-40);
    font-weight: 700;
}

.contact-info li, .contact-address {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 18px;
}

.hours-text {
    aspect-ratio: 1;
    border-radius: 50%;
    text-align: center;
    display: inline-flex;
    position: absolute;
    left: 0;
    z-index: 2;
    top: var(--space-50);
    max-width: 320px;
    min-width: 31%;
    align-items: center;
    font-size: 18px;
    line-height: 2;
    font-weight: 700;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background-color: var(--color-primary);
    color: #fff;
    padding: var(--space-25);
}

.contact-info a:hover {
    color: var(--color-primary);
}

.contact-info a {
    transition: color 300ms;
}

.contact-info ul,
.contact-info {
    flex-direction: column;
    display: flex;
    gap: var(--space-25);
}

.contact-left {
    width: 32.5%;
    padding-right: var(--space-25);
}

.contact-right {
    width: 67.5%;
    display: flex;
    padding-top: 15px;
    justify-content: flex-end;
    position: relative;
}

.floating-circles {
    pointer-events: none;
}

.contact-right .floating-circle:nth-child(1) {
    bottom: 15%;
    left: 20%;
    width: 6.5%;
}

.contact-right .floating-circle:nth-child(2) {
    top: 0;
    bottom: 8%;
    margin: auto 0;
    left: 36%;
    width: 4.7%;
}

.contact-right .floating-circle:nth-child(3) {
    bottom: 17%;
    right: 5%;
    width: 10.5%;
}

.contact-right .floating-circle:nth-child(4) {
    top: 0;
    bottom: 10%;
    margin: auto 0;
    right: -6%;
    width: 6%;
}

.contact-right .floating-circle:nth-child(5) {
    top: 16%;
    right: 7%;
    width: 3.3%;
}

.floating-circle {
    border-radius: 50%;
    pointer-events: none;

    position: absolute;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: var(--color-primary);
}

.contact-form-wrapper {
    width: 53%;
    flex-grow: 1;
}

.contact-map-wrapper iframe {
    display: block;
    border-radius: 15px;
    width: 100% !important;
}

.contact-map-wrapper {
    width: 47%;
    flex-grow: 1;
}

.contact-bottom {
    margin-top: var(--space-60);
    gap: calc(var(--space-50) + var(--space-40));
    display: flex;
}

.contact-form-wrapper .btn-lg {
    margin-top: var(--space-25);
    min-width: 202px;
    padding: 5px 20px;
}

.section-title-mid {
    margin-bottom: var(--space-50);
    font-weight: 700;
    font-size: var(--font-30);
}

.contact-section {
    margin-bottom: calc(var(--space-60) + 10px);
}

/* trip */
.trips-list {
    margin: -10px;
    display: flex;
    flex-wrap: wrap;
}

.trip-box {
    padding: 10px;
    width: 50%;
}

.trip-box-inner {
    border: 1px solid rgba(0, 0, 0, 0.2);
    height: 100%;
    border-radius: 15px;
    padding: 20px;
    transition: border 300ms, box-shadow 300ms;
    display: flex;
    flex-direction: column;
}

.trip-box-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
}

.trip-box-thumb {
    border-radius: 15px;
    flex-shrink: 0;
    width: 40%;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.trip-box-content {
    display: flex;
    padding-top: 15px;
    flex-grow: 1;
    flex-direction: column;
}

.trip-box-thumb img {
    border-radius: 15px;
    width: 100%;
}

.trip-box-top {
    gap: calc(var(--space-50) + 5px);
    padding-bottom: 20px;
    display: flex;
}

.trip-box-top .icon-wrapper .icon {
    width: 12px;
    height: 12px;
}

.trip-box-top .icon-wrapper {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.trip-box-destination {
    margin-bottom: 15px;
    font-size: 14px;
}

.trip-box-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.trip-box-text {
    font-size: 14px;
    line-height: 1.857142857;
    font-weight: 300;
}

.trip-box-transport ul li svg {
    display: block;
    width: 100%;
    max-width: 22px;
    max-height: 22px;
}

.trip-box-transport ul li {
    display: flex;
    align-items: center;
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background-color: #f4f4f4;
    justify-content: center;
}

.trip-box-transport ul {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trip-box-transport {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    margin-right: 10px;
}

.trip-box-bottom {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: auto;
}

.trip-box-bottom-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.price span {
    font-size: var(--font-24);
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.trip-box-price {
    font-size: 15px;
    margin-right: calc(var(--space-50) + 5px);
}

.trip-box-difficulty .icon.active {
    color: var(--color-primary);
}

.trip-box-difficulty .icon {
    width: 22px;
    display: block;
    color: #b3b3b3;
    height: 19px;
    flex-shrink: 0;
}

.trip-box-difficulty {
    position: absolute;
    left: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 12px;
    border-radius: 5px;
    padding: 10px 15px;
    bottom: 10px;
    background-color: #fff;
    z-index: 2;
}

.trip-box-difficulty-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

.rental-box .trip-box-inner:hover .btn:hover {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

.rental-box .trip-box-inner:hover .btn {
    background-color: #fff;
    color: #000;
    border-color: #000;
}

.rental-box .trip-box-inner:hover {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: none;
}

.category-rent-inner .trips-list {
    margin: 0 -10px;
}

.category-rent-inner .trips-list-wrapper {
    margin-bottom: 0;
}

.trips-list-wrapper {
    margin-bottom: calc(var(--space-60) + 10px);
}

.trip-box-inner:hover .btn {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.trip-box-inner:hover {
    border-color: var(--color-primary);
    box-shadow: -1px -1px 0 var(--color-primary), 1px -1px 0 var(--color-primary), -1px 1px 0 var(--color-primary), 1px 1px 0 var(--color-primary);

}

.trip-view-bananer img + .trip-destination {
    position: absolute;
    max-width: calc(100% - 20px);
    border: none;
    border-radius: 6px;

}

.trip-view-bananer .trip-destination {
    font-size: 18px;
    position: static;
    max-width: 100%;
    border-radius: 6px;
}

.trip-destinations {
    margin-top: var(--space-60);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1520px;
}

.btn-filter-category:hover {
    border-color: var(--color-primary);
}

.btn-filter-category, .trip-feature {
    border: 1px solid rgba(0, 0, 0, 0.2);
    min-height: 46px;
    padding: 5px 30px 5px 15px;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    transition: border-color 300ms;
    gap: 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #000;
}

.page-header {
    position: relative;
}

.page-header:has(.page-header-mask) {
    padding-bottom: var(--space-25);
}

.page-header-mask svg {
    display: block;
    max-width: 100%;
}

.page-header-mask {
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    bottom: 0;
}

.trip-difficulty:not(:last-child) {
    margin-bottom: 15px;
}

.trip-difficulty {
    display: flex;
    margin-top: calc(vaR(--space-25) + 10px);
    padding: 10px 20px;
    align-items: center;
    font-size: 16px;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    justify-content: space-between;
}

.trip-difficulty .icon.active {
    color: var(--color-primary);
}

.trip-difficulty .icon {
    display: block;
    color: #b3b3b3;
    width: 27px;
    height: 23px;
}

.trip-view-right {
    position: relative;
}

.trip-view-bananer {
    display: flex;
    align-items: center;
    justify-content: center;

}

.trip-view-bananer .img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.trip-destination .icon-wrapper .icon {
    width: 15px;
    height: 15px;
}

.trip-destination .icon-wrapper {
    width: 31px;
    flex-shrink: 0;

    height: 31px;
}

.trip-destination {
    position: absolute;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: calc(100% - 20px);
    bottom: 10px;
    padding: 10px;
    padding-right: 15px;
    background-color: #fff;
    border-radius: 6px;
    min-width: 150px;
}

.trip-feature .icon-checkmark-wrapper .icon {
    width: 10px;
    height: 8px;
    color: var(--color-primary);
}

.trip-feature .icon-checkmark-wrapper {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trip-features-list {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;

}

.trip-view-bananer {
    margin-bottom: var(--space-60);
}

.trip-features {
    margin-bottom: var(--space-60);
}

.trip-view .section-title-small {
    margin-bottom: calc(var(--space-25) + 10px);
}

.trip-view-left {
    width: 70%;
}

.trip-view-right {
    width: 30%;
}

.trip-view-content {
    display: flex;
    gap: var(--space-60);
}

.trip-controls-top {
    padding: var(--space-25);
    text-align: center;
}

.trip-controls-bottom {
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: calc(var(--space-25) + 10px);
    align-content: center;
}

.trip-controls-bottom .btn + .btn {
    margin-top: 15px;
}

.trip-controls-caption {
    font-size: calc(var(--font-24) - 2px);
    font-weight: 700;
    margin-bottom: var(--space-25);
}

.trip-controls-price .price span {
    font-size: calc(var(--font-30) + 2px);
}

.trip-controls-price .price {
    font-size: var(--font-24);
}

.trip-view-controls-box.affixHandler-middle.affixHandler-middle {
    left: unset;
    right: unset;
}

.trip-view-controls-box {
    border-radius: 15px;
    position: absolute;
    left: 0;
    right: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.numbers-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(var(--space-25) * -1) calc(var(--space-50) * -2);
}

.subpage .numbers-section {
    margin-top: calc(var(--space-60) * 2);
}

.numbers-section {
    margin: calc(var(--space-60) + var(--space-25)) 0;
}

.numbers-box {
    width: 33.3333%;
    padding: var(--space-25) calc(var(--space-50) * 2);
}

.number {
    font-size: calc(var(--font-48) + 2px);
    line-height: 1;
    margin-bottom: var(--space-25);
    font-weight: 600;
}

.numbers-title {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 5px;
    min-height: calc(2em * 1.25);
}

.numbers-text {
    font-size: 16px;
    font-weight: 300;
}

/* bananer */
.bananer-section {
    background: center center /cover;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: overlay;
    min-height: min(800px, 42vw);
    position: relative;
    color: #fff;
    display: flex;
    margin-bottom: var(--space-60);
}

.bananer-content {
    max-width: 675px;
    padding: calc(var(--space-60) + var(--space-60) + 10px) 0;
}

.glassy-box {
    padding: var(--space-40) calc(var(--space-40) + 5px);
    background: rgba(23, 23, 23, 0.26);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bananer-title {
    font-size: var(--font-40);
    font-weight: 700;
    margin-bottom: 20px;
}

.bananer-content .btn {
    margin-top: var(--space-40);
}

.bananer-mask svg {
    display: block;
    width: 100%;
    margin-bottom: -2px;
}

.bananer-mask {
    position: absolute;
    right: 0;
    overflow: hidden;
    bottom: 0;
    width: 56%;
}

.bananer-section .container {
    position: relative;
}

.bananer-section .decorative-title {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: -0.13em;
    letter-spacing: 0.18em;
    margin-right: 0;
    z-index: 2;
    font-size: calc(var(--font-60) * 2 + var(--font-40));
}

/* icons-section */

.icons-section {
    margin: calc(var(--space-60) + 20px) 0;
}

.icons-grid {
    display: grid;
    gap: var(--space-60) calc(var(--space-50) * 4);
    grid-template-columns: 1fr 1fr 1fr;
}

.icon-grid-item-title {
    display: flex;
    align-items: center;
}

.icons-grid-title {
    font-size: var(--font-40);
    font-weight: 700;
}

.icon-grid-icon {
    display: flex;
    width: 90px;
    height: 90px;
    align-items: center;
    margin-bottom: calc(var(--space-25) + 5px);
}

.icon-title {
    font-size: calc(var(--font-24) - 2px);
    font-weight: 600;
    line-height: 1.25;
    min-height: calc(2em * 1.25);
    margin-bottom: 5px;
}

.icon-teaser {
    font-weight: 300;
}

/* main slider */
.btn-circle {
    margin-left: calc(var(--space-25) + 5px);
    margin-top: 15px;
    margin-bottom: -15px;
    width: 42px;
    flex-shrink: 0;
    position: static;
}

.mainSlider-nav-wrapper {
    position: absolute;
    bottom: var(--space-50);
    left: 0;
    pointer-events: none;
    width: 100%;
    z-index: 2;
}

.mainSlider-nav-wrapper .btn {
    pointer-events: auto;
}

.mainSlider-content {
    max-width: 675px;
    margin-left: auto;
}

.btn-arrow .icon {
    width: 13px;
    height: 22px;
    color: inherit;
    display: block;
}

.mainSlider .slick-track {
    display: flex;
    align-items: stretch;
}

.mainSlider-nav {
    display: flex;
    align-items: center;
    padding-right: var(--space-60);
    justify-content: flex-end;
    gap: 20px;
}

.mainSlider-slide {
    background: center center /cover;
    min-height: min(770px, 41vw);
    background-color: rgba(0, 0, 0, 0.3);
    background-blend-mode: overlay;
    padding: calc(var(--space-60) + 10px) 0 calc(var(--space-60) * 3 + var(--space-50));
    position: relative;
    color: #fff;
    display: flex;
    height: unset !important;
}

.mainSlider-mask svg {
    display: block;
    margin-bottom: -2px;
    width: 100%;
}

.mainSlider-section .decorative-title {
    position: absolute;
    bottom: 0;
    pointer-events: none;

    width: 100%;
    text-align: center;
}

.mainSlider-mask {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}


.mainSlider-section {
    position: relative;
}

.mainSlider-title:last-child {
    margin-bottom: 0;
}

.mainSlider-title {
    font-size: var(--font-40);
    font-weight: 700;
    margin-bottom: 15px;
}

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

.mainSlider-content-inner {
    padding: var(--space-40) calc(var(--space-40) + 5px) var(--space-50) calc(var(--space-40) + 5px);
}

.mainSlider-content .content-bottom {
    display: flex;
    align-items: flex-start;
    margin-top: calc(var(--space-40) - 5px);
}

.mainSlider-section .floating-circles .floating-circle:nth-child(1) {
    width: 3%;
    left: 2%;
    right: 0;
    margin: 0 auto;
    bottom: 42%;
}

.mainSlider-section .floating-circles .floating-circle:nth-child(2) {
    width: 6%;
    left: 24%;
    right: 0;
    margin: 0 auto;
    bottom: 20%;

}

.mainSlider-section .floating-circles .floating-circle:nth-child(3) {
    width: 1.6%;
    left: 43%;
    right: 0;
    margin: 0 auto;
    bottom: 27%;
}

.mainSlider-section .floating-circles .floating-circle:nth-child(4) {
    width: 3.2%;
    left: 58%;
    right: 0;
    margin: 0 auto;
    bottom: 32.5%;
}

/* cta banner */

.cta-bananer .bananer-content-inner {
    padding: calc(var(--space-40) + 5px) calc(var(--space-60) + 10px);
}

.cta-bananer .bananer-content {
    padding: calc(var(--space-60) + 10px) 0;
    max-width: 810px;
}

.cta-bananer {
    background-color: transparent;
    min-height: min(550px, 29vw);
}

.cta-bananer .btn .icon {
    width: 23px;
    height: 25px;
}

.cta-bananer .btn .icon.icon-arrow-right {
    width: 6px;
    margin-left: 9px;
    height: 10px;
}

.cta-bananer .btn {
    min-height: 58px;
    font-size: 19px;
    padding: 5px 20px;
    font-weight: 700;
}

.cta-bananer .bananer-title {
    font-size: var(--font-30);
}

/*boxes*/
.boxes-list {
    display: flex;
    margin: -10px;
    flex-wrap: wrap;
    align-items: stretch;
}

.boxes-box {
    padding: 10px;
    width: 50%;
}

.box-inner {
    height: 100%;
    position: relative;
    border-radius: 15px;
    display: flex;
    color: #fff;
    overflow: hidden;
    padding: var(--space-50) var(--space-60);
}

.box-title {
    font-size: var(--font-30);
    font-weight: 700;
}

.box-inner .btn:before {
    content: "";
    position: absolute;
    inset: 0;
}

.boxes-section:last-child {
    margin-bottom: var(--space-60);
}

.boxes-section:not(:last-child) {
    z-index: 2;
    position: relative;
    margin-bottom: max(-120px, -7vw);
}

.boxes-section + section {
    padding-top: min(120px, 7vw);
}

.box-inner .btn:hover {
    background: #000;
    border-color: #000;
}

.box-title {
    margin-bottom: var(--space-25);
}

.box-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.box-inner .btn {
    margin-top: auto;
}

.box-icon {
    width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    margin-right: var(--space-50);
    height: 105px;
}

.mainSlider-section {
    margin-bottom: calc(var(--space-60) + 10px);
}

/* about us */

.aboutUs-section .floating-circle {
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 5%;
}

.aboutUs-section .floating-circle:nth-child(1) {
    bottom: 23%;
    width: 5.1%;
    right: 17%;
}

.aboutUs-section .floating-circle:nth-child(2) {
    bottom: 42%;
    width: 3.8%;
    left: 5%;
}

.aboutUs-section .floating-circle:nth-child(3) {
    top: 28%;
    width: 2.8%;
    left: 11%;
}

.aboutUs-section .floating-circle:nth-child(4) {
    bottom: 45%;
    width: 5%;
    left: 58%;
}

.aboutUs-section .floating-circle:nth-child(5) {
    bottom: 22%;
    left: 60%;
    width: 8.5%;
}

.aboutUs-inner {
    display: flex;
}

.aboutUs-img {
    margin-right: calc(var(--space-60) * -1);
    align-self: start;
    position: relative;
    margin-left: min(calc(((1780px - 2 * var(--container-padding) - 100vw) / 2)), calc(-1 * var(--container-padding) + 5px));;
    flex-grow: 1;
}

.subpage .aboutUs-img {
    margin-left: 0;
}


.aboutUs-content {
    flex-shrink: 0;
    padding: var(--space-50) 0;
    position: relative;
    z-index: 2;
    width: 41%;
}

.aboutUs-content .section-title {
    margin-bottom: 15px;
}

.aboutUs-content .btn {
    margin-top: var(--space-40);
}

.aboutUs-section {
    position: relative;
    margin-bottom: 20px;
}

.aboutUs-map {
    width: 21%;
    position: absolute;
    right: -7%;
    top: 10px;
}

.decorative-title + .aboutUs-inner {
    margin-top: var(--space-40);
}

.subpage .aboutUs-section .decorative-title {
    text-align: center;
}

.subpage .decorative-title + .aboutUs-inner {
    margin-top: var(--space-50);
}

.subpage .aboutUs-content {
    padding-top: 0;
}

.aboutUs-text {
    background: #fff;
}

/* grid items */
.grid-row-left .img-wrapper {
    border-radius: 15px;
    display: inline-block;
    overflow: hidden;
}

.grid-row-left {
    width: 50%;
    flex-shrink: 0;
}

.grid-row {
    gap: calc(var(--space-50) * 3);
    align-items: center;
    display: flex;
}

.grid-title {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 700;
    margin-bottom: var(--space-25);
}

.grid-row:nth-child(2n) {
    flex-direction: row-reverse;
}

.grid-row + .grid-row {
    margin-top: var(--space-60);
}

.grid-text {
    font-weight: 300;
}

.btn-square .icon.icon-user {
    width: 16px;
    height: 16px;
}

.btn-square .icon.icon-basket {
    width: 19px;
    height: 19px;
}

.rent-speccs-item {
    line-height: 2;
    font-size: 15px;
}

.rent-speccs-item .name {
    font-weight: 600;
}

.rental-box .trip-box-bottom {
    display: flex;
    justify-content: space-between;
}

.rent-price-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.deposit-wrapper {
    font-size: 14px;
}

.rent-price-label {
    font-size: 15px;
}

.rental-box .trip-box-inner .trip-box-thumb {
    align-self: center;
    display: flex;
    align-items: center;
}

.rental-box .trip-box-inner {
    padding: 20px var(--space-50);
}

.rent-price {
    padding-right: 15px;
    line-height: 30px;
    gap: var(--space-60);
    display: flex;
    align-items: center;
}

.rental-box .trip-box-content {
    padding-top: 0;
}


.rental-dialog-modal {
    border-radius: 15px;
}

.rental-dialog-container .form .form-required-mark {
    position: absolute;
}

.rental-dialog-container .form {
    min-width: 680px;
}

.rental-dialog-container > h4 {
    margin: -24px calc(-24px - var(--space-40)) 0 calc(-24px - var(--space-40));
    padding: 15px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: calc(var(--font-24) + 2px);
}

.rental-dialog-side:last-child {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: var(--space-60);
}

.btn-sizeTable:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.perion-picker-title {
    margin-bottom: 10px;
    font-size: 15px;
    text-align: left;
    width: 100%;
    font-weight: 700;
}

.accessories-wrapper .form-element label > div {
    margin-right: 10px;
}

.accessories-wrapper .form-element {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.accessories-wrapper {
    max-width: 480px;
    margin-top: var(--space-40);
    text-align: left;
    display: flex;
    flex-direction: column;
    padding-top: var(--space-40);
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.sizeTable h5 {
    font-size: var(--font-24);
    font-weight: 500;
    margin-bottom: var(--space-25);
}

.sizeTable {
    margin-bottom: var(--space-40);
}

.rental-dialog-side-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-sizeTable {
    margin-top: 20px;
    border-radius: 3px;
    font-size: 14px;
    padding: 5px 20px;
}

.rental-dialog-side:first-child {
    width: 40%;
}

.rental-dialog-sides {
    display: flex;
    padding-bottom: var(--space-40);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin: var(--space-25) 0 calc(var(--space-25) / 2) 0;
    margin-bottom: var(--space-40);

}

.rental-dialog-image {
    padding: var(--space-25);
    margin-bottom: calc(var(--space-25) / 2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rental-dialog-image img {
    display: block;
    max-height: 100%;
    max-width: 100%;
}

.rental-dialog-productName {
    text-align: left;
    margin-bottom: calc(var(--space-25) / 2);
    font-size: 18px;
    font-weight: 700;
}

.period-picker-calendar-wrapper .calendar-wrapper td {
    width: 50px;
    height: 50px;
    background-color: transparent;
    position: relative;
}

.period-picker-calendar-wrapper .calendar-wrapper td:not(.past) {
    cursor: pointer;
}

.period-picker-calendar-wrapper .calendar-wrapper td .day-content {
    width: 30px;
    height: 30px;
    background-color: transparent;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.period-picker-calendar-wrapper .calendar-wrapper td.active .day-content {
    background: var(--color-primary);
    color: #fff;
}

.period-picker-calendar-wrapper .calendar-wrapper td.active {
    background-color: #fff;
}

.period-picker-calendar-wrapper .calendar-wrapper td .day-locked {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.period-picker-calendar-wrapper .table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #fff;
}

.bike-size-container > label {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bike-size-container {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    max-width: 220px;
    flex-wrap: wrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.rental-dialog-side h5 {
    font-size: 15px;
    font-weight: 700;
    min-width: 20%;
}


.rental-size-wrapper {
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
    justify-content: flex-start;

}

.period-picker-calendar-wrapper {
    margin: 0 auto var(--space-25);
    padding-bottom: var(--space-40);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.period-picker-calendar-wrapper .calendar-wrapper {
    max-width: 380px;
    margin: 0 auto;
}

.period-picker-calendar-wrapper .calendar-wrapper thead > tr:first-child th:last-child {
    border-top-right-radius: 15px;
}

.period-picker-calendar-wrapper .calendar-wrapper thead > tr:first-child th:first-child {
    border-top-left-radius: 15px;
}

.period-picker-calendar-wrapper .calendar-wrapper tbody > tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
}

.period-picker-calendar-wrapper .calendar-wrapper tbody > tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
}

.table-bordered {
    margin-bottom: 0;
}

.period-picker-calendar-wrapper .calendar-wrapper {
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 15px;
}

.period-picker-calendar-wrapper .calendar-wrapper thead > tr:first-child th {
    border: none;
    background-color: var(--color-primary);
}

.period-picker-calendar-wrapper .calendar-wrapper thead th.text-left, .period-picker-calendar-wrapper .calendar-wrapper thead th.text-right {
    width: 50px;
    height: 50px;
}

.period-picker-calendar-wrapper .calendar-wrapper thead th.text-right a {
    margin-left: auto;
    margin-right: 10px;
}

.period-picker-calendar-wrapper .calendar-wrapper thead th.text-left a {
    margin-left: 10px;
}

.period-picker-calendar-wrapper .calendar-wrapper thead th.text-left a,
.period-picker-calendar-wrapper .calendar-wrapper thead th.text-right a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    font-size: 10px;
    line-height: 0;
    border: 1px solid #fff;
    color: #000;
    background-color: #fff;
    transition: all .2s linear;
    cursor: pointer;
}

.period-picker-calendar-wrapper .calendar-wrapper thead th.text-left a:hover, .period-picker-calendar-wrapper .calendar-wrapper thead th.text-right a:hover {
    color: #fff;
    background-color: var(--color-primary);
}

.period-picker-calendar-wrapper .calendar-wrapper thead > tr:first-child th.text-center {
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    vertical-align: middle;
}

.period-picker-calendar-wrapper .calendar-wrapper thead > tr:nth-of-type(2) th {
    width: 50px;
    height: 50px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    border-bottom: none;
}

.period-picker-calendar-wrapper .calendar-wrapper td.next-month .day-content, .period-picker-calendar-wrapper .calendar-wrapper td.prev-month .day-content {
    color: #ccc;
}

.period-picker-calendar-wrapper .calendar-wrapper td.next-month.active .day-content, .period-picker-calendar-wrapper .calendar-wrapper td.prev-month.active .day-content {
    color: #000;
}

.cost-row .icon {
    width: 13px;
    margin-right: 15px;
}

.cost-row .price-wrapper {
    font-weight: 700;
    font-size: 14px;
    margin-left: 10px;
}

.cost-row {
    display: flex;
    align-items: center;
}

.rental-price-section .deposit-wrapper {
    text-align: left;
    font-size: 14px;
    padding-left: 28px;
}

.rental-price-section {
    width: 40%;
    color: #fff;
    background-color: #000;
    padding: calc(var(--space-25) - 5px) var(--space-25);
}

.sizeTable .text table {
    min-width: 600px;
}

.rental-dialog-modal {
    max-width: max(300px, 90%);
}

.sizeTable .text {
    max-width: 100%;
    overflow: auto;
}

.date-caption .icon {
    color: #000;
    width: 11px;
    height: 11px;
    margin-right: 10px;
}

.date-caption {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    text-align: left;
    font-size: 14px;
}

.categories-rent-section {
    margin-bottom: calc(var(--space-60));
}

.period-picker-input-wrapper .date-range-wrapper {
    display: flex;
    justify-content: flex-start;
    align-self: center;
    width: 60%;
    padding: calc(var(--space-25) - 5px) var(--space-25);
}

.period-picker-input-wrapper .form-control {
    background: transparent !important;
    border: none !important;
    color: #000 !important;
    font-size: 16px !important;
    padding: 5px 0px !important;
    height: unset !important;
    font-weight: 700 !important;
}

.period-picker-input-wrapper {
    width: 100%;
    margin-bottom: var(--space-40);
    background-color: #f4f4f4;
    overflow: hidden;
    display: flex;
    border-radius: 15px;
    color: #000;
}

.rental-price-section .rental-price {
    color: #fff;
    font-size: 14px;
}

.date-range-wrapper input {
    width: 120px;
}

.rental-dialog-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.rental-dialog-inputs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.rental-dialog-inputs label {
    font-weight: 400;
}

.pedals-wrapper {
    width: 100%;
    padding-bottom: var(--space-25);
    margin-bottom: var(--space-25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.rental-dialog-inputs h5, .summary-title {
    font-size: 15px;
    font-weight: 700;
    min-width: 20%;
    text-align: left;
    margin-bottom: 10px;
}

.rental-dialog-container {
    padding: 0 var(--space-40);
}

.rental-dialog-inputs label {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 5px;
}

.rental-dialog-inputs .form-elements-wrapper .form-element label {
    display: block;
    text-align: left;
    width: 100%;
}

.rental-dialog-inputs .form-elements-wrapper .form-element {
    width: 33.333%;
    padding: 0 10px;
}

.rental-dialog-inputs .form-elements-wrapper {
    flex-grow: 1;
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
    gap: 10px 0;
    flex-wrap: wrap;
}

.rental-dialog-inputs .form-elements-row {
    padding-bottom: var(--space-25);
    width: 100%;
    display: flex;
    margin-bottom: var(--space-25);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.rental-dialog-inputs .form-element {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.rental-dialog-inputs .form-element-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    display: block;
}

.iconList-right-inner {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.fancybox-close-small {
    color: #fff;
    border-radius: 50%;
    transition: all 300ms;
    top: 11px;
    right: 10px;
    width: 40px;
    height: 40px;
}

.fancybox-close-small:after {
    transform: rotate(-45deg);
}

.fancybox-close-small:before {
    transform: rotate(45deg);
}

.fancybox-close-small:before,
.fancybox-close-small:after {
    width: 28px;
    height: 3px;
    color: inherit !important;
    opacity: 1 !important;
    border-radius: 0 !important;
    border: none !important;
    display: block;
    background-color: currentColor !important;
    position: absolute;
    inset: 0;
    margin: auto;
    content: "";
}

@media screen and (min-width: 1140px) {
    .fancybox-close-small:hover {
        color: var(--color-primary);
        background-color: #fff;
    }
}

.payment-methods-panel .col-sm-4 {
    width: 100% !important;
}

.delivery-methods .shop-method-teaser {
    display: none;
}

.delivery-methods .iradio_minimal-custom.checked + .form-element-option-text .shop-method-teaser {
    display: block;
}

.basket-view .basket-summary {
    height: 100% !important;

}

.basket-view .shop-basket-summary .row {
    gap: 10px 0;
}

.shop-method-teaser ul {
    list-style: unset;
}

.sidebar-side-left {
    background: var(--color-primary);
}

.submenu > ul > li.active > a, .submenu > ul > li.active > a:hover {
    color: var(--color-primary);
}

@media screen and (max-width: 1139px ) {
    .sidebar-side-left h3:before {
        background: var(--color-primary);
    }
}

.footer-eu-logos .move-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-eu-logos {
    border-top: 1px solid rgba(0, 0, 0, .1);
    padding: 18px 0;
}

.eu-logos-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.eu-logos-img img {
    display: block;
    max-width: 100%;
}

.faq-section {
    margin-bottom: var(--space-60);
}

.faq-category-wrapper + .faq-category-wrapper {
    margin-top: var(--space-40);
}

.faq-category-title {
    font-size: var(--font-24);
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    transition: .2s all;
    padding: max(calc(var(--space-25) - 5px), 15px);
    cursor: pointer;
}

.faq-item-btn-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: vaR(--color-secondary);
    color: #fff;
    border: 1px solid var(--color-secondary);
    border-radius: 8px;
    transition: .2s all;
    flex-shrink: 0;
}

.faq-item-title {
    font-size: 16px;
    font-weight: 500;
}

.faq-item-btn-arrow .icon {
    max-width: 7px;
    transform: rotate(90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s all;
}

.faq-item {
    border-radius: 5px;
    border: 1px solid #e2e2e2;
    transition: .2s all;
}

.faq-item-bottom {
    padding: max(calc(var(--space-25) - 5px), 15px);
    display: none;
    padding-top: 0;
}

.faq-item-bottom > .text {
    font-size: 14px;
    line-height: 1.8em;
}

@media screen and (min-width: 1140px) {
    .faq-item:hover {
        border-color: var(--color-primary);
    }

    .faq-item:hover .faq-item-btn-arrow {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
    }

    .faq-item:hover .faq-item-btn-arrow svg path {
        fill: #fff;
    }
}

.faq-item.active {
    border-color: var(--color-primary);
}

.faq-item.active .faq-item-btn-arrow {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.faq-item.active .faq-item-btn-arrow svg path {
    fill: #fff;
}

.faq-item.active .faq-item-btn-arrow .icon {
    transform: rotate(270deg);
}
