/*****************/
/***SLIDER FRONT**/
/*****************/

/**
   Coded by /u/j0be in scss.
   See scss source here -> https://codepen.io/j0be/pen/MKRVyN
*/

body {
  padding: 0;
  margin: 0;
}

.wrapper.custom-front-slider {
  perspective: 2000px;
  perspective-origin: 50% 30vh;
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
.custom-front-slider .cube {
  transform: rotateY(0deg) translateX(0vw) translatez(0vw);
  position: relative;
  transform-style: preserve-3d;
  transition: all 1s ease-in-out;
}
.custom-front-slider .cube div {
  font-size: 5em;
  font-family: "Fira Sans", sans-serif;
  color: #fff;
  text-shadow: 0px 1px 5px rgba(10, 10, 10, 0.85);
  letter-spacing: 2px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(200, 200, 200, 0.6);
  position: absolute;
  width: 100vw;
  height: 100vh;
}
.custom-front-slider .nav-slider {
  background: red;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(225, 225, 225, 0.3);
  font-size: 3rem;
  font-family: arial;
  cursor: pointer;
  z-index: 999;
  height: 100vh;
  width: 90px;
}
.custom-front-slider .nav-slider:hover {
  color: rgba(225, 225, 225, 0.6);
}
.custom-front-slider .prev {
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.35),
    rgba(10, 10, 10, 0.01)
  );
}
.custom-front-slider .prev:hover {
  background: linear-gradient(
    to right,
    rgba(10, 10, 10, 0.65),
    rgba(10, 10, 10, 0.01)
  );
}
.custom-front-slider .next {
  right: 0;
  background: linear-gradient(
    to left,
    rgba(10, 10, 10, 0.35),
    rgba(10, 10, 10, 0.01)
  );
}
.custom-front-slider .next:hover {
  background: linear-gradient(
    to left,
    rgba(10, 10, 10, 0.65),
    rgba(10, 10, 10, 0.01)
  );
}
.custom-front-slider .back {
  transform: translateZ(-100vw) rotateY(180deg);
  background-size: cover;
}
.custom-front-slider .right {
  transform: rotateY(-270deg) translateX(100vw);
  transform-origin: top right;
  
  background-size: cover;
}
.custom-front-slider .left {
  transform: rotateY(270deg) translateX(-100vw);
  transform-origin: center left;

  background-size: cover;
}
.custom-front-slider .custom-front-slider .front {
  transform: translateZ(0);

  background-size: cover;
}
.custom-front-slider label.front-slider-label {
  font-family: "Fira Sans", sans-serif;
  color: #fff;
  text-shadow: 0px 1px 5px #0a0a0a;
  letter-spacing: 2px;
  position: fixed;
  z-index: 999;
  color: rgba(255, 255, 255, 0.8);
  bottom: 5px;
  left: 50%;
  transform: translate(-50%);
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/*Swiper*/
.swiper-container {
  width: 100%;
  height: 50vh;
}
.swiper-slide {
  background-position: center;
  background-size: cover;
}


/*  Property */
/* ---------------------------------------- */

.property-image-header{
  margin-top: -10vh;
  z-index: 9999;
}

.property-image-header .img-col{
  z-index: 888;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.property-name{
  background: #00093bba;
  text-align: center;
  min-height: 105px;
  border-radius: 2px;
  color: #ccc;
}

/** price **/

.property-price-container{
  background: #ccc;
  text-align: center;
  padding: 25px;
  border-radius: 2px;
}

.property-price-container:after{
  content: '€';
}

/* amenities */

.property-amenities-container ul{
  padding-left: 0;
}

.property-amenities-container li{
  font-size: 18px;
  padding: 5px 15px;
  list-style: none;
}


/** gallery **/

.property-gallery {
  padding-left: 0 !important;
  padding-bottom: 15px;
}

.property-gallery img {
  display: block;
  width: 100%;
  height: auto;
  
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.property-gallery img:hover{
  cursor: zoom-in;
  cursor: -webkit-zoom-in;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 10;

}


@media only screen and (min-width: 760px){
  .property-gallery img {
    -o-object-fit: cover;
    object-fit: cover; 
    height: 21em; 
  }
}







/******************************************************/
/* general classes */
/******************************************************/

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

@media (min-width: 1200px) {
  .container {
    width: 1250px !important;
  }
}

.article-body img{
  display: block !important;
  max-width: 100% !important;
  height: auto !important;
}

/****************************************************/
/**     loazad      */
/****************************************************/

.custom-fade {
  -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
  -moz-animation: fadein 2s; /* Firefox < 16 */
  -ms-animation: fadein 2s; /* Internet Explorer */
  -o-animation: fadein 2s; /* Opera < 12.1 */
  animation: fadein 2s;

}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}



/************************************/
/**     Property view       */
/************************************/

.property-specs-container, .property-map-icon , .property-specs-icon{
  display: none;
}

.property-specs-container.active, .property-map-container.active, .property-map-icon.active, .property-specs-icon.active{
  display: block;
}

.property-map-container{
  display: none;
  margin: 20px 0;
  padding: 5px 0;
  border-top: 2px solid #009ee1;
  border-bottom: 2px solid #009ee1;
}

.property-view-item{
  background-color: #fff;
  border: 15px solid #f7f7f7;
  padding: 2rem;
  text-align: center;
  min-height: 525px;
  margin-bottom: 12px; 
  border-bottom: 3px solid #f7f7f7;

  /*
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;*/
}

.property-view-item .views-field-title h3{
  margin-top: 15px;
  height: 30px;
  display: -webkit-inline-box;
  width: 100%;
}

.custom-property-view-container .property-view-item .views-field.views-field-field-property-top-image{
  margin: -2rem -2rem 0 -2rem;
  /*-webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); 
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;*/
}

/** hovers  **/

.property-view-item:hover{
  box-shadow: inset 0px 0px 4px 1px #ccc;
  border-bottom-color: #00093b;
  /*border: 2px solid #00093b;
  z-index: 99999;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);*/
}

/*
.custom-property-view-container .property-view-item .views-field.views-field-field-property-top-image:hover{
  transform: scale(0.95);
  border: 2px solid #ddd;
}*/

.custom-property-view-container .property-view-img img{
  min-height: 211.53px; 
}

.custom-property-view-container .views-field-body .field-content{
  color: #808080;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  text-align: left;
}

.custom-property-view-container .views-label-field-property-price{
  float: left;
}

.custom-property-view-container .views-field-field-property-price{
  text-align: left;
  margin-top: 40px;
}

.custom-property-view-container .views-field-field-property-size-m2 .field-content:before{
  font-family: "Font Awesome 5 Free";
  content: '\f43c';
  font-weight: 600;
  font-size: 2.4rem;

  display: block;
}

.custom-property-view-container .views-field-field-property-size-m2 .field-content:after{
  content: ' m2';
}

.custom-property-view-container .views-field-field-property-bathrooms .field-content:before{
  font-family: "Font Awesome 5 Free";
  content: '\f2cc';
  font-weight: 600;
  font-size: 2.4rem;

  display: block;
}

.custom-property-view-container .views-field-field-property-bedrooms .field-content:before{
  font-family: "Font Awesome 5 Free";
  content: '\f236';
  font-weight: 600;
  font-size: 2.4rem;
 
  display: block;
}

.property-view-item .views-field-title a{
  color: #0d5ea1;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}

.property-view-item .views-field-title a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: #0d5ea1;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.property-view-item .views-field-title a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.property-map-button{
  text-align: center;
  font-size: 18px;
  padding-top: 11px;
  background: #434a6e;
  color: #fff;
  border-left: 5px solid #f7f7f7;
  border-right: 5px solid #f7f7f7;
  height: 70px;
}


.property-map-button.active{
  background: #009ee1;
}

.property-map-button:hover{
  padding-top: 5px;
  border-radius: 3px;
  border: 5px solid;
  border-color: #2f6732;
  -webkit-transition-property: border-color; /* Safari */
  -webkit-transition-duration: 0.3s; /* Safari */
  transition-property: border-color;
  transition-duration: 0.3s;
  background: #009ee1;
  cursor: pointer;
}

/****************************/
/**      shop filters      **/
/****************************/

.clear-button-container{
	text-align: center;
}

.shop-filters input[type="radio"], .sidenav input[type="radio"]{
  -webkit-appearance: checkbox; /* Chrome, Safari, Opera */
  -moz-appearance: checkbox;    /* Firefox */
  -ms-appearance: checkbox;     /* not currently supported */
}

.shop-filters .form-item, .sidenav .form-item{
	margin-bottom: 0px !important;
}

.filter-title{
	text-align: center;
	font-weight: 700;
}

@media (max-width: 767px){
	.shop-filters {
		display: none;
	}

	.mobile-filters-button{
		visibility: initial !important;
  }
  
  .mobile-filters-button{
    top: 177px;
    left: -56px !important;
    text-orientation: upright;
    transform: rotate(-90deg);
    display: block;
    visibility: initial;
    writing-mode: vertical-rl !important;
    height: 60px;
    width: 133px;
    /*padding: 0 initial;*/
    padding-top: 27px;
  }
}

@media (min-width: 768px){
    .mobile-filters-button{
		visibility: hidden !important;
	}
}


.sidenav {
	width: 0;
	height: 100%;
	position: fixed;
	z-index: 9999;
	top: 0;
	left: 0;
	background-color: #111;
	overflow-x: hidden;
	transition: 0.5s;
	padding-top: 60px;
	color: #fff;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 25px;
	font-size: 36px;
	margin-left: 50px;
	color: #fff;
}

.sidenav hr{
	border-color: #fff;
}

.mobile-filters-button{
	top: 150px;
	left: 25px;
	position: fixed;
	visibility: hidden;
	z-index: 999;
}

.sidebar-back-disable{
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 200;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.58);
	display: none;
}

.main-product-specs{
    margin-top: 50px; 
}

.buttonctype{
    width: 45% !important;
}

.product-brand a{
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.shop-filters .location, #mySidenav .location{
  display: none;
}

@media (max-width: 767px){

  .views-exposed-widgets{
    padding: 17px;
    text-align: center;
  }

  .views-exposed-form .views-exposed-widget{
    display: contents;
  }

  .area-form{
    width: 100%;
  }
}

/****** area filter     ****/


.label-area{
  display: block !important;
}

.area-form{
  float: left;
}





/****** slider price  ****/

#edit-field-property-land-size-m2-value-min, #edit-field-property-land-size-m2-value-max, #edit-field-property-size-m2-value-min, #edit-field-property-size-m2-value-max{
	width:50%;
	float: left;
	margin-bottom: 15px;
}

.bef-slider.ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all{
	clear: both;
}

.form-item-field-property-land-size-m2-value-max label, .form-item-field-property-size-m2-value-max label{
  display: none;
}


/*****   front    *****/

.location-rhodes, .location-lindos{
  min-height: 500px;
}

.location-rhodes .custom-block, .location-lindos .custom-block{
  margin: 50px;
  background: rgba(255, 255, 255, 0.64);
  min-height: 400px;
}

.location-lindos{
  background: red;
  
}

.location-rhodes{
  background: blue;
}

.feautured-location .title-part-one{
  text-align: center;
  font-size: 27px;
  padding-top: 72px;
}


.feautured-location .custom-block a{
  /* text-align: center; */
  margin: 15px auto;
  display: block;
  width: 135px;
  background: #00093b;
  padding: 15px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  border: 1px solid #00093b;
  transition: background-color 0.5s ease;
}

.feautured-location .custom-block a:hover{
  background-color: #fff;
  color: #000;
}


/************
/** contact form
************/

.custom-contact-container{
  background-color: #fff;
}

@media (min-width: 991px){
  .custom-contact-container{
    padding: 50px;
  }
}

.custom-contact-form-container{
  margin-bottom: 30px;
}

.contact-form-item{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}

.contact-form-item input{
  display: block;
  width: 100%;
  color: #808080;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(128, 128, 128, 0.2);
  margin-bottom: 1.5rem;
  -webkit-transition: 0.2s all linear;
  transition: 0.2s all linear;
  min-height: 55px;
}

.contact-form-item label{
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;

}

.custom-contact-item{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  width: 100%;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.custom-contact-item span{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  padding: 0;
}


/* snazzy maps */

#map {
  width: 100%;
  height: 500px;
}

/* png article */

.article-signature{
  border-style: dotted;
  border-color: #b5b5b5;
  border-width: 2px;
  line-height: 190.25px;
  background: linear-gradient(-45deg, #23a6d5, #23d5ab, #2196c0, #1a977a);
	background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  border-radius: 10px;
  padding: 3px 0;
}
@media(max-width: 991px){
  .article-signature{
    line-height: 0;
  }
}

.article-signature img{
  border-radius: 50%;
  -moz-box-shadow: 0 0 6px 0px #000;
  -webkit-box-shadow: 0 0 6px 0px #000;
  box-shadow: 0 0 6px 0px #000;
}

.article-signature h3{
  display: inline-block;
}

@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}