@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}
/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }
    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none!important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
    }
    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}
.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}
.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.rwdMenu + .rwdMenu > ul {
    border-top: none;
}
.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}
.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}
.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}
.rwdMenu li.active > *:first-child {
    font-weight: 700;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}
.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}
.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}
.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}
.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}
.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}
.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}
.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-list {
    margin: 15px;
    text-align: center;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 15px 15px 15px 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, .15);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 5px;
}
.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}
.rwdButton > * {
    transition: all 0.5s;
}
.rwdButton.rwdPanel-action-toggle.active {
    color: var(--color-primary);
    background-color: var(--color-secondary);
}
.rwdButton .animIcon--close span {
    background-color: var(--color-primary);
}
.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}
.rwdButton.active > .animIcon--close {
    opacity: 1;
}
.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1660px) {
    .mainsearch {
        max-width: 300px;
    }
}

@media screen and (max-width: 1600px) {
    .about-top-content-inner-main .about-top-text:nth-child(2) {
        left: 35%;
    }

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

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


    .news-item-info {
        column-gap: var(--space-25);
    }

    #main-menu li {
        padding: 5px 15px;
    }

    .filters-row {
        margin: -10px;
    }

    .filters-cell {
        padding: 10px;
    }

    .subpage .searchfilters-container {
        padding: 16px var(--space-40);
    }
}

@media screen and (max-width: 1440px) {
    .main-hotels-list .productbox {
        flex-direction: column;
        padding: calc(var(--space-25) - 5px);
        gap: calc(var(--space-40));
    }

    .main-hotels-list .productbox .productbox-top {
        width: 100%;
        /*max-width: 380px;*/
        margin: 0 auto;
    }

    .main-hotels-list .productbox .productbox-main {
        width: 100%;
        padding: 0;
    }

    .main-hotels-list .productbox .productbox-main {
        flex-grow: 1;
    }

    .about-top-content-inner-main .about-top-text:nth-child(2) {
        left: unset;
        right: 0;
        top: 65%;
    }

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

    .news-item-info {
        column-gap: 0;
    }

    #main-menu li {
        padding: 5px 10px;
    }

    #main-menu li a {
        font-size: 15px;
    }

    .header-main-content-top .offer-stash-link {
        margin-left: 0;
    }

    .header-main-content-top .offer-stash-link .contactlink-left {
        display: none;
    }

    .about-top-content-inner {
        margin: 0 calc(1 * var(--space-60)) 0 calc(1 * var(--space-60));
    }

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

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

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

    .about-top-text.active .about-top-text-icon svg {
        transform: rotate(0deg);
    }

    .about-top-text.active .about-top-text-content {
        opacity: 1;
        pointer-events: initial;
    }

}

@media screen and (max-width: 1280px) {
    .about-top-content-inner-main .about-top-text:nth-child(1) {
        left: 0;
        top: 45%;
    }

    .about-top-content-inner-main .about-top-text:nth-child(5) {
        bottom: 0%;
    }

    .offer-small .offer-img-slider {
        display: none;
    }

    .filters-row {
        margin: -5px;
    }

    .filters-cell {
        padding: 5px;
    }

    /*.filters-cell-right {*/
    /*    width: 100%;*/
    /*}*/

    /*.filters-cell-right .filters-element-wrapper {*/
    /*    width: 25%;*/
    /*    margin: 0 auto;*/
    /*}*/

    /*.filters-cell-right .filters-element .btn {*/
    /*    width: 100%;*/
    /*}*/

    /*.filters-cell-right .filters-element .btn .icon:before {*/
    /*    content: "Szukaj";*/
    /*    color: #fff;*/
    /*    margin-right: var(--space-25);*/
    /*}*/

    .training-section-nav ul.nav-tabs {
        gap: var(--space-25);
    }

    .news-item-info-element .element-icon {
        width: 50px;
        height: 50px;
    }

    .news-item-info-element .element-icon svg {
        max-width: 30px;
    }

    .news-item-info-element {
        gap: 14px;
    }

    .offer-tags {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-main-info-phones .header-main-info-phone .caption {
        display: none;
    }

    .header-main-info-phones .header-main-info-phone .icon {
        margin-right: 0;
    }

    .about-top-content-inner {
        margin: 0;
    }

    #main-menu li {
        padding: 5px;
    }

    #main-menu li a {
        font-size: 14px;
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }
    .footer-content {
        display: block !important;
    }
}

@media screen and (max-width: 1139px) {
    .region-hotels-slider-main .section-heading-right {
        align-self: flex-end;
    }

    .training-about-content {
        padding: calc(var(--space-25) + 5px);
        background-color: rgba(255, 255, 255, 0.65);
        border-radius: 15px;
    }

    .training-about-content:before {
        content: none;
    }

    .about-top-content-inner-main {
        flex-direction: column;
        gap: var(--space-50);
    }

    .section-offers .section-heading {
        flex-direction: column;
    }

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

    .offer-content-box {
        width: 100%;
        flex-grow: 1;
    }

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

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

    .filters-row .filters-cell {
        width: 33.33% !important;
    }

    .filters-cell-right {
        margin: 0 auto;
    }

    .filters-cell-right .filters-element-wrapper {
        width: 100%;
    }

    .filters-cell-right .filters-element-wrapper .filters-element .btn {
        width: 100%;
    }

    .filters-cell-right .filters-element-wrapper .filters-element .btn .content {
        display: inline;
    }

    .about-top-content-inner {
        margin-bottom: 30px;
        aspect-ratio: unset;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: var(--space-50);
    }

    .about-top-text-container {
        padding: 20px;
        border-radius: 15px;
        background-color: rgba(0, 0, 0, .5);
        color: #fff;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .about-top-text-container .about-top-text {
        position: unset !important;
        width: calc(50% - 8px);
        max-width: unset !important;
    }

    .product-view-bottom {
        gap: var(--space-50);
    }

    .header-main-content-top .contactlink-right {
        width: 40px;
        height: 40px;
    }

    .product-facilities-item .icon {
        width: 60px;
        height: 60px;
    }

    .reservationbox {
        margin-bottom: calc(var(--space-40) + 5px);;
    }

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

    .product-view-bottom {
        flex-direction: column;
    }

    .slided-side-inner {
        padding-right: 0;
        border-right: none;
    }

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

    .sided-side.sided-right {
        width: 100%;
    }

    .productview-slider-box {
        max-width: 840px;
        margin: 0 auto;
        margin-bottom: var(--space-50);
    }

    .files-item-download {
        padding-left: var(--space-50);
        padding-right: var(--space-40);
    }

    .training-section-nav .nav-link {
        font-size: 16px;
    }

    .training-section-nav ul.nav-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }

    .training-section-nav .nav-link {
        border-top-right-radius: 0;
        border-top-left-radius: 0;
    }

    /*.about-top-content-inner {*/
    /*    display: flex;*/
    /*    flex-direction: column;*/
    /*    gap: calc(3 * var(--space-60));*/
    /*    justify-content: space-between;*/
    /*}*/

    /*.about-top-text-container {*/
    /*    padding: calc(var(--space-40) + 1px) calc(var(--space-50) + 2px);*/
    /*    background-color: #000;*/
    /*    border-radius: 20px;*/
    /*    color: #fff;*/
    /*    display: grid;*/
    /*    grid-template-columns: repeat(3, 1fr);*/
    /*    gap: calc(var(--space-40));*/
    /*}*/

    /*.about-top-text-container > * {*/
    /*    position: unset !important;*/
    /*}*/


    .rwdMenu.rwdMenuPhones {
        display: flex;
        justify-content: center;
        padding: 15px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .rwdMenuPhones-inner {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .rwdMenuPhones .header-main-info-phone + .header-main-info-phone {
        padding-left: 0;
    }

    .rwdPanel .social-list {
        justify-content: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        margin: 0;
        padding: 15px;
    }

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

    .offer-content-top {
        padding-top: unset;
    }

    .offer-content-bottom-left {
        flex-wrap: wrap;
    }

    .offer-content-bottom-right {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .offer-small .offer-content-bottom-right {
        align-self: flex-end;
    }

    .offer-content-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-img-box > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .offer-content-top {
        gap: 10px;
    }

    .offer:not(.offer-small) {
        flex-direction: column;
        padding: 20px;
        height: 100%;
    }



    .offer-tags {
        grid-template-columns: 1fr;
    }

    .offer .favourite-btn {
        z-index: 2000;
    }

    .header-main-content-top .mainsearch-rwd-button svg path {
        fill: #000;
    }

    .header-main-inner {
        min-height: 71px;
    }

    .header-main-content-top .rwdButton,
    .header-main-content-top .main-menu-button {
        margin: 0;
    }

    .header-main-content-top .social-icon,
    .favourite-box .icon,
    .header-main-info-phone .icon {
        width: 40px;
        height: 40px;
    }

    .header-main-content-bottom {
        height: 0;
        margin-top: 0;
        padding: 0;
        border-top: none;
    }

    .header-main-content-bottom .mainsearch-rwd-button {
        display: none;
    }

    #content {
        padding-top: 71px;
    }

    .header-main-info-title,
    .social-title {
        display: none;
    }

    header {
        border-bottom: 1px solid rgba(0, 0, 0, .15);
        padding: 0;
    }

    .mainsearch {
        max-width: 100%;
        border: none;
        border-radius: 0;
    }

    .region-box-wrapper {
        width: 50%;
    }

    .gallery-list-item {
        width: 25%;
    }

    .footer-main {
        position: relative;
        z-index: 0;
    }

    .footer-main:after {
        position: absolute;
        inset: 0;
        z-index: -1;
        content: "";
        background-color: #000;
        opacity: .5;
    }

    .footer-cols {
        flex-wrap: wrap;
    }

    .footer-col-1 {
        width: 100%;
        margin-bottom: var(--space-40);
    }

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

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

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

    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .langs-menu {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .article-image {
        margin-right: 25px;
        margin-bottom: 15px;
    }

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

    .mainsearch input.form-control {
        border-radius: 0;
    }

    .mainsearch.rwdPanel .mainsearch-search {
        background-color: var(--color-primary);
    }
    .mainsearch.rwdPanel .dropdown-menu {
        position: static!important;
        width: 100%;
        box-shadow: none;
    }
    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }
    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }
    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }
    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }
    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }
}

@media screen and (max-width: 900px) {
    .section-filters-image {
        display: none;
    }

    .section-filters .searchfilters-container {
        position: unset;
        margin-top: var(--space-60);
    }

    .searchfilters-bar {
        display: block;
    }

    .filters-row .filters-cell {
        display: inline-block;
        width: 33% !important;
    }

    .filters-row .filters-cell-right {
        display: block;
    }

    .searchfilters .filters-row {
        padding-top: 15px;
    }

    .training-main {
        flex-direction: column;
        gap: var(--space-60);
    }

    .training-main-left {
        padding-right: 0;
        width: 100%;
    }

    .training-main-right {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .training-section-sides {
        flex-direction: column;
    }

    .training-section-left,
    .training-section-right {
        width: 100%;
    }

    .files-list {
        grid-template-columns: 1fr;
    }

    .about-contact-inner {
        grid-template-columns: 1fr;
    }

    .about-contact-right {
        padding-left: unset;
        padding-top: unset;
    }

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

    .about-contact-right {
        gap: var(--space-40);
    }

    .about-contact-left {
        padding-right: unset;
        flex-direction: column;
    }

    .about-contact-left-title {
        max-width: unset;
    }

    .news-view-content-inner {
        flex-direction: column;
        gap: var(--space-50);
    }

    .news-view-content-left,
    .news-view-content-right {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        border: none;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .quicksearch {
        flex-direction: column;
        align-items: flex-start;
    }

    .headingbar {
        flex-direction: column;
    }

    .headingbar-right .form-inputs-element-wrapper {
        gap: 13px;
    }

    .filters-row .filters-cell {
        width: 49% !important;
    }

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

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

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

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

    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }

    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }

    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }

    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }
    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }
}

@media screen and (max-width: 639px) {
    .section-regions-inner .section-heading .section-heading-right {
        align-self: flex-end;
    }

    .section-regions-inner .section-heading {
        flex-direction: column;
        gap: var(--space-60);
    }

    .offer-list {
        flex-direction: column;
    }

    .product-facilities {
        grid-template-columns: 1fr;
    }

    .subsection-dropdown {
        display: block;
    }

    .subnavbar {
        display: none;
    }

    .subsection-content .subsection-subcontent-wrapper {
        opacity: 1;
        display: block;
        margin-bottom: 5px;
    }

    .subsection-subcontent {
        display: none;
        margin-top: calc(var(--space-40) + 5px);
    }

    .training-tab-content .section-title {
        font-size: calc(var(--font-36) - 2px);
    }

    .section-mainInfo-inner {
        flex-direction: column-reverse;
    }

    .about-info-inner {
        grid-template-columns: 1fr;
    }

    .offer:not(.offer-small) {
        width: 100%;
    }

    .header-main-info {
        display: none;
    }

    .region-box-wrapper {
        width: 100%;
    }

    .regions-slider-wrapper .section-heading {
        flex-direction: column;
        gap: 30px;
    }

    .regions-slider-wrapper .section-heading .section-heading-right {
        align-self: flex-end;
    }

    .news-view-top-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }

    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }

    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }

    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }

    .breadcrumb > li + li:before {
        padding: 0 6px;
    }

    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }

    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }
}

@media screen and (max-width: 560px) {
    .main-hotels-list .productbox-list-item {
        width: 100%;
    }

    .offerbox-more-month {
        width: 160px;
        padding: 0;
    }

    .offerbox-more-bar {
        padding: 0;
    }

    .offerbox-more-close {
        display: none;
    }

    .filters-row .filters-cell:first-child {
        width: 100% !important;
    }

    .filters-row .filters-cell.peopleConfig {
        width: 100% !important;
    }

    .about-top-text-container {
        flex-direction: column;
    }

    .about-top-text-container .about-top-text {
        width: 100%;
    }

    .product-facilities-item .icon {
        width: 55px;
        height: 55px;
    }

    .sidedsection-hotels .productbox-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: calc(var(--space-25) + 5px)
    }

    .offer-small .offer-price span {
        font-size: var(--font-36);
    }

    .offer-small-slider .section-heading {
        flex-direction: column;
        gap: calc(2 * var(--space-25));
    }

    .offer-small-slider .section-heading .section-heading-right {
        align-self: flex-end;
    }

    .training-main-left .region-box-wrapper {
        width: 100%;
    }

    .training-section-nav ul.nav-tabs {
        grid-template-columns: 1fr;
        grid-auto-flow: row;
    }

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

    .header-main-inner {
        justify-content: space-between;
    }

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

    .header-main-content-top .social-list {
        display: none;
    }

    .footer-col-3,
    .footer-col-2 {
        width: 100%;
    }

    .footer-col-2 {
        margin-bottom: var(--space-40);
    }

    .footer-col-content .footer-col {
        margin-top: calc(-27px - 15px);
    }

    .footer-col-3 > .footer-col-content {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }

    .text {
        word-wrap: break-word;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .quicksearch-right form.form {
        flex-direction: column;
    }

    .reservationbox-section > .form-inputs > .form-inputs-cell .form-inputs-element {
        width: 100%;
    }

    .reservationbox-section > .form-inputs > .form-inputs-cell .form-inputs-label {
        width: 100%;
    }

    .form-inputs-element-radio-container {
        flex-direction: column;
        align-items: stretch;
    }

    .form-inputs-element-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .region-box-arrows .btn-arrow,
    .offer-box-arrows .btn-arrow {
        width: 40px;
        height: 40px;
    }

    .offer-price-box {
        align-items: center;
    }

    .offer-price-caption {
        margin-bottom: 0;
    }

    .gallery-list-item {
        width: 50%;
    }

    .modal-footer > .btn {
        width: 100%;
    }
    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

    .footer-col-3 > .footer-col-content {
        display: block;
    }

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

    .footer-col-1 .social-list {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 420px) {
    .filters-row .filters-cell {
        width: 100% !important;
    }

    .offer-small-slider .section-heading .section-title {
        display: flex;
        gap: 5px;
        flex-direction: column;
        align-items: flex-start;
    }

    .files-item {
        flex-direction: column;
    }

    .files-item-download {
        margin-left: 0;
        width: 100%;
        padding-left: unset;
        padding-right: unset;
        border-left: none;
        position: relative;
    }

    .files-item-download:before {
        width: 100%;
        height: 1px;
        position: absolute;
        content: "";
        background-color: rgba(0, 0, 0, .15);
        top: 0;
    }

    .files-item-name {
        text-align: center;
    }

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;

        --font-48: 40px;
        --font-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-48: 36px;

        --container-padding: 30px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-25: 20px;

        --font-48: 34px;
        --font-36: 28px;
        --font-30: 24px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;

        --font-48: 32px;

        --container-padding: 20px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 900px) {
    :root {
        --container-padding: 15px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-48: 30px;
        --font-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-36: 20px;
        --font-30: 20px;
        --font-24: 16px;
    }
}