/***********************************************************************************************************************
B. Helpers
***********************************************************************************************************************/

/* -- Animations */
@keyframes ts-anim__active-marker {
    0% {
        transform: rotateX(70deg) rotateZ(0deg);
    }

    100% {
        transform: rotateX(70deg) rotateZ(360deg);
    }
}

.ts-active-marker {
    position: relative;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    opacity: 1 !important;
}

.ts-active-marker:before {
    -webkit-animation-name: ts-anim__active-marker;
    animation-name: ts-anim__active-marker;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    content: url(../img/marker-active.svg);
    position: absolute;
    width: 52px;
    height: 52px;
    z-index: 0;
    left: -24px;
    bottom: -19px;
    opacity: .4;
}
/*-------------------------------------------
  -- Map
-------------------------------------------*/

.ts-map {
    position: relative;
}

.ts-map a[href^="http://maps.google.com/maps"] {
    display: none !important;
}

.ts-map a[href^="https://maps.google.com/maps"] {
    display: none !important;
}

.ts-map .gmnoprint a, .ts-map .gmnoprint span, .ts-map .gm-style-cc {
    display: none;
}

.ts-map .cluster > div, .ts-map .marker-cluster > div {
    background-color: var(--surface-color-700);
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .3),
    0 3px 15px rgba(0, 0, 0, .15);
    border-radius: 50%;
    color: #fff !important;
    text-align: center;
    transition: .3s ease;
}

.ts-map .cluster > div:hover, .ts-map .cluster > div.ts-hover,
.ts-map .marker-cluster > div:hover, .ts-map .marker-cluster > div.ts-hover {
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, .3),
    0 5px 25px rgba(var(--color-primary-font-rgb), .5);
}

.ts-map .marker-cluster > div {
    line-height: 48px;
    height: 48px !important;
    width: 48px !important;
}

.ts-map .gm-style-mtc > div {
    font-size: 12px !important;
    height: 32px !important;
    padding: 0 12px !important;
}

.ts-map__detail {
    height: 288px;
}

.ts-contact-map {
    height: 400px;
}

.ts-sidebar-map {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    height: 288px;
}

/* =====================================================================================================================
  MARKER
 */

.ts-marker-wrapper {
    transform: scale(1);
    -webkit-transform-origin: 0 44px;
    transform-origin: 0 44px;
    transition: .3s ease;
}

.ts-marker-wrapper.ts-hide-marker {
    transform: scale(0);
}

.leaflet-div-icon {
    background-color: transparent;
    border: none;
}

.leaflet-marker-icon.ts-hide-marker .ts-marker {
    transform: scale(0);
}

.ts-marker {
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    transition: .6s cubic-bezier(.16, .64, .31, 1.68);
    transform: translateY(0) rotate(.002deg);
}

.ts-marker:hover, .ts-marker.ts-hover {
    color: inherit;
    transform: translateY(-4px);
    z-index: 1;
}

.ts-marker:hover .ts-marker__title, .ts-marker:hover .ts-marker__info,
.ts-marker.ts-hover .ts-marker__title, .ts-marker.ts-hover .ts-marker__info {
    opacity: 1;
    transform: translateX(0);
}

.ts-marker:hover .ts-marker__info, .ts-marker.ts-hover .ts-marker__info {
    transition-delay: .05s;
}

.ts-marker:hover:before, .ts-marker.ts-hover:before {
    transform: translateY(4px) scaleX(.8);
    opacity: .2;
}

.ts-marker:after {
    border-color: var(--surface-color-700) transparent transparent transparent;
    border-width: 6px 6px 0 0;
    border-style: solid;
    bottom: 3px;
    content: "";
    left: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ts-marker:before {
    content: url("../img/marker-shadow.png");
    bottom: -6px;
    left: -1px;
    position: absolute;
    opacity: .8;
    transition: .6s cubic-bezier(.16, .64, .31, 1.68);
    transform: translateY(0) scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.ts-marker .ts-marker__title, .ts-marker .ts-marker__info {
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    position: absolute;
    font-size: 11px;
    font-weight: 500;
    left:  4px;
    white-space: nowrap;
    border-radius: 1px;
    pointer-events: none;
    padding: 1px  4px;
    transition: .5s cubic-bezier(.03, .18, .05, 1.01);
    transform: translateX(4px);
    opacity: 0;
}

.ts-marker .ts-marker__title {
    background-color: #fff;
    top:  4px;
    z-index: 2;
}

.ts-marker .ts-marker__info {
    background-color: var(--surface-color-700);
    color: #fff;
    top: 20px;
    z-index: 1;
}

.ts-marker .ts-marker__feature {
    top: -10px;
    left: -10px;
    position: absolute;
    z-index: 3;
}

.ts-marker .ts-marker__feature > * {
    background-color: var(--surface-color-700);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    border-radius: 50%;
    color: #fff;
    font-size: 8px;
    width: 22px;
    text-align: center;
    height: 22px;
    line-height: 22px;
}

.ts-marker .ts-marker__image {
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 2px;
    box-shadow: 0  4px 8px rgba(0, 0, 0, .3);
    height: 42px;
    width: 42px;
    position: relative;
}

.ts-marker .ts-marker__image:before {
    border-bottom-right-radius: 2px;
}

.ts-marker-hide {
    opacity: .2;
}

/* =====================================================================================================================
  INFOBOX
 */

.infobox-wrapper {
    transition: .3s transform cubic-bezier(.51, .31, .28, 1.16);
    transform: scale(0);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}

.infobox-wrapper > img {
    display: none;
}

.infobox-wrapper.ts-show {
    transform: scale(1);
}

.infobox-wrapper.ts-show .ts-infobox .ts-close {
    transform: scale(1) rotate(0deg);
    transition-delay: .15s;
}

.infobox-wrapper.ts-show .ts-infobox .ts-close:hover {
    transition-delay: 0s;
    opacity: 1;
}

.leaflet-popup {
    margin-bottom: 0;
}

.leaflet-popup .leaflet-popup-content-wrapper {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.leaflet-popup .leaflet-popup-content-wrapper .leaflet-popup-content {
    margin: 0;
}

.leaflet-popup .leaflet-popup-tip-container {
    display: none;
}

.ts-infobox {
    display: inline-block;
    position: relative;
}

.ts-infobox:after {
    border-color: var(--surface-color-700) transparent transparent transparent;
    border-width: 8px 8px 0 0;
    border-style: solid;
    bottom: -6px;
    content: "";
    left: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ts-infobox .ts-ribbon {
    right: 24px;
}

.ts-infobox .ts-ribbon-corner:before {
    left: 25px;
}

.ts-infobox .ts-ribbon-corner:after {
    bottom: 25px;
}

.ts-infobox .badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
}

.ts-infobox .ts-infobox__wrapper {
    align-items: flex-end;
    color: #fff;
    display: flex;
    border-radius:  4px;
    box-shadow: 0 8px 64px rgba(var(--color-primary-font-rgb), .5);
    height: 224px;
    overflow: hidden;
    width: 240px;
    padding: 12px;
    position: relative;
    z-index: 1;
}

.ts-infobox .ts-infobox__wrapper:before {
    height: 70%;
    z-index: 1;
}

.ts-infobox .ts-close {
    position: absolute;
    right: -16px;
    top: -16px;
    z-index: 3;
    -webkit-filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .2));
    filter: drop-shadow(0 3px 2px rgba(0, 0, 0, .2));
    cursor: pointer;
    transition: .3s ease;
    transform: scale(0) rotate(180deg);
    opacity: .7;
}

.ts-infobox .ts-infobox_image {
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.ts-infobox .ts-infobox__content {
    z-index: 1;
    width: 100%;
}

.ts-infobox .ts-item__info {
    margin-bottom: 8px;
}

.ts-infobox .ts-item__info h4 {
    text-shadow: 0 2px 3px rgba(25, 25, 25, .8);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 22px;
}

.ts-infobox .ts-item__info aside {
    font-size: 12px;
    opacity: .7;
}

.ts-infobox .ts-item__info-badge {
    display: inline-block;
    background-color: var(--surface-color-700);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    border-radius: 3px;
    font-weight: 500;
    font-size: 11px;
    margin-bottom:  4px;
    padding:  4px 6px;
}

.ts-infobox .ts-description-lists {
    border-top: 1px solid rgba(255, 255, 255, .4);
    padding-top: 8px;
}

.ts-infobox .ts-description-lists dl {
    margin-bottom: 0;
    margin-right: 8px;
}

.ts-infobox .ts-description-lists dt {
    font-size: 11px;
    opacity: .5;
}

.ts-infobox .ts-description-lists dd {
    font-size: 11px;
    margin-bottom: 0;
}

.H_ui * {
    box-sizing: border-box;
}

.H_ib_tail {
    display: none;
}

.H_ib_body {
    background-color: transparent;
    padding: 0;
}

.H_ib_body .H_ib_close {
    display: none;
}

.H_ib_body .H_ib_content {
    margin: 0;
}

.H_ib_body .infobox-wrapper {
    bottom: 0;
    left: 100px;
    position: absolute;
}

.here-map-marker .ts-marker-wrapper {
    margin-top: -48px;
    position: relative;
}

@keyframes ts-dimIn {
    0% {
        width: 0;
    }

    1% {
        width: 100%;
    }

    5% {
        opacity: 0;
    }

    100% {
        opacity: .6;
    }
}

@keyframes ts-dimOut {
    0% {
        opacity: .6;
    }

    95% {
        opacity: 0;
    }

    99% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}
#ts-map-hero {
    /*transition: .3s ease;*/
    /*height:calc( 100vh - 116px );*/
    /*position:fixed;*/
    /*top:116px;*/
    /*right:0;*/
    /*width:50%;*/
    /*z-index:0;*/
}
#ts-map-hero .address {
    position: absolute;
    background-color: rgba(71, 78, 82, 0.7);
    color: var(--text-color-dark-100);
    bottom: 50px;
    left: 0;
    width: 50%;
    z-index: 20;
    margin: 16px;
    padding: 24px;
}
#ts-map-hero.leaflet-container:after {
    z-index: 401;
}

#ts-map-hero:after {
    animation-fill-mode: forwards;
    animation-duration: .5s;
    animation-name: ts-dimOut;
    background-color: black;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: opacity .4s ease;
    opacity: 0;
}

#ts-map-hero.ts-dim-map:after {
    animation-name: ts-dimIn;
    /*opacity: .6;
      height: 100%;
      width: 100%;*/
}

/* ====================================================================================================================
  Horizontal Results in Map
 */

.ts-map .ts-results__horizontal {
    bottom: 120px;
    left: 0;
    height: 0;
    position: absolute;
    z-index: 1;
}










































































.t7-marker-popup .ts-card {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    color: var(--text-color-light-100);
    box-shadow: none !important;
}
.t7-marker-popup .ts-card:hover {
    box-shadow: none !important;
    transform: translateY(0) !important;
}
.t7-marker-popup .ts-item__info {
    bottom: inherit;
    left: 0;
    top: 0;
    transform: translateY(-100%);
}
.t7-marker-popup .ts-item__info-badge {
    top: -0.875rem;
    bottom: inherit;
}





.leaflet-container a {
    color: var(--surface-color-700);
}
.map__info {
    position: fixed;
    max-width: 300px;
    top: 113px;
    right: 0;
    z-index: 100;
    font-size: 13px;
}
.map__info__text {
    background: var(--surface-color-700);
    padding: 3px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 50;
}
.map__info__text strong {
    display: block;
    font-weight: 500;
}
.map-container {
    position: relative;
}
.map-container__inner {
    position: relative;
}
.map-container__inner .map-canvas {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    opacity: 1;
    -webkit-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.map-container__inner .map-loader {
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -33px;
    opacity: 0;
    visibility: hidden;
    z-index: -100;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}
.map-container__inner .map-loader i {
    color: rgba(71, 78, 82, 0.7);
}
.map-container__inner .map-loader img {
    width: 45px;
    height: 45px;
}
.map-container .map-messages {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}
.map-container .map-messages__inner {
    width: 100%;
    position: relative;
    text-align: center;
    padding-bottom: 20px;
}
.map-container .map-messages__msg {
    display: inline-block;
    border-radius: 4px;
    color: #fff;
    background-color: #474e52;
    background-color: rgba(71, 78, 82, 0.7);
    padding: 3px 6px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 400;
    opacity: 0;
    transition: opacity 400ms ease;
}
.map-container .map-messages__msg > span {
    display: block;
}
.map-container .map-messages__msg.active {
    opacity: 1;
}
.map-container.loading .map-loader {
    opacity: 0.8;
    visibility: visible;
    z-index: 3;
}
.map-container.loading .map-canvas {
    opacity: 1;
}
.leaflet-popup-content {
    max-height: 320px;
    overflow: hidden;
    position: relative;
    margin: 0 !important;
    padding: 15px 0;
}
.leaflet-popup-content .mCSB_scrollTools {
    top: 4px;
    right: 2px;
}
.leaflet-container a.leaflet-popup-close-button {
    z-index: 200;
}
.marker-cluster-medium {
    background-color: white !important;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
.marker-cluster-medium div {
    background-color: var(--surface-color-700) !important;
    color: #fff !important;
    font-weight: 500 !important;
    width: 32px !important;
    height: 32px !important;
    margin-left: 4px !important;
    margin-top: 4px !important;
}
.marker-cluster-medium div span {
    line-height: 32px !important;
}
.marker-cluster-small {
    background-color: white !important;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
.marker-cluster-small div {
    background-color: var(--surface-color-700) !important;
    color: #fff !important;
    font-weight: 500 !important;
    width: 32px !important;
    height: 32px !important;
    margin-left: 4px !important;
    margin-top: 4px !important;
}
.marker-cluster-small div span {
    line-height: 32px !important;
}
.marker-cluster-large {
    background-color: white !important;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
}
.marker-cluster-large div {
    background-color: var(--surface-color-700) !important;
    color: #fff !important;
    font-weight: 500 !important;
    width: 32px !important;
    height: 32px !important;
    margin-left: 4px !important;
    margin-top: 4px !important;
}
.marker-cluster-large div span {
    line-height: 32px !important;
}
.marker-property {
    display: block;
    color: var(--text-color-light-100);
}
.marker-property .property {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
    transition: none;
    padding: 10px 20px;
}
.marker-property .property:hover {
    background: #F5F5F5;
}
.marker-property .property__label {
    position: absolute;
    right: -5px;
    top: -5px;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
    z-index: 100;
}
.marker-property .property__label span {
    font-size: 10px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(#4AABD7 0, var(--surface-color-700) 100%);
    box-shadow: 0 3px 10px -5px black;
    position: absolute;
    top: 19px;
    right: -21px;
}
.marker-property .property__label span:after, .marker-property .property__label span:before {
    content: "";
    position: absolute;
    top: 100%;
    z-index: -1;
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--surface-color-700);
}
.marker-property .property__label span:before {
    left: 0;
    border-left: 3px solid var(--surface-color-700);
    border-right: 3px solid transparent;
}
.marker-property .property__label span:after {
    right: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--surface-color-700);
}
.marker-property .property__images {
    position: relative;
    padding: 1px;
    border: 1px solid #DDD;
    background: #FFF;
    margin-top: 2px;
}
.marker-property .property__images img {
    max-width: 100%;
    height: auto;
    display: block;
}
.marker-property .property__images:after {
    display: none;
}
.marker-property .property__images__count {
    position: absolute;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    left: 15px;
    bottom: 7px;
    opacity: 0.5;
    transition: opacity 400ms ease;
}
.marker-property .property__images__count:before {
    content: '\f030';
    font-family: FontAwesome;
    display: inline-block;
    padding-right: 4px;
    font-size: 14px;
}
.marker-property .property__images:hover .property__images__count {
    opacity: 1;
}
.marker-property .property__bottom {
    transition: none;
}
.marker-property .property__top {
    min-height: auto;
    padding-bottom: 0;
    border-bottom: 0;
    transition: none;
}
.marker-property .property__title {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 3px;
    margin-top: 0 !important;
    color: var(--text-color-light-100);
}
.marker-property .property__title__parts {
    font-size: 12px;
    padding: 0;
    margin: 0;
    display: inline;
}
.marker-property .property__title__parts li {
    padding: 0;
    margin: 0;
    display: inline;
}
.marker-property .property__title__parts li:before {
    display: inline-block;
    content: ',';
    padding: 0 2px 0 0;
}
.marker-property .property__location {
    font-size: 12px;
    display: block;
    margin: 0;
    padding: 0 0 3px;
    line-height: 1.4;
}
.marker-property .property__location .icon {
    display: none;
}
.marker-property .property__price {
    font-size: 12px;
    padding: 0;
    font-weight: 500;
    color: var(--surface-color-700);
}
.marker-property .property__price__symbol {
    font-size: 12px;
    padding: 0 3px 0 0;
    color: var(--surface-color-700);
    font-weight: 500;
}
.marker-property .property__month {
    color: var(--surface-color-700);
    font-weight: 500;
}
.marker-property .property__extrainfo {
    font-size: 12px;
    color: #899798;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    display: block;
}
.marker-property .property__extra {
    display: block;
    list-style: none;
    font-size: 12px;
    color: #A2A1A1;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}
.marker-property .property__extra li {
    list-style: none;
    display: inline-block;
    margin-right: 7px;
    opacity: 1;
}
.marker-property .property__extra li .new-tag {
    display: inline-block;
    background-color: #A2A1A1;
    color: #fff;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 1;
}
.marker-property .property__extra li:last-child {
    margin-right: 0;
}
.marker-property .property__extra li:hover {
    opacity: 1;
}
.marker-property .property__pricearea {
    font-size: 12px;
    padding-top: 0;
    vertical-align: bottom;
    display: inline-block;
}
.marker-property .property__pricearea:before {
    content: ', ';
    display: inline-block;
    padding-right: 2px;
}
.marker-property .property__livingarea {
    float: none;
    font-size: 12px;
    padding-top: 0;
    vertical-align: bottom;
}
.marker-property .property__livingarea:before {
    content: ', ';
    display: inline-block;
    padding-right: 2px;
}
.leaflet-popup.single .columns.col-sm-4, .leaflet-popup.single .columns.col-sm-8 {
    width: 100% !important;
}
.leaflet-popup.single .property__images {
    margin-bottom: 15px;
}
.marker-property2 {
    display: block;
    color: var(--text-color-light-100);
}
.marker-property2 .property {
    margin-bottom: 0;
    transition: none;
    padding: 0;
    width: 250px;
}
.marker-property2 .property:hover {
    background: #F5F5F5;
}
.marker-property2 .property__label {
    position: absolute;
    right: -5px;
    top: -5px;
    overflow: hidden;
    width: 75px;
    height: 75px;
    text-align: right;
    z-index: 100;
}
.marker-property2 .property__label span {
    font-size: 10px;
    font-weight: 700;
    color: #FFF;
    text-transform: uppercase;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    width: 100px;
    display: block;
    background: #79A70A;
    background: linear-gradient(var(--surface-color-700) 0, var(--surface-color-700) 100%);
    box-shadow: 0 3px 10px -5px black;
    position: absolute;
    top: 19px;
    right: -21px;
}
.marker-property2 .property__label span:after, .marker-property2 .property__label span:before {
    content: "";
    position: absolute;
    top: 100%;
    z-index: -1;
    border-bottom: 3px solid transparent;
    border-top: 3px solid var(--surface-color-700);
}
.marker-property2 .property__label span:before {
    left: 0;
    border-left: 3px solid var(--surface-color-700);
    border-right: 3px solid transparent;
}
.marker-property2 .property__label span:after {
    right: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid var(--surface-color-700);
}
.marker-property2 .property__images {
    position: relative;
    padding: 0 !important;
    background: #e9e9e9;
}
.marker-property2 .property__images:before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 73.3333333333%;
}
.marker-property2 .property__images img {
    max-width: 100%;
    height: auto;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
.marker-property2 .property__images:after {
    display: none;
}
.marker-property2 .property__images__count {
    position: absolute;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    left: 15px;
    bottom: 7px;
    opacity: 0.5;
    transition: opacity 400ms ease;
}
.marker-property2 .property__images__count:before {
    content: '\f030';
    font-family: FontAwesome;
    display: inline-block;
    padding-right: 4px;
    font-size: 14px;
}
.marker-property2 .property__images:hover .property__images__count {
    opacity: 1;
}
.marker-property2 .property__bottom {
    transition: none;
}
.marker-property2 .property__top {
    min-height: auto;
    padding-bottom: 0;
    border-bottom: 0;
    transition: none;
}
.marker-property2 .property__title {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 3px;
    margin-top: 0 !important;
    color: var(--text-color-light-100);
    padding: 5px 10px 2px 10px;
}
.marker-property2 .property__title__parts {
    font-size: 12px;
    padding: 0;
    margin: 0;
    display: inline;
}
.marker-property2 .property__title__parts li {
    padding: 0;
    margin: 0;
    display: inline;
}
.marker-property2 .property__title__parts li:before {
    display: inline-block;
    content: ',';
    padding: 0 2px 0 0;
}
.marker-property2 .property__title__parts li:first-child:before {
    display: none;
}
.marker-property2 .property__location {
    font-size: 12px;
    display: block;
    margin: 0;
    padding: 0 0 3px 0;
    line-height: 1.4;
}
.marker-property2 .property__location .icon {
    display: none;
}
.marker-property2 .property__price {
    font-size: 17px;
    padding: 0;
    font-weight: 500;
    color: #3b4144;
}
.marker-property2 .property__price__symbol {
    font-size: 17px;
    padding: 0 3px 0 0;
    color: #3b4144;
    font-weight: 500;
}
.marker-property2 .property__month {
    color: #3b4144;
    font-weight: 500;
}
.marker-property2 .property__extrainfo {
    font-size: 12px;
    color: #899798;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    display: block;
}
.marker-property2 .property__extra {
    display: block;
    list-style: none;
    font-size: 12px;
    color: #A2A1A1;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1.4;
}
.marker-property2 .property__extra li {
    list-style: none;
    display: inline-block;
    margin-right: 7px;
    opacity: 1;
}
.marker-property2 .property__extra li .new-tag {
    display: inline-block;
    background-color: #A2A1A1;
    color: #fff;
    padding: 2px 5px;
    font-size: 12px;
    line-height: 1;
}
.marker-property2 .property__extra li:last-child {
    margin-right: 0;
}
.marker-property2 .property__extra li:hover {
    opacity: 1;
}
.marker-property2 .property__pricearea {
    font-size: 12px;
    padding-top: 0;
    vertical-align: bottom;
    display: inline-block;
}
.marker-property2 .property__pricearea:before {
    content: ', ';
    display: inline-block;
    padding-right: 2px;
}
.marker-property2 .property__livingarea {
    float: none;
    font-size: 12px;
    padding-top: 0;
    vertical-align: bottom;
}
.marker-property2 .property__livingarea:before {
    content: ', ';
    display: inline-block;
    padding-right: 2px;
}
.multi .marker-property2 .property {
    margin-bottom: 0;
    border-bottom: 1px solid #eee;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 20px 10px 10px;
    overflow: hidden;
}
.multi .marker-property2 .property__price {
    font-size: 15px;
}
.multi .marker-property2 .property__price__symbol {
    font-size: 15px;
}
.multi .marker-property2 .property__images {
    width: 90px;
    float: left;
}
.multi .marker-property2 .property__top {
    width: 130px;
    float: left;
    padding-left: 10px;
}
.multi .marker-property2 .property__title {
    padding: 0;
}
.multi .marker-property2 .property__title__parts {
    padding-bottom: 3px;
    display: block;
}
.small .marker-property2 .property {
    width: 180px;
}
.small .marker-property2 .property__price {
    font-size: 14px;
}
.small .marker-property2 .property__price__symbol {
    font-size: 14px;
}
.small .marker-property2 .property__title {
    font-size: 12px;
}
.small .marker-property2 .property__title__parts {
    font-size: 12px;
}
.small .marker-property2 .property__extra {
    font-size: 12px;
}
.small.multi .marker-property2 .property__images {
    width: 60px;
    float: left;
}
.small.multi .marker-property2 .property__top {
    width: 90px;
}
.leaflet-marker-icon--new:not(.exact) > div, .leaflet-marker-icon--new:not(.exact) > a > div {
    border: 1px solid white;
    background-color: var(--surface-color-700);
    color: #fff;
    font-weight: 500;
    transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
    background-clip: padding-box;
    box-sizing: border-box;
    border-radius: 50% !important;
}
.leaflet-marker-icon--new:not(.exact).single-property-pin > div, .leaflet-marker-icon--new:not(.exact).single-property-pin > a > div {
    width: 14px;
    height: 14px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
}
.leaflet-marker-icon--new:not(.exact).single-property-pin:before {
    background-color: var(--surface-color-900);
}
.leaflet-marker-icon--new:not(.exact).single-property-pin:before, .leaflet-marker-icon--new:not(.exact).single-property-pin:after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: scale(0) translateX(-50%) translateY(-50%);
    transform-origin: 0 0;
    transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
}
.leaflet-marker-icon--new:not(.exact).single-property-pin.medium-cirlce:before, .leaflet-marker-icon--new:not(.exact).single-property-pin.medium-cirlce:after {
    width: 40px;
    height: 40px;
}
.leaflet-marker-icon--new:not(.exact).single-property-pin.medium-cirlce:before {
    background-color: var(--surface-color-700);
}
.leaflet-marker-icon--new:not(.exact).single-property-pin.medium-cirlce:after {
    border: 1px solid var(--surface-color-700);
}
.leaflet-marker-icon--new.exact > a > div {
    width: 16px;
    height: 23px;
}
.leaflet-marker-icon--new.exact > a > div span {
    line-height: 1;
    display: block;
}
.leaflet-marker-icon--new.exact > a > div svg {
    width: 16px;
    height: 23px;
}
.leaflet-marker-icon--new.exact > a > div svg .marker {
    fill: var(--surface-color-700);
}
.leaflet-marker-icon--new.exact.single-property-pin > div, .leaflet-marker-icon--new.exact.single-property-pin > a > div {
    margin: 0;
}
.leaflet-marker-icon--new.exact.single-property-pin > a > div:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -6.5px;
    left: -10px;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background-color: var(--surface-color-700);
    opacity: 0.3;
    transform: scale(0);
    transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
}
.leaflet-marker-icon--new.exact.single-property-pin:hover > div, .leaflet-marker-icon--new.exact.single-property-pin:hover > a > div {
    pointer-events: none;
}
.leaflet-marker-icon--new.exact.single-property-pin:hover > a > div:after {
    transform: scale(1);
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact) > div, .leaflet-marker-icon--new.multi-property-pin:not(.exact) > a > div {
    width: 20px;
    height: 20px;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact) > div span, .leaflet-marker-icon--new.multi-property-pin:not(.exact) > a > div span {
    font-size: 10px !important;
    line-height: 18px !important;
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact):before {
    background-color: var(--surface-color-900);
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact):before, .leaflet-marker-icon--new.multi-property-pin:not(.exact):after {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    top: 50%;
    left: 50%;
    transform: scale(0) translateX(-50%) translateY(-50%);
    transform-origin: 0 0;
    transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact).medium-cirlce:before, .leaflet-marker-icon--new.multi-property-pin:not(.exact).medium-cirlce:after {
    width: 40px;
    height: 40px;
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact).medium-cirlce:before {
    background-color: var(--surface-color-700);
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact).medium-cirlce:after {
    border: 1px solid var(--surface-color-700);
}
.leaflet-marker-icon--new.multi-property-pin:not(.exact):hover {
    transform: scale(0) translateX(-50%) translateY(-50%);
}
.leaflet-marker-icon--new.multi-property-pin.exact > div {
    width: 16px;
    height: 23px;
}
.leaflet-marker-icon--new.multi-property-pin.exact > div > span {
    line-height: 1;
    display: block;
}
.leaflet-marker-icon--new.multi-property-pin.exact > div svg {
    width: 16px;
    height: 23px;
}
.leaflet-marker-icon--new.multi-property-pin.exact > div svg .marker {
    fill: var(--surface-color-700);
}
.leaflet-marker-icon--new.multi-property-pin.exact > div .text {
    position: absolute;
    left: 0;
    margin: auto;
    color: white;
    top: 3px;
    display: block;
    line-height: 1;
    width: 16px;
    text-align: center;
    pointer-events: none;
}
.leaflet-marker-icon--new.multi-property-pin.exact.multi-property-pin > div {
    margin: 0;
}
.leaflet-marker-icon--new.multi-property-pin.exact.multi-property-pin > div:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: -6.5px;
    left: -10px;
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 36px;
    background-color: var(--surface-color-700);
    opacity: 0.3;
    transform: scale(0);
    pointer-events: none;
    transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
}
.leaflet-marker-icon--new.multi-property-pin.exact.multi-property-pin:hover > div {
    pointer-events: none;
}
.leaflet-marker-icon--new.multi-property-pin.exact.multi-property-pin:hover > div:after {
    transform: scale(1);
}
.leaflet-marker-icon--new:hover {
    z-index: 5000 !important;
}
.leaflet-marker-icon--new:hover:not(.exact):before, .leaflet-marker-icon--new:hover:not(.exact):after {
    transform: scale(1) translateX(-50%) translateY(-50%) !important;
}
.leaflet-marker-icon--new.featured > div, .leaflet-marker-icon--new.featured > a > div {
    background-color: #16c663;
}
.leaflet-marker-icon--new.featured:hover > div, .leaflet-marker-icon--new.featured:hover > a > div {
    background-color: #16c663;
    border-color: rgba(22, 198, 99, 0.5);
}
.property-tag {
    width: auto !important;
}
.property-tag:hover {
    z-index: 5000 !important;
}
.property-tag a, .property-tag > div {
    width: auto !important;
    text-decoration: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    display: inline-block;
    position: absolute;
    white-space: nowrap;
    transform: translate(calc(-50% + 4px), calc(-100% + 4px));
}
.property-tag div {
    width: auto !important;
    display: inline-block;
    border: 1px solid var(--surface-color-700);
    box-shadow: rgba(0, 0, 0, 0.2) 0 2px 2px 0;
    background-color: #fff;
    color: #515050;
    font-weight: 500;
    height: auto;
    margin-left: 0;
    margin-top: 0;
    position: relative;
    border-radius: 5px;
    transition: all 0.2s ease-in-out;
    padding: 2px 6px;
    font-size: 13px;
}
.property-tag div span {
    /*centering the number, no need*/
    line-height: 24px !important;
}
.property-tag div:after {
    content: "";
    position: absolute;
    bottom: -4px;
    /* border width */
    left: 50%;
    margin-left: -2px;
    border-width: 4px 4px 0;
    /*5.6 pixels width*/
    border-style: solid;
    border-color: var(--surface-color-700) transparent;
    display: block;
    width: 0;
}
.property-tag div .fake-radius {
    display: block;
    position: absolute;
    background-color: var(--surface-color-700);
    border: thin solid var(--surface-color-700);
    top: 50%;
    left: 50%;
    border-radius: 100%;
    z-index: -1;
    transform: scale(0) translateX(-50%) translateY(-50%);
    transform-origin: 0 0;
    pointer-events: none;
    transition: 0.2s all cubic-bezier(0.39, 0.575, 0.565, 1);
}
.property-tag div:hover {
    background-color: var(--surface-color-700);
    color: #fff;
}
.property-tag div:hover .fake-radius {
    transform: scale(1) translateX(-50%) translateY(-50%);
}
.property-tag.featured {
    width: auto !important;
}
.property-tag.featured div {
    width: auto !important;
    border: 1px solid #fff;
    background-color: var(--surface-color-700);
    color: #fff;
    transition: none;
}
.property-tag.featured div:after {
    border-color: var(--surface-color-700) transparent;
    color: #fff;
}
.property-tag.featured:hover div {
    background-color: var(--surface-color-700);
}
.property-tag.featured:hover div:after {
    border-color: var(--surface-color-700) transparent;
}
.leaflet-rrose-tip-container {
    opacity: 0 !important;
    display: none;
}
.multi .leaflet-rrose-tip-container {
    display: block;
}
.mCS-dark-3.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar, .mCS-dark-3.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #3b4144 !important;
}






.ts-box[data-toggle] {
    cursor: pointer;
}

.t7-ts-block {
    padding-bottom: 0;
}

.t7-country-indices {
    margin-bottom: 20px;
}
.t7-country-indices .ts-box {
    position: relative;
    margin-bottom: 30px;
    background: var(--color-panel-bg);
    color: var(--color-panel-font);
}
.t7-country-indices .ts-box:after {
    color: var(--text-color-light-100);
    content: "\f0dd";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0.75rem;
    top: 24px;
    line-height: 0;
}

.t7-footer-address {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    line-height: 1.3;
}
.t7-footer-address a:hover {
    text-decoration: underline;
}
.t7-footer-address li {
    list-style: none;
    margin: 0 0 5px 0;
    padding: 0 0 0 25px;
    position: relative;
}
.t7-footer-address li i {
    position: absolute;
    top: 2px;
    left: 0;
}

#ts-results h4 {
    line-height: 1rem;
}

/* -- Pagination */
.pagination-info {
    text-align: center;
    display: block;
}

.t7-pagination .pagination {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.t7-pagination .pagination li a {
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: #191919;
    margin: 0 0.125rem;
    padding: 0.75rem 1rem;
    position: relative;
}
.t7-pagination .pagination li a:hover {
    background-color: #fff;
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
    color: #191919;
}
.t7-pagination .pagination li a:after {
    display: none;
    border-style: solid;
    border-width: 0.5rem 0.5rem 0 0;
    border-color: transparent transparent transparent transparent;
    bottom: -0.4375rem;
    content: "";
    height: 0;
    left: 0;
    position: absolute;
    width: 0;
    transition: 0.3s ease;
}
.t7-pagination .pagination li:first-child a, .t7-pagination .pagination li:last-child a {
    border-radius: 0;
}
.t7-pagination .pagination li.active a {
    background-color: var(--surface-color-700);
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.1);
    color: #fff;
}
.t7-pagination .pagination li.active a:after {
    border-color: var(--surface-color-700) transparent transparent transparent;
}

.t7-footer--alt #ts-footer {
    margin-top: 0;
}

.ts-map--overlay:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0.1;
    z-index: 100;
    visibility: visible;
}

.ts-has-bokeh-bg-custom #ts-main:before {
    display: block;
    content: "";
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 0;
    pointer-events: none;
    background: transparent;
    background: linear-gradient(to bottom, rgba(var(--surface-color-700-rgb), 0.15) 0%, transparent 30%, transparent 100%);
}

.pageContents--serp {
    padding: 0 20px;
}

.bg-image--agent-logo {
    background-size: auto 60px !important;
    background-repeat: no-repeat !important;
    background-color: #4c4c4c !important;
}

.quickSearchForm, .quickSearchFormById, .quickSearchViaCodeForm {
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    z-index: -100;
    visibility: hidden;
    width: 50%;
    transition: all 400ms ease;
    height: calc(100% - 114px);
}
.quickSearchForm__inner, .quickSearchFormById__inner, .quickSearchViaCodeForm__inner {
    position: absolute;
    width: 100%;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
}
.quickSearchForm__form, .quickSearchFormById__form, .quickSearchViaCodeForm__form {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.quickSearchForm .ts-box, .quickSearchFormById .ts-box, .quickSearchViaCodeForm .ts-box {
    box-shadow: 0 0.125rem 0.3125rem rgba(0, 0, 0, 0.2);
}

.ts-item.ts-item__lg .card-img,
.ts-card .card-img {
    height: auto;
    width: 100%;
    padding-bottom: 62.5%;
    background-position: center;
    background-size: cover;
}

.ts-item .ts-item__info, .ts-results__grid .ts-item__info {
    right: 0;
}

.ts-item .ts-item__info h4 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
}

.ts-item .ts-item__info aside {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#flashedMessageModal .modal-header .close {
    margin: 0;
    float: right;
    position: absolute;
    top: 0;
    right: 0;
}

.navbar-toggler-icon {
    pointer-events: none;
}

body.filters-opened {
    position: static;
    overflow-y: auto;
}
body.filters-opened .quickSearchForm, body.filters-opened .quickSearchFormById, body.filters-opened-searchViaCode .quickSearchViaCodeForm {
    top: 114px;
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}
body.filters-opened:before {
    opacity: 0.7;
    z-index: 100;
    visibility: visible;
}
body:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-color-700);
    opacity: 0;
    visibility: hidden;
    z-index: -100;
    transition: all 200ms ease;
}

.form-group {
    position: relative;
}
.form-group .error-help-block {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    font-size: 12px;
    color: red;
    display: block;
    padding-top: 0;
}

#newsletterRegistration .custom-checkbox {
    margin-top: 15px;
    color: #fff !important;
}
#newsletterRegistration .custom-checkbox a {
    text-decoration: underline;
    color: rgba(255, 255, 255, 0.6);
}

.ts-description-list__line {
    font-size: 14px;
}

#gallery-carousel [data-bg-image] {
    background-size: contain;
    background-repeat: no-repeat;
}

.details-custom-slider {
    opacity: 0;
    transition: opacity 600ms ease;
}
.details-custom-slider.show {
    opacity: 1;
}

#submit-banner .ts-background {
    z-index: 0;
}

.details-custom-slider {
    padding: 0 15px !important;
    margin-top: 30px;
}
.details-custom-slider .swiper-slide {
    width: auto;
    box-shadow: 0 0.1875rem 0.9375rem rgba(0, 0, 0, 0.15);
    border-radius: 0.25rem;
}
.details-custom-slider .swiper-slide img {
    border-radius: 0.25rem;
    height: 290px;
    width: auto;
}
.details-custom-slider .swiper-pagination {
    position: relative;
    left: auto;
    bottom: auto;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
}
.details-custom-slider.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 100%;
    max-width: 10px;
    height: auto;
    margin: 0 5px;
    background-color: #191919;
    opacity: 0.2;
}
.details-custom-slider.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet:before {
    display: block;
    content: "";
    padding-bottom: 100%;
}
.details-custom-slider.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 0.7;
}

.price-per-month-label {
    display: block;
    margin: -20px 0 20px 0;
    text-align: center;
}

.navbar-nav {
    padding: 3px 0;
}

.navbar-nav.topbar a:hover {
    text-decoration: underline;
}

.leaflet-rrose.multi .leaflet-rrose-content.leaflet-popup-scrolled {
    overflow-x: hidden;
}


.t7-marker-popup .ts-card {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    color: var(--text-color-light-100);
    box-shadow: none !important;
}
.t7-marker-popup .ts-card:hover {
    box-shadow: none !important;
    transform: translateY(0) !important;
}
.t7-marker-popup .ts-item__info {
    bottom: inherit;
    left: 0;
    top: 0;
    transform: translateY(-100%);
}
.t7-marker-popup .ts-item__info-badge {
    top: -0.875rem;
    bottom: inherit;
}

#ts-footer {
    position: relative;
    z-index: 1;
}

.splitPage__column {
    width: 50%;
}
.splitPage__column.left {
    position: fixed;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.splitPage__column.left .page-title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: -80px 0 0 0;
    padding: 0 20px;
    text-align: center;
}
.splitPage__column.left .page-title .ts-title {
    margin: 0;
    padding: 0;
}
.splitPage__column.left .page-title .ts-title h1 {
    font-size: 2.8rem;
    font-weight: 300;
    color: #fff;
    margin: 0;
    padding: 0;
}
.splitPage__column.left .splitPage__column__inner {
    position: relative;
}
.splitPage__column.left .splitPage__column__inner .page-title {
    z-index: 1;
}
.splitPage__column.left .splitPage__column__inner:before {
    content: "";
    background: #000;
    opacity: 0.7;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
}
.splitPage__column.right {
    float: right;
    padding-top: 20px;
}
.splitPage__column__inner {
    padding: 10px 20px;
    position: relative;
    width: 100%;
    height: 100%;
}
.splitPage__column--map .splitPage__column__inner {
    padding: 0;
}
.splitPage__column--map .splitPage__column__inner:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-color-700);
    opacity: 0.1 !important;
    z-index: 100 !important;
    visibility: visible;
    pointer-events: none;
}

#propertySearch {
    background: rgba(var(--color-search-bg-rgb), 0.95);
}

.contactInfoOptions dd {
    margin: 0;
}
.contactInfoOptions figure > i {
    width: 18px;
    text-align: center;
}

.t7-footer-address li > i {
    width: 18px;
    text-align: center;
}

.ts-map.ts-map3 {
    height: 100%;
}

.noResultsMapPlaceholder {
    position: relative;
}
.noResultsMapPlaceholder__inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: 0.3s ease;
    height: calc(100vh - 116px);
    position: fixed;
    top: 116px;
    left: 0;
    width: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
}
.noResultsMapPlaceholder__inner:after {
    background-color: black;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.5;
    z-index: 0;
}
.noResultsMapPlaceholder__content {
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
    padding: 0 20px;
}
.noResultsMapPlaceholder__content h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #fff;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 1199px) {
    .porperty-form-btn {
        float: none;
        width: 100%;
        margin-bottom: 1rem;
    }
    .quickSearchForm, .quickSearchViaCodeForm, .quickSearchFormById {
        width: 100%;
        left: 0;
    }
    .toggle-filters-btn span {
        display: none;
    }
    .noResultsMapPlaceholder {
        display: none;
    }
    .navbar-brand .logo__holder img {
        max-height: 100px;
    }
}
@media screen and (max-width: 767px) {
    .t7-pagination .pagination li a {
        margin: 0 0.1rem;
        padding: 0.5rem 0.75rem;
    }
    .custom-panel {
        padding: 0;
    }
    .custom-panel2 {
        padding: 0;
        width: 100%;
    }
    .custom-panel2 .custom-select.t7-dynamicSelect.ts-selected {
        max-width: 200px;
    }
    .navbar.navbar-expand-md ul.navbar-nav {
        display: block;
    }
    .navbar.navbar-expand-md ul.navbar-nav > .nav-item {
        display: block;
    }
    .navbar.navbar-expand-md ul.navbar-nav .flexMenu-popup ul.ts-child {
        left: auto !important;
        right: auto !important;
    }
    .splitPage__column {
        width: 100%;
        float: none;
    }
    .splitPage__column.left {
        position: relative;
        z-index: 0;
        top: auto;
        bottom: auto;
        left: auto;
        margin-top: -20px;
    }
    .splitPage__column.left .page-title {
        position: relative;
        z-index: 0;
        top: auto;
        bottom: auto;
        left: auto;
        margin: 0;
        padding: 30px 0 30px 0;
        text-align: left;
    }
    .splitPage__column.right {
        float: none;
    }
    .splitPage__column--map {
        height: 40vh;
    }
    .navbar.navbar-expand-md ul.navbar-nav > .nav-item:last-child {
        margin-right: 0;
    }
    .toggle-filters-btn {
        position: absolute;
        top: 10px;
        right: 70px;
        padding: 9px;
    }
    body.filters-opened {
        position: static;
        overflow-y: auto;
    }
    #ts-footer {
        margin-top: 3rem;
    }
    .t7-country-indices {
        margin-bottom: 20px;
    }
    .t7-country-indices .ts-box {
        margin-bottom: 10px;
    }
    #regMail {
        margin-bottom: 15px;
    }
    .navbar-brand {
        width: auto;
        height: auto;
        margin-top: -1rem;
        margin-bottom: -1rem;
        padding: 0;
    }
    .navbar-brand .logo__holder {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }
    .navbar-brand .logo__holder img {
        width: 100%;
        height: 70px;
        max-width: 200px;
        box-shadow: none;
        object-position: left center;
        padding: 10px;
    }
    .ts-map3 {
        display: none !important;
    }
    .ts-full-screen .ts-map2 {
        display: none !important;
    }
    .ts-results__grid.scroll-wrapper {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: translateX(0) !important;
    }
    .ts-results__grid.scroll-wrapper .scrollbar-inner {
        padding-right: 0 !important;
    }
    .ts-results__grid .ts-result-link {
        display: inline-block;
        margin: 0;
        width: 100% !important;
    }
    .serp-controls {
        padding: 10px 15px 0 15px !important;
    }
    .serp-controls .float-sm-right {
        padding-right: 0;
    }
    .t7-pagination .pagination li.active a:after {
        display: none;
    }
}
@media screen and (max-width: 575px) {
    .toggle-filters-btn {
        top: 12px;
        right: 75px;
    }
    .details-custom-slider .swiper-slide {
        box-shadow: none !important;
        background: none;
    }
    .details-custom-slider .swiper-slide .ts-zoom {
        display: none !important;
    }
    .details-custom-slider .swiper-slide img {
        width: 100%;
        height: 290px;
        object-fit: cover;
    }
    .details-custom-slider .swiper-slide img.portrait, .details-custom-slider .swiper-slide img.even {
        object-fit: contain;
    }
}
/*Working Hours*/
.working-hours {
    position: relative;
    display: block;
    text-decoration: underline;
    margin: 10px 0;
}
.working-hours.open .dropdown-menu {
    display: block;
}
.working-hours .dropdown-menu {
    position: absolute;
    top: 100%;
    z-index: 1000;
    display: none;
    float: left;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    padding: 10px 15px;
    left: 0;
    right: auto;
    min-width: 280px;
    max-height: calc(100vh - 100px);
    overflow: auto;
}
.working-hours .dropdown-menu.open--on-top {
    top: auto;
    bottom: 100%;
}
.working-hours .working-hours__btn {
    padding: 0;
    background: none;
    outline: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}
.working-hours .working-hours__btn > i {
    position: static;
}
.working-hours.opaque-button .working-hours__btn {
    opacity: 0.5;
}
.working-hours .working-hours__title {
    font-size: 18px;
    font-weight: bold;
}
.working-hours td {
    font-size: 13px;
    white-space: nowrap;
}
.working-hours td:not(:nth-child(1)) {
    padding-left: 10px;
}
.working-hours td.last {
    padding-left: 0;
}

/*Search by ID*/
.search-id {
    width: auto;
    background-color: #f6f6f6;
    margin-left: 10px;
    margin-right: 16px;
    border-radius: 4px;
    border: 1px solid #f6f6f6;
    transition: 0.1s;
}
.search-id:focus .input-group {
    position: relative;
}
.search-id:focus .input-group .btn {
    background: white;
    border: 1px solid var(--color-top-bg);
    color: #007bff;
}
.search-id input {
    width: 200px;
    background-color: transparent;
    padding: 8px;
    border-radius: 4px;
    height: auto;
    min-height: auto;
    font-size: 14px;
    border: none;
}
.search-id input:-webkit-autofill, .search-id input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}
.search-id .reset-input {
    border: none;
    border-radius: 0;
    background-color: transparent;
}
.search-id svg {
    display: inline-flex;
    align-items: center;
    margin: auto;
    fill: #71717A;
}
.search-id .form-group {
    display: flex;
    align-items: center;
}
.search-id .form-group .btn {
    width: 40px;
    height: 40px;
    box-shadow: none;
    border: none;
    border-left: 1px solid transparent;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
}
.search-id .reset-btn {
    right: 50px;
}

.search-id:focus-within {
    background: white;
    border-color: #A3A3A3;
}
.search-id:focus-within svg {
    fill: #0000FF;
}
.search-id:focus-within input,
.search-id:focus-within input:-webkit-autofill,
.search-id:focus-within input:-webkit-autofill:hover,
.search-id:focus-within input:-webkit-autofill:focus {
    border: none;
    background-color: white;
}
.search-id:focus-within .form-group .btn {
    border-left: 1px solid #A3A3A3;
}
.search-id:focus-within .reset-btn {
    opacity: 1;
}

.form-input:focus-within .reset-btn {
    opacity: 1;
}

.search-id .reset-btn, .quickSearchForm__form .reset-btn {
    position: absolute;
    border: none;
    display: block;
    width: 16px;
    height: 16px;
    line-height: 16px;
    font-size: 12px;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #A5A5A5;
    color: white;
    padding: 0;
    outline: none;
    cursor: pointer;
    transition: 0.1s;
    opacity: 0;
    z-index: 10;
}
.search-id input:-webkit-autofill,
.search-id input:-webkit-autofill:focus, .quickSearchForm__form input:-webkit-autofill,
.quickSearchForm__form input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}

.ts-center__vertical .js-toggle-filters {
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #191919;
    background: transparent;
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    padding: 10px 12px;
}
.ts-center__vertical .js-toggle-filters:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar .toggle-filters-btn {
    border-radius: 4px;
    border: 1px solid #BFBFBF;
    color: #0000FF;
    top: 15px;
}

.quickSearchForm__form .toggle-filters-btn {
    position: relative;
    top: auto;
    right: auto;
    padding: 10px 0 10px 10px;
}
.quickSearchForm__form .reset-btn {
    right: 12px;
}

.custom-panel span {
    color: #191919;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.hide {
    display: none;
}

@media screen and (min-width: 1300px) {
    .search-id {
        margin-left: 24px;
    }
}
.navbar-toggler {
    padding: 7px;
}
.navbar-toggler-icon {
    width: 24px;
    height: 24px;
}

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

.description-text p, .ts-description-list__line dd, .ts-list-colored-bullets {
    color: rgba(var(--color-primary-font-rgb), 0.8);
}



