.g__building-button {
    position: fixed!important;
    bottom: 20px;
    left: 20px;
    z-index: 10;
    cursor: pointer;
}

.g__building-button i {
    padding: 25px;
    color: #fff;
    background: #35c2ed;
    font-size: 25px;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(63, 93, 148, 0.4);
    animation: pulse 1s infinite;
    -webkit-animation: pulse 1s infinite;
    -moz-animation: pulse 1s infinite;
}

.g__building-button i {
    display: block;
}

.g__building-button i span {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="black" d="M616 192H480V24c0-13.26-10.74-24-24-24H312c-13.26 0-24 10.74-24 24v72h-64V16c0-8.84-7.16-16-16-16h-16c-8.84 0-16 7.16-16 16v80h-64V16c0-8.84-7.16-16-16-16H80c-8.84 0-16 7.16-16 16v80H24c-13.26 0-24 10.74-24 24v360c0 17.67 14.33 32 32 32h576c17.67 0 32-14.33 32-32V216c0-13.26-10.75-24-24-24zM128 404c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12H76c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm128 192c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12V76c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm160 288c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40zm0-96c0 6.63-5.37 12-12 12h-40c-6.63 0-12-5.37-12-12v-40c0-6.63 5.37-12 12-12h40c6.63 0 12 5.37 12 12v40z"/></svg>');
    background-repeat: no-repeat;
    background-position: 0 2px;
    display: block;
    width: 25px;
    height: 25px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(63, 93, 148, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(63, 93, 148, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(63, 93, 148, 0);
    }
}

.pulse-container {
    width: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.pulse-bubble {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #2d3332;
}

.pulse-bubble-1 {
    animation: pulse2 .4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
    animation: pulse2 .4s ease .2s infinite alternate;
}
.pulse-bubble-3 {
    animation: pulse2 .4s ease .4s infinite alternate;
}

.spinner-box h3, .no-floor-plan-box h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 25px;
}

@keyframes pulse2 {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: .25;
        transform: scale(.75);
    }
}

#layout.main-layout .spinner-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#layout.main-layout {
    width: 100%;
    background: transparent;
}

.main-layout .leaflet-control-attribution,
.floor-miniature-map-wrapper .leaflet-control-attribution {
    display: none;
}

.iframe-layout .dotted-bg {
    background: url("/static/images/bg-pattern-layout.e22a5233eb9d.png");
    background-size: 80px;
}

.main-layout path.leaflet-interactive {
    filter: blur(2px);
}

.main-layout .floor-tooltip {
    text-align: center;
}

.main-layout .floor-tooltip .header,
.floor-miniature-map-wrapper .floor-tooltip .header {
    font-size: 14px;
    background: #ddd;
    padding: 5px 10px;
    font-weight: bold;
}

.main-layout .floor-tooltip .free-header,
.main-layout .floor-tooltip .description,
.floor-miniature-map-wrapper .floor-tooltip .free-header,
.floor-miniature-map-wrapper .floor-tooltip .description {
    font-size: 12px;
    margin-top: 5px;
    padding: 0 5px;
}

.main-layout .floor-tooltip .free,
.floor-miniature-map-wrapper .floor-tooltip .free {
    font-size: 24px;
    font-weight: bold;
}

.main-layout .leaflet-tooltip,
.floor-miniature-map-wrapper .leaflet-tooltip {
    padding: 0;
    border: none;
}

.main-layout .floor-tooltip.apt-tooltip,
.floor-miniature-map-wrapper .floor-tooltip.apt-tooltip {
    text-align: left;
    padding-bottom: 5px;
}

.main-layout .floor-tooltip .status,
.main-layout .floor-tooltip .header,
.floor-miniature-map-wrapper .floor-tooltip .status,
.floor-miniature-map-wrapper .floor-tooltip .header {
    text-align: center;
}

.main-layout .floor-tooltip .status,
.floor-miniature-map-wrapper .floor-tooltip .status {
    margin-top: 5px;
    padding: 0 5px;
}

.main-layout .floor-tooltip .status span,
.main-layout .floor-tooltip .label,
.sold-out.label,
.floor-miniature-map-wrapper .floor-tooltip .status span,
.floor-miniature-map-wrapper .floor-tooltip .label {
    padding: 1px 3px;
    text-align: center;
    color: #fff;
    border-radius: 2px;
}

.main-layout .floor-tooltip .status.st-free span,
.floor-miniature-map-wrapper .floor-tooltip .status.st-free span {
    background: #54b07d;
}
.main-layout .floor-tooltip .status.st-booked span,
.floor-miniature-map-wrapper .floor-tooltip .status.st-booked span {
    background: #F3BB45;
}
.main-layout .floor-tooltip .status.st-sold span,
.floor-miniature-map-wrapper .floor-tooltip .status.st-sold span {
    background: #EB5E28;
}

.main-layout .floor-tooltip .status.st-locked span, .floor-miniature-map-wrapper .floor-tooltip .status.st-locked span {
    background: #635f5f;
}

.main-layout .floor-tooltip .price {
    font-size: 18px;
    font-weight: bold;
}

.floor-miniature-map-wrapper .leaflet-tooltip-pane {
    transform: scale(.75);
}
.floor-miniature-map-wrapper .leaflet-tooltip-pane .leaflet-tooltip-right:before, .floor-miniature-map-wrapper .leaflet-tooltip-pane .leaflet-tooltip-left:before, .floor-miniature-map-wrapper .leaflet-tooltip-pane .leaflet-tooltip-top:before, .floor-miniature-map-wrapper .leaflet-tooltip-pane .leaflet-tooltip-bottom:before {
    display: none;
}

.floor-miniature-map-wrapper .floor-tooltip .price {
    font-size: 18px !important;
    font-weight: bold;
}

.main-layout .floor-tooltip .label,
.floor-miniature-map-wrapper .floor-tooltip .label {
    background: #3388ff;
}

.info-header {
    background: #eee;
    height: 55px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.go-back a {
    text-decoration: none;
}

.padding-left-0 {
    padding-left: 0!important;
}

.iframe-layout .nicescroll-cursors {
    display: none!important;
}

.iframe-layout .left-block .floors-table {
    float: right;
}

.iframe-layout .floors .floor {
    font-size: 20px;
    margin: 5px auto;
}

.iframe-layout .floors .floor.active {
    font-size: 20px;
    background: rgba(0, 0, 0, .15);
}

.iframe-layout .left-block .information {
    padding: 15px 55px 15px 15px;
}

.iframe-layout .floors-table > .floors {
    height: calc(100vh - 55px);
    max-height: calc(100vh - 55px);
    width: max-content;
    min-width: 40px;
    max-width: 75px;
}

.iframe-layout .floor-info .title {
    font-size: 26px;
}

.iframe-layout .floor-info .free-apartments {
    font-size: 36px;
    margin-top: -0.2em;
}

.iframe-layout .floor-info .free-apartments-list {
    margin-top: 15px;
    font-size: 14px;
    max-height: calc(100vh - 350px);
    overflow-y: auto;
}

.iframe-layout .floor-info .free-apartments-list tbody tr {
    cursor: pointer;
}

.iframe-layout .floor-info .free-apartments-list tbody tr:hover, .iframe-layout .floor-info .free-apartments-list tbody tr:hover b {
    color: #00a6d9;
}

.iframe-layout .right-block .image {
    padding: 15px;
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.iframe-layout .right-block .image p {
    font-size: 22px;
}

.iframe-layout .right-block .image i {
    font-size: 9em;
}

.iframe-layout .right-block .image img {
    max-width: 80%;
    margin: 0 auto;
}

.apt-info .block-info > * {
    display: inline-table;
}

.apt-info .block-info .label:last-of-type {
    margin-left: 5px;
}

.apt-info .block-info .label {
    padding: 3px 5px;
    background: #00a6d9;
    color: #fff;
    font-size: 12px;
    opacity: .75;
}

.apt-info .block-info div:last-of-type {
    margin-top: 1px;
}

.apt-info .block-info {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.apt-info .block-info .btn-copy-info, .apt-info .block-info .btn-download-offer {
    font-size: 18px!important;
}

.apt-info .common-info {
    border: 1px solid #ccc;
    display: table;
    width: 100%;
}

.apt-info .common-info > * {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 10px;
    text-align: center;
}

.apt-info .common-info .left {
    background: #eee;
}

.apt-info .common-info .left .label {
    font-size: 20px;
    padding: 5px;
    color: #fff;
}

.apt-info .common-info .left .label span {
    display: inline-block;
    padding: 5px;
}

.apt-info .common-info .left .label span:first-of-type {
    background: #000;
}
.apt-info .common-info .left .label span:last-of-type {
    background: #00a6d9;
}

.apt-info .common-info .right {
    background: #fff;
}

.apt-info .square-block .title {
    font-size: 14px;
    color: #999;
}

.apt-info .square-block .num span {
    font-size: 30px;
}

.apt-info .description p {
    margin-bottom: 0;
}

.apt-info .description .price {
    font-size: 28px;
}

.apt-info .description .price .label {
    background: #aaa;
    color: #fff;
    padding: 3px 5px;
    margin-left: 10px;
    font-size: 16px;
}

.apt-info .view-label {
    margin-top: 15px;
}

.apt-info .view-label span {
    color: #fff;
    background: #00a6d9;
    padding: 3px 5px;
}

.apt-info .description .form-header {
    font-size: 18px;
    margin: 15px 0 5px 0;
    text-align: center;
}

.apt-info .description form input {
    background: #eee;
    margin-bottom: 10px;
    display: block
}

.apt-info .description form button {
    margin: 0 auto;
    display: block;
}

.apt-info .description form .done {
    color: green;
}

.apt-info .description form .iti,
.book-apt-modal .iti {
    width: 100%;
    margin-bottom: 10px;
}

.apt-info .description form .iti__selected-country,
.book-apt-modal .iti__selected-country {
    max-height: none;
    box-shadow: none;
}

.apt-info .description form .iti__dropdown-content,
.book-apt-modal .iti__dropdown-content {
    bottom: 100%;
}

.apt-info .book-form-header {
    border: 1px solid #ccc;
    display: table;
    width: 100%;
}

.apt-info .book-form-header > * {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
    padding: 10px;
    text-align: center;
    cursor: pointer;
}
.apt-info .book-form-header > div:hover {
    background: #f5f5f5;
}

.apt-info .book-form-header > div.active {
    background: #eee!important;
    cursor: default;
}

.apt-info .book-price-info {
    margin-top: 10px;
    background: #eee;
    padding: 10px;
}
.apt-info .online-cards-logo {
    width: 200px;
}
.blur-bg {
    position: fixed;
    top: -26px;
    left: -26px;
    z-index: -1;
    filter: blur(20px);
    -webkit-filter: blur(20px);
    width: calc(100vw + 55px);
    height: calc(100vh + 50px);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-block {
    height: 55px;
    padding: 10px 15px 10px 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .25);
    display: flex;
}

.header-block .image {
    cursor: pointer;
}

.header-block .image img {
    height: 55px;
    margin-top: -10px;
}

.header-block .title {
    font-size: 22px;
    margin: 0 10px 0 15px;
}

.header-block .text {
    margin-top: 6px;
}

.header-block .text i {
    margin-right: 5px;
}

.iframe-layout .choose-apartment-menu {
    position: absolute;
    left: 25px;
    z-index: 500;
    padding-right: 25px;
    margin-top: 20px;
}

.iframe-layout .choose-apartment-menu button {
    margin-bottom: 5px;
}

.free-apartments-list td {
    word-break: break-word;
}

.iframe-layout .scroll-to-top {
    position: fixed;
    left: 15px;
    bottom: 30px;
    font-size: 36px;
    width: 75px;
    height: 75px;
    background: #ddd;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    z-index: 1002;
    border-radius: 50%;
    text-align: center;
    padding-top: 7px;
    transition: all 150ms linear;
}
.iframe-layout .scroll-to-top:hover {
    background: #ccc;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
}

.btn-close-iframe {
    position: fixed;
    top: 10px;
    right: 4px;
    cursor: pointer;
    z-index: 7;
    width: 25px;
    height: 25px;
    background: #000;
    border-radius: 50%;
}

.btn-close-iframe i span {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 352 512"><path fill="white" d="M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z"/></svg>');
    background-repeat: no-repeat;
    display: block;
    width: 16px;
    height: 16px;
    margin-top: 4px;
    margin-left: 7px;
}

#layout-iframe {
    position: fixed;
    top: 20px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100dvh - 77px);
    background: #fff;
    box-shadow: 0 0 15px rgb(0 0 0 / 80%);
    border-radius: 5px;
    z-index: 6;
}

.free-apartments-list tr td:last-of-type, .free-apartments-list tr th:last-of-type {
    display: none;
}

.outer-floors-table {
    display: block;
}

.inner-floors-table {
    display: none;
}

@media screen and (min-width: 641px) {
    .iframe-layout .floors .floor {
        text-overflow: clip;
        overflow: hidden;
        height: 34.5px;
    }
}

.select2-container {
    width: 200px;
}

.extra-filter {
    display: none;
}

.currency-select-container .select2-container {
    width: unset;
    margin-right: 3px;
}

.currency-select-container .select2-container--default .select2-selection--single {
    border: none;
}

.currency-select-container .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 5px;
}

.currency-select-container .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 4px;
}

.select2-container .select2-selection--single,
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: #00a6d9!important;
}

body .select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #aaa;
}

body .select2-container--default.select2-container .select2-selection:hover {
    background: #eee;
    cursor: pointer;
}
body .currency-select-container .select2-container--default.select2-container .select2-selection:hover {
    background: #fff!important;
}

body .select2-container--default .select2-selection--multiple {
    border: 1px solid #ccc;
    border-radius: 3px;
}

body .select2-search__field::placeholder {
    color: #637485!important;
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    transform: translateY(3px);
}

body .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    margin-top: 2px;
}

.filter-block {
    display: flex;
    flex-wrap: nowrap;
    align-content: flex-start;
    flex-direction: column;
}

.widget-apartment-filters .filter-block .desktop {
    display: flex;
    gap: 5px;
}

@media screen and (max-width: 640px) {
    .header-block .title {
        display: none;
    }
    .floor-mode .header-block .title {
        display: block;
        word-break: break-all;
        font-size: 19px;
    }
    .header-block .text i:first-of-type {
        display: none;
    }
    .header-block .text {
        margin-left: 15px;
    }
   
    .iframe-layout .left-block .floors-table {
        float: unset;
    }
    .iframe-layout .left-block .floors-table .floors {
        height: auto;
        min-width: unset;
        max-width: unset;
        width: unset;
    }
    .iframe-layout .left-block .information {
        padding: 15px 15px 0 15px;;
    }
    .iframe-layout .floor-info .free-apartments-list tbody tr, .iframe-layout .floor-info .free-apartments-list tbody tr b {
        color: #00a6d9;
    }
    .go-back {
        font-size: 20px;
    }
    .go-back i {
        margin-right: 5px;
    }
    .iframe-layout .floors .floor.active, .iframe-layout .floors .floor {
        font-size: 22px;
        min-width: 37px;
        width: max-content;
        margin-right: 5px;
    }
    .apt-info .block-info .label {
        font-size: 16px;
    }
    .apt-info .common-info .left .label {
        font-size: 30px;
    }
    .apt-info .square-block .title, .apt-info .view-label span {
        font-size: 18px;
    }
    .apt-info .square-block .num span {
        font-size: 34px;
    }
    .apt-info .description p {
        font-size: 18px;
    }
    .apt-info .description .price {
        font-size: 38px;
    }
    .apt-info .description .price .label {
        font-size: 20px;
    }
    .apt-info .description .form-header {
        font-size: 22px;
    }
    .apt-info .description form button {
        font-size: 16px;
    }
    .free-apartments-list tr td:last-of-type, .free-apartments-list tr th:last-of-type {
        display: block;
    }

    .outer-floors-table {
        display: none;
    }
    .inner-floors-table {
        display: block;
    }
    .currency-drop-btn {
        margin-top: 5px;
        display: block;
    }

    .info-block .view-buttons {
        display: block;
    }
    .right-block .view-buttons {
        display: none !important;
    }
    .widget-apartment-filters {
        padding: 10px!important;
    }
    .filter-dropdown-content {
        right: 0;
    }
    .btn-filter-apartments {
        width: 100%;
    }
    .btn-expand-filters {
        margin: 0 auto;
    }
    .filter-row .extra-filter {
        display: block;
    }
    .widget-apartment-filters .mobile {
        display: block !important;
    }
    .widget-apartment-filters .desktop {
        display: none !important;
    }

    .widget-apartment-filters .unit-favorites-subscribe-block.mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 9px;
        margin-top: 18px;
    }

    .widget-apartment-filters .filter-block {
        background-color: white;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
        padding: 0 15px;
    }
    .widget-apartment-filters .filter-row {
        display: block !important;
    }
    .widget-apartment-filters .filter-row > div {
        margin-bottom: 10px;
    }
    .layout-container .right-block .filter-result {
        margin-top: 10px !important;
    }
    .select2-container {
        width: 100% !important;
    }
    .vt-iframe-container iframe {
        height: 250px !important;
    }
    .apt-images-on-narrow .vt-iframe-container {
        width: 100% !important;
    }
    .apt-images-on-narrow .glide {
        margin-top: 20px;
    }
    .iframe-layout .right-block li.image {
        margin-top: 0;
    }
}

.label.label-warning {
    width: auto;
    display: inline-block;
    background-color: #bdb60f;
}

.iframe-layout .right-block .glide__slide.image img,
.iframe-layout .apt-images-on-narrow .glide__slide.image img {
    max-width: 95%;
}

.apt-images-on-narrow {
    margin-bottom: 20px;
}

.glide__slides {
    margin: 0 auto;
}

.block-chooser {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #394d5c;
    color: #fff;
    width: 100%;
    display: flex;
    flex-flow: row;
    align-items: center;
    z-index: 1004;
    padding: 10px 2px;
    gap: 5px;
    overflow: hidden;
}

.block-chooser .d {
    font-size: 12px;
}

.block-chooser > div {
    flex-grow: 1;
    text-align: center;
    line-height: 21px;
    width: 100%;
}
.block-chooser > .number {
    border-left: 1px solid #fff;
}

.block-chooser > div .num {
    font-size: 26px;
}

.block-chooser .fa-check {
    font-size: 20px;
}

.block-chooser .choose {
    background: #00a6d9;
    box-shadow: 0 -10px 0 #00a6d9, 0 10px 0 #00a6d9;
    margin: 0 -4px;
}
.block-chooser .choose:hover {
    opacity: .75;
}

.block-chooser .choose .d {
    font-size: 17px!important;
}

.mb-100 {
    margin-bottom: 100px;
}

.mb-120 {
    margin-bottom: 120px;
}

.smart-catalog-breadcrumbs {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding-bottom: 50px;
}

.smart-catalog-breadcrumbs a {
    margin-right: 20px !important;
    text-decoration: none;
    color: inherit;
    font-size: 17px;
    cursor: pointer;
    display: inline-block;
    transition: opacity 150ms linear;
}
.smart-catalog-breadcrumbs a:hover {
    opacity: .6;
}

.smart-catalog-breadcrumbs a.title {
    display: inline-block !important;
}

.smart-catalog-breadcrumbs a:not(:first-child)::before {
    margin-left: -15px;
    margin-right: 7px;
    margin-top: 2px;
    font-size: 15px;
    color: #aaa;
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-display: swap;
}

.leaflet-image-layer {
    transition: opacity 150ms linear;
}

/* Currency dropdown */
.currency-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 66px;
    width: max-content;
    width: -webkit-max-content;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 999999;
    margin-top: 4px;
    height: max-content;
}

.currency-dropdown-content a {
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    color: #000000;
}

.currency-dropdown-content a:hover {
    background-color: #eee;
}

.currency-drop-btn {
    cursor: pointer;
    text-decoration: none;
}

.show {
    display: block !important;
}
/* End Currency dropdown */

/* Info block toggle styles */
.info-block-toggle {
    margin-top: 12px;
    text-align: center;
}

.info-block-toggle::before {
    font-size: 17px;
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 1000;
    cursor: pointer;
}

.info-block-toggle.closed::before {
    content: "\f054";
}

.right-block.full-screen {
    width: 93% !important;
}

.info-block.hide {
    width: 0 !important;
    display: none;
}

@media screen and (max-width: 640px) {
    .info-block-toggle {
        display: none;
    }
}

/* End Info block toggle styles */


.room-description {
    margin: 10px 0 0 0;
    min-width: 60%;
    padding: 10px;
    background: rgba(255, 255, 255, .45);
    border: 1px solid #ccc;
    font-size: 14px;
}

.room-description p {
    margin-bottom: 0;
}

#floor-miniature-map {
    height: 180px;
    background: transparent;
    overflow: visible!important;
}

.floor-miniature-map-wrapper {
    margin-top: 25px;
    height: 180px;
    display: none;
}

/* Apartments filter block */
.widget-apartment-filters {
    background-color: #fff;
    padding: 10px 0 0 10px;
    transition: opacity 150ms linear;
}

.widget-apartment-filters .btn-dropdown {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 38px;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 7px 10px;
    line-height: 22px;
}
.widget-apartment-filters .btn-dropdown:hover {
    background: #eee;
}

.widget-apartment-filters .btn-dropdown span:first-of-type {
    color: #637485
}

.widget-apartment-filters .filter-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 10px;
    margin-bottom: 10px;
}

ul.select2-selection__rendered {
    padding-right: 30px !important;
}

ul.select2-selection__rendered:after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.layout-container .right-block .filter-result .filter-result-content {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.apartment-type-card {
    border: 1px solid #EBEBEB;
    border-radius: 5px;
    width: 300px;
    text-align: center;
    font-size: 14px;
    display: none;
}

.apartment-type-card:last-of-type {
    margin-bottom: 30px;
}

.apartment-type-card.flex-show {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.apartment-type-card .header {
    position: relative;
    border-bottom: 1px solid #EBEBEB;
    background-color: #F9F9F9;
}

.apartment-type-card .header .apartment-type-name {
    font-weight: bold;
}

.apartment-type-card .footer .accordion-btn {
    display: block;
    height: 40px;
    line-height: 40px;
    background-color: #00a6d9;
    color: #FFFFFF;
    cursor: pointer;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.apartment-type-card .footer .units {
    background-color: white;
    overflow: hidden;
}

.apartment-type-card .footer {
    position: relative;
}

.apartment-type-card .footer .units {
    position: absolute;
    bottom: 40px;
    left: 0;
    max-height: 320px;
    overflow-y: auto;
    width: 100%;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
}

.apartment-type-card .footer .units .unit {
    display: none;
    cursor: pointer;
    color: #00a6d9;
}
.apartment-type-card .footer .units .unit:hover {
    background: #eee;
}

.apartment-type-card .footer .units .unit b {
    color: #00a6d9;
}

.apartment-type-card .footer .units .unit p {
    margin-bottom: 0;
}

.apartment-type-card .footer .units .unit .number-info {
    text-align: left;
}

.apartment-type-card .footer .units .unit .number-info p:first-of-type {
    font-weight: bold;
}

.apartment-type-card .footer .units .unit .price-info {
    text-align: right;
}

.apartment-type-card .footer .units .unit.flex-show {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
    border-bottom: 1px solid #EBEBEB;
}

.apartment-type-card .info-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #EBEBEB;
    background-color: #F9F9F9;
}

.apartment-type-card .info-block .area {
    border-right: 1px solid #EBEBEB;
    display: none;
}

.apartment-type-card .info-block .rooms-count {
    display: none;
}

.apartment-type-card .info-block > div {
    padding: 10px 20px;
}

.apartment-type-card .info-block .val {
    font-weight: bold;
}

.apartment-type-card .image-block img {
    width: 100%;
}

.apartment-type-card .image-block .image-wrapper i {
    font-size: 15rem;
}

.apartment-type-card .bottom-block .full-price-from,
.apartment-type-card .bottom-block .promo-label-wrapper {
    background-color: #FECF62;
    width: fit-content;
    padding: 2px 15px;
    border-radius: 7px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: none;
    font-weight: bold;
}

.apartment-type-card .bottom-block .full-price-from .val {
    font-size: 18px;
}

.apartment-type-card .bottom-block .price-from-wrapper {
    display: flex;
    justify-content: right;
    align-items: center;
}

.apartment-type-card .bottom-block .promo-icon-wrapper {
    color: #EB5E26;
    margin-right: 5px;
}

.apartment-type-card .bottom-block .promo-label-wrapper {
    color: #ffffff;
    padding: 5px 25px;
}

.apartment-type-card .bottom-block .promo-icon-wrapper i {
    font-size: 1.2rem;
}

.filter-dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    max-width: 430px;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 999;
    margin-top: 4px;
    padding: 18px 10px;
}

.filter-dropdown-content .input-group {
    display: flex;
    border: 1px solid #E4E5E7;
    border-radius: 5px;
}

.filter-dropdown-content .input-group input {
    background: none;
}

.filter-dropdown-content .input-group > input.value_from {
    border-left: 1px solid #E4E5E7;
    border-right: 1px solid #E4E5E7;
}

.filter-dropdown-content .input-group span.with-padding {
    padding: 10px 18px;
}

.view-buttons {
    width: 50%;
    margin: 0 auto;
    display: none;
}

.view-buttons button.active {
    background-color: #00a6d9;
    color: #FFFFFF !important;
}

.\38 u .view-buttons {
    display: flex;
    gap: 10px;
}

.view-buttons.flex-show {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 30px;
    justify-content: center;
    width: 100%;
}

.widget-apartment-filters .mobile {
    display: none;
}

.view-buttons img {
    width: 15px;
    display: none;
}

.view-buttons img.pointer {
    width: 10px;
}

.view-buttons button span {
    display: block;
}

.view-buttons button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    height: 2.8em;
    line-height: 2.8em;
    padding: 0 2em;
}

.view-buttons button.active img.white {
    display: block;
}

.view-buttons button:not(.active) img.black {
    display: block;
}

.btn-filter-apartments {
    height: 38px;
    line-height: 19px;
    padding: 0 2em;
}

.placeHolderText {
    margin: 0;
}

.widget-apartment-filters .filter-block .select2-selection__choice {
    border-radius: 3px!important;
    background: #44c9f3!important;
    color: #fff;
    border: none!important;
}

.widget-apartment-filters .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
}
.widget-apartment-filters .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #eee;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.g-plus-logo {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 1003;
    opacity: .35;
    transition: opacity 150ms linear;
}
.g-plus-logo:hover {
    opacity: 1;
}

.g-plus-logo a {
    display: block;
    width: 32px;
    height: 32px;
}

.g-plus-logo img {
    width: 32px;
    border-top-left-radius: 5px;
}

.choose-mode-menu {
    position: absolute;
    right: 25px;
    z-index: 500;
    margin-top: 20px;
}

.choose-mode-menu button {
    background: #fff;
}
.choose-mode-menu button:first-of-type {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.choose-mode-menu button:last-of-type {
    margin-left: -5px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.choose-mode-menu button.active {
    background-color: #555;
    color: #fff!important;
}

.progress-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 450;
    width: 100%;
    height: 100%;
    background-color: rgba(1, 46, 50, .75);
    backdrop-filter: blur(10px);
    color: #fff;
    text-align: center;
}

.progress-inner {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
}

.progress {
    width: 250px;
    height: 2px;
    margin: 5px auto;
}
.progress-bar {
    height: 2px;
    background: #fff;
    transition: width 150ms ease-in-out;
}

.leaflet-popup {
    opacity: 0;
}

.apt-tooltip .apt-image img {
    max-width: 175px;
    min-width: 150px;
    padding: 5px;
}

.apt-image .loading {
    font-size: 28px;
    color: #aaa;
    text-align: center;
    padding: 7px;
}

.vt-iframe-container {
    height: 93%;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    position: relative;
}

.vt-iframe-container iframe {
    width: 100%;
    height: 100%;
}

.vt-iframe-container .loading {
    color: #999;
    text-align: center;
    font-size: 35px;
    opacity: .45;
}

.vt-iframe-container .logo-block {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 50px;
    width: 50px;
    background: #fff;
    font-size: 17px;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.apt_image_iframe_switch {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    justify-content: center;
    width: 100%;
}

.apt_image_iframe_switch button.active {
    background-color: #00a6d9;
    color: #FFFFFF !important;
}

.apt_image_iframe_switch button {
    height: 2.8em;
    line-height: 2.8em;
    padding: 0 2em;
}

.iframe-layout .right-block li.image {
    margin-top: 10px;
}

.iti__dropdown-content {
   z-index: 401;
}

.download-floor-render-container {
    margin-bottom: 15px;
}

.link-to-filter-result {
    display: none;
    text-align: center;
    padding-top: 3px;
    cursor: pointer;
    font-size: 14px
}

.link-to-filter-result > div,
.link-to-fav-units > div {
    display: inline-block;
    color: #00a6d9;
}

.link-to-filter-result > div:hover,
.link-to-fav-units > div:hover {
    opacity: 0.8;
}

/* Favorite units and subscribe */
.unit-favorites-subscribe-block {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-left: 10px;
}

.unit-favorites-subscribe-block i {
    cursor: pointer;
    font-size: 1.4rem;
    color: #999;
}

.apartment-type-card .header .favorite-unit {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px 10px;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

.apartment-type-card .header .favorite-unit i,
.unit-favorites-subscribe-block i,
.apt-info .block-info .favorite-unit i {
    transition: color 150ms linear;
}

.favorite-unit.added i {
    color: red;
}

.apartment-type-card .header .favorite-unit i:hover,
.apt-info .block-info .favorite-unit i:hover,
.unit-favorites-subscribe-block .favorite-units i:hover {
    color: red;
}

.unit-favorites-subscribe-block .btn-subscribe-to-project i:hover {
    color: #777;
}


.unit-favorites-subscribe-block .favorite-units {
    position: relative;
}

.unit-favorites-subscribe-block .favorite-units .favorites-counter.show {
    display: inline-block;
}

.unit-favorites-subscribe-block .favorite-units .favorites-counter {
    display: none;
    position: absolute;
    text-align: center;
    font-size: 1.1em;
    background-color: #ff253a;
    font-weight: 900;
    border-radius: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    height: 1.5em;
    line-height: 1;
    max-width: 5em;
    min-width: 1.5em;
    overflow: hidden;
    padding: .25em;
    right: -3px;
    text-overflow: ellipsis;
    top: -6px;
    -webkit-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: top right;
    transform-origin: top right;
}

.apt-info .block-info .favorite-unit {
    font-size: 20px;
    color: #999;
    cursor: pointer;
}

/* Favorite units and subscribe END */

/* Units comparison table */
#units-comparison-container {
    max-width: 100%;
    overflow-x: auto;
    padding: 2rem;
    margin: 0;
}

#units-comparison-container th {
    vertical-align: top;
}

#units-comparison-container .table-wrapper {
    overflow-x: auto;
    border: 1px solid #ccc;
    background: #fff;
}

#units-comparison-container .table-wrapper th i {
    font-size: 9rem;
    display: block;
}

#units-comparison-container table {
    border-collapse: collapse;
    width: 100%;
    min-width: 800px;
    font-size: 14px;
    margin: 0;
}

#units-comparison-container tr th:first-child,
#units-comparison-container tr td:first-child {
    text-align: left;
}

#units-comparison-container th, #units-comparison-container td {
    text-align: center;
    padding: 12px 10px;
}

#units-comparison-container tr td:nth-child(n+2) {
    font-weight: bold;
}

#units-comparison-container .btn-book-apartment {
    background-color: #00a6d9;
    color: #ffffff !important;
    margin-top: 13px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#units-comparison-container .btn-book-apartment:hover,
#units-comparison-container .btn-book-apartment:focus,
.book-apt-modal button:hover,
.book-apt-modal button:focus,
.subscribe-to-project-modal button:hover,
.subscribe-to-project-modal button:focus {
    background-color: #00baf3;
}

#units-comparison-container .image-container {
    position: relative;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    padding: 5px 10px 5px 10px;
}

#units-comparison-container .image-container img,
#units-comparison-container .image-container i {
    vertical-align: middle;
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 0.5rem;
}

#units-comparison-container .remove-icon {
    position: absolute;
    top: 2px;
    right: 5px;
    text-align: center;
    line-height: 16px;
    font-size: 15px;
    cursor: pointer;
    transition: color 150ms linear;
}

#units-comparison-container .remove-icon:hover {
    color: grey;
}

#units-comparison-container .compare-room-type-wrapper {
    width: 200px;
    margin-bottom: 50px;
}

#units-comparison-container .compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

#units-comparison-container .link-to-fav-units {
    cursor: pointer;
    font-size: 14px;
}

.compare-header .tabs a {
    text-decoration: none;
    color: #00a6d9;
    transition: color 100ms linear;
}

.compare-header .tabs a.active {
    color: #777;
}

.compare-header .tabs a:not(.active):hover {
    opacity: 0.8;
}

#units-comparison-container .select2-container--default .select2-selection--single {
    border: none;
}

#units-comparison-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 15px;
}

.units-compare-controls .select2 {
    box-shadow: 0 0 1px rgba(0, 0, 0, .6);
    border-radius: 5px;
}


/* Units comparison table End */

/* Switch */
#units-comparison-container .label-text {
    font-size: 14px;
    font-weight: 500;
    margin-left: 10px;
    vertical-align: middle;
}

#units-comparison-container .switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    vertical-align: middle;
}

#units-comparison-container .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

#units-comparison-container .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #999999;
    transition: 0.4s;
    border-radius: 24px;
}

#units-comparison-container .slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    top: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

#units-comparison-container .switch input:checked + .slider {
    background-color: #4CAF50;
}

#units-comparison-container .switch input:checked + .slider::before {
    transform: translateX(24px);
}

#units-comparison-container .show-diff-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

#units-comparison-container .show-diff-wrapper label {
    margin-bottom: 0;
}
/* Switch End */

/* Modal */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.custom-modal .modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.custom-modal .close {
    color: #777;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    transition: color 150ms linear;
}

.custom-modal .close:hover,
.custom-modal .close:focus {
    color: darkgrey;
    text-decoration: none;
}

.custom-modal input {
    margin-bottom: 15px;
}

.custom-modal .button {
    margin-top: 15px;
    color: white !important;
    background-color: #00a6d9;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 14px;
}

.custom-modal .modal-title {
    text-align: center;
    margin-bottom: 25px;
}

.custom-modal .button:focus {
    outline: none;
}

.book-apt-modal .done,
.subscribe-to-project-modal .done{
    color: green;
}
/* Modal End */

#block-units-by-categories-stats {
    padding: 10px 10px 10px 14px;
}

#block-units-by-categories-stats .unit-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    gap: 30px;
}

#block-units-by-categories-stats .unit-category:last-child {
    border-bottom: none;
}

#block-units-by-categories-stats .unit-count-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

#block-units-by-categories-stats .unit-count-wrapper .green-box {
    width: 14px;
    height: 14px;
    background-color: #00b894;
    border-radius: 3px;
    vertical-align: middle;
}

#block-units-by-categories-stats .unit-count-wrapper .val {
    text-align: center;
}

.no-units-message-wrapper {
    text-align: center;
    margin-top: 20px;
}

.no-fav-units-info-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    text-align: justify;
    margin-top: 30px;
    font-size: 1.2rem;
}


@media screen and (max-width: 768px) {
    #units-comparison-container {
        padding: 10px;
    }
}

.apt-info .promo-info {
    margin: 18px 0 3px 0;
}
.apt-info .promo-info .promo-terms{
    display: block;
    color: #aaa;
    font-size: 13px;
}
.apt-info .promo-info i {
    color: #EB5E26;
    font-size: 1.5rem;
}
.apt-info .promo-info .promo-item .icon-wrapper {
    cursor: pointer;
}
.apt-info .promo-info span.promo-label {
    font-weight: bold;
    font-size: 14px;
}
.apt-info .promo-info .promos-container > div {
    margin-bottom: 3px;
}
.apt-info .promo-info .promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-block.logo-only {
    position: absolute;
    top: 0;
    z-index: 9999999;
    background: none;
    box-shadow: none;
}

.iframe-layout .choose-apartment-menu.header-hidden {
    top: 50px;
}
