@charset "UTF-8";
/* ------------------------------------------------------------------
 * [Table of contents]
 *
 * 1. Base Styling
 * 2. WordPress Styles
 * 3. Tables
 * 4. Forms
 * 5. Buttons
 *
 * 6. UI Components
 * 		6.1. Header
 * 		6.2. Footer
 * 		6.3. Sections
 * 			6.3.1. Properties Map
 * 			6.3.2. Listing
 * 			6.3.3. Most Viewed
 * 			6.3.4. Featured Blog Posts
 * 			6.3.5. Agents Section
 * 			6.3.6. Properties Filter Section
 * 			6.3.7. Properties Section
 * 			6.3.8. Single Property Section
 * 			6.3.9. Single Agent Page
 * 			6.3.10. Blog Section
 * 			6.3.11. User Account
 * 			6.3.12. 404 Section
 * 		6.4. Components 
 * 			6.4.1. Custom Select Boxes			
 * 			6.4.2. Map Filter Box
 * 			6.4.3. Hot Offer
 * 			6.4.4. Listing Item
 * 			6.4.5. Most Viewed Item
 * 			6.4.6. Most Viewed Carousel
 * 			6.4.7. Agent
 * 			6.4.8. Blog Post
 * 			6.4.9. List Property
 * 			6.4.10. Pagination
 * 			6.4.11. Main Loader
 * 			6.4.12. Sidebar
 * 			6.4.13. Share Block
 * 			6.4.14. Login Popup
 * 			6.4.15. Featured Video
 * 			6.4.16. Custom Accordion
 * 			6.4.17. Blog Slider
 *
 * ------------------------------------------------------------------ */
/* */
/* */
/* */
/* */
/* ----------------- 1. Base Styling ----------------- */
@import url(http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic);
* {
  margin: 0;
  border: 0;
  padding: 0;
  font-size: 100%;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('../fonts/fontawesome-webfont.eot?v=4.3.0');
  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.3.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.3.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.3.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
body {
 
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  height: auto;
}

html .row-fit {
  margin: 0;
}
html .row-fit [class*="col-"] {
  padding: 0;
}

html .row-fit-10 {
  margin: 0 -5px;
}
html .row-fit-10 [class*="col-"] {
  padding: 0 5px;
}

.no-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.align-center {
  text-align: center;
}

input[type="number"],
input[type="search"],
input[type="email"],
input[type="text"],
input[type="url"],
input[type="password"],
input[type="submit"],
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
a:hover, a:focus, a:active {
  text-decoration: none;
}

blockquote {
  position: relative;
  margin: 0 0 30px;
  color: #262626;
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.455em;
  padding: 15px 70px 15px 55px;
  border-top: 1px solid #f5f5f5;
  border-right: 1px solid #f5f5f5;
  border-bottom: 1px solid #f5f5f5;
  border-left: 1px solid #ff5252;
}
blockquote:before {
  position: absolute;
  text-align: center;
  font-family: FontAwesome;
  top: 50%;
  left: -15px;
  font-style: normal;
  margin-top: -15px;
  content: "";
  width: 30px;
  height: 30px;
  color: #ff5252;
  font-size: 14px;
  background: #fff;
  border-radius: 50%;
  border: 2px solid #ff5252;
}
blockquote p {
  margin: 0;
}
@media (max-width: 768px) {
  blockquote {
    padding: 10px 30px 10px 25px;
    font-size: 18px;
  }
}

.content-wrapper {
  position: relative;
}

#page {
  -webkit-transition: all 0.55s cubic-bezier(0.5, -0.5, 0.3, 1.3);
  -moz-transition: all 0.55s cubic-bezier(0.5, -0.5, 0.3, 1.3);
  transition: all 0.55s cubic-bezier(0.5, -0.5, 0.3, 1.3);
  opacity: 0;
}

.dom-ready #page {
  opacity: 1;
}

.site-preloader {
  background: #fff;
  display: table;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s;
  -webkit-transition-delay: 0.1s;
}
.site-preloader .preloader-content {
  display: table-cell;
  vertical-align: middle;
}
.site-preloader img, .site-preloader svg {
  display: block;
  margin: 0 auto;
  max-width: 65px;
  opacity: 0.2;
  -webkit-transition: opacity 2s, transform 0.3s;
  -moz-transition: opacity 2s, transform 0.3s;
  transition: opacity 2s, transform 0.3s;
}

.load-page .site-preloader img, .load-page .site-preloader svg {
  opacity: 1;
}

.dom-ready .site-preloader {
  opacity: 0;
  visibility: hidden;
}
.dom-ready .site-preloader img, .dom-ready .site-preloader svg {
  -webkit-transform: scale(0.2);
  -moz-transform: scale(0.2);
  -ms-transform: scale(0.2);
  -o-transform: scale(0.2);
  transform: scale(0.2);
}

/* ----------------- 2. Wordpress Styles ----------------- */
.alignleft {
  float: left;
  text-align: left;
  margin-bottom: 20px;
  margin-right: 20px;
}

.alignright {
  float: right;
  text-align: right;
  margin-bottom: 20px;
  margin-left: 20px;
}

.aligncenter {
  text-align: center;
}

.align-left {
  text-align: left !important;
}

img.size-full, img.size-large {
  max-width: 100%;
  width: auto;
  height: auto;
}

.wp-caption {
  max-width: 100%;
  position: relative;
}

.wp-caption-text {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 11.326px;
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 400;
}

/* ----------------- 3. Tables ----------------- */
/* ----------------- 4. Forms ----------------- */
.comment-form {
  position: relative;
  z-index: 2;
}
.comment-form:hover:after {
  bottom: -4px;
}
.comment-form:after {
  position: absolute;
  z-index: -1;
  content: "";
  bottom: -5px;
  width: 98.5%;
  height: 10px;
  left: 50%;
  background: #fff;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 1px solid #ededed;
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.comment-form .form-body {
  border: 1px solid #ededed;
  background: #fff;
  padding: 20px;
}
.comment-form .form-body .message {
  padding-right: 2px;
}
.comment-form .form-body .message textarea {
  height: 45px;
  margin-bottom: -2px;
}
.comment-form .form-body .message textarea:focus, .comment-form .form-body .message textarea.has-value {
  height: 80px;
  padding-bottom: 20px;
}
.comment-form .form-body .form-input {
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  padding: 10px 20px;
  resize: none;
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 2px solid #e8e8e8;
  font-size: 14px;
  font-weight: 300;
  color: #868686;
}
.comment-form .form-body .form-input::-webkit-input-placeholder {
  color: #868686;
}
.comment-form .form-body .form-input:-moz-placeholder {
  color: #868686;
}
.comment-form .form-body .form-input.placeholder {
  color: #868686;
}
.comment-form .form-body .form-input:focus, .comment-form .form-body .form-input.has-value {
  position: relative;
  outline: none;
  z-index: 2;
  border-color: rgba(66, 66, 66, 0.8);
  color: #424242;
}
.comment-form .form-body .submit-button {
  margin-top: 13px;
  margin-right: 4px;
  float: right;
  background: 0;
  color: #ff7272;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  text-transform: uppercase;
}
.comment-form .form-body .submit-button:focus, .comment-form .form-body .submit-button:hover {
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  font-weight: 700;
  outline: none;
  color: #424242;
}
.comment-form .form-body [class*="col-"]:nth-of-type(2) .form-input {
  margin-left: -2px;
}
@media (max-width: 768px) {
  .comment-form .form-body .message {
    padding: 0;
  }
  .comment-form .form-body [class*="col-"]:nth-of-type(2) .form-input {
    margin-left: 0;
  }
  .comment-form .form-body [class*="col-"]:nth-of-type(1) .form-input {
    margin-bottom: -2px;
  }
}

.commments-wrapper {
  padding: 0 40px 30px;
}
.commments-wrapper .comments-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.commments-wrapper .comments-list .comment {
  list-style-type: none;
  position: relative;
  display: block;
  margin: 0 0 20px;
  padding-left: 90px;
}
.commments-wrapper .comments-list .comment:last-of-type {
  margin: 0;
}
.commments-wrapper .comments-list .comment .user {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
}
.commments-wrapper .comments-list .comment .user:before {
  position: absolute;
  content: "";
  top: 50%;
  z-index: 1;
  right: -50px;
  width: 50px;
  border-top: 1px solid #ededed;
}
.commments-wrapper .comments-list .comment .user:after {
  position: absolute;
  content: "";
  top: 50%;
  margin-top: -5px;
  right: -25px;
  width: 10px;
  height: 10px;
  background: #fff;
  z-index: 3;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border: 1px solid #ededed;
}
.commments-wrapper .comments-list .comment .user img {
  border-radius: 50%;
  border: 7px solid #fff;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}
.commments-wrapper .comments-list .comment .comment-body {
  position: relative;
  z-index: 2;
  background: #fff;
  border: 1px solid #ededed;
}
.commments-wrapper .comments-list .comment .comment-body .message {
  display: block;
  padding: 15px 30px;
}
.commments-wrapper .comments-list .comment .comment-body .message p {
  margin: 0;
  color: #a5a5a5;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.75em;
}
.commments-wrapper .comments-list .comment .comment-body .comment-info {
  border-top: 1px solid #ededed;
}
.commments-wrapper .comments-list .comment .comment-info {
  padding: 2px 30px 4px;
}
.commments-wrapper .comments-list .comment .comment-info p, .commments-wrapper .comments-list .comment .comment-info a {
  margin: 0;
  font-size: 10px;
  line-height: 1em;
  display: inline-block;
  text-transform: uppercase;
}
.commments-wrapper .comments-list .comment .comment-info .author {
  margin-right: 5px;
  color: #686868;
  font-weight: 600;
}
.commments-wrapper .comments-list .comment .comment-info .date {
  margin-right: 30px;
  color: #686868;
}
.commments-wrapper .comments-list .comment .comment-info .reply-link {
  color: #a9d0ee;
  font-weight: 600;
}
.commments-wrapper .comments-list .comment .comment-info .reply-link:hover {
  color: #424242;
}
@media (max-width: 768px) {
  .commments-wrapper {
    padding: 20px 20px;
  }
  .commments-wrapper .comments-list .comment .comment-body .message {
    padding: 10px 16px;
  }
  .commments-wrapper .comments-list .comment .comment-body .comment-info {
    padding: 8px 16px 4px;
  }
  .commments-wrapper .comments-list .comment .comment-body .comment-info p {
    display: block;
    margin-bottom: 5px;
  }
}

.simple-form input:not([type="submit"]), .simple-form textarea:not([type="submit"]) {
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  padding: 10px 20px;
  resize: none;
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 2px solid #e8e8e8;
  font-size: 14px;
  font-weight: 300;
  color: #868686;
  margin: 0 0 15px;
}
.simple-form input:not([type="submit"])::-webkit-input-placeholder, .simple-form textarea:not([type="submit"])::-webkit-input-placeholder {
  color: #868686;
}
.simple-form input:not([type="submit"]):-moz-placeholder, .simple-form textarea:not([type="submit"]):-moz-placeholder {
  color: #868686;
}
.simple-form input:not([type="submit"]).placeholder, .simple-form textarea:not([type="submit"]).placeholder {
  color: #868686;
}
.simple-form input:not([type="submit"]):focus, .simple-form input:not([type="submit"]).has-value, .simple-form textarea:not([type="submit"]):focus, .simple-form textarea:not([type="submit"]).has-value {
  position: relative;
  outline: none;
  z-index: 2;
  border-color: rgba(66, 66, 66, 0.8);
  color: #424242;
}
.simple-form textarea {
  min-height: 90px;
}
.simple-form button {
  background: 0;
  display: inline-block;
  text-transform: uppercase;
  color: #ff5252;
  font-size: 12px;
  font-weight: 700;
  line-height: 1em;
  border-radius: 25px;
  border: 3px solid #ff5252;
  padding: 12px 25px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.simple-form button:focus, .simple-form button:hover {
  outline: none;
  color: #fff;
  background: #ff5252;
}
.simple-form button:focus:before, .simple-form button:hover:before {
  color: #fff;
}
.simple-form button:before {
  font-family: icomoon;
  content: "";
  color: #ff5252;
  font-size: 14px;
  font-weight: 300;
  margin-right: 10px;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* ----------------- 5. Buttons ----------------- */
.button {
  display: inline-block;
  text-align: center;
  line-height: 1em;
  -webkit-transition: all 0.18s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.18s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.18s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.button:active, .button:focus {
  text-decoration: none;
  outline: none;
}
.button.theme-button-1 {
  text-align: center;
  background: #b71c1c;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  padding: 12px 15px 13px;
  border-radius: 3px;
}
.button.theme-button-1:hover {
  background: #ff5252;
}
.button.theme-button-1:active {
  background: #3c3c3c;
}
.button.theme-button-2 {
  text-align: center;
  background: #e22323;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 16px 33px;
}
.button.theme-button-2:hover {
  color: #b71c1c;
  background: #ff5252;
}
.button.theme-button-2:active {
  color: #fff;
  background: #3c3c3c;
}

/* ----------------- 6. UI Components ----------------- */
/* ----------------- 6.1. Header ----------------- */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 50px;
  background: #fff;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);
}
header nav {
  position: fixed;
  z-index: 999;
  background: #fff;
  top: 81px;
  left: 0;
  bottom: 0;
  width: 140px;
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.3);
  -webkit-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}
header nav > ul {
  display: block;
  width: 100%;
}
header nav > ul > li {
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
}
header nav > ul > li:hover > ul {
  visibility: visible;
  opacity: 1;
  left: 100%;
}
header nav > ul > li:hover > a {
  color: inherit;
  background: #f4f4f4;
}
header nav > ul > li > ul {
  visibility: hidden;
  opacity: 0;
  text-align: left;
  position: absolute;
  list-style-type: none;
  min-width: 130px;
  padding: 20px;
  margin: 0;
  top: 0;
  left: 50%;
  min-height: 100%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  -moz-transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
header nav > ul > li > ul:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -8px;
  width: 8px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../img/angle.png) no-repeat;
}
header nav > ul > li > ul li {
  display: block;
}
header nav > ul > li > ul li a {
  font-size: 12px;
  color: #c1c1c1;
  background: 0;
  font-weight: 500;
  text-transform: none;
  -webkit-transition: all 0.12s ease-in-out;
  -moz-transition: all 0.12s ease-in-out;
  -o-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
header nav > ul > li > ul li a:hover {
  color: #616161;
}
header nav > ul > li > a {
  background: transparent;
  display: block;
  padding: 16px 0;
  color: #828282;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.12s ease-in-out;
  -moz-transition: all 0.12s ease-in-out;
  -o-transition: all 0.12s ease-in-out;
  transition: all 0.12s ease-in-out;
}
header nav > ul > li > a:before {
  font-weight: normal;
  margin: 0 0 7px;
  display: block;
  font-family: icomoon;
  font-size: 20px;
  color: inherit;
}
header nav > ul > li > a:hover {
  color: inherit;
  background: #f4f4f4;
}
header nav > ul > li.home > a:before {
font-family: FontAwesome;
  content: "\f015";
}
header nav > ul > li.listing > a:before {
  font-family: FontAwesome;
  content: "";
}
header nav > ul > li.property > a:before {
  content: "";
}
header nav > ul > li.agents > a:before {
font-family:FontAwesome;
  content: "\f0c0";
}
header nav > ul > li.blog > a:before {
font-family:FontAwesome;
content: "\f007";
}
header nav > ul > li.error > a:before {
  font-family: FontAwesome;
  content: "\f14b";
}
header nav.visible {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
header .right-block {
  position: relative;
  top: 10px;
  float: right;
}
header .right-block .social-block, header .right-block .account-options, header .right-block p {
  display: inline-block;
}
header .right-block .social-block {
  list-style-type: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}
header .right-block .social-block li {
  display: inline-block;
  margin-right: 15px;
}
header .right-block .social-block li i {
  font-size: 16px;
  color: #757575;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
header .right-block .social-block li i:hover {
  color: #ff5252;
}
header .right-block .social-block li:last-of-type {
  margin: 0;
}
header .right-block .account-options {
  margin-top: -8px;
  padding-right: 50px;
  position: relative;
}
header .right-block .account-options .main-info {
  cursor: pointer;
}
header .right-block .account-options .main-info img {
  max-width: 45px;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-transition: all 0.14s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.14s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.14s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
header .right-block .account-options .main-info img:hover {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}
header .right-block .account-options .main-info .username {
  color: #757575;
  font-size: 13px;
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  -webkit-transition: all 0.14s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.14s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.14s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
header .right-block .account-options .main-info .username:hover {
  color: #b71c1c;
}
header .right-block .account-options .list {
  position: absolute;
  list-style-type: none;
  padding: 10px 0 20px;
  margin: 0;
  left: 0;
  top: 115%;
  width: 230px;
  background: #fff;
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.13);
  visibility: hidden;
  -webkit-transform: translateY(25px);
  -moz-transform: translateY(25px);
  -ms-transform: translateY(25px);
  -o-transform: translateY(25px);
  transform: translateY(25px);
  opacity: 0;
  z-index: 99;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
header .right-block .account-options .list.visible {
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
header .right-block .account-options .list li {
  text-align: left !important;
  display: block;
}
header .right-block .account-options .list li a {
  display: block;
  padding: 13px 20px 11px;
  color: #363636;
  font-size: 14px;
  font-weight: 500;
  vertical-align: top;
}
header .right-block .account-options .list li a:hover {
  background: #f4f4f4;
}
header .right-block .account-options .list li a:before {
  font-weight: 300;
  color: #747474;
  font-size: 22px;
  margin: 0 20px 0 0;
  font-family: icomoon;
}
header .right-block .account-options .list li a.profile:before {
  content: "";
}
header .right-block .account-options .list li a.submit-new:before {
  content: "";
}
header .right-block .account-options .list li a.properties:before {
  content: "";
}
header .right-block .account-options .list li a.exit:before {
  content: "";
}
header .right-block p {
  padding-left: 50px;
  font-size: 13px;
  font-weight: 400;
  color: #757575;
  text-transform: uppercase;
}
header .right-block p a {
  color: inherit;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
header .right-block p a:hover {
  color: #ff5252;
}
header .brand {
  max-width: 200px;
}
header .cmn-toggle-switch {
  top: 8px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0 50px 0 0;
  padding: 0;
  width: 18px;
  height: 18px;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background: 0;
}
header .cmn-toggle-switch:focus {
  outline: none;
}
header .cmn-toggle-switch span {
  display: block;
  position: absolute;
  top: 7px;
  left: 0px;
  right: 0px;
  height: 2px;
  background: #616161;
}
header .cmn-toggle-switch span:before, header .cmn-toggle-switch span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #616161;
  content: "";
}
header .cmn-toggle-switch span:before {
  top: -6px;
}
header .cmn-toggle-switch span:after {
  bottom: -6px;
}
header .cmn-toggle-switch.cmn-toggle-switch__htx span:before, header .cmn-toggle-switch.cmn-toggle-switch__htx span:after {
  -webkit-transition-duration: 0.3s, 0.3s;
  transition-duration: 0.3s, 0.3s;
  -webkit-transition-delay: 0.3s, 0;
  transition-delay: 0.3s, 0;
}
header .cmn-toggle-switch.cmn-toggle-switch__htx span:before {
  -webkit-transition-property: top, -webkit-transform;
  transition-property: top, transform;
}
header .cmn-toggle-switch.cmn-toggle-switch__htx span:after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
}
header .cmn-toggle-switch.cmn-toggle-switch__htx.active span {
  background: none;
}
header .cmn-toggle-switch.cmn-toggle-switch__htx.active span:before {
  top: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
header .cmn-toggle-switch.cmn-toggle-switch__htx.active span:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
header .cmn-toggle-switch.cmn-toggle-switch__htx.active span:before, header .cmn-toggle-switch.cmn-toggle-switch__htx.active span:after {
  -webkit-transition-delay: 0, 0.3s;
  transition-delay: 0, 0.3s;
}
@media (max-width: 768px) {
  header .right-block {
    margin-bottom: 15px;
    text-align: center;
    float: none;
  }
  header .brand {
    float: right;
  }
  header nav {
    top: 128px;
  }
}
@media (max-width: 400px) {
  header {
    padding: 5px 30px 15px;
  }
  header .right-block .social-block, header .right-block .account-options, header .right-block p {
    display: block;
    padding: 0;
  }
  header .right-block .account-options {
    margin-bottom: 15px;
  }
}

/* ----------------- 6.2. Footer ----------------- */
footer {
  border-top: 1px solid #f5f5f5;
}
footer .footer-widgets p {
  color: #a5a5a5;
  font-size: 12px;
  line-height: 1.75em;
}
footer .footer-widgets p a {
  color: inherit;
}
footer .footer-widgets .footer-widget {
  padding: 40px 0 16px;
  min-height: 263px;
}
@media (max-width: 992px) {
  footer .footer-widgets .footer-widget {
    min-height: 0;
  }
}
footer .footer-widgets .footer-widget .widget-title {
  text-transform: uppercase;
  display: block;
  margin: 5px 0 15px;
  color: #060606;
  font-size: 12px;
  line-height: 1em;
  font-weight: 700;
}
footer .footer-widgets .widget_info {
  border-right: 1px solid #f5f5f5;
  padding-right: 20px;
}
@media (max-width: 992px) {
  footer .footer-widgets .widget_info {
    border-right: 0;
  }
}
footer .footer-widgets .widget_info img {
  margin-bottom: 25px;
}
footer .footer-widgets .widget_info .social-block {
  list-style-type: none;
  display: block;
  font-size: 0;
  padding: 30px 0 0;
  margin: 0;
}
footer .footer-widgets .widget_info .social-block li {
  display: inline-block;
  margin-right: 10px;
}
footer .footer-widgets .widget_info .social-block li:last-of-type {
  margin: 0;
}
footer .footer-widgets .widget_info .social-block li i {
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  padding-top: 7px;
  border: 1px solid #a5a5a5;
  font-size: 15px;
  height: 30px;
  width: 30px;
  color: #a5a5a5;
}
footer .footer-widgets .widget_info .social-block li i:hover {
  color: #dcdbdb;
  border-color: #dcdbdb;
}
footer .footer-widgets .widget_most_viewed {
  border-right: 1px solid #f5f5f5;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 992px) {
  footer .footer-widgets .widget_most_viewed {
    border: 0;
    padding: 0;
  }
}
footer .footer-widgets .widget_most_viewed .most-viewed-property {
  display: inline-block;
  position: relative;
  padding-left: 62px;
  margin-bottom: 20px;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property:nth-child(odd) {
  margin-right: 80px;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property .image {
  position: absolute;
  width: 45px;
  left: 0;
  top: 0;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property h2 {
  margin: 0 0 8px;
  color: #060606;
  font-size: 13px;
  font-weight: 300;
  line-height: 1em;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property h2 a {
  color: inherit;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property h2 a:hover {
  color: #b71c1c;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property .price {
  margin: 0;
  color: #060606;
  font-size: 13px;
  line-height: 1em;
  font-weight: 700;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property .rating {
  list-style-type: none;
  font-size: 0;
  line-height: 1em;
  padding: 7px 0 0;
  margin: 0;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property .rating li {
  display: inline-block;
}
footer .footer-widgets .widget_most_viewed .most-viewed-property .rating li i {
  color: #b71c1c;
  font-size: 11px;
}
@media (max-width: 992px) {
  footer .footer-widgets .widget_most_viewed .most-viewed-property {
    margin-right: 60px;
  }
  footer .footer-widgets .widget_most_viewed .most-viewed-property:nth-child(odd) {
    margin-right: 60px;
  }
}
footer .footer-widgets .widget_contact .contact-info {
  list-style-type: none;
  padding: 15px 0 0;
  display: block;
  margin: 0;
}
footer .footer-widgets .widget_contact .contact-info li {
  position: relative;
  padding-left: 30px;
  display: block;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f5f5f5;
}
footer .footer-widgets .widget_contact .contact-info li:before {
  font-family: FontAwesome;
  position: absolute;
  color: #060606;
  font-size: 16px;
  top: -1px;
  left: 0;
}
footer .footer-widgets .widget_contact .contact-info li.phone:before {
  content: "";
}
footer .footer-widgets .widget_contact .contact-info li.mail:before {
  content: "";
}
footer .footer-widgets .widget_contact .contact-info li.location:before {
  content: "";
}
footer .footer-widgets .widget_contact .contact-info li:last-of-type {
  margin: 0;
  border: 0;
}
footer .footer-widgets .widget_contact .contact-info p {
  margin: 0;
  color: #757575;
  font-size: 13px;
  line-height: 1.615em;
}
footer .footer-widgets .widget_contact .contact-info p a:hover {
  color: #b71c1c;
}
footer .copyrigts {
  padding: 12px 0;
  border-top: 1px solid #f5f5f5;
  text-align: center;
}
footer .copyrigts p {
  margin: 0;
  font-size: 13px;
  line-height: 1.615em;
}
footer .copyrigts p a {
  color: inherit;
}
footer .copyrigts p a:hover {
  color: #b71c1c;
}

/* ----------------- 6.3. Sections ----------------- */
.section-header {
  padding: 45px 25px 60px;
  text-align: center;
}
.section-header h1 {
  margin: 0;
  color: #2e2e2e;
  font-size: 35px;
  line-height: 1em;
  font-weight: 200;
}
.section-header h1:after {
  font-family: icomoon;
  display: block;
  content: "";
  color: #e6e6e6;
  font-size: 20px;
  line-height: 1em;
  margin: 18px 0 20px;
}
.section-header p {
  margin: 0;
  color: #a0a0a0;
  font-size: 15px;
  font-weight: 200;
  line-height: 1.235em;
}
.section-header.no-icon h1 {
  margin-bottom: 15px;
}
.section-header.no-icon h1:after {
  display: none;
}
.section-header.less-padding {
  padding-top: 40px 0 30px;
}
.section-header.small {
  padding: 25px 20px 35px;
}
.section-header.small h2 {
  margin: 0;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5em;
}
.section-header.small h2:before {
  font-family: icomoon;
  display: block;
  content: "";
  color: #e6e6e6;
  font-size: 20px;
  line-height: 1em;
  margin: 0 0 12px;
}
.section-header.small p {
  margin: 0;
  color: #2e2e2e;
  font-size: 12px;
  line-height: 1.75em;
}
@media (max-width: 768px) {
  .section-header h1 {
    font-size: 36px;
  }
}

/* ----------------- 6.3.1. Properties Map ----------------- */
@media (min-width: 992px) {
  .properties-map .row {
    position: relative;
  }
  .properties-map .row [class*="col-"]:last-of-type {
    position: absolute;
    height: 100%;
    right: 0;
    bottom: 0;
    top: 0;
  }
  .properties-map .map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 992px) {
  .properties-map .row [class*="col-"]:last-of-type {
    position: relative;
  }
  .properties-map .map {
    height: 650px;
  }
}
@media (max-width: 768px) {
  .properties-map .map {
    height: 450px;
  }
}
@media (max-width: 450px) {
  .properties-map .map {
    height: 320px;
  }
}
.properties-map .property-popup {
  position: absolute;
  background: #fff;
  width: 230px;
  z-index: 2;
  top: 10px;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-map .property-popup.active {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.properties-map .property-popup .close-popup {
  position: absolute;
  cursor: pointer;
  color: #424242;
  font-size: 20px;
  right: -25px;
  opacity: 0.5;
  top: -3px;
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-map .property-popup .close-popup:hover {
  color: #ff5252;
  opacity: 1;
}
.properties-map .property-popup .popup-body {
  padding: 10px 10px 10px 20px;
}
.properties-map .property-popup .popup-body h2 {
  margin: 0;
  color: #424242;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.235em;
}
.properties-map .property-popup .popup-body h2 a {
  color: inherit;
}
.properties-map .property-popup .popup-body h2 a:hover {
  color: #ff5252;
}
.properties-map .property-popup .popup-body p {
  color: #9e9e9e;
  font-size: 12px;
  line-height: 1.3em;
  font-weight: 500;
}
.properties-map .property-popup .popup-body .price, .properties-map .property-popup .popup-body .propery-page {
  display: inline-block;
}
.properties-map .property-popup .popup-body .price {
  padding: 7px 13px;
  background: #fbfbfb;
  color: #ff5252;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
}
.properties-map .property-popup .popup-body .propery-page {
  float: right;
}
.properties-map .property-popup .popup-body .propery-page i {
  text-align: center;
  background: #f5f5f5;
  height: 22px;
  width: 22px;
  font-size: 12px;
  padding-top: 5px;
  color: #424242;
  -webkit-transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-map .property-popup .popup-body .propery-page i:hover {
  color: #ff5252;
}
.properties-map .popup-loader, .properties-map .map-loader {
  position: absolute;
  text-align: center;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.properties-map .popup-loader.visible, .properties-map .map-loader.visible {
  visibility: visible;
  opacity: 1;
}
.properties-map .popup-loader .spinner, .properties-map .map-loader .spinner {
  position: relative;
  display: inline-block;
  top: 40%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
}
.properties-map .popup-loader .spinner .circle1, .properties-map .map-loader .spinner .circle1 {
  top: 0;
  left: 0;
}
.properties-map .popup-loader .spinner .circle2, .properties-map .map-loader .spinner .circle2 {
  top: 0;
  right: 0;
}
.properties-map .popup-loader .spinner .circle3, .properties-map .map-loader .spinner .circle3 {
  right: 0;
  bottom: 0;
}
.properties-map .popup-loader .spinner .circle4, .properties-map .map-loader .spinner .circle4 {
  left: 0;
  bottom: 0;
}
.properties-map .popup-loader .spinner .container1 > div, .properties-map .popup-loader .spinner .container2 > div, .properties-map .popup-loader .spinner .container3 > div, .properties-map .map-loader .spinner .container1 > div, .properties-map .map-loader .spinner .container2 > div, .properties-map .map-loader .spinner .container3 > div {
  width: 8px;
  height: 8px;
  background-color: #ff5252;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.properties-map .popup-loader .spinner .spinner-container, .properties-map .map-loader .spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.properties-map .popup-loader .spinner .container2, .properties-map .map-loader .spinner .container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.properties-map .popup-loader .spinner .container3, .properties-map .map-loader .spinner .container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.properties-map .popup-loader .spinner .container2 .circle1, .properties-map .map-loader .spinner .container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.properties-map .popup-loader .spinner .container3 .circle1, .properties-map .map-loader .spinner .container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.properties-map .popup-loader .spinner .container1 .circle2, .properties-map .map-loader .spinner .container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.properties-map .popup-loader .spinner .container2 .circle2, .properties-map .map-loader .spinner .container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.properties-map .popup-loader .spinner .container3 .circle2, .properties-map .map-loader .spinner .container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.properties-map .popup-loader .spinner .container1 .circle3, .properties-map .map-loader .spinner .container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.properties-map .popup-loader .spinner .container2 .circle3, .properties-map .map-loader .spinner .container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.properties-map .popup-loader .spinner .container3 .circle3, .properties-map .map-loader .spinner .container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.properties-map .popup-loader .spinner .container1 .circle4, .properties-map .map-loader .spinner .container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.properties-map .popup-loader .spinner .container2 .circle4, .properties-map .map-loader .spinner .container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.properties-map .popup-loader .spinner .container3 .circle4, .properties-map .map-loader .spinner .container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
.properties-map .map-loader .spinner {
  margin: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.properties-map .map-loader .spinner .container1 > div, .properties-map .map-loader .spinner .container2 > div, .properties-map .map-loader .spinner .container3 > div {
  width: 11px;
  height: 11px;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  40% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
/* ----------------- 6.3.2. Listing ----------------- */
.listing-section {
  padding: 0 20px;
}

/* ----------------- 6.3.3. Most Viewed ----------------- */
.most-viewed-section {
  padding-bottom: 25px;
}
.most-viewed-section ul {
  list-style-type: none;
  padding: 0;
}

/* ----------------- 6.3.4. Featured Blog Posts ----------------- */
.featured-bloposts-section {
  background-image: url(../img/blog-section-bg-2.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.featured-bloposts-section .bg-wrapper {
  padding-bottom: 100px;
}
.featured-bloposts-section .button {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 50px 0 0;
}

/* ----------------- 6.3.5. Agents Section ----------------- */
.agents-section {
  padding-bottom: 80px;
}
.agents-section.has-padding {
  padding-bottom: 0;
  padding-top: 85px;
}

/* ----------------- 6.3.6. Properties Filters Section ----------------- */
.properties-filters {
  padding-top: 120px;
  margin-bottom: 35px;
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-filters.open {
  padding-bottom: 45px;
  -webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.13);
}
.properties-filters.open .filters-header.global-header a .icon:before {
  content: "";
}
.properties-filters .filters-header {
  margin: 0;
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
}
.properties-filters .filters-header a {
  color: inherit;
}
.properties-filters .filters-header a:focus, .properties-filters .filters-header a:active {
  text-decoration: none;
}
.properties-filters .filters-header .icon {
  font-size: 11px;
}
.properties-filters .filters-header.global-header a {
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-filters .filters-header.global-header a:hover {
  color: #b71c1c;
}
.properties-filters .filters-header.global-header .icon {
  margin-right: 10px;
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-filters .filters-header.global-header .icon:before {
  font-style: normal;
  font-family: icomoon;
  content: "";
}
.properties-filters .filters-body {
  display: none;
  padding-top: 50px;
}
@media (min-width: 992px) {
  .properties-filters .filter-block.left {
    padding-right: 25px;
  }
  .properties-filters .filter-block.right {
    padding-left: 25px;
  }
}
@media (min-width: 1200px) {
  .properties-filters .filter-block.left {
    padding-right: 35px;
  }
  .properties-filters .filter-block.right {
    padding-left: 35px;
  }
}
@media (max-width: 768px) {
  .properties-filters {
    padding-top: 170px;
  }
}
.properties-filters .filter-block-item {
  margin-bottom: 30px;
  min-height: 30px;
}
.properties-filters .filter-block-item .price-box * {
  box-shadow: none;
  border-radius: 0;
  border: 0;
}
.properties-filters .filter-block-item .price-box p {
  margin: 0 0 15px;
  padding: 0 8px 0;
  color: #9e9e9e;
  font-size: 12px;
  line-height: 1em;
  font-weight: 500;
}
.properties-filters .filter-block-item .price-box p i {
  margin-right: 4px;
  color: #545454;
  font-size: 14px;
  font-style: normal;
}
.properties-filters .filter-block-item .price-box .price-slider {
  height: 3px;
}
.properties-filters .filter-block-item .price-box .noUi-target {
  border-radius: 0;
  border: 0;
  background: #ededed;
  box-shadow: none;
}
.properties-filters .filter-block-item .price-box .noUi-base {
  background: #ededed;
}
.properties-filters .filter-block-item .price-box .noUi-origin, .properties-filters .filter-block-item .price-box .noUi-background {
  background: #ededed;
}
.properties-filters .filter-block-item .price-box .noUi-connect {
  background: #424242;
}
.properties-filters .filter-block-item .price-box .noUi-handle {
  height: 12px;
  width: 12px;
  cursor: pointer;
  border-radius: 50%;
  background: #424242;
  left: -9px;
  top: -5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.properties-filters .filter-block-item .price-box .noUi-handle.noUi-active {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.properties-filters .filter-block-item .price-box .noUi-handle:after, .properties-filters .filter-block-item .price-box .noUi-handle:before {
  display: none;
}
.properties-filters .filter-block-item .price-box .price-limits {
  display: block;
  padding-top: 10px;
}
.properties-filters .filter-block-item .price-box .price-limits span {
  display: inline-block;
  color: #bdbdbd;
  font-size: 12px;
  line-height: 1em;
}
.properties-filters .filter-block-item .price-box .price-limits span.lower {
  float: left;
}
.properties-filters .filter-block-item .price-box .price-limits span.upper {
  float: right;
}
.properties-filters .filter-block-item .select-filter {
  display: inline-block;
  margin-right: 50px;
}
.properties-filters .filter-block-item .select-filter:last-of-type {
  margin: 0;
}
.properties-filters .filter-block-item .select-filter label {
  position: relative;
  cursor: pointer;
  margin: 0;
  color: #424242;
  font-size: 14px;
  line-height: 1em;
  font-weight: 300;
}
.properties-filters .filter-block-item .select-filter input {
  visibility: hidden;
  margin-right: 4px;
}
.properties-filters .filter-block-item .select-filter input:checked + span:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.properties-filters .filter-block-item .select-filter span:after, .properties-filters .filter-block-item .select-filter span:before {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: visible;
  content: "";
  border-radius: 50%;
}
.properties-filters .filter-block-item .select-filter span:before {
  height: 15px;
  width: 15px;
  border: 2px solid #424242;
}
.properties-filters .filter-block-item .select-filter span:after {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  top: 9px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: #424242;
  -webkit-transition: all 0.09s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.09s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.09s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-filters .filter-block-item .nr-filter {
  display: inline-block;
  margin: 0 55px 0 0;
}
.properties-filters .filter-block-item .nr-filter:last-of-type {
  margin: 0;
}
.properties-filters .filter-block-item .nr-filter .caption, .properties-filters .filter-block-item .nr-filter .block {
  display: inline-block;
}
.properties-filters .filter-block-item .nr-filter .caption {
  position: relative;
  top: 8px;
  margin: 0 15px 0 0;
  color: #545454;
  font-size: 14px;
  min-width: 33px;
}
.properties-filters .filter-block-item .nr-filter .block {
  font-size: 0;
  border: 1px solid #ededed;
}
.properties-filters .filter-block-item .nr-filter .block input {
  height: 25px;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
}
.properties-filters .filter-block-item .nr-filter .block input:focus {
  outline: none;
}
.properties-filters .filter-block-item .nr-filter .block input, .properties-filters .filter-block-item .nr-filter .block .action {
  vertical-align: top;
  display: inline-block;
  text-align: center;
  line-height: 1em;
  width: 30px;
  height: 30px;
}
.properties-filters .filter-block-item .nr-filter .block .action {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  font-size: 22px;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-filters .filter-block-item .nr-filter .block .action.add {
  padding-top: 3px;
}
.properties-filters .filter-block-item .nr-filter .block .action.substract {
  padding-top: 2px;
}
.properties-filters .filter-block-item .nr-filter .block .action:hover {
  color: #c7c7c7;
  background: #ededed;
}
.properties-filters .filter-block-item .nr-filter .block input {
  width: 32px;
  padding: 0 3px;
  color: #545454;
  font-size: 14px;
}
.properties-filters .advanced-filters {
  padding-top: 30px;
}
.properties-filters .advanced-filters.open .filters-header .icon:before {
  content: "";
}
.properties-filters .advanced-filters .filters-header {
  color: #b71c1c;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: none;
}
.properties-filters .advanced-filters .filters-header .icon {
  position: relative;
  top: 2px;
  left: 5px;
  font-size: 16px !important;
}
.properties-filters .advanced-filters .filters-header .icon:before {
  font-family: icomoon;
  font-style: normal;
  content: "";
}
.properties-filters .advanced-filters .filters-header a:hover {
  color: #424242;
}
.properties-filters .advanced-filters .filters-body {
  display: none;
  font-size: 0;
}
.properties-filters .advanced-filters .filters-body .check-option {
  width: 25%;
  display: inline-block;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .properties-filters .advanced-filters .filters-body .check-option {
    width: 50%;
  }
}
.properties-filters .advanced-filters .filters-body .check-option label {
  position: relative;
  cursor: pointer;
  margin: 0;
  color: #545454;
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
}
.properties-filters .advanced-filters .filters-body .check-option label input {
  visibility: hidden;
  margin: 0 10px 0 0;
}
.properties-filters .advanced-filters .filters-body .check-option label input:checked + span:after {
  opacity: 1;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.properties-filters .advanced-filters .filters-body .check-option label span:after, .properties-filters .advanced-filters .filters-body .check-option label span:before {
  display: inline-block;
  visibility: visible;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}
.properties-filters .advanced-filters .filters-body .check-option label span:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #ededed;
}
.properties-filters .advanced-filters .filters-body .check-option label span:after {
  opacity: 0;
  -webkit-transform: rotate(-35deg);
  -webkit-transform-origin: -100% -100%;
  -ms-transform: rotate(-35deg);
  -ms-transform-origin: -100% -100%;
  transform: rotate(-35deg);
  transform-origin: -100% -100%;
  top: 3px;
  left: 4px;
  color: #545454;
  font-family: icomoon;
  content: "";
  font-size: 10px;
  -webkit-transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-filters .button {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 50px 0 0;
}

/* ----------------- 6.3.7. Properties Section ----------------- */
.properties-section {
  padding-bottom: 45px;
}
.properties-section .section-filter {
  display: block;
  position: relative;
  padding-bottom: 55px;
}
.properties-section .section-filter .sorting-options {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 190px;
}
.properties-section .section-filter .grid-type {
  text-align: center;
}
.properties-section .section-filter .grid-type .option, .properties-section .section-filter .grid-type .type-slider {
  display: inline-block;
}
.properties-section .section-filter .grid-type .option {
  cursor: pointer;
  color: #dfdfdf;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-section .section-filter .grid-type .option:hover {
  color: #757575;
}
.properties-section .section-filter .grid-type .type-slider {
  position: relative;
  background: #dfdfdf;
  top: 2px;
  margin: 0 15px;
  height: 12px;
  width: 40px;
  cursor: pointer;
  border-radius: 6px;
}
.properties-section .section-filter .grid-type .type-slider.option-grid span {
  left: 0;
}
.properties-section .section-filter .grid-type .type-slider.option-list span {
  left: 100%;
  margin-left: -20px;
}
.properties-section .section-filter .grid-type .type-slider span {
  position: absolute;
  display: inline-block;
  background: #fff;
  height: 20px;
  width: 20px;
  top: -5px;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.38);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.38);
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.properties-section .section-filter .grid-type .type-slider span:after {
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  content: "";
  z-index: 2;
  top: 6px;
  left: 6px;
  height: 8px;
  width: 8px;
  -webkit-box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.38);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.38);
}
@media (max-width: 768px) {
  .properties-section .section-filter .sorting-options {
    padding-top: 40px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.properties-section .loader-container {
  position: relative;
}

/* ----------------- 6.3.8. Single Property ----------------- */
.single-property-container {
  padding-top: 110px;
}
.single-property-container .item-cover {
  margin-bottom: 45px;
  padding: 20px 20px 5px;
  background: #fff;
  -webkit-box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
}
.single-property-container .item-cover ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.single-property-container .item-cover .bx-wrapper {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: 0 !important;
}
.single-property-container .item-cover .cover-photos {
  position: relative;
  margin: 0;
}
.single-property-container .item-cover .cover-photos .icon {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  z-index: 5;
  display: inline-block;
  left: 10px;
  top: 10px;
  vertical-align: middle;
  line-height: 48px;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 3px;
  width: 48px;
  height: 48px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.single-property-container .item-cover .cover-photos .icon:before {
  font-family: icomoon;
  font-style: normal;
  content: "";
}
.single-property-container .item-cover .cover-photos .icon:hover {
  color: #7f7f7f;
  background: #fff;
  -webkit-box-shadow: 1px 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 0 1px rgba(0, 0, 0, 0.2);
}
.single-property-container .item-cover .cover-photos:hover .icon {
  opacity: 1;
}
.single-property-container .item-cover .thumbnail-carousel {
  position: relative;
  padding: 20px 40px 0 10px;
  margin: 0 -15px;
}
.single-property-container .item-cover .thumbnail-carousel li img {
  border-radius: 100%;
}
.single-property-container .item-cover .thumbnail-carousel .bx-controls .bx-prev {
  display: none;
}
.single-property-container .item-cover .thumbnail-carousel .bx-controls .bx-next {
  z-index: 33;
  border-radius: 50%;
  background: #fff;
  text-align: center;
  right: -40px;
  font-size: 16px;
  color: #757575;
  padding: 0;
  font-weight: 700;
  line-height: 32px;
  vertical-align: middle;
  text-indent: 0;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.single-property-container .item-cover .thumbnail-carousel .bx-controls .bx-next:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: rgba(227, 227, 227, 0.35);
}
.single-property-container .item-cover.full-width .cover-photos .icon {
  left: 50%;
  top: 50%;
  margin-left: -24px;
  margin-top: -24px;
}
.single-property-container .comments-area {
  margin-bottom: 50px;
}
.single-property-container .property-description-box {
  margin-bottom: 45px;
}
.single-property-container .property-description-box .property-description {
  -webkit-box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  padding-top: 50px;
  background: #fff;
  position: relative;
}
.single-property-container .property-description-box .property-description .rating-box {
  position: absolute;
  display: inline-block;
  font-size: 0;
  line-height: 1em;
  right: 10px;
  top: 10px;
  padding: 4px 4px 5px 4px;
  border-radius: 2px;
  background: #ff5252;
}
.single-property-container .property-description-box .property-description .rating-box i {
  display: inline-block;
  font-size: 10px;
  line-height: 1em;
  margin-left: 2px;
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.single-property-container .property-description-box .property-description .rating-box i:first-of-type {
  margin: 0;
}
.single-property-container .property-description-box .property-description h4 {
  margin: 0;
  padding: 0 15px;
  color: #292929;
  font-size: 22px;
  line-height: 1em;
  font-weight: 200;
  text-align: center;
}
.single-property-container .property-description-box .property-description .address {
  color: #a5a5a5;
  font-size: 11px;
  line-height: 1em;
  text-align: center;
  margin: 8px 0 35px;
  text-transform: uppercase;
}
.single-property-container .property-description-box .property-description .services .caption {
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 15px;
  color: #ff5252;
  font-size: 15px;
  line-height: 1em;
  font-weight: 700;
}
.single-property-container .property-description-box .property-description .services ul {
  position: relative;
  list-style-type: none;
  display: inline-block;
  padding: 0 0 40px;
  margin: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.single-property-container .property-description-box .property-description .services ul li {
  padding-left: 10px;
  margin: 0 0 5px;
}
.single-property-container .property-description-box .property-description .services ul li:last-of-type {
  margin: 0;
}
.single-property-container .property-description-box .property-description .services ul li p {
  display: inline-block;
  font-size: 13px;
  line-height: 1em;
  font-weight: 500;
  color: #595959;
  margin: 0;
}
.single-property-container .property-description-box .property-description .services ul li:before {
  font-family: FontAwesome;
  color: #bdbdbd;
  font-size: 10px;
  position: relative;
  top: -1px;
  margin-right: 25px;
}
.single-property-container .property-description-box .property-description .services ul li.bedrooms:before {
  content: "";
}
.single-property-container .property-description-box .property-description .services ul li.area:before {
  content: "";
}
.single-property-container .property-description-box .property-description .services ul li.bathrooms:before {
  content: "";
}
.single-property-container .property-description-box .property-description .price {
  text-align: center;
  padding: 14px 0 17px;
  border-top: 1px solid #f5f5f5;
}
.single-property-container .property-description-box .property-description .price p {
  margin: 0;
  color: #060606;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
}
.single-property-container .property-description-box .property-description .price p span {
  display: inline-block;
  margin-left: 7px;
  font-weight: 500;
  padding: 2px 3px;
  color: #ababab;
  font-size: 11px;
  background: #fafafa;
  text-transform: uppercase;
}
.single-property-container .text-description {
  margin-bottom: 45px;
  padding: 0 25px 15px;
  -webkit-box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
}
.single-property-container .text-description .section-header {
  padding: 12px 0 30px;
}
.single-property-container .text-description p {
  color: #a5a5a5;
  font-size: 12px;
  margin: 0 0 20px;
  line-height: 1.75em;
}
.single-property-container .text-description .features h4 {
  margin: 0 0 4px;
  color: #bfbfbf;
  font-size: 17px;
  line-height: 1em;
  font-weight: 300;
}
.single-property-container .text-description .features p {
  color: #a5a5a5;
  font-size: 13px;
  margin: 0 0 20px;
  line-height: 1em;
}
.single-property-container .widget_latest_listing {
  margin-bottom: 45px;
}
.single-property-container .property-agent {
  margin-bottom: 45px;
  padding: 45px 40px;
  background: #fff;
  -webkit-box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
}
.single-property-container .property-agent .agent {
  padding: 0;
  text-align: center;
}
.single-property-container .property-agent .agent .caption {
  margin: 0 0 5px;
  color: #292929;
  font-size: 22px;
  font-weight: 200;
  line-height: 1em;
}
.single-property-container .property-agent .agent .position {
  margin: 0 0 15px;
  text-transform: uppercase;
}
.single-property-container .property-agent .agent .image {
  display: block;
  margin: 0 auto 18px;
  position: relative;
}
.single-property-container .map-info {
  position: relative;
  border: 1px solid #ededed;
  margin-bottom: 45px;
  background: #fff;
  padding: 5px;
}
.single-property-container .map-info #map-canvas {
  min-height: 516px;
}
.single-property-container .map-info:before {
  content: "";
  position: absolute;
  display: inline-block;
  border: 1px solid #ededed;
  z-index: -1;
  height: 10px;
  width: 98%;
  left: 1%;
  bottom: -5px;
}
.single-property-container .main-description-box {
  -webkit-box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  margin: 0 0 35px;
  padding: 0 40px;
}
.single-property-container .main-description-box .property-description, .single-property-container .main-description-box .text-description, .single-property-container .main-description-box .property-agent {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.single-property-container .main-description-box .property-description-box {
  margin: 0 0 10px;
}
.single-property-container .main-description-box .property-description-box .property-description {
  padding: 40px;
  margin: 0 -40px;
  border-bottom: 1px solid #f5f5f5;
}
.single-property-container .main-description-box .property-description-box .property-description .rating-box {
  position: relative;
  top: 0;
  right: auto;
  margin: 0 0 10px;
}
.single-property-container .main-description-box .property-description-box .property-description h4, .single-property-container .main-description-box .property-description-box .property-description .address {
  text-align: left;
  padding: 0;
}
.single-property-container .main-description-box .property-description-box .property-description h4 {
  margin: 0 0 9px;
}
.single-property-container .main-description-box .property-description-box .property-description .address {
  margin: 0;
}
.single-property-container .main-description-box .property-description-box .property-description .price {
  border: 0;
  padding: 0;
  margin: 0 0 22px;
  text-align: right;
}
.single-property-container .main-description-box .property-description-box .property-description .services ul {
  left: 0;
  padding: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  display: block;
  text-align: right;
}
.single-property-container .main-description-box .property-description-box .property-description .services ul li {
  padding: 0;
  display: inline-block;
  margin: 0 0 0 45px !important;
}
.single-property-container .main-description-box .property-description-box .property-description .services ul li:first-of-type {
  margin: 0;
}
@media (max-width: 768px) {
  .single-property-container .main-description-box .property-description-box .property-description .services ul {
    text-align: left;
  }
  .single-property-container .main-description-box .property-description-box .property-description .services ul li {
    padding: 0;
    margin: 0 35px 0 0 !important;
  }
  .single-property-container .main-description-box .property-description-box .property-description .services ul li:last-of-type {
    margin: 0;
  }
  .single-property-container .main-description-box .property-description-box .property-description .price {
    padding: 35px 0 0;
    margin: 0 0 15px;
    text-align: left;
  }
}
@media (max-width: 400px) {
  .single-property-container .main-description-box .property-description-box .property-description .services ul li {
    display: block;
  }
}
.single-property-container .main-description-box .text-description {
  padding: 0;
}
.single-property-container .simillar-properties-box {
  -webkit-box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  box-shadow: 0 0px 9px rgba(0, 0, 0, 0.08);
  margin: 0 0 35px;
  padding: 0 40px;
}
@media (min-width: 768px) {
  .single-property-container .simillar-properties-box .simillar-properties-wrapper {
    display: table;
  }
  .single-property-container .simillar-properties-box .simillar-properties-wrapper .properties-wrapper, .single-property-container .simillar-properties-box .simillar-properties-wrapper .widget-wrapper {
    vertical-align: top;
    display: table-cell;
    float: none;
  }
  .single-property-container .simillar-properties-box .widget-wrapper {
    border-right: 1px solid #f5f5f5;
  }
}
.single-property-container .simillar-properties-box .widget {
  padding: 45px 35px 0 0;
}
.single-property-container .simillar-properties-box .properties-wrapper .properties {
  padding: 45px 0 25px 35px;
}
.single-property-container .simillar-properties-box .properties-wrapper .properties .listing-item .cover {
  padding: 30px 35px;
}
.single-property-container .simillar-properties-box .properties-wrapper .properties .listing-item .item-body .block.services ul li {
  padding-left: 22px;
}
@media (max-width: 768px) {
  .single-property-container .simillar-properties-box .properties-wrapper .properties {
    padding: 10px 0 25px 0;
  }
}
.single-property-container .simillar-properties-box .widget_latest_listing {
  padding: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.single-property-container .simillar-properties-box .listing-item .item-cover {
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-box-shadow: none;
}
@media (min-width: 992px) {
  .single-property-container .main-wrapper {
    direction: rtl;
    font-size: 0;
  }
  .single-property-container .main-wrapper .col {
    vertical-align: top;
    direction: ltr;
    float: none;
    display: inline-block;
  }
}
@media (max-width: 768px) {
  .single-property-container .map-info #map-canvas {
    min-height: 350px;
  }
}
@media (min-width: 1200px) {
  .single-property-container .main-info {
    padding-left: 20px;
  }
  .single-property-container .main-info .col-sm-15 {
    padding-right: 30px;
  }
}

/* ----------------- 6.3.9. Single Agent ----------------- */
.single-agent {
  padding-top: 125px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .single-agent {
    padding-top: 160px;
  }
}
.single-agent .listed-properties {
  padding-bottom: 30px;
}
.single-agent .agent-property {
  margin-bottom: 10px;
}
.single-agent .agent-property .cover {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
}
.single-agent .agent-property .cover .hover {
  position: absolute;
  z-index: 2;
  padding: 20px;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.single-agent .agent-property .cover .hover .text {
  padding-top: 15px;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.single-agent .agent-property .cover .hover .text a {
  display: inline-block;
  margin: 0 0 10px;
  color: #808080;
  font-size: 13px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}
.single-agent .agent-property .cover .hover .text p {
  margin: 0;
  color: #9e9e9e;
  font-size: 13px;
}
.single-agent .agent-property .cover img {
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.single-agent .agent-property .cover:hover .hover {
  opacity: 1;
}
.single-agent .agent-property .cover:hover .hover .text {
  padding: 0;
}
.single-agent .agent-property .cover:hover img {
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15);
}
.single-agent .agent-property .property-body h4 {
  margin: 20px 0 0;
  color: #292929;
  font-size: 14px;
  line-height: 1em;
}
.single-agent .agent-property .property-body h4 a {
  color: inherit;
}
.single-agent .agent-property .property-body h4 a:hover {
  color: #ff5353;
}
.single-agent .agent-property .property-body p {
  padding-top: 4px;
  margin: 0;
  color: #c1c1c1;
  font-size: 11px;
  line-height: 1.2em;
  text-transform: uppercase;
}
.single-agent .agent-property .property-body span {
  color: #ff5353;
  font-size: 11px;
  line-height: 1em;
}

/* ----------------- 6.3.10. Blog Section ----------------- */
.blog-section {
  position: relative;
}
.blog-section .page-numbers {
  margin-top: 30px;
}
.blog-section .row:first-of-type {
  margin: 0;
}
@media (min-width: 992px) {
  .blog-section .sidebar-wrapper {
    padding: 0 30px;
    max-width: 380px;
  }
}
.blog-section .blog-content-wrapper {
  padding: 0 30px 120px;
  background: #f4f4f4;
}
.blog-section .blog-content-wrapper .blog-content {
  padding-top: 125px;
}
@media (max-width: 768px) {
  .blog-section .blog-content-wrapper {
    padding: 0 15px 65px;
  }
}

/* ----------------- 6.3.11. User Account ----------------- */
.user-account-section {
  padding: 125px 0 60px;
  background: #f4f4f4;
}
.user-account-section .user-account-tabs .heading {
  list-style-type: none;
  font-size: 0;
  padding: 0;
  margin: 0;
}
.user-account-section .user-account-tabs .heading * {
  outline: none;
}
.user-account-section .user-account-tabs .heading li {
  display: inline-block;
  width: 240px;
  font-size: 0;
  vertical-align: bottom;
}
.user-account-section .user-account-tabs .heading li.ui-state-active a {
  color: #7e7e7e;
  background: #fff;
}
.user-account-section .user-account-tabs .heading li a {
  display: inline-block;
  position: relative;
  height: 85px;
  padding: 0 50px 0 80px;
  width: 100%;
  color: #ff5252;
}
.user-account-section .user-account-tabs .heading li a span {
  position: relative;
  display: inline-block;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.143em;
  text-transform: uppercase;
}
.user-account-section .user-account-tabs .heading li a:before {
  position: absolute;
  display: inline-block;
  font-family: icomoon;
  color: inherit;
  font-size: 36px;
  font-weight: 300;
  left: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.user-account-section .user-account-tabs .heading li a.profile:before {
  content: "";
}
.user-account-section .user-account-tabs .heading li a.submit:before {
  content: "";
}
.user-account-section .user-account-tabs .heading li a.properties:before {
  content: "";
}
@media (max-width: 768px) {
  .user-account-section .user-account-tabs .heading li {
    width: 33.33333% !important;
    text-align: center !important;
  }
  .user-account-section .user-account-tabs .heading li a {
    padding: 0;
  }
  .user-account-section .user-account-tabs .heading li a:before {
    position: relative;
    left: 0;
  }
  .user-account-section .user-account-tabs .heading li a span {
    display: none !important;
  }
}
.user-account-section .user-account-tabs .tabs-body {
  position: relative;
  background: #fff;
  padding: 40px 40px 50px;
}
.user-account-section .user-account-tabs .tabs-body .main-loader .spinner {
  top: 300px;
}
.user-account-section .user-account-tabs .tabs-body .update-form p, .user-account-section .user-account-tabs .tabs-body .submit-form p {
  margin: 20px 0;
  display: block;
  color: #2e2e2e;
  font-size: 19px;
  line-height: 1em;
  font-weight: 200;
}
.user-account-section .user-account-tabs .tabs-body .update-form input:not([type="submit"]):not(.no-select), .user-account-section .user-account-tabs .tabs-body .update-form textarea:not(.no-select), .user-account-section .user-account-tabs .tabs-body .submit-form input:not([type="submit"]):not(.no-select), .user-account-section .user-account-tabs .tabs-body .submit-form textarea:not(.no-select) {
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  padding: 10px 20px;
  resize: none;
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 2px solid #e8e8e8;
  font-size: 14px;
  font-weight: 300;
  color: #868686;
  margin-bottom: 20px;
}
.user-account-section .user-account-tabs .tabs-body .update-form input:not([type="submit"]):not(.no-select)::-webkit-input-placeholder, .user-account-section .user-account-tabs .tabs-body .update-form textarea:not(.no-select)::-webkit-input-placeholder, .user-account-section .user-account-tabs .tabs-body .submit-form input:not([type="submit"]):not(.no-select)::-webkit-input-placeholder, .user-account-section .user-account-tabs .tabs-body .submit-form textarea:not(.no-select)::-webkit-input-placeholder {
  color: #868686;
}
.user-account-section .user-account-tabs .tabs-body .update-form input:not([type="submit"]):not(.no-select):-moz-placeholder, .user-account-section .user-account-tabs .tabs-body .update-form textarea:not(.no-select):-moz-placeholder, .user-account-section .user-account-tabs .tabs-body .submit-form input:not([type="submit"]):not(.no-select):-moz-placeholder, .user-account-section .user-account-tabs .tabs-body .submit-form textarea:not(.no-select):-moz-placeholder {
  color: #868686;
}
.user-account-section .user-account-tabs .tabs-body .update-form input:not([type="submit"]):not(.no-select).placeholder, .user-account-section .user-account-tabs .tabs-body .update-form textarea:not(.no-select).placeholder, .user-account-section .user-account-tabs .tabs-body .submit-form input:not([type="submit"]):not(.no-select).placeholder, .user-account-section .user-account-tabs .tabs-body .submit-form textarea:not(.no-select).placeholder {
  color: #868686;
}
.user-account-section .user-account-tabs .tabs-body .update-form input:not([type="submit"]):not(.no-select):focus, .user-account-section .user-account-tabs .tabs-body .update-form input:not([type="submit"]):not(.no-select).has-value, .user-account-section .user-account-tabs .tabs-body .update-form textarea:not(.no-select):focus, .user-account-section .user-account-tabs .tabs-body .update-form textarea:not(.no-select).has-value, .user-account-section .user-account-tabs .tabs-body .submit-form input:not([type="submit"]):not(.no-select):focus, .user-account-section .user-account-tabs .tabs-body .submit-form input:not([type="submit"]):not(.no-select).has-value, .user-account-section .user-account-tabs .tabs-body .submit-form textarea:not(.no-select):focus, .user-account-section .user-account-tabs .tabs-body .submit-form textarea:not(.no-select).has-value {
  position: relative;
  outline: none;
  z-index: 2;
  border-color: rgba(66, 66, 66, 0.8);
  color: #424242;
}
.user-account-section .user-account-tabs .tabs-body .update-form .select-box, .user-account-section .user-account-tabs .tabs-body .submit-form .select-box {
  margin-bottom: 20px;
}
.user-account-section .user-account-tabs .tabs-body .update-form .update-btn, .user-account-section .user-account-tabs .tabs-body .submit-form .update-btn {
  margin: 5px 0 0;
  background: 0;
  color: #ff7272;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.user-account-section .user-account-tabs .tabs-body .update-form .update-btn:focus, .user-account-section .user-account-tabs .tabs-body .update-form .update-btn:hover, .user-account-section .user-account-tabs .tabs-body .submit-form .update-btn:focus, .user-account-section .user-account-tabs .tabs-body .submit-form .update-btn:hover {
  outline: none;
  color: #424242;
}
.user-account-section .user-account-tabs .tabs-body .update-form textarea, .user-account-section .user-account-tabs .tabs-body .submit-form textarea {
  min-height: 110px;
}
.user-account-section .user-account-tabs .tabs-body .update-form .social-input, .user-account-section .user-account-tabs .tabs-body .submit-form .social-input {
  position: relative;
}
.user-account-section .user-account-tabs .tabs-body .update-form .social-input input, .user-account-section .user-account-tabs .tabs-body .submit-form .social-input input {
  padding-left: 36px !important;
}
.user-account-section .user-account-tabs .tabs-body .update-form .social-input:before, .user-account-section .user-account-tabs .tabs-body .submit-form .social-input:before {
  position: absolute;
  z-index: 3;
  left: 13px;
  top: 13px;
  color: #e0e0e0;
  font-size: 18px;
  pointer-events: none;
  font-family: FontAwesome;
}
.user-account-section .user-account-tabs .tabs-body .update-form .social-input.skype:before, .user-account-section .user-account-tabs .tabs-body .submit-form .social-input.skype:before {
  content: "";
}
.user-account-section .user-account-tabs .tabs-body .update-form .social-input.phone:before, .user-account-section .user-account-tabs .tabs-body .submit-form .social-input.phone:before {
  content: "";
}
.user-account-section .user-account-tabs .tabs-body .update-form .social-input.facebook:before, .user-account-section .user-account-tabs .tabs-body .submit-form .social-input.facebook:before {
  content: "";
}
.user-account-section .user-account-tabs .tabs-body .update-form .social-input.twitter:before, .user-account-section .user-account-tabs .tabs-body .submit-form .social-input.twitter:before {
  content: "";
}
.user-account-section .user-account-tabs .tabs-body .photo-upload {
  position: relative;
  display: inline-block;
}
.user-account-section .user-account-tabs .tabs-body .photo-upload img {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.user-account-section .user-account-tabs .tabs-body .photo-upload .icon {
  display: inline-block;
  height: 145px;
  width: 145px;
  line-height: 145px;
  vertical-align: middle;
  text-align: center;
  background: #f4f4f4;
  color: #cacaca;
  font-size: 20px;
  border-radius: 4px;
  border: 3px solid transparent;
  -webkit-transition: all 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.user-account-section .user-account-tabs .tabs-body .photo-upload .icon:hover {
  background: 0;
  border-color: #cacaca;
}
.user-account-section .user-account-tabs .tabs-body .photo-upload .upload-link {
  display: block;
  margin-top: 22px;
  text-align: center;
  color: #7e7e7e;
  font-size: 14px;
  font-weight: 300;
}
.user-account-section .user-account-tabs .tabs-body .photo-upload .upload-link:hover {
  color: #060606;
}
.user-account-section .user-account-tabs .tabs-body .location-on-map {
  border: 1px solid #ededed;
  margin: 45px 0 45px;
  background: #fff;
  padding: 5px;
}
.user-account-section .user-account-tabs .tabs-body .location-on-map .map-canvas {
  position: relative;
  min-height: 300px;
}
.user-account-section .user-account-tabs .tabs-body .location-on-map .map-canvas:before {
  content: "";
  position: absolute;
  display: inline-block;
  border: 1px solid #ededed;
  z-index: -1;
  height: 10px;
  width: 98%;
  left: 1%;
  bottom: -5px;
}
.user-account-section .user-account-tabs .tabs-body .comodities {
  font-size: 0;
  padding: 10px 0 20px;
}
@media (max-width: 992px) {
  .user-account-section .user-account-tabs .tabs-body .comodities .filters {
    padding: 10px 0 35px;
  }
}
.user-account-section .user-account-tabs .tabs-body .comodities .check-option {
  display: inline-block;
  width: 25%;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .user-account-section .user-account-tabs .tabs-body .comodities .check-option {
    width: 50%;
  }
}
@media (max-width: 420px) {
  .user-account-section .user-account-tabs .tabs-body .comodities .check-option {
    width: 100%;
  }
}
.user-account-section .user-account-tabs .tabs-body .comodities .check-option label {
  position: relative;
  cursor: pointer;
  padding: 2px 0 0 30px;
  margin: 0;
  color: #545454;
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
}
.user-account-section .user-account-tabs .tabs-body .comodities .check-option label input {
  width: auto !important;
  display: none !important;
  visibility: hidden;
  margin: 0 10px 0 0;
}
.user-account-section .user-account-tabs .tabs-body .comodities .check-option label input:checked + span:after {
  opacity: 1;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.user-account-section .user-account-tabs .tabs-body .comodities .check-option label span:after, .user-account-section .user-account-tabs .tabs-body .comodities .check-option label span:before {
  display: inline-block;
  visibility: visible;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}
.user-account-section .user-account-tabs .tabs-body .comodities .check-option label span:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #ededed;
}
.user-account-section .user-account-tabs .tabs-body .comodities .check-option label span:after {
  opacity: 0;
  -webkit-transform: rotate(-35deg);
  -webkit-transform-origin: -100% -100%;
  -ms-transform: rotate(-35deg);
  -ms-transform-origin: -100% -100%;
  transform: rotate(-35deg);
  transform-origin: -100% -100%;
  top: 3px;
  left: 4px;
  color: #545454;
  font-family: icomoon;
  content: "";
  font-size: 10px;
  -webkit-transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter {
  display: block;
  margin: 0 0 10px;
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter:last-of-type {
  margin: 0;
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter label {
  position: relative;
  cursor: pointer;
  padding: 5px 0 0 25px;
  margin: 0 0 10px;
  color: #424242;
  font-size: 14px;
  line-height: 1em;
  font-weight: 300;
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter input {
  width: auto !important;
  display: none !important;
  visibility: hidden;
  margin-right: 4px;
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter input:checked + span:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter span {
  display: inline-block;
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter span:after, .user-account-section .user-account-tabs .tabs-body .comodities .select-filter span:before {
  position: absolute;
  top: 5px;
  left: 0;
  visibility: visible;
  content: "";
  border-radius: 50%;
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter span:before {
  height: 15px;
  width: 15px;
  border: 2px solid #424242;
}
.user-account-section .user-account-tabs .tabs-body .comodities .select-filter span:after {
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  top: 9px;
  left: 4px;
  width: 7px;
  height: 7px;
  background: #424242;
  -webkit-transition: all 0.09s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.09s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.09s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter {
  display: block;
  margin: 0 0 10px;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter:last-of-type {
  margin: 0;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .caption, .user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block {
  display: inline-block;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .caption {
  position: relative;
  top: 8px;
  margin: 0 15px 0 0;
  color: #545454;
  font-size: 14px;
  min-width: 33px;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block {
  font-size: 0;
  border: 1px solid #ededed;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block input {
  margin: 0;
  height: 25px;
  border-radius: 0;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 1px solid #ededed !important;
  border-right: 1px solid #ededed !important;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block input:focus {
  outline: none;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block input, .user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block .action {
  vertical-align: top;
  display: inline-block;
  text-align: center;
  line-height: 1em;
  width: 30px;
  height: 30px;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block .action {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
  font-size: 22px;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block .action.add {
  padding-top: 3px;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block .action.substract {
  padding-top: 2px;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block .action:hover {
  color: #c7c7c7;
  background: #ededed;
}
.user-account-section .user-account-tabs .tabs-body .comodities .nr-filter .block input {
  width: 32px;
  padding: 0 3px;
  color: #545454;
  font-size: 14px;
}
.user-account-section .user-account-tabs #properties .listing-item {
  margin-bottom: 15px;
}
.user-account-section .user-account-tabs #properties .listing-item .item-cover .cover {
  padding: 30px 35px;
}
.user-account-section .user-account-tabs #properties .listing-item .item-body .block.services ul li {
  padding: 0;
}
.user-account-section .user-account-tabs #properties .listing-item .item-body .block.services ul li:before {
  display: none;
}
.user-account-section .user-account-tabs #properties .listing-item .item-body .block.location-info .location h3 {
  font-weight: 300;
  font-size: 14px;
}
@media (max-width: 992px) {
  .user-account-section .heading li {
    width: 33.33333%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .user-account-section {
    padding-top: 170px;
  }
  .user-account-section .user-account-tabs .tabs-body {
    padding: 30px 20px 30px;
  }
}

/* ----------------- 6.3.12. 404 Section ----------------- */
.error-section {
  background: url(../img/404-cover.jpg) top center;
  background-size: cover;
  padding-top: 260px;
  padding-bottom: 100px;
  min-height: 90vh;
}
.error-section .heading {
  text-align: left;
  display: inline-block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
.error-section .heading .heading-404 {
  display: block;
  color: #ff5252;
  max-width: 95px;
  font-size: 31px;
  line-height: 1em;
  font-weight: 500;
  padding-bottom: 7px;
  margin: 0 0 10px;
  border-bottom: 3px solid #ff5252;
}
.error-section .heading img {
  margin-bottom: 12px;
}
.error-section .heading .sub-title {
  margin: 0;
  color: #868686;
  font-size: 14px;
  line-height: 1em;
}
.error-section .body-404 {
  padding: 45px 0 0;
  text-align: center;
}
.error-section .body-404 h4 {
  margin: 0 0 45px;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5em;
}
@media (max-width: 768px) {
  .error-section {
    padding-top: 200px;
  }
}

/* ----------------- 6.4. Components ----------------- */
/* ----------------- 6.4.1. Custom Select Boxes ----------------- */
.select-box {
  display: block;
  position: relative;
}
.select-box.open:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.select-box.open input {
  outline: none;
  background: #fff;
  color: #6e6e6e;
}
.select-box:after {
  font-family: FontAwesome;
  position: absolute;
  color: #424242;
  content: "";
  top: 13px;
  right: 20px;
  pointer-events: none;
  -webkit-transition: all 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.35s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.select-box input {
  width: 100%;
  cursor: pointer;
}
.select-box ul {
  display: none;
  position: absolute;
  z-index: 9;
  list-style-type: none;
  padding: 0;
  margin: -15px 0 20px;
  background: #fff;
  border-radius: 5px;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
}
.select-box ul li {
  cursor: pointer;
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  line-height: 1em;
  border-bottom: 1px solid #f6f6f6;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.select-box ul li:hover {
  background: #f6f6f6;
}
.select-box ul li:last-of-type {
  border: 0;
}
.select-box.type-2:after {
  top: auto;
  right: 8px;
  bottom: 8px;
  font-size: 12px;
}
.select-box.type-2 input {
  background: 0;
  color: #424242;
  font-size: 14px;
  font-weight: 300;
  line-height: 1em;
  padding: 0 8px 8px;
  border-bottom: 2px solid #ededed;
}
.select-box.type-2 input::-webkit-input-placeholder {
  color: #424242;
}
.select-box.type-2 input:-moz-placeholder {
  color: #424242;
}
.select-box.type-2 input.placeholder {
  color: #424242;
}
.select-box.type-2 input.has-value {
  border-color: rgba(66, 66, 66, 0.8);
}
.select-box.type-2 ul {
  z-index: 9;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 0;
  -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.13);
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.13);
}
.select-box.type-2 ul li {
  border: 0;
  padding: 11px 10px;
  color: #424242;
  font-size: 14px;
  font-weight: 500;
}
.select-box.type-2 ul li:hover {
  background: rgba(246, 246, 246, 0.8);
}
.select-box.type-2 ul li:last-of-type {
  margin-bottom: 15px;
}

/* ----------------- 6.4.2. Map Filer Box ----------------- */
.map-filter-box {
  padding: 125px 40px 60px;
  background: url(../images/pattern-1.png);
  border-right: 6px solid #fff;
}
.map-filter-box .box-caption {
  display: block;
  padding-bottom: 20px;
}
.map-filter-box .box-caption h4 {
  margin: 0;
  color: #616161;
  font-size: 23px;
  line-height: 1em;
  font-weight: 500;
}
.map-filter-box .box-caption p {
  margin: 0;
  color: #8c8c8c;
  font-size: 14px;
  font-weight: 300;
}
.map-filter-box .filter-box-input {
  margin: 0 0 20px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  color: #454545;
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  padding: 12px 20px;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.map-filter-box .filter-box-input:focus, .map-filter-box .filter-box-input.has-value {
  outline: none;
  background: #fff;
  color: #6e6e6e;
}
.map-filter-box .price-box {
  padding: 10px 0 20px;
}
.map-filter-box .price-box * {
  box-shadow: none;
}
.map-filter-box .price-box .caption {
  margin: 0 0 15px;
  padding-left: 10px;
  color: #878789;
  font-size: 12px;
  font-weight: 500;
}
.map-filter-box .price-box .caption i {
  font-style: normal;
  font-size: 14px;
  font-weight: 300;
}
.map-filter-box .price-box .noUi-target {
  border-radius: 0;
  border: 0;
  box-shadow: none;
  background: #fff;
  height: 3px;
}
.map-filter-box .price-box .noUi-target .noUi-background {
  background: #fff;
  border-radius: 0;
}
.map-filter-box .price-box .noUi-target .noUi-connect {
  box-shadow: none;
  background: #ff5252;
}
.map-filter-box .price-box .noUi-target .noUi-handle {
  top: -4px;
  left: -9px;
  height: 12px;
  width: 12px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 0;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.32);
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}
.map-filter-box .price-box .noUi-target .noUi-handle.noUi-active {
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
  transform: scale(1.3);
}
.map-filter-box .price-box .noUi-target .noUi-handle:before, .map-filter-box .price-box .noUi-target .noUi-handle:after {
  display: none;
}
.map-filter-box .price-box .price-limits {
  padding-top: 7px;
}
.map-filter-box .price-box .price-limits span {
  color: #848485;
  font-size: 12px;
  font-weight: 500;
}
.map-filter-box .price-box .price-limits span.lower {
  float: left;
}
.map-filter-box .price-box .price-limits span.upper {
  float: right;
}
@media (max-width: 992px) {
  .map-filter-box {
    border-right: 0;
    border-bottom: 6px solid #fff;
  }
}
@media (max-width: 768px) {
  .map-filter-box {
    padding-top: 182px;
  }
}
@media (max-width: 400px) {
  .map-filter-box {
    padding: 150px 30px 45px;
  }
}

/* ----------------- 6.4.3. Hot Offer ----------------- */
.hot-offer {
  background: #ff5252;
  color: #fff;
  padding: 8px 0 6px;
}
.hot-offer a {
  color: #fff;
}
.hot-offer .hot-offer-slider {
  padding-top: 10px;
  overflow: hidden;
}
.hot-offer h2, .hot-offer p {
  margin: 0;
}
.hot-offer .icon {
  font-size: 45px;
  margin-right: 25px;
}
.hot-offer h2 {
  font-size: 35px;
  line-height: 1em;
  font-weight: 200;
}
.hot-offer h2 span {
  position: relative;
  top: 0px;
}
.hot-offer p {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.235em;
}
@media (max-width: 992px) {
  .hot-offer h2 {
    text-align: center;
  }
  .hot-offer .icon {
    display: block;
    margin: 0 0 20px;
  }
}

/* ----------------- 6.4.4. Listing Item ----------------- */
.listing-item {
  position: relative;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
}
.listing-item:hover:after {
  bottom: -3px;
}
.listing-item:after {
  position: absolute;
  content: "";
  bottom: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 10px;
  width: 98%;
  background: #fff;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.listing-item .item-cover {
  position: relative;
  overflow: hidden;
}
.listing-item .item-cover img {
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.listing-item .item-cover .cover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px 45px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.listing-item .item-cover .cover p {
  margin: 0;
  color: #a4a4a4;
  font-size: 13px;
  font-weight: 200;
  line-height: 2.154em;
}
.listing-item .item-cover .cover a {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.listing-item .item-cover .cover a i {
  display: inline-block;
  text-align: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.listing-item .item-cover.type-1 .cover {
  background: rgba(255, 255, 255, 0.95);
}
.listing-item .item-cover.type-1 .cover a i {
  background: #dfdfde;
  color: #bdbdbd;
  padding-top: 14px;
}
.listing-item .item-cover.type-1 .cover a i:hover {
  background: #fff;
  color: #7f7f7f;
}
.listing-item .item-cover.type-1 .cover a i:before {
  font-style: normal;
  font-family: FontAwesome;
  content: "";
  font-size: 24px;
  font-weight: 700;
}
.listing-item .item-cover.type-2 .cover {
  background: #424242;
}
.listing-item .item-cover.type-2 .cover a i {
  color: #a8a8a8;
  background: #3b3b3b;
  padding-top: 14px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.listing-item .item-cover.type-2 .cover a i:hover {
  color: #7f7f7f;
  background: #dfdfde;
}
.listing-item .item-cover.type-2 .cover a i:before {
  font-family: icomoon;
  font-style: normal;
  content: "";
  font-size: 18px;
}
.listing-item .item-cover:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.listing-item .item-cover:hover .cover {
  visibility: visible;
  opacity: 1;
}
.listing-item .item-body {
  position: relative;
  background: #fff;
  display: table;
  width: 100%;
  z-index: 2;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.12);
}
.listing-item .item-body ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.listing-item .item-body .block {
  display: table-cell;
  vertical-align: top;
}
.listing-item .item-body .block .caption {
  margin: 0 0 12px;
  color: #ff5252;
  font-size: 15px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.listing-item .item-body .block.services {
  padding: 25px 15px 30px 28px;
}
.listing-item .item-body .block.services ul li {
  position: relative;
  display: block;
  padding-left: 40px;
  line-height: 1em;
  font-weight: 500;
  font-size: 13px;
  color: #595959;
  margin-bottom: 15px;
}
.listing-item .item-body .block.services ul li:last-of-type {
  margin: 0;
}
.listing-item .item-body .block.services ul li:before {
  font-family: FontAwesome;
  position: absolute;
  color: #bdbdbd;
  font-size: 10px;
  top: 0;
  left: 0;
}
.listing-item .item-body .block.services ul li.bedrooms:before {
  content: "";
}
.listing-item .item-body .block.services ul li.area:before {
  content: "";
}
.listing-item .item-body .block.services ul li.bathrooms:before {
font-family: FontAwesome;
  content: "\f043";
}
.listing-item .item-body .block.location-info .location {
  display: block;
  padding: 25px 20px 30px;
  border-bottom: 1px solid #f5f5f5;
}
.listing-item .item-body .block.location-info .location h3 {
  margin: 0 0 8px;
  color: #333333;
  font-size: 19px;
  font-weight: 200;
  line-height: 1em;
}
.listing-item .item-body .block.location-info .location h3 a {
  color: inherit;
}
.listing-item .item-body .block.location-info .location h3 a:hover {
  color: #000;
}
.listing-item .item-body .block.location-info .location p {
  margin: 0;
  color: #a5a5a5;
  font-size: 11px;
  line-height: 1em;
  font-weight: 500;
  text-transform: uppercase;
}
.listing-item .item-body .block.location-info .price {
  padding: 16px 20px;
}
.listing-item .item-body .block.location-info .price p {
  margin: 0;
  color: #060606;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.listing-item .item-body .block.location-info .price p span {
  margin-left: 6px;
  color: #ababab;
  background: #fafafa;
  padding: 1px 2px;
  font-size: 10px;
  font-weight: 500;
}
.listing-item .item-body .block:first-of-type {
  width: 40%;
  border-right: 1px solid #f5f5f5;
}
@media (max-width: 1600px) {
  .listing-item .item-body .block.services {
    padding: 25px 10px 30px 18px;
  }
  .listing-item .item-body .block.services ul li {
    padding-left: 25px;
  }
  .listing-item .item-body .block.location-info .price span:before {
    display: block;
    content: "";
    margin-bottom: 5px;
  }
  .listing-item .item-body .block:first-of-type {
    width: 48%;
  }
}
@media (max-width: 768px) {
  .listing-item .item-cover .cover {
    padding: 20px;
  }
  .listing-item .item-cover .cover a i {
    width: 32px;
    height: 32px;
  }
  .listing-item .item-cover.type-1 .cover a i {
    padding-top: 6px;
  }
  .listing-item .item-cover.type-2 .cover a i {
    padding-top: 8px;
  }
}

@media (max-width: 600px) {
  .listing-items .row [class*="col-"] {
    width: 100% !important;
  }
}

/* ----------------- 6.4.5. Most Viewed Item ----------------- */
.most-viewed-item {
  margin-bottom: 10px;
}
.most-viewed-item .item-cover {
  position: relative;
  overflow: hidden;
}
.most-viewed-item .item-cover .cover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  padding: 0 40px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.most-viewed-item .item-cover .cover .text {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.3;
  padding-top: 30px;
  -webkit-transition-dealy: 0.3s;
  -moz-transition-dealy: 0.3s;
  -o-transition-dealy: 0.3s;
  transition-dealy: 0.3s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.most-viewed-item .item-cover .cover .text a {
  display: block;
  color: #808080;
  font-size: 13px;
  line-height: 1em;
  font-weight: 900;
  margin: 0 0 25px;
  text-transform: uppercase;
}
.most-viewed-item .item-cover .cover .text p {
  margin: 0;
  color: #9e9e9e;
  font-size: 13px;
  line-height: 1.615em;
}
.most-viewed-item .item-cover img {
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.most-viewed-item .item-cover:hover .cover {
  visibility: visible;
  opacity: 1;
}
.most-viewed-item .item-cover:hover .cover .text {
  opacity: 1;
  padding: 0;
}
.most-viewed-item .item-cover:hover img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}
.most-viewed-item .item-body {
  background: #3c3c3c;
}
.most-viewed-item .item-body .services {
  list-style-type: none;
  background: #2c2c2c;
  text-align: center;
  display: block;
  margin: 0;
  padding: 10px 0 0;
}
.most-viewed-item .item-body .services li {
  display: inline-block;
  margin-right: 12px;
}
.most-viewed-item .item-body .services li:last-of-type {
  margin: 0;
}
.most-viewed-item .item-body .services li p {
  font-size: 11px;
  font-weight: 500;
  color: #a5a5a5;
  text-transform: uppercase;
}
.most-viewed-item .item-body .services li p:before {
  font-family: FontAwesome;
  color: #6b6b6b;
  font-size: 10px;
  position: relative;
  top: -1px;
  margin-right: 8px;
}
.most-viewed-item .item-body .services li p.bedrooms:before {
  content: "";
}
.most-viewed-item .item-body .services li p.area:before {
  content: "";
}
.most-viewed-item .item-body .services li p.bathrooms:before {
  font-family: FontAwesome;
  content: "\f043";
}
.most-viewed-item .item-body .location {
  position: relative;
  padding: 20px 40px 45px;
}
.most-viewed-item .item-body .location h3 {
  margin: 0 0 7px;
  font-size: 22px;
  line-height: 1em;
  color: #7d7c7c;
  font-weight: 200;
}
.most-viewed-item .item-body .location h3 a {
  color: inherit;
}
.most-viewed-item .item-body .location h3 a:hover {
  color: #fff;
}
.most-viewed-item .item-body .location p {
  margin: 0;
  font-size: 11px;
  color: #616161;
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
}
.most-viewed-item .item-body .location .price {
  position: absolute;
  top: 35px;
  right: 45px;
  color: #d1d1d1;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
}
@media (max-width: 1200px) {
  .most-viewed-item .item-body .location .price {
    top: 10px;
    right: 0;
    position: inherit;
  }
}

/* ----------------- 6.4.6. Most Viewed Carousel ----------------- */
.most-viewed-carousel {
  padding: 0;
  margin: 0;
}
.most-viewed-carousel .owl-wrapper-outer {
  margin: 0 -5px;
  padding-top: 25px;
}
.most-viewed-carousel .item {
  padding: 0 5px;
}

.owl-controls {
  position: absolute;
  top: -45px;
  left: 0;
}
.owl-controls .owl-buttons div {
  display: inline-block;
}
.owl-controls .owl-buttons div .fa {
  text-align: center;
  font-size: 24px;
  padding-top: 15px;
  font-weight: 700;
  width: 55px;
  height: 55px;
  color: #bdbdbd;
  background: #f5f5f5;
  border-radius: 50%;
  -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.owl-controls .owl-buttons div .fa:hover {
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.2);
}
.owl-controls .owl-buttons div:first-of-type {
  margin-right: 15px;
}

/* ----------------- 6.4.7. Agent ----------------- */
.agent {
  position: relative;
  padding-left: 155px;
  margin-bottom: 45px;
  min-height: 125px;
}
.agent:last-of-type {
  margin-bottom: 0;
}
.agent .image {
  position: absolute;
  width: 125px;
  top: 0;
  left: 0;
}
.agent .image:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.agent .image:hover:before {
  opacity: 0;
}
.agent .image img {
  border-radius: 100%;
}
.agent h3 {
  margin: 0;
  color: #b71c1c;
  font-size: 22px;
  line-height: 1em;
  font-weight: 700;
}
.agent h3 a {
  color: #292929;
}
.agent h3 a:hover {
  color: #b71c1c;
}
.agent .position {
  margin: 0;
  color: #a5a5a5;
  font-size: 14px;
  line-height: 1.3em;
}
.agent .social-block {
  list-style-type: none;
  padding: 12px 0 24px;
  font-size: 0;
  margin: 0;
}
.agent .social-block li {
  display: inline-block;
  margin-right: 4px;
}
.agent .social-block li i {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 18px;
  padding-top: 9px;
  color: #ff5252;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid #a5a5a5;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.agent .social-block li i:hover {
  border-color: #ff5252;
}
.agent .social-block li:last-of-type {
  margin: 0;
}
.agent p {
  margin: 0;
  color: #a5a5a5;
  font-size: 12px;
  line-height: 1.75em;
}
.agent.featured-agent {
  padding: 0;
  text-align: center;
}
.agent.featured-agent .image {
  padding-bottom: 30px;
  position: inherit;
  width: auto;
}
.agent.featured-agent .image:before {
  display: none;
}
.agent.featured-agent .featured-agent-info {
  text-align: left;
  padding-left: 30px;
}
@media (max-width: 768px) {
  .agent.featured-agent .featured-agent-info {
    padding: 0;
  }
}
.agent.featured-agent .featured-agent-info p {
  margin: 0 0 20px;
}
.agent.featured-agent .featured-agent-info ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.agent.featured-agent .featured-agent-info ul li {
  position: relative;
  padding-left: 40px;
}
.agent.featured-agent .featured-agent-info ul li:before {
  font-family: icomoon;
  position: absolute;
  content: "";
  color: #a5a5a5;
  left: 0;
  top: 0;
}
@media (max-width: 992px) {
  .agent.featured-agent {
    padding-top: 45px;
  }
}
.agent.fully-styled {
  margin-bottom: 10px;
  padding: 45px 40px 20px;
  border: 1px solid #f5f5f5;
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.07);
  -webkit-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.4s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.agent.fully-styled:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.agent.fully-styled h3 a:hover {
  color: #a5a5a5;
}
.agent.fully-styled .image {
  position: relative;
  float: right;
  width: 125px;
  margin: 0 0 15px 25px;
}
.agent.fully-styled .image:before {
  display: none;
}
.agent.fully-styled .image img {
  filter: url("data:image/svg+xml;utf8,<svg%20xmlns='http://www.w3.org/2000/svg'><filter%20id='grayscale'><feColorMatrix%20type='matrix'%20values='0.3333%200.3333%200.3333%200%200%200.3333%200.3333%200.3333%200%200%200.3333%200.3333%200.3333%200%200%200%200%200%201%200'/></filter></svg>#grayscale");
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
  opacity: 0.85;
  -webkit-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.12s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.agent.fully-styled .image img:hover {
  filter: none;
  -webkit-filter: grayscale(0);
  opacity: 1;
}
.agent.fully-styled .position {
  margin-bottom: 20px;
}
.agent.fully-styled .social-block {
  padding: 20px 0 0;
}
.agent.single {
  margin: 0;
  padding: 0;
  border: 1px solid #f5f5f5;
}
.agent.single .image {
  position: relative;
  width: 100%;
  border-right: 1px solid #f5f5f5;
}
.agent.single .image:before {
  display: none;
}
.agent.single .image img {
  border-radius: 0;
}
.agent.single .description {
  padding: 70px 50px 30px;
}
.agent.single .description h3, .agent.single .description .position, .agent.single .description .social-block {
  text-align: center;
}
@media (max-width: 768px) {
  .agent.single .image {
    padding-bottom: 1px;
    border-right: 0;
    border-bottom: 1px solid #f5f5f5;
  }
  .agent.single .description {
    padding: 45px 25px 25px;
  }
}

.agents-container {
  padding-right: 30px;
  margin-right: 20px;
  border-right: 1px solid #f5f5f5;
}
.agents-container .owl-carousel {
  padding-top: 50px;
}
@media (max-width: 992px) {
  .agents-container {
    margin: 0;
    padding: 0;
    border: 0;
  }
}
.agents-container ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* ----------------- 6.4.8. Blog Post ----------------- */
.blog-post {
  position: relative;
  margin-bottom: 10px;
}
.blog-post:after {
  position: absolute;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 98%;
  height: 10px;
  background: red;
  bottom: 0;
  left: 50%;
  background: #fff;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.blog-post:hover .post-body {
  -webkit-box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.08);
}
.blog-post:hover:after {
  bottom: -2px;
}
.blog-post .blog-post-meta {
  position: absolute;
  width: 125px;
  top: 0;
  left: 0;
}
.blog-post .blog-post-meta .post-cover {
  position: relative;
}
.blog-post .blog-post-meta .post-cover:before {
  position: absolute;
  font-family: FontAwesome;
  pointer-events: none;
  text-align: center;
  font-size: 10px;
  display: none;
  color: #fff;
  top: 10px;
  left: 10px;
  width: 20px;
  height: 20px;
}
.blog-post .blog-post-meta .post-author {
  position: relative;
  margin-top: -25%;
  text-align: center;
}
.blog-post .blog-post-meta .post-author img {
  border-radius: 50%;
  border: 7px solid #fff;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}
.blog-post .blog-post-meta .post-author p {
  margin: 10px 0 0;
  color: #a5a5a5;
  font-size: 10px;
  line-height: 1em;
  text-transform: uppercase;
}
.blog-post .post-body {
  position: relative;
  z-index: 2;
  background: #fff;
  display: inline-block;
  width: 100%;
  padding-left: 160px;
  padding-right: 45px;
  padding-bottom: 25px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.blog-post .post-body .post-title {
  margin: 20px 0 24px;
  color: #2e2e2e;
  font-size: 19px;
  font-weight: 200;
  line-height: 1.105em;
}
.blog-post .post-body .post-title a {
  color: inherit;
}
.blog-post .post-body .post-title a:hover {
  color: #ff5252;
}
.blog-post .post-body p {
  margin: 0 0 35px;
  color: #a5a5a5;
  font-size: 13px;
  line-height: 2.462em;
}
.blog-post .post-body .post-meta ul {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.blog-post .post-body .post-meta ul li {
  display: inline-block;
  margin-right: 20px;
  line-height: 1em;
  font-weight: 500;
  font-size: 13px;
  color: #dcdbdb;
}
.blog-post .post-body .post-meta ul li:before {
  font-family: FontAwesome;
  margin-right: 6px;
  color: #a5a5a5;
}
.blog-post .post-body .post-meta ul li.date:before {
  content: "";
}
.blog-post .post-body .post-meta ul li.comments:before {
  content: "";
}
.blog-post .post-body .post-meta ul li:last-of-type {
  margin: 0;
}
.blog-post .post-body .post-meta .post-link {
  display: inline-block;
  float: right;
  color: #b71c1c;
  font-size: 13px;
  line-height: 1em;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-post .post-body .post-meta .post-link:hover {
  color: #a5a5a5;
}
.blog-post.no-image-post .post-author {
  margin-top: 20px;
}
.blog-post.post-with-testimonial .post-cover:before {
  display: inline-block;
  background: #673ab7;
  content: "";
}
.blog-post.post-with-testimonial .post-body p {
  font-style: italic;
}
.blog-post.post-with-image .post-cover:before {
  display: inline-block;
  background: #d25959;
  content: "";
}
.blog-post.post-with-video .post-cover:before {
  display: inline-block;
  content: "";
  background: #039be5;
}
.blog-post.post-with-audio .post-cover:before {
  display: inline-block;
  background: #26a69a;
  content: "";
}
@media (max-width: 768px) {
  .blog-post .post-body {
    padding-left: 145px;
    padding-right: 25px;
    padding-bottom: 15px;
  }
  .blog-post .post-body p {
    line-height: 1.7em;
  }
  .blog-post .post-body .post-meta ul {
    display: block;
  }
  .blog-post .post-body .post-meta .post-link {
    margin: 25px 0 0;
    float: none;
  }
}

.single-blogpost {
  background: #fff;
}
.single-blogpost .post-meta {
  position: relative;
  padding: 35px 0 10px;
}
.single-blogpost .post-meta:before {
  position: absolute;
  font-family: FontAwesome;
  pointer-events: none;
  text-align: center;
  font-size: 10px;
  display: none;
  color: #fff;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
}
.single-blogpost .post-meta .post-title {
  margin: 0 0 15px;
  text-align: center;
  color: #2e2e2e;
  font-size: 19px;
  font-weight: 200;
  line-height: 1.105em;
}
.single-blogpost .post-meta .meta {
  text-align: center;
  display: block;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.single-blogpost .post-meta .meta li {
  display: inline-block;
  margin-right: 20px;
  line-height: 1em;
  font-weight: 500;
  font-size: 13px;
  color: #dcdbdb;
}
.single-blogpost .post-meta .meta li:before {
  font-family: FontAwesome;
  margin-right: 6px;
  color: #a5a5a5;
}
.single-blogpost .post-meta .meta li.date:before {
  content: "";
}
.single-blogpost .post-meta .meta li.comments:before {
  content: "";
}
.single-blogpost .post-meta .meta li:last-of-type {
  margin: 0;
}
.single-blogpost.post-with-testimonial .post-meta:before {
  display: inline-block;
  background: #673ab7;
  content: "";
}
.single-blogpost.post-with-image .post-meta:before {
  display: inline-block;
  background: #d25959;
  content: "";
}
.single-blogpost.post-with-video .post-meta:before {
  display: inline-block;
  content: "";
  background: #039be5;
}
.single-blogpost.post-with-audio .post-meta:before {
  display: inline-block;
  background: #26a69a;
  content: "";
}
.single-blogpost .post-body {
  padding: 30px 45px 75px;
}
.single-blogpost .post-body p {
  margin: 0 0 30px;
  color: #a5a5a5;
  font-size: 13px;
  line-height: 2.462em;
}
.single-blogpost .post-body .tags p {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
}
.single-blogpost .post-body .tags p a {
  color: #0288d1;
}
.single-blogpost .post-body .tags p a:hover {
  color: #424242;
}
.single-blogpost .share-block {
  display: block;
  margin-top: 30px;
}
.single-blogpost .post-author {
  display: block;
  margin: 45px -45px 0;
  padding: 25px 45px 0;
  border-top: 1px solid #f5f5f5;
}
.single-blogpost .post-author h4 {
  text-align: center;
  margin: 0 0 12px;
  color: #060606;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.single-blogpost .post-author p {
  margin: 0;
  color: #a5a5a5;
  font-size: 13px;
  line-height: 2.462em;
}
.single-blogpost .post-author .author {
  text-align: center;
  float: left;
  margin: 0 20px 20px 0;
}
.single-blogpost .post-author .author img {
  border-radius: 50%;
  border: 7px solid #fff;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}
.single-blogpost .post-author .author p {
  margin: 10px 0 0;
  color: #a5a5a5;
  font-size: 10px;
  line-height: 1em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .single-blogpost .post-body {
    padding: 15px 25px 45px;
  }
  .single-blogpost .post-author {
    margin-left: -25px;
    margin-right: -25px;
    padding: 15px 25px 0;
  }
}

.comments-area {
  background: #fff;
  margin: 40px 0 0;
  border: 1px solid #ededed;
}
.comments-area .comment-form {
  margin: 0 -1px;
}

/* ----------------- 6.4.9. List Property ----------------- */
.list-property {
  position: relative;
  border: 1px solid #f0f0f0;
  margin-bottom: 10px;
  padding: 40px 40px 20px 40px;
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.list-property:hover {
  -webkit-box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.15);
}
.list-property .cover {
  float: right;
  width: 150px;
  margin: 0 0 20px 30px;
}
.list-property .property-header {
  padding-bottom: 20px;
}
.list-property .property-header .price {
  margin: 0;
  color: #060606;
  font-size: 14px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}
.list-property .property-header .price span {
  display: inline-block;
  color: #ababab;
  margin: 0 0 0 10px;
  font-size: 10px;
  font-weight: 500;
  padding: 2px;
  background: #fafafa;
}
.list-property .property-header h2 {
  margin: 12px 0 7px;
  color: #292929;
  font-size: 21px;
  line-height: 1em;
  font-weight: 200;
}
.list-property .property-header h2 a {
  color: inherit;
}
.list-property .property-header h2 a:hover {
  color: #ff5252;
}
.list-property .property-header .address {
  margin: 0;
  color: #a5a5a5;
  font-size: 11px;
  line-height: 1em;
  text-transform: uppercase;
}
.list-property .property-body p {
  margin: 0;
  color: #a5a5a5;
  font-size: 12px;
  line-height: 1.75em;
}
.list-property .property-body .post-meta {
  list-style-type: none;
  padding: 12px 0 0;
  margin: 0;
}
.list-property .property-body .post-meta li {
  display: inline-block;
  margin-right: 20px;
  margin-bottom: 10px;
  position: relative;
  z-index: 9;
}
.list-property .property-body .post-meta li:before {
  font-family: FontAwesome;
  display: inline-block;
  text-align: center;
  color: #afafaf;
  font-size: 10px;
  margin-right: 5px;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  padding-top: 2px;
  border: 1px solid #ededed;
}
.list-property .property-body .post-meta li.bedrooms .tool-tip:before {
  content: "bedrooms";
}
.list-property .property-body .post-meta li.bedrooms:before {
  content: "";
}
.list-property .property-body .post-meta li.area .tool-tip:before {
  content: "area";
}
.list-property .property-body .post-meta li.area:before {
  content: "";
}
.list-property .property-body .post-meta li.bathrooms .tool-tip:before {
  content: "baths";
}
.list-property .property-body .post-meta li.bathrooms:before {
  content: "";
}
.list-property .property-body .post-meta li .tool-tip {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid transparent;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.list-property .property-body .post-meta li .tool-tip:hover {
  border: 1px solid #e22323;
}
.list-property .property-body .post-meta li .tool-tip:hover:before {
  opacity: 1;
  top: -33px;
}
.list-property .property-body .post-meta li .tool-tip:hover:after {
  top: -10px;
  opacity: 1;
}
.list-property .property-body .post-meta li .tool-tip:before {
  position: relative;
  opacity: 0;
  left: 51%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 5px;
  top: -28px;
  font-size: 11px;
  line-height: 1em;
  color: #fff;
  background: #edb1b1;
  display: inline-block;
  text-transform: uppercase;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.list-property .property-body .post-meta li .tool-tip:after {
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  opacity: 0;
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #edb1b1 transparent transparent transparent;
}
.list-property .property-body .post-meta li .nr {
  font-size: 10px;
  color: #ababab;
  font-weight: 500;
  line-height: 1em;
}
.list-property .property-body .post-meta li:last-of-type {
  margin: 0;
}
@media (max-width: 500px) {
  .list-property {
    padding: 25px 25px 20px 25px;
  }
  .list-property .cover {
    width: 120px;
  }
}

/* ----------------- 6.4.10. Pagination ----------------- */
ul.page-numbers {
  display: block;
  text-align: center;
  list-style-type: none;
  padding: 35px 0 0;
  margin: 0;
}
ul.page-numbers li {
  display: inline-block;
  margin-right: 17px;
}
ul.page-numbers li span, ul.page-numbers li a {
  display: inline-block;
  text-align: center;
  font-size: 13px;
  line-height: 1em;
  font-weight: 700;
  color: #a5a5a5;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #f0f0f0;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
ul.page-numbers li span:not(.next), ul.page-numbers li a:not(.next) {
  overflow: hidden;
  text-indent: -99999px;
}
ul.page-numbers li span:not(.next):hover, ul.page-numbers li span:not(.next).current, ul.page-numbers li a:not(.next):hover, ul.page-numbers li a:not(.next).current {
  -webkit-box-shadow: 0px 0px 0px 7px #f0f0f0;
  box-shadow: 0px 0px 0px 7px #f0f0f0;
  text-indent: 0px;
}
ul.page-numbers li span.next, ul.page-numbers li span.prev, ul.page-numbers li a.next, ul.page-numbers li a.prev {
  position: relative;
  font-size: 0;
  top: -11px;
}
ul.page-numbers li span.next:before, ul.page-numbers li span.prev:before, ul.page-numbers li a.next:before, ul.page-numbers li a.prev:before {
  position: absolute;
  display: inline-block;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -40px;
  opacity: 0;
  left: 50%;
  text-align: center;
  padding-top: 18px;
  font-size: 13px;
  color: #a5a5a5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f0;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
ul.page-numbers li span.next:after, ul.page-numbers li span.prev:after, ul.page-numbers li a.next:after, ul.page-numbers li a.prev:after {
  position: absolute;
  content: "";
  top: -13px;
  opacity: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #f0f0f0;
  border-radius: 50%;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
ul.page-numbers li span.next:hover:after, ul.page-numbers li span.prev:hover:after, ul.page-numbers li a.next:hover:after, ul.page-numbers li a.prev:hover:after {
  opacity: 1;
  top: -18px;
}
ul.page-numbers li span.next:hover:before, ul.page-numbers li span.prev:hover:before, ul.page-numbers li a.next:hover:before, ul.page-numbers li a.prev:hover:before {
  opacity: 1;
  top: -45px;
}
ul.page-numbers li span.next:before, ul.page-numbers li a.next:before {
  content: "Next";
}
ul.page-numbers li span.prev:before, ul.page-numbers li a.prev:before {
  content: "Prev";
}
ul.page-numbers li:last-of-type {
  margin: 0;
}
ul.page-numbers.inverted li span, ul.page-numbers.inverted li a {
  background: #fff;
}
ul.page-numbers.inverted li span:not(.next):hover, ul.page-numbers.inverted li span:not(.next).current, ul.page-numbers.inverted li a:not(.next):hover, ul.page-numbers.inverted li a:not(.next).current {
  -webkit-box-shadow: 0px 0px 0px 7px #fff;
  box-shadow: 0px 0px 0px 7px #fff;
}
ul.page-numbers.inverted li span.next:before, ul.page-numbers.inverted li span.next:after, ul.page-numbers.inverted li span.prev:before, ul.page-numbers.inverted li span.prev:after, ul.page-numbers.inverted li a.next:before, ul.page-numbers.inverted li a.next:after, ul.page-numbers.inverted li a.prev:before, ul.page-numbers.inverted li a.prev:after {
  background: #fff;
}

/* ----------------- 6.4.11. Main Loader ----------------- */
.main-loader {
  position: absolute;
  text-align: center;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.97);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.main-loader.visible {
  visibility: visible;
  opacity: 1;
}
.main-loader .spinner {
  position: relative;
  display: inline-block;
  top: 30%;
  width: 60px;
  height: 60px;
}
.main-loader .spinner .circle1 {
  top: 0;
  left: 0;
}
.main-loader .spinner .circle2 {
  top: 0;
  right: 0;
}
.main-loader .spinner .circle3 {
  right: 0;
  bottom: 0;
}
.main-loader .spinner .circle4 {
  left: 0;
  bottom: 0;
}
.main-loader .spinner .container1 > div, .main-loader .spinner .container2 > div, .main-loader .spinner .container3 > div {
  width: 16px;
  height: 16px;
  background-color: #ff5252;
  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.main-loader .spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}
.main-loader .spinner .container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.main-loader .spinner .container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}
.main-loader .spinner .container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.main-loader .spinner .container3 .circle1 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.main-loader .spinner .container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.main-loader .spinner .container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.main-loader .spinner .container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.main-loader .spinner .container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.main-loader .spinner .container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.main-loader .spinner .container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.main-loader .spinner .container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.main-loader .spinner .container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.main-loader .spinner .container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

/* ----------------- 6.4.12. Sidebar ----------------- */
.sidebar .sidebar-widget {
  margin-bottom: 40px;
}
.sidebar .sidebar-widget .widget-title {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 12px;
  display: block;
  text-align: center;
  color: #464646;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #f9dbdb;
}
.sidebar .sidebar-widget .widget-title:after {
  position: absolute;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  width: 90px;
  height: 3px;
  background: #ff5252;
}
.sidebar .sidebar-widget:not(.widget_popular_listing):not(.widget_promo):not(.widget_latest_listing):not(.widget_custom_archive) ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sidebar .sidebar-widget:not(.widget_popular_listing):not(.widget_promo):not(.widget_latest_listing):not(.widget_custom_archive) ul li {
  display: block;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid #f5f5f5;
}
.sidebar .sidebar-widget:not(.widget_popular_listing):not(.widget_promo):not(.widget_latest_listing):not(.widget_custom_archive) ul li a {
  color: #2e2e2e;
  font-size: 14px;
  font-weight: 300;
}
.sidebar .sidebar-widget:not(.widget_popular_listing):not(.widget_promo):not(.widget_latest_listing):not(.widget_custom_archive) ul li a:before {
  font-family: FontAwesome;
  position: relative;
  top: -1px;
  margin-right: 20px;
  font-size: 11px;
  content: "";
  color: #2e2e2e;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.sidebar .sidebar-widget:not(.widget_popular_listing):not(.widget_promo):not(.widget_latest_listing):not(.widget_custom_archive) ul li a:hover {
  color: #000;
}
.sidebar .sidebar-widget:not(.widget_popular_listing):not(.widget_promo):not(.widget_latest_listing):not(.widget_custom_archive) ul li a:hover:before {
  color: #ff5252;
}
.sidebar .sidebar-widget:not(.widget_popular_listing):not(.widget_promo):not(.widget_latest_listing):not(.widget_custom_archive) ul li:last-of-type {
  margin: 0;
}
.sidebar .widget_search .search-form {
  position: relative;
  display: block;
  width: 100%;
}
.sidebar .widget_search .search-form button {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 10px;
  background: 0;
}
.sidebar .widget_search .search-form button:focus, .sidebar .widget_search .search-form button:active, .sidebar .widget_search .search-form button:hover {
  outline: none;
}
.sidebar .widget_search .search-form button:focus .icon, .sidebar .widget_search .search-form button:active .icon, .sidebar .widget_search .search-form button:hover .icon {
  color: #ff5252;
}
.sidebar .widget_search .search-form button .icon {
  font-size: 12px;
  color: #666;
  font-weight: 700;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.sidebar .widget_search .search-form label {
  position: relative;
  width: 100%;
}
.sidebar .widget_search .search-form label span {
  position: absolute;
  pointer-events: none;
  top: 10px;
  left: 10px;
  font-size: 14px;
  color: #424242;
  font-weight: normal;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.sidebar .widget_search .search-form .search-input {
  display: block;
  padding: 10px 33px 10px 10px;
  font-size: 14px;
  color: #424242;
  font-weight: normal;
  width: 100%;
  border-bottom: 2px solid #ededed;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.sidebar .widget_search .search-form .search-input:focus, .sidebar .widget_search .search-form .search-input.has-value {
  outline: none;
  border-color: #ff5252;
}
.sidebar .widget_search .search-form .search-input:focus + span, .sidebar .widget_search .search-form .search-input.has-value + span {
  color: #ff5252;
  top: -13px;
  font-size: 12px;
}
.sidebar .widget_popular_listing ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sidebar .widget_popular_listing ul li {
  display: block;
  position: relative;
  padding: 0 0 8px 60px;
  margin-bottom: 8px;
}
.sidebar .widget_popular_listing ul li .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 45px;
}
.sidebar .widget_popular_listing ul li .photo:hover:before {
  opacity: 1;
}
.sidebar .widget_popular_listing ul li .photo:before {
  pointer-events: none;
  position: absolute;
  content: "";
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.sidebar .widget_popular_listing ul li h4 {
  margin: 0;
  color: #595959;
  font-size: 13px;
  font-weight: 300;
}
.sidebar .widget_popular_listing ul li h4 a {
  color: inherit;
}
.sidebar .widget_popular_listing ul li .price {
  margin: 3px 0 0;
  color: #ff7272;
  font-size: 12px;
  font-weight: 300;
  line-height: 1em;
}
.sidebar .widget_popular_listing ul li .link {
  color: #ff7272;
  font-size: 12px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.sidebar .widget_popular_listing ul li .link:hover {
  color: #595959;
}
.sidebar .widget_promo {
  position: relative;
  overflow: hidden;
}
.sidebar .widget_promo:before {
  position: absolute;
  pointer-events: none;
  content: "";
  bottom: 10px;
  right: 10px;
  left: 10px;
  top: 10px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: fadeOpacity 3s 1s infinite;
}
.sidebar .widget_promo:hover .text {
  left: 20px;
}
.sidebar .widget_promo:hover .promo-fg {
  bottom: 0;
}
.sidebar .widget_promo .promo-bg {
  width: 100%;
}
.sidebar .widget_promo .promo-fg {
  position: absolute;
  right: 10px;
  z-index: 1;
  bottom: -100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.sidebar .widget_promo .text {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  top: 20px;
  left: -100%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.sidebar .widget_promo .text h6 {
  margin: 0;
  color: #ff5252;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
}
.sidebar .widget_promo .text p {
  margin: 5px 0 -3px;
  color: #595959;
  font-size: 13px;
  line-height: 1em;
  font-weight: 300;
  text-transform: uppercase;
}
.sidebar .widget_promo .text span {
  color: #595959;
  font-size: 11px;
  line-height: 1em;
  text-transform: uppercase;
}
.sidebar .widget_custom_archive ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.sidebar .widget_custom_archive .tabs .heading {
  text-align: center;
  margin-bottom: 25px;
  border: 1px solid #dbdbdb;
  padding: 17px 18px 0 18px;
}
.sidebar .widget_custom_archive .tabs .heading * {
  outline: none;
}
.sidebar .widget_custom_archive .tabs .heading li {
  display: inline-block;
  margin-right: 45px;
}
.sidebar .widget_custom_archive .tabs .heading li.ui-state-active a {
  color: #ff7272;
  border-color: #ff7272;
}
.sidebar .widget_custom_archive .tabs .heading li a {
  display: inline-block;
  line-height: 1em;
  font-size: 11px;
  color: #d8d8d8;
  font-weight: 700;
  margin: 0 0 -1px;
  padding: 0 15px 12px 15px;
  border-bottom: 3px solid transparent;
}
.sidebar .widget_custom_archive .tabs .heading li a:hover {
  color: #ff7272;
}
.sidebar .widget_custom_archive .tabs .heading li:last-of-type {
  margin: 0;
}
.sidebar .widget_custom_archive .tabs .calendar .month {
  padding: 0 0 0 20px;
  margin: 0 0 12px;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.sidebar .widget_custom_archive .tabs .calendar .month.open p {
  margin: 0;
  padding-left: 10px;
}
.sidebar .widget_custom_archive .tabs .calendar .month.open p i:before {
  content: "";
}
.sidebar .widget_custom_archive .tabs .calendar .month p {
  margin: 0 0 0 -20px;
  padding: 0 0 12px 30px;
  cursor: pointer;
  color: #595959;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
  -webkit-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.15s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.sidebar .widget_custom_archive .tabs .calendar .month p:hover {
  color: #ff7272;
}
.sidebar .widget_custom_archive .tabs .calendar .month p i {
  font-size: 11px;
  margin: 0 25px 0 0;
  top: 1px;
  position: relative;
}
.sidebar .widget_custom_archive .tabs .calendar .month p i:hover {
  border-radius: 50%;
  background: #f7f7f7;
  -webkit-box-shadow: 0px 0px 0px 12px #f7f7f7;
  box-shadow: 0px 0px 0px 12px #f7f7f7;
}
.sidebar .widget_custom_archive .tabs .calendar .month ul {
  display: none;
  padding: 15px 0 0 45px;
  margin: 0;
  width: 100%;
}
.sidebar .widget_custom_archive .tabs .calendar .month ul li a {
  color: #595959;
  font-size: 13px;
  font-weight: 500;
}
.sidebar .widget_custom_archive .tabs .calendar .month ul li a:hover {
  color: #ff7272;
}
.sidebar .widget_custom_archive .tabs .calendar .month ul li a:before {
  content: "-";
  margin-right: 5px;
}
@media (max-width: 992px) {
  .sidebar {
    padding-top: 65px;
  }
}

.widget_latest_listing {
  background: #fff;
  padding: 45px 40px 40px;
  -webkit-box-shadow: 0px 0px 9px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 9px 0 rgba(0, 0, 0, 0.1);
}
.widget_latest_listing .heading {
  text-align: center;
  font-size: 14px;
  line-height: 1em;
  margin: 0 0 25px;
}
.widget_latest_listing ul {
  list-style-type: none;
  padding: 0;
}
.widget_latest_listing ul li {
  margin-bottom: 10px;
}
.widget_latest_listing ul li .image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.widget_latest_listing ul li .image:hover:before {
  opacity: 1;
}
.widget_latest_listing ul li .image:before {
  pointer-events: none;
  position: absolute;
  content: "";
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  -moz-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.widget_latest_listing ul li .title {
  margin: 5px 0 5px;
  color: #292929;
  font-size: 12px;
  line-height: 1em;
  font-weight: 300;
}
.widget_latest_listing ul li .title a {
  color: inherit;
}
.widget_latest_listing ul li .address {
  color: #c1c1c1;
  font-size: 12px;
  line-height: 1em;
}
.widget_latest_listing ul li .price {
  margin: 0 0 5px;
  color: #ff5353;
  font-size: 12px;
  font-weight: 300;
  line-height: 1em;
}

.blog-section .sidebar {
  padding-top: 125px;
}
@media (max-width: 992px) {
  .blog-section .sidebar {
    padding-top: 90px;
  }
}

/* ----------------- 6.4.13. Share Block ----------------- */
.share-block {
  text-align: center;
}
.share-block ul {
  list-style-type: none;
  font-size: 0;
  padding: 0;
  margin: 0;
  -webkit-backface-visibility: hidden;
}
.share-block ul li {
  display: inline-block;
  margin-right: 20px;
  -webkit-transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-backface-visibility: hidden;
}
.share-block ul li.items-holder i {
  color: #fff;
  cursor: pointer;
  -webkit-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition-delay: 0.15s;
  -moz-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.share-block ul li:not(.items-holder) i {
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.share-block ul li:not(.items-holder) i:hover {
  -webkit-box-shadow: 0 0 0 2px #ff5252;
  background: 0;
  color: #ff5252;
}
.share-block ul li:last-of-type {
  margin: 0;
}
.share-block ul li i {
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  width: 45px;
  height: 45px;
  color: #424242;
  font-size: 16px;
  line-height: 2.813em;
  vertical-align: middle;
  background: #9e9e9e;
}
.share-block ul:not(.expanded) {
  position: relative;
}
.share-block ul:not(.expanded) li {
  margin: 0;
}
.share-block ul:not(.expanded) li:not(.items-holder) {
  visibility: hidden;
  opacity: 0;
  margin: 0 -20px;
}
.share-block ul:not(.expanded) li.items-holder {
  position: relative;
  z-index: 2;
}
.share-block ul:not(.expanded) li.items-holder i {
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}

/* ----------------- 6.4.14. Login Popup ----------------- */
.login-form-popup {
  position: absolute;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 200px 25px 0;
  background: rgba(224, 224, 224, 0.6);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.login-form-popup.visible {
  visibility: visible;
  opacity: 1;
}
.login-form-popup.visible .login-form {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.login-form-popup .login-form {
  position: relative;
  -webkit-transform: translateY(-100px);
  -moz-transform: translateY(-100px);
  -ms-transform: translateY(-100px);
  -o-transform: translateY(-100px);
  transform: translateY(-100px);
  opacity: 0.6;
  padding: 25px 20px 35px;
  display: block;
  margin: 0 auto;
  background: #fff;
  max-width: 320px;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.13);
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.35, 0, 1.74);
  -moz-transition: all 0.35s cubic-bezier(0.25, 0.35, 0, 1.74);
  transition: all 0.35s cubic-bezier(0.25, 0.35, 0, 1.74);
}
.login-form-popup .login-form .brand-wrapper {
  text-align: center;
}
.login-form-popup .login-form form {
  margin: 0 -20px 15px;
  padding: 20px 20px 18px;
  border-bottom: 1px solid #f5f5f5;
}
.login-form-popup .login-form form input[type="text"], .login-form-popup .login-form form input[type="password"] {
  -webkit-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.25s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  padding: 10px 20px;
  resize: none;
  width: 100%;
  display: block;
  border-radius: 4px;
  border: 2px solid #e8e8e8;
  font-size: 14px;
  font-weight: 300;
  color: #868686;
  margin-bottom: -2px;
}
.login-form-popup .login-form form input[type="text"]::-webkit-input-placeholder, .login-form-popup .login-form form input[type="password"]::-webkit-input-placeholder {
  color: #868686;
}
.login-form-popup .login-form form input[type="text"]:-moz-placeholder, .login-form-popup .login-form form input[type="password"]:-moz-placeholder {
  color: #868686;
}
.login-form-popup .login-form form input[type="text"].placeholder, .login-form-popup .login-form form input[type="password"].placeholder {
  color: #868686;
}
.login-form-popup .login-form form input[type="text"]:focus, .login-form-popup .login-form form input[type="text"].has-value, .login-form-popup .login-form form input[type="password"]:focus, .login-form-popup .login-form form input[type="password"].has-value {
  position: relative;
  outline: none;
  z-index: 2;
  border-color: rgba(66, 66, 66, 0.8);
  color: #424242;
}
.login-form-popup .login-form form input[type="text"].not-valid, .login-form-popup .login-form form input[type="password"].not-valid {
  border-color: #ff7272;
}
.login-form-popup .login-form form .submit-button {
  margin-top: 13px;
  margin-left: 4px;
  background: 0;
  color: #ff7272;
  font-size: 12px;
  line-height: 1em;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.login-form-popup .login-form form .submit-button:focus, .login-form-popup .login-form form .submit-button:hover {
  outline: none;
  color: #424242;
}
.login-form-popup .login-form form .options {
  padding-top: 12px;
}
.login-form-popup .login-form form .options a {
  position: relative;
  top: 7px;
  float: right;
  color: #545454;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}
.login-form-popup .login-form form .options a:hover {
  color: #ff7272;
}
.login-form-popup .login-form form .options label {
  position: relative;
  cursor: pointer;
  margin: 0;
  color: #545454;
  font-size: 12px;
  font-weight: 500;
  line-height: 1em;
}
.login-form-popup .login-form form .options label input {
  visibility: hidden;
  margin: 0 10px 0 0;
}
.login-form-popup .login-form form .options label input:checked + span:after {
  opacity: 1;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.login-form-popup .login-form form .options label span:after, .login-form-popup .login-form form .options label span:before {
  display: inline-block;
  visibility: visible;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}
.login-form-popup .login-form form .options label span:before {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid #ededed;
}
.login-form-popup .login-form form .options label span:after {
  opacity: 0;
  -webkit-transform: rotate(-35deg);
  -webkit-transform-origin: -100% -100%;
  -ms-transform: rotate(-35deg);
  -ms-transform-origin: -100% -100%;
  transform: rotate(-35deg);
  transform-origin: -100% -100%;
  top: 3px;
  left: 4px;
  color: #545454;
  font-family: icomoon;
  content: "";
  font-size: 10px;
  -webkit-transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.13s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.login-form-popup .login-form form#register-form {
  display: none;
}
.login-form-popup .login-form .sign-in-options {
  margin: 0 0 20px;
}
.login-form-popup .login-form .sign-in-options span {
  margin: 0 0 6px;
  display: block;
  color: #060606;
  font-size: 12px;
  font-weight: 700;
  line-height: 1em;
  text-align: center;
  text-transform: uppercase;
}
.login-form-popup .login-form .sign-in-options a {
  position: relative;
  text-align: center;
  display: block;
  border-radius: 4px;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.login-form-popup .login-form .sign-in-options a:last-of-type {
  margin: 0;
}
.login-form-popup .login-form .sign-in-options a:before {
  pointer-events: none;
  content: "With";
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  top: 14px;
  left: 16px;
  font-weight: 500;
  text-transform: none;
}
.login-form-popup .login-form .sign-in-options a.facebook {
  background: #01579b;
}
.login-form-popup .login-form .sign-in-options a.facebook:hover {
  background: rgba(1, 87, 155, 0.85);
}
.login-form-popup .login-form .sign-in-options a.google {
  background: #f44336;
}
.login-form-popup .login-form .sign-in-options a.google:hover {
  background: rgba(244, 67, 54, 0.85);
}
.login-form-popup .login-form p {
  margin: 0;
  color: #979797;
  font-size: 15px;
  line-height: 1em;
  font-weight: 500;
  text-align: center;
}
.login-form-popup .login-form p a {
  color: inherit;
  font-weight: 700;
}
.login-form-popup .login-form p a:hover {
  color: #424242;
}
@media (max-width: 768px) {
  .login-form-popup .login-form form .options label {
    margin-bottom: 10px;
    display: block;
  }
  .login-form-popup .login-form form .options a {
    float: none;
    top: 0;
  }
  .login-form-popup .login-form p i {
    display: block;
    margin: 0 0 5px;
  }
}

/* ----------------- 6.4.15. Featured Video ----------------- */
.featured-video {
  position: relative;
  margin-bottom: 50px;
}
.featured-video .cover {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: url(../img/featured-video-bg.jpg);
  background-size: cover;
  background-position: top center;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  opacity: 0;
  visibility: hidden;
}
.featured-video .cover.visible {
  opacity: 1;
  visibility: visible;
}
.featured-video .cover button {
  position: relative;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  background: 0;
}
.featured-video .cover button:focus, .featured-video .cover button:active {
  outline: none;
}
.featured-video .cover button i {
  background: rgba(0, 0, 0, 0.2);
  border: 6px solid rgba(255, 255, 255, 0.53);
  color: rgba(255, 255, 255, 0.3);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  height: 70px;
  width: 70px;
  font-size: 20px;
  line-height: 58px;
  text-align: center;
  vertical-align: middle;
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.3s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.featured-video .cover button i:hover {
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.3);
  box-shadow: 0px 0px 0px 30px rgba(255, 255, 255, 0.3);
}

/* ----------------- 6.4.16. Custom Accordion ----------------- */
.accordion-group {
  margin-bottom: 30px;
}
.accordion-group .accordion {
  margin-bottom: 15px;
}
.accordion-group .accordion:last-of-type {
  margin: 0;
}
.accordion-group .accordion .heading {
  margin: 0;
  cursor: pointer;
  position: relative;
  display: block;
  color: #757575;
  font-size: 17px;
  line-height: 1em;
  padding: 0 15px 15px 0;
  border-bottom: 1px solid #f5f5f5;
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
.accordion-group .accordion .heading:after {
  -webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  -moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
  font-family: FontAwesome;
  position: absolute;
  content: "";
  color: #bdbdbd;
  font-size: 12px;
  right: 0;
  top: 0;
}
.accordion-group .accordion .heading:hover {
  color: #ff5252;
}
.accordion-group .accordion .heading:hover:after {
  color: #ff5252;
}
.accordion-group .accordion .heading.open {
  border: 0;
  color: #ff5252;
}
.accordion-group .accordion .heading.open:hover {
  border-color: transparent;
}
.accordion-group .accordion .heading.open:after {
  color: #ff5252;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion-group .accordion .heading.open + .body {
  display: block;
}
.accordion-group .accordion .body {
  display: none;
  padding: 5px 0 12px;
}
.accordion-group .accordion .body p {
  margin: 0;
  color: #a5a5a5;
  font-size: 12px;
  line-height: 1.75em;
}

/* ----------------- 6.4.17. Blog Slider ----------------- */
.blog-post-slider .bx-controls .bx-controls-direction a {
  width: auto;
  height: auto;
  text-indent: 0;
}
.blog-post-slider .bx-controls .bx-controls-direction a i {
  cursor: pointer;
  z-index: 5;
  display: inline-block;
  vertical-align: middle;
  line-height: 48px;
  font-size: 18px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  border-radius: 3px;
  width: 48px;
  height: 48px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.blog-post-slider .bx-controls .bx-controls-direction a i:hover {
  color: #7f7f7f;
  background: #fff;
  -webkit-box-shadow: 1px 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 0 1px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=screen.css.map */
