.hidden {
    display: none !important;
}
.mt-5em{
    margin-top: 5em;
}
.item .tns-outer {
    position: relative;
}

/* .item .tns-outer .tns-controls {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: space-between;
    padding: 0 15px;
} */ /* delete? */

.item .img-wrap {
    overflow: hidden;
}

/* .item .tns-outer .tns-controls button {
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(229, 229, 229, .8);
    color: #666666;
    border: unset;
    outline: unset;
} */ /* delete? */

.property-content .thumb-slider {
    width: 100% !important;
}
.property-details .property-details__list li{
    margin-bottom: 0.5rem;
    color: var(--lighter-font-color);
    font-size: var(--property-details-font-size);
}
.property-details .property-details__list li span{
    font-weight: 600;
}
.property-gallery__slider {
    visibility: hidden;
    opacity: 0;
    transition: all ease 0.5s;
    margin-bottom: 5px;
}

.property-gallery__slider.is-initialized {
    visibility: visible;
    opacity: 1;
}

.propery-gallery__item {
    border-radius: 12px;
    overflow: hidden;
    max-height: 732px;
}

.propery-gallery__item.splide__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#property-gallery__slider .splide__arrow svg{
    fill: #fff;
}
#property-gallery__thumbnail-list>img.is-active {
    border-radius: 3px;
    border: 3px solid #F8D931;
}

/* Native horizontally-scrollable thumbnail strip (no Splide). Splide is only
   used for the main image slider; the thumbnail list flows naturally so the
   user can scroll the scrollbar without fighting transform-based positioning. */
#property-gallery__thumbnail {
    visibility: visible !important;
    opacity: 1 !important;
}
#property-gallery__thumbnail .splide__track {
    overflow-x: auto;
    overflow-y: visible;
}
#property-gallery__thumbnail .splide__list {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 10px;
    transform: none !important;
    width: max-content;
}
#property-gallery__thumbnail-list > img {
    flex: 0 0 auto;
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 3px;
    cursor: pointer;
    display: block;
}

#property-gallery__thumbnail-track {
    overflow-x: scroll;
    padding-bottom: 5px;
}

#property-gallery__thumbnail-track::-webkit-scrollbar {
    height: 15px;
    border-radius: 3px;
}
#property-gallery__thumbnail-track::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
#property-gallery__thumbnail-track::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */
#property-gallery__thumbnail-track::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.collapse-button:focus,
.collapse-button{
    border: unset;
    background-color: unset;
    outline: 0;
    display: block;
    position: relative;
    width: 100%;
    text-align: left;
    padding: 0;
    scroll-margin-top: 100px;
}
.collapse-button::after {
    content: '+';
    font-weight: 700;
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.collapse-button.active::after{
    content: '-';
}
.content-information{
    position: relative;
}
.collapse__content{
    padding: 0 10px;
    transition: all ease 0.1s;
    max-height: max-content;
    
}
.collapse__content.collapse{
    opacity: 0;
    visibility: hidden;
    display: none;
}
#property-map{
    height: 500px;
    z-index: 1;
}
.is-loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-holder{
    background-image: var(--logo-icon);
    max-width: 120px;
    width: 100%;
    height: 120px;
    background-size: contain !important;
    background-repeat: no-repeat;
    animation: rotateBall 3s linear 0s infinite normal forwards;
}
.filter-blur{
    filter: blur(10px);
}

.recommended-properties .property-amenities{
	min-height: 92px;
}
.recommended-properties .splide__arrow{
    height: 20px;
    width: 20px;
}
.recommended-properties .splide__arrow svg{
    height: 0.6em;
    width: 0.6em;
    fill: #666666;
}
.property-reviews .review-item .review-rating > .review-points{
    text-wrap: nowrap;
}
.property-sidebar{
    position: relative;
    overflow: hidden;
}
.property-address a{
    text-decoration: underline;
}
.collapse__content p, .collapse__content span, .collapse__content a{
    font: inherit !important;
}
.collapse-button-mb::before{
    content: '>';
    font-style: normal;
    transform: rotate(270deg);
    display: block;
    font-weight: 700;
}
.collapse-button-mb{
    background: unset;
    border: unset;
    outline: none;
    font-style: italic;
    text-align: center;
    width: 100%;
    font-weight: 400;
    display: none;
}
.collapse-button-mb.active{
    display: block;
}
.collapse-button > h3{
    pointer-events: none;
}
@media all and (min-width: 991px){
    .property .property-sidebar .property-widget{
        position: absolute;
        top: 0;
        left: 0;
    }
    .collapse__content .ti-widget.ti-goog .ti-col-1 .ti-review-item{
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}
@media all and (max-width: 480px){
    #property-map{
        height: 250px;
    }
}

@keyframes rotateBall {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}