/**
 * GLOBAL VARIABLES
 */
:root {
    /** UNIVERSAL **/
    --space-60: 60px;
    --space-50: 50px;
    --space-40: 40px;
    --space-25: 25px;

    --font-48: 48px;
    --font-40: 40px;
    --font-36: 36px;
    --font-30: 30px;
    --font-24: 24px;

    --container-padding: 40px;

    --row-gap: 15px;

    /** SPECIFIC **/
    --color-primary: #FDCD20;
    --color-secondary: #000;
    --color-default: #333;
    --color-border-deafult: #ccc;
}

body {
    color: #000;
    font-family: "Lato", sans-serif;
}

/**
 * BASIC
 */

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

em {
    padding-right: 2px;
}

h1 {
}

h2 {
}

h3 {
}

h4 {
}

h5 {
}

a {
    color: #000;
}

a:hover, a:focus {
    color: var(--color-primary);
}

/**
 * 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: 143px;
}

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

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

.container-super-small {
    max-width: 1100px;
}

.container--noClear {
    clear: none;
}

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

/**
 * ICONS
 */

.icon-mask.icon-mask {
    -webkit-mask-size: cover;
    -mask-size: cover;
    -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-wrapper,
.icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper img,
.icon-wrapper svg,
.icon img,
.icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.icon *[fill]:not([fill="none"]) {
    fill: currentColor;
}

.icon *[stroke]:not([stroke="none"]) {
    stroke: currentColor;
}


/**
 * 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: var(--color-secondary);
    text-transform: uppercase;
}

.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: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff;
}

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

.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: #fff;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}


.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;
        border-color: var(--color-primary);
    }

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

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

/**
 * BUTTONS
 */

.btn {
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    transition: all .2s linear;
}

.btn-lg {
    min-height: 46px;
    font-size: 14px;
    font-weight: 900;
    line-height: normal;
    padding: 8px 26px;
}

.btn-lg-small {
    min-height: 41px;
    max-width: 148px;
    font-size: 13px;
    font-weight: 900;
    line-height: normal;
}

.btn-tu {
    text-transform: uppercase;
}

.btn-jl {
    justify-content: left;
}

.btn-square {
    width: 46px;
    height: 46px;
}

/**
 * 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: 18px;
    line-height: 30px;
}

.text strong {
    font-weight: 900;
}

/** 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 {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    padding: 12px 0;
}

.header-main-inner {
    display: flex;
    align-items: center;
    gap: calc(var(--space-60) - 2px);
}

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

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

.header-main-content-bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    margin-top: 12px;
}

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

.header-main-info-title {
    font-size: 16px;
    padding-right: 15px;
}

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

.header-main-info-phone {
    display: flex;
    align-items: center;
    transition: color 0.3s;
    font-weight: 900;
}

.header-main-info-phone + .header-main-info-phone {
    padding-left: 20px;
}

.header-main-info-phone .icon {
    width: 46px;
    height: 46px;
    border-radius: 5px;
    background-color: var(--color-primary);
    padding: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: #000;
}

.logo a {
    display: block;
}

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

#main-menu ul {
    font-size: 0;
    display: flex;
    flex-wrap: wrap;
    margin: -5px -20px;
}

#main-menu li {
    position: relative;
    font-size: 1rem;
    padding: 5px 20px;
}

#main-menu li a {
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s;
}

#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;
}

.main-menu-button {
    float: right;
    width: 40px;
    margin: 18px 0 18px var(--container-padding);
    border: none;
    background: transparent;
}

.main-menu-button.animIcon--hamburger.active span {
    background-color: var(--color-primary);
}

.mainsearch.rwdPanel {
    display: block;
}

.mainsearch {
    position: relative;
    width: 100%;
    max-width: 460px;
    border-radius: 5px;
    border: 1px solid #000;
    overflow: hidden;
}

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

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

.mainsearch input.form-control {
    display: block;
    height: 46px;
    padding: 5px 22px;
    border-right: none;
    box-shadow: none;
    border: 0 !important;
    color: #000;
    font-size: 16px;
}

.mainsearch input.form-control::placeholder {
    color: #000;
    font-size: 16px;
}

.mainsearch-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    color: var(--color-primary);
    background-color: var(--color-secondary);
    border: 0;
    border-left: 1px solid #000;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .mainsearch-submit:hover {
        background-color: #fff;
        color: #000;
    }
}

.mainsearch .alert-block {
    position: absolute;
    bottom: 0;
    left: 22px;
    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 {
    background-color: #000;
    color: #fff;
    background-size: cover;
}

.footer-cols {
    padding: calc(var(--space-50) + var(--space-25)) 0;
    min-height: 80vh;
    display: flex;
}

.footer-col-title {
    margin-bottom: calc(var(--space-40) - 5px);
    color: var(--color-primary);
    font-size: 22px;
    font-weight: 900;
}

.footer-col-1 {
    width: 42%;
}

.footer-col-2 {
    width: 42%;
}

.footer-col-3 {
    width: 16%;
}

.footer-col-content ul li a {
    color: #fff;
    line-height: 2.5;
    display: block;
    transition: color 0.3s;
}

.footer-col-content .text {
    line-height: 2.5;
    font-size: 16px;
}

.footer-col-content .text a {
    color: #fff;
    transition: color 0.3s;
}

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

.footer-col-content ul li a:hover {
    color: var(--color-primary);
}

.footer-col-content .footer-col {
    margin-top: var(--space-40);
}

.footer-main {
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-main .social-icon {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.footer-col-content ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-col-content ul li {
    width: 50%;
}

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

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

/* FOOTER BAR */
.footer-bar {
    padding: 20px 0;
    line-height: 30px;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 13px;
    color: #fff;
    background-color: #221E1D;
}

.footer-bar-links a {
    text-transform: initial;
    font-size: 13px;
}

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

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

.footer-bar-content > * {
    float: left;
}

.footer-bar-content > *:not(:last-child) {
    margin-right: 30px;
}

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

.footer-bar-links {
    margin-left: -8px;
    font-size: 0;
    text-transform: uppercase;
    position: relative;
}

.footer-bar-links::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 15px;
    background-color: #fff;
    top: 50%;
    transform: translateY(-50%);
    right: -10px;
}


.footer-bar-links > li {
    display: inline-block;
    vertical-align: middle;
    margin: 3px 8px;
    font-size: 14px;
    line-height: 24px;
}

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

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

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


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

/* INPUTY */
.form-control,
.form .form-control {
    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: 12px; */
}

.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: 6px;
    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 6px 6px 0;
    background-color: transparent;
    border-color: transparent;
    border-left-color: rgba(0, 0, 0, .15);
    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: 30px 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 ul li a {
    color: #333;
    transition: color 0.4s;
}

.pagination-wrapper ul li.active a {
    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: var(--color-secondary);
    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 {*/
/*    height: 156px;*/
/*    padding: 28px 0;*/
/*    background-color: #fff;*/
/*}*/

/*.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;*/
/*}*/

.logotypes {
    background-color: #fff;
}

.logotypes-slider-container {
    padding: calc(var(--space-60) + 8px) 0;
    border-top: 1px solid rgba(0, 0, 0, .15);
    width: 100%;
}

/**
 * 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 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px;
    transition: all 0.3s;
}

@media screen and (min-width: 1140px) {
    .social-icon:hover {
        background-color: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
    }
}

.social-icon svg {
    fill: currentColor;
}

.social-icon img {
    display: block;
}

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

.social-list {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 3px);
}

/**
 * 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: 20%;
    padding: 7px;
}

.gallery-picture {
    position: relative;
    display: block;
    width: 100%;
    font-size: 0;
}

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

.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.6);
    transition: opacity 0.3s;
    border-radius: 10px;
}

@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;
}

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

.section-mainInfo-inner {
    position: relative;
    padding: calc(2 * var(--space-40) - 4px) calc(var(--space-40) - 2px);
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-25);
}

.mainInfo-content {
    background-color: var(--color-secondary);
    border-radius: 20px;
    color: #fff;
    width: 100%;
    max-width: 588px;
    padding: calc(var(--space-25) + 2px) calc(var(--space-40) + 4px);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 7px);
    align-items: flex-start;
}


.mainInfo-content .text {
    font-size: 18px;
}

.mainInfo-content-top {
    display: flex;
    align-items: center;
    gap: calc(var(--space-25) + 2px);
}

.mainInfo-title {
    font-size: var(--font-30);
    font-weight: 900;
}

.mainInfo-image {
    position: absolute;
    z-index: -1;
    inset: 0;
}

.mainInfo-image img {
    display: block;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-heading {
    margin-bottom: var(--space-50);
}

.page-heading-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 900;
    color: var(--color-secondary);
    text-align: center;
}

.about-top {
    padding-top: calc(2 * var(--space-40));
    padding-bottom: calc(4 * var(--space-60) + 6px);
    position: relative;
    margin-bottom: -130px;
}

.about-top-image {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about-top-image:after {
    position: absolute;
    bottom: 0;
    content: "";
    left: 0;
    width: 100%;
    height: 300px;
    background: #ffffff;
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 15%, rgba(255, 255, 255, 0) 100%);
}

.about-top-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.about-top-content-inner {
    position: relative;
    margin: 0 calc(2 * var(--space-60) - 2px) 0 calc(2 * var(--space-60) + 12px);
    min-height: 450px;
    aspect-ratio: 1390 / 623;
}

.about-top-content-image {
    width: 32%;
    min-width: 140px;
}

.about-top-content-image img {
    display: block;
    max-width: 100%;
}

.about-top-text {
    display: inline-flex;
    gap: 20px;
    font-size: calc(var(--font-24) - 4px);
    font-weight: 900;
    transition: .3s all;
}

.about-top-text-icon {
    flex-shrink: 0;
}

.about-top-text-icon svg {
    display: block;
    transition: .2s all;
}

.about-top-text:nth-child(1) {
    position: absolute;
    top: 0%;
    max-width: 370px;
    left: 30%;
}

.about-top-text:nth-child(2) {
    position: absolute;
    top: 15%;
    max-width: 280px;
    left: 52%;
}

.about-top-text:nth-child(3) {
    position: absolute;
    top: 8%;
    max-width: 300px;
    left: 74%;
}

.about-top-text:nth-child(4) {
    position: absolute;
    top: 72%;
    max-width: 300px;
    left: 9.8%;
}

.about-top-text:nth-child(5) {
    position: absolute;
    top: 66%;
    max-width: 300px;
    left: 75%;
}

.about-top-text:nth-child(6) {
    position: absolute;
    bottom: 0%;
    max-width: 370px;
    left: 0%;
}

.about-info-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.about-info-item {
    padding: calc(var(--space-40) + 1px) calc(var(--space-50) + 2px);
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 8px);
}

.about-info-item-title {
    font-size: var(--font-30);
    color: var(--color-primary);
    font-weight: 900;
}

.about-info-item .text {
    font-size: 18px;
}

.about-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
    padding: var(--space-60);
}

.about-contact-right {
    display: flex;
    gap: calc(var(--space-60) + 3px);
    flex-direction: column;
    padding-left: calc(var(--space-50) + 3px);
    padding-top: 15px;
}

.about-contact-right-top {
    max-width: 462px;
}

.about-contact-right-top .text {
    font-size: 18px;
}

.about-contact-right-bottom {
    display: flex;
    gap: calc(var(--space-25) + 5px);
    flex-wrap: wrap;
}

.about-contact-left {
    display: flex;
    gap: calc(var(--space-40) + 5px);
    padding-right: calc(var(--space-40) - 2px);
}

.about-contact-left-icon {
    flex-shrink: 0;
}

.about-contact-left-icon svg {
    display: block;
}

.about-contact-left-text {
    display: flex;
    flex-direction: column;
    gap: var(--space-60);
}

.about-contact-left-title {
    font-size: calc(var(--font-36) - 1px);
    font-weight: 900;
    max-width: 429px;
}

.text h2 {
    font-size: var(--font-30);
    font-weight: 900;
}

.about-desc {
    margin-bottom: var(--space-60);
}

.about-desc .text .media_embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1020/580;
}

.text h3 {
    color: #000;
    font-size: var(--font-24);
    font-weight: 900;
}

.text u {
    -webkit-text-decoration-color: var(--color-primary);
    text-decoration-color: var(--color-primary);
}

.gallery-wrapper {
    background-color: #F8F8F8;
    padding: var(--space-50) 0;
}

.gallery-wrapper-training .section-heading-small {
    margin-bottom: var(--space-40);
}

.gallery-wrapper-training .text {
    margin-bottom: var(--space-40);
}

.gallery-wrapper-region-view {
    padding-top: var(--space-60);
    padding-bottom: calc(var(--space-60) + 10px);
}

.section-heading-small {
    margin-bottom: var(--space-50);
}

.gallery-wrapper-region-view .section-heading-small {
    margin-bottom: var(--space-60);
}

.section-title {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 900;
}

.section-title-small {
    font-size: 24px;
    font-weight: 900;
}

.files-wrapper {
    padding: var(--space-50) 0;
}

.files-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(var(--space-25) + 7px);
}

.files-item {
    position: relative;
    padding: 11px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 15px;
    display: flex;
    gap: calc(var(--space-25) + 5px);
    align-items: center;
    transition: .3s all;
    cursor: pointer;
}

.files-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.files-item-icon svg {
    display: block;
}

.files-item-name {
    max-width: 290px;
    font-size: 16px;
    line-height: 26px;
}

.files-item-download {
    margin-left: auto;
    padding-left: var(--space-60);
    padding-right: var(--space-50);
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(0, 0, 0, .15);
    transition: .3s all;
}

.files-item a {
    position: absolute;
    inset: 0;
}

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

    .files-item:hover .files-item-download {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }
}

.about-contact-inner {
    position: relative;
    z-index: 0;
    color: #fff;
}

.about-contact-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.about-contact-background img {
    display: block;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-contact-background:after {
    position: absolute;
    inset: 0;
    background-color: #000;
    opacity: .6;
    content: "";
    border-radius: 15px;
}

.about-contact-link {
    display: flex;
    gap: 20px;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    transition: .2s all;
    align-items: center;
}

.about-contact-link-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-primary);
    border-radius: 5px;
}

.about-contact-left-link {
    margin: auto 0;
}

.about-contact-left-link a {
    color: #fff;
    transition: .2s all;
    font-size: 18px;
    font-weight: bold;
}

.about-contact-left-link a:hover {
    color: var(--color-primary);
}

.about-contact.about-us-page {
    margin-top: 20px;
}

.insurance-top-inner {
    position: relative;
    padding: var(--space-60);
}

.insurance-top-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    max-width: 550px;
}

.insurance-top-title {
    font-size: calc(var(--font-48) + 8px);
    font-weight: 900;
}

.insurance-top-background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.insurance-top-background img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.news-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.region-box-wrapper {
    width: 33.33%;
    padding: calc((var(--space-25) + 12px) / 2);
}

.news-item {
    padding: var(--space-25);
    padding-bottom: calc(var(--space-25) + 5px);
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 15px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 5px);
}

.news-view-content-inner {
    display: flex;
}

.news-view-content-left {
    width: 60%;
    padding-right: calc(var(--space-50) + 3px);
}

.news-view-content-right {
    width: 40%;
    padding-left: calc(var(--space-50) + 3px);
    border-left: 1px solid rgba(0, 0, 0, .15);
}

.news-item-img-box {
    position: relative;
}

.news-item-img img {
    display: block;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) - 5px);
    margin-top: auto;
    align-items: flex-start;
}

.news-item-title {
    font-size: calc(var(--font-24) + 2px);
    max-width: 430px;
    font-weight: 900;
    transition: .2s all;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.news-item-content .text {
    font-size: 16px;
}

.news-item-info {
    display: flex;
    column-gap: var(--space-50);
    row-gap: var(--space-25);
    flex-wrap: wrap;
}

.news-item-info-element {
    display: flex;
    gap: 18px;
    min-width: 170px;
    align-items: center;
}

.news-item-info-element .element-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background-color: var(--color-primary);
    border-radius: 10px;
}

.news-item-info-element .element-icon svg {
    display: block;
}

.news-item-info-element .content {
    display: flex;
    flex-direction: column;
}

.news-item-info-element .content .line-1 {
    font-size: 13px;
}

.news-item-info-element .content .line-2 {
    font-size: 16px;
    font-weight: 900;
}

.news-item-img-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 21%;
    z-index: 1;
    background: #fff;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

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

.news-item-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.news-view-top-inner {
    position: relative;
    z-index: 0;
}

.news-view-top-box {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: calc(var(--space-25) + 5px);
}

.news-view-top-bg {
    aspect-ratio: 1362 / 570;
}

.news-view-top-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    min-height: 350px;
}

.news-view-top-logo {
    width: 18.5%;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-width: 100px;
    overflow: hidden;
}

.news-view-top-logo img {
    display: block;
    max-width: 100%;
}

.news-item-top-info {
    padding: 11px;
    display: flex;
    background-color: #fff;
    padding-right: var(--space-60);
    border-radius: 10px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.news-item-top-info-element {
    display: flex;
    min-width: 195px;
    gap: 21px;
    align-items: center;
}

.news-item-top-info-element .element-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--color-primary);
}

.news-item-top-info-element .content {
    display: flex;
    flex-direction: column;
}

.news-item-top-info-element .content .line-1 {
    font-size: 15px;
}

.news-item-top-info-element .content .line-2 {
    font-size: 18px;
    font-weight: 900;
}

.news-view-content-right-map-title {
    font-size: var(--font-30);
    font-weight: 900;
    margin-bottom: calc(var(--space-50) + 4px);
}

.news-view-content-right-map {
    position: relative;
    display: block;
}

.news-view-content-right-map img {
    display: block;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-view-content-right-map .btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 165px;
    padding-left: 17px;
    padding-right: 22px;
}

.region-box-swiper {
    position: relative;
    width: 100%;
}

.region-box-arrows,
.offer-box-arrows {
    position: absolute;
    z-index: 1;
    bottom: 13px;
    right: 15px;
    display: flex;
    gap: 10px;
}

.region-box-arrows .btn-arrow,
.offer-box-arrows .btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: .2s all;
    color: #fff;
}

.btn-arrow svg {
    display: block;
}

.btn-arrow svg path {
    fill: currentColor;
}

@media screen and (min-width: 1140px) {
    .region-box-arrows .btn-arrow:hover,
    .offer-box-arrows .btn-arrow:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }
}

.region-swiper-slide img {
    display: block;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.regions-wrapper {
    margin: calc(-0.5 * ((var(--space-25) + 12px)));
    margin-bottom: calc(var(--space-60) + (0.5 * (var(--space-25) + 2px)));
}

.news-item-content .text a.seemore {
    font-weight: 900;
    font-size: 16px;
    transition: .2s all;
    text-transform: lowercase;
    color: #000;
}

.logotype-slider {
    width: 100%;
}

.logotype-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 2 / 1;
}

.logotype-slide a {
    display: block;
}

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

.pagination-wrapper {
    padding: unset;
    margin: calc(var(--space-60) + 10px) 0;
    max-width: unset;
}

.pagination-wrapper ul li.next,
.pagination-wrapper ul li.prev {
    float: unset;
}

.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    width: unset;
    height: unset;
    background-color: unset;
    border: unset;
}

.pagination-wrapper ul li {
    padding: 0 20px;
}

.pagination-wrapper ul li.next {
    margin-left: 20px;
}

.pagination-wrapper ul li.prev {
    margin-right: 20px;
}

.regions-slider-wrapper {
    margin-top: calc(var(--space-60) + 5px);
    margin-bottom: calc(var(--space-60) + 10px);
}

.section-heading {
    margin-bottom: var(--space-60);
    display: flex;
    gap: var(--space-25);
    justify-content: space-between;

}

.section-heading-right {
    display: flex;
    gap: var(--space-50);
    align-items: center;
}

.region-slider-view-arrows,
.small-offers-slider-arrows,
.region-hotels-view-arrows,
.regions-section-slider-arrows {
    display: flex;
    gap: 20px;
}

.btn-arrow {
    background-color: transparent;
    border: none;
    padding: 0;
    transition: .3s all;
}

.btn-arrow svg {
    display: block;
}

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

.news-list-slider {
    margin: -7px;
    display: flex;
    flex-wrap: wrap;
}

.region-box-wrapper-small {
    padding: 7px;
    width: 25%;
}

.news-item-small {
    position: relative;
    cursor: pointer;
    max-width: 330px;
    margin: 0 auto;
}

.news-item-img-box-bg {

}

.news-item-img-box-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    min-height: 260px;
}

.news-item-small-top {
    position: absolute;
    inset: 0;
    padding: 22px;
    padding-bottom: calc(var(--space-25) + 10px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 1;
    transition: .3s all;
    z-index: 1;
}

.news-item-content-small {
    position: absolute;
    opacity: 0;
    transition: .3s all;
    inset: 0;
    padding: calc(var(--space-25) + 3px);
    z-index: 2;
}

.news-item-img-logo-small {
    width: 31%;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-width: 70px;
}

.news-item-img-logo-small img {
    display: block;
    max-width: 100%;
}

.news-item-name-card-small {
    font-size: 22px;
    color: #fff;
    font-weight: 900;
}

.news-item-small:after {
    position: absolute;
    inset: 0;
    content: "";
    background: #000000;
    z-index: 0;
    top: 180px;
    border-radius: 13px;
    background: linear-gradient(360deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    transition: .3s all;
}

.news-item-small:before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background: #000000;
    z-index: 0;
    border-radius: 13px;
    transition: .3s all;
}

.news-item-content-small {
    display: flex;
    flex-direction: column;
}

.news-item-content-small .news-item-name-small {
    font-size: 22px;
    color: #fff;
    font-weight: 900;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.news-item-content-small .text {
    font-size: 14px;
    color: #fff;
    line-height: 22px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

/*@media screen and (min-width: 1140px) {*/
.news-item-small:hover .news-item-small-top {
    opacity: 0;
}

.news-item-small:hover .news-item-content-small {
    opacity: 1;
}

.news-item-small:hover:after {
    opacity: 0;
}

.news-item-small:hover:before {
    opacity: .5;
}

/*.news-view-map-section {*/
/*    margin-top: var(--space-60);*/
/*    margin-bottom: calc(var(--space-60) + 10px);*/
/*}*/

.map {
    aspect-ratio: 1365 / 628;
}

.map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.news-view-content-right-map-box {
    margin-bottom: calc(var(--space-60) + 7px);
}

.news-view-content-right-boxes-title {
    font-size: var(--font-30);
    font-weight: 900;
    margin-bottom: calc(var(--space-40) + 4px);
}

.news-view-content-right-boxes {
    display: flex;
    margin: -4px;
    flex-wrap: wrap;
}

.news-view-content-right-boxes-item {
    padding: 4px;
    width: 33.33%;
}

.news-view-content-right-boxes-item-inner {
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 10px;
    width: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 81px;
    padding: 10px;
    text-align: center;
}

.gallery-see-more {
    margin-top: calc(var(--space-60) + 10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-see-more .btn,
.return-back .btn {
    max-width: 177px;
    width: 100%;
}

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

.text a:hover {
    text-decoration: underline;
}

.section-title-deco {
    text-transform: uppercase;
    position: relative;
}

.section-title-deco:after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 100%;
    background-image: url("../images/section-title-deco.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.return-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.text p iframe {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}


.pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    color: #000;
    -webkit-box-shadow: unset;
    box-shadow: unset;
    padding: 0 10px;
}

.pagination-wrapper ul li.next a svg path,
.pagination-wrapper ul li.prev a svg path {
    fill: currentColor;
}

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

.social-list {
    margin-left: auto;
}

.favourite-box {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-left: var(--space-50);
}

.favourite-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 5px;
}

/*.gallery-list-item {*/
/*    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.4s ease;*/
/*    opacity: 1;*/
/*    transform: scaleY(1);*/
/*    overflow: hidden;*/
/*}*/

/*.gallery-list-item.hidden {*/
/*    opacity: 0;*/
/*    transform: scaleY(0);*/
/*    max-height: 0;*/
/*    margin: 0;*/
/*    pointer-events: none;*/
/*}*/

.peopleConfig-dropbox {
    display: none;
    position: absolute;
    z-index: 10;
    top: 100%;
    right: 0;
    width: 228px;
    margin-top: -1px;
    font-size: 1rem;
    background-color: #fff;
    border: 1px solid #000;
    padding: 10px;
}

.reservationbox .peopleConfig-dropbox {
    position: static;
    display: block;
    width: auto;
    margin-bottom: 15px;
    border: none;
    background-color: transparent;
}

.reservationbox .peopleConfig-elements {
    padding: 0;
    margin: -3px -3px 0 -3px;
    font-size: 0;
    text-align: left;
    display: flex;
    flex-wrap: wrap;
}

.reservationbox .peopleConfig-element {
    width: 50%;
    padding: 3px;
    margin-top: 0 !important;
}

.peopleConfig-element-template {
    display: none !important;
}

.active .peopleConfig-dropbox {
    display: block;
    min-height: 50px;
}

.peopleConfig-toggler {
    cursor: pointer;
}

.peopleConfig-dropbox-header {
    position: relative;
    display: table;
    width: 100%;
    height: 48px;
    padding: 12px 15px;
}

.peopleConfig-dropbox-header > * {
    display: table-cell;
    vertical-align: middle;
}

.peopleConfig-dropbox-header .title-base {
    width: 100%;
    padding-right: 5px;
    text-align: left;
}

.peopleConfig-close {
    width: 100%;
}

.fakeselect {
    position: relative;
}

.active .fakeselect,
.fakeselect.active {
    border-color: #000;
}

.fakeselect input {
    width: 100%;
    height: 46px !important;
    padding-right: 50px;
    color: #6f7073;
    border-radius: 5px;
    border: none;
}

.fakeselect-arrow {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #000;
}

.fakeselect-arrow:after {
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
}


.peopleConfig-amount-wrapper {
    padding: 5px 15px;
    text-align: center;
    line-height: 40px;
    color: #000;
    background-color: #ffcc00;
}

.peopleConfig-amount-less,
.peopleConfig-amount-more {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 20px;
    line-height: 40px;
    font-weight: 900;
    border: none;
    background: none;
}

.peopleConfig-amount-less:disabled,
.peopleConfig-amount-more:disabled {
    opacity: 0.3;
}

.peopleConfig-amount-less {
    float: left;
}

.peopleConfig-amount-more {
    float: right;
}

.peopleConfig-amount-counter {
    font-size: 22px;
}

.peopleConfig-elements {
    padding: 10px 15px;
}

.peopleConfig-element {
    position: relative;
}

.peopleConfig-element:not(:first-child) {
    margin-top: 10px;
}

.peopleConfig-element-label {
    display: block;
    padding-bottom: 4px;
    font-weight: 900;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #162223;
}

.peopleConfig-element.has-error input {
    border-color: red !important;
}

.peopleConfig-input {
    position: relative;
}

.peopleConfig-input input.form-control {
    border-color: rgba(0, 0, 0, 0.1);
    color: #000;
    background-color: #fff;
}

.peopleConfig-input .filters-element-badge {
    background-color: transparent;
}

.peopleConfig-reset {
    padding-left: 0;
    padding-right: 0;
    color: #e24521;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.peopleConfig-reset:focus {
    color: #e24521;
}

.peopleConfig-reset:hover {
    text-decoration: none;
    color: #000;
}

.peopleConfig-amount-target::-webkit-outer-spin-button,
.peopleConfig-amount-target::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.peopleConfig-amount-target {
    -moz-appearance: textfield;
}

.ui-autocomplete {
    z-index: 1010;
}

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active {
    color: #000;
    border-color: transparent;
    background-color: #ffcc00;
}

@media screen and (min-width: 1140px) {
    .peopleConfig-dropbox-header .peopleConfig-close:hover {
        background-color: #fc0;
    }

    .peopleConfig-amount-less:not(:disabled):hover,
    .peopleConfig-amount-more:not(:disabled):hover {
        font-size: 24px;
    }

    .peopleConfig-input input.form-control:hover {
        border-color: #000;
    }
}

.searchfilters-container {
    background-color: var(--color-primary);
    box-shadow: 43px 57px 20px 0px rgba(0, 0, 0, 0.00), 27px 36px 18px 0px rgba(0, 0, 0, 0.01), 15px 20px 15px 0px rgba(0, 0, 0, 0.05), 7px 9px 11px 0px rgba(0, 0, 0, 0.09), 2px 2px 6px 0px rgba(0, 0, 0, 0.10);
    border-radius: 15px;
    padding: calc(var(--space-40) - 5px);
}

.section-filters .searchfilters-container {
    position: absolute;
    bottom: var(--space-60);
    left: var(--space-60);
    right: var(--space-60);
}

.filters-row {
    display: flex;
    margin: -15px;
}

.filters-cell {
    width: 18.75%;
    padding: 15px;
}

.filters-cell-short {
    width: 10%;
}

.filters-element-wrapper {
    position: relative;
}

.filters-cell-right {
    width: 5%;
    display: flex;
    align-items: flex-end;
}

.filters-label {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 9px;
    text-transform: uppercase;
}

.filters-cell .form-control,
.filters-cell .select2-container--default .select2-selection--multiple,
.filters-cell .select2-container--default .select2-selection--single {
    border: 0 !important;
}

.form-element-multiselectCheckbox .select2-container--default .select2-selection--multiple:after {
    border: 0;
    content: '\f107';
    font-family: 'FontAwesome';
    font-size: 16px;
    vertical-align: middle;
    margin-top: 0;
    transform: translateY(-50%);
    right: 24px;
    width: initial;
    height: initial;
}

.select2-container--below.select2-container--focus.select2-container--open .select2-selection--multiple:after {
    -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-search--dropdown .select2-search__field {
    width: 100% !important;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered > li:first-child {
    padding-left: 0;
    margin-left: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    height: 100%;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    line-height: 24px;
    display: inline-flex;
    float: none;
    align-items: center;
    gap: 5px;
    background-color: transparent;
    border: none;
    margin-top: 0 !important;
    margin-right: 0 !important;
    overflow: hidden;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.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;
}

.filters-element-withbadge {
    position: relative;
}

.filters-element-withbadge .icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 16px;
    pointer-events: none;
}

.section-filters-inner {
    position: relative;
}

.section-filters-image img {
    display: block;
    max-width: 100%;
}

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

.offer-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

.offer {
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, .15);
    padding: calc(var(--space-25) - 5px);
    display: flex;
    gap: calc(var(--space-25) - 2px);
    position: relative;
    flex-wrap: wrap;
}

.offer-img-box {
    position: relative;
}

.offer-img-skiPass {
    position: absolute;
    top: -1px;
    right: -2px;
    width: 42.5%;
    z-index: 1;
}

.offer-img-skiPass img {
    display: block;
    max-width: 100%;
    margin-left: auto;
}

.offer-img-box > img {
    display: block;
    border-radius: 15px;
}

.offer-content-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: calc(var(--space-25) - 5px);
    position: relative;
    width: 60%;
}

.offer-content-bottom {
    background-color: #FAFAFA;
    border-radius: 15px;
    padding: calc(var(--space-25) - 5px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: calc(var(--space-25) - 5px);
    flex-wrap: wrap;
}

.offer-content-bottom-right {
    display: flex;
    gap: calc(var(--space-25) + 7px);
    align-items: center;
}

.offer-content-bottom-right .btn.btn-lg {
    max-width: 187px;
}

.offer-price,
.price-discount {
    font-size: 16px;
    flex-shrink: 0;
    text-transform: uppercase;
}

.offer-price span,
.price-discount span:not(.img-people, .price-for) {
    font-size: calc(var(--font-36) - 2px);
    font-weight: 900;
    margin-right: 7px;
}

.offer-date-wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}

.offer-date-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    max-width: 16px;
}

.offer-date-icon svg {
    display: block;
}

.offer-date-box {
    font-size: 16px;
    font-weight: 900;
}

.offer-content-bottom-left {
    display: flex;
    gap: 15px;
}

.offer-content-top {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-left: calc(var(--space-25) - 7px);
    padding-top: var(--space-25);
    flex-grow: 1;
}

.offer-hotel-name {
    font-size: var(--font-24);
    font-weight: 900;
    transition: .2s all;
}

.offer-region-name {
    font-size: 16px;
    text-transform: uppercase;
}

.offer .favourite-btn {
    position: absolute;
    top: calc(var(--space-25) - 5px);
    right: calc(var(--space-25) - 5px);
}

.offer .favourite-btn .btn {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .15);
    background-color: #fff;
    transition: .2s all;
}

.offer .favourite-btn .btn span:not(.icon) {
    display: none;
}

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

.offer-tags {
    display: grid;
    /*grid-template-columns: 41fr 30fr;*/
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin: auto 0;
}

.offer-tags-item {
    font-size: 16px;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
}

.offer-tags-item .icon {
    flex-shrink: 0;
}

/*.news-content-text {*/
/*    display: -webkit-box;*/
/*    -webkit-line-clamp: 4;*/
/*    -webkit-box-orient: vertical;*/
/*    overflow: hidden;*/
/*}*/

.product-view-heading .page-title {
    text-align: left;
}

.product-view-heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    margin-bottom: calc(var(--space-25) + 10px);
}

.product-view-region-box {
    font-size: calc(var(--font-24) - 4px);
}

.product-view-top-row {
    display: flex;
    gap: calc(2 * var(--space-40));
    align-items: flex-start;
    width: 100%;
}

.product-view-photos {
    width: 61.5%;
}

.product-view-section-title {
    margin-bottom: calc(var(--space-40) + 5px);
    font-size: var(--font-30);
    font-weight: 900;
}

.product-facilities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-facilities-item {
    padding: 9px;
    min-height: 83px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 15px;
    display: flex;
    gap: calc(var(--space-25) + 5px);
    align-items: center;
}

.product-facilities-item .icon {
    width: 65px;
    height: 65px;
    border-radius: 8px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-facilities-item .content .text {
    font-size: 16px;
    line-height: 26px;
}

.product-facilities-item .content .text strong {
    font-weight: 900;
}

.subsection {
    margin-top: var(--space-50);
}

.subnavbar {
    display: table;
    width: 100%;
    background-color: #000;
    border-radius: 10px;
    margin-bottom: calc(var(--space-40) + 5px);
}

.subnavbar-item {
    display: table-cell;
    vertical-align: middle;
}

.subnavbar-content {
    display: flex;
    padding: 4px 8px;
    word-break: break-word;
    align-items: center;
    justify-content: center;
    height: 56px;
    width: 100%;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    transition: .2s all;
    text-align: center;
}

.subnavbar-item.active .subnavbar-content {
    color: #000;
    background-color: var(--color-primary);
}

.subsection-dropdown {
    display: block;
    width: 100%;
    position: relative;
    padding: 14px 62px;
    text-align: center;
    font-weight: 900;
    font-size: 14px;
    color: #fff;
    border: none;
    background-color: #000;
}

.subsection-dropdown-arrow {
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    text-align: center;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.subsection-dropdown.active {
    color: #000;
    background-color: var(--color-primary);
}

.subsection-dropdown {
    display: none;
}

.product-view-gallery {
    margin-top: calc(var(--space-50));
}

.product-view-gallery .gallery-list-item {
    width: 33.33%;
}

.text.fancytable-container a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-view-bottom {
    display: flex;
    gap: calc(2 * var(--space-40));
    align-items: flex-start;
    width: 100%;
}

.sided-side.sided-left {
    width: 62%;
}

.sided-side.sided-right {
    width: calc(38% - (2 * var(--space-40)));
}

.subpage .searchfilters-container {
    padding: 16px calc(var(--space-60) + 5px);
}

.submenu .filters-cell {
    padding: 20px;
}

.filters-element .btn {
    color: var(--color-primary);
}

.offerbox-more-btn {
    background: none;
    padding: 0;
    font-size: 16px;
    font-weight: 900;
    text-decoration: underline;
    transition: .2s all;
    border: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.offerbox-more-btn span:first-letter {
    text-transform: uppercase;
}


@media screen and (min-width: 1140px) {
    .offerbox-more-btn:hover {
        color: var(--color-primary);
        text-decoration: underline;
    }
}

.offer-img-slider {
    width: calc(40% - calc(var(--space-25) - 2px));
    position: relative;
    max-width: 504px;
}

.reservationbox {
    flex-grow: 1;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, .15);
    margin-bottom: calc(2 * var(--space-40) + 10px);
}

.reservationbox-section-top {
    display: flex;
    font-size: var(--font-36);
    font-weight: 900;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    padding: calc(var(--space-25) + 2px) var(--space-25);
}

.reservationbox-section-middle {
    padding: calc(var(--space-25) + 5px) var(--space-40);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reservationbox-section-bottom {
    background-color: #000;
    color: #fff;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    padding: var(--space-40);
    padding-top: calc(var(--space-40) - 5px);
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

.reservationbox-section-bottom .reservationbox-row {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 10px);
}

.reservationbox-section-bottom > .text {
    font-size: 14px;
}

.reservationbox-section-bottom .reservationbox-row .reservationbox-btn {
    display: flex;
    flex-direction: column;
    gap: var(--space-25);
    align-items: center;
}

.reservationbox-section-bottom .reservationbox-row .reservationbox-btn .btn {
    min-height: 60px;
    font-size: calc(var(--font-24) - 4px);
    font-weight: 900;
    color: #000;
    background-color: var(--color-primary);
    text-transform: uppercase;
    transition: .2s all;
    border: 1px solid var(--color-primary);
    max-width: 330px;
    width: 100%;
}

@media screen and (min-width: 1140px) {
    .reservationbox-section-bottom .reservationbox-row .reservationbox-btn .btn:hover {
        background-color: #000;
        color: var(--color-primary);
    }
}

.reservation-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reservation-price-tooltip {
    position: relative;
    width: 40px;
    height: 40px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    padding: 0;
    border: 1px solid transparent;
    transition: .2s all;
    overflow: hidden;
}

@media screen and (min-width: 1140px) {
    .reservation-price-tooltip:hover {
        color: var(--color-primary);
        border-color: var(--color-primary);
        background-color: #000;
    }
}

.tooltip-content {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.reservation-price-wrapper {
    display: flex;
    gap: 12px;
    align-items: flex-end;
}

.reservation-price-label {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.reservation-price-total {
    font-size: 20px;
    font-weight: 900;
}

.reservation-price-total span {
    color: var(--color-primary);
    font-size: calc(var(--font-48) + 2px);
    line-height: 0.9em;
}

.reservation-price-tooltip .icon {
    margin-top: 8px;
    margin-right: 2px;
}

.reservationbox-section-middle .form-inputs-double-row {
    display: flex;
    gap: var(--space-25);
    flex-wrap: wrap;
    margin-bottom: calc(var(--space-25) + 5px);
    justify-content: space-between;
}

.reservationbox-section-middle .form-inputs-double-row .form-inputs-cell .select2 {
    min-width: 92px;
}

.reservationbox-section-middle .form-inputs-cell .select2 .select2-selection__rendered {
    padding-left: 20px;
}

.reservationbox-section-middle .peopleConfig > .form-inputs-cell {
    margin-bottom: 10px;
}

.reservationbox-section-middle .form-inputs-cell .form-inputs-element-wrapper {
    justify-content: space-between;
}

/*.reservationbox-section-middle .peopleConfig > .form-inputs-cell .select2 {*/
/*    min-width: 260px;*/
/*}*/

.reservationbox-moredates-btn {
    padding: 0;
    font-size: 14px;
    font-weight: 900;
    color: #000;
    align-self: flex-end;
}

@media screen and (min-width: 1140px) {
    .reservationbox-moredates-btn:hover {
        color: var(--color-primary);
    }
}

.reservationbox-moredates-btn .caption1,
.reservationbox-moredates-btn.active .caption2 {
    display: none;
}

.reservationbox-moredates-btn.active .caption1 {
    display: inline;
}

.productbox-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.productbox {
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 15px;
    transition: .2s all;
    color: #000;
}

@media screen and (min-width: 1140px) {
    .productbox:hover {
        color: #000;
    }

    .productbox:hover .productbox-title {
        color: var(--color-primary);
    }
}

.productbox-main {
    padding: calc(var(--space-25) - 5px) calc(var(--space-25) + 10px);
}

.productbox-main-top {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

.productbox-title {
    font-size: 20px;
    font-weight: 900;
    transition: .2s all;
}

.productbox-main-top .title-base {
    font-size: 16px;
    line-height: 26px;
    text-transform: uppercase;
}

.productbox-main {
    display: flex;
    flex-direction: column;
    gap: calc(var(--space-25) + 5px);
}

.productbox-main-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-25);
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, .2);
    justify-content: space-between;
    align-items: center;
}

.productbox-main-bottom-right .btn {
    min-width: 188px;
    min-height: 52px;
}

.productbox-img-wrapper {
    margin: -1px;
}

.productbox-img-wrapper img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.slided-side-inner {
    padding-right: calc(2 * var(--space-40));
    border-right: 1px solid rgba(0, 0, 0, .15);
}

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

.productview-slider {
    display: flex;
    overflow: hidden;
}

.productview-slide {
    width: 100%;
    flex-shrink: 0;
}

.productview-thumbs {
    display: flex;
    overflow: hidden;
}

.productview-thumb-wrapper {
    width: 20%;
    flex-shrink: 0;
}

.productview-thumbs-wrapper .slick-list,
.productview-thumbs-wrapper .slick-track {
    display: flex;
    width: 100%;
}

.productview-slider-bottom {
    position: absolute;
    bottom: calc(var(--space-25) + 5px);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 calc(var(--space-25) + 5px);
    gap: 10px;
    flex-wrap: wrap;
}

.productview-slider-arrows {
    display: flex;
    gap: 10px;
}

.productview-slider-arrows button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: .2s all;
    color: #fff;
}

@media screen and (min-width: 1140px) {
    .productview-slider-arrows button:hover {
        border-color: var(--color-primary);
    }

    .productview-slider-arrows button:hover svg path {
        fill: var(--color-primary);
    }
}

.productview-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.productview-thumb-wrapper button {
    background: none;
    border: none;
    padding: 0 4px;
}

.productview-thumb-wrapper button img {
    display: block;
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productview-slider-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offer-small-slider {
    display: flex;
    flex-direction: column;
}

.training-main {
    display: flex;
    margin-bottom: calc(var(--space-60) + 10px);
}

.training-main-left {
    width: 68%;
    padding-right: calc(var(--space-25) + 5px);
}

.training-main-left .regions-wrapper {
    margin: -15px;
}

.training-main-left .region-box-wrapper {
    width: 50%;
    padding: 15px;
}

.training-main-right {
    width: 32%;
    position: relative;
}

.training-localization-image img {
    display: block;
    max-width: 100%;
}

.training-localization-content {
    position: absolute;
    top: calc(var(--space-50) + var(--space-40));
    left: var(--space-40);
    right: var(--space-40);
    color: #fff;
}

.training-localization-content .icon {
    justify-content: flex-start;
    margin-bottom: calc(var(--space-40) + 5px);
}

.training-localization-content .text h2 {
    font-size: calc(var(--font-48) - 3px);
    line-height: 1.2;
}

.section-title-md {
    font-size: var(--font-30);
    font-weight: 900;
    margin-bottom: var(--space-50);
    text-align: center;
}

.training-section-nav ul.nav-tabs:after,
.training-section-nav ul.nav-tabs:before {
    content: unset;
}

.training-section-nav ul.nav-tabs {
    display: flex;
    justify-content: space-between;
    gap: var(--space-50);
    border-bottom: none;
}

.training-section-nav .nav-item {
    flex: 1;
    /*display: block;*/
    /*width: 25%;*/
    /*padding: 0 var(--space-25);*/
    /*float: unset;*/
    margin-bottom: 0;
    /*vertical-align: top;*/
    /*height: 100%;*/
}

.training-section-nav .nav-link {
    display: block;
    width: 100%;
    height: 100%;
    padding: calc(var(--space-25) - 4px);
    box-sizing: border-box;
    text-align: center;
    background: #000000;
    font-size: 18px;
    color: #fff;
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
    border: none;
    font-weight: 900;
    transition: .3s all;
}

.training-section-nav .nav-item.active .nav-link {
    background-color: var(--color-primary);
    color: #000;
}

@media screen and (min-width: 1140px) {
    .training-section-nav .nav-link:hover {
        background-color: var(--color-primary);
        color: #000;
    }
}

.training-tab-content .section-title {
    padding: calc(var(--space-25) + 3px) var(--space-25);
    width: 100%;
    background-color: var(--color-primary);
    font-weight: 900;
    font-size: calc(var(--font-36) + 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.training-section-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
    min-height: 180px;
}

.training-section-sides {
    display: flex;
    gap: calc(2 * var(--space-50));
    width: 100%;
}

.training-tab-content {
    padding-bottom: var(--space-50);
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.training-section-left {
    width: 56%;
}

.training-section-right {
    width: calc(44% - (2 * var(--space-50)));
}

.training-section-right-logo {
    padding-bottom: calc(var(--space-25) - 5px);
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    margin-bottom: var(--space-25);
}

.training-section-right-logo img {
    display: block;
    max-width: 100%;
}

.training-section-right-title {
    font-size: calc(var(--font-24) + 2px);
    font-weight: 900;
    margin: var(--space-25) 0;
}

.training-section-right-teaser {
    border-radius: 15px;
    background-color: var(--color-primary);
    font-size: var(--font-24);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-25);
    margin: var(--space-25) 0;
    text-align: center;
    max-width: 500px;
}

.training-section-right-text {
    line-height: 1.92em;
    font-size: var(--font-24);
}

.news-item-controls .btn.btn-jl {
    padding-left: 17px;
    padding-right: 22px;
}

.btn.btn-lg .icon {
    max-width: 25px;
}

.news-item-controls .btn {
    max-width: 165px;
}

.productbox-main-small {
    padding: calc(var(--space-25) + 5px) calc(var(--space-25));
    padding-left: 20px;
}

.productbox-small-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: calc(var(--space-25) + 5px);
    display: block;
    transition: .2s all;
}

.productbox-small-text {
    font-size: 15px;
    line-height: 2em;
    margin-bottom: calc(var(--space-25) - 5px);
}

.productbox-small-text.text ul > li {
    left: 20px;
    padding-right: 20px;
}

.filters-row .filters-cell:first-child {
    min-width: 220px;
}

.searchfilters-bar {
    position: relative;
    display: none;
    text-align: center;
}

.filters-cell-right .filters-element-wrapper .filters-element .btn .content {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    display: none;
}

.searchfilters-bar > .btn {
    height: 42px;
    background-color: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    padding: 10px 20px;
}

.filters-element .daterangepicker {
    width: auto;
    min-width: 490px;
}


.offerbox-more {
    width: 100%;
    position: relative;
    background-color: #fff;
    display: none;
    padding: 0 1px;
    -webkit-transition: margin-top 0.3s;
    -moz-transition: margin-top 0.3s;
    -ms-transition: margin-top 0.3s;
    -o-transition: margin-top 0.3s;
    transition: margin-top 0.3s;
    z-index: 9;
}

.offerbox.active ~ .offerbox-more {
    margin-top: -1px;
}

.offerbox-more-inside {
    position: relative;
    padding: 10px 15px 20px 15px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 15px;
}

.offerbox-more-content {
    padding: 0 15px;
}

.offerbox-more-bar {
    margin-bottom: 10px;
    padding: 0 50px;
    min-height: 30px;
}

.offerbox-more-close {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    width: 30px;
    height: 30px;
    background-color: #000;
    border: 1px solid transparent;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    line-height: 30px;
    -webkit-transition: background-color 0.3s;
    -moz-transition: background-color 0.3s;
    -ms-transition: background-color 0.3s;
    -o-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.offerbox-more-close .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    -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);
}

.offerbox-more-pages {
    padding-top: 2px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 900;
    font-size: 18px;
}

.offerbox-more-pages > * {
    display: inline-block;
    vertical-align: middle;
}

.offerbox-more-month {
    width: 250px;
    padding: 0 40px;
    text-align: center;
}

.offerbox-more-pages button {
    height: 24px;
    border: none;
    background: none;
    font-size: 0;
    line-height: 24px;
    margin-bottom: 3px;
}

.offerbox-more-pages button.slick-disabled {
    visibility: hidden;
}

.offerbox-more-pages button:after {
    font-size: 16px;
    content: '\f105';
    font-family: FontAwesome;
}

.offerbox-more-pages .offerbox-more-leftbtn:after {
    content: '\f104';
}


@media screen and (min-width: 1140px) {
    .offerbox-more-close:hover {
        background-color: #ffcd1e;
    }

    .offerbox-more-pages button:hover {
        color: #ffcd1e;
    }
}


.datestable {
    table-layout: fixed;
    line-height: normal;
    min-width: 900px;
}

.offerbox-more-content {
    overflow-x: auto;
}

.fancytable.datestable td {
    padding: 10px 20px;
}

.datestable .btn.btn-custom.btn-micro2 > span:not(.icon) {
    font-size: 14px;
}

.datestable .price-new > span {
    font-weight: 700;
    font-size: 16px;
}

.datestable span.price-for,
.price-box .price span.price-for {
    font-size: 12px;
    color: #000;
    vertical-align: top;
}


.form-object-container .form-elements .form-element-container {
    padding-bottom: 0;
}

.form-object-container .tab-content {
    counter-reset: step;
}

.form-object-container .tab-pane:not(:last-child) {
    padding-bottom: 30px;
}

.form-object-container .form-object-section-title {
    padding: 0 0 20px;
}

.form-object-container .form-object-section-title .contact-title {
    display: inline-block;
    padding-bottom: 0;
}

.form-object-container .form-object-section-title .form-object-section-number::after {
    display: inline-block;
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    margin-right: 1em;
    vertical-align: super;
}

.form-object-container .form-object-participant-symbol {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    text-align: center;
    background-color: #ffcd1e;
    color: #1e1e1e;
}

.form-object-container .form-object-participant-symbol-content {
    display: inline-block;
    position: absolute;
    width: 85px;
    height: 85px;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.form-object-container .form-object-participant-symbol-icon {
    height: 42px;
}

.form-object-container .form-object-participant-symbol-text {
    display: inline-block;
}

.form-object-container .form-object-participant-symbol-text small {
    font-size: 12px;
}

.form-object-container .offer-payment-price {
    position: absolute;
    display: inline-block;
    width: 5em;
    text-align: right;
    font-weight: bold;
}

.form-object-container .offer-payment-description {
    padding-left: 6em;
    display: inline-block;
}

.form-object-container .form-control.btn {
    border-color: transparent;
}

.form-object-container .form-element-radio label {
    margin-top: 8px;
}

.form-object-container .form-element-checkbox label,
.form-object-container .form-element-checkboxSingle label {
    display: block;
}

.form-object-container .form-element-checkbox .col-xs-12:not(:last-child) label,
.form-object-container .form-element-checkboxSingle .col-xs-12:not(:last-child) label {
    margin-bottom: 10px;
}

.form-object-container .form-element-label-wrapper:not(:empty) {
    margin-bottom: 0;
}

.form-object-container .form .consent-row {
    margin-bottom: 0;
}

.form-object-container .peopleConfig-elements {
    padding: 0;
}

.form-object-container .filters-element-badge {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-left: none;
    background-color: #fff;
    pointer-events: none;
}

.form-object-container .filters-element-badge .icon {
    width: 90%;
    height: 90%;
    margin: 5%;
}

.form-object-container .filters-element-badge .icon svg {
    fill: #000;
    stroke: #000;
}

.form-object-container .filters-element-badge.icon-calendar {
    background-size: 28px;
}

.form-object-container .peopleConfig-input {
    padding-right: 34px;
}

.modal-body-reservation {
    padding: 15px 30px;
}

.form-object-summary .form-object-summary-box {
    margin-bottom: 20px;
}

.form-object-summary .form-object-summary-box h5 {
    margin-bottom: 10px;
}

.form-object-summary .form-object-summary-box img {
    max-width: 100%;
}

.form-object-summary .form-object-summary-box table.form-object-summary-table {
    width: 100%;
}

.form-object-summary .form-object-summary-box ul {
    list-style-type: initial;
    padding-left: 1.5em;
}

.form-object-summary .form-object-summary-box .form-object-summary-participant {
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}

.form-object-summary .form-object-summary-box .form-object-summary-participant h6 {
    font-weight: bold;
    margin-bottom: 10px;
}

.booking-summary {
    position: relative;
}

@media screen and (min-width: 1441px) {
    .booking-summary-fixed {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        padding: 0;
    }

    .booking-summary-fixed .form-object-summary-box {
        margin-left: 15px;
    }

    .booking-summary-fixed .form-object-summary-box.affix-top {
        position: absolute;
        top: 0;
    }

    .booking-summary-fixed .form-object-summary-box.affix {
        position: fixed;
        top: 100px;
    }

    .booking-summary-fixed .form-object-summary-box.affix-bottom {
        position: absolute;
        bottom: 0;
    }
}

@media screen and (max-width: 1440px) {
    .booking-summary-fixed .form-object-summary-box {
        width: auto !important;
    }
}

.booking-summary .form-object-price-value {
    white-space: nowrap;
}

.booking-summary .form-object-summary-box {
    margin-bottom: 30px;
}

.booking-summary .form-object-summary-box h2 {
    margin: 10px 0 20px 0;
}

.booking-summary .form-object-summary-box img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

.booking-summary .form-object-summary-box .alert {
    margin: 20px 0;
}

.booking-summary .form-object-summary-box table.form-object-summary-table {
    width: 100%;
}

.booking-summary .form-object-summary-box ul {
    list-style-type: initial;
    padding-left: 1.5em;
}

.booking-summary .form-object-summary-box li {
    margin: 8px 0;
}

.booking-summary .form-object-summary-box .form-object-summary-participant {
    padding: 15px;
    border: 1px solid #ddd;
}

.booking-summary .form-object-summary-box .form-object-summary-participant h3 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.form-object-summary-participant-row {
    font-size: 0;
    margin: -8px;
}

.form-object-summary-participant-row .form-object-summary-participant-cell {
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding: 8px;
    font-size: 16px;
}

.form-object-summary-participant-cell .form-object-summary-participant {
    margin: 0;
}

.form-object-summary-payment {
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-summary .form-object-summary-participant .form-object-summary-table td:first-child {
    padding-left: 0;
}

.booking-summary .form-object-summary-participant .form-object-summary-table td:last-child {
    padding-right: 0;
}

.booking-summary .form-object-summary-place {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-summary .form-object-summary-box.form-object-summary-place h2 {
    margin: 10px 0;
}

.booking-summary .form-object-summary-table td,
.booking-summary .form-object-summary-place > * {
    padding: 6px 15px;
}

.booking-summary .form-object-summary-place > *:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.booking-summary .form-object-summary-place > img {
    padding: 0;
    border: none;
}

.booking-summary .form-object-summary-place .form-object-summary-table {
    margin: 15px 0;
    border: none;
}

.modal-content,
.alert {
    border-radius: 0;
}

.share.btn {
    position: absolute;
    top: 24px;
    right: 0;
}

.small-font.form-control.form-control-text {
    font-size: 14px;
}

.red-border {
    border: 1px solid #f00 !important;
    box-shadow: none !important;
}


.green-border {
    border: 1px solid #080 !important;
    box-shadow: none !important;
}

.copy-to-clipboard {
    display: table-cell !important;
}

i.copy-to-clipboard.fa.fa-files-o {
    float: left;
    padding-right: 10px;
    cursor: pointer;
}

i.copy-to-clipboard.fa.fa-files-o:hover {
    color: #8dc73f;
    font-weight: bold;
}

.copy-notification {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 30px;
    position: fixed;
    top: 50%;
    font-size: 22px;
    left: 50%;
    width: 150px;
    margin-top: -30px;
    margin-left: -85px;
    display: none;
    text-align: center;
}

.form-object-price-section {
    padding: 30px 0;
}

.form-object-price-box {
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 5px 15px;
}

.form-object-price-container {
    display: table;
    width: 100%;
}

.form-object-price {
    display: table-row;
}

.form-object-price-name {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 5px 10px 0;
    font-weight: bold;
}

.form-object-price-right {
    display: table-cell;
    vertical-align: middle;
    padding: 8px 0 8px 5px;
    text-align: right;
}

.form-object-price-value {
    display: block;
    font-size: 22px;
    font-weight: 300;
}

.form-object-price-amount {
    font-size: 34px;
    font-weight: 900;
    color: #ffcd1e;
}

.form-object-price-currency {
    margin-left: 0.35em;
}

.form-object-price-date {
    display: block;
    font-size: 85%;
}

.region-map {
    margin-top: 50px;
}

.region-map .gm-style .gm-style-iw-c {
    background: transparent;
    box-shadow: none;
}

.region-map .gm-style-iw-d {
    overflow: hidden !important;
}

.region-map button.gm-ui-hover-effect {
    top: 12px !important;
    right: 0px !important;
}

.marker-wrapper {
    width: 450px;
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-size: 0;
    border: 1px solid #cecece;
}

.marker-wrapper .image-wrapper {
    width: 33%;
    display: inline-block;
    vertical-align: middle;
}

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

.text-wrapper {
    display: inline-block;
    vertical-align: middle;
    width: 67%;
    text-align: center;
    padding: 10px;
}

.text-wrapper .title {
    font-size: 18px;
    color: #000;
    font-weight: 700;

}

.text-wrapper .price {
    margin-top: 10px;
    font-size: 14px;
    color: #000;

}

.text-wrapper .see-more {
    margin-top: 10px;
    font-size: 14px;
    color: #000;
    font-weight: 900;
}

.marker-wrapper:hover .text-wrapper .see-more {
    color: #ffcc00;
}

.p-padding p {
    padding: 20px 0 0;
}

.p-padding p:first-of-type {
    padding: 0;
}

.under-slider-info-bar .text {
    color: #fff;
    text-align: left;
    font-size: 32px;
    line-height: 44px;
    padding-right: 20px;
}

.under-slider-info-bar .container {
    position: relative;
}

.under-slider-info-bar:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

.under-slider-info-bar {
    font-weight: bold;
    position: relative;
    padding: 36px 0;
    background: no-repeat center;
    background-size: cover;
    /*background-attachment: fixed;*/
}

.under-slider-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fancytable-container table, .fancytable {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.fancytable-container table, .fancytable, .fancytable-container table .text, .fancytable .text {
    letter-spacing: 0.05em;
    font-size: 14px;
    line-height: 24px;
}

.fancytable-container thead, .fancytable thead, .subsection-subcontent .fancytable-container tbody tr:first-child {
    background-color: var(--color-primary);
    font-weight: 900;
    border-left: 1px solid var(--color-primary);
    border-right: 1px solid var(--color-primary);
}

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

.fancytable-container th, .fancytable th {
    text-transform: uppercase;
    font-weight: 900;
}

.fancytable-container td, .fancytable td, .fancytable-container th, .fancytable th {
    padding: 15px 20px;
}

.fancytable-container th:not(:last-child), .fancytable th:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.fancytable-container tbody td, .fancytable tbody td {
    border: 1px solid #e5e5e5;
}

.fancytable.datestable td {
    padding: 10px 20px;
}

.fancytable-container tbody:not(:first-child) tr:first-child td, .fancytable tbody:not(:first-child) tr:first-child td {
    border-top: none;
}

.fancytable-container tbody tr:nth-child(even), .fancytable tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

@media screen and (min-width: 1140px) {
    .fancytable-container tbody tr:hover, .fancytable tbody tr:hover {
        background-color: #ebebeb;
    }
}

.datestable tbody tr td a.btn-micro2 {
    text-transform: uppercase;
    padding: 0 15px;
    height: 30px;
    line-height: 28px;
    border-color: #1e1e1e;
    background-color: transparent;
    color: #1e1e1e;
    /*min-width: 120px;*/
    transition: .3s all;
}

@media screen and (min-width: 1140px) {
    .datestable tbody tr td a.btn-micro2:hover {
        border-color: transparent;
        background-color: #1e1e1e;
        color: #fff;
    }
}

.img-people {
    max-width: 50px;
}

.img-people img {
    max-width: 28px;
    display: inline-block;
    vertical-align: middle;
}

.productview-map-wrapper {
    position: absolute;
    inset: 0;
    display: none;
    pointer-events: none;
    z-index: 100;
}

.productview-map-wrapper.active {
    display: block;
    pointer-events: initial;
}

.productview-map-wrapper iframe {
    width: 100%;
    height: 100%;
}

.productview-map-wrapper .map-close {
    position: absolute;
    top: calc(var(--space-25) + 5px);
    right: calc(var(--space-25) + 5px);
    color: #000;
    background-color: var(--color-primary);
    border: 1px solid var(--color-primary);
    transition: .3s all;
}

@media screen and (min-width: 1140px) {
    .productview-map-wrapper .map-close:hover {
        background-color: #fff;
    }
}

.productview-slider-bottom .map-open {
    padding: 6px 20px;
    min-width: 200px;
    gap: 15px;
    justify-content: flex-start;
}

.productview-slider-bottom .btn-show-images {
    background-color: #fff;
    border-color: #fff;
    padding: 6px 20px;
    gap: 15px;
    justify-content: flex-start;
}

.reservationbox-moredates-toggle .form-inputs-element-wrapper .form-inputs-element {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reservationbox-section .alert {
    margin-bottom: 0;
}

.productbox-top {
    position: relative;
}

.productbox-top .itemlabel {
    position: absolute;
    width: 46%;
    top: -2px;
    right: -2px;
}

.productbox-top .itemlabel img {
    display: block;
    max-width: 100%;
    margin-left: auto;
}

.productbox-main-top-slider {
    gap: 0;
    flex-grow: 1;
}

.productbox-main-slider {
    flex-grow: 1;
}

.productbox-main-top-slider .productbox-title {
    margin-bottom: 8px;
}

.productbox-main-top-slider .title-base {
    margin-bottom: calc(var(--space-25) - 5px);
}

.productbox-main-top-slider .text-base {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.text-base-element {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    text-transform: uppercase;
}

.text-base-element .icon {
    width: 16px;
}

.bottom-text-section {
    margin: calc(var(--space-60) + 4px) 0;
}

.bottom-text-section .text h2 {
    font-size: var(--font-24);
    margin-bottom: 15px;
}

.bottom-text-section .text {
    font-size: 16px;
}

.footer-quicksearch {
    margin-bottom: calc(var(--space-60) + 15px);
}

.quicksearch {
    display: flex;
    gap: var(--space-50);
    background-color: var(--color-primary);
    border-radius: 15px;
    box-shadow: 43px 57px 20px 0px rgba(0, 0, 0, 0.00), 27px 36px 18px 0px rgba(0, 0, 0, 0.01), 15px 20px 15px 0px rgba(0, 0, 0, 0.05), 7px 9px 11px 0px rgba(0, 0, 0, 0.09), 2px 2px 6px 0px rgba(0, 0, 0, 0.10);
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--space-25) + 8px) calc(var(--space-25) + 5px) calc(var(--space-40) - 1px) calc(var(--space-40));
}

.quicksearch-left {
    display: flex;
    align-items: center;
    gap: calc(var(--space-40) - 2px);
}

.quicksearch-left .title-base {
    font-size: calc(var(--font-36) + 4px);
    font-weight: 900;
}

.quicksearch-left .icon {
    flex-shrink: 0;
    max-width: 61px;
}

.quicksearch-left .icon svg {
    display: block;
    max-width: 100%;
}

.quicksearch-right {
    flex-grow: 1;
    max-width: 600px;
}

.quicksearch-right form.form {
    display: flex;
    gap: calc(var(--space-25) + 5px);
}

.quicksearch-right form.form .filters-element-wrapper {
    flex-grow: 1;
}

.about-top-content-inner-main {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 800px;
}

.about-top-main {
    margin-bottom: -110px;
}

.about-main-content {
    max-width: 626px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background-color: #000;
    border-radius: 20px;
    color: #fff;
    padding: calc(var(--space-40) + 4px) calc(var(--space-50) + 23px) calc(var(--space-40) + 4px) calc(var(--space-50) + 2px);
}

.about-main-content-title {
    font-size: var(--font-30);
    font-weight: 900;
    margin-bottom: 18px;
}

.about-main-content-desc {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: calc(var(--space-40));
}

.about-top-content-inner-main .about-top-text:nth-child(1) {
    left: 26.5%;
}

.about-top-content-inner-main .about-top-text:nth-child(2) {
    left: 40%;
}

.about-top-content-inner-main .about-top-text:nth-child(3) {
    left: 0;
    top: 62%;
}

.about-top-content-inner-main .about-top-text:nth-child(4) {
    left: 6.5%;
    top: 78%;
}

.about-top-content-inner-main .about-top-text:nth-child(5) {
    left: 27%;
    top: unset;
    bottom: -10%;
    max-width: 370px;
}

.about-top-content-inner-main .about-top-text:nth-child(6) {
    left: unset;
    right: 0;
    top: 78%;
    max-width: 300px;
}

.section-regions-inner {
    max-width: 1134px;
    margin-left: auto;
}

.offer-small-slide .offer-img-slider {
    width: 100%;
}

.main-hotels-list {
    display: flex;
    flex-wrap: wrap;
    margin: calc(-0.5 * var(--space-25) + 2px);
}

.main-hotels-list .productbox-list-item {
    width: 50%;
    padding: calc(0.5 * var(--space-25) + 2px);
}

.main-hotels-list .productbox {
    flex-direction: row-reverse;
    padding: calc(var(--space-25) - 5px);
    padding-left: calc(var(--space-25) + 5px);
}

.main-hotels-list .productbox .productbox-top {
    width: 49%;
}

.main-hotels-list .productbox .productbox-main  {
    width: 51%;
    padding: calc(var(--space-25) - 8px) 0;
    padding-right: calc(var(--space-25) + 10px);
    flex-grow: initial;
    gap: calc(var(--space-25) + 1px);
}

.main-hotels-list .productbox .productbox-img-wrapper{
    height: 100%;
    margin: 0;
}

.main-hotels-list .productbox .productbox-img-wrapper img {
    border-radius: 15px;
}

.main-hotels-list .productbox-main-bottom {
    gap: calc(var(--space-25) + 3px);
    justify-content: flex-start;
    border-top: none;
    padding: 0;
}

.main-hotels-list .productbox-main-bottom .productbox-main-bottom-right .btn {
    min-width: 164px;
}

.main-hotels-list .productbox-title {
    font-size: calc(var(--font-24) + 2px);
    margin-bottom: 10px;
}

.main-hotels-list .title-base {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 18px;
}

.main-hotels-list .productbox-main-top-slider .text-base {
    margin-top: unset;
    gap: 10px;
}

.main-hotels-list .productbox-main-top-slider .text-base-element {
    font-size: 15px;
    min-height: 26px;
    line-height: 22px;
}

.region-hotels-slider-main {
    margin: calc(var(--space-60) + 10px) 0;
}

.region-hotels-slider-main .productbox-list-item {
    padding: calc(0.5 * (var(--space-25) + 5px));
}

.region-hotels-slider-main .region-hotels-slider {
    margin: calc(-0.5 * (var(--space-25) + 5px));
}

.region-hotels-slider-main .productbox-main-bottom-right .btn {
    min-width: 164px;
}

.gallery-see-more .btn span.active,
.gallery-see-more .btn.active span:not(.active) {
    display: none;
}

.gallery-see-more .btn.active span.active {
    display: block;
}

.gallery-list-item {
    transition: .7s all;
    max-height: 500px;
    opacity: 1;
    pointer-events: initial;
}

.gallery-list-item.hidden {
    padding: 0;
    opacity: 0;
    max-height: 0;
    display: inline-block !important;
    pointer-events: none;
}
