/*
-------------------------------
 OBJECTS (Card)
-------------------------------
*/
.objects-overview-search {
    margin-bottom: 15px;
    margin-right: 0px;
}
.objects-overview-search .search-input-group {
	position: relative;
}
.objects-overview-search .search-input-group i {
	position: absolute;
	top: 1rem;
	left: 1rem;
}
.objects-overview-search .search-input-group input {
	padding-left: 2.5rem;
    margin: 0 !important;
    background: transparent
	
}
.objects-overview-search .search-input-group input {
	border-radius: 5px 0 0 5px;
	font-size: 16px !important;
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.objects-overview-search .search-input-group input:focus {
	background: #fff;
 
}
.objects-overview-search .input-group-field:last-child {
    border-radius: 5px !important;
}

.objects-overview-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 25px;
    padding-bottom: 15px;
}
.objects-overview-heading .objects-overview-title {
    margin: 5px 0 0 0;
}
.objects-overview-heading #order {
    display: flex;
    align-items: center;
    padding-right: 30px;
}
.objects-overview-heading-buttons {
    display: flex;
    align-items: center;
} 
.objects-overview-heading .select2-container {
    min-width: 160px;
}
.objects-overview-heading .select2-container .select2-selection--single {
    border: 0 !important;
    margin: 0 10px !important;
    font-size: 14px;
    font-weight: 400 !important;
}
#results {
    padding-top: 30px;
}

/* #results:before {
    position: absolute;
	top:0;
	left: -80px;
	
	content:'';
	z-index: -1;
    
    width: 30%;
    height: 600px;
	
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 100 100'%3E%3Crect x='0' y='0' width='19' height='19' fill-opacity='0.6' fill='%23000000'/%3E%3C/svg%3E");
	opacity: 0.1;
} */

.object {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: stretch;
    position: relative;
    border: 0px solid #fff;
    background: #fff;
    margin: 0px 0px 0px;
    padding: 0;
    min-height: 280px;
    border-radius: 6px !important;
    
    z-index: 99;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.object.wide{
    flex-direction: row;
}
.object:before {
	position: absolute;
	top: 0;
	left:0;
	bottom:0;
	right:0;
	border-radius: 6px;
    content:'';
    border: 0px solid rgb(0,0,0);
    box-shadow: 2px 4px 12px rgb(0, 28, 85);
	/* box-shadow: 0px 8px 8px -4px rgb(35, 34, 34); */
	opacity: .1;
	z-index: 0;
	visibility: visible;
	 -webkit-transition: opacity 0.1s ease-in-out;
	-moz-transition: opacity 0.1s ease-in-out;
	-ms-transition: opacity 0.1s ease-in-out;
	transition: opacity 0.1s ease-in-out;
}
.leaflet-popup-content .object:before {
    display: none;
}

.object.highlight:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 20px #000;
    border: 0px solid rgb(0, 0, 0);
    border-radius: 0px !important;
    content: '';
    opacity: 0.3;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}


.object.highlight:hover:before {
    opacity: 0.5;
}
.objects-slider .object {
    min-height: 245px;
    margin: 0px 0px 40px;
}


.object-top {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    /* max-height: ; */
    z-index: 3;
}
.highlight .object-top {
    border-radius: 0px 0px 0 0;
}
.object-top .object-status {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0px 0 0px;
    border-radius: 3px;
    color: #fff;
    background: #151A1E;
    padding: 2px 10px;
    font-size: 13px;
    font-weight: 700;
    z-index: 7;
}

.object-top .object-status.bg-gebruikt {
    background: #034391;
}
.object-top .object-status.bg-nieuw {
    background: #FE7B12
}




.object-top .object-badge {
    position: absolute;
    top: 10px;
    left: -10px;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    background: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
    z-index: 99 ;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: perspective(0);
}
.object-badge.stage-v {
	background-image: url('../images/Logo_StageV_Doosan_PNG.png');
}

.object-image {
    width: 100%;
    height: 213px;
    overflow: hidden;
    position: relative;
    display: block;
    
    padding: 0px 0px 0px 0px;
    border-radius: 6px 6px 0 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    /* -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0); */
    transform: perspective(0);
    z-index: 2;
}
/* .object-image:after {
	position: absolute;
	top: 0;
	left:0;
	bottom:0;
	right:0;
	border-radius: 6px 6px 0 0;
	content:'';
	opacity: 0.1;
	z-index: 2;
	visibility: visible;
	border: 1px solid rgb(35, 34, 34);
	border-bottom: 0;
	transition: opacity 0.1s ease-in-out;
} */

.object-image a {
    width: 100%;
}
.object.event .object-image {
    border-radius: 0px 0px 0 0;
}


.object-image img {
    width: 100% !important;
    max-width: 600px !important;
    height: 220px;
    object-fit: scale-down;
    position: relative;
    -webkit-transition: transform 0.2s ease-in-out;
    -moz-transition: transform 0.2s ease-in-out;
    -ms-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
}

.object-image:hover img {
    transform: scale(1.05);
}

.object-bottom {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 0 0 0px 0px;
    flex-grow: 2;
}

.object-section {
    position: relative;
    display: block;
    margin-top: 0px;
    padding: 15px 25px 15px ;   
    flex-grow: 2;
}

.object-content {
    position: relative;
    height: 70px;
    overflow: hidden;
}


.object-content:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgb(255, 255, 255);
    background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    /* background: rgb(238, 243, 243);
    background: linear-gradient(0deg, rgba(238, 243, 243, 1) 0%, rgba(238, 243, 243, 0) 100%); */
    content: '';
}

.object-section .object-title {
    font-family: 'loos-normal';
    line-height: 1.2;
    font-weight: 700;
    font-size: 18px;
    color: #151A1E;
    margin-bottom: 0px;
    min-height: 40px;
}



.object-section .object-title a {
    color: #111;
    position: relative;
    text-decoration: none;
}
.object-section .object-title a:hover {
    color: #ce232b;
    position: relative;
}

.object-lead {
    display: block;
    font-size: 0.96rem;
}
.object-description {
	position: relative;
	overflow: hidden;
	min-height: 80px;
	max-height: 85px;
	padding: 0px 0;
	margin-top: 0px;
}
.object-description:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40px;
	content: '';
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}
.object-section p {
    color: rgba(17, 17, 17, 0.7);
    font-size: 14px;
    margin: 0;
}
.sidebar-extra .object-section p {
    font-size: 14px;
    line-height: 1.4;
}

.object-listing {
    margin:0px 0 0 0;
    
    padding:0;
}

.object-listing li { 
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 1.7;
    padding: 2px 0;
    border-bottom: 1px solid #eee;
}
.object-listing li:last-child { 
    border:0;
}
.object-listing li span { 
    width: 30%;
    padding-right: 5px;
}
.object-listing li span i { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    background: rgba(19, 25, 51, 0.08);
    font-size: 13px;
    margin-right: 3px;
}

.object-listing li .value { 
    width: 70%;
    text-align: left;
    font-weight: 700;
}

.object-brand {
    position: absolute;
    left: 20px;
    top: -50px;
    width: 80px;
    height: 70px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.164);
    z-index: 7;
}
.object-brand img {
    max-width: 48px;
    max-height: 48px;
}

.object-footer {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    padding: 0px 25px 15px;
    text-align: left;
    
}
.object-price {
    font-weight: 700;
    line-height: 1;
    margin-right: 0px;
    color: #151A1E;
}


@media (max-width: 1130px) {
    .object-section .object-title {
        font-weight: 700;
        font-size: 18px;
        color: #111;
    }
}
@media (max-width: 1022px) {
    .objects-overview-heading {
        flex-direction: column;
        padding-left: 5px
    }
    .objects-overview-heading #order {
        display: flex;
        align-items: center;
        padding-right: 0px;
    } 
    .objects-overview-heading-buttons {
        width: 100%;
        padding-top: 10px;
        flex-direction: row-reverse;
        justify-content: space-between;
        /* border-top: 1px solid #eee; */
    }
    .objects-overview-heading-buttons .select2-container {
        margin-left: 20px;
    }
    .objects-overview-heading-buttons .select2-container .select2-selection--single .select2-selection__rendered {
        padding-left: 0 !important;
    }
    .objects-overview-heading .select2-container .select2-selection--single {
        margin-left:0 !important;
        
    }
    .mobile-map-button {
        
        white-space: nowrap;
    }
    .mobile-filters-button {
        order: 1;
        white-space: nowrap;
    }

    .object-section {
        position: relative;
        display: block;
        margin-top: 0px;
        padding: 15px 15px 15px ;   
        flex-grow: 2;
    }
}
@media (max-width: 767px) {
    .objects-overview-heading {
        padding-left: 0px;
    }
    .objects-overview-heading .objects-overview-title {
        margin: 5px 0 0 5px;
        font-size: 18px;

    }
    .objects-overview-heading-buttons {
        width: 100%;
        padding-top: 10px;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        /* border-bottom: 1px solid #eee; */
    }
    .objects-overview-heading #order { 
        order: 4
    }
    .mobile-map-button {
        flex-grow: 2;
        order: 2;
        white-space: nowrap;
    }
    .mobile-filters-button {
        flex-grow: 2;
        order: 1;
        white-space: nowrap;
    }

    .objects-slider .object {
        min-height:225px;
        margin: 0px 0px 40px;
    }
    .object-top .object-location {
        font-size: 12px;
        padding-left: 15px;
    }
    .object-top .object-status {
        position: absolute;
        top: 10px;
        right: 10px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        margin: 0px 0 0px;
        color: #fff;
        padding: 2px 10px;
        font-size: 11px;
        font-weight: 700;
        
    }
    .object-content {
        position: relative;
        height: 50px;
        overflow: hidden;
    }
    .object-section {
        padding: 15px 15px 15px ;  
    }

    .object-section .object-type {
        font-size: 12px;
    }
    .object-section .object-title {
        line-height: 1.1;
        font-weight: 700;
        font-size: 18px;
        min-height: auto;
        
    }
    .sidebar-extra .object-title {
        font-size: 16px;
        line-height: 1.1;
    }
    .object-description {
        position: relative;
        overflow: hidden;
        min-height: 60px;
        max-height: 65px;
        padding: 0px 0;
        margin-top: 0px;
    }
    .object-description:after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 30px;
        content: '';
        background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
        background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
    }
    .object-section p {
        color: #3B3B3B;
        font-size: 13px;
        line-height: 1.3;
        margin: 0;
    }
    .object-listing li{
        font-size: 13px;
    }
    .object-footer {
        font-size: 14px;
        padding-left: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .object-footer .object-price {
        margin-top: 5px;
    }

    .object-footer .button {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/*
-------------------------------
 OBJECTS (Small item)
-------------------------------
*/

.object-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: stretch;
    position: relative;
    border: 0px solid #fff;
    color: rgba(19, 25, 51, 0.6);
    padding: 10px;
    margin-bottom: 10px;
    min-height: 20px;
    border-radius: 10px !important;
    z-index: 99;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}
.object-item:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-shadow: 0 0 30px #000;
    border: 0px solid rgb(0, 0, 0);
    border-radius: 10px !important;
    content: '';
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1)
}

.object-item:hover:before {
    opacity: 0.1;
}
.object-item-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.object-item-image {
    margin-right: 20px;
}
.object-item-image img {
    border-radius: 5px;
}
.object-item-company {
    display: inline-block;
    font-size: 14px;
   
}
.object-item-title {
    font-size: 16px;
    line-height: 1.1;
    margin-bottom:0;
}



/*
-------------------------------
 DETAIL
-------------------------------
*/
.bg-detail {
    position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 600px;
    z-index: 0;
}
.bg-detail:after {
	position: absolute;
    left: 0%;
	top: 0;
	width: 100%;
	height: 240px;
	content:'';
	background: rgb(5,30,80);
	background: linear-gradient(180deg, rgba(5,30,80,1) 0%, rgba(5,30,80,0.4051995798319328) 50%, rgba(5,30,80,0) 80%);
	opacity: 0.9;
	
	z-index: 2;
}

.bg-detail-image {
	position: absolute;
	top:0;
	left: 0;
	right:0;
    bottom:0;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
}
/* .bg-detail-image:after {
    position: absolute;
	bottom: 0px;
	left: 5%;
	width: 90%;
    height: 100%;

    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 50%;
	background-image: url('../images/doosan-lines-dark.svg');
	opacity: 0.06;
    content: '';
    z-index: 2;
} */
.bg-detail-image.alt {
    height: 460px;
}
.no-cover .bg-detail-image.alt {
    height: 260px;
}
.object-section-detail {
    position: relative;
    padding-bottom: 80px;

    z-index: 99;
}
.object-detail-wrapper {
    position: relative;
    padding-right: 50px;
    padding-bottom: 80px;
    z-index: 2;
}

/* .object-detail-wrapper:before {
    position: absolute;
	top:0;
	left: 100%;
	
	content:'';
	z-index: -1;
    
    width: 600px;
    height: 600px;
	
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' viewBox='0 0 100 100'%3E%3Crect x='0' y='0' width='19' height='19' fill-opacity='0.6' fill='%23000000'/%3E%3C/svg%3E");
	opacity: 0.1;
} */

.object-detail {
    position: relative;
    padding-top:0 !important;
    /* padding: 25px !important; */
    margin: auto;
}
.object-detail-heading {
    padding: 10px 0 20px 23px;
}

.object-detail-heading .object-badge {
    position: absolute;
    bottom: -60px;
    right: 60px;
    width: 160px;
    height: 160px;
    border-radius: 100px;
    background: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
    z-index: 99 ;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: perspective(0);
}
.object-badge.stage-v {
	background-image: url('../images/Logo_StageV_Doosan_PNG.png');
}

.object-detail-title {
    line-height: 1;
    position: relative;
    font-size: 56px;
    font-weight: 700;
    margin: 0;
    left: -1px;
}


.object-detail-status {
    display: inline-block;
    margin: 0px 0 5px;
    color: #fff;
    padding: 4px 10px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 3px;
    z-index: 7;
}
.object-detail-status.bg-gebruikt {
    background: #034391;
}
 .object-detail-status.bg-nieuw {
    background: #FE7B12
}
.object-detail-info {
    max-width: 50%;
    column-count: 2;
    font-size: 18px;

    
    padding: 10px 0 10px;
    margin: 0;
}
.object-detail-info * {
    display: flex;
    align-items: center;
}

.object-detail-info li span.value {
    margin-left: 5px;
    font-weight: 700;;
}


.object-detail-location {
    display: block;
    margin: 0px 0px 0px;
    color: rgba(35, 34, 34, 0.7);
    z-index: 7;
}
.object-detail-type {
    margin: 0px 0px 0px 0px;
    color: #FE7B12;
    z-index: 7;
}

.object-detail-price {
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    margin-right: 0px;
    color: #151A1E;
}




/* Slides */
.object-detail-slides-container {
	display: none;
	visibility: hidden;
}

.object-detail-slides .swiper-slide {
	width: 40%;
	padding-left: 30px;
}
.object-detail-slides .swiper-slide img {
	width: 100%;
	max-width: auto;
	border-radius: 16px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.068);
}

.object-detail-slides .swiper-slide:last-child {
	margin-right: 30px;
}
.object-detail-slides .swiper-slide.more span {
	position: absolute;
	top:0;
	left: 30px;
	right:0;
	bottom:0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	background-color: rgba(6, 71, 136, 0.7);
	color: #fff;
	border-radius: 16px;
	font-size: 14px;
	padding: 40px;
	font-weight: 500;
	line-height: 1.3;
}


/* Grid */
.object-detail-grid {
    position: relative;
    padding-bottom: 20px;
}

.object-detail-grid-x:before,
.object-detail-grid-x:after {
	position: absolute;
	transform: translate3d(0, 0, 0);
	content:'';
	width: 400px;
	height: 400px;
	background: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
    z-index: -1;
	
}

/* .object-detail-grid-x:before {
	bottom: -100px;
	right: 0px;
    width: 100%;
	background-image: url('../images/doosan-lines-dark.svg');
	opacity: 0.2;
} */
/* .object-detail-grid-x:after {
    
	bottom: -100px;
	left: -70px;
	width: 400px;
    height: 400px;
    background-size: contain;
	background-image: url('../images/dots-dark.svg');
    opacity: 0.1;
} */
.object-detail-grid-x {
    position: relative;
    z-index: 3;
}

.object-detail-grid a.photos-detail {
	display: block;
	position: relative;
    /* -webkit-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s;
	transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s; */
}
/* .object-detail-grid a.photos-detail:hover {
	transform: scale(1.03);
} */
.object-detail-grid-x a.photos-detail:before {
	position: absolute;
	top:0;
	left:0;
	right: 0; 
	bottom:0px;
	border-radius: 6px;
    border: 1px solid #000;
	opacity: 0.08;
	content: '';
	display: block;
	-webkit-transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s;
	transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s;
	z-index: 1;
}
.object-detail-grid img {
    width: 100%;
	border-radius: 6px;
}
.object-detail-grid-x a.photos-detail:after {
	position: absolute;
	top:0;
	left:0;
	right: 0; 
	bottom:0px;
	border-radius: 6px;
	opacity: 0;
	content: '';
	display: block;
	background: rgb(0, 0, 0);
	-webkit-transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s;
	transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.4s;
	z-index: 1;
}
.object-detail-grid-x a.photos-detail:hover:after {
	opacity: 0.1;
}
.object-detail-grid .grid-button {
	position: absolute;
	bottom: 15px;
	right: 15px;
	display: block;
	min-width: 200px;
	white-space: nowrap;
	font-size: 14px;
	font-weight: 700;
	padding: 15px 20px;
	border-radius: 3px;
	background: #fff;
	color: #151A1E;
    z-index: 99;
}


.object-detail-gallery {
	margin-bottom: 20px;
}
.object-detail-gallery .photos-detail i {
	font-size: 30px;
	margin-bottom: 10px;
    color: #FE7B12;
    
}
.object-detail-grid .photos-detail:hover .grid-button {

    z-index: 99;
}
@media (max-width: 1130px) {
    .bg-detail,
    .bg-detail-image {
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 660px;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 1;
        z-index: 0;
    }
    .bg-detail-image:after {
        position: absolute;
        bottom: 0px;
        left: 5%;
        width: 90%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 50% 44%;
        background-image: url('../images/doosan-lines-white.svg');
        opacity: 0.06;
        content: '';
        z-index: 2;
    }
    .object-detail-heading  {
        z-index: 3;
    }
    .object-detail-heading .object-badge {
        position: absolute;
        bottom: -20px;
        right: 60px;
        width: 140px;
        height: 140px;
        z-index: 99;
    }
    .object-detail-grid  {
        z-index: 1;
    }
    .object-detail-info {
        max-width: 70%;
        font-size: 16px;
    }
}

@media (max-width: 1022px) {
    /* Slides */
   
    .object-detail-grid  {
        display: none;
        visibility: hidden;
    }
 
    .object-detail-slides-container {
        display: block;
        visibility: visible;
        width: calc(100% - 30px);
        margin-bottom: 40px;
        border-radius: 6px;
    }
    .object-detail-slides-container:before,
    .object-detail-slides-container:after {
        position: absolute;
        transform: translate3d(0, 0, 0);
        content:'';
        width: 300px;
        height: 300px;
        background: transparent;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        z-index: -1;
        
    }



    .object-detail-slides .swiper-slide {
        width: 100%;
        padding: 0px;
    }
    .object-detail-slides .swiper-slide img {
        width: 100%;
        max-width: auto;
        border-radius: 0px;
    }
    .object-detail-slides-container .swiper-pagination-fraction {
        left: auto;
        right: 10px;
        bottom: 10px;
        width: auto;
        padding: 5px 15px;
        color: #fff;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 3px;
        font-size: 12px;
        font-weight: 700;
    }

    .object-detail-heading {
        padding-left: 20px;
    }

    .object-detail-title {
        line-height: 1;
        position: relative;
        font-size: 34px;
        font-weight: 700;
        margin: 0;
        left: -1px;
    }

}
@media (max-width: 767px) {
    .bg-detail,
    .bg-detail-image {
        position: absolute;
        top:0;
        left: 0;
        width: 100%;
        height: 460px;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 1;
        z-index: 0;
    }
    .bg-detail-image:after {
        position: absolute;
        bottom: 0px;
        left: 5%;
        width: 90%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: 50% 70%;
        background-image: url('../images/doosan-lines-white.svg');
        opacity: 0.06;
        content: '';
        z-index: 2;
    }
    .no-cover .bg-detail,
    .no-cover .bg-detail-image {
        height: 300px;
    }
    .object-detail-heading {
        padding-left: 15px;
    }
    .object-detail-heading .object-badge {
        position: absolute;
        bottom: -20px;
        right: 10px;
        width: 90px;
        height: 90px;
        z-index: 99;
    }
    .object-detail-title {
        line-height: 1;
        position: relative;
        font-size: 26px;
        font-weight: 700;
        margin: 0;
        left: -1px;
    }
    .object-detail-info {
        max-width: 90%;
        font-size: 14px;
        column-count: 1;
    }
    .object-detail-slide {
        width: auto;
    }
    .object-detail-slides-container {
        width: calc(100% - 20px);
    }
    .object-detail-slides {
        border-radius: 6px;
    }
  
    .sharinggg {
        display: none !important;
    }
}
@media (max-width: 440px) {
    .object-detail-heading {
        padding-left: 10px;
    }
    .object-detail-title {
        line-height: 1;
        position: relative;
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        left: -1px;
    }
   
   
}
@media (max-width: 374px) {
    .object-detail-heading {
        padding-left: 15px;
    }
    .object-detail-title {
        line-height: 1;
        position: relative;
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        left: -1px;
    }
    .object-detail-info,
    .object-detail-price {
        font-size: 14px;
    }
   
}
/* Tabs
------------------------------------------------
*/



.object-detail-tabs-container {
	position: relative;
	/* top: -55px; */
	margin-bottom: 20px;
	background: transparent;
	z-index: 9;
	border-radius: 0px 0px;
	overflow: hidden;
}
.object-detail-tabs-container:before,
.object-detail-tabs-container:after  {
	position: absolute;
	bottom: 0px;
	left:0;
	width: 13px;
	height:60px;
	content:'';
	/* background: rgb(233,236,239);
	background: linear-gradient(270deg, rgba(233,236,239,0) 0%, rgba(233,236,239,1) 100%); */
	opacity: 1;
	border-radius: 0px 0px;
	z-index: 3;
}
.is-stuck .object-detail-tabs-container {
	border-radius: 0 0 0px 0px;
}

.object-detail-tabs-container:after {
	left:auto;
	right: 0;
	width: 70px;
	background: rgb(255, 255, 255);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
}
.object-detail-tabs-container-inner {
	flex-wrap: nowrap;
	overflow: hidden;
	overflow-x: scroll;
	padding-right: 40px;
}

.object-detail-section-title {
	font-size: 20px;
}
.object-detail-tabs {
	border-radius: 0px;
	border:0;
	background-color: transparent !important;
	padding: 10px 0px;
	display: flex;
	align-items: center;
}

.object-detail-tabs .object-detail-tabs-title {
	display: flex;
	padding: 0px 10px 0px 0;
	border:0;
}
.object-detail-tabs .object-detail-tabs-title a {
	text-align: center;
	width: calc(100% - 0rem);
	border-radius: 0px;
	display: flex;
	align-self: center;
	color: #151A1E;
	
	padding: 6px 25px 8px 25px;
	font-size: 18px;
	position: relative;
	line-height: 1.4;
	font-weight: 500;
	white-space: nowrap;
	background:rgba(35, 34, 34, 0.082);
}


.object-detail-tabs .object-detail-tabs-title a i {
	position: relative;
	top:6px;
	margin-right: 10px;
	font-size: 16px;
	opacity: 0.2;
}
.object-detail-tabs .object-detail-tabs-title.is-active a {
	background: #FE7B12;
	width: calc(100% - 0rem);
	border:0;
	color: #fff;
	/* box-shadow: 0px 6px 6px -4px rgba(35, 34, 34, 0.158); */
}
.object-detail-tabs .object-detail-tabs-title.is-active a i {
	opacity: 1;
}
.object-detail-tabs .object-detail-tabs-title.is-active a:after  {
	display: none;
}
.object-detail-tabs .object-detail-tabs-title a:hover {
	/* background: rgba(0, 0, 0, 0.04); */
}
.object-detail-tabs .object-detail-tabs-title.is-active a:hover {
	background: #FE7B12;
	
}

.object-detail-tabs .object-detail-tabs-title:last-child:after {
	display: block;
	content:'';
	width: 60px;
	height: 40px;
	padding: 0 0px;
}

.object-detail-tabs-content {
	padding:10px 40px 80px 0;
	border-radius: 0px;
	border:0 !important;
	background: transparent;
}
.object-detail-tabs-panel {
	padding:0;
	border:0;
}
.object-detail-tabs-panel-heading {
    padding-left: 25px;
}
.object-detail-tabs-panel-title {
    font-size: 24px;
}

.object-detail-description {
	position: relative;
	overflow: hidden;
	min-height: 80px;
	max-height: 360px;
	padding: 0px 25px;
	margin-top: 0px;
}
.object-detail-description:after {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100px;
	content: '';
	background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 50%, rgba(255,255,255,1) 100%);
	background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%,rgba(255,255,255,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
}

.object-detail-description  p {
    font-size: 16px;
}



.object-detail-description .more-less {
	position: absolute;
	bottom: 5px;

	display: block;
	font-weight: 400;
	z-index: 2;

}
.object-detail-description .more-less span.less {
	visibility: hidden;
	opacity: 0;
	display: none;
}
.object-detail-description .more-less span {
	padding:0;
}
.object-detail-description.expanded {
	height: auto;
	min-height: auto;
	max-height: 100% !important;
	margin-top: 0px;
	padding-bottom: 50px;
}

.object-detail-description.expanded:after {
	display: none;
}
.object-detail-description.expanded .more-less {
    bottom: 0px;
}
.object-detail-description.expanded .more-less span.more {
	visibility: hidden;
	opacity: 0;
	display: none;
}
.object-detail-description.expanded .more-less span.less {
	visibility: visible;
	opacity: 1;
	display: block;
}
@media (max-width: 1022px) {
    .object-detail-wrapper {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 40px;
    }
    .object-detail-tabs-container {
        margin-left: -20px;
        width: calc(100% + 40px);
     
    }
    .object-detail-tabs {
        padding-left: 20px;
    }
    .object-detail-tabs-container:after {
        display: none;
        left:auto;
        right: 0;
        width: 70px;
        background: rgb(255, 255, 255);
        background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 70%, rgb(255, 255, 255) 100%);
    }
    .object-detail-description {
        position: relative;
        overflow: hidden;
        min-height: 80px;
        max-height: 360px;
        padding: 0px 20px;
    }
}
@media (max-width: 766px) {
   
	.object-detail-tabs {
		padding: 5px 10px 5px;
	}
	.object-detail-tabs .object-detail-tabs-title a {
		font-size: 14px;
	
		padding: 5px 15px 6px 15px;
	}
    .object-detail-tabs .object-detail-tabs-title a i {
        position: relative;
        top:3px;
        font-size: 14px;
    }
    .object-detail-description {
        padding:0 10px;
    }
    .object-detail-description  p {
        font-size: 15px;
    }
    .object-detail-wrapper .textblock-files {
        padding: 0 10px;
    }
}


/* Specs */
.object-detail-specs {
    margin:0;
    margin-left: 0px;
    padding: 10px 0 0 25px;
}
.object-detail-specs dl {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 0 10px;
    margin:0;
    border-bottom: 1px solid #eee;
}
.object-detail-specs dl:first-child {
    border-top: 1px solid #eee;
}
.object-detail-specs dd {
    display: flex;
    flex-direction: column;
  
}
.object-detail-specs-title {
    width: 30%;
    flex-shrink: 0;
    font-weight: 400;
    color: rgba(35, 34, 34, 0.7);
}



.object-detail-listing {
    margin:0;
    margin-left: 0px;
    padding: 10px 0;
    border: 1px solid rgba(19, 25, 51, 0.08);
    border-left:0;
    border-right: 0;
}

.object-detail-listing li { 
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
    line-height: 1.7;
    padding: 2px 0;
    
}
.object-detail-listing li span { 
    padding-right: 5px;
}
.object-detail-listing li span i { 
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    background: rgba(19, 25, 51, 0.08);
    font-size: 15px;
    margin-right: 3px;
}

.object-detail-listing li .value { 
    font-weight: 700;
}
.object-detail-listing {
    display: flex;
    align-items: flex-start;
}
.object-detail-listing li { 
    margin-right: 15px;
  
}

.object-detail-footer .button {
    margin-right: 20px;
}



.object-detail-sharing {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}
.object-detail-sharing a {
    display: flex;
    align-items: center;
    justify-content: center;
   width: 32px;
   height: 32px;
   border-radius: 10px;
   margin-left: 5px;
   background: rgba(0, 47, 78, 0);
	color: #111;
    -webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-ms-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}
.object-detail-sharing a:hover {
    background: rgba(0, 47, 78, 0.1);
    color: #111;
}
.object-detail-sidebar {
    /* padding: 25px;
    background: #eff1f1; */
}
.object-detail-sidebar-section {
    padding: 10px 25px;
}
.object-detail-sidebar-title{
    font-size: 18px;
}

.object-detail-sidebar-section p {
    font-size: 16px;
}

@media (max-width: 1022px) {
    .object-detail-tabs-panel-heading {
        padding-left: 20px;
    }
    .object-detail-specs {
        margin:0;
        margin-left: 0px;
        padding: 10px 0 0 20px;
    }
    .object-detail-sidebar {
       padding-bottom: 30px;
    }
    .object-detail-buttons {
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
    }
}
@media (max-width: 767px) {
    .object-detail-tabs-panel-heading {
        padding-left: 10px;
    }
    .object-detail-specs {
        margin:0;
        margin-left: 0px;
        padding: 10px 0 0 10px;
    }
    .object-detail-specs dl {
        font-size: 15px;
        padding: 6px 0 3px;
    }
    .object-detail-sidebar {
       padding-bottom: 30px;
    }
    .object-detail-buttons {
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }
    .object-detail-footer .button {
        margin-right: 0px;
        width: 100%;
        margin-bottom: 10px;
    }
    
}


.object-detail-map-wrapper {
    position: relative;
    width: calc(100% - 10px);
    height: calc(100vh - 100px);
}
#object-detail-map{
    position: absolute;
    top:0;
    left:10px;
    right:0;
    bottom:0;
    
    z-index: 1;
}
.marker-cluster-small {
    background-color: rgba(228, 38, 48, 0.6) !important;
}
.marker-cluster-small div {
    font-family: 'ronnia', sans-serif !important;
    color: #fff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    background-color: rgba(228, 38, 48, 0.6) !important;
}

.marker-cluster-medium {
    background-color: rgba(36, 36, 36, 0.6) !important;
}
.marker-cluster-medium div {
    font-family: 'ronnia', sans-serif !important;
    color: #fff !important;
    font-weight: 700 !important;
    background-color: rgba(36, 36, 36, 0.6) !important;
}
/* #object-detail-map .leaflet-popup-content {
    margin: 0 !important;
} */
.leaflet-popup-content-wrapper {
    border-radius: 0;
}


.fancybox-bg {
	background-color: #000d1b;
}
.fancybox-is-open .fancybox-bg {
    opacity: 0.9;
}
.fancybox-button {
	background-color: transparent;
}
.fancybox-toolbar div {
    display: inline-block;
    height: 44px;
    line-height: 42px;
    background: rgba(30,30,30,0);
    color: #ccc;
    font-size: 12px;
    font-weight: bold;
    min-width: 42px;
    text-align: center;
    white-space: nowrap;
}
.fancybox-button svg path {
    fill: #fff;
    stroke: #fff;
    -webkit-filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
    filter: drop-shadow( 3px 3px 2px rgba(0, 0, 0, .7));
}
.fancybox-button--arrow_left {
    
}
.fancybox-button--arrow_right {
    
}

.fancybox-navigation button:before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    width: 50px;
    height: 40px;
    border-radius: 3px;
    background: transparent !important;
  }


/* Modal */
.fancybox-thumbs {
    top: auto;
    width: auto;
    bottom: 0;
    left: 0;
    right : 0;
    height: 95px;
    padding: 10px 10px 0 10px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0);
  }
.fancybox-thumbs ul {
	margin: 0 auto;
}
  .fancybox-show-thumbs .fancybox-inner {
    right: 0;
    bottom: 95px;
    overflow: visible;
  }

  .fancybox-thumbs::-webkit-scrollbar {
    height: 7px;
  }

  .fancybox-thumbs::-webkit-scrollbar-track {
    background: #2a2a2a;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  }

  .fancybox-thumbs::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
  .fancybox-thumbs>ul>li {
	  border-radius: 0px;
  }
  .fancybox-thumbs>ul>li:before {
	border-radius: 0px;
	border: 4px solid #FE7B12;
  }

  .fancybox-caption-wrap {
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 2vw 0;
    /* background: linear-gradient(180deg,transparent 0,rgba(0,0,0,.1) 20%,rgba(0,0,0,.2) 40%,rgba(0,0,0,.6) 80%,rgba(0,0,0,.8)); */
    background: transparent;
    pointer-events: none;
    }
    .fancybox-caption {
        padding: 30px 0;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
        font-size: 14px;
        color: #2a2a2a;
        line-height: 20px;
        -webkit-text-size-adjust: none;
        }
        
.object.huurobject{
	min-height: 0px; 
	margin-top: 20px;
}        

.object.huurobject .object-top{
	float: left;
	width: 30%;
	padding: 10px;
}

.object.huurobject .object-top img{
	padding: 0px;
	border-radius: 6px;
}

.object.huurobject .object-bottom{
	float: right;
	width: 70%;
	padding: 10px;
}

.object.huurobject .object-section{
	padding: 10px;
}

.huurdetails{
	float: left;
	width: 60%;
}

.huurbuttons{
	float: right;
	width: 40%;
	padding-left: 10px;
}

.huurbuttons .button{
	margin-bottom: 8px;
}


.huurbuttons .button.white{
	box-shadow: none;
	border: 1px solid rgba(3, 67, 145, 0.2);
}

.whiteicon, .button:hover i.whiteicon, .whiteicon:before, .button:hover i.whiteicon:before{
	color: #fff !important;
}

.blueicon, .button:hover i.blueicon, .blueicon:before, .button:hover i.blueicon:before{
	color: #034391 !important;
}

.vanafprijs{
	margin-top: -10px;
	margin-bottom: 10px;
	font-size: 13px;
}

.vanafprijs strong{
	font-size: 16px;
}

@media (max-width: 1250px) {
	.huurdetails{
		width: 55%;
	}

	.huurbuttons{
		width: 45%;
	}	
	
	.huurbuttons .button.small{
		font-size: 13px !important;
	}	
}

@media (max-width: 1100px) {
	.huurbuttons .button{
		font-size: 12px !important;
	}
	.hidetext{
		display: none;
		visibility: hidden;
	}
}

@media (max-width: 767px) {
	.huurdetails{
		float: left;
		padding: 0px;	
		width: 100%;
	}
	
	.object-listing{
		margin-top: 10px;
		margin-bottom: 10px;
	}
	
	.vanafprijs{
		margin-top: 10px;
	}
	

	.huurbuttons{
		float: left;
		padding: 0px;
		width: 100%;
	}	
	.huurdetails .object-listing li span{
		width: 50%;
	}
	.huurdetails .object-listing li .value{
		width: 50%;
	}	
	.hidetext{
		display: inline;
		visibility: visible;
	}	
}

@media (max-width: 575px) {
	.object.huurobject .object-top{
		float: left;
		width: 100%;
		padding: 10px;
		display: block;
		position: relative;
	}


	.object.huurobject .object-bottom{
		float: left;
		width: 100%;
		padding: 0px 10px 10px 10px;
		display: block;		
		position: relative;		
	}
	
	.object.huurobject.wide{
		flex-direction: column;
	}
}