/*
Theme Name: MyHome
Theme URI: http://myhome.tangibledesign.net/
Author: Tangible Design
Author URI: http://tangibledesign.net/
Description: MyHome
Version: 1.0.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-menu, featured-images, post-formats, sticky-post, translation-ready
Text Domain: myhome

*/
/* 
MARK: Base
 */
html {
  height: 100%;
}
body.modal-open {
  padding-right: inherit !important;
}
.modal-open {
  overflow: hidden;
}
@media (max-width: 450px) {
  .modal-dialog {
    margin: 10px auto;
    max-width: 100%;
    position: fixed;
    top: 100px; /* Baja el modal un poco */
    left: 0;
    right: 0;
  }
  #visor_antes_despues_iframe {
    height: 200px;
  }
  .miniatura_par_fotos {
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
  #miniatura_antes_despues {
    display: flex;
    flex-direction: column; /* Cambia a columna para que los elementos salgan de uno en uno */
  }
}

.miniatura_par_fotos {
  position: relative;
  overflow: hidden;
}
.miniatura_par_fotos .texto-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Fondo semitransparente */
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  padding: 10px;
}
.miniatura_par_fotos:hover .texto-hover {
  opacity: 1; /* Hace visible el texto al hacer hover */
}

body {
  overflow-x: hidden;
  word-wrap: break-word;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: #222;
  font-family: Lato, Arial, Helvetica, sans-serif;
  background: #fff;
  overflow-wrap: break-word;
  text-align: left;
  padding-right: 0px !important;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  outline: 0;
}

a {
  color: #222;
  text-decoration: none;
}

@media (min-width: 1025px) {
  a:hover,
  a:active,
  a:focus {
    color: #000;
    text-decoration: none;
  }
}

p {
  margin-top: 0;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  p {
    margin-bottom: 24px;
  }
}

strong {
  font-style: normal;
  font-weight: 700;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

iframe {
  border: 0;
  max-width: 100%;
}

hr {
  border-top: 1px solid #999999;
}

button {
  border-radius: 0;
  cursor: pointer;
  font-family: Lato, Arial, Helvetica, sans-serif;
}

blockquote {
  margin: 0;
}

blockquote footer {
  font-style: italic;
}

cite {
  font-style: italic;
}

pre {
  white-space: pre-wrap;
  white-space: -moz-pre-wrap;
  white-space: -pre-wrap;
  white-space: -o-pre-wrap;
  word-wrap: break-word;
}

/*
MARK: Headings
 */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 24px 0;
  font-weight: 400;
  padding: 0;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: Play, Arial, Helvetica, sans-serif;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 21px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 13px;
}

/* 
* MARK: Forms
 */
input,
textarea {
  text-decoration: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #222;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #222;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
  color: #222;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #222;
}

input[type="number"],
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"]:not(#media-search-input) {
  max-width: 100%;
  width: 100%;
  border: 1px solid #c3c3c5;
  padding: 10px 20px;
  line-height: 24px;
  border-radius: 0;
  margin-bottom: 12px;
  color: #666666;
  font-style: italic;
  text-align: center;
  background: #fff;
}

input[type="text"]:focus,
input[type="text"]:active,
input[type="password"]:focus,
input[type="password"]:active,
input[type="email"]:focus,
input[type="email"]:active,
input[type="search"]:not(#media-search-input):focus,
input[type="search"]:not(#media-search-input):active {
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 19px;
  padding-right: 19px;
  border: 2px solid #009fe3;
  background: rgba(41, 170, 227, 0.05);
}

input:disabled {
  color: rgba(34, 34, 34, 0.7) !important;
  background: rgba(34, 34, 34, 0.2) !important;
}

textarea {
  max-width: 100%;
  width: 100%;
  border: 1px solid #c3c3c5;
  padding: 10px 20px;
  line-height: 24px;
  border-radius: 0;
  margin-bottom: 12px;
  color: #666666;
  font-style: italic;
  text-align: center;
  background: #fff;
  resize: none;
}

textarea:focus,
textarea:active {
  padding-top: 9px;
  padding-bottom: 9px;
  padding-left: 19px;
  padding-right: 19px;
  border: 2px solid #009fe3;
  background: rgba(41, 170, 227, 0.05);
}

select {
  max-width: 100%;
  width: 100%;
  padding: 14px 20px;
}

button,
input,
optgroup,
select,
textarea {
  font-family: Lato, Arial, Helvetica, sans-serif;
}

figure {
  margin: 0;
}

/* 
* MARK: Table
 */
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}

td,
th {
  padding: 12px;
  text-align: left;
  border: 1px solid #999;
  font-weight: initial;
}

/* 
* MARK: Wordpress Core
 */
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 6px 0 0 0;
  font-size: 13px;
}

.wp-caption-text {
  text-align: left;
}

.wp-caption.alignleft {
  margin: 0;
  padding: 5px 30px 15px 0;
}

.wp-caption.alignright {
  margin: 0;
  padding: 5px 0 15px 30px;
}

.screen-reader-text {
  display: none;
  overflow: hidden;
}

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.iframe-wrapper iframe {
  max-height: 500px;
}

.bypostauthor {
  display: block;
}

.gallery-caption {
  display: block;
  font-size: 13px;
  margin: 3px 0 12px 0;
}

.mejs-container {
  margin-bottom: 24px;
}

.clearfix:after {
  clear: both;
  content: "";
  display: table;
}

/*
* MARK: 3.12 Gallery
*/
.gallery {
  margin-bottom: 24px;
  max-width: 600px !important;
}

.gallery .gallery-item {
  padding: 2px;
  margin: 0;
}

.gallery .gallery-item a {
  position: relative;
  display: block;
}

.gallery .gallery-item a:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .gallery .gallery-item a:hover:after {
    opacity: 0.3;
  }
}

.gallery a {
  position: relative;
  display: block;
}

.gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  width: 100%;
  max-width: 100%;
}

.gallery-item img {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

@media (max-width: 767px) {
  .gallery-columns-1 .gallery-item,
  .gallery-columns-2 .gallery-item,
  .gallery-columns-3 .gallery-item,
  .gallery-columns-4 .gallery-item,
  .gallery-columns-5 .gallery-item,
  .gallery-columns-6 .gallery-item,
  .gallery-columns-7 .gallery-item,
  .gallery-columns-8 .gallery-item,
  .gallery-columns-9 .gallery-item {
    max-width: 100%;
  }
}

.gallery-caption {
  font-size: 13px;
  margin: 3px 0 12px 0;
  font-style: italic;
  text-align: center;
  padding: 6px 10px 0 10px;
}

.tiled-gallery-item a {
  position: relative;
  display: block;
  overflow: hidden;
}

.tiled-gallery-item a:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  height: 99%;
  opacity: 0;
  width: 99%;
  background: #000;
}

.tiled-gallery-item a:hover:after {
  background: #000;
  opacity: 0.3;
}

.sticky {
  border-top: 2px solid #009fe3;
}

/*
* MARK: Layout
*/
.mh-layout {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.mh-layout:after {
  clear: both;
  content: "";
  display: table;
}
.entry-content {
  padding-top: 20px !important;
}

@media (min-width: 1200px) {
  .mh-layout {
    max-width: 1200px;
    align-items: center;
    padding: 0px 30px;
  }
  .mh-top-header .mh-layout {
    max-width: 100%;
  }
}

.mh-layout__content-left {
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .mh-layout__content-left {
    width: 75%;
    float: left;
    padding-right: 36px;
  }

  .mh-layout__content-left:after {
    content: "\200b";
    visibility: hidden;
  }
}

.mh-layout__content-right {
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .mh-layout__content-right {
    width: 75%;
    float: left;
    padding-left: 36px;
  }

  .mh-layout__content-right:after {
    content: "\200b";
    visibility: hidden;
  }
}

.mh-layout__sidebar-left {
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .mh-layout__sidebar-left {
    width: 25%;
    float: left;
  }

  .mh-layout__sidebar-left:after {
    content: "\200b";
    visibility: hidden;
  }
}

.mh-layout__sidebar-right {
  margin: 0 auto;
  position: relative;
}

@media (min-width: 1024px) {
  .mh-layout__sidebar-right {
    width: 25%;
    float: left;
  }

  .mh-layout__sidebar-right:after {
    content: "\200b";
    visibility: hidden;
  }
}

/* Navbar - use it only when premium plugin is not activated */
.mh-navbar__blog-name {
  font-family: Play, Arial, Helvetica, sans-serif;
  display: inline-block;
  font-weight: 700;
  font-size: 24px;
  margin-right: 40px;
  line-height: 65px;
  display: inline-block;
  position: absolute;
  left: 15px;
}

@media (min-width: 1023px) {
  .mh-navbar__blog-name {
    position: static;
    line-height: 36px;
  }
}

.mh-navbar__wrapper {
  min-height: 65px;
}

@media (min-width: 1023px) {
  .mh-navbar__wrapper {
    min-height: 80px;
  }
}

.mh-navbar__wrapper #mh-submit-button a {
  display: block;
  padding: 18px 25px;
  font-size: 14px;
  color: #4d4d4d;
}

@media (min-width: 1023px) {
  .mh-navbar__wrapper #mh-submit-button a {
    padding: 0;
    text-transform: uppercase;
  }

  .mh-navbar__wrapper #mh-submit-button a:hover {
    color: #009fe3;
  }
}

@media (max-width: 1023px) {
  .mh-navbar__wrapper {
    height: 60px !important;
  }
}

.mh-navbar__container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  background: #fff;
  z-index: 9999;
}

.mh-navbar__container:after {
  content: "";
  display: block;
  clear: both;
}

.mh-navbar__header {
  display: inline-block;
  float: left;
  padding-top: 22px;
}

.mh-navbar__toggle {
  display: none;
}

.mh-navbar__toggle-icon {
  display: inline-block;
  font-size: 30px;
  position: absolute;
  color: #4d4d4d;
  right: 15px;
  top: 10px;
}

.mh-navbar__brand img {
  float: left;
  display: inline;
  margin-right: 64px;
  margin-top: -3px;
  max-height: 32px;
}

@media (min-width: 1023px) {
  .mh-navbar__brand img {
    max-height: 40px;
  }
}

.mh-navbar__menu {
  z-index: 9999;
  display: inline;
}

.mh-navbar__menu ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mh-navbar__menu ul li {
  position: relative;
}

.mh-navbar__menu ul:first-child {
  position: static;
  padding: 0;
}

.mh-navbar__menu ul:first-child > li {
  display: inline-block;
  padding: 0;
  margin: 0 17px;
  position: static;
  cursor: pointer;
}

.mh-navbar__menu ul:first-child > li > a {
  display: block;
  padding: 30px 0 30px 0;
  color: #4d4d4d;
  font-size: 14px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.mh-navbar__menu ul:first-child > li:first-child {
  margin-left: 0;
}

.mh-navbar__menu ul:first-child > li:hover > a {
  color: #009fe3;
}

.mh-navbar__menu ul:first-child ul:first-child {
  border-top: 0;
  margin-top: -20px;
}

.mh-navbar__menu ul:not(:first-child) {
  display: none;
  position: absolute;
  z-index: 9999;
  max-width: 205px;
  margin-left: -17px;
}

.mh-navbar__menu ul:not(:first-child) > li {
  min-width: 200px;
  background: #666;
}

.mh-navbar__menu ul:not(:first-child) > li > a {
  display: block;
  padding: 14px 18px;
  position: relative;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
}

.mh-navbar__menu ul:not(:first-child) > li:hover {
  background: #999999;
}

.mh-navbar__menu ul:not(:first-child) > li:hover > a:after {
  width: 100%;
}

.mh-navbar__menu ul:not(:first-child) > li:hover > a:before {
  width: 100%;
}

.mh-navbar__menu ul ul ul {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0 !important;
}

.mh-navbar__search {
  display: inline-block;
  float: right;
  position: relative;
  padding-left: 30px;
  margin-left: 30px;
  background: #fff;
}

.mh-navbar__search:before {
  content: "";
  height: 55px;
  width: 1px;
  position: absolute;
  top: 9px;
  left: -30px;
  bottom: 0;
}

.mh-navbar__search input {
  height: 72px;
  width: auto;
  padding: 0px 32px 0 0 !important;
  border: 0;
}

@media (max-width: 1200px) {
  .mh-navbar__container {
    max-width: 970px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1024px) and (max-width: 1200px) {
  .mh-navbar__menu > ul:first-child > li {
    margin-right: 15px;
  }

  .mh-navbar__menu > ul:first-child > li > a {
    padding-left: 9px !important;
    padding-right: 9px !important;
  }

  .mh-navbar__menu > ul:first-child > li .mh-navbar__search {
    padding-left: 0;
  }

  .mh-navbar__menu > ul:first-child > li .mh-navbar__search input {
    width: 130px;
  }
}

@media (max-width: 1023px) {
  .mh-navbar {
    border: 0 !important;
  }

  .mh-navbar.mh-navbar--sticky {
    position: relative !important;
    top: 0 !important;
  }

  .mh-navbar__container {
    padding-left: 0;
    padding-right: 0;
  }

  .mh-navbar__header {
    display: block;
    width: 100%;
    padding-top: 0;
  }

  .mh-navbar__brand {
    position: absolute;
    top: 17px;
    left: 15px;
  }

  .mh-navbar__toggle {
    display: block;
    padding: 30px 15px;
    color: #a1b1bc;
    text-align: right;
    font-size: 14px;
    position: relative;
    z-index: 999999;
  }

  .mh-navbar__container .mh-navbar__menu {
    margin-left: 0px;
    min-height: 40px;
    height: auto;
    padding: 0;
    display: none;
  }

  .mh-navbar__container .mh-navbar__menu ul {
    position: relative !important;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }

  .mh-navbar__container .mh-navbar__menu ul ul {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mh-navbar__container .mh-navbar__menu ul li {
    position: relative;
  }

  .mh-navbar__container .mh-navbar__menu ul:first-child {
    padding: 0;
    display: block;
    z-index: 999;
  }

  .mh-navbar__container .mh-navbar__menu ul:first-child > li {
    width: 100%;
    margin: 0;
    background: #fff;
  }

  .mh-navbar__container .mh-navbar__menu ul:first-child > li > a {
    text-transform: none;
    background: #fff;
    display: block;
    padding: 18px 25px;
    border-bottom: 1px solid #f0f0f0;
  }

  .mh-navbar__container .mh-navbar__menu ul:first-child > li:hover {
    background-color: #fff;
  }

  .mh-navbar__container
    .mh-navbar__menu
    ul:first-child
    > li:hover
    > a:first-child {
    background-color: #fff;
    color: #009fe3;
  }

  .mh-navbar__container .mh-navbar__menu ul:first-child ul:first-child {
    border-top: 0;
    margin-top: 0;
  }

  .mh-navbar__container .mh-navbar__menu ul:not(:first-child) {
    display: none;
    z-index: 9999;
    border: 0;
    max-width: none;
  }

  .mh-navbar__container .mh-navbar__menu ul:not(:first-child) > li {
    background: #fff;
  }

  .mh-navbar__container .mh-navbar__menu ul:not(:first-child) > li > a {
    display: block;
    padding: 10px;
    color: #4d4d4d;
    text-transform: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .mh-navbar__container .mh-navbar__menu ul:not(:first-child) > li > a:before,
  .mh-navbar__container .mh-navbar__menu ul:not(:first-child) > li > a:after {
    display: none;
  }

  .mh-navbar__container .mh-navbar__menu ul:not(:first-child) > li:hover {
    background: #fff;
  }

  .mh-navbar__container
    .mh-navbar__menu
    ul:not(:first-child)
    > li:hover
    > a:after {
    width: 100%;
  }

  .mh-navbar__container .mh-navbar__menu ul ul ul {
    top: 0;
    left: 0;
  }
}

/* 
* MARK: GRID
*/
.mh-grid {
  position: relative;
}

@media (min-width: 768px) {
  .mh-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 1;
    overflow: hidden;
    margin-left: -6px;
    margin-right: -6px;
  }
}

.mh-grid:after {
  content: "";
  flex: auto;
}

.mh-grid__1of1 {
  width: 100%;
}

@media (min-width: 768px) {
  .mh-grid__1of1 {
    padding: 0 6px;
  }
}

.mh-grid__1of2 {
  width: 100%;
}

@media (min-width: 768px) {
  .mh-grid__1of2 {
    width: 50%;
    padding: 0 6px;
  }
}

.mh-grid__1of3 {
  width: 100%;
}

@media (min-width: 768px) {
  .mh-grid__1of3 {
    width: 50%;
    padding: 0 6px;
  }
}

@media (min-width: 1024px) {
  .mh-grid__1of3 {
    width: 33.33%;
  }
}

/* Thumbnails */
.mh-thumbnail {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.mh-thumbnail img {
  width: 100%;
}

@media (min-width: 1025px) {
  .mh-thumbnail:hover .mh-thumbnail__inner:after {
    background: #000;
    opacity: 0.3;
  }
}

.mh-thumbnail__inner:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-thumbnail__featured {
  position: absolute;
  top: 12px;
  left: 0px;
  padding: 3px 6px;
  color: #fff;
  background: #e30511;
  font-size: 14px;
}

.mh-top-wide .mh-layout {
  max-width: none;
}

@media (min-width: 1200px) {
  .mh-top-wide #mega_main_menu.mh-primary .menu_inner {
    max-width: none;
    padding: 0 30px;
  }
}

/* Pagination */
.mh-pagination {
  width: 100%;
  text-align: center;
  position: relative;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-bottom: 36px;
}

.mh-pagination:after {
  clear: both;
  content: "";
  display: table;
}

.mh-pagination .page-numbers {
  padding: 7px;
  margin: 0 3px;
  color: #222;
}

.mh-pagination a:hover {
  color: #009fe3;
}

.mh-pagination--single-post {
  color: #009fe3;
}

.mh-pagination--single-post span {
  margin: 10px;
}

.page-numbers.current {
  color: #009fe3;
}

/* Footer */
.mh-footer__inner {
  font-size: 13px;
  padding: 24px 0 0 0;
}

.mh-footer__inner select {
  border: 1px solid #c3c3c5;
  background: #222;
}

.mh-footer__inner .calendar_wrap table caption {
  font-size: 16px;
}

.mh-footer__inner .calendar_wrap table tbody a {
  line-height: 30px;
}

.mh-footer__inner .calendar_wrap table #today {
  font-weight: 400;
}

.mh-footer__inner label {
  width: 100%;
}

.mh-footer__inner .tagcloud a {
  border-color: #ccc;
}

@media (min-width: 768px) {
  .mh-footer__inner {
    padding-top: 48px;
  }
}

@media (min-width: 1024px) {
  .mh-footer__row {
    margin: 0 -18px;
    position: relative;
  }
}

@media (min-width: 1024px) {
  .mh-footer__row .mh-footer__row__column {
    padding: 0 18px;
    float: left;
    width: 25%;
  }
}

.mh-footer__heading {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-footer__heading {
    margin-bottom: 24px;
  }
}

.mh-footer__text {
  margin-bottom: 24px;
}

.mh-footer__logo > img {
  margin-bottom: 24px;
}

.mh-footer__logo > img:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-footer__logo > img {
    margin-bottom: 36px;
  }
}

.mh-footer__contact {
  position: relative;
  padding-left: 35px;
  line-height: 24px;
  margin-bottom: 24px;
}

.mh-footer__contact > a {
  -webkit-transition: all 0s !important;
  -moz-transition: all 0s !important;
  -ms-transition: all 0s !important;
  -o-transition: all 0s !important;
  transition: all 0s !important;
}

.mh-footer__contact i {
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* Footer top - widget area */
.mh-footer-top {
  background: #f2f2f2;
}

.mh-footer-top .widget_pages ul li a,
.mh-footer-top .widget_meta ul li a,
.mh-footer-top .widget_recent_entries ul li a,
.mh-footer-top .widget_nav_menu ul li a,
.mh-footer-top .widget_categories ul li a,
.mh-footer-top .widget_archive ul li a {
  border-color: #ccc;
}

.mh-footer-top .calendar_wrap table thead {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.mh-footer-top .calendar_wrap table tfoot {
  border-top: 1px solid #ccc;
}

.mh-footer-top .recentcomments {
  border-color: #ccc;
}

.mh-footer-top .widget_rss > ul > li {
  border-color: #ccc;
}

.mh-footer-top--dark {
  color: #f0f0f0;
  background: #333;
}

.mh-footer-top--dark a {
  color: #fff;
}

@media (min-width: 1025px) {
  .mh-footer-top--dark a:hover,
  .mh-footer-top--dark a:active,
  .mh-footer-top--dark a:focus {
    color: #009fe3;
    text-decoration: none;
  }
}

.mh-footer-top--dark .widget {
  border: 0;
  padding-bottom: 0;
}

.mh-footer-top--dark .widget_pages ul li a,
.mh-footer-top--dark .widget_meta ul li a,
.mh-footer-top--dark .widget_recent_entries ul li a,
.mh-footer-top--dark .widget_nav_menu ul li a,
.mh-footer-top--dark .widget_categories ul li a,
.mh-footer-top--dark .widget_archive ul li a {
  color: #fff;
  border-color: #4d4d4d;
}

@media (min-width: 1025px) {
  .mh-footer-top--dark .widget_pages ul li a:hover,
  .mh-footer-top--dark .widget_pages ul li a:focus,
  .mh-footer-top--dark .widget_pages ul li a:active,
  .mh-footer-top--dark .widget_meta ul li a:hover,
  .mh-footer-top--dark .widget_meta ul li a:focus,
  .mh-footer-top--dark .widget_meta ul li a:active,
  .mh-footer-top--dark .widget_recent_entries ul li a:hover,
  .mh-footer-top--dark .widget_recent_entries ul li a:focus,
  .mh-footer-top--dark .widget_recent_entries ul li a:active,
  .mh-footer-top--dark .widget_nav_menu ul li a:hover,
  .mh-footer-top--dark .widget_nav_menu ul li a:focus,
  .mh-footer-top--dark .widget_nav_menu ul li a:active,
  .mh-footer-top--dark .widget_categories ul li a:hover,
  .mh-footer-top--dark .widget_categories ul li a:focus,
  .mh-footer-top--dark .widget_categories ul li a:active,
  .mh-footer-top--dark .widget_archive ul li a:hover,
  .mh-footer-top--dark .widget_archive ul li a:focus,
  .mh-footer-top--dark .widget_archive ul li a:active {
    color: #fff;
  }
}

.mh-footer-top--dark .calendar_wrap table thead {
  border-top: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
}

.mh-footer-top--dark .calendar_wrap table tfoot {
  border-top: 1px solid #4d4d4d;
}

.mh-footer-top--dark .recentcomments {
  border-color: #4d4d4d;
}

.mh-footer-top--dark .recentcomments .comment-author-link {
  color: #fff;
}

.mh-footer-top--dark .recentcomments a {
  color: #fff;
}

.mh-footer-top--dark .tagcloud a {
  border-color: #666666;
  color: #fff;
  -webkit-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  transition: 0s ease-in-out;
}

.mh-footer-top--dark .calendar_wrap table caption {
  color: #fff;
}

.mh-footer-top--dark .calendar_wrap table tbody a {
  color: #fff;
  background: #222;
}

.mh-footer-top--dark .calendar_wrap table tfoot a {
  color: #fff;
}

.mh-footer-top--dark .widget_rss > ul > li {
  border-color: #4d4d4d;
}

.mh-footer-top--dark .mh-footer__heading {
  color: #fff;
}

.mh-footer-top--dark .mh-footer__text-bottom {
  color: #fff;
}

.mh-footer-top--dark .mh-footer__text-bottom a {
  color: #fff;
}

.mh-footer-top--dark select {
  background: #fff;
  border: none;
}

.mh-footer-top--dark input[type="text"]:focus,
.mh-footer-top--dark input[type="text"]:active,
.mh-footer-top--dark input[type="email"]:focus,
.mh-footer-top--dark input[type="email"]:active,
.mh-footer-top--dark input[type="password"]:focus,
.mh-footer-top--dark input[type="password"]:active,
.mh-footer-top--dark input[type="search"]:focus,
.mh-footer-top--dark input[type="search"]:active {
  background: #fff;
}

/* Footer bottom - copyright area */
.mh-footer-bottom {
  padding-bottom: 24px;
  font-size: 13px;
  padding-top: 24px;
  background: #222;
  color: #fff;
  text-align: right;
  padding-right: 14% !important;
}

@media (min-width: 768px) {
  .mh-footer-bottom {
    text-align: right;
    padding-right: 14%;
  }
}

.mh-footer-bottom--transparent {
  background: transparent;
}

/* Lazyload - images */
.lazyload,
.lazylaoding {
  opacity: 0;
}

.lazyloaded {
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  -ms-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
}

/* Active input */
.mh-active-input-primary .mh-active-input input {
  color: #009fe3;
  border: 2px solid #009fe3;
  padding-top: 9px;
  padding-bottom: 9px;
  background: rgba(41, 170, 227, 0.05);
}

.mh-active-input-primary .mh-active-input .bootstrap-select.btn-group > .btn {
  color: #009fe3;
  border: 2px solid #009fe3;
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(41, 170, 227, 0.05);
}

.mh-active-input-primary
  .mh-active-input
  .bootstrap-select.btn-group
  .dropdown-toggle
  .filter-option {
  color: #009fe3;
}

.mh-active-input-primary
  .mh-search__panel
  > div:not(:first-child)
  .is-checked
  .mdl-radio__outer-circle {
  border-color: #009fe3;
}

.mh-active-input-primary
  .mh-search__panel
  > div:not(:first-child)
  .is-checked
  .mdl-radio__inner-circle {
  background: #009fe3;
}

.mh-active-input-primary
  .mh-search__panel
  > div:not(:first-child)
  .is-checked
  .mdl-radio__label {
  color: #009fe3;
}

body.mh-active-input-dark .mh-active-input input {
  color: #222;
  border: 2px solid #4d4d4d;
  background: #fff;
  padding-top: 9px;
  padding-bottom: 9px;
}

body.mh-active-input-dark .mh-active-input .bootstrap-select.btn-group > .btn {
  color: #222;
  border: 2px solid #4d4d4d;
  background: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
}

body.mh-active-input-dark
  .mh-active-input
  .bootstrap-select.btn-group
  .dropdown-toggle
  .filter-option {
  color: #222;
}

body.mh-active-input-dark input[type="text"]:active,
body.mh-active-input-dark input[type="text"]:focus,
body.mh-active-input-dark input[type="password"]:active,
body.mh-active-input-dark input[type="password"]:focus,
body.mh-active-input-dark input[type="email"]:active,
body.mh-active-input-dark input[type="email"]:focus,
body.mh-active-input-dark input[type="search"]:active,
body.mh-active-input-dark input[type="search"]:focus {
  color: #222;
  border-color: #4d4d4d;
  background: #fff;
}

body.mh-active-input-dark .dropdown-menu > li.selected a {
  background: #666666;
  color: #fff;
}

body.mh-active-input-dark textarea:focus,
body.mh-active-input-dark textarea:active {
  border-color: #4d4d4d;
  background: #fff;
}

/* Agent - contact */
.mh-agent-contact {
  font-size: 13px;
  line-height: 24px;
  width: 100%;
}

.mh-agent-contact:after {
  clear: both;
  content: "";
  display: table;
}

.mh-agent-contact__element {
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-agent-contact__element:after {
  clear: both;
  content: "";
  display: table;
}

.mh-agent-contact__element i {
  margin: 0;
  width: 24px;
  padding-left: 2px;
  font-size: 16px;
  position: relative;
  top: 2px;
  display: inline-block;
}

.mh-agent-contact__element a {
  color: #666666;
}

.mh-agent-contact__element a:hover {
  color: #222;
}

/* Bootstrap select */
.bootstrap-select.btn-group {
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.bootstrap-select.btn-group > .btn {
  position: relative;
  float: left;
  display: inline-block;
  background: #fff;
  padding: 13px 0 13px 20px;
  border-radius: 0;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  margin-bottom: 0;
  border: 1px solid #c3c3c5;
}

.bootstrap-select.btn-group > .btn .caret {
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -2px;
  vertical-align: middle;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.bootstrap-select.btn-group > .dropdown-toggle {
  width: 100%;
  padding-right: 25px;
  z-index: 1;
}

.bootstrap-select.btn-group > select {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 0.5px;
  height: 100%;
  padding: 0;
  opacity: 0;
  border: none;
}

.bootstrap-select.btn-group > select.mobile-device {
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  z-index: 2;
}

.bootstrap-select.btn-group.bs-container {
  position: absolute;
  height: 0;
  padding: 0;
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
  z-index: 202000;
}

.bootstrap-select.btn-group .filter-option {
  display: inline-block;
  overflow: hidden;
  width: 100%;
  text-align: center;
  font-style: italic;
  color: #222;
  text-transform: capitalize;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  float: left;
  min-width: 160px;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  min-width: 100%;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #c3c3c5;
  z-index: 1024;
}
.nav > li ul.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  float: left;
  min-width: 206px;
  margin: 0px;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: none;
  z-index: 1024;
  text-transform: uppercase;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.nav > li:hover ul.dropdown-menu {
  display: block;
}

.dropdown-menu.inner {
  position: static;
  float: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 0;
}

.dropdown-menu > li {
  position: relative;
}
.dropdown-menu > li > a {
  display: block;
  padding: 6px 12px;
  clear: both;
  font-weight: normal;
  color: #222;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.bs-caret {
  display: none;
}
.nav > li ul.dropdown-menu > li > a {
  display: block;
  padding: 14px 18px;
  clear: both;
  font-weight: normal;
  color: #fff;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background: #337ab787;
  text-transform: unset;
}
.nav > li ul.dropdown-menu > li > a:hover,
.nav > li ul.dropdown-menu > li > a:focus {
  color: #fff;
  /* background-color: #ea3d36; */
}

@media (min-width: 1025px) {
  .dropdown-menu > li > a:hover,
  .dropdown-menu > li > a:focus {
    color: #222;
    background-color: #f0f0f0;
  }
}

.open .dropdown-menu {
  display: block;
}

.dropdown-menu > li.selected a {
  background: #009fe3;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  text-align: left;
}

.contact-submit input[type="submit"] {
  background: #fff;
  border: 2px solid #4d4d4d;
  padding: 10px 24px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.contact-submit input[type="submit"]:hover {
  background: #f2f2f2;
}

/* Magnific Popup */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 204001;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.95;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 204003;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 204002;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 204004;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 13px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 48px;
  height: 48px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.mfp-arrow-left {
  left: 12px;
}

.mfp-arrow-left:after {
  font-family: "revicons";
  content: "\e824";
  font-size: 16px;
  color: #222;
  display: block;
  line-height: 48px;
  text-align: center;
  background: white;
  width: 48px;
  height: 48px;
}

.mfp-arrow-right {
  right: 12px;
}

.mfp-arrow-right:after {
  font-family: "revicons";
  content: "\e825";
  font-size: 16px;
  color: #222;
  display: block;
  line-height: 48px;
  text-align: center;
  background: white;
  width: 48px;
  height: 48px;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 13px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-bg {
  z-index: 204005;
}

.mfp-wrap {
  z-index: 204006;
}

/* Material Design Lite */
.mdl-ripple {
  background: rgb(0, 0, 0);
  border-radius: 50%;
  height: 50px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 50px;
  overflow: hidden;
}

.mdl-ripple.is-animating {
  transition: transform 0.3s cubic-bezier(0, 0, 0.2, 1),
    width 0.3s cubic-bezier(0, 0, 0.2, 1),
    height 0.3s cubic-bezier(0, 0, 0.2, 1),
    opacity 0.6s cubic-bezier(0, 0, 0.2, 1);
}

.mdl-ripple.is-visible {
  opacity: 0.3;
}

.mdl-animation--default {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.mdl-animation--fast-out-slow-in {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.mdl-animation--linear-out-slow-in {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.mdl-animation--fast-out-linear-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.mdl-button {
  background: transparent;
  border: none;
  border-radius: 2px;
  color: rgb(0, 0, 0);
  position: relative;
  height: 36px;
  margin: 0;
  min-width: 64px;
  padding: 0 16px;
  display: inline-block;
  font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  overflow: hidden;
  will-change: box-shadow;
  transition: box-shadow 0.2s cubic-bezier(0.4, 0, 1, 1),
    background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 36px;
  vertical-align: middle;
}

.mdl-button::-moz-focus-inner {
  border: 0;
}

.mdl-button:hover {
  background-color: rgba(158, 158, 158, 0.2);
}

.mdl-button:focus:not(:active) {
  background-color: rgba(0, 0, 0, 0.12);
}

.mdl-button:active {
  background-color: rgba(158, 158, 158, 0.4);
}

.mdl-button.mdl-button--colored {
  color: rgb(63, 81, 181);
}

.mdl-button.mdl-button--colored:focus:not(:active) {
  background-color: rgba(0, 0, 0, 0.12);
}

input.mdl-button[type="submit"] {
  -webkit-appearance: none;
}

.mdl-button--raised {
  background: rgba(158, 158, 158, 0.2);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2),
    0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

.mdl-button--raised:active {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.2);
  background-color: rgba(158, 158, 158, 0.4);
}

.mdl-button--raised:focus:not(:active) {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.36);
  background-color: rgba(158, 158, 158, 0.4);
}

.mdl-button--raised.mdl-button--colored {
  background: rgb(63, 81, 181);
  color: rgb(255, 255, 255);
}

.mdl-button--raised.mdl-button--colored:hover {
  background-color: rgb(63, 81, 181);
}

.mdl-button--raised.mdl-button--colored:active {
  background-color: rgb(63, 81, 181);
}

.mdl-button--raised.mdl-button--colored:focus:not(:active) {
  background-color: rgb(63, 81, 181);
}

.mdl-button--raised.mdl-button--colored .mdl-ripple {
  background: rgb(255, 255, 255);
}

.mdl-button--fab {
  border-radius: 50%;
  font-size: 24px;
  height: 56px;
  margin: auto;
  min-width: 56px;
  width: 56px;
  padding: 0;
  overflow: hidden;
  background: rgba(158, 158, 158, 0.2);
  box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, 0.12), 0 1px 1px 0 rgba(0, 0, 0, 0.24);
  position: relative;
  line-height: normal;
}

.mdl-button--fab .material-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-12px, -12px);
  line-height: 24px;
  width: 24px;
}

.mdl-button--fab.mdl-button--mini-fab {
  height: 40px;
  min-width: 40px;
  width: 40px;
}

.mdl-button--fab .mdl-button__ripple-container {
  border-radius: 50%;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}

.mdl-button--fab:active {
  box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.2);
  background-color: rgba(158, 158, 158, 0.4);
}

.mdl-button--fab:focus:not(:active) {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.18), 0 8px 16px rgba(0, 0, 0, 0.36);
  background-color: rgba(158, 158, 158, 0.4);
}

.mdl-button--fab.mdl-button--colored {
  background: rgb(255, 64, 129);
  color: rgb(255, 255, 255);
}

.mdl-button--fab.mdl-button--colored:hover {
  background-color: rgb(255, 64, 129);
}

.mdl-button--fab.mdl-button--colored:focus:not(:active) {
  background-color: rgb(255, 64, 129);
}

.mdl-button--fab.mdl-button--colored:active {
  background-color: rgb(255, 64, 129);
}

.mdl-button--fab.mdl-button--colored .mdl-ripple {
  background: rgb(255, 255, 255);
}

.mdl-button--icon {
  border-radius: 50%;
  font-size: 24px;
  height: 32px;
  margin-left: 0;
  margin-right: 0;
  min-width: 32px;
  width: 32px;
  padding: 0;
  overflow: hidden;
  color: inherit;
  line-height: normal;
}

.mdl-button--icon .material-icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-12px, -12px);
  line-height: 24px;
  width: 24px;
}

.mdl-button--icon.mdl-button--mini-icon {
  height: 24px;
  min-width: 24px;
  width: 24px;
}

.mdl-button--icon.mdl-button--mini-icon .material-icons {
  top: 0px;
  left: 0px;
}

.mdl-button--icon .mdl-button__ripple-container {
  border-radius: 50%;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}

.mdl-button__ripple-container {
  display: block;
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}

.mdl-button[disabled] .mdl-button__ripple-container .mdl-ripple,
.mdl-button.mdl-button--disabled .mdl-button__ripple-container .mdl-ripple {
  background-color: transparent;
}

.mdl-button--primary.mdl-button--primary {
  color: rgb(63, 81, 181);
}

.mdl-button--primary.mdl-button--primary .mdl-ripple {
  background: rgb(255, 255, 255);
}

.mdl-button--primary.mdl-button--primary.mdl-button--raised,
.mdl-button--primary.mdl-button--primary.mdl-button--fab {
  color: rgb(255, 255, 255);
  background-color: rgb(63, 81, 181);
}

.mdl-button--accent.mdl-button--accent {
  color: rgb(255, 64, 129);
}

.mdl-button--accent.mdl-button--accent .mdl-ripple {
  background: rgb(255, 255, 255);
}

.mdl-button--accent.mdl-button--accent.mdl-button--raised,
.mdl-button--accent.mdl-button--accent.mdl-button--fab {
  color: rgb(255, 255, 255);
  background-color: rgb(255, 64, 129);
}

.mdl-button[disabled][disabled],
.mdl-button.mdl-button--disabled.mdl-button--disabled {
  color: rgba(0, 0, 0, 0.26);
  cursor: default;
  background-color: transparent;
}

.mdl-button--fab[disabled][disabled],
.mdl-button--fab.mdl-button--disabled.mdl-button--disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.26);
}

.mdl-button--raised[disabled][disabled],
.mdl-button--raised.mdl-button--disabled.mdl-button--disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.26);
  box-shadow: none;
}

.mdl-button--colored[disabled][disabled],
.mdl-button--colored.mdl-button--disabled.mdl-button--disabled {
  color: rgba(0, 0, 0, 0.26);
}

.mdl-button .material-icons {
  vertical-align: middle;
}

.mdl-checkbox {
  position: relative;
  z-index: 1;
  vertical-align: middle;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  height: 24px;
  margin: 0;
  padding: 0;
}

.mdl-checkbox.is-upgraded {
  padding-left: 24px;
}

.mdl-checkbox__input {
  line-height: 24px;
}

.mdl-checkbox.is-upgraded .mdl-checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}

.mdl-checkbox__box-outline {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.54);
  z-index: 2;
}

.mdl-checkbox.is-checked .mdl-checkbox__box-outline {
  border: 2px solid rgb(63, 81, 181);
}

fieldset[disabled] .mdl-checkbox .mdl-checkbox__box-outline,
.mdl-checkbox.is-disabled .mdl-checkbox__box-outline {
  border: 2px solid rgba(0, 0, 0, 0.26);
  cursor: auto;
}

.mdl-checkbox__focus-helper {
  position: absolute;
  top: 3px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: transparent;
}

.mdl-checkbox.is-focused .mdl-checkbox__focus-helper {
  box-shadow: 0 0 0px 8px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
}

.mdl-checkbox.is-focused.is-checked .mdl-checkbox__focus-helper {
  box-shadow: 0 0 0px 8px rgba(63, 81, 181, 0.26);
  background-color: rgba(63, 81, 181, 0.26);
}

.mdl-checkbox__tick-outline {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  mask: url("/images/tick-mask.svg?embed");
  background: transparent;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: background;
}

.mdl-checkbox.is-checked .mdl-checkbox__tick-outline {
  background: rgb(63, 81, 181) url("/images/tick.svg?embed");
}

fieldset[disabled] .mdl-checkbox.is-checked .mdl-checkbox__tick-outline,
.mdl-checkbox.is-checked.is-disabled .mdl-checkbox__tick-outline {
  background: rgba(0, 0, 0, 0.26) url("/images/tick.svg?embed");
}

.mdl-checkbox__label {
  position: relative;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

fieldset[disabled] .mdl-checkbox .mdl-checkbox__label,
.mdl-checkbox.is-disabled .mdl-checkbox__label {
  color: rgba(0, 0, 0, 0.26);
  cursor: auto;
}

.mdl-checkbox__ripple-container {
  position: absolute;
  z-index: 2;
  top: -6px;
  left: -10px;
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}

.mdl-checkbox__ripple-container .mdl-ripple {
  background: rgb(63, 81, 181);
}

fieldset[disabled] .mdl-checkbox .mdl-checkbox__ripple-container,
.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container {
  cursor: auto;
}

fieldset[disabled] .mdl-checkbox .mdl-checkbox__ripple-container .mdl-ripple,
.mdl-checkbox.is-disabled .mdl-checkbox__ripple-container .mdl-ripple {
  background: transparent;
}

.mdl-radio {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  padding-left: 0;
}

.mdl-radio.is-upgraded {
  padding-left: 24px;
}

.mdl-radio__button {
  line-height: 24px;
}

.mdl-radio.is-upgraded .mdl-radio__button {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
}

.mdl-radio__outer-circle {
  position: absolute;
  top: 4px;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  border: 2px solid rgba(0, 0, 0, 0.54);
  border-radius: 50%;
  z-index: 2;
}

.mdl-radio.is-checked .mdl-radio__outer-circle {
  border: 2px solid rgb(63, 81, 181);
}

.mdl-radio__outer-circle fieldset[disabled] .mdl-radio,
.mdl-radio.is-disabled .mdl-radio__outer-circle {
  border: 2px solid rgba(0, 0, 0, 0.26);
  cursor: auto;
}

.mdl-radio__inner-circle {
  position: absolute;
  z-index: 1;
  margin: 0;
  top: 8px;
  left: 4px;
  box-sizing: border-box;
  width: 8px;
  height: 8px;
  cursor: pointer;
  transition-duration: 0.28s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-property: transform;
  transform: scale3d(0, 0, 0);
  border-radius: 50%;
  background: rgb(63, 81, 181);
}

.mdl-radio.is-checked .mdl-radio__inner-circle {
  transform: scale3d(1, 1, 1);
}

fieldset[disabled] .mdl-radio .mdl-radio__inner-circle,
.mdl-radio.is-disabled .mdl-radio__inner-circle {
  background: rgba(0, 0, 0, 0.26);
  cursor: auto;
}

.mdl-radio.is-focused .mdl-radio__inner-circle {
  box-shadow: 0 0 0px 10px rgba(0, 0, 0, 0.1);
}

.mdl-radio__label {
  cursor: pointer;
}

fieldset[disabled] .mdl-radio .mdl-radio__label,
.mdl-radio.is-disabled .mdl-radio__label {
  color: rgba(0, 0, 0, 0.26);
  cursor: auto;
}

.mdl-radio__ripple-container {
  position: absolute;
  z-index: 2;
  top: -9px;
  left: -13px;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}

.mdl-radio__ripple-container .mdl-ripple {
  background: rgb(63, 81, 181);
}

fieldset[disabled] .mdl-radio .mdl-radio__ripple-container,
.mdl-radio.is-disabled .mdl-radio__ripple-container {
  cursor: auto;
}

fieldset[disabled] .mdl-radio .mdl-radio__ripple-container .mdl-ripple,
.mdl-radio.is-disabled .mdl-radio__ripple-container .mdl-ripple {
  background: transparent;
}

.mdl-textfield {
  position: relative;
  font-size: 16px;
  display: inline-block;
  box-sizing: border-box;
  width: 300px;
  max-width: 100%;
  margin: 0;
  padding: 20px 0;
}

.mdl-textfield .mdl-button {
  position: absolute;
  bottom: 20px;
}

.mdl-textfield--align-right {
  text-align: right;
}

.mdl-textfield--full-width {
  width: 100%;
}

.mdl-textfield--expandable {
  min-width: 32px;
  width: auto;
  min-height: 32px;
}

.mdl-textfield--expandable .mdl-button--icon {
  top: 16px;
}

.mdl-textfield__input {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  display: block;
  font-size: 16px;
  font-family: "Helvetica", "Arial", sans-serif;
  margin: 0;
  padding: 4px 0;
  width: 100%;
  background: none;
  text-align: left;
  color: inherit;
}

.mdl-textfield__input[type="number"] {
  -moz-appearance: textfield;
}

.mdl-textfield__input[type="number"]::-webkit-inner-spin-button,
.mdl-textfield__input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mdl-textfield.is-focused .mdl-textfield__input {
  outline: none;
}

.mdl-textfield.is-invalid .mdl-textfield__input {
  border-color: rgb(213, 0, 0);
  box-shadow: none;
}

fieldset[disabled] .mdl-textfield .mdl-textfield__input,
.mdl-textfield.is-disabled .mdl-textfield__input {
  background-color: transparent;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.26);
}

.mdl-textfield textarea.mdl-textfield__input {
  display: block;
}

.mdl-textfield__label {
  bottom: 0;
  color: rgba(0, 0, 0, 0.26);
  font-size: 16px;
  left: 0;
  right: 0;
  pointer-events: none;
  position: absolute;
  display: block;
  top: 24px;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-align: left;
}

.mdl-textfield.is-dirty .mdl-textfield__label,
.mdl-textfield.has-placeholder .mdl-textfield__label {
  visibility: hidden;
}

.mdl-textfield--floating-label .mdl-textfield__label {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.mdl-textfield--floating-label.has-placeholder .mdl-textfield__label {
  transition: none;
}

fieldset[disabled] .mdl-textfield .mdl-textfield__label,
.mdl-textfield.is-disabled.is-disabled .mdl-textfield__label {
  color: rgba(0, 0, 0, 0.26);
}

.mdl-textfield--floating-label.is-focused .mdl-textfield__label,
.mdl-textfield--floating-label.is-dirty .mdl-textfield__label,
.mdl-textfield--floating-label.has-placeholder .mdl-textfield__label {
  color: rgb(63, 81, 181);
  font-size: 12px;
  top: 4px;
  visibility: visible;
}

.mdl-textfield--floating-label.is-focused
  .mdl-textfield__expandable-holder
  .mdl-textfield__label,
.mdl-textfield--floating-label.is-dirty
  .mdl-textfield__expandable-holder
  .mdl-textfield__label,
.mdl-textfield--floating-label.has-placeholder
  .mdl-textfield__expandable-holder
  .mdl-textfield__label {
  top: -16px;
}

.mdl-textfield--floating-label.is-invalid .mdl-textfield__label {
  color: rgb(213, 0, 0);
  font-size: 12px;
}

.mdl-textfield__label:after {
  background-color: rgb(63, 81, 181);
  bottom: 20px;
  content: "";
  height: 2px;
  left: 45%;
  position: absolute;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
  width: 10px;
}

.mdl-textfield.is-focused .mdl-textfield__label:after {
  left: 0;
  visibility: visible;
  width: 100%;
}

.mdl-textfield.is-invalid .mdl-textfield__label:after {
  background-color: rgb(213, 0, 0);
}

.mdl-textfield__error {
  color: rgb(213, 0, 0);
  position: absolute;
  font-size: 12px;
  margin-top: 3px;
  visibility: hidden;
  display: block;
}

.mdl-textfield.is-invalid .mdl-textfield__error {
  visibility: visible;
}

.mdl-textfield__expandable-holder {
  display: inline-block;
  position: relative;
  margin-left: 32px;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  max-width: 0.1px;
}

.mdl-textfield.is-focused .mdl-textfield__expandable-holder,
.mdl-textfield.is-dirty .mdl-textfield__expandable-holder {
  max-width: 600px;
}

.mdl-textfield__expandable-holder .mdl-textfield__label:after {
  bottom: 0;
}

.mdl-button {
  font-family: inherit;
  letter-spacing: 0.1px;
  border-radius: 0;
  box-shadow: none;
  color: #222;
  font-weight: 400;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  box-shadow: none !important;
}

@media (max-width: 1025px) {
  .mdl-button.mdl-button:hover {
    background-color: transparent;
  }
}

.mdl-button.mdl-button--raised {
  box-shadow: none;
}

.mdl-button.mdl-button--raised:active,
.mdl-button.mdl-button--raised:hover,
.mdl-button.mdl-button--raised:focus {
  box-shadow: none;
}

.mdl-button.mdl-button--full-width {
  width: 100%;
}

@media (min-width: 768px) {
  .mdl-button.mdl-button--half {
    min-width: 50%;
  }
}

.mdl-button.mdl-button--lg {
  line-height: 40px;
  height: 48px;
  font-size: 16px;
  padding: 0 20px;
}

.mdl-button.mdl-button--raised.mdl-button--primary {
  background: #009fe3;
}

@media (min-width: 1025px) {
  .mdl-button.mdl-button--raised.mdl-button--primary:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100%;
    -webkit-transition: 0.15s ease-in-out;
    -moz-transition: 0.15s ease-in-out;
    -ms-transition: 0.15s ease-in-out;
    -o-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
  }

  .mdl-button.mdl-button--raised.mdl-button--primary:hover:before {
    background: rgba(255, 255, 255, 0.18);
  }
}

.mdl-button.mdl-button--primary-ghost {
  background: transparent;
  border: 2px solid #009fe3;
  line-height: 32px;
  color: #009fe3;
}

.mdl-button.mdl-button--primary-ghost:hover {
  color: #fff;
  background: #009fe3;
}

.mdl-button.mdl-button--primary-ghost.mdl-button--lg {
  line-height: 44px;
}

@media (max-width: 1024px) {
  .mdl-button.mdl-button--primary-ghost {
    color: #009fe3;
    background: transparent !important;
  }
}

@media (min-width: 1025px) {
  .mdl-button.mdl-button--primary-ghost:hover,
  .mdl-button.mdl-button--primary-ghost:active,
  .mdl-button.mdl-button--primary-ghost:focus {
    background: #009fe3;
    color: #fff !important;
  }
}

.mdl-button.mdl-button--white {
  background: #fff;
  color: #222;
}

.mdl-button.mdl-button--white:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.15s ease-in-out;
  -moz-transition: 0.15s ease-in-out;
  -ms-transition: 0.15s ease-in-out;
  -o-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
}

.mdl-button.mdl-button--white:hover {
  background: #fff;
  color: #222;
}

.mdl-button.mdl-button--white:hover:before {
  background: rgba(0, 0, 0, 0.1);
}

.mdl-button.mdl-button--white .mdl-ripple {
  background: black;
}

.mdl-button.mdl-button--dark {
  background: #333;
  color: #fff;
}

.mdl-button.mdl-button--dark .mdl-ripple {
  background: white;
}

.mdl-button.mdl-button--dark:hover {
  background: #000;
  color: #fff;
}

.mdl-button.mdl-button--primary-font {
  color: #009fe3;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
}

.mdl-button.mdl-button--primary-font:hover {
  background: transparent;
}

.mdl-button.mdl-button--primary-font:active,
.mdl-button.mdl-button--primary-font:focus {
  background: transparent;
}

.mdl-button.mdl-button--dark-font {
  color: #222;
  -webkit-touch-callout: none;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
}

.mdl-button.mdl-button--dark-font:hover {
  background: transparent;
}

.mdl-button.mdl-button--dark-font:active,
.mdl-button.mdl-button--dark-font:focus {
  background: transparent;
}

.mdl-button.mdl-button--compare-active {
  background: #009fe3;
  color: #fff;
}

.mdl-button.mdl-button--compare-active:hover,
.mdl-button.mdl-button--compare-active:active,
.mdl-button.mdl-button--compare-active:focus {
  background: #009fe3;
}

/*.mdl-button.mdl-button--clear {
    display: none;
}*/

@media (min-width: 768px) {
  .mdl-button.mdl-button--clear {
    margin: 0 4px;
    display: inline-block;
    min-width: 120px;
  }
}

.mdl-button.mdl-button--advanced {
  float: right;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .mdl-button.mdl-button--advanced {
    float: none;
    min-width: 120px;
    margin: 0 4px;
  }
}

a.mdl-button.mdl-button--raised.mdl-button--primary:hover {
  color: #fff;
}

.mdl-button__icon-left {
  margin-right: 5px;
}

.mdl-button__icon-right {
  margin-left: 5px;
}

/* Labels */
.mdl-checkbox__label,
.mdl-radio__label {
  text-transform: uppercase;
  font-weight: 400;
  color: #666666;
  font-size: 13px;
}

/* Checkbox */
.mdl-checkbox {
  margin-bottom: 0;
}

.mdl-checkbox__ripple-container {
  top: -6px;
  left: -11px;
  width: 36px;
  height: 36px;
}

.mdl-checkbox__box-outline {
  top: 5px;
  width: 14px;
  height: 14px;
}

.mdl-checkbox__ripple-container .mdl-ripple {
  background: #999 !important;
}

.mdl-checkbox .mdl-checkbox__box-outline {
  border: 2px solid #666666;
}

.mdl-checkbox.is-checked .mdl-checkbox__box-outline {
  border: 2px solid #666666;
}

.mdl-checkbox.is-checked .mdl-checkbox__tick-outline {
  background: white url(assets/images/tick.svg?embed) !important;
}

/* Radio */
.mdl-radio__outer-circle {
  width: 14px;
  height: 14px;
  top: 6px;
  border-color: #666666;
}

.mdl-radio.is-checked .mdl-radio__outer-circle {
  border-color: #666666;
}

.mdl-radio.is-checked .mdl-radio__inner-circle {
  background: #666666;
}

.mdl-radio__inner-circle {
  width: 6px;
  height: 6px;
  top: 10px;
  left: 4px;
  border-color: #666666;
}

.mdl-radio__ripple-container {
  top: -5px;
  left: -11px;
  width: 36px;
  height: 36px;
}

.mdl-radio__ripple-container .mdl-ripple {
  background: #666666;
}

.mdl-radio__outer-circle {
  width: 14px;
  height: 14px;
  top: 6px;
}

.mdl-radio__inner-circle {
  width: 6px;
  height: 6px;
  top: 10px;
  left: 4px;
  background: #666666;
}

.mdl-radio__ripple-container {
  top: -5px;
  left: -11px;
  width: 36px;
  height: 36px;
}

/* Mega Main Menu - mh-primary menu style */
html body #mega_main_menu.mh-primary .mmm_fullwidth_container {
  border-bottom: 1px solid #f0f0f0;
}

html body #mega_main_menu.mh-primary .nav_logo {
  display: block;
}

html body #mega_main_menu.mh-primary .nav_logo img {
  height: 40px;
}

html body #mega_main_menu.mh-primary li.default_dropdown > ul,
html body #mega_main_menu.mh-primary li.default_dropdown li > ul,
html body #mega_main_menu.mh-primary li.multicolumn_dropdown > ul,
html body #mega_main_menu.mh-primary li.tabs_dropdown > ul,
html body #mega_main_menu.mh-primary li.widgets_dropdown > ul,
html body #mega_main_menu.mh-primary li.post_type_dropdown > ul,
html body #mega_main_menu.mh-primary li.grid_dropdown > ul,
html
  body
  #mega_main_menu.mh-primary
  li.post_type_dropdown
  .mega_dropdown
  > li.post_item
  .post_details,
html
  body
  #mega_main_menu.mh-primary
  li.grid_dropdown
  .mega_dropdown
  > li
  .post_details {
  box-shadow: none;
}

html body #mega_main_menu.mh-primary #mh-submit-button .item_link {
  padding-right: 0;
}

html body #mega_main_menu.mh-primary #mh-submit-button a {
  color: #009fe3;
  background: transparent;
  border: none;
  padding: 0 !important;
}

html body #mega_main_menu.mh-primary #mh-submit-button a i {
  margin-left: 3px;
  color: #009fe3;
}

@media (min-width: 1023px) {
  html body #mega_main_menu.mh-primary #mh-submit-button {
    float: right !important;
    margin-right: 0 !important;
  }

  html body #mega_main_menu.mh-primary #mh-submit-button a {
    padding-right: 0 !important;
    text-transform: uppercase;
  }
}

html
  body
  #mega_main_menu.mh-primary
  > .menu_holder
  > .menu_inner
  > ul
  > li:hover
  > a:after {
  color: #009fe3;
}

@media (max-width: 1023px) {
  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > .nav_logo
    > .mobile_toggle
    > .mobile_button
    .symbol_menu {
    font-size: 25px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > .nav_logo
    > .mobile_toggle
    > .mobile_button
    .symbol_menu
    i {
    margin-top: -10px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > .nav_logo
    > .mobile_toggle
    > .mobile_button
    .symbol_cross {
    font-size: 25px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > .nav_logo
    > .mobile_toggle
    > .mobile_button
    .symbol_cross
    i {
    margin-top: -11px;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown {
    padding: 0 18px !important;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li {
    background: #fff;
    color: #222;
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 0;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li * {
    color: #222;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li .item_link:before {
    border-color: #222;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li a {
    padding: 14px 18px;
    background: #fff;
    color: #222;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li a .link_content {
    line-height: 36px;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li:last-child {
    border-bottom: 0;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li.default_dropdown
    .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    .mega_dropdown
    > li
    .post_details {
    background: #fff;
  }

  html
    body
    #mega_main_menu.mh-primary
    li.default_dropdown
    .mega_dropdown
    > li
    > .item_link,
  html
    body
    #mega_main_menu.mh-primary
    li.widgets_dropdown
    .mega_dropdown
    > li
    > .item_link,
  html
    body
    #mega_main_menu.mh-primary
    li.multicolumn_dropdown
    .mega_dropdown
    > li
    > .item_link,
  html
    body
    #mega_main_menu.mh-primary
    li.grid_dropdown
    .mega_dropdown
    > li
    > .item_link {
    background: #fff;
  }

  html body #mega_main_menu.mh-primary li .post_details > .post_icon > i,
  html body #mega_main_menu.mh-primary li .mega_dropdown .item_link *,
  html body #mega_main_menu.mh-primary li .mega_dropdown a,
  html body #mega_main_menu.mh-primary li .mega_dropdown a *,
  html body #mega_main_menu.mh-primary li li .post_details a {
    color: #222;
  }

  html
    body
    #mega_main_menu.mh-primary
    .mega_dropdown
    > li.current-menu-item
    > .item_link
    *,
  html body #mega_main_menu.mh-primary .mega_dropdown > li > .item_link:focus *,
  html body #mega_main_menu.mh-primary .mega_dropdown > li > .item_link:hover *,
  html
    body
    #mega_main_menu.mh-primary
    li.post_type_dropdown
    > .mega_dropdown
    > li
    > .processed_image:hover
    > .cover
    > a
    > i {
    color: initial;
  }

  html
    body
    #mega_main_menu.mh-primary.responsive-enable
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link:after {
    right: 18px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link {
    border-bottom: 1px solid #f0f0f0;
    padding-left: 18px;
    text-align: left;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > .nav_logo
    .logo_link {
    padding-left: 15px;
  }

  html body #mega_main_menu.mh-primary .nav_logo .logo_link {
    padding: 0px 15px;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown {
    padding: 0 15px;
  }
}

@media (min-width: 1023px) {
  html body #mega_main_menu.mh-primary .nav_logo .logo_link {
    padding-left: 0;
  }

  html body #mega_main_menu.mh-primary .menu_inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
  }

  html body #mega_main_menu.mh-primary .nav_logo .logo_link {
    margin-right: 40px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link {
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  html body #mega_main_menu.mh-primary > .menu_holder > .menu_inner > ul > li {
    margin: 0 10px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li:first-child {
    margin-left: 0;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li:first-child
    > .item_link {
    padding-left: 0 !important;
  }

  html body #mega_main_menu.mh-primary li > .mega_dropdown > li > .item_link {
    padding: 14px 18px;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li {
    min-height: 48px;
  }

  html body #mega_main_menu.mh-primary .mega_dropdown li .mega_dropdown {
    border-left: 3px solid #747474;
  }

  html
    body
    #mega_main_menu.mh-primary
    .mega_dropdown
    li:not(:hover).current-menu-item
    > .item_link {
    background: #666666;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link
    > .link_content
    > .link_text {
    letter-spacing: 0.3px;
  }

  html
    body
    #mega_main_menu.mh-primary
    li.multicolumn_dropdown:hover
    > .mega_dropdown {
    padding: 0px 0px 0 0px;
  }

  html body #mega_main_menu.mh-primary li.default_dropdown li > ul,
  html body #mega_main_menu.mh-primary li.widgets_dropdown > ul,
  html
    body
    #mega_main_menu.mh-primary
    li.grid_dropdown
    .mega_dropdown
    > li
    .post_details {
    box-shadow: none;
    padding: 0px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li.default_dropdown
    .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    .mega_dropdown
    > li
    .post_details {
    background: white;
  }

  html
    body
    #mega_main_menu.mh-primary
    li.multicolumn_dropdown
    > .mega_dropdown
    > li {
    padding-bottom: 0;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li:hover
    > .item_link
    * {
    color: #009fe3;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > ul
    .menu-item
    > .item_link {
    text-transform: uppercase;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > ul
    .menu-item
    > .item_link:before {
    right: 9px !important;
  }

  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.default_dropdown
    .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.multicolumn_dropdown
    > .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.tabs_dropdown
    > .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.widgets_dropdown
    > .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.post_type_dropdown
    > .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.post_type_dropdown
    > .mega_dropdown
    > li.post_item
    .post_details,
  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.grid_dropdown
    > .mega_dropdown,
  html
    body
    #mega_main_menu.mh-primary.dropdowns_animation-anim_4
    > .menu_holder
    li.grid_dropdown
    > .mega_dropdown
    > li
    .post_details {
    -webkit-transition: transform 0.2s, opacity 0.2s, padding 0.2s;
    -moz-transition: transform 0.2s, opacity 0.2s, padding 0.2s;
    -ms-transition: transform 0.2s, opacity 0.2s, padding 0.2s;
    -o-transition: transform 0.2s, opacity 0.2s, padding 0.2s;
    transition: transform 0.2s, opacity 0.2s, padding 0.2s;
    background: #666666;
  }

  html
    body
    #mega_main_menu.mh-primary
    .multicolumn_dropdown
    .mega_dropdown:before {
    content: "";
    position: absolute;
    background: #747474;
    width: 3px;
    height: 100%;
    bottom: 0;
    right: 0;
    z-index: 5;
  }

  html
    body
    #mega_main_menu.mh-primary
    .multicolumn_dropdown
    .mega_dropdown
    > li {
    border-right: 3px solid #747474;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    li.widgets_dropdown
    > .mega_dropdown
    > li,
  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    li.multicolumn_dropdown
    > .mega_dropdown
    > li {
    padding-left: 0px;
    padding-right: 0px;
  }

  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li[class*="columns"] {
    margin-right: 12px;
  }

  html body #mega_main_menu.mh-primary ul li .mega_dropdown > li > .item_link {
    min-height: 48px;
  }
}

@media (min-width: 1023px) and (max-width: 1200px) {
  html
    body
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li[class*="columns"] {
    margin-right: 7px;
  }
}

html body.vc_editor .mh-header--transparent #mega_main_menu.mh-primary {
  background: #333;
  position: relative !important;
}

html body .mh-header--transparent #mega_main_menu.mh-primary {
  position: absolute;
  width: 100%;
}

@media (max-width: 1023px) {
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    .nav_logo.mobile_menu_active
    + ul {
    background: #fff;
  }
}

html
  body
  .mh-header--transparent
  #mega_main_menu.mh-primary
  > .menu_holder
  > .menu_inner
  > ul
  > li:hover
  > a:after {
  color: #fff !important;
}

html
  body
  .mh-header--transparent
  #mega_main_menu.mh-primary
  .mobile_toggle
  .symbol_menu
  i,
html
  body
  .mh-header--transparent
  #mega_main_menu.mh-primary
  .mobile_toggle
  .symbol_cross {
  color: #fff;
}

html
  body
  .mh-header--transparent
  #mega_main_menu.mh-primary
  > .menu_holder:not(.sticky_container)
  > .mmm_fullwidth_container {
  background: transparent;
  border-bottom: 0;
}

html
  body
  .mh-header--transparent
  #mega_main_menu.mh-primary
  #mega_main_menu.mh-primary
  > .menu_holder
  > .menu_inner
  > ul
  > li
  > .item_link {
  padding-right: 0;
}

@media (min-width: 1023px) {
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li.default_dropdown
    .mega_dropdown,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .mega_dropdown,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    .mega_dropdown
    > li
    .post_details {
    background: #333333;
  }
}

@media (min-width: 1023px) {
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.default_dropdown
    .mega_dropdown
    > li
    > .item_link,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.widgets_dropdown
    .mega_dropdown
    > li
    > .item_link,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.multicolumn_dropdown
    .mega_dropdown
    > li
    > .item_link,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.grid_dropdown
    .mega_dropdown
    > li
    > .item_link {
    background: #333333;
  }

  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.default_dropdown
    .mega_dropdown
    > li
    > .item_link:hover,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.widgets_dropdown
    .mega_dropdown
    > li
    > .item_link:hover,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.multicolumn_dropdown
    .mega_dropdown
    > li
    > .item_link:hover,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    li.grid_dropdown
    .mega_dropdown
    > li
    > .item_link:hover {
    background: #666666;
  }
}

@media (min-width: 1023px) {
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li:hover
    > .item_link,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li
    > .item_link:hover,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li
    > .item_link:focus,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li:hover
    > .item_link
    *,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li.current-menu-ancestor
    > .item_link,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li.current-menu-ancestor
    > .item_link
    *,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li.current-page-ancestor
    > .item_link
    *,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li.current-post-ancestor
    > .item_link
    *,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li.current-menu-item
    > .item_link
    * {
    color: #fff;
  }
}

@media (min-width: 1023px) {
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > .nav_logo
    > .mobile_toggle
    > .mobile_button,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li
    > .item_link,
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder:not(.sticky_container)
    > .menu_inner
    > ul
    > li
    > .item_link
    * {
    color: #fff;
  }
}

@media (min-width: 1023px) {
  html
    body
    .mh-header--transparent
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link:after {
    color: #fff;
  }
}

html
  body
  .mh-header--transparent
  #mega_main_menu.mh-primary
  > .menu_holder:not(.sticky_container)
  > .mmm_fullwidth_container {
  background: transparent;
  border-bottom: 0;
}

html
  body:not(.vc_editor)
  .mh-header--transparent-dark
  #mega_main_menu.mh-primary
  > .menu_holder:not(.sticky_container)
  > .mmm_fullwidth_container {
  background: transparent;
  background-image: url("assets/images/gradient-dark.png");
  background-repeat: repeat-x;
  background-size: contain;
  border-color: transparent;
}

.mh-header--transparent-dark
  #mega_main_menu.direction-horizontal
  > .menu_holder.sticky_container {
  background: #fff !important;
}

.mh-header--transparent-dark #mh-submit-button a,
.mh-header--transparent-dark #mh-submit-button i,
.mh-header--transparent #mh-submit-button a,
.mh-header--transparent #mh-submit-button i {
  color: #fff !important;
}

@media (min-width: 1023px) {
  .mh-primary--no-logo .nav_logo {
    display: none !important;
  }
}

html body .post_item {
  width: 10% !important;
}

html body .post_item .post_details {
  display: none !important;
}

html
  body
  .mh-menu-primary-color-background
  .mh-header:not(.mh-header--transparent)
  #mega_main_menu.mh-primary
  > .menu_holder
  > .menu_inner
  > span.nav_logo {
  background: #009fe3;
}

html
  body
  .mh-menu-primary-color-background
  .mh-header:not(.mh-header--transparent)
  #mega_main_menu.mh-primary
  > .menu_holder
  > .menu_inner
  > .nav_logo
  > .mobile_toggle
  > .mobile_button
  .symbol_menu
  i,
html
  body
  .mh-menu-primary-color-background
  .mh-header:not(.mh-header--transparent)
  #mega_main_menu.mh-primary
  > .menu_holder
  > .menu_inner
  > .nav_logo
  > .mobile_toggle
  > .mobile_button
  .symbol_cross
  i {
  color: #fff;
}

@media (max-width: 1023px) {
  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .mmm_fullwidth_container {
    background-color: #fff !important;
    border-bottom-color: #fff !important;
  }
}

@media (min-width: 1023px) {
  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .mmm_fullwidth_container {
    background-color: #009fe3;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link
    * {
    color: #fff !important;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link:after {
    border-top-color: #fff !important;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link
    .link_text {
    overflow: hidden;
    position: relative;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li
    > .item_link
    .link_text:before {
    content: "";
    position: absolute;
    right: 0;
    margin: 0 auto;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #666666;
    opacity: 0;
    transition: all 0s ease 0s;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li:not(.mh-submit-button):hover
    > .item_link:after {
    border-top-color: #fff;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li:not(.mh-submit-button):hover
    > .item_link
    .link_text {
    overflow-x: hidden;
    position: relative;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    > .menu_holder
    > .menu_inner
    > ul
    > li:not(.mh-submit-button):hover
    > .item_link
    .link_text:before {
    opacity: 1;
    bottom: 0;
    transition: all 0.1s ease-out 0.1s;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    #mh-submit-button
    .link_content
    a {
    color: #fff;
  }

  html
    body
    .mh-menu-primary-color-background
    .mh-header:not(.mh-header--transparent)
    #mega_main_menu.mh-primary
    #mh-submit-button
    .link_content
    a
    i {
    color: #fff;
  }
}

html
  body
  .mh-menu-primary
  .mh-header--transparent
  #mega_main_menu.mh-primary
  > .menu_holder
  > .menu_inner
  > ul
  > li
  > .item_link
  .link_text:before {
  border-bottom-color: #333;
}

/* 404 */
.mh-404 {
  height: 600px;
  display: table;
  width: 100%;
  padding: 12px;
}

.mh-404__content {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

h1.mh-404__title {
  font-size: 90px;
  margin-bottom: 0;
  text-align: center;
}

.mh-404__text {
  font-size: 32px;
  text-align: center;
}

/* Accordion */
.mh-accordion {
  width: 100%;
  border-left: 1px solid #f0f0f0;
  border-right: 1px solid #f0f0f0;
  margin-bottom: 24px;
}

.mh-accordion:after {
  clear: both;
  content: "";
  display: table;
}

.mh-accordion .ui-accordion-content {
  background: #fff;
  width: 100%;
}

.mh-accordion .ui-accordion-content:after {
  clear: both;
  content: "";
  display: table;
}

.mh-accordion .ui-accordion-content {
  margin: 0;
  padding: 12px;
}

.mh-accordion .ui-accordion-content:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-accordion .ui-accordion-content {
    padding: 24px;
  }
}

.mh-accordion .ui-accordion-header {
  font-family: Lato, Arial, Helvetica, sans-serif;
  background-color: #fafafa;
  margin: 0px;
  padding: 12px 24px;
  font-size: 14px;
  color: #333333;
  border-bottom: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
  cursor: pointer;
  -webkit-transition: background 0.3s, color 0.3s;
  -moz-transition: background 0.3s, color 0.3s;
  -ms-transition: background 0.3s, color 0.3s;
  -o-transition: background 0.3s, color 0.3s;
  transition: background 0.3s, color 0.3s;
}

.mh-accordion .ui-accordion-header i {
  margin-right: 9px;
  font-size: 11px;
}

.mh-accordion .ui-accordion-header.ui-accordion-header-active {
  background: #009fe3;
  color: #fff;
}

.mh-accordion .ui-accordion-header.ui-accordion-header-active .fa-plus {
  display: none;
}

.mh-accordion .ui-accordion-header:not(.ui-accordion-header-active) .fa-minus {
  display: none;
}

/* Agent */
.mh-agent {
  background: #f2f2f2;
  margin-bottom: 24px;
}

.mh-agent:after {
  clear: both;
  content: "";
  display: table;
}

.mh-agent__thumbnail {
  position: relative;
  padding-bottom: 100%;
  margin-bottom: 12px;
  position: relative;
  display: block;
}

.mh-agent__thumbnail:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-agent__thumbnail:hover:after {
    opacity: 0.3;
  }
}

.mh-agent__thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mh-agent__content {
  position: relative;
  padding: 0 12px;
}

.mh-agent__content:after {
  clear: both;
  content: "";
  display: table;
}

.mh-agent__heading {
  font-weight: 700;
  margin-bottom: 12px;
}

.mh-agent__text {
  margin-bottom: 18px;
}

.mh-agent__social-wrapper {
  height: 48px;
  float: left;
}

.mh-agent__social {
  position: absolute;
  left: 12px;
  bottom: 12px;
  line-height: 36px;
}

.mh-agent__social a {
  margin-right: 12px;
  color: #666666;
}

@media (min-width: 1025px) {
  .mh-agent__social a:hover {
    color: #222;
  }
}

.mh-agent__button-wrapper {
  height: 48px;
  float: left;
}

.mh-agent__button {
  position: absolute;
  bottom: 12px;
  right: 12px;
  text-align: right;
}

.mh-agent--dark {
  background: #333;
  color: #fff;
}

.mh-agent--dark a {
  color: #fff;
}

@media (min-width: 1025px) {
  .mh-agent--dark a:hover {
    color: #fff;
  }
}

.mh-agent--white {
  background: #fff;
}

/* Author */
.mh-author {
  background-color: #f2f2f2;
  margin-bottom: 24px;
  padding: 24px 18px;
  text-align: center;
}

.mh-author:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-author {
    padding: 36px 18px;
    position: relative;
    text-align: left;
  }
}

.mh-author__avatar {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-author__avatar {
    position: absolute;
    top: 0;
    left: 0;
    margin-bottom: 24px;
  }
}

.mh-author__avatar > img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .mh-author__content {
    padding-left: 150px;
    min-height: 125px;
    display: table;
    width: 100%;
  }

  .mh-author__content:after {
    clear: both;
    content: "";
    display: table;
  }
}

.mh-author__content p:last-child {
  margin-bottom: 0;
}

.mh-author__content__inner {
  display: table-cell;
  vertical-align: middle;
}

.mh-author__label {
  font-style: italic;
  color: #4d4d4d;
}

.mh-author__name {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
}

.mh-blockquote {
  background: #f9f9f9;
  border-left: 5px solid #009fe3;
  padding: 12px;
  margin-bottom: 24px;
}

.mh-blockquote p:last-of-type {
  margin-bottom: 0;
}

.mh-blockquote footer {
  margin-top: 6px;
}

/* Box */
.mh-box__img-wrapper {
  overflow: hidden;
  display: block;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}

.mh-box__img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  max-width: none;
  min-height: 100%;
  min-width: 100%;
  transform: scale(1.2);
  -webkit-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mh-box {
  display: block;
  position: relative;
  margin-bottom: 24px;
}

.mh-box:after {
  clear: both;
  content: "";
  display: table;
}

.mh-box:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (min-width: 1025px) {
  .mh-box:hover img {
    transform: scale(1);
  }
}

.mh-box__middle {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -14px;
  width: 100%;
  z-index: 3;
}

.mh-box__title {
  font-size: 24px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Caption */
.mh-caption {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.mh-caption__inner {
  padding: 6px 12px;
  margin: 12px 0;
  font-family: Play, Arial, Helvetica, sans-serif;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 14px;
  font-weight: 700;
  background: #009fe3;
  color: #fff;
  width: auto;
  border-radius: 0;
}

/* Clients */
.mh-clients--image-filter img {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (min-width: 1025px) {
  .mh-clients--image-filter img:hover {
    filter: none;
    -webkit-filter: grayscale(0%);
    -moz-filter: grayscale(0%);
    filter: grayscale(0%);
  }
}

.mh-client {
  padding-bottom: 24px;
}

.mh-client img {
  padding-left: 10%;
  padding-right: 10%;
}

/* Comments */
.mh-comments {
  margin-bottom: 24px;
}

.mh-comments:after {
  clear: both;
  content: "";
  display: table;
}

.mh-comments textarea {
  height: 140px;
  margin-bottom: 0;
}

.mh-comments .mh-post-single__section__heading {
  margin-bottom: 0;
}

.mh-comment {
  padding-top: 24px;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  float: left;
  width: 100%;
}

.mh-comment:after {
  clear: both;
  content: "";
  display: table;
}

.mh-comment .mh-comment {
  padding-left: 24px;
  border-top: 1px solid #f0f0f0;
  padding-top: 36px;
}

.mh-comment .mh-comment .mh-comment__avatar > img {
  margin-left: 24px;
}

@media (min-width: 768px) {
  .mh-comment .mh-comment {
    padding-left: 48px;
  }

  .mh-comment .mh-comment .mh-comment__avatar > img {
    margin-left: 48px;
  }

  .mh-comment .mh-comment .mh-comment__avatar {
    top: 36px;
  }
}

.mh-comment .mh-comment:last-child {
  margin-bottom: 0;
}

.mh-comment .mh-comment:last-child .mh-comment__content {
  padding-bottom: 0;
}

.mh-comment:last-child {
  border-bottom: 0;
}

.mh-comment__avatar {
  margin-bottom: 12px;
}

.mh-comment__avatar > img {
  border-radius: 50%;
}

@media (min-width: 768px) {
  .mh-comment__avatar {
    margin-bottom: 24px;
    position: absolute;
    top: 24px;
    left: 0;
  }
}

.mh-comment__content {
  padding-bottom: 12px;
  display: inline-block;
  float: left;
  margin-bottom: 12px;
}

.mh-comment__content:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-comment__content {
    padding-bottom: 24px;
    padding-left: 90px;
  }
}

.mh-comment__author {
  margin-bottom: 0px;
  font-size: 24px;
  font-weight: 400;
}

.mh-comment__date {
  font-size: 13px;
  padding: 6px 0;
  font-style: italic;
  color: #666666;
}

.mh-comment__text:after {
  clear: both;
  content: "";
  display: table;
}

.mh-comment-awaiting-moderation {
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 24px;
  font-size: 24px;
  display: block;
  float: left;
  width: 100%;
  font-weight: 400;
  border-left: 7px solid #4d4d4d;
  color: #333;
  background: rgba(34, 34, 34, 0.05);
}

.comment-edit-link {
  margin-left: 12px;
  font-size: 13px;
  color: #666666;
  font-style: normal;
}

.comment-edit-link:hover {
  color: #009fe3;
}

.comment-edit-link i {
  margin-right: 3px;
}

.comment-reply-link {
  font-size: 13px;
  line-height: 13px;
  float: left;
  color: #666666;
  text-transform: uppercase;
}

.comment-reply-link:after {
  clear: both;
  content: "";
  display: table;
}

.comment-reply-link i {
  margin-left: 6px;
}

.comment-reply-link:hover {
  color: #009fe3;
}

.form-submit {
  text-align: right;
  margin-bottom: 0;
}

.form-submit input[type="submit"] {
  width: auto;
}

.comments-logged {
  font-size: 13px;
}

.comments-logged a {
  color: #222;
  font-weight: 400;
}

.comments-fields-wrapper {
  margin-bottom: 15px;
  overflow: hidden;
}

.comments-fields-wrapper input {
  text-align: left;
  font-style: normal;
}

@media (min-width: 1024px) {
  .comments-fields-wrapper input {
    margin-bottom: 0;
  }
}

.comments-textarea-wrapper {
  margin-bottom: 12px;
  overflow: hidden;
}

.comments-textarea-wrapper:after {
  clear: both;
  content: "";
  display: table;
}

.comments-textarea-wrapper textarea {
  float: left;
}

.comment-respond {
  float: left;
  width: 100%;
  margin-top: 24px;
}

.comment-edit-link {
  margin-right: 24px;
}

.comments-textarea-wrapper textarea {
  text-align: left !important;
  font-style: normal;
}

.comment-reply-title {
  font-size: 21px;
  font-weight: 700;
  text-align: left;
  line-height: 30px;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 12px;
}

.comment-reply-title:after {
  clear: both;
  content: "";
  display: table;
}

#cancel-comment-reply-link {
  position: absolute;
  right: 0;
  display: inline-block;
  background: transparent;
  border: 0;
  background-image: url("assets/images/close.png");
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
  font-size: 0;
  color: transparent;
}

/* Compare */
.mh-compare {
  position: fixed;
  bottom: -2px;
  left: 0;
  right: 0;
  border-top: 4px solid #009fe3;
  z-index: 203000;
  height: 75px;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(34, 34, 34, 0.5);
}

.mh-compare .owl-carousel {
  margin-bottom: 0 -12px 24px -12px;
  padding-bottom: 24px;
}

.mh-compare .owl-item .mh-compare__close-button {
  position: absolute;
  top: 9px;
  right: 9px;
  background: transparent;
  border: 0;
  background-image: url("assets/images/close.png");
  background-size: 30px 30px;
  width: 30px;
  height: 30px;
}

.mh-compare .mh-estate-vertical__primary {
  margin-bottom: 24px;
  font-size: 16px;
}

.mh-compare .mh-estate-vertical__heading {
  margin-bottom: 18px;
  text-align: center;
}

.mh-compare .owl-next-prev {
  float: right;
}

@media (min-width: 768px) {
  .mh-compare .owl-next-prev {
    float: none;
  }
}

.mh-compare__inner {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
}

.mh-compare--open {
  top: -2px;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
}

.mh-compare--open .mh-compare__inner {
  box-shadow: none;
  border: none;
}

.mh-compare__column {
  position: relative;
  background: #f2f2f2;
  padding-bottom: 20px;
}

.mh-compare__column:after {
  clear: both;
  content: "";
  display: table;
}

.mh-compare__column .mh-thumbnail {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}

.mh-compare__column .mh-thumbnail .mh-thumbnail__inner:after {
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mh-compare__column .mh-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
}

.mh-compare__column .mdl-button {
  min-width: 160px;
}

.mh-compare__column__content__top:after {
  clear: both;
  content: "";
  display: table;
}

.mh-compare__column__content {
  padding: 0 18px;
}

.mh-compare__thumbnail-wrapper {
  position: relative;
  display: block;
  margin-bottom: 24px;
}

.mh-compare__thumbnail-wrapper:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-compare__thumbnail-wrapper:hover:after {
    opacity: 0.3;
  }
}

.mh-compare__heading:after {
  clear: both;
  content: "";
  display: table;
}

.mh-compare__title {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}

.mh-compare__title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

@media (min-width: 768px) {
  .mh-compare__title {
    text-align: center;
  }
}

.mh-compare__address {
  color: #808080;
  overflow: hidden;
  margin-bottom: 12px;
  font-style: italic;
}

@media (min-width: 768px) {
  .mh-compare__address {
    text-align: center;
    padding: 0 24px;
  }
}

.mh-compare__description {
  margin-bottom: 24px;
}

.mh-compare__date {
  text-align: right;
  padding-bottom: 6px;
  margin-bottom: 18px;
  border-bottom: 1px solid #cccccc;
  color: #4d4d4d;
  font-style: italic;
}

.mh-compare__price {
  display: block;
  background: #009fe3;
  text-align: center;
  color: #fff;
  line-height: 36px;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-compare__heading__text {
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.mh-compare__heading__text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.mh-compare__feature-list {
  margin: 0 0 12px 0;
  padding: 0;
}

.mh-compare__feature-list li {
  display: inline-block;
  width: 100%;
  padding: 3px 0;
}

.mh-compare__feature-list li a:hover {
  color: #009fe3;
}

.mh-compare__container {
  padding: 18px 0;
  text-align: left;
}

.mh-compare__container button {
  margin-right: 0px;
}

@media (max-width: 360px) {
  .mh-compare__container .mdl-button {
    padding: 0 3px;
  }
}

.mh-compare__estate-column {
  position: relative;
  padding: 0;
}

.mh-compare__estate-column img {
  max-width: 100%;
}

.mh-compare__counter strong {
  font-style: normal;
  font-weight: 700;
  min-width: 21px;
  text-align: center;
  display: inline-block;
}

@media (min-width: 1024px) {
  .owl-carousel--columns_1 {
    max-width: 33.33%;
  }
}

@media (min-width: 1024px) {
  .owl-carousel--columns_2 {
    max-width: 66.66%;
  }
}

.mh-compare__estate-column .mh-estate-grid {
  border-bottom: 0 !important;
}

.mh-compare__button-details {
  text-align: center;
}

.mh-compare__list {
  margin-bottom: 24px;
}

.mh-compare__list__element {
  margin-bottom: 6px;
}

.mh-compare__list__element strong {
  font-style: normal;
  font-weight: 700;
  margin-right: 3px;
}

@media (min-width: 1025px) {
  .mh-compare__list__element a:hover {
    color: #009fe3;
  }

  .mh-compare__list__element a:hover i {
    color: #009fe3;
  }
}

.mh-compare__list__element a i {
  margin-left: 1px;
  font-size: 13px !important;
}

.owl-carousel--compare {
  cursor: initial !important;
}

.mh-compare__container__text {
  display: inline-block;
  line-height: 36px;
  float: left;
  font-size: 13px;
  text-transform: uppercase;
}

.mh-compare__container__text strong {
  display: inline-block;
  margin-left: 3px;
  margin-right: 6px;
}

@media (min-width: 360px) {
  .mh-compare__container__text strong {
    margin-right: 16px;
  }
}

/* Estate */
.mh-estate__slider {
  margin-bottom: 12px;
  overflow: hidden;
  min-height: 340px;
}

@media (min-width: 768px) {
  .mh-estate__slider {
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .mh-estate__slider {
    min-height: 668px;
  }
}

.mh-estate__slider__content {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 60px;
}

.mh-estate__slider__content:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-estate__slider__content {
    position: absolute;
    font-size: 21px;
    bottom: 48px;
    margin: 0 auto;
    left: 0;
    right: 0;
    max-width: 600px;
    height: 60px;
  }
}

.mh-estate__slider__phone {
  background: #f0f0f0;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .mh-estate__slider__phone {
    width: 250px;
    display: inline-block;
    float: left;
    height: 60px;
  }

  .mh-estate__slider__phone i {
    margin-right: 9px;
  }
}

.mh-estate__slider__price {
  background: #009fe3;
  color: #fff;
}

@media (min-width: 768px) {
  .mh-estate__slider__price {
    height: 60px;
    font-weight: 400;
    display: inline-block;
    float: left;
    width: 250px;
  }
}

.mh-estate__main-image {
  margin-bottom: 12px;
  overflow: hidden;
}

.mh-estate__main-image img {
  width: 100%;
}

@media (min-width: 768px) {
  .mh-estate__main-image {
    margin-bottom: 24px;
  }
}

.mh-estate__list {
  margin-bottom: 24px;
}

.mh-estate__list:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate__list__inner {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

@media (min-width: 768px) {
  .mh-estate__list__inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
  }
}

.mh-estate__list__element {
  position: relative;
  width: 100%;
  margin-bottom: 3px;
}

.mh-estate__list__element strong {
  font-style: normal;
  font-weight: 700;
  margin-right: 6px;
}

@media (min-width: 1025px) {
  .mh-estate__list__element a:hover {
    color: #009fe3;
  }

  .mh-estate__list__element a:hover i {
    color: #009fe3;
  }
}

.mh-estate__list__element a i {
  margin-left: 1px;
  font-size: 13px !important;
}

@media (min-width: 768px) {
  .mh-estate__list__element {
    padding: 0 12px 3px 12px;
    width: 50%;
  }
}

.mh-estate__list__element.mh-estate__list__element--full-width {
  width: 100% !important;
}

.mh-estate__list__element--dot {
  padding-left: 12px;
}

.mh-estate__list__element--dot:before {
  content: "";
  width: 5px;
  height: 5px;
  background: #222;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 0px;
}

@media (min-width: 768px) {
  .mh-estate__list__element--dot {
    width: 33.3%;
    padding: 0 12px 3px 30px;
  }

  .mh-estate__list__element--dot:before {
    left: 16px;
  }
}

.mh-estate__details-left {
  margin-bottom: 12px;
  position: absolute;
  top: 48px;
  left: 12px;
  z-index: 2;
  height: 72px;
  text-align: left;
}

.mh-estate__details {
  margin-bottom: 12px;
  text-align: left;
  font-size: 24px;
}

.mh-estate__details > div {
  padding: 12px 12px;
  text-align: left;
  position: relative;
}

.mh-estate__details > div:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate__details > div a {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 12px;
  width: 100%;
  line-height: 48px;
  color: #4d4d4d;
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -ms-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}

.mh-estate__details > div a:hover {
  color: #009fe3;
}

.mh-estate__details > div i {
  margin-right: 6px;
}

@media (min-width: 768px) {
  .mh-estate__details {
    margin-bottom: 24px;
  }
}

.mh-estate__details__price {
  font-size: 21px;
  font-family: Play, Arial, Helvetica, sans-serif;
  background: #009fe3;
  color: #fff;
}

.mh-estate__details__map {
  background: #f5f5f5;
  color: #4d4d4d;
  font-size: 13px;
  height: 48px;
}

.mh-estate__details__map:not(:last-of-type) {
  border-bottom: 1px solid #c3c3c5;
}

.mh-estate__details__phone {
  background: #f5f5f5;
  color: #4d4d4d;
  font-size: 13px;
  height: 48px;
}

.mh-estate__section {
  padding: 15px 18px 0 18px;
  background: #f4f4f4;
  margin-bottom: 12px;
  overflow: hidden;
}

.mh-estate__section:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-estate__section {
    padding: 18px 24px 0 24px;
    margin-bottom: 24px;
  }
}

.mh-estate__section__heading {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.mh-estate__section__heading:after {
  content: "";
  height: 2px;
  width: 100%;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .mh-estate__section__heading {
    font-size: 21px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }
}

.mh-estate__estate-info {
  font-size: 13px;
  margin-top: 24px;
  margin-bottom: 24px;
  padding-left: 2px;
}

.mh-estate__estate-info ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: #666666 !important;
}

.mh-estate__estate-info ul span {
  font-style: italic;
  margin-right: 5px;
}

.mh-estate__estate-info ul li {
  font-style: italic !important;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .mh-estate__estate-info {
    margin-bottom: 48px;
  }

  .mh-estate__estate-info ul {
    display: flex;
    justify-content: space-between;
  }
}

.mh-estate__agent {
  margin-bottom: 48px;
}

.mh-estate__agent img {
  width: 100%;
}

.mh-estate__agent__phone {
  margin-bottom: 12px;
  color: #4d4d4d;
  font-size: 14px;
}

.mh-estate__agent__phone i {
  margin-right: 9px;
}

.mh-estate__agent__email {
  margin-bottom: 12px;
  font-size: 14px;
}

.mh-estate__agent__email a {
  color: #4d4d4d;
}

.mh-estate__agent__email a:hover {
  color: #222;
}

.mh-estate__agent__email i {
  margin-right: 9px;
}

.mh-estate__agent__social-icons {
  margin-bottom: 16px;
}

.mh-estate__agent__social-icons a {
  color: #666666;
  margin-right: 6px;
  font-size: 14px;
}

.mh-estate__agent__social-icons a:hover {
  color: #222;
}

.mh-estate__agent__content {
  max-width: 480px;
  margin: 0 auto;
}

.mh-estate__agent__content a:hover {
  color: #009fe3;
}

.mh-estate__plan-thumbnail-wrapper {
  position: relative;
  display: block;
  padding-bottom: 62.5%;
}

.mh-estate__plan-thumbnail-wrapper:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-estate__plan-thumbnail-wrapper:hover:after {
    opacity: 0.3;
  }
}

.mh-estate__plan-thumbnail-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.mh-estate__agent__thumbnail-wrapper {
  position: relative;
  display: block;
  margin-bottom: 12px;
}

.mh-estate__agent__thumbnail-wrapper:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-estate__agent__thumbnail-wrapper:hover:after {
    opacity: 0.3;
  }
}

.mh-estate__huge-image {
  overflow: hidden;
  position: relative;
  height: 350px;
}

@media (min-width: 1024px) {
  .mh-estate__huge-image {
    height: 500px;
  }
}

@media (min-width: 1200px) {
  .mh-estate__huge-image {
    height: 600px;
  }
}

.mh-estate__huge-image > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
}

.mh-estate__huge-image__single {
  height: 100%;
}

.mh-estate__huge-no-image {
  overflow: hidden;
  position: relative;
  height: 200px;
  background: #4d4d4d;
}

.mh-estate__no-sidebar {
  margin: 0 auto;
  max-width: 1024px;
}

.mh-estate__no-sidebar .mh-display-mobile {
  display: block !important;
}

@media (min-width: 768px) {
  .mh-estate__no-sidebar .mh-estate__details > div,
  .mh-estate__no-sidebar .mh-estate__details > div a {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Estate horizontal  */
/* Important - MyHome use only vertical grid on mobile to deliver consistent user experience */
.mh-estate-horizontal {
  background: #f2f2f2;
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
}

.mh-estate-horizontal:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-horizontal .mh-thumbnail {
  margin-bottom: 0;
}

.mh-estate-horizontal__inner {
  display: flex;
  flex-wrap: wrap;
}

.mh-estate-horizontal__left {
  width: 40%;
  float: left;
  display: flex;
  flex-direction: column;
}

.mh-estate-horizontal__left .mh-thumbnail {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}

.mh-estate-horizontal__left .mh-thumbnail .mh-thumbnail__inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.mh-estate-horizontal__right {
  width: 60%;
  float: left;
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
}

.mh-estate-horizontal__right__content {
  height: 100%;
  position: relative;
}

.mh-estate-horizontal__excerpt {
  margin-bottom: 12px;
}

.mh-estate-horizontal__heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-estate-horizontal__subheading {
  color: #222;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 12px;
  font-family: Lato, Arial, Helvetica, sans-serif;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mh-estate-horizontal__date {
  display: block;
  line-height: 36px;
  font-size: 11px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.mh-estate-horizontal__date:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-horizontal__buttons {
  text-align: right;
}

.mh-estate-horizontal__buttons__single {
  display: inline-block;
  width: auto;
  max-width: 50%;
  white-space: nowrap;
  font-size: 13px;
}

@media (min-width: 768px) {
  .mh-estate-horizontal__buttons__single .mdl-button {
    min-width: 125px !important;
  }
}

.mh-estate-horizontal__buttons__single .mdl-button__icon-left,
.mh-estate-horizontal__buttons__single .mdl-button__icon-right {
  display: inline;
}

.mh-estate-horizontal__buttons__single a,
.mh-estate-horizontal__buttons__single button {
  width: 100%;
}

.mh-estate-horizontal__buttons__single:nth-last-child(2) {
  padding-right: 6px;
  float: none;
}

.mh-estate-horizontal__bottom {
  text-align: right;
  height: 36px;
}

.mh-estate-horizontal__bottom:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-horizontal__bottom__inner {
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
}

.mh-estate-horizontal__bottom__inner:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-horizontal__primary {
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #009fe3;
}

/* Estate vertical */
.mh-estate-vertical {
  position: relative;
  background: #f2f2f2;
  padding-bottom: 12px;
}

.mh-estate-vertical:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-vertical .mh-thumbnail {
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}

.mh-estate-vertical .mh-thumbnail .mh-thumbnail__inner:after {
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mh-estate-vertical .mh-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
}

@media (min-width: 1025px) {
  .mh-estate-vertical .mh-thumbnail:hover .mh-thumbnail__inner:after {
    background: #000;
    opacity: 0.5;
  }

  .mh-estate-vertical .mh-thumbnail:hover .mh-estate-vertical__text {
    top: 50%;
    margin-top: -34px;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-out, bottom 0.2s ease-out;
    -moz-transition: opacity 0.3s ease-out, bottom 0.2s ease-out;
    -ms-transition: opacity 0.3s ease-out, bottom 0.2s ease-out;
    -o-transition: opacity 0.3s ease-out, bottom 0.2s ease-out;
    transition: opacity 0.3s ease-out, bottom 0.2s ease-out;
  }

  .mh-estate-vertical .mh-thumbnail:hover .mh-estate-vertical__text__inner {
    display: table-cell;
    vertical-align: middle;
  }
}

.mh-estate-vertical--white {
  background: #fff;
}

.mh-estate-vertical--dark {
  background: #333;
  color: #fff;
}

.mh-estate-vertical--dark .mh-estate-vertical__heading a {
  color: #fff;
}

.mh-estate-vertical--dark .myhome-compare .mdl-button {
  color: #fff;
}

.mh-estate-vertical__content {
  padding: 0 12px;
}

.mh-estate-vertical__content:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-vertical__heading {
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 700;
}

.mh-estate-vertical__subheading {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 12px;
  font-family: Lato, Arial, Helvetica, sans-serif;
}

.mh-estate-vertical__date {
  display: block;
  line-height: 36px;
  font-size: 11px;
  position: absolute;
  bottom: 12px;
  left: 12px;
}

.mh-estate-vertical__date:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-vertical__buttons-wrapper {
  height: 48px;
}

.mh-estate-vertical__buttons {
  position: absolute;
  bottom: 12px;
  right: 12px;
  text-align: left;
}

.mh-estate-vertical__buttons__single {
  display: inline-block;
  width: auto;
  max-width: 50%;
  white-space: nowrap;
  font-size: 13px;
}

.mh-estate-vertical__buttons__single .mdl-button {
  min-width: 95px !important;
}

@media (min-width: 768px) {
  .mh-estate-vertical__buttons__single .mdl-button {
    min-width: 125px !important;
  }
}

.mh-estate-vertical__buttons__single .mdl-button__icon-left,
.mh-estate-vertical__buttons__single .mdl-button__icon-right {
  display: none;
}

@media (min-width: 768px) {
  .mh-estate-vertical__buttons__single .mdl-button__icon-left,
  .mh-estate-vertical__buttons__single .mdl-button__icon-right {
    display: inline;
  }
}

.mh-estate-vertical__buttons__single a,
.mh-estate-vertical__buttons__single button {
  width: 100%;
}

.mh-estate-vertical__buttons__single:nth-last-child(2) {
  padding-right: 6px;
  float: none;
}

.mh-estate-vertical__bottom {
  float: right;
  min-height: 36px;
}

.mh-estate-vertical__bottom__inner {
  width: 100%;
  bottom: 0;
  line-height: 36px;
  left: 0;
}

.mh-estate-vertical__bottom__inner:after {
  clear: both;
  content: "";
  display: table;
}

.mh-estate-vertical__text {
  display: table;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  min-height: 76px;
  padding: 0 24px;
  opacity: 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-out;
}

.mh-estate-vertical__text .mh-estate-vertical__inner {
  display: table-cell;
  vertical-align: middle;
}

.mh-estate-vertical__primary {
  font-family: Lato, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #009fe3;
  font-weight: 700;
  margin-bottom: 6px;
}

/* Estate Vertical - OWL Carousel */
.owl-item .mh-estate-vertical {
  margin-bottom: 24px;
}

/* Filters */
.mh-filters {
  display: none;
}

@media (min-width: 768px) {
  .mh-filters {
    display: block;
    background: #f2f2f2;
    margin-bottom: 12px;
    padding: 0 12px;
    color: #222;
  }

  .mh-filters:after {
    clear: both;
    content: "";
    display: table;
  }
}

.mh-filters__sort {
  display: inline-block;
  float: left;
  line-height: 36px;
  font-size: 13px;
}

.mh-filters__sort i {
  margin-right: 3px;
}

@media (min-width: 1200px) {
  .mh-filters__sort {
    margin-right: 12px;
  }
}

.mh-filters__left {
  float: left;
  font-weight: 400;
}

.mh-filters__right {
  float: right;
  display: block;
  text-align: right;
}

.mh-filters__right button {
  outline: 0px;
  position: relative;
  line-height: 36px;
  height: 36px;
  font-size: 16px;
  color: #999999;
  font-weight: 400;
  background: transparent;
  border: 0;
  padding: 2px 0 0 0;
  margin-right: 12px;
}

.mh-filters__right button:last-child {
  margin-right: 0;
}

.mh-filters__buttons {
  float: left;
  display: inline-block;
}

.mh-filters__buttons button {
  float: left;
}

.mh-filters__button {
  padding: 2px 7px;
  position: relative;
  background: transparent;
  font-weight: 400;
  margin: 3px 9px 3px 0;
  color: #222;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 24px;
  border-radius: 0px;
  border: 1px solid transparent;
}

@media (min-width: 1025px) {
  .mh-filters__button:hover {
    color: #222;
  }
}

@media (min-width: 1200px) {
  .mh-filters__button {
    padding: 3px 9px;
  }
}

.mh-filters__button.mh-filters__button--active {
  color: #009fe3;
}

@media (min-width: 1025px) {
  .mh-filters__button.mh-filters__button--active:hover {
    color: #009fe3;
  }
}

button.mh-filters__right__button--active {
  color: #009fe3;
}

/* Form container */
.mh-form-container {
  max-width: 480px;
  margin: 0 auto;
}

.mh-form-container input,
.mh-form-container textarea {
  text-decoration: none;
}

.mh-form-container input::-webkit-input-placeholder,
.mh-form-container textarea::-webkit-input-placeholder {
  color: #666666;
}

.mh-form-container input::-moz-placeholder,
.mh-form-container textarea::-moz-placeholder {
  color: #666666;
}

.mh-form-container input:-moz-placeholder,
.mh-form-container textarea:-moz-placeholder {
  color: #666666;
}

.mh-form-container input:-ms-input-placeholder,
.mh-form-container textarea:-ms-input-placeholder {
  color: #666666;
}

.mh-form-container input {
  margin-bottom: 6px;
  text-align: left;
}

.mh-form-container textarea {
  text-align: left;
}

.mh-form-container__textarea {
  height: 233px;
  margin-bottom: 0;
}

.mh-form-container__submit {
  text-align: right;
  margin-top: 4px;
  margin-bottom: 18px;
}

.mh-form-container__submit:after {
  clear: both;
  content: "";
  display: table;
}

.mh-form-container__submit input[type="submit"] {
  width: auto;
  float: right;
}

.mh-form-container__submit .mdl-button {
  width: 144px;
}

.mh-form-container__info {
  border-left: 5px solid red;
  background: rgba(255, 0, 0, 0.1);
  padding: 6px 12px;
  margin-bottom: 3px;
  font-size: 14px;
}

.mh-form-container__sending,
.mh-form-container__error,
.mh-form-container__success {
  margin-bottom: 24px;
  background: #f0f0f0;
  padding: 6px 12px;
}

.mh-form-container__label {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 700;
}

.mh-form-container__remember-me {
  margin-bottom: 12px;
}

.mh-form-container__remember-me .mdl-checkbox__label {
  top: -2px;
  left: -3px;
  position: relative;
  text-transform: none;
}

.mh-form-container__reset {
  cursor: pointer;
  padding-bottom: 6px;
  margin-top: -6px;
  font-size: 14px;
}

.mh-form-container__reset:hover {
  color: #009fe3;
}

/* Heading */
.mh-heading-wrapper {
  position: relative;
  display: block;
  text-align: center;
}

.mh-heading-wrapper:after {
  clear: both;
  content: "";
  display: table;
}

.mh-heading-wrapper h1,
.mh-heading-wrapper h2,
.mh-heading-wrapper h3,
.mh-heading-wrapper h4,
.mh-heading-wrapper h5,
.mh-heading-wrapper h6 {
  display: inline-block;
  text-align: center;
}

.mh-heading-wrapper--left {
  text-align: left;
}

.mh-heading-wrapper--left h1,
.mh-heading-wrapper--left h2,
.mh-heading-wrapper--left h3,
.mh-heading-wrapper--left h4,
.mh-heading-wrapper--left h5,
.mh-heading-wrapper--left h6 {
  text-align: right;
}

.mh-heading-wrapper--left h1:after,
.mh-heading-wrapper--left h2:after,
.mh-heading-wrapper--left h3:after,
.mh-heading-wrapper--left h4:after,
.mh-heading-wrapper--left h5:after,
.mh-heading-wrapper--left h6:after {
  margin-left: 0;
}

.mh-heading-wrapper--right {
  text-align: right;
}

.mh-heading-wrapper--right h1,
.mh-heading-wrapper--right h2,
.mh-heading-wrapper--right h3,
.mh-heading-wrapper--right h4,
.mh-heading-wrapper--right h5,
.mh-heading-wrapper--right h6 {
  text-align: right;
}

.mh-heading-wrapper--right h1:after,
.mh-heading-wrapper--right h2:after,
.mh-heading-wrapper--right h3:after,
.mh-heading-wrapper--right h4:after,
.mh-heading-wrapper--right h5:after,
.mh-heading-wrapper--right h6:after {
  left: auto;
  margin-right: 0;
}

/* Heading */
.mh-heading--top-separator {
  font-wegiht: 400;
  text-transform: uppercase;
  text-align: center;
  padding-top: 12px;
  margin-bottom: 24px;
}

.mh-heading--top-separator:after {
  content: "";
  display: inline;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 90px;
  width: 50%;
  margin: 0 auto;
  height: 2px;
  background: #009fe3;
}

.mh-heading--bottom-separator {
  position: relative;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 12px;
  margin-bottom: 36px;
}

.mh-heading--bottom-separator:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 90px;
  width: 50%;
  margin: 0 auto;
  height: 2px;
  background: #009fe3;
}

/* Subheading */
.mh-subheading {
  max-width: 900px;
  margin: -24px auto 36px auto;
}

/* Heading background wrapper */
.mh-heading-background-wrapper {
  position: relative;
  padding: 36px;
  overflow: hidden;
  font-size: 21px !important;
}

.mh-heading-background-wrapper * {
  z-index: 2;
}

.mh-heading-background-wrapper h1,
.mh-heading-background-wrapper h2,
.mh-heading-background-wrapper h3,
.mh-heading-background-wrapper h4,
.mh-heading-background-wrapper h5 {
  margin-bottom: 0;
}

.mh-heading-background-wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

@media (min-width: 768px) {
  .mh-heading-background-wrapper {
    padding: 48px;
  }
}

/* Icons */
.mh-icon-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
}

.mh-icon-container--round {
  position: absolute;
  top: 0;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  border-width: 2px;
  border-color: #ccc;
  border-style: solid;
}

.mh-icon-container--round i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mh-icon-container--rounded-rectangle {
  position: absolute;
  top: 0;
  text-align: center;
  border-radius: 15px;
  display: inline-block;
  border-width: 2px;
  border-color: #ccc;
  border-style: solid;
}

.mh-icon-container--rounded-rectangle i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.mh-icon-container--square {
  position: absolute;
  top: 0;
  text-align: center;
  border-radius: 0;
  display: inline-block;
  border-width: 2px;
  border-color: #ccc;
  border-style: solid;
}

.mh-icon-container--square i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@font-face {
  font-family: "Flaticon";
  src: url("../fonts/Flaticon.eot");
  src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Flaticon.woff") format("woff"),
    url("../fonts/Flaticon.ttf") format("truetype"),
    url("../fonts/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  @font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
}

.flaticon-air-conditioner:before {
  content: "\f100";
}

.flaticon-apartment:before {
  content: "\f101";
}

.flaticon-area:before {
  content: "\f102";
}

.flaticon-bath:before {
  content: "\f103";
}

.flaticon-bath-2:before {
  content: "\f104";
}

.flaticon-bathtub:before {
  content: "\f105";
}

.flaticon-bed:before {
  content: "\f106";
}

.flaticon-bulb:before {
  content: "\f107";
}

.flaticon-city:before {
  content: "\f108";
}

.flaticon-city-2:before {
  content: "\f109";
}

.flaticon-computer:before {
  content: "\f10a";
}

.flaticon-construction:before {
  content: "\f10b";
}

.flaticon-construction-2:before {
  content: "\f10c";
}

.flaticon-date:before {
  content: "\f10d";
}

.flaticon-dishwasher:before {
  content: "\f10e";
}

.flaticon-door:before {
  content: "\f10f";
}

.flaticon-fence:before {
  content: "\f110";
}

.flaticon-fireplace:before {
  content: "\f111";
}

.flaticon-full-size:before {
  content: "\f112";
}

.flaticon-furniture:before {
  content: "\f113";
}

.flaticon-garage:before {
  content: "\f114";
}

.flaticon-home:before {
  content: "\f115";
}

.flaticon-home-2:before {
  content: "\f116";
}

.flaticon-home-3:before {
  content: "\f117";
}

.flaticon-home-4:before {
  content: "\f118";
}

.flaticon-home-5:before {
  content: "\f119";
}

.flaticon-home-6:before {
  content: "\f11a";
}

.flaticon-house-plan:before {
  content: "\f11b";
}

.flaticon-house-plan-2:before {
  content: "\f11c";
}

.flaticon-interface:before {
  content: "\f11d";
}

.flaticon-layers:before {
  content: "\f11e";
}

.flaticon-lift:before {
  content: "\f11f";
}

.flaticon-location:before {
  content: "\f120";
}

.flaticon-location-2:before {
  content: "\f121";
}

.flaticon-mail:before {
  content: "\f122";
}

.flaticon-mail-2:before {
  content: "\f123";
}

.flaticon-map:before {
  content: "\f124";
}

.flaticon-medical:before {
  content: "\f125";
}

.flaticon-microwave:before {
  content: "\f126";
}

.flaticon-multimedia:before {
  content: "\f127";
}

.flaticon-office:before {
  content: "\f128";
}

.flaticon-office-2:before {
  content: "\f129";
}

.flaticon-owen:before {
  content: "\f12a";
}

.flaticon-parquet:before {
  content: "\f12b";
}

.flaticon-phone:before {
  content: "\f12c";
}

.flaticon-pin:before {
  content: "\f12d";
}

.flaticon-prize:before {
  content: "\f12e";
}

.flaticon-rent:before {
  content: "\f12f";
}

.flaticon-roof:before {
  content: "\f130";
}

.flaticon-school:before {
  content: "\f131";
}

.flaticon-school-2:before {
  content: "\f132";
}

.flaticon-search:before {
  content: "\f133";
}

.flaticon-shower:before {
  content: "\f134";
}

.flaticon-sofa:before {
  content: "\f135";
}

.flaticon-sofa-2:before {
  content: "\f136";
}

.flaticon-sold:before {
  content: "\f137";
}

.flaticon-stairs:before {
  content: "\f138";
}

.flaticon-swimming-pool:before {
  content: "\f139";
}

.flaticon-technology:before {
  content: "\f13a";
}

.flaticon-transport:before {
  content: "\f13b";
}

.flaticon-wall:before {
  content: "\f13c";
}

.flaticon-wardrobe:before {
  content: "\f13d";
}

.flaticon-wifi:before {
  content: "\f13e";
}

.flaticon-window:before {
  content: "\f13f";
}

/* Loader */
.mh-loader-wrapper {
  height: 144px;
}

@media (max-width: 1024px) {
  .mh-loader-wrapper.mh-loader--mobile-searchform {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    z-index: 999999999999;
  }

  .mh-loader-wrapper.mh-loader--mobile-searchform .mh-loader {
    top: 50%;
    left: 0;
    right: 0;
    margin: -2em auto 0 auto;
  }
}

.mh-loader-wrapper-map {
  background: rgba(255, 255, 255, 0.9);
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 48px;
  color: #009fe3;
}

.mh-loader-wrapper-map .mh-loader {
  position: absolute;
  margin-top: -2em;
  top: 50%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}

.mh-loader,
.mh-loader:before,
.mh-loader:after {
  background: #009fe3;
  -webkit-animation: mh-loader-animation 1s infinite ease-in-out;
  animation: mh-loader-animation 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.mh-loader {
  color: #009fe3;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.mh-loader:before,
.mh-loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.mh-loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.mh-loader:after {
  left: 1.5em;
}

@-webkit-keyframes mh-loader-animation {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes mh-loader-animation {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

/* Map */
.mh-map-wrapper {
  position: relative;
}

.mh-map-no-key {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  padding: 150px 15px;
  background: #f2f2f2;
}

#myhome-listing-map {
  position: relative;
  overflow: hidden;
}

.mh-map-height-tall {
  height: 450px;
}

@media (min-width: 1200px) {
  .mh-map-height-tall {
    height: 650px;
  }
}

.mh-map-height-tall + .mh-map-wrapper__noresults {
  height: 450px;
}

@media (min-width: 1200px) {
  .mh-map-height-tall + .mh-map-wrapper__noresults {
    height: 650px;
  }
}

.mh-map-placeholder--tall {
  height: 450px;
}

@media (min-width: 1200px) {
  .mh-map-placeholder--tall {
    height: 650px;
  }
}

.mh-map-height-standard {
  height: 450px;
}

@media (min-width: 1200px) {
  .mh-map-height-standard {
    height: 500px;
  }
}

.mh-map-height-standard + .mh-map-wrapper__noresults {
  height: 450px;
}

@media (min-width: 1200px) {
  .mh-map-height-standard + .mh-map-wrapper__noresults {
    height: 500px;
  }
}

.mh-map-placeholder--standard {
  height: 450px;
}

@media (min-width: 1200px) {
  .mh-map-placeholder--standard {
    height: 500px;
  }
}

.mh-map-wrapper__noresults {
  background: rgba(0, 0, 0, 0.9) !important;
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 48px;
  color: #009fe3;
}

.mh-map-wrapper__noresults__inner {
  display: table-cell;
  vertical-align: middle;
}

.mh-map-single-estate {
  height: 500px;
}

/* Map controls */
.mh-map-controls {
  margin: 12px 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  z-index: 3;
}

@media (min-width: 1024px) {
  .mh-map-controls {
    margin: 24px auto 0 auto;
  }
}

.mh-map-controls__inner {
  position: relative;
  box-sizing: content-box;
}

/* Map panel */
.mh-map-panel {
  width: auto;
  position: absolute;
  background: #fff;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  border: 2px solid #009fe3;
}

.mh-map-panel__element {
  display: inline-block;
  float: left;
}

.mh-map-panel__element button {
  background: transparent;
  width: 100%;
  color: #222;
  font-weight: 700;
  position: relative;
  font-size: 12px;
  height: 42px;
  border: 0;
  text-transform: uppercase;
  line-height: 24px;
  text-align: left;
  padding: 6px 12px;
}

.mh-map-panel__element button > span {
  display: none;
}

.mh-map-panel__element button .fa {
  font-weight: initial;
  padding: 0 6px;
}

@media (min-width: 768px) {
  .mh-map-panel__element button .fa {
    padding: 0;
  }

  .mh-map-panel__element button .fa.fa-expand {
    margin-right: 9px;
  }
}

@media (min-width: 768px) {
  .mh-map-panel__element button > span {
    display: inline-block;
  }

  .mh-map-panel__element button .fa.fa-street-view {
    margin-right: 9px;
  }

  .mh-map-panel__element button .fa.fa-angle-right {
    margin-left: 9px;
  }

  .mh-map-panel__element button .fa.fa-angle-left {
    margin-right: 9px;
  }
}

.mh-map-panel__element button:after {
  content: "";
  height: 40px;
  width: 1px;
  background: #f0f0f0;
  position: absolute;
  top: 5px;
  right: 0;
}

.mh-map-panel__element button:last-child:after {
  display: none;
}

.mh-map-panel__element button:hover {
  color: #fff;
  background: #009fe3;
}

@media (max-width: 1024px) {
  .mh-map-panel__element button:not(.mh-button--active):hover {
    background: transparent !important;
    color: #222 !important;
  }
}

.mh-map-panel .mh-map-panel__element button.mh-button--active {
  background: #009fe3;
  color: #fff;
}

.mh-map-panel .mh-map-panel__element button.mh-button--active:hover,
.mh-map-panel .mh-map-panel__element button.mh-button--active:active,
.mh-map-panel .mh-map-panel__element button.mh-button--active:focus {
  background: #009fe3;
  color: #fff;
}

@media (max-width: 1025px) {
  .mh-map-panel__element {
    display: inline-block;
    float: left;
  }
}

.mh-map-panel__element--reset {
  display: none;
}

@media (min-width: 768px) {
  .mh-map-panel__element--reset {
    display: initial;
  }
}

/* Map zoom */
.mh-map-zoom {
  color: #fff;
  text-align: center;
  top: 0;
  left: 0;
  width: 40px;
  position: absolute;
  z-index: 2;
  border: 2px solid #009fe3;
}

.mh-map-zoom:after {
  clear: both;
  content: "";
  display: table;
}

.mh-map-zoom__element {
  display: inline-block;
  float: left;
  background: #fff;
  color: #222;
}

.mh-map-zoom__element button {
  line-height: 36px;
  height: 36px;
  width: 36px;
  padding: 0;
  font-size: 12px;
  background: transparent;
  border: 0;
  outline: 0;
}

.mh-map-zoom__element button i {
  font-size: 9px;
  line-height: 36px;
}

.mh-map-zoom__element button:hover {
  color: #fff;
  background: #009fe3;
}

@media (max-width: 1024px) {
  .mh-map-zoom__element button:hover {
    background: transparent !important;
    color: #222 !important;
  }
}

/* Map Infobox */
.infoBox > img {
  float: right;
  width: 30px;
  top: 18px;
  right: 9px;
  z-index: 1;
}

.mh-map-infobox {
  background: #009fe3;
  padding: 12px 0 0 0;
  position: relative;
  font-family: Lato, Arial, Helvetica, sans-serif;
  margin-top: -24px;
  width: 100%;
  float: left;
}

.mh-map-infobox:after {
  clear: both;
  content: "";
  display: table;
}

.mh-map-infobox:after {
  display: block;
  content: "";
  position: absolute;
  bottom: -13px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-left: 14px solid transparent !important;
  border-right: 14px solid transparent !important;
  border-top: 14px solid #009fe3;
}

.mh-map-infobox .mh-map-infobox__img-wrapper {
  max-width: 100%;
  height: 160px;
  overflow: hidden;
  margin-top: -12px;
  position: relative;
  border: 2px solid #009fe3;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mh-map-infobox .mh-map-infobox__img-wrapper img {
  position: absolute;
  left: 0;
  display: block;
  max-width: 100%;
}

.mh-map-infobox .mh-map-infobox__name {
  font-size: 21px;
  margin: 9px 12px 12px;
  color: #fff;
  letter-spacing: 0;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .mh-map-infobox .mh-map-infobox__name:hover img {
    opacity: 0.4;
  }
}

.mh-map-infobox .mh-map-infobox__price {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: -6px 12px 12px 0;
  text-align: center;
}

.mh-map-infobox .mh-map-infobox__price:after {
  clear: both;
  content: "";
  display: table;
}

.mh-map-infobox .mh-map-infobox__buttons {
  text-align: center;
  height: 48px;
  padding: 0 12px;
}

.mh-map-pin {
  width: 70px;
  height: 38px;
  text-align: center;
  cursor: pointer;
}

.mh-map-pin i {
  position: relative;
  font-size: 38px;
  line-height: 38px;
  width: 70px;
  color: #009fe3;
  font-weight: 700;
}

.mh-map-pin.mh-map-pin--dark i {
  color: #666666;
}

.mh-map-wrapper--fullscreen {
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200000;
}

.mh-map-wrapper--fullscreen #map {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
}

/* Post Grid */
.mh-post-grid {
  margin-bottom: 12px;
  padding: 12px 0 24px 0;
  background: #f2f2f2;
  margin-bottom: 24px;
}

.mh-post-grid:after {
  clear: both;
  content: "";
  display: table;
}

.mh-post-grid.has-post-thumbnail {
  padding: 0 0 12px 0;
}

.mh-post-grid--white {
  background: #fff;
}

.mh-post-grid--dark {
  background: #333;
  color: #fff;
}

.mh-post-grid--dark .mh-post-grid__heading a {
  color: #fff;
}

.mh-post-grid__thumbnail {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  display: block;
  display: inline-block;
}

.mh-post-grid__thumbnail:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-post-grid__thumbnail:hover:after {
    opacity: 0.3;
  }
}

.mh-post-grid__thumbnail .mh-thumbnail__inner img {
  max-height: 100%;
}

.mh-post-grid__inner {
  position: relative;
  padding: 0 18px;
}

.mh-post-grid__heading {
  padding-top: 12px;
  margin-bottom: 12px;
}

.mh-post-grid__heading:after {
  clear: both;
  content: "";
  display: table;
}

.mh-post-grid__heading a {
  font-weight: 700;
}

.mh-post-grid__excerpt {
  margin-bottom: 12px;
}

.mh-post-grid__btn-wrapper {
  min-height: 48px;
}

.mh-post-grid__btn-wrapper a {
  position: absolute;
  bottom: 0;
  right: 18px;
}

.mh-post-grid__thumbnail
  .mh-thumbnail__inner:not(.mh-thumbnail__inner--horizontal):not(
    .mh-thumbnail__inner--square
  ):not(.mh-thumbnail__inner--vertical)
  m {
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
  display: block;
  padding-bottom: 62.5%;
}

.mh-post-grid__thumbnail
  .mh-thumbnail__inner:not(.mh-thumbnail__inner--horizontal):not(
    .mh-thumbnail__inner--square
  ):not(.mh-thumbnail__inner--vertical)
  m
  img {
  max-height: none;
  position: absolute;
  min-height: 100%;
  min-width: 100%;
  width: auto;
  max-width: none;
  height: auto;
}

.mh-post-grid__thumbnail .mh-thumbnail__inner--vertical,
.mh-post-grid__thumbnail .mh-thumbnail__inner--horizontal,
.mh-post-grid__thumbnail .mh-thumbnail__inner--square {
  padding-bottom: 0;
}

.mh-post-grid__thumbnail
  .mh-thumbnail__inner.mh-thumbnail__inner--vertical
  img {
  min-height: initial;
  min-width: initial;
  max-height: initial;
  max-width: initial;
  width: initial;
  height: initial;
  position: static;
}

.mh-post-grid--img-absolute {
  padding: 0 0 12px 0;
}

.mh-post-grid--img-absolute .mh-post-grid__thumbnail {
  display: block;
}

.mh-post-grid--img-absolute .mh-post-grid__thumbnail {
  padding-bottom: 62.5%;
  position: relative;
}

.mh-post-grid--img-absolute img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 100%;
  width: auto;
  min-width: 100%;
  height: auto;
  max-width: initial;
  max-height: initial;
}

/* Post single */
.mh-post-single__header {
  margin-bottom: 12px;
}

.mh-post-single__title {
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 24px;
}

@media (min-width: 768px) {
  .mh-post-single__title {
    font-size: 36px;
  }
}

.mh-post-single__main-image {
  display: block;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-post-single__main-image {
    margin-bottom: 24px;
  }
}

@media (min-width: 1025px) {
  .mh-post-single__content a:hover {
    text-decoration: underline;
  }
}

.mh-post-single__content img {
  max-width: 100%;
}

.mh-post-single__section__heading {
  font-size: 21px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.mh-post-single__section__heading:after {
  clear: both;
  content: "";
  display: table;
}

.mh-post-single__meta {
  font-size: 13px;
  margin: 0 0 12px 0;
  padding: 0;
  list-style-type: none;
}

@media (min-width: 768px) {
  .mh-post-single__meta {
    margin-bottom: 24px;
  }
}

.mh-post-single__meta a {
  line-height: 20px;
}

.mh-post-single__meta a:hover {
  color: #009fe3;
}

.mh-post-single__meta li {
  display: inline-block;
  position: relative;
  padding: 0 9px 0 0;
  margin-right: 9px;
  line-height: 24px;
}

.mh-post-single__meta li:after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  background: #ccc;
  height: 12px;
  width: 1px;
}

.mh-post-single__meta li:last-child:after {
  display: none;
}

@media (min-width: 768px) {
  .mh-post-single__meta li span {
    margin-right: 8px;
  }
}

.mh-post-single__pagination {
  border-top: 1px solid #c3c3c5;
  text-align: center;
  margin-bottom: 48px;
  padding-bottom: 24px;
  word-spacing: 6px;
}

.mh-post-single__pagination span {
  display: inline-block;
  height: 1px;
  width: 30px;
}

.mh-post-single__pagination a {
  color: #222;
}

@media (min-width: 1025px) {
  .mh-post-single__pagination a:hover {
    text-decoration: none;
  }
}

.mh-post-single__nav {
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  margin-bottom: 24px;
}

.mh-post-single__nav__prev,
.mh-post-single__nav__next {
  font-size: 16px;
}

.mh-post-single__nav__prev a,
.mh-post-single__nav__next a {
  font-style: italic;
  color: #666666;
  font-size: 16px;
}

.mh-post-single__nav__prev span,
.mh-post-single__nav__next span {
  color: #222;
  font-size: 21px;
  font-style: normal;
  text-transform: none;
  font-weight: 400;
  display: block;
}

.mh-post-single__nav__prev {
  position: relative;
  height: 100%;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (min-width: 768px) {
  .mh-post-single__nav__prev {
    padding-right: 24px;
  }

  .mh-post-single__nav__prev:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #009fe3;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}

@media (min-width: 768px) and (min-width: 1025px) {
  .mh-post-single__nav__prev:hover {
    padding-left: 24px;
    padding-right: 0;
  }

  .mh-post-single__nav__prev:hover:before {
    width: 16px;
  }
}

.mh-post-single__nav__next {
  margin-top: 24px;
  position: relative;
  height: 100%;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (min-width: 768px) {
  .mh-post-single__nav__next {
    text-align: right;
    margin-top: 0;
    padding-left: 24px;
  }

  .mh-post-single__nav__next:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #009fe3;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -ms-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
  }
}

@media (min-width: 768px) and (min-width: 1025px) {
  .mh-post-single__nav__next:hover {
    padding-left: 0;
    padding-right: 24px;
  }

  .mh-post-single__nav__next:hover:before {
    width: 16px;
  }
}

.mh-post-single__password {
  padding: 28px 18px 12px 18px;
  margin-bottom: 24px;
  background: #f2f2f2;
}

.mh-post-single__password form:after {
  clear: both;
  content: "";
  display: table;
}

.mh-post-single__password input {
  text-align: left;
  margin-bottom: 12px;
}

.mh-post-single__password strong {
  display: block;
  margin-bottom: -16px;
}

.mh-post-single__password p {
  margin: 0;
}

.mh-post-single-main-image {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-post-single-main-image {
    margin-bottom: 24px;
  }
}

.mh-post-single-main-image:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-post-single-main-image:hover:after {
    opacity: 0.3;
  }
}

.mh-post .post-content blockquote {
  margin-bottom: 12px;
  border-left: 3px solid #009fe3;
  background: #f1f1f1;
  padding: 12px;
}

.mh-post .post-content blockquote p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .mh-post .post-content blockquote {
    margin-bottom: 24px;
  }
}

.mh-post .post-content a:hover {
  color: #009fe3;
}

/* Search */
.mh-search-horizontal {
  position: relative;
  margin: 0 auto 12px auto;
  padding: 18px 12px;
  background: #f9f9f9;
  /* border-top: 5px solid #009fe3; */
}

@media (min-width: 768px) {
  .mh-search-horizontal {
    margin: 0 auto;
    padding: 24px 12px;
  }
}

.mh-search-horizontal .mdl-checkbox {
  width: auto;
  margin-right: 12px;
}

.mh-search-horizontal .mdl-checkbox__label {
  position: relative;
  left: -5px;
  top: -1px;
}

.mh-search-map-bottom .mh-search-horizontal {
  z-index: 3;
  margin-top: -48px !important;
  margin-bottom: 24px;
}

.mh-search-map-top {
  width: 100%;
  position: relative;
}

.mh-search-map-top .mh-search__buttons {
  display: none;
}

.mh-search-map-top .mh-map-controls {
  margin-top: 48px;
}

.mh-search-map-top > .mh-layout {
  margin: 24px auto -24px auto;
  left: 0;
  right: 0;
}

@media (min-width: 768px) {
  .mh-search-map-top .mh-search-horizontal {
    border-top: 0px solid #009fe3;
    border-bottom: 5px solid #009fe3;
    padding-bottom: 12px;
    padding-top: 24px;
    background: #fff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 4;
  }
}

.mh-search__heading-big {
  font-size: 24px;
  color: #009fe3;
  position: relative;
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.mh-search {
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mh-search.mh-search--open .mh-search__element {
  display: block !important;
}

@media (min-width: 768px) {
  .mh-search {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    margin-left: -6px;
    margin-right: -6px;
  }

  .mh-search:after {
    content: "";
    flex: auto;
  }

  .mh-search .mh-search__element {
    padding: 0 6px;
    width: 33.33%;
  }

  .mh-search .mh-search__element.mh-search__element--fullwidth {
    width: 100%;
  }
}

@media (min-width: 768px) and (min-width: 1024px) {
  .mh-search {
    margin-left: -12px;
    margin-right: -12px;
  }

  .mh-search .mh-search__element {
    padding: 0 12px;
  }
}

.mh-search-small {
  margin-bottom: 36px;
}

.mh-search-small .mh-search__subtitle {
  color: #666666;
}

.mh-search-small .bootstrap-select.btn-group > .btn {
  padding: 9px 0;
  font-size: 13px;
}

.mh-search-small .mh-search__element {
  margin-bottom: 12px;
}

.mh-search-small .mh-search__panel:after {
  clear: both;
  content: "";
  display: table;
}

.mh-search-small .mh-search__panel__checkbox {
  margin-bottom: 12px;
}

.mh-search-small input[type="text"] {
  font-size: 13px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.mh-search-small .mh-active-input input,
.mh-search-small input[type="text"]:active,
.mh-search-small input[type="text"]:focus {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.mh-search-small .mh-search__panel > div:last-child .mdl-radio {
  margin-bottom: 9px;
}

.mh-search-small .mh-search__panel .mh-search__2-col input {
  margin-bottom: 9px;
}

.mh-search-small .mh-search__panel .mh-search__2-col__right:after {
  left: -1px;
  top: 18px;
  width: 4px;
}

.mh-search__element .mh-search--features {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-search__1of3 {
    width: 50%;
    padding: 0 12px;
  }
}

@media (min-width: 1024px) {
  .mh-search__1of3 {
    width: 33.33%;
    padding: 0 12px;
  }
}

@media (min-width: 768px) {
  .mh-search__1of1 {
    flex-grow: 55;
    width: 100%;
    padding: 0 12px 12px 12px;
  }
}

.mh-search__2-col:after {
  clear: both;
  content: "";
  display: table;
}

.mh-search__panel--checkbox {
  margin-bottom: 12px;
}

.mh-search__2-col__left {
  width: 50%;
  padding-right: 8px;
  float: left;
}

.mh-search__2-col__right {
  width: 50%;
  padding-left: 8px;
  position: relative;
  float: left;
}

.mh-search__2-col__right:after {
  position: absolute;
  content: "";
  left: -3px;
  top: 23px;
  background: #666666;
  height: 1px;
  width: 6px;
}

.mh-search__label {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .mh-search__label {
    text-align: center;
  }
}

.mh-search__buttons {
  text-align: center;
  margin-top: 6px;
}

.mh-search__buttons:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-search__buttons {
    margin-top: 12px;
    text-align: center;
    width: 100%;
    margin-bottom: 0;
    text-transform: uppercase;
  }
}

.mh-search__buttons--disabled {
  display: none;
}

.mh-search__results-wrapper {
  margin-bottom: 12px;
  padding: 0 12px;
}

.mh-search__results-wrapper:after {
  clear: both;
  content: "";
  display: table;
}

.mh-search__results {
  color: #666666;
  position: relative;
  font-size: 21px;
  line-height: 24px;
  float: left;
  display: inline-block;
  font-family: "Play";
  font-weight: 700;
}

.mh-search__results-filters {
  float: left;
  display: inline-block;
  line-height: 24px;
  font-size: 14px;
  font-weight: 700;
}

.mh-search__results-filters ul {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  display: inline-block;
  list-style: none;
  text-transform: uppercase;
  color: #666666;
}

.mh-search__results-filters ul li {
  float: left;
  display: inline-block;
}

.mh-search__results-filters ul li:nth-child(2) {
  padding-left: 24px;
  position: relative;
}

.mh-search__results-filters ul li:nth-child(2):after {
  content: "";
  position: absolute;
  top: 5px;
  left: 11px;
  height: 14px;
  width: 1px;
  background: #ccc;
}

.mh-search__results-filters ul li span {
  line-height: 24px;
  margin-right: 21px;
}

.mh-search__results__button-delete {
  background: transparent;
  border: none;
  display: inline-block;
  background-image: url("assets/images/close-small.png");
  background-size: 21px 21px;
  width: 21px;
  height: 21px;
  position: relative;
  margin-left: 0;
  top: -6px;
  font-size: 0;
  color: transparent;
}

.mh-search__results__button-clear {
  background: transparent;
  border: none;
  color: #666666;
  text-transform: uppercase;
}

.mh-search__results__button-clear:hover {
  color: #222;
}

.mh-search__previous {
  text-align: center;
}

.mh-search__previous button {
  margin-top: 12px;
  margin-bottom: 24px;
}

.mh-search__more {
  font-size: 24px;
  margin: 0px 0px 40px 0px;
  font-weight: 700;
  width: 100%;
  text-align: center;
}

.mh-search__more button {
  margin-bottom: 24px;
}

.mh-search__end {
  border-top: 1px solid #f0f0f0;
  padding: 12px 0 36px 0;
}

.mh-search-classic {
  max-width: 1140px;
  margin: 0 auto;
}

.mh-search-wide .mh-layout {
  max-width: 100%;
  width: 100%;
}

.mh-search-clear-sidebar {
  margin-top: 12px;
  margin-bottom: 24px;
}

/* Services */
.mh-service {
  background: #f2f2f2;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.mh-service .mh-service__inner {
  padding-left: 12px;
  padding-right: 12px;
}

.mh-service .mh-service__btn {
  text-align: right;
}

.mh-service__image-wrapper {
  position: relative;
  display: block;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
}

.mh-service__image-wrapper:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-service__image-wrapper:hover:after {
    opacity: 0.3;
  }
}

.mh-service__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto !important;
  max-width: none;
  min-height: 100%;
  min-width: 100%;
}

.mh-service__heading {
  margin-bottom: 12px;
  font-weight: 700;
}

.mh-service__content {
  margin-bottom: 12px;
  float: left;
  width: 100%;
}

.mh-service__content p {
  margin-bottom: 0;
}

.mh-service__btn {
  text-align: right;
  width: 100%;
}

.mh-service--white-background {
  background: #fff;
}

.mh-service--dark-background {
  background: #333;
  color: #fff;
}

/* Simple Box */
.mh-simple-box-wrapper:after {
  clear: both;
  content: "";
  display: table;
}

.mh-simple-box {
  position: relative;
  margin: 0 auto;
  max-width: 400px;
  text-align: center;
}

.mh-simple-box:after {
  clear: both;
  content: "";
  display: table;
}

.mh-simple-box i {
  font-size: 48px;
  line-height: 48px;
}

.mh-icon-wrapper {
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .mh-icon-wrapper {
    margin-bottom: 24px;
  }
}

.mh-simple-box__heading {
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
}

.mh-simple-box__btn {
  margin-bottom: 36px;
}

@media (min-width: 768px) {
  .mh-simple-box__btn {
    margin-bottom: 24px;
  }
}

@media (min-width: 1024px) {
  .mh-simple-box--left {
    text-align: left;
  }

  .mh-simple-box--left .mh-simple-box__heading {
    text-align: left;
  }

  .mh-simple-box--left .mh-icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    text-align: left;
  }

  .mh-simple-box--left .mh-simple-box__content {
    padding-left: 84px;
  }
}

@media (min-width: 1024px) {
  .mh-simple-box--big-left {
    text-align: left;
  }

  .mh-simple-box--big-left .mh-simple-box__heading {
    text-align: left;
  }

  .mh-simple-box--big-left i {
    font-size: 70px;
    line-height: 70px;
  }

  .mh-simple-box--big-left .mh-simple-box__heading {
    font-size: 24px;
  }

  .mh-simple-box--big-left .mh-icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }

  .mh-simple-box--big-left .mh-simple-box__content {
    padding-left: 100px;
  }
}

@media (min-width: 1024px) {
  .mh-simple-box--center .mh-icon-wrapper {
    margin-bottom: 24px;
  }

  .mh-simple-box--center .mh-simple-box__heading {
    font-size: 32px;
    text-transform: uppercase;
  }
}

@media (min-width: 1024px) {
  .mh-simple-box--big-center i {
    font-size: 70px;
    line-height: 70px;
  }

  .mh-simple-box--big-center .mh-icon-wrapper {
    margin-bottom: 24px;
  }

  .mh-simple-box--big-center .mh-simple-box__heading {
    font-size: 32px;
    text-transform: uppercase;
  }
}

@media (min-width: 1024px) {
  .mh-simple-box--right {
    text-align: right;
  }

  .mh-simple-box--right .mh-icon-wrapper {
    margin-bottom: 24px;
  }

  .mh-simple-box--right .mh-icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
  }

  .mh-simple-box--right .mh-simple-box__heading {
    text-align: right;
  }

  .mh-simple-box--right .mh-simple-box__content {
    padding-right: 80px;
  }
}

@media (min-width: 1024px) {
  .mh-simple-box--big-right {
    text-align: right;
  }

  .mh-simple-box--big-right i {
    font-size: 70px;
    line-height: 70px;
  }

  .mh-simple-box--big-right .mh-simple-box__heading {
    font-size: 24px;
    text-align: right;
  }

  .mh-simple-box--big-right .mh-icon-wrapper {
    margin-bottom: 24px;
  }

  .mh-simple-box--big-right .mh-icon-wrapper {
    position: absolute;
    top: 0;
    right: 0;
  }

  .mh-simple-box--big-right .mh-simple-box__content {
    padding-right: 100px;
  }
}

/* Revolution Slider - Single Gallery */
#mh_rev_gallery_single_wrapper .tp-thumbs-inner-wrapper {
  -webkit-transition: all 0.2s ease-out !important;
  -moz-transition: all 0.2s ease-out !important;
  -ms-transition: all 0.2s ease-out !important;
  -o-transition: all 0.2s ease-out !important;
  transition: all 0.2s ease-out !important;
  margin-top: 12px;
}

#mh_rev_gallery_single_wrapper .tp-thumb {
  opacity: 0.3;
  -webkit-transition: opacity 0.2s !important;
  -moz-transition: opacity 0.2s !important;
  -ms-transition: opacity 0.2s !important;
  -o-transition: opacity 0.2s !important;
  transition: opacity 0.2s !important;
}

@media (min-width: 1025px) {
  #mh_rev_gallery_single_wrapper .tp-thumb:hover {
    opacity: 1;
  }
}

#mh_rev_gallery_single_wrapper .tp-thumb.selected {
  opacity: 1;
}

/* Revolution Slider - Single Slider */
@media (min-width: 767px) {
  #mh_rev_slider_single_wrapper {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  #mh_rev_slider_single_wrapper {
    height: 500px;
  }
}

@media (min-width: 1200px) {
  #mh_rev_slider_single_wrapper {
    height: 600px;
  }
}

.mh-slider-single {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-slider-single {
    margin-bottom: 24px;
  }
}

.mh-slider-single__content {
  position: relative;
  margin-top: -36px;
  padding: 12px 0;
  background: #f2f2f2;
  margin-left: 15px;
  margin-right: 15px;
}

@media (min-width: 768px) {
  .mh-slider-single__content {
    background: transparent;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 24px;
    color: #fff;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .mh-slider-single__top {
    border-bottom: 2px solid #fff;
  }

  .mh-slider-single__top:after {
    clear: both;
    content: "";
    display: table;
  }
}

.mh-slider-single__bottom {
  font-style: italic;
}

.mh-slider-single__bottom i {
  position: absolute;
  left: 12px;
  margin-right: 6px;
}

@media (min-width: 768px) {
  .mh-slider-single__bottom i {
    position: static;
    padding: 0;
  }
}

.mh-slider-single__bottom span {
  display: block;
  padding-left: 24px;
}

@media (min-width: 768px) {
  .mh-slider-single__bottom span {
    display: inline;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .mh-slider-single__bottom {
    font-size: 16px;
    min-height: 24px;
    line-height: 46px;
  }

  .mh-slider-single__bottom:after {
    clear: both;
    content: "";
    display: table;
  }
}

.mh-slider-single__address {
  color: #4d4d4d;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-slider-single__address {
    color: #fff;
    float: left;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .mh-slider-single__phone {
    display: inline-block;
    float: right;
  }

  .mh-slider-single__phone a {
    color: #fff;
  }
}

@media (min-width: 768px) {
  .mh-slider-single__name-price {
    display: table;
    width: 100%;
  }
}

.mh-slider-single__name {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 9px;
  margin-bottom: 12px;
  position: relative;
}

.mh-slider-single__name:after {
  content: "";
  width: 100%;
  background: #fff;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

@media (min-width: 768px) {
  .mh-slider-single__name {
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
    text-align: left;
    display: table-cell;
    font-size: 24px;
    line-height: 1.2;
    padding-bottom: 6px;
    margin-bottom: 0;
    color: #fff;
    width: auto;
    vertical-align: bottom;
  }

  .mh-slider-single__name:after {
    display: none;
  }
}

@media (min-width: 1024px) {
  .mh-slider-single__name {
    font-size: 36px;
  }
}

.mh-slider-single__price {
  padding-bottom: 12px;
  font-weight: 700;
  font-family: Play, Arial, Helvetica, sans-serif;
  font-size: 18px;
}

.mh-slider-single__price:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-slider-single__price {
    padding-bottom: 6px;
    text-align: center;
    color: #fff;
    margin-bottom: 0;
    background: transparent;
    display: table-cell;
    vertical-align: bottom;
    width: auto;
    font-size: 24px;
    line-height: 1.2;
    text-align: right;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) {
  .mh-slider-single__price {
    padding-bottom: 9px;
    font-size: 34px;
    height: 36px;
  }
}

/* Revolution Slider - Transparent */
.mh-slider__transparent {
  text-align: center;
}

.mh-slider__transparent__title {
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 18px;
  text-align: center;
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 280px;
  border: 2px solid #fff;
  padding: 6px 12px 6px 12px;
}

@media (min-width: 375px) {
  .mh-slider__transparent__title {
    width: 300px;
  }
}

@media (min-width: 480px) {
  .mh-slider__transparent__title {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .mh-slider__transparent__title {
    width: 100%;
    padding: 0 0 9px 0;
    border: none;
    max-width: 600px;
    font-size: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mh-slider__transparent__title:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #fff;
    width: 100%;
    height: 2px;
  }
}

@media (min-width: 1024px) {
  .mh-slider__transparent__title {
    max-width: 900px;
    font-size: 36px;
  }
}

@media (min-width: 1200px) {
  .mh-slider__transparent__title {
    max-width: 1024px;
    font-size: 48px;
  }
}

.mh-slider__transparent__address {
  display: none;
}

@media (min-width: 768px) {
  .mh-slider__transparent__address {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
    font-style: italic;
    white-space: nowrap;
    font-size: 16px;
    margin-bottom: 18px;
  }
}

.mh-slider__transparent__price {
  display: none;
}

@media (min-width: 768px) {
  .mh-slider__transparent__price {
    text-align: center;
    color: #fff;
    font-size: 16px;
    padding: 6px 15px;
    display: inline-block;
    margin: 0 auto;
    border: 1px solid #fff;
    font-size: 16px;
    padding: 8px 16px;
    border: 2px solid #fff;
  }
}

@media (min-width: 1024px) {
  .mh-slider__transparent__price {
    padding: 16px 30px;
    font-weight: 400;
    font-size: 24px;
  }
}

/* Revolution Slider - Card Short */
.mh-slider__card-short {
  background: white;
  color: #222;
  padding: 12px;
  width: 100%;
  font-size: 16px;
}

@media (min-width: 900px) {
  .mh-slider__card-short {
    background: rgba(255, 255, 255, 0.85);
    min-width: 600px;
    padding: 12px 24px;
  }
}

.mh-slider__card-short__heading {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  width: auto;
  margin-bottom: 0;
  color: #4d4d4d;
  text-align: center;
  width: 280px;
}

@media (min-width: 375px) {
  .mh-slider__card-short__heading {
    width: 300px;
  }
}

@media (min-width: 480px) {
  .mh-slider__card-short__heading {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .mh-slider__card-short__heading {
    max-width: 600px;
  }
}

@media (min-width: 900px) {
  .mh-slider__card-short__heading {
    margin-bottom: 6px;
    font-size: 32px;
    text-align: left;
    padding: 0;
    width: auto;
  }
}

.mh-slider__card-short__address {
  display: none;
}

@media (min-width: 900px) {
  .mh-slider__card-short__address {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    max-width: 400px;
    font-style: italic;
  }
}

.mh-slider__card-short__price {
  display: none;
}

@media (min-width: 900px) {
  .mh-slider__card-short__price {
    background: #009fe3;
    color: #fff;
    display: block;
    white-space: nowrap;
    padding: 0 30px;
    font-size: 21px;
    line-height: 46px;
    font-weight: 700;
    width: auto;
    text-align: center;
    position: absolute;
    left: 100%;
    bottom: 0px;
    margin-left: -160px !important;
    margin-bottom: -23px !important;
  }
}

/* Revolution Slider - Card Default */
.mh-slider__card-default {
  background: white;
  color: #222;
  padding: 12px;
  width: 100%;
  font-size: 16px;
}

@media (min-width: 900px) {
  .mh-slider__card-default {
    background: rgba(255, 255, 255, 0.85);
    min-width: 530px;
    padding: 12px 24px 24px;
  }
}

.mh-slider__card-default__heading {
  font-size: 21px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  color: #4d4d4d;
  text-align: center;
  width: 280px;
}

@media (min-width: 375px) {
  .mh-slider__card-default__heading {
    width: 300px;
  }
}

@media (min-width: 480px) {
  .mh-slider__card-default__heading {
    width: 400px;
  }
}

@media (min-width: 768px) {
  .mh-slider__card-default__heading {
    max-width: 600px;
    font-size: 24px;
  }
}

@media (min-width: 900px) {
  .mh-slider__card-default__heading {
    padding-right: 30px;
    margin-bottom: 24px;
    font-size: 26px;
    text-align: left;
    padding: 0;
  }
}

.mh-slider__card-default__address {
  display: none;
}

@media (min-width: 900px) {
  .mh-slider__card-default__address {
    display: block;
    width: 45%;
    position: relative;
    font-style: italic;
    max-height: 48px;
    overflow: hidden;
    padding-bottom: 12px;
    font-weight: 400;
  }

  .mh-slider__card-default__address i {
    font-size: 32px;
    line-height: 46px;
  }

  .mh-slider__card-default__address span {
    position: absolute;
    top: 0;
    left: 42px;
  }
}

.mh-slider__card-default__price {
  display: none;
}

@media (min-width: 900px) {
  .mh-slider__card-default__price {
    background: #009fe3;
    color: #fff;
    min-width: 300px;
    display: inline-block;
    white-space: nowrap;
    padding: 10px 70px;
    font-size: 24px;
    line-height: 36px;
    font-weight: 700;
    width: auto;
    margin-left: 24px;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 0;
  }
}

/* Revolution Slider - Arrows */
#estate_slider_card .tparrows,
#estate_slider_card_short .tparrows,
#mh_rev_slider_single .tparrows,
#mh_rev_gallery_single .tparrows {
  background: rgba(255, 255, 255, 0.7);
  width: 48px;
  height: 48px;
}

#estate_slider_card .tparrows:before,
#estate_slider_card_short .tparrows:before,
#mh_rev_slider_single .tparrows:before,
#mh_rev_gallery_single .tparrows:before {
  color: #222 !important;
  -webkit-transition: 0.1s ease-in-out;
  -moz-transition: 0.1s ease-in-out;
  -ms-transition: 0.1s ease-in-out;
  -o-transition: 0.1s ease-in-out;
  transition: 0.1s ease-in-out;
}

#estate_slider_card .tparrows:hover:before,
#estate_slider_card_short .tparrows:hover:before,
#mh_rev_slider_single .tparrows:hover:before,
#mh_rev_gallery_single .tparrows:hover:before {
  color: #fff !important;
  background: #009fe3;
}

@media (max-width: 1024px) {
  #estate_slider_card .tparrows:hover:before,
  #estate_slider_card .tparrows:active:before,
  #estate_slider_card .tparrows:focus:before,
  #estate_slider_card_short .tparrows:hover:before,
  #estate_slider_card_short .tparrows:active:before,
  #estate_slider_card_short .tparrows:focus:before,
  #mh_rev_slider_single .tparrows:hover:before,
  #mh_rev_slider_single .tparrows:active:before,
  #mh_rev_slider_single .tparrows:focus:before,
  #mh_rev_gallery_single .tparrows:hover:before,
  #mh_rev_gallery_single .tparrows:active:before,
  #mh_rev_gallery_single .tparrows:focus:before {
    background: rgba(255, 255, 255, 0.7) !important;
    color: #222 !important;
  }
}

#estate_slider_card .tparrows:before,
#estate_slider_card_short .tparrows:before,
#mh_rev_slider_single .tparrows:before,
#mh_rev_gallery_single .tparrows:before {
  line-height: 48px;
}

#estate_slider_card .tparrows.tp-leftarrow,
#estate_slider_card_short .tparrows.tp-leftarrow,
#mh_rev_slider_single .tparrows.tp-leftarrow,
#mh_rev_gallery_single .tparrows.tp-leftarrow {
  margin-left: 12px;
}

#estate_slider_card .tparrows.tp-rightarrow,
#estate_slider_card_short .tparrows.tp-rightarrow,
#mh_rev_slider_single .tparrows.tp-rightarrow,
#mh_rev_gallery_single .tparrows.tp-rightarrow {
  margin-right: 12px;
}

#estate_slider_transparent .tparrows {
  background: rgba(255, 255, 255, 0);
  width: 72px;
  height: 72px;
}

#estate_slider_transparent .tparrows:before {
  line-height: 72px;
  font-size: 24px;
  color: #fff !important;
}

/* Revolution Slider - Extra Content */
.mh-slider__extra-content {
  position: relative;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.mh-slider__extra-content2 {
  position: relative;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.mh-slider__extra-content:after {
  clear: both;
  content: "";
  display: table;
}

.mh-slider__extra-content > div {
  margin-top: -36px;
}

@media (min-width: 768px) {
  .mh-slider__extra-content > div {
    margin-top: -96px;
  }
}

.mh-slider__extra-content #myhome-listing {
  background: #fff;
}

.mh-slider__extra-content .mh-search-left {
  background: #fff;
  z-index: 99999;
  padding: 24px 18px;
}

.mh-slider__extra-content .mh-search-left:after {
  clear: both;
  content: "";
  display: table;
}

.mh-slider__extra-content .mh-search-right {
  background: #fff;
  z-index: 99999;
  padding: 24px 18px;
}

.mh-slider__extra-content .mh-search-right:after {
  clear: both;
  content: "";
  display: table;
}

.mh-slider__extra-content .mh-search-top {
  background: #fff;
  padding: 0;
}

.mh-slider__buttons .mdl-button {
  min-width: 130px;
  margin: 0 6px;
}

/* Revolution Slider - Placeholder */
body:not(.vc_editor) .rev_slider_estate_placeholder {
  min-height: 450px;
}

body:not(.vc_editor) .rev_slider_estate_placeholder .rev_slider_wrapper {
  left: 0 !important;
}

@media (min-width: 900px) {
  body:not(.vc_editor) .rev_slider_estate_placeholder {
    min-height: 500px;
  }
}

@media (min-width: 1100px) {
  body:not(.vc_editor) .rev_slider_estate_placeholder {
    min-height: 600px;
  }
}

.compose-mode .vc_element.vc_mh_slider_estate,
.compose-mode .vc_element.vc_mh_slider {
  margin-top: 35px;
}

/* Social icons */
.mh-social-icons {
  margin-bottom: -12px;
}

.mh-social-icon {
  background-color: #fff;
  display: inline-block;
  position: relative;
  text-align: center;
  color: #222;
  height: 48px;
  width: 48px;
  font-size: 16px;
  line-height: 48px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  margin-bottom: 12px;
  margin-right: 12px;
  border-radius: 50%;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border-radius: 50%;
}

.mh-social-icon:after {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  height: 48px;
  width: 48px;
  content: "";
  border: 1px solid #222;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  border-radius: 50%;
}

@media (min-width: 1025px) {
  .mh-social-icon:hover {
    background: #009fe3;
    color: #fff;
  }

  .mh-social-icon:hover:after {
    opacity: 1;
    border: 1px solid #009fe3;
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -o-transform: scale(1.2);
  }
}

/* Testimonials */
.mh-testimonial {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
}

.mh-testimonial:after {
  clear: both;
  content: "";
  display: table;
}

.mh-testimonial__author {
  font-weight: 700;
}

.mh-testimonial__occupation {
  font-size: 13px;
}

.mh-testimonial__author {
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 16px;
}

@media (min-width: 768px) {
  .mh-testimonial__author {
    font-size: 21px;
  }
}

.mh-testimonial__photo > img {
  border-radius: 50%;
}

.mh-testimonials--standard {
  text-align: center;
}

.mh-testimonials--standard .mh-testimonial .mh-testimonial__photo {
  text-align: center;
  margin-bottom: 24px;
}

.mh-testimonials--standard .mh-testimonial .mh-testimonial__photo > img {
  width: 120px;
  height: 120px;
  display: inline;
}

.mh-testimonials--standard .mh-testimonial .mh-testimonial__author {
  text-align: center;
}

.mh-testimonials--standard .mh-testimonial .mh-testimonial__occupation {
  margin-bottom: 0;
}

.mh-testimonials--standard .mh-testimonial .mh-testimonial__text {
  text-align: center;
  margin-bottom: 24px;
}

.mh-testimonials--standard.mh-testimonials--light {
  color: #fff;
}

.mh-testimonials--standard.mh-testimonials--light .mh-testimonial__author {
  color: #fff;
}

.mh-testimonials--cloud-text .mh-testimonial .mh-testimonial__text {
  background: #4d4d4d;
  color: #fff;
  position: relative;
  padding: 18px;
  margin-bottom: 24px;
}

.mh-testimonials--cloud-text .mh-testimonial .mh-testimonial__text p {
  padding-bottom: 18px;
}

.mh-testimonials--cloud-text .mh-testimonial .mh-testimonial__text:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: -15px;
  left: 16px;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 18px solid #4d4d4d;
}

.mh-testimonials--cloud-text .mh-testimonial .mh-testimonial__author-info {
  display: table-cell;
  vertical-align: middle;
  margin-top: 24px;
  padding-left: 85px;
  position: relative;
  height: 70px;
}

.mh-testimonials--cloud-text .mh-testimonial .mh-testimonial__photo {
  position: absolute;
  margin-bottom: 24px;
}

.mh-testimonials--cloud-text .mh-testimonial .mh-testimonial__photo > img {
  width: 70px;
  height: 70px;
}

.mh-testimonials--cloud-text.mh-testimonials--light {
  color: #fff;
}

.mh-testimonials--cloud-text.mh-testimonials--light
  .mh-testimonial
  .mh-testimonial__text {
  background: #fff;
  color: #222;
}

.mh-testimonials--cloud-text.mh-testimonials--light
  .mh-testimonial
  .mh-testimonial__text:before {
  border-top-color: #fff;
}

.mh-testimonials--cloud-text.mh-testimonials--light
  .mh-testimonial
  .mh-testimonial__author {
  color: #fff;
}

.mh-testimonials--transparent .mh-testimonial .mh-testimonial__text {
  position: relative;
  margin-bottom: 35px;
  font-size: 24px;
}

.mh-testimonials--transparent .mh-testimonial .mh-testimonial__author-info {
  display: table-cell;
  vertical-align: middle;
  margin-top: 24px;
  padding-left: 85px;
  position: relative;
  height: 70px;
}

.mh-testimonials--transparent .mh-testimonial .mh-testimonial__photo {
  position: absolute;
  margin-bottom: 24px;
}

.mh-testimonials--transparent .mh-testimonial .mh-testimonial__photo > img {
  width: 70px;
  height: 70px;
}

.mh-testimonials--transparent.mh-testimonials--light {
  color: #fff;
}

.mh-testimonials--transparent.mh-testimonials--light
  .mh-testimonial
  .mh-testimonial__text {
  color: #fff;
}

.mh-testimonials--transparent.mh-testimonials--light
  .mh-testimonial
  .mh-testimonial__author {
  color: #fff;
}

.mh-testimonials--boxed .mh-testimonial {
  padding: 24px;
  background: #fff;
  color: #222;
  border: 1px solid #c3c3c5;
}

.mh-testimonials--boxed .mh-testimonial__text {
  font-size: 24px;
  position: relative;
  margin-bottom: 24px;
}

.mh-testimonials--boxed .mh-testimonial__author-info {
  display: table-cell;
  vertical-align: middle;
  margin-top: 24px;
  padding-left: 85px;
  position: relative;
  height: 70px;
}

.mh-testimonials--boxed .mh-testimonial__photo {
  position: absolute;
  margin-bottom: 24px;
}

.mh-testimonials--boxed .mh-testimonial__photo > img {
  width: 70px;
  height: 70px;
}

.mh-testimonials--boxed.mh-testimonials--light .mh-testimonial {
  background: #fff;
  border-color: #fff;
}

.mh-top-bar-user-panel {
  position: absolute;
  top: 0;
  right: 15px;
}

.mh-top-bar-user-panel__user-menu {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  margin-top: 36px;
  right: 0;
  z-index: 999999999999;
  background: #fff;
  list-style: none;
  width: 205px;
}

.mh-top-bar-user-panel__user-menu li {
  margin: 0;
}

.mh-top-bar-user-panel__user-menu a,
.mh-top-bar-user-panel__user-menu button {
  color: #666;
  background: #f9f9f9;
  text-align: left;
  width: 100%;
  display: inline-block;
  padding: 12px 12px;
  line-height: 24px;
  font-size: 12px;
  text-transform: uppercase;
  border: 0;
  font-family: Lato, Arial, Helvetica, sans-serif;
}

.mh-top-bar-user-panel__user-menu a i,
.mh-top-bar-user-panel__user-menu button i {
  margin-right: 6px;
}

.mh-top-bar-user-panel__user-menu a:hover,
.mh-top-bar-user-panel__user-menu button:hover {
  background: #f0f0f0;
  color: #222 !important;
}

@media (min-width: 1023px) {
  .mh-top-bar-user-panel__user-menu:hover {
    display: block;
  }
}

.mh-top-bar-user-panel__user-info {
  position: relative;
  display: inline-block;
  padding: 0 12px;
  height: 35px;
}

.mh-top-bar-user-panel__user-info img {
  border-radius: 50%;
  height: 24px;
  margin-top: -4px;
  margin-right: 6px;
}

.mh-top-bar-user-panel__user-info > a {
  display: inline-block;
  line-height: 36px;
}

.mh-top-header--primary .mh-top-bar-user-panel__user-info {
  background: #009fe3;
}

.mh-top-header--primary .mh-top-bar-user-panel__user-info > a {
  color: #fff;
}

.mh-top-bar-user-panel__main-link {
  font-size: 13px;
}

@media (min-width: 1023px) {
  .mh-top-bar-user-panel__main-link:hover + .mh-top-bar-user-panel__user-menu {
    display: block;
  }
}

.mh-top-bar-user-panel-small .mh-top-bar-user-panel {
  position: static;
}

.mh-top-bar-user-panel-small .mh-top-bar-user-panel__user-info {
  padding: 0;
}

@media (min-width: 1023px) {
  .mh-top-bar-user-panel-small {
    padding-left: 24px;
    display: inline-block;
    position: relative;
  }

  .mh-top-bar-user-panel-small:after {
    content: "";
    height: 20px;
    width: 1px;
    background: #f0f0f0;
    position: absolute;
    top: 8px;
    left: 12px;
  }
}

.mh-top-header--default .mh-top-bar-user-panel__user-info {
  background: #fff;
}

.mh-top-header--default .mh-top-bar-user-panel__user-info a {
  color: #222;
}

.mh-top-header-big .mh-top-bar-user-panel__user-info {
  background: #009fe3;
}

.mh-top-header-big .mh-top-bar-user-panel__user-info > a {
  color: #fff;
}

.mh-top-header-big .mh-top-header--primary .mh-top-bar-login-register {
  color: #fff;
}

@media (max-width: 1023px) {
  .mh-top-header-big .mh-top-bar-user-panel {
    position: static;
    right: 0;
  }

  .mh-top-header-big .mh-top-bar-user-panel__user-info {
    background: #fff !important;
    padding: 0;
  }

  .mh-top-header-big .mh-top-bar-user-panel__user-info > a {
    color: #222;
  }
}

.mh-hide-top-bar-on-mobile .mh-top-header,
.mh-hide-top-bar-on-mobile .mh-top-header-big {
  display: none;
}

@media (min-width: 1024px) {
  .mh-hide-top-bar-on-mobile .mh-top-header,
  .mh-hide-top-bar-on-mobile .mh-top-header-big {
    display: block;
  }
}

/* Top Header */
.mh-top-header {
  font-family: Play, Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 36px;
  color: #666666;
  border-bottom: 1px solid #f0f0f0;
}

@media (min-width: 1024px) {
  .mh-top-header {
    height: 36px;
    text-align: center;
  }
}

.mh-top-header:not(.mh-top-header--primary) a {
  color: #666666;
}

.mh-top-header:not(.mh-top-header--primary) a:hover {
  color: #009fe3;
}

.mh-top-header address {
  font-style: normal;
}

.mh-top-header__element {
  display: block;
  position: relative;
}

.mh-top-header__element > a > i {
  margin-right: 6px;
  position: relative;
  top: 1px;
}

@media (min-width: 768px) {
  .mh-top-header__element {
    width: 50%;
    float: left;
  }
}

@media (min-width: 1024px) {
  .mh-top-header__element {
    width: auto;
    float: none;
    display: inline-block;
    margin-right: 24px;
    line-height: 36px;
  }

  .mh-top-header__element:after {
    content: "";
    height: 20px;
    width: 1px;
    background: #f0f0f0;
    position: absolute;
    top: 8px;
    right: -12px;
  }

  .mh-top-header__element:last-of-type {
    margin-right: 0;
  }

  .mh-top-header__element:last-of-type:after {
    display: none;
  }
}

.mh-top-header__element--social-icons {
  display: none;
}

@media (min-width: 1024px) {
  .mh-top-header__element--social-icons {
    display: inline-block;
  }

  .mh-top-header__element--social-icons > span > a {
    margin-left: 9px;
  }
}

.mh-top-header--primary {
  background: #009fe3;
  border-color: #009fe3;
  color: #fff;
}

.mh-top-header--primary .mh-top-header__element > a,
.mh-top-header--primary .mh-top-header__element > span > a {
  color: #fff;
}

.mh-top-header--primary .mh-top-header__element > a:hover,
.mh-top-header--primary .mh-top-header__element > span > a:hover {
  color: #fff;
}

/* Top Header Big */
.mh-top-header-big {
  background: #fff;
}

.mh-top-header-big:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 1023px) {
  .mh-top-header-big {
    height: 120px;
  }
}

.mh-top-header-big__content {
  max-width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative;
}

.mh-top-header-big__logo-placeholder {
  display: none;
}

@media (min-width: 1023px) {
  .mh-top-header-big__logo-placeholder {
    float: left;
    display: inline-block;
    width: 155px;
    margin-right: 30px;
    height: 120px;
  }
}

@media (min-width: 1200px) {
  .mh-top-header-big__logo-placeholder {
    width: 285px;
  }
}

.mh-top-header-big__element:not(.mh-top-header-big__panel) a:hover {
  color: #009fe3;
}

.mh-top-header-big__logo {
  display: none;
}

@media (min-width: 1024px) {
  .mh-top-header-big__logo {
    position: absolute;
    float: left;
    display: inline-block;
    height: 120px;
    text-align: left;
    z-index: 2;
  }

  .mh-top-header-big__logo img {
    display: inline-block;
    margin-top: 35px;
    height: 50px;
  }
}

@media (min-width: 1200px) {
  .mh-top-header-big__logo {
    width: 285px;
  }
}

.mh-top-header-big__element {
  display: block;
  position: relative;
  font-size: 13px;
  text-align: left;
  color: #4d4d4d;
  padding: 0px;
}

.mh-top-header-big__element .mh-top-header-big__element__icon-big {
  margin-right: 6px;
  position: relative;
  top: 1px;
  font-size: 16px;
  margin-bottom: 6px;
  display: inline-block;
}

@media (min-width: 768px) {
  .mh-top-header-big__element {
    width: 50%;
    float: left;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big__element {
    padding: 0;
    width: auto;
    display: table;
    margin-right: 48px;
    height: 120px;
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
  }

  .mh-top-header-big__element .mh-top-header-big__element__icon-big {
    position: absolute;
    font-size: 30px;
    line-height: 120px;
    height: 120px;
    margin-right: 16px;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big__element--address {
    max-width: 160px;
  }
}

.mh-top-header-big__value {
  display: inline-block;
}

@media (min-width: 1023px) {
  .mh-top-header-big__value {
    display: table-cell;
    vertical-align: middle;
    padding-left: 48px;
    margin-right: 48px;
    height: 120px;
  }
}

.mh-top-header-big__social-icons {
  display: none;
}

@media (min-width: 1023px) {
  .mh-top-header-big__social-icons {
    display: inline-block;
    float: right;
  }

  .mh-top-header-big__social-icons a {
    color: #4d4d4d;
    font-size: 21px;
    margin-left: 18px;
    line-height: 120px;
  }

  .mh-top-header-big__social-icons a:hover {
    color: #009fe3;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big__info-element__content {
    padding: 48px 0;
    height: 60px;
    position: relative;
  }

  .mh-top-header-big__info-element__content i {
    position: absolute;
    top: 0;
    left: 0;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big__info-element__info {
    padding-left: 60px;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big__info-element {
    position: relative;
    margin-right: 48px;
  }

  .mh-top-header-big__info-element i {
    font-size: 30px;
    margin-right: 16px;
  }

  .mh-top-header-big__info-element span {
    display: inline-block;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big__info-element__info {
    max-width: 130px;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big + .mh-navbar__wrapper .mh-navbar__header {
    display: none !important;
  }
}

.mh-top-header-big__panel {
  margin-top: 3px;
  margin-bottom: 6px;
}

@media (min-width: 1023px) {
  .mh-top-header-big__panel {
    margin: 0;
    height: auto;
    display: block;
    margin-right: 0;
    font-style: normal;
    position: absolute;
    top: 0;
    right: 15px;
    padding: 0 12px;
    font-size: 13px;
    line-height: 24px;
    background: #fff;
  }

  .mh-top-header-big__panel a {
    color: #4d4d4d;
  }
}

@media (min-width: 1023px) {
  .mh-top-header-big .mh-top-header-big__panel {
    background: #009fe3;
  }

  .mh-top-header-big
    .mh-top-header-big__panel
    .mh-top-header__user-info__panel-link {
    color: #fff;
  }
}

@media (max-width: 1023px) {
  .mh-top-header-big .mh-top-header-big__panel {
    background: #fff !important;
  }
}

/* Top Title */
.mh-top-title {
  background: #4ca0e4;
  color: #ffffff;
  text-align: center;
  padding: 36px 18px;
}

@media (min-width: 768px) {
  .mh-top-title {
    padding: 48px 18px;
  }
}

.mh-top-title a {
  color: #ffffff;
}

.mh-top-title a:hover {
  color: #222;
}

.mh-top-title-offset {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .mh-top-title-offset {
    margin-top: 36px;
  }
}

.mh-top-title__heading {
  margin-bottom: 0;
}

.mh-top-title--single-estate {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-top-title--single-estate {
    margin-bottom: 36px;
  }
}

.mh-top-title--author {
  padding-top: 24px;
  padding-bottom: 24px;
  color: #666666;
}

@media (min-width: 768px) {
  .mh-top-title--author {
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: left;
  }
}

.mh-top-title--author .agent-contact {
  margin-bottom: 0;
}

.mh-top-title--author .mh-top-title__heading {
  color: #ffffff;
  text-transform: none;
}

.mh-top-title--author .mh-top-title__heading:first-letter {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .mh-top-title--author .mh-top-title__heading {
    font-size: 44px;
    text-align: left;
  }
}

.mh-top-title--author .mh-agent-contact__element {
  display: block;
  font-weight: 400;
  font-size: 13px;
  margin-bottom: 0px;
}

@media (min-width: 768px) {
  .mh-top-title__avatar + .mh-top-title__author-info {
    padding-left: 200px;
  }
}

@media (min-width: 768px) {
  .mh-top-title__author-info {
    height: 160px;
    display: table;
    vertical-align: middle;
  }
}

@media (min-width: 768px) {
  .mh-top-title__author-info__content {
    display: table-cell;
    vertical-align: middle;
  }
}

.mh-top-title--image-background {
  border: 0;
  position: relative;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-position: center center !important;
  color: #fff;
}

.mh-top-title--image-background .mh-top-title__heading {
  color: #fff;
  z-index: 2;
}

.mh-top-title--image-background:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}

.mh-top-title--image-background .mh-top-title__subheading {
  position: relative;
  color: #fff;
  z-index: 2;
}

@media (min-width: 768px) {
  .mh-top-title--image-background {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

.mh-top-title__heading {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

@media (min-width: 768px) {
  .mh-top-title__heading {
    font-size: 32px;
  }
}

.mh-top-title__avatar > img {
  border-radius: 50%;
  width: 160px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-top-title__avatar {
    display: block;
  }

  .mh-top-title__avatar:after {
    clear: both;
    content: "";
    display: table;
  }

  .mh-top-title__avatar > img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.mh-top-title__social-icons:after {
  clear: both;
  content: "";
  display: table;
}

.mh-top-title__social-icons a {
  color: #666666;
  display: inline-block;
  margin-right: 8px;
  font-size: 14px;
}

@media (min-width: 1025px) {
  .mh-top-title__social-icons a:hover,
  .mh-top-title__social-icons a:active,
  .mh-top-title__social-icons a:focus {
    color: #222222;
  }
}

@media (min-width: 768px) {
  .mh-top-title__social-icons {
    text-align: left;
  }
}

.mh-top-title--parallax {
  position: relative;
  padding-top: 72px;
  padding-bottom: 72px;
  background-position: top center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  background-size: auto;
}

.mh-top-title--parallax .mh-top-title__heading {
  color: #fff;
  z-index: 2;
}

.mh-top-title--parallax:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* User Panel */
.mh-user-panel-wrapper {
  min-height: 375px;
}

.mh-user-panel .mh-heading--bottom-separator {
  margin-bottom: 24px;
}

.mh-user-panel input {
  text-align: left;
  font-style: initial;
  color: #222;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .mh-user-panel input {
    margin-bottom: 24px;
  }
}

.mh-user-panel select {
  margin-bottom: 12px;
  font-style: initial;
}

.mh-user-panel button {
  border: 0;
}

.mh-user-panel textarea {
  text-align: left;
  max-height: 300px;
  margin-bottom: 12px;
  font-style: initial;
}

.mh-user-panel .fa-plus {
  display: inline-block;
  margin-right: 6px;
  font-size: 85%;
}

.mh-user-panel .bootstrap-select.btn-group > .dropdown-toggle,
.mh-user-panel .bootstrap-select.btn-group .filter-option {
  text-align: left;
  font-style: initial;
}

.mh-user-panel__title {
  font-size: 32px;
  text-transform: none;
}

.mh-user-panel__label {
  display: block;
  margin-bottom: 6px;
  color: #333;
}

.mh-user-panel__label i {
  margin-right: 6px;
}

@media (min-width: 768px) {
  .mh-user-panel__label {
    font-size: 21px;
  }

  .mh-user-panel__label i {
    display: inline-block;
    font-weight: normal;
  }

  .mh-user-panel__label i.flaticon-house-plan {
    font-weight: 700;
  }
}

.mh-button-transparent {
  border: none;
  background: transparent;
}

.mh-button-transparent:hover {
  color: #009fe3;
}

.mh-user-panel__map {
  width: 100%;
  margin-bottom: 24px;
  height: 200px;
}

@media (min-width: 768px) {
  .mh-user-panel__map {
    margin-top: -21px;
    height: 400px;
  }
}

/* User Panel - Gallery */
.mh-user-panel__gallery {
  margin-bottom: 12px;
}

.mh-user-panel__gallery:after {
  clear: both;
  content: "";
  display: table;
}

.mh-user-panel__gallery__button:after {
  clear: both;
  content: "";
  display: table;
}

.mdl-button.mdl-button--upload {
  margin-bottom: 12px;
}

.mh-user-panel__gallery__single {
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  max-width: 335px;
}

.mh-user-panel__gallery__single img {
  width: 100%;
}

/* User Panel - Plans */
.mh-user-panel__plans {
  width: 100%;
}

.mh-user-panel__plans .mdl-button,
.mh-user-panel__plans input {
  margin-bottom: 0;
}

.mh-user-panel__plans .mdl-button i {
  margin-right: 0;
}

.mh-user-panel__plans__row {
  background: #f2f2f2;
  border: none;
  position: relative;
}

.mh-user-panel__plans__row > * {
  padding: 6px 3px;
  border: none;
}

@media (min-width: 480px) {
  .mh-user-panel__plans__row > * {
    padding: 6px 12px;
  }
}

.mh-user-panel__plans__row:nth-child(even) {
  background: #f9f9f9;
}

.mh-user-panel__plans__row:first-child {
  text-align: center;
  background: #f2f2f2;
  color: #222;
}

.mh-user-panel__plans__row .mh-user-panel__plans__cell-1 {
  width: auto;
}

@media (min-width: 768px) {
  .mh-user-panel__plans__row .mh-user-panel__plans__cell-1 {
    width: 50px;
    text-align: center;
  }
}

.mh-user-panel__plans__row .mh-user-panel__plans__cell-2 {
  width: 100px;
}

@media (min-width: 480px) {
  .mh-user-panel__plans__row .mh-user-panel__plans__cell-2 {
    width: 160px;
  }
}

@media (min-width: 768px) {
  .mh-user-panel__plans__row .mh-user-panel__plans__cell-2 {
    width: 200px;
  }
}

.mh-user-panel__plans__row .mh-user-panel__plans__cell-3 {
  vertical-align: top;
  width: auto;
  width: auto;
}

.mh-user-panel__plans__row .mh-user-panel__plans__cell-4 {
  width: auto;
}

.mh-user-panel__plans__row .mh-user-panel__plans__cell-4 {
  text-align: center;
}

.mh-user-panel__plans__row .mh-user-panel__plans__cell-4 button {
  background: transparent;
  height: 40px;
}

.mh-user-panel__plans__row .mh-user-panel__plans__cell-4 button:hover {
  color: #009fe3;
}

@media (min-width: 768px) {
  .mh-user-panel__plans__row .mh-user-panel__plans__cell-4 {
    width: 90px;
  }
}

@media (min-width: 768px) {
  .mh-user-panel__plans__row:not(:first-child) {
    line-height: 48px;
  }
}

.mh-user-panel-close {
  background-image: url("assets/images/close.png");
  background-size: 30px 30px;
  position: absolute;
  background-color: transparent;
  top: 6px;
  right: 6px;
  width: 30px;
  height: 30px;
}

.mh-user-panel__menu {
  margin-bottom: 24px;
}

.mh-user-panel__menu ul {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
}

.mh-user-panel__menu ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.mh-user-panel__menu ul li button,
.mh-user-panel__menu ul li a {
  width: 100%;
  position: relative;
  text-align: left;
  border: none;
  color: #222;
  background: #f9f9f9;
  display: block;
  padding: 15px 30px 15px 12px;
  overflow: hidden;
}

.mh-user-panel__menu ul li button i,
.mh-user-panel__menu ul li a i {
  font-size: 13px;
  margin-right: 12px;
}

.mh-user-panel__menu ul li:hover {
  background: #f0f0f0;
  color: #222;
}

.mh-user-panel__menu ul li:hover button,
.mh-user-panel__menu ul li:hover a {
  background: #f0f0f0;
  color: #222;
}

.mh-user-panel__menu ul li.mh-user-panel__menu__li--active button,
.mh-user-panel__menu ul li.mh-user-panel__menu__li--active a {
  background: #009fe3;
  color: #fff !important;
}

.mh-user-panel__menu ul > ul > li:last-child {
  border-bottom: none;
}

/* Browse Estate */
.mh-browse-estate__row {
  background: #fff;
  border: none;
  background: #f9f9f9;
}

.mh-browse-estate__row th,
.mh-browse-estate__row td {
  border: none;
  padding: 6px 3px;
}

@media (min-width: 480px) {
  .mh-browse-estate__row th,
  .mh-browse-estate__row td {
    padding: 6px 12px;
  }
}

.mh-browse-estate__row:nth-child(even) {
  background: #f2f2f2;
}

.mh-browse-estate__row:first-child {
  text-align: center;
  background: #009fe3;
  color: #fff;
}

.mh-browse-estate__image {
  position: relative;
  display: block;
}

.mh-browse-estate__image:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .mh-browse-estate__image:hover:after {
    opacity: 0.3;
  }
}

.mh-browse-estate__cell-1 {
  width: 30px;
  text-align: center;
}

.mh-browse-estate__cell-2 {
  width: 160px;
  padding: 12px;
}

.mh-browse-estate__cell-2 img {
  width: 100%;
}

.mh-browse-estate__cell-3 {
  width: 100%;
}

.mh-browse-estate__cell-3 a:hover {
  color: #009fe3;
}

.mh-browse-estate__cell-4 {
  width: auto;
}

.mh-browse-estate__cell-payment {
  width: auto;
  text-align: center;
}

.mh-browse-estate__cell-payment a:hover {
  color: #009fe3;
}

.mh-browse-estate__cell-icon {
  width: 40px;
  text-align: center;
}

/* Login and Register */
.mh-user-panel__register-login-heading {
  text-transform: uppercase;
}

.mh-user-panel__login {
  padding: 24px;
  background: #f2f2f2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .mh-user-panel__login {
    margin-bottom: 0;
  }
}

.mh-user-panel__reset {
  padding: 24px;
  background: #f2f2f2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .mh-user-panel__reset {
    margin-bottom: 0;
  }
}

.mh-user-panel__register {
  background: #f2f2f2;
  padding: 24px;
  margin-bottom: 24px;
}

.mh-user-panel__user {
  position: relative;
  width: 100%;
  padding: 24px 12px;
  background: #f2f2f2;
  overflow: hidden;
  border-bottom: 2px solid #fff;
}

.mh-user-panel__user img {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: 100px;
  border-radius: 50%;
}

.mh-user-panel__user a + .mh-user-panel__user__content {
  height: 76px;
  padding-left: 112px;
}

.mh-user-panel__user a + .mh-user-panel__user__content span {
  display: inline-block;
  float: left;
  width: 100%;
}

.mh-user-panel__user__content {
  display: table-cell;
  vertical-align: middle;
  padding-left: 0;
  line-height: 1.2;
  font-family: Play, Arial, Helvetica, sans-serif;
  font-weight: 700;
  word-break: break-all;
}

.mh-user-panel__photo-upload {
  background: #f0f0f0;
  padding: 24px;
  margin-bottom: 24px;
}

.mh-user-panel__photo-upload img {
  display: block;
  max-width: 400px;
}

.mh-user-panel-info {
  background: #f1f1f1;
  padding: 24px 24px 0 24px;
  border-left: 3px solid #009fe3;
  margin-bottom: 24px;
}

.mh-user-panel-info:after {
  clear: both;
  content: "";
  display: table;
}

.mh-user-panel-info__heading {
  font-family: Lato, Arial, Helvetica, sans-serif;
  color: #4d4d4d;
}

.mh-user-pagination {
  border-top: 1px solid #f0f0f0;
  text-align: center;
  list-style: none;
}

.mh-user-pagination li {
  display: inline-block;
  padding: 12px;
  margin: 0 6px;
  cursor: pointer;
}

.mh-user-pagination li:hover,
.mh-user-pagination li.mh-user-pagination__element-active {
  color: #009fe3;
}

/* Messages */
.mh-admin-message__success {
  margin-bottom: 24px;
  padding: 24px;
  font-size: 24px;
  font-weight: 400;
  border-left: 7px solid #8dc63f;
  color: #8dc63f;
  background: rgba(141, 198, 63, 0.05);
}

.mh-admin-message__error {
  border-left: 5px solid red;
  background: rgba(255, 0, 0, 0.1);
  padding: 12px;
  margin-bottom: 24px;
}

.mh-user-no-properties {
  font-size: 21px;
}

.mh-user-panel__gallery-image-wrapper {
  display: inline-block;
  position: relative;
}

.mh-user-panel__gallery-image-wrapper img {
  max-width: 290px;
  margin-bottom: 12px;
}

.mh-user-panel-login-only .mh-grid {
  display: block;
}

.mh-user-panel-login-only .mh-grid__1of2 {
  margin: 0 auto !important;
}

.mh-panel-payment-heading {
  display: inline-block;
  margin-bottom: 6px;
}

.mh-panel-payment {
  padding: 24px;
  background: #f7f7f7;
  margin-bottom: 24px;
  min-height: 92px;
}

.mh-panel-payment-info {
  margin-bottom: 24px;
}

.mh-panel-payment-boxes {
  text-align: center;
  width: 100%;
}

.mh-panel-payment-boxes #paypal-button {
  margin-bottom: 24px;
}

.mh-panel-payment-boxes .mdl-button {
  margin-bottom: 24px;
}

#paypal-button {
  background: transparent;
}

.mh-user-panel__video-iframe {
  margin-top: -12px;
  margin-bottom: 24px;
}

.mh-user-panel__video-iframe iframe {
  width: 290px;
  height: 164px;
}

@media (min-width: 768px) {
  .mh-user-panel__video-iframe iframe {
    width: 100%;
    height: 430px;
  }
}

.mh-user-panel__instruction {
  font-style: italic;
  margin-bottom: 12px;
  margin-top: -6px;
}

@media (min-width: 768px) {
  .mh-user-panel__instruction {
    margin-top: -18px;
    margin-bottom: 24px;
  }
}

/* Video wrapper */
.mh-video-wrapper {
  position: relative;
  text-align: center;
}

.mh-video-wrapper:after {
  clear: both;
  content: "";
  display: table;
}

.mh-video-wrapper object,
.mh-video-wrapper embed,
.mh-video-wrapper iframe {
  margin-bottom: 24px;
}

.single-estate .mh-video-wrapper {
  padding-top: 0;
}

.single-estate .mh-video-wrapper .mejs-container {
  max-width: 100%;
  max-height: 434px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.single-estate .mh-video-wrapper .mejs-container-fullscreen {
  max-height: 100%;
}

.single-estate .mh-video-wrapper .wp-video {
  width: 100% !important;
}

/* Widget title */
.mh-widget-title {
  margin-bottom: 12px;
}

.mh-widget-title:after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  .mh-widget-title {
    margin-bottom: 24px;
  }
}

.mh-widget-title__text {
  position: relative;
  text-transform: none;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 0;
  padding-top: 9px;
}

.mh-widget-title__text:after {
  clear: both;
  content: "";
  display: table;
}

.mh-widget-title__text:before {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #009fe3;
  content: "";
}

/*  Owl Carousel */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-item img {
  display: block;
  width: 100%;
  height: 100% !important;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-carousel .owl-nav [class*="owl-"] {
  color: #fff;
  margin: 5px;
  padding: 4px 7px;
  background: #c3c3c5;
  display: inline-block;
  cursor: pointer;
}

.owl-carousel .owl-nav [class*="owl-"]:hover {
  background: #222;
  color: #fff;
  text-decoration: none;
}

.owl-carousel .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-carousel .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  margin-top: 0;
  height: 14px;
  margin-bottom: 24px;
}

.owl-carousel .owl-dots .owl-dot {
  position: relative;
  top: -4px;
  display: inline-block;
  zoom: 1;
}

.owl-carousel .owl-dots .owl-dot span {
  width: 14px;
  height: 14px;
  margin: 0 4px;
  background: #c3c3c5;
  border: 2px solid #c3c3c5;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #009fe3;
  border-color: #009fe3;
}

.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

.owl-carousel .owl-controls {
  position: absolute;
  top: 24px;
  right: 48px;
}

.owl-carousel .owl-carousel-sidebar .owl-controls {
  position: absolute;
  top: 24px;
  right: 24px;
}

.owl-next-prev {
  display: inline-block;
  height: 36px;
}

.owl-next {
  padding: 0;
  min-width: 36px;
  width: 36px;
  font-size: 20px;
  line-height: 36px;
}

.owl-next i {
  position: relative;
  top: -2px;
}

@media (min-width: 768px) {
  .owl-next {
    float: none;
  }
}

/* Tagcloud */
.tagcloud {
  margin-bottom: 16px;
}

.tagcloud a {
  display: inline-block;
  position: relative;
  font-size: 11px !important;
  background: transparent;
  border: 1px solid #999;
  color: #4d4d4d;
  text-transform: uppercase;
  padding: 5px 12px;
  margin: 0 8px 8px 0;
}

.tagcloud a:hover,
.tagcloud a:active,
.tagcloud a:focus {
  color: #fff !important;
  /* background: #009fe3; */
  border-color: #009fe3;
}

/* Widget */
.widget-area,
.widget {
  width: 100%;
  margin-bottom: 36px;
}

.mh-menu ul,
.widget_pages ul,
.widget_meta ul,
.widget_recent_entries ul,
.widget_nav_menu ul,
.widget_categories ul,
.widget_archive ul {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  font-size: 13px;
}

.mh-menu ul li,
.widget_pages ul li,
.widget_meta ul li,
.widget_recent_entries ul li,
.widget_nav_menu ul li,
.widget_categories ul li,
.widget_archive ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mh-menu ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_recent_entries ul li a,
.widget_nav_menu ul li a,
.widget_categories ul li a,
.widget_archive ul li a {
  width: 100%;
  position: relative;
  color: #222;
  display: block;
  padding: 14px 30px 14px 0;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.mh-menu ul li a:before,
.widget_pages ul li a:before,
.widget_meta ul li a:before,
.widget_recent_entries ul li a:before,
.widget_nav_menu ul li a:before,
.widget_categories ul li a:before,
.widget_archive ul li a:before {
  position: absolute;
  left: -12px;
  top: 50%;
  background: #009fe3;
  height: 2px;
  width: 12px;
  content: "";
  display: block;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media (min-width: 1025px) {
  .mh-menu ul li a:hover,
  .widget_pages ul li a:hover,
  .widget_meta ul li a:hover,
  .widget_recent_entries ul li a:hover,
  .widget_nav_menu ul li a:hover,
  .widget_categories ul li a:hover,
  .widget_archive ul li a:hover {
    padding-left: 30px;
    padding-right: 0px;
    color: #000;
  }

  .mh-menu ul li a:hover:before,
  .widget_pages ul li a:hover:before,
  .widget_meta ul li a:hover:before,
  .widget_recent_entries ul li a:hover:before,
  .widget_nav_menu ul li a:hover:before,
  .widget_categories ul li a:hover:before,
  .widget_archive ul li a:hover:before {
    left: 0;
  }
}

.mh-menu ul li ul,
.widget_pages ul li ul,
.widget_meta ul li ul,
.widget_recent_entries ul li ul,
.widget_nav_menu ul li ul,
.widget_categories ul li ul,
.widget_archive ul li ul {
  padding-left: 18px;
}

.mh-menu > ul > li:last-child a,
.widget_pages > ul > li:last-child a,
.widget_meta > ul > li:last-child a,
.widget_recent_entries > ul > li:last-child a,
.widget_nav_menu > ul > li:last-child a,
.widget_categories > ul > li:last-child a,
.widget_archive > ul > li:last-child a {
  border-bottom: none;
}

.mh-widget-title + ul {
  margin-top: -15px;
  margin-bottom: -15px;
}

.widget.widget_tag_cloud {
  margin-bottom: 28px;
}

.mh-layout__sidebar-left ul,
.mh-layout__sidebar-right ul {
  font-size: 16px;
}

/* Widget - fix "Show post counts" */
.widget_categories ul li,
.widget_archive ul li {
  min-height: 48px;
  text-align: right;
  padding-top: 15px;
}

.widget_categories ul li a,
.widget_archive ul li a {
  position: absolute;
  left: 0;
  top: 0;
  text-align: left;
}

.widget_categories .children,
.widget_archive .children {
  margin-top: 16px;
}

/* Widget Calendar */
.calendar_wrap table {
  table-layout: fixed;
  word-wrap: normal;
  width: 100%;
  border: 0;
}

.calendar_wrap table td,
.calendar_wrap table th {
  border: 0;
  padding: 6px;
}

.calendar_wrap table caption {
  font-size: 13px;
  text-align: right;
  font-weight: 400;
  height: 24px;
  color: #222;
  margin-bottom: 6px;
}

.calendar_wrap table thead {
  border-top: 1px solid #c3c3c5;
  border-bottom: 1px solid #c3c3c5;
}

.calendar_wrap table thead th {
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}

.calendar_wrap table tbody {
  cursor: default;
}

.calendar_wrap table tbody td {
  text-align: center;
  position: relative;
}

.calendar_wrap table tbody a {
  display: block;
  color: #fff;
  background: #4d4d4d;
  line-height: 31px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-weight: 400;
  -webkit-transition: 0s ease-in-out;
  -moz-transition: 0s ease-in-out;
  -ms-transition: 0s ease-in-out;
  -o-transition: 0s ease-in-out;
  transition: 0s ease-in-out;
}

.calendar_wrap table tbody a:hover {
  background: #009fe3;
  color: #fff;
}

tbody tr {
  text-align: center;
  font-size: 13px;
}

tfoot {
  border-top: 1px solid #c3c3c5;
  padding-top: 10px;
}

tfoot a {
  font-size: 13px;
  font-weight: 400;
}

#prev {
  line-height: 36px;
  text-align: left;
  padding: 0;
}

#prev a {
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

#prev a:hover {
  color: #009fe3;
}

#next {
  line-height: 36px;
  text-align: right;
  padding: 0;
}

#next a {
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

#next a:hover {
  color: #009fe3;
}

#today {
  font-weight: 400;
  background: #009fe3;
  color: #fff;
}

@media (max-width: 991px) {
  .calendar_wrap {
    padding: 0 15px;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Widget Comments */
.widget_recent_comments ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.recentcomments {
  padding: 12px 0 11px 0;
  border-bottom: 1px solid #f0f0f0;
  font-style: italic;
}

.recentcomments .comment-author-link {
  position: relative !important;
}

.recentcomments:first-child {
  padding-top: 0;
}

.recentcomments:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}

.recentcomments a:hover {
  color: #009fe3;
}

/* Widget Facebook */
.mh-widget-facebook {
  text-align: center;
}

.mh-widget-facebook iframe {
  border: none !important;
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .mh-widget-facebook {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Widget Infobox */
.widget-infobox .mdl-button {
  margin-bottom: 0;
}

.widget-infobox__image-wrapper {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  display: block;
}

.widget-infobox__image-wrapper:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  height: 100%;
  opacity: 0;
  width: 100%;
  background: #000;
  -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1025px) {
  .widget-infobox__image-wrapper:hover:after {
    opacity: 0.3;
  }
}

.widget-infobox__image {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  margin-bottom: 12px;
}

.widget-infobox__text {
  margin-bottom: 24px;
  font-style: italic;
}

/* Widget RSS */
.widget_rss {
  overflow: hidden;
}

.widget_rss ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.widget_rss ul li {
  margin: 0;
  padding-bottom: 36px;
  border-bottom: 1px solid #f0f0f0;
  padding: 16px 0;
}

.widget_rss ul li:after {
  clear: both;
  content: "";
  display: table;
}

.widget_rss ul li a {
  font-size: 16px;
}

.widget_rss ul li:first-child {
  padding-top: 0;
}

.widget_rss ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.widget_rss .rsswidget {
  display: block;
  margin-bottom: 12px;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
  transition: 0s;
}

.widget_rss .rss-date {
  display: block;
  font-size: 13px;
  margin-bottom: 12px;
}

.widget_rss cite {
  font-size: 13px;
}

.widget_rss .rssSummary {
  margin-bottom: 12px;
}

.rsswidget:hover {
  color: #009fe3;
}

/* Widget Search */
.widget_search {
  margin-right: 50px;
}

.widget_search:after {
  clear: both;
  content: "";
  display: table;
}

.widget_search input.search-field {
  text-align: left !important;
  border-right: 0px solid #fff !important;
}

.widget_search .mdl-button {
  position: absolute;
  top: 0;
  min-width: 46px;
  right: -46px;
  height: 46px;
  line-height: 46px;
}

.widget_search .search-form {
  margin-right: 46px;
  position: relative;
}

/* Widget Twitter */
.mh-widget-twitter {
  color: #607d8a;
}

.mh-widget-twitter .tweet {
  position: relative;
  padding-left: 30px;
  margin-bottom: 24px;
}

.mh-widget-twitter .tweet:last-child {
  margin-bottom: 0;
}

@media (min-width: 1025px) {
  .mh-widget-twitter .tweet a:hover {
    text-decoration: underline;
  }
}

.mh-widget-twitter .tweet:before {
  content: url("assets/images/twitter.png");
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
}

/* Load at the end - helper classes */
/* Font color */
.mh-color-white {
  color: #fff !important;
}

.mh-color-dark {
  color: #222 !important;
}

.mh-color-primary {
  color: #009fe3 !important;
}

/* Background color */
.mh-background-color-dark {
  background: #222 !important;
}

.mh-background-color-white {
  background: #fff !important;
}

.mh-background-color-transparent {
  background: transparent !important;
}

.mh-background-color-primary {
  background: #009fe3 !important;
}

.mh-background-cover {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  background-position: center center !important;
}

.mh-background-fixed {
  background-position: center center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  position: relative;
}

/* Border */
.mh-border-color-primary {
  border-color: #009fe3 !important;
}

.mh-border-solid {
  border-style: solid !important;
}

.mh-border-dashed {
  border-style: dashed !important;
}

.mh-border-double {
  border-style: double !important;
}

.mh-border-dotted {
  border-style: dotted !important;
}

/* Font size */
.mh-font-size-xxxl {
  font-size: 48px !important;
}

.mh-font-size-xxl {
  font-size: 36px !important;
}

.mh-font-size-xl {
  font-size: 32px !important;
}

.mh-font-size-l {
  font-size: 24px !important;
}

.mh-font-size-m {
  font-size: 21px !important;
}

.mh-font-size-s {
  font-size: 16px !important;
}

.mh-font-size-xs {
  font-size: 13px !important;
}

/* Margins */
.mh-margin-bottom-small {
  margin-bottom: 24px !important;
}

.mh-margin-bottom-big {
  margin-bottom: 36px !important;
}

.mh-margin-top-big {
  margin-top: 36px !important;
}

.mh-margin-top-small {
  margin-top: 24px !important;
}

/* Padding */
.mh-padding-top-big {
  padding-top: 36px !important;
}

.mh-padding-top-small {
  padding-top: 24px !important;
}

.mh-padding-bottom-big {
  padding-bottom: 36px !important;
}

.mh-padding-bottom-small {
  padding-bottom: 24px !important;
}

/* Other */
.mh-font-body {
  font-family: Lato, Arial, Helvetica, sans-serif;
}

.mh-mask-dark {
  background: rgba(0, 0, 0, 0.1);
}

.mh-mask-strong-dark {
  background: rgba(0, 0, 0, 0.45);
}

.display-inline {
  display: inline !important;
}

.no-gutter {
  padding: 0 !important;
  margin: 0 !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-relative {
  position: relative !important;
}

.overflow-initial {
  overflow: initial !important;
}

.float-none {
  float: none !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .mh-display-mobile {
    display: none;
  }
}

.mh-display-desktop {
  display: none;
}

@media (min-width: 768px) {
  .mh-display-desktop {
    display: block;
  }
}

.link-primary:hover {
  color: #009fe3;
}

.font-weight-700 {
  font-weight: 700 !important;
}

/*** Extra tyle ***/

.advance_show,
#hide_btn,
#ml-listing_pages {
  display: none;
}
.changecheck span {
  height: 14px;
  width: 14px;
  border: 2px solid #666666;
  display: inline-block;
  position: relative;
  vertical-align: sub;
  margin-right: 10px;
  top: -2px;
}
.mh-search__panel__checkbox {
  padding-right: 10px;
}
.mh-search__panel__checkbox label {
  text-transform: uppercase;
  font-weight: 400;
  color: #666666;
  font-size: 13px;
}
.editcheckhide {
  display: none;
}
.changecheck [type="checkbox"]:checked + span:before {
  content: "\2714";
  position: absolute;
  top: -3px;
  left: 0px;
  font-size: 12px;
  color: #333;
  font-weight: 300;
}
.vc_custom_bg {
  background-color: #f2f2f2;
  padding-top: 39px;
  padding-bottom: 24px;
  margin-bottom: 30px;
}
.vc_column_container > .vc_column-inner {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}
.carousel-control {
  top: 45%;
  background-color: transparent;
  background-image: none;
  text-shadow: none;
}
.carousel-control.left,
.carousel-control.right {
  background-image: none;
  opacity: 1;
}
.carousel-control.left {
  text-align: left;
  padding-left: 15px;
}
.carousel-control.right {
  text-align: right;
  padding-right: 15px;
}
.carousel-control span {
  background: rgba(255, 255, 255, 0.7);
  width: 48px;
  height: 48px;
  display: inline-block;
  color: #222;
  font-size: 27px;
  line-height: 48px;
  text-align: center;
}
.carousel-control span:hover {
  background-color: #29aae3;
  color: #fff;
}

.carousel-caption {
  position: relative;
  left: 0;
  right: 0;
  margin-top: -31.7%;
  text-align: left;
  text-shadow: none;
  width: 46%;
}

/**** Product Details Slider ***/

.product_dtls_slider .carousel-indicators {
  /*position: relative;
    bottom: 0px;
    left: 0;
    z-index: 15;
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    text-align: left;*/
}
.product_dtls_slider .carousel-indicators li {
  width: 19.6%;
  height: 123px;
  border: none;
  padding-right: 10px;
  opacity: 0.5;
  margin: 0px 0 0 0;
  overflow: hidden;
  border-radius: 0;
}
.product_dtls_slider .carousel-indicators li img {
  max-height: 123px;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.product_dtls_slider .carousel-indicators li:last-child {
  /*padding-right: 0;*/
}
.product_dtls_slider .carousel-indicators .active {
  /*width: 19.6%;
    height: 123px;
    border: none;*/
  opacity: 1;
}
.product_dtls_slider .carousel-inner > .item {
  height: 450px;
  overflow: hidden;
  text-align: center;
}
.product_dtls_slider .carousel-inner > .item img {
  max-height: 450px;
  object-fit: cover;
  height: 100%;
  display: inline;
  width: 100%;
}

/**** G-captha ***/

.g-recaptcha {
  width: 100%;
}
.g-recaptcha > iframe {
  width: 100%;
  height: 77px;
}
.g-recaptcha .rc-anchor-normal {
  width: 283px !important;
}
.g-recaptcha > div {
  width: 100% !important;
  height: 75px !important;
  border-right: 1px solid #d3d3d3;
}
.rc-anchor-normal .rc-anchor-checkbox-label {
  width: auto !important;
}
.rc-anchor-normal .rc-anchor-content {
  width: 60% !important;
}
.rc-anchor-normal-footer {
  width: 40% !important;
}
.rc-anchor-logo-portrait {
  margin: 10px 0 0 0px !important;
  width: auto !important;
}
.homeslider {
}
.homeslider .item {
  height: 600px;
  overflow: hidden;
}

.homeslider .item img {
  max-height: 600px;
  object-fit: cover;
  height: 100%;
  display: inline;
  width: 100%;
}
.sp-testimonial-section.owl-carousel .owl-controls {
  top: 40%;
  right: 0;
  width: 100%;
}
.mh-grid__1of3 .mh-thumbnail__inner {
  height: 232px;
  overflow: hidden;
  display: inline;
  width: 100%;
}
.mh-grid__1of3 .mh-thumbnail__inner img {
  max-height: 232px;
  object-fit: cover;
  height: 100%;
  display: inline;
  width: 100%;
}
.mh-grid__1of2 .mh-thumbnail__inner {
  height: 353px;
  overflow: hidden;
  display: inline;
  width: 100%;
}
.mh-grid__1of2 .mh-thumbnail__inner img {
  max-height: 353px;
  object-fit: cover;
  height: 100%;
  display: inline;
  width: 100%;
}

.propertylocation .mh-map-infobox {
  width: 400px;
  margin-top: 0;
}
.mh-map-infobox .mh-map-infobox__img-wrapper img {
  max-height: 160px;
  object-fit: cover;
  height: 100%;
  display: inline;
  width: 100%;
}
.propertylocation .mh-map-infobox:after {
  bottom: 0;
  position: relative;
  border: none;
}
.gm-style .gm-style-iw {
  width: 100% !important;
  /*FALLO PLANTILLA *height: 100% !important; */
  top: 0 !important;
  left: 0 !important;
}

.nopost_coment {
  font-weight: 700;
  margin: 0 0 24px 0;
  padding: 0;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.2;
  font-family: Play, Arial, Helvetica, sans-serif;
}
img.ls-l.ls-preloaded {
  width: auto !important;
  height: auto !important;
}

#flexiselDemo1,
#flexiselDemo2,
#flexiselDemo3 {
  display: none;
}

.nbs-flexisel-container {
  position: relative;
  max-width: 100%;
}
.nbs-flexisel-ul {
  position: relative;
  width: 99999px;
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  text-align: center;
}

.nbs-flexisel-inner {
  position: relative;
  overflow: hidden;
  float: left;
  width: 100%;
  margin-top: 15px;
}

.nbs-flexisel-item {
  float: left;
  margin: 0px;
  padding: 0 10px 0 0;
  cursor: pointer;
  position: relative;
  line-height: 0px;
  height: 123px;
  overflow: hidden;
}
.nbs-flexisel-item img {
  max-width: 100%;
  cursor: pointer;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  min-height: 123px;
  object-fit: cover;
  height: 100%;
}

/*** Navigation ***/

.nbs-flexisel-nav-left,
.nbs-flexisel-nav-right {
  padding: 5px 10px;
  border-radius: 0;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0;
  position: absolute;
  cursor: pointer;
  z-index: 9999;
  height: 84%;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 85px;
  font-family: FontAwesome;
}
.nbs-flexisel-nav-left:hover,
.nbs-flexisel-nav-right:hover {
  background-color: #29aae3;
}

.nbs-flexisel-nav-left {
  left: 0px;
}

.nbs-flexisel-nav-left:before {
  content: "\f104";
}

.nbs-flexisel-nav-left.disabled {
  opacity: 0.4;
}

.nbs-flexisel-nav-right {
  right: 0px;
}

.nbs-flexisel-nav-right:before {
  content: "\f105";
}

.nbs-flexisel-nav-right.disabled {
  opacity: 0.4;
}
.small-text {
  color: #f0f0f0;
}
i.flaticon-pin {
  color: #f0f0f0;
}
.siguiente_foto,
.anterior_foto {
  font-size: 40px;
  text-shadow: 0px 0px 2px #000;
  cursor: pointer;
  z-index: 2;
  color: #fff;
  top: 80px;
  position: absolute;
}
.siguiente_foto {
  right: 10px;
}
.anterior_foto {
  left: 10px;
}
.siguiente_foto_listado,
.anterior_foto_listado {
  top: 110px;
}
#testimonial .description {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-align: left;
  overflow: hidden;
}

/* VIDEO */
#custom-sized-video {
  width: 100% !important;
  max-height: 70vh;
  object-fit: cover;
}

.mh-top-title {
  margin-bottom: 0 !important;
}

.ajuste_buscador {
  margin-top: -5vh !important;
}

.video_top {
  width: 100%;
  height: 80vh !important;
}

#menu-item-logo,
#menu-item-logo:focus,
#menu-item-logo > a,
#menu-item-logo > a:focus {
  outline: none !important;
  background-color: transparent !important;
}

.navbar_mobile_video_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ocultar */
.hide {
  display: none;
}
.ribbon {
  position: absolute;
  top: 15px;
  left: -40px;
  background-color: red;
  color: white;
  padding: 5px 40px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transform: rotate(-45deg);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.mh-estate-vertical {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.mh-estate-vertical:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Ocultar en mobile */
@media (max-width: 1022px) {
  .hide_in_mobile {
    display: none !important;
  }

  /* #custom-sized-video {
        width: 100% !important;
    } */
}

/* Ocultat en desktop */
@media (min-width: 1022px) {
  .hide_in_desktop {
    display: none !important;
  }
}

