
/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
a.afc_std_close {
	cursor: pointer;
}

@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}

.animated.infinite {
	animation-iteration-count: infinite;
}

.animated.hinge {
	animation-duration: 2s;
}

.animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
	animation-duration: .75s;
}

@keyframes bounce {
	from, 20%, 53%, 80%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translate3d(0, 0, 0);
	}
	
	40%, 43% {
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -30px, 0);
	}
	
	70% {
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -15px, 0);
	}
	
	90% {
		transform: translate3d(0, -4px, 0);
	}
}

.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}

@keyframes flash {
	from, 50%, to {
		opacity: 1;
	}
	
	25%, 75% {
		opacity: 0;
	}
}

.flash {
	animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
	from {
		transform: scale3d(1, 1, 1);
	}
	
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	
	to {
		transform: scale3d(1, 1, 1);
	}
}

.pulse {
	animation-name: pulse;
}

@keyframes rubberBand {
	from {
		transform: scale3d(1, 1, 1);
	}
	
	30% {
		transform: scale3d(1.25, .75, 1);
	}
	
	40% {
		transform: scale3d(.75, 1.25, 1);
	}
	
	50% {
		transform: scale3d(1.15, .85, 1);
	}
	
	65% {
		transform: scale3d(.95, 1.05, 1);
	}
	
	75% {
		transform: scale3d(1.05, .95, 1);
	}
	
	to {
		transform: scale3d(1, 1, 1);
	}
}

.rubberBand {
	animation-name: rubberBand;
}

@keyframes shake {
	from, to {
		transform: translate3d(0, 0, 0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(-10px, 0, 0);
	}
	
	20%, 40%, 60%, 80% {
		transform: translate3d(10px, 0, 0);
	}
}

.shake {
	animation-name: shake;
}

@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	
	50% {
		transform: translateX(0);
	}
}

.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake;
}

@keyframes swing {
	20% {
		transform: rotate3d(0, 0, 1, 15deg);
	}
	
	40% {
		transform: rotate3d(0, 0, 1, -10deg);
	}
	
	60% {
		transform: rotate3d(0, 0, 1, 5deg);
	}
	
	80% {
		transform: rotate3d(0, 0, 1, -5deg);
	}
	
	to {
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

.swing {
	transform-origin: top center;
	animation-name: swing;
}

@keyframes tada {
	from {
		transform: scale3d(1, 1, 1);
	}
	
	10%, 20% {
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	
	30%, 50%, 70%, 90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	
	40%, 60%, 80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	
	to {
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
	from {
		transform: none;
	}
	
	15% {
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}
	
	30% {
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}
	
	45% {
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}
	
	60% {
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}
	
	75% {
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}
	
	to {
		transform: none;
	}
}

.wobble {
	animation-name: wobble;
}

@keyframes jello {
	from, 11.1%, to {
		transform: none;
	}
	
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	
	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg);
	}
	
	77.7% {
		transform: skewX(.390625deg) skewY(.390625deg);
	}
	
	88.8% {
		transform: skewX(-.1953125deg) skewY(-.1953125deg);
	}
}

.jello {
	animation-name: jello;
	transform-origin: center;
}

@keyframes bounceIn {
	from, 20%, 40%, 60%, 80%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	
	40% {
		transform: scale3d(.9, .9, .9);
	}
	
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	
	80% {
		transform: scale3d(.97, .97, .97);
	}
	
	to {
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	animation-name: bounceIn;
}

@keyframes bounceInDown {
	from, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	
	75% {
		transform: translate3d(0, -10px, 0);
	}
	
	90% {
		transform: translate3d(0, 5px, 0);
	}
	
	to {
		transform: none;
	}
}

.bounceInDown {
	animation-name: bounceInDown;
}

@keyframes bounceInLeft {
	from, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	
	90% {
		transform: translate3d(5px, 0, 0);
	}
	
	to {
		transform: none;
	}
}

.bounceInLeft {
	animation-name: bounceInLeft;
}

@keyframes bounceInRight {
	from, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	from {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	
	75% {
		transform: translate3d(10px, 0, 0);
	}
	
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	
	to {
		transform: none;
	}
}

.bounceInRight {
	animation-name: bounceInRight;
}

@keyframes bounceInUp {
	from, 60%, 75%, 90%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	from {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	
	75% {
		transform: translate3d(0, 10px, 0);
	}
	
	90% {
		transform: translate3d(0, -5px, 0);
	}
	
	to {
		transform: translate3d(0, 0, 0);
	}
}

.bounceInUp {
	animation-name: bounceInUp;
}

@keyframes bounceOut {
	20% {
		transform: scale3d(.9, .9, .9);
	}
	
	50%, 55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	
	to {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
}

.bounceOut {
	animation-name: bounceOut;
}

@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.bounceOutDown {
	animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

.bounceOutLeft {
	animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

.bounceOutRight {
	animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	
	40%, 45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

.bounceOutUp {
	animation-name: bounceOutUp;
}

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

.fadeIn {
	animation-name: fadeIn;
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInDown {
	animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
	from {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInDownBig {
	animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInRightBig {
	animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
	from {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUpBig {
	animation-name: fadeInUpBig;
}

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

.fadeOut {
	animation-name: fadeOut;
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}

.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}

.fadeOutLeft {
	animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}

.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}

.fadeOutRight {
	animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}

.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}

.fadeOutUp {
	animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}

.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}

@keyframes flip {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		animation-timing-function: ease-out;
	}
	
	40% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		animation-timing-function: ease-out;
	}
	
	50% {
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		animation-timing-function: ease-in;
	}
	
	80% {
		transform: perspective(400px) scale3d(.95, .95, .95);
		animation-timing-function: ease-in;
	}
	
	to {
		transform: perspective(400px);
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip;
}

@keyframes flipInX {
	from {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	
	40% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		animation-timing-function: ease-in;
	}
	
	60% {
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}
	
	80% {
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}
	
	to {
		transform: perspective(400px);
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX;
}

@keyframes flipInY {
	from {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	
	40% {
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		animation-timing-function: ease-in;
	}
	
	60% {
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}
	
	80% {
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}
	
	to {
		transform: perspective(400px);
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY;
}

@keyframes flipOutX {
	from {
		transform: perspective(400px);
	}
	
	30% {
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}
	
	to {
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

.flipOutX {
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@keyframes flipOutY {
	from {
		transform: perspective(400px);
	}
	
	30% {
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}
	
	to {
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}

@keyframes lightSpeedIn {
	from {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	
	60% {
		transform: skewX(20deg);
		opacity: 1;
	}
	
	80% {
		transform: skewX(-5deg);
		opacity: 1;
	}
	
	to {
		transform: none;
		opacity: 1;
	}
}

.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}
	
	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}

@keyframes rotateIn {
	from {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}
	
	to {
		transform-origin: center;
		transform: none;
		opacity: 1;
	}
}

.rotateIn {
	animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
	
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownRight {
	animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
	from {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
	
	to {
		transform-origin: left bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
	from {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}
	
	to {
		transform-origin: right bottom;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpRight {
	animation-name: rotateInUpRight;
}

@keyframes rotateOut {
	from {
		transform-origin: center;
		opacity: 1;
	}
	
	to {
		transform-origin: center;
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}

.rotateOut {
	animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}
	
	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}
	
	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
	from {
		transform-origin: left bottom;
		opacity: 1;
	}
	
	to {
		transform-origin: left bottom;
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
	from {
		transform-origin: right bottom;
		opacity: 1;
	}
	
	to {
		transform-origin: right bottom;
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}

@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	
	20%, 60% {
		transform: rotate3d(0, 0, 1, 80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	
	40%, 80% {
		transform: rotate3d(0, 0, 1, 60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

.hinge {
	animation-name: hinge;
}

@keyframes jackInTheBox {
	from {
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom;
	}
	
	50% {
		transform: rotate(-10deg);
	}
	
	70% {
		transform: rotate(3deg);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.jackInTheBox {
	animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
	from {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}
	
	to {
		opacity: 1;
		transform: none;
	}
}

.rollIn {
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
	from {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

.rollOut {
	animation-name: rollOut;
}

@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	
	50% {
		opacity: 1;
	}
}

.zoomIn {
	animation-name: zoomIn;
}

@keyframes zoomInDown {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

.zoomInDown {
	animation-name: zoomInDown;
}

@keyframes zoomInLeft {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

.zoomInLeft {
	animation-name: zoomInLeft;
}

@keyframes zoomInRight {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

.zoomInRight {
	animation-name: zoomInRight;
}

@keyframes zoomInUp {
	from {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

.zoomInUp {
	animation-name: zoomInUp;
}

@keyframes zoomOut {
	from {
		opacity: 1;
	}
	
	50% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	
	to {
		opacity: 0;
	}
}

.zoomOut {
	animation-name: zoomOut;
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

.zoomOutDown {
	animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
	}
	
	to {
		opacity: 0;
		transform: scale(.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}

.zoomOutLeft {
	animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
	}
	
	to {
		opacity: 0;
		transform: scale(.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}

.zoomOutRight {
	animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
	}
	
	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
	}
}

.zoomOutUp {
	animation-name: zoomOutUp;
}

@keyframes slideInDown {
	from {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	
	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	animation-name: slideInDown;
}

@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	
	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	animation-name: slideInLeft;
}

@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	
	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	animation-name: slideInRight;
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	
	to {
		transform: translate3d(0, 0, 0);
	}
}

.slideInUp {
	animation-name: slideInUp;
}

@keyframes slideOutDown {
	from {
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	animation-name: slideOutDown;
}

@keyframes slideOutLeft {
	from {
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}

.slideOutLeft {
	animation-name: slideOutLeft;
}

@keyframes slideOutRight {
	from {
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}

.slideOutRight {
	animation-name: slideOutRight;
}

@keyframes slideOutUp {
	from {
		transform: translate3d(0, 0, 0);
	}
	
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}

.slideOutUp {
	animation-name: slideOutUp;
}

.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em .5em 1em;
	padding: .2em 1em;
	border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output, .wpcf7 form.resetting .wpcf7-response-output, .wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450;
}

.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900;
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232;
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d;
	opacity: .75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: "";
	position: absolute;
	background-color: #fbfbfc;
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	
	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}
	
	50% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: .5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}

.wpa-test-msg {
	background: #d1ecf1 !important;
	border: 1px solid #bee5eb !important;
	border-radius: 5px !important;
	color: #0c5460 !important;
	font-size: 14px !important;
	padding: .75rem 1.25rem !important;
	font-family: Arial !important;
	margin-top: 5px !important;
}

span.wpa-button {
	display: inline-block !important;
	padding-top: 5px !important;
	color: #fff !important;
	background-color: #6c757d !important;
	border-color: #6c757d !important;
	padding: 5px 10px !important;
	border-radius: 5px !important;
	margin-top: 5px !important;
	cursor: pointer !important;
}

#altEmail_container, .altEmail_container {
	position: absolute !important;
	overflow: hidden !important;
	display: inline !important;
	height: 1px !important;
	width: 1px !important;
	z-index: -1000 !important;
}

/** Thursday 18th July 2024 16:33:35 UTC (core) **/

/** THIS FILE IS AUTOMATICALLY GENERATED - DO NOT MAKE MANUAL EDITS! **/

/** Custom CSS should be added to Mega Menu > Menu Themes > Custom Styling **/
.mega-menu-last-modified-1721320415 {
	content: "Thursday 18th July 2024 16:33:35 UTC";
}

#mega-menu-wrap-my-custom-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-row, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-column, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu span.mega-menu-badge {
	transition: none;
	border-radius: 0;
	box-shadow: none;
	background: none;
	border: 0;
	bottom: auto;
	box-sizing: border-box;
	clip: auto;
	color: #666;
	display: block;
	float: none;
	font-family: inherit;
	font-size: 14px;
	height: auto;
	left: auto;
	line-height: 1.7;
	list-style-type: none;
	margin: 0;
	min-height: auto;
	max-height: none;
	min-width: auto;
	max-width: none;
	opacity: 1;
	outline: none;
	overflow: visible;
	padding: 0;
	position: relative;
	pointer-events: auto;
	right: auto;
	text-align: left;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	transform: none;
	top: auto;
	vertical-align: baseline;
	visibility: inherit;
	width: auto;
	word-wrap: break-word;
	white-space: normal;
}

#mega-menu-wrap-my-custom-menu:before, #mega-menu-wrap-my-custom-menu:after, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu:before, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu:after, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu ul.mega-sub-menu:before, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu ul.mega-sub-menu:after, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item:before, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item:after, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-row:before, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-row:after, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-column:before, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-column:after, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link:before, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link:after, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu span.mega-menu-badge:before, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu span.mega-menu-badge:after {
	display: none;
}

#mega-menu-wrap-my-custom-menu {
	border-radius: 0;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu {
		background: #222;
	}
}

#mega-menu-wrap-my-custom-menu.mega-keyboard-navigation .mega-menu-toggle:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation .mega-toggle-block:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation .mega-toggle-block a:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation .mega-toggle-block .mega-search input[type=text]:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation #mega-menu-my-custom-menu a:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation #mega-menu-my-custom-menu span:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation #mega-menu-my-custom-menu input:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation #mega-menu-my-custom-menu li.mega-menu-item a.mega-menu-link:focus, #mega-menu-wrap-my-custom-menu.mega-keyboard-navigation #mega-menu-my-custom-menu form.mega-search-open:has(input[type=text]:focus) {
	outline-style: solid;
	outline-width: 3px;
	outline-color: #109cde;
	outline-offset: -3px;
}

#mega-menu-wrap-my-custom-menu.mega-keyboard-navigation .mega-toggle-block button.mega-toggle-animated:focus {
	outline-offset: 2px;
}

#mega-menu-wrap-my-custom-menu.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
	background: #333;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	border-color: #fff;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu.mega-keyboard-navigation > li.mega-menu-item > a.mega-menu-link:focus {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu {
	text-align: left;
	padding: 0px 0px 0px 0px;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link {
	cursor: pointer;
	display: inline;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link .mega-description-group {
	vertical-align: middle;
	display: inline-block;
	transition: none;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link .mega-description-group .mega-menu-title, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link .mega-description-group .mega-menu-description {
	transition: none;
	line-height: 1.5;
	display: block;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link .mega-description-group .mega-menu-description {
	font-style: italic;
	font-size: .8em;
	text-transform: none;
	font-weight: normal;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
	align-items: center;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link:before {
	flex: 0 0 auto;
	align-self: flex-start;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-tabbed.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: block;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link {
	display: table-cell;
	vertical-align: middle;
	line-height: initial;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
	display: block;
	margin: 0 0 6px 0;
	text-align: center;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-icon-top > a.mega-menu-link > span.mega-title-below {
	display: inline-block;
	transition: none;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link {
		display: block;
		line-height: 40px;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-icon-top > a.mega-menu-link:before {
		display: inline-block;
		margin: 0 6px 0 0;
		text-align: left;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-icon-right > a.mega-menu-link:before {
	float: right;
	margin: 0 0 0 6px;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-animating > ul.mega-sub-menu {
	pointer-events: none;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu li.mega-disable-link > a.mega-menu-link {
	cursor: inherit;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > li.mega-menu-item-has-children.mega-disable-link > a.mega-menu-link {
	cursor: pointer;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu p {
	margin-bottom: 10px;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu input, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu img {
	max-width: 100%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item > ul.mega-sub-menu {
	display: block;
	visibility: hidden;
	opacity: 1;
	pointer-events: auto;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item > ul.mega-sub-menu {
		display: none;
		visibility: visible;
		opacity: 1;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on ul.mega-sub-menu {
		display: block;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu.mega-menu-item.mega-toggle-on li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-hide-sub-menu-on-mobile > ul.mega-sub-menu {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade"] li.mega-menu-item > ul.mega-sub-menu {
		opacity: 0;
		transition: opacity 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		opacity: 0;
		transform: translate(0, 10px);
		transition: opacity 200ms ease-in, transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="fade_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		opacity: 1;
		transform: translate(0, 0);
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-flyout ul.mega-sub-menu {
		transform: translate(0, 10px);
		transition: transform 200ms ease-in, visibility 200ms ease-in;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="slide_up"].mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="slide_up"].mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="slide_up"] li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu[data-effect="slide_up"] li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {
		transform: translate(0, 0);
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children > ul.mega-sub-menu {
	display: none;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-collapse-children.mega-toggle-on > ul.mega-sub-menu {
	display: block;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu {
	visibility: visible;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu ul.mega-sub-menu {
	visibility: inherit;
	opacity: 1;
	display: block;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-1-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 100%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-2-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 50%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-3-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 33.3333333333%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-4-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 25%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-5-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 20%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-menu-megamenu ul.mega-sub-menu li.mega-6-columns > ul.mega-sub-menu > li.mega-menu-item {
	float: left;
	width: 16.6666666667%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item a[class^="dashicons"]:before {
	font-family: dashicons;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item a.mega-menu-link:before {
	display: inline-block;
	font: inherit;
	font-family: dashicons;
	position: static;
	margin: 0 6px 0 0px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: inherit;
	background: transparent;
	height: auto;
	width: auto;
	top: auto;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-hide-text a.mega-menu-link:before {
	margin: 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item.mega-hide-text li.mega-menu-item a.mega-menu-link:before {
	margin: 0 6px 0 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {
	border-radius: 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-align-bottom-right > ul.mega-sub-menu {
	right: 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {
	border-radius: 0;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu.mega-menu-item {
		position: static;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item {
	margin: 0 0px 0 0;
	display: inline-block;
	height: auto;
	vertical-align: middle;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-item-align-right {
	float: right;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-item-align-right {
		margin: 0 0 0 0px;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-item-align-float-left {
		float: left;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item > a.mega-menu-link:focus {
		background: #333;
		color: #fff;
		font-weight: normal;
		text-decoration: none;
		border-color: #fff;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
	background: #333;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	border-color: #fff;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-toggle-on > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
	background: #333;
	color: #fff;
	font-weight: normal;
	text-decoration: none;
	border-color: #fff;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
		color: #fff;
		background: #333;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item > a.mega-menu-link {
	line-height: 40px;
	height: 40px;
	padding: 0px 10px 0px 10px;
	vertical-align: baseline;
	width: auto;
	display: block;
	color: #fff;
	text-transform: none;
	text-decoration: none;
	text-align: left;
	background: rgba(0, 0, 0, 0);
	border: 0;
	border-radius: 0;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	outline: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link {
		line-height: inherit;
		display: table-cell;
		vertical-align: middle;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-multi-line > a.mega-menu-link br {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item {
		display: list-item;
		margin: 0;
		clear: both;
		border: 0;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item.mega-item-align-right {
		float: none;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-item > a.mega-menu-link {
		border-radius: 0;
		border: 0;
		margin: 0;
		line-height: 40px;
		height: 40px;
		padding: 0 10px;
		background: transparent;
		text-align: left;
		color: #fff;
		font-size: 14px;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row {
	width: 100%;
	float: left;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column {
	float: left;
	min-height: 1px;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row > ul.mega-sub-menu > li.mega-menu-column {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-row .mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	padding: 15px 15px 15px 15px;
	width: 100%;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
	z-index: 999;
	border-radius: 0;
	background: #f1f1f1;
	border: 0;
	padding: 0px 0px 0px 0px;
	position: absolute;
	width: 100%;
	max-width: none;
	left: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-1 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-2 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-2 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-3 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-3 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-3 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-4 {
		width: 25%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-4 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-4 {
		width: 75%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-4 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-5 {
		width: 20%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-5 {
		width: 40%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-5 {
		width: 60%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-5 {
		width: 80%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-5 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-6 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-6 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-6 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-6 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-6 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-6 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-7 {
		width: 14.2857142857%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-7 {
		width: 28.5714285714%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-7 {
		width: 42.8571428571%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-7 {
		width: 57.1428571429%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-7 {
		width: 71.4285714286%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-7 {
		width: 85.7142857143%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-7 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-8 {
		width: 12.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-8 {
		width: 25%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-8 {
		width: 37.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-8 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-8 {
		width: 62.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-8 {
		width: 75%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-8 {
		width: 87.5%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-8 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-9 {
		width: 11.1111111111%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-9 {
		width: 22.2222222222%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-9 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-9 {
		width: 44.4444444444%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-9 {
		width: 55.5555555556%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-9 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-9 {
		width: 77.7777777778%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-9 {
		width: 88.8888888889%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-9 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-10 {
		width: 10%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-10 {
		width: 20%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-10 {
		width: 30%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-10 {
		width: 40%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-10 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-10 {
		width: 60%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-10 {
		width: 70%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-10 {
		width: 80%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-10 {
		width: 90%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-10 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-11 {
		width: 9.0909090909%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-11 {
		width: 18.1818181818%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-11 {
		width: 27.2727272727%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-11 {
		width: 36.3636363636%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-11 {
		width: 45.4545454545%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-11 {
		width: 54.5454545455%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-11 {
		width: 63.6363636364%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-11 {
		width: 72.7272727273%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-11 {
		width: 81.8181818182%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-11 {
		width: 90.9090909091%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-11 {
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-1-of-12 {
		width: 8.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-2-of-12 {
		width: 16.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-3-of-12 {
		width: 25%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-4-of-12 {
		width: 33.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-5-of-12 {
		width: 41.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-6-of-12 {
		width: 50%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-7-of-12 {
		width: 58.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-8-of-12 {
		width: 66.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-9-of-12 {
		width: 75%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-10-of-12 {
		width: 83.3333333333%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-11-of-12 {
		width: 91.6666666667%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-columns-12-of-12 {
		width: 100%;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu .mega-description-group .mega-menu-description {
	margin: 5px 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {
	clear: both;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu ul.mega-sub-menu ul.mega-sub-menu {
	margin-left: 10px;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	display: block;
	float: left;
	clear: none;
	padding: 15px 15px 15px 15px;
	vertical-align: top;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {
	clear: left;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 5px 0px;
	vertical-align: top;
	display: block;
	visibility: inherit;
	border: 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #555;
	font-family: inherit;
	font-size: 16px;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #555;
	font-weight: bold;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover > span.mega-title-below, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus > span.mega-title-below {
	text-decoration: none;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	text-align: left;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	vertical-align: top;
	display: block;
	border: 0;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover {
	border-color: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item.mega-icon-left.mega-has-description.mega-has-icon > a.mega-menu-link {
	display: flex;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu {
		border: 0;
		padding: 10px;
		border-radius: 0;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {
		width: 100%;
		clear: both;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	color: #666;
	font-family: inherit;
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	border: 0;
	padding: 0px 0px 0px 0px;
	vertical-align: top;
	display: block;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu.mega-no-headers > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {
	color: #666;
	font-weight: normal;
	text-decoration: none;
	background: rgba(0, 0, 0, 0);
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu {
	z-index: 999;
	position: absolute;
	width: 250px;
	max-width: none;
	padding: 0px 0px 0px 0px;
	border: 0;
	background: #f1f1f1;
	border-radius: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu {
		float: left;
		position: static;
		width: 100%;
		padding: 0;
		border: 0;
		border-radius: 0;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {
		clear: both;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {
	display: block;
	background: #f1f1f1;
	color: #666;
	font-family: inherit;
	font-size: 14px;
	font-weight: normal;
	padding: 0px 10px 0px 10px;
	line-height: 35px;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child > a.mega-menu-link {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
	border-bottom-right-radius: 0px;
	border-bottom-left-radius: 0px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child > a.mega-menu-link {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {
	background: #ddd;
	font-weight: normal;
	text-decoration: none;
	color: #666;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
	position: absolute;
	left: 100%;
	top: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		position: static;
		left: 0;
		width: 100%;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {
		padding-left: 20px;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu ul.mega-sub-menu a.mega-menu-link {
		padding-left: 30px;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	display: inline-block;
	width: auto;
	background: transparent;
	position: relative;
	pointer-events: auto;
	left: auto;
	min-width: auto;
	font-size: inherit;
	padding: 0;
	margin: 0 0 0 6px;
	height: auto;
	line-height: inherit;
	color: inherit;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator:after {
	content: "";
	font-family: dashicons;
	font-weight: normal;
	display: inline-block;
	margin: 0;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
	float: right;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children.mega-collapse-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
	content: "";
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children > a.mega-menu-link > span.mega-indicator {
		float: right;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children.mega-hide-sub-menu-on-mobile > a.mega-menu-link > span.mega-indicator {
		display: none;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-megamenu:not(.mega-menu-tabbed) li.mega-menu-item-has-children:not(.mega-collapse-children) > a.mega-menu-link > span.mega-indicator, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link > span.mega-indicator {
	display: none;
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-flyout li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {
		text-align: right;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator {
		float: left;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link > span.mega-indicator:after {
		content: "";
		margin: 0 6px 0 0;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {
		float: right;
		margin: 0 0 0 6px;
	}
	
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {
		left: -100%;
		top: 0;
	}
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li[class^="mega-lang-item"] > a.mega-menu-link > img {
	display: inline;
}

#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link > img.wpml-ls-flag, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu a.mega-menu-link > img.iclflag {
	display: inline;
	margin-right: 8px;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-hide-on-mobile, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-mobile, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-mobile {
		display: none;
	}
}

@media only screen and (min-width: 769px) {
	#mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu li.mega-hide-on-desktop, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-hide-on-desktop, #mega-menu-wrap-my-custom-menu #mega-menu-my-custom-menu > li.mega-menu-megamenu > ul.mega-sub-menu li.mega-menu-column > ul.mega-sub-menu > li.mega-menu-item.mega-hide-on-desktop {
		display: none;
	}
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu:after {
		content: "";
		display: table;
		clear: both;
	}
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle {
	display: none;
	z-index: 1;
	cursor: pointer;
	background: #222;
	border-radius: 2px 2px 2px 2px;
	line-height: 40px;
	height: 40px;
	text-align: left;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
	outline: none;
	white-space: nowrap;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle img {
	max-width: 100%;
	padding: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu .mega-menu-toggle {
		display: -webkit-box;
		display: -ms-flexbox;
		display: -webkit-flex;
		display: flex;
	}
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-left, #mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-center, #mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-right {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-preferred-size: 33.33%;
	-webkit-flex-basis: 33.33%;
	flex-basis: 33.33%;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-left {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block {
	margin-left: 6px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-left .mega-toggle-block:only-child {
	margin-right: 6px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-center .mega-toggle-block {
	margin-left: 3px;
	margin-right: 3px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-right {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	-webkit-flex: 1;
	flex: 1;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block {
	margin-right: 6px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-blocks-right .mega-toggle-block:only-child {
	margin-left: 6px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	height: 100%;
	outline: 0;
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	-ms-flex-negative: 0;
	-webkit-flex-shrink: 0;
	flex-shrink: 0;
}

@media only screen and (max-width: 768px) {
	#mega-menu-wrap-my-custom-menu .mega-menu-toggle + #mega-menu-my-custom-menu {
		background: #222;
		padding: 0px 0px 0px 0px;
		display: none;
	}
	
	#mega-menu-wrap-my-custom-menu .mega-menu-toggle.mega-menu-open + #mega-menu-my-custom-menu {
		display: block;
	}
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 {
	cursor: pointer;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated {
	padding: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	cursor: pointer;
	transition-property: opacity, filter;
	transition-duration: .15s;
	transition-timing-function: linear;
	font: inherit;
	color: inherit;
	text-transform: none;
	background-color: transparent;
	border: 0;
	margin: 0;
	overflow: visible;
	transform: scale(.8);
	align-self: center;
	outline: 0;
	background: none;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-box {
	width: 40px;
	height: 24px;
	display: inline-block;
	position: relative;
	outline: 0;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner {
	display: block;
	top: 50%;
	margin-top: -2px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner, #mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	width: 40px;
	height: 4px;
	background-color: #ddd;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: .15s;
	transition-timing-function: ease;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before, #mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	content: "";
	display: block;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before {
	top: -10px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
	bottom: -10px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	top: 2px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	top: 10px;
	transition-property: transform, opacity;
	transition-timing-function: ease;
	transition-duration: .15s;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	top: 20px;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner {
	transform: translate3d(0, 10px, 0) rotate(45deg);
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::before {
	transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
	opacity: 0;
}

#mega-menu-wrap-my-custom-menu .mega-menu-toggle.mega-menu-open .mega-toggle-block-0 .mega-toggle-animated-slider .mega-toggle-animated-inner::after {
	transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/** Push menu onto new line **/
#mega-menu-wrap-my-custom-menu {
	clear: both;
}

.wp-block {}

.dashicons, .dashicons-before:before {
	font-family: dashicons;
	display: inline-block;
	line-height: 1;
	font-weight: 400;
	font-style: normal;
	speak: never;
	text-decoration: inherit;
	text-transform: none;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	width: 20px;
	height: 20px;
	font-size: 20px;
	vertical-align: top;
	text-align: center;
	transition: color .1s ease-in;
}

.dashicons-admin-appearance:before {
	content: "";
}

.dashicons-admin-collapse:before {
	content: "";
}

.dashicons-admin-comments:before {
	content: "";
}

.dashicons-admin-customizer:before {
	content: "";
}

.dashicons-admin-generic:before {
	content: "";
}

.dashicons-admin-home:before {
	content: "";
}

.dashicons-admin-links:before {
	content: "";
}

.dashicons-admin-media:before {
	content: "";
}

.dashicons-admin-multisite:before {
	content: "";
}

.dashicons-admin-network:before {
	content: "";
}

.dashicons-admin-page:before {
	content: "";
}

.dashicons-admin-plugins:before {
	content: "";
}

.dashicons-admin-post:before {
	content: "";
}

.dashicons-admin-settings:before {
	content: "";
}

.dashicons-admin-site-alt:before {
	content: "";
}

.dashicons-admin-site-alt2:before {
	content: "";
}

.dashicons-admin-site-alt3:before {
	content: "";
}

.dashicons-admin-site:before {
	content: "";
}

.dashicons-admin-tools:before {
	content: "";
}

.dashicons-admin-users:before {
	content: "";
}

.dashicons-airplane:before {
	content: "";
}

.dashicons-album:before {
	content: "";
}

.dashicons-align-center:before {
	content: "";
}

.dashicons-align-full-width:before {
	content: "";
}

.dashicons-align-left:before {
	content: "";
}

.dashicons-align-none:before {
	content: "";
}

.dashicons-align-pull-left:before {
	content: "";
}

.dashicons-align-pull-right:before {
	content: "";
}

.dashicons-align-right:before {
	content: "";
}

.dashicons-align-wide:before {
	content: "";
}

.dashicons-amazon:before {
	content: "";
}

.dashicons-analytics:before {
	content: "";
}

.dashicons-archive:before {
	content: "";
}

.dashicons-arrow-down-alt:before {
	content: "";
}

.dashicons-arrow-down-alt2:before {
	content: "";
}

.dashicons-arrow-down:before {
	content: "";
}

.dashicons-arrow-left-alt:before {
	content: "";
}

.dashicons-arrow-left-alt2:before {
	content: "";
}

.dashicons-arrow-left:before {
	content: "";
}

.dashicons-arrow-right-alt:before {
	content: "";
}

.dashicons-arrow-right-alt2:before {
	content: "";
}

.dashicons-arrow-right:before {
	content: "";
}

.dashicons-arrow-up-alt:before {
	content: "";
}

.dashicons-arrow-up-alt2:before {
	content: "";
}

.dashicons-arrow-up-duplicate:before {
	content: "";
}

.dashicons-arrow-up:before {
	content: "";
}

.dashicons-art:before {
	content: "";
}

.dashicons-awards:before {
	content: "";
}

.dashicons-backup:before {
	content: "";
}

.dashicons-bank:before {
	content: "";
}

.dashicons-beer:before {
	content: "";
}

.dashicons-bell:before {
	content: "";
}

.dashicons-block-default:before {
	content: "";
}

.dashicons-book-alt:before {
	content: "";
}

.dashicons-book:before {
	content: "";
}

.dashicons-buddicons-activity:before {
	content: "";
}

.dashicons-buddicons-bbpress-logo:before {
	content: "";
}

.dashicons-buddicons-buddypress-logo:before {
	content: "";
}

.dashicons-buddicons-community:before {
	content: "";
}

.dashicons-buddicons-forums:before {
	content: "";
}

.dashicons-buddicons-friends:before {
	content: "";
}

.dashicons-buddicons-groups:before {
	content: "";
}

.dashicons-buddicons-pm:before {
	content: "";
}

.dashicons-buddicons-replies:before {
	content: "";
}

.dashicons-buddicons-topics:before {
	content: "";
}

.dashicons-buddicons-tracking:before {
	content: "";
}

.dashicons-building:before {
	content: "";
}

.dashicons-businessman:before {
	content: "";
}

.dashicons-businessperson:before {
	content: "";
}

.dashicons-businesswoman:before {
	content: "";
}

.dashicons-button:before {
	content: "";
}

.dashicons-calculator:before {
	content: "";
}

.dashicons-calendar-alt:before {
	content: "";
}

.dashicons-calendar:before {
	content: "";
}

.dashicons-camera-alt:before {
	content: "";
}

.dashicons-camera:before {
	content: "";
}

.dashicons-car:before {
	content: "";
}

.dashicons-carrot:before {
	content: "";
}

.dashicons-cart:before {
	content: "";
}

.dashicons-category:before {
	content: "";
}

.dashicons-chart-area:before {
	content: "";
}

.dashicons-chart-bar:before {
	content: "";
}

.dashicons-chart-line:before {
	content: "";
}

.dashicons-chart-pie:before {
	content: "";
}

.dashicons-clipboard:before {
	content: "";
}

.dashicons-clock:before {
	content: "";
}

.dashicons-cloud-saved:before {
	content: "";
}

.dashicons-cloud-upload:before {
	content: "";
}

.dashicons-cloud:before {
	content: "";
}

.dashicons-code-standards:before {
	content: "";
}

.dashicons-coffee:before {
	content: "";
}

.dashicons-color-picker:before {
	content: "";
}

.dashicons-columns:before {
	content: "";
}

.dashicons-controls-back:before {
	content: "";
}

.dashicons-controls-forward:before {
	content: "";
}

.dashicons-controls-pause:before {
	content: "";
}

.dashicons-controls-play:before {
	content: "";
}

.dashicons-controls-repeat:before {
	content: "";
}

.dashicons-controls-skipback:before {
	content: "";
}

.dashicons-controls-skipforward:before {
	content: "";
}

.dashicons-controls-volumeoff:before {
	content: "";
}

.dashicons-controls-volumeon:before {
	content: "";
}

.dashicons-cover-image:before {
	content: "";
}

.dashicons-dashboard:before {
	content: "";
}

.dashicons-database-add:before {
	content: "";
}

.dashicons-database-export:before {
	content: "";
}

.dashicons-database-import:before {
	content: "";
}

.dashicons-database-remove:before {
	content: "";
}

.dashicons-database-view:before {
	content: "";
}

.dashicons-database:before {
	content: "";
}

.dashicons-desktop:before {
	content: "";
}

.dashicons-dismiss:before {
	content: "";
}

.dashicons-download:before {
	content: "";
}

.dashicons-drumstick:before {
	content: "";
}

.dashicons-edit-large:before {
	content: "";
}

.dashicons-edit-page:before {
	content: "";
}

.dashicons-edit:before {
	content: "";
}

.dashicons-editor-aligncenter:before {
	content: "";
}

.dashicons-editor-alignleft:before {
	content: "";
}

.dashicons-editor-alignright:before {
	content: "";
}

.dashicons-editor-bold:before {
	content: "";
}

.dashicons-editor-break:before {
	content: "";
}

.dashicons-editor-code-duplicate:before {
	content: "";
}

.dashicons-editor-code:before {
	content: "";
}

.dashicons-editor-contract:before {
	content: "";
}

.dashicons-editor-customchar:before {
	content: "";
}

.dashicons-editor-expand:before {
	content: "";
}

.dashicons-editor-help:before {
	content: "";
}

.dashicons-editor-indent:before {
	content: "";
}

.dashicons-editor-insertmore:before {
	content: "";
}

.dashicons-editor-italic:before {
	content: "";
}

.dashicons-editor-justify:before {
	content: "";
}

.dashicons-editor-kitchensink:before {
	content: "";
}

.dashicons-editor-ltr:before {
	content: "";
}

.dashicons-editor-ol-rtl:before {
	content: "";
}

.dashicons-editor-ol:before {
	content: "";
}

.dashicons-editor-outdent:before {
	content: "";
}

.dashicons-editor-paragraph:before {
	content: "";
}

.dashicons-editor-paste-text:before {
	content: "";
}

.dashicons-editor-paste-word:before {
	content: "";
}

.dashicons-editor-quote:before {
	content: "";
}

.dashicons-editor-removeformatting:before {
	content: "";
}

.dashicons-editor-rtl:before {
	content: "";
}

.dashicons-editor-spellcheck:before {
	content: "";
}

.dashicons-editor-strikethrough:before {
	content: "";
}

.dashicons-editor-table:before {
	content: "";
}

.dashicons-editor-textcolor:before {
	content: "";
}

.dashicons-editor-ul:before {
	content: "";
}

.dashicons-editor-underline:before {
	content: "";
}

.dashicons-editor-unlink:before {
	content: "";
}

.dashicons-editor-video:before {
	content: "";
}

.dashicons-ellipsis:before {
	content: "";
}

.dashicons-email-alt:before {
	content: "";
}

.dashicons-email-alt2:before {
	content: "";
}

.dashicons-email:before {
	content: "";
}

.dashicons-embed-audio:before {
	content: "";
}

.dashicons-embed-generic:before {
	content: "";
}

.dashicons-embed-photo:before {
	content: "";
}

.dashicons-embed-post:before {
	content: "";
}

.dashicons-embed-video:before {
	content: "";
}

.dashicons-excerpt-view:before {
	content: "";
}

.dashicons-exit:before {
	content: "";
}

.dashicons-external:before {
	content: "";
}

.dashicons-facebook-alt:before {
	content: "";
}

.dashicons-facebook:before {
	content: "";
}

.dashicons-feedback:before {
	content: "";
}

.dashicons-filter:before {
	content: "";
}

.dashicons-flag:before {
	content: "";
}

.dashicons-food:before {
	content: "";
}

.dashicons-format-aside:before {
	content: "";
}

.dashicons-format-audio:before {
	content: "";
}

.dashicons-format-chat:before {
	content: "";
}

.dashicons-format-gallery:before {
	content: "";
}

.dashicons-format-image:before {
	content: "";
}

.dashicons-format-quote:before {
	content: "";
}

.dashicons-format-status:before {
	content: "";
}

.dashicons-format-video:before {
	content: "";
}

.dashicons-forms:before {
	content: "";
}

.dashicons-fullscreen-alt:before {
	content: "";
}

.dashicons-fullscreen-exit-alt:before {
	content: "";
}

.dashicons-games:before {
	content: "";
}

.dashicons-google:before {
	content: "";
}

.dashicons-googleplus:before {
	content: "";
}

.dashicons-grid-view:before {
	content: "";
}

.dashicons-groups:before {
	content: "";
}

.dashicons-hammer:before {
	content: "";
}

.dashicons-heading:before {
	content: "";
}

.dashicons-heart:before {
	content: "";
}

.dashicons-hidden:before {
	content: "";
}

.dashicons-hourglass:before {
	content: "";
}

.dashicons-html:before {
	content: "";
}

.dashicons-id-alt:before {
	content: "";
}

.dashicons-id:before {
	content: "";
}

.dashicons-image-crop:before {
	content: "";
}

.dashicons-image-filter:before {
	content: "";
}

.dashicons-image-flip-horizontal:before {
	content: "";
}

.dashicons-image-flip-vertical:before {
	content: "";
}

.dashicons-image-rotate-left:before {
	content: "";
}

.dashicons-image-rotate-right:before {
	content: "";
}

.dashicons-image-rotate:before {
	content: "";
}

.dashicons-images-alt:before {
	content: "";
}

.dashicons-images-alt2:before {
	content: "";
}

.dashicons-index-card:before {
	content: "";
}

.dashicons-info-outline:before {
	content: "";
}

.dashicons-info:before {
	content: "";
}

.dashicons-insert-after:before {
	content: "";
}

.dashicons-insert-before:before {
	content: "";
}

.dashicons-insert:before {
	content: "";
}

.dashicons-instagram:before {
	content: "";
}

.dashicons-laptop:before {
	content: "";
}

.dashicons-layout:before {
	content: "";
}

.dashicons-leftright:before {
	content: "";
}

.dashicons-lightbulb:before {
	content: "";
}

.dashicons-linkedin:before {
	content: "";
}

.dashicons-list-view:before {
	content: "";
}

.dashicons-location-alt:before {
	content: "";
}

.dashicons-location:before {
	content: "";
}

.dashicons-lock-duplicate:before {
	content: "";
}

.dashicons-lock:before {
	content: "";
}

.dashicons-marker:before {
	content: "";
}

.dashicons-media-archive:before {
	content: "";
}

.dashicons-media-audio:before {
	content: "";
}

.dashicons-media-code:before {
	content: "";
}

.dashicons-media-default:before {
	content: "";
}

.dashicons-media-document:before {
	content: "";
}

.dashicons-media-interactive:before {
	content: "";
}

.dashicons-media-spreadsheet:before {
	content: "";
}

.dashicons-media-text:before {
	content: "";
}

.dashicons-media-video:before {
	content: "";
}

.dashicons-megaphone:before {
	content: "";
}

.dashicons-menu-alt:before {
	content: "";
}

.dashicons-menu-alt2:before {
	content: "";
}

.dashicons-menu-alt3:before {
	content: "";
}

.dashicons-menu:before {
	content: "";
}

.dashicons-microphone:before {
	content: "";
}

.dashicons-migrate:before {
	content: "";
}

.dashicons-minus:before {
	content: "";
}

.dashicons-money-alt:before {
	content: "";
}

.dashicons-money:before {
	content: "";
}

.dashicons-move:before {
	content: "";
}

.dashicons-nametag:before {
	content: "";
}

.dashicons-networking:before {
	content: "";
}

.dashicons-no-alt:before {
	content: "";
}

.dashicons-no:before {
	content: "";
}

.dashicons-open-folder:before {
	content: "";
}

.dashicons-palmtree:before {
	content: "";
}

.dashicons-paperclip:before {
	content: "";
}

.dashicons-pdf:before {
	content: "";
}

.dashicons-performance:before {
	content: "";
}

.dashicons-pets:before {
	content: "";
}

.dashicons-phone:before {
	content: "";
}

.dashicons-pinterest:before {
	content: "";
}

.dashicons-playlist-audio:before {
	content: "";
}

.dashicons-playlist-video:before {
	content: "";
}

.dashicons-plugins-checked:before {
	content: "";
}

.dashicons-plus-alt:before {
	content: "";
}

.dashicons-plus-alt2:before {
	content: "";
}

.dashicons-plus:before {
	content: "";
}

.dashicons-podio:before {
	content: "";
}

.dashicons-portfolio:before {
	content: "";
}

.dashicons-post-status:before {
	content: "";
}

.dashicons-pressthis:before {
	content: "";
}

.dashicons-printer:before {
	content: "";
}

.dashicons-privacy:before {
	content: "";
}

.dashicons-products:before {
	content: "";
}

.dashicons-randomize:before {
	content: "";
}

.dashicons-reddit:before {
	content: "";
}

.dashicons-redo:before {
	content: "";
}

.dashicons-remove:before {
	content: "";
}

.dashicons-rest-api:before {
	content: "";
}

.dashicons-rss:before {
	content: "";
}

.dashicons-saved:before {
	content: "";
}

.dashicons-schedule:before {
	content: "";
}

.dashicons-screenoptions:before {
	content: "";
}

.dashicons-search:before {
	content: "";
}

.dashicons-share-alt:before {
	content: "";
}

.dashicons-share-alt2:before {
	content: "";
}

.dashicons-share:before {
	content: "";
}

.dashicons-shield-alt:before {
	content: "";
}

.dashicons-shield:before {
	content: "";
}

.dashicons-shortcode:before {
	content: "";
}

.dashicons-slides:before {
	content: "";
}

.dashicons-smartphone:before {
	content: "";
}

.dashicons-smiley:before {
	content: "";
}

.dashicons-sort:before {
	content: "";
}

.dashicons-sos:before {
	content: "";
}

.dashicons-spotify:before {
	content: "";
}

.dashicons-star-empty:before {
	content: "";
}

.dashicons-star-filled:before {
	content: "";
}

.dashicons-star-half:before {
	content: "";
}

.dashicons-sticky:before {
	content: "";
}

.dashicons-store:before {
	content: "";
}

.dashicons-superhero-alt:before {
	content: "";
}

.dashicons-superhero:before {
	content: "";
}

.dashicons-table-col-after:before {
	content: "";
}

.dashicons-table-col-before:before {
	content: "";
}

.dashicons-table-col-delete:before {
	content: "";
}

.dashicons-table-row-after:before {
	content: "";
}

.dashicons-table-row-before:before {
	content: "";
}

.dashicons-table-row-delete:before {
	content: "";
}

.dashicons-tablet:before {
	content: "";
}

.dashicons-tag:before {
	content: "";
}

.dashicons-tagcloud:before {
	content: "";
}

.dashicons-testimonial:before {
	content: "";
}

.dashicons-text-page:before {
	content: "";
}

.dashicons-text:before {
	content: "";
}

.dashicons-thumbs-down:before {
	content: "";
}

.dashicons-thumbs-up:before {
	content: "";
}

.dashicons-tickets-alt:before {
	content: "";
}

.dashicons-tickets:before {
	content: "";
}

.dashicons-tide:before {
	content: "";
}

.dashicons-translation:before {
	content: "";
}

.dashicons-trash:before {
	content: "";
}

.dashicons-twitch:before {
	content: "";
}

.dashicons-twitter-alt:before {
	content: "";
}

.dashicons-twitter:before {
	content: "";
}

.dashicons-undo:before {
	content: "";
}

.dashicons-universal-access-alt:before {
	content: "";
}

.dashicons-universal-access:before {
	content: "";
}

.dashicons-unlock:before {
	content: "";
}

.dashicons-update-alt:before {
	content: "";
}

.dashicons-update:before {
	content: "";
}

.dashicons-upload:before {
	content: "";
}

.dashicons-vault:before {
	content: "";
}

.dashicons-video-alt:before {
	content: "";
}

.dashicons-video-alt2:before {
	content: "";
}

.dashicons-video-alt3:before {
	content: "";
}

.dashicons-visibility:before {
	content: "";
}

.dashicons-warning:before {
	content: "";
}

.dashicons-welcome-add-page:before {
	content: "";
}

.dashicons-welcome-comments:before {
	content: "";
}

.dashicons-welcome-learn-more:before {
	content: "";
}

.dashicons-welcome-view-site:before {
	content: "";
}

.dashicons-welcome-widgets-menus:before {
	content: "";
}

.dashicons-welcome-write-blog:before {
	content: "";
}

.dashicons-whatsapp:before {
	content: "";
}

.dashicons-wordpress-alt:before {
	content: "";
}

.dashicons-wordpress:before {
	content: "";
}

.dashicons-xing:before {
	content: "";
}

.dashicons-yes-alt:before {
	content: "";
}

.dashicons-yes:before {
	content: "";
}

.dashicons-youtube:before {
	content: "";
}

.dashicons-editor-distractionfree:before {
	content: "";
}

.dashicons-exerpt-view:before {
	content: "";
}

.dashicons-format-links:before {
	content: "";
}

.dashicons-format-standard:before {
	content: "";
}

.dashicons-post-trash:before {
	content: "";
}

.dashicons-share1:before {
	content: "";
}

.dashicons-welcome-edit-page:before {
	content: "";
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
button, hr, input {
	overflow: visible;
}

audio, canvas, progress, video {
	display: inline-block;
}

progress, sub, sup {
	vertical-align: baseline;
}

[type=checkbox], [type=radio], legend {
	box-sizing: border-box;
	padding: 0;
}

html {
	font-family: sans-serif;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
	display: block;
}

h1 {
	font-size: 2em;
	margin: .67em 0;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

code, kbd, pre, samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects;
}

a:active, a:hover {
	outline-width: 0;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b, strong {
	font-weight: bolder;
}

dfn {
	font-style: italic;
}

mark {
	background-color: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub, sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

img {
	border-style: none;
}

svg:not(:root) {
	overflow: hidden;
}

button, input, optgroup, select, textarea {
	font-family: sans-serif;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button, select {
	text-transform: none;
}

[type=reset], [type=submit], button, html [type=button] {
	-webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
	outline: ButtonText dotted 1px;
}

fieldset {
	border: 1px solid silver;
	margin: 0 2px;
	padding: .35em .625em .75em;
}

legend {
	color: inherit;
	display: table;
	max-width: 100%;
	white-space: normal;
}

textarea {
	overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

summary {
	display: list-item;
}

[hidden], template {
	display: none;
}

.mh-properties {
	transition-property: opacity, transform;
	transition-duration: .3s;
}

.mh-properties.mh-properties__hide {
	opacity: 0;
	transform: translateY(-100px);
}

.mh-properties .mh-thumbnail__inner {
	transition: opacity .3s;
}

.mh-properties.mh-properties__hide .mh-thumbnail__inner {
	opacity: 0;
}

.swiper-slide, .swiper-wrapper {
	position: relative;
	transition-property: transform;
	height: 100%;
}

:root {
	--swiper-theme-color: #007aff;
	--swiper-navigation-size: 44px;
}

.swiper-container {
	margin-left: auto;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	list-style: none;
	padding: 0;
	z-index: 1;
}

.swiper-container-vertical>.swiper-wrapper {
	flex-direction: column;
}

.swiper-wrapper {
	width: 100%;
	z-index: 1;
	display: flex;
	box-sizing: content-box;
}

.swiper-container-android .swiper-slide, .swiper-wrapper {
	transform: translate3d(0, 0, 0);
}

.swiper-container-multirow>.swiper-wrapper {
	flex-wrap: wrap;
}

.swiper-container-multirow-column>.swiper-wrapper {
	flex-wrap: wrap;
	flex-direction: column;
}

.swiper-container-free-mode>.swiper-wrapper {
	transition-timing-function: ease-out;
	margin: 0 auto;
}

.swiper-slide {
	flex-shrink: 0;
	width: 100%;
}

.swiper-slide-invisible-blank {
	visibility: hidden;
}

.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
	height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
	align-items: flex-start;
	transition-property: transform, height;
}

.swiper-container-3d {
	perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
	transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
	background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
	background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
	background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-container-css-mode>.swiper-wrapper {
	overflow: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar {
	display: none;
}

.swiper-container-css-mode>.swiper-wrapper>.swiper-slide {
	scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper {
	scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper {
	scroll-snap-type: y mandatory;
}

.swiper-button-next, .swiper-button-prev {
	position: absolute;
	top: 50%;
	width: calc(var(--swiper-navigation-size) / 44 * 27);
	height: var(--swiper-navigation-size);
	margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
	z-index: 10;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
	opacity: .35;
	cursor: auto;
	pointer-events: none;
}

.swiper-button-next:after, .swiper-button-prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
	left: 10px;
	right: auto;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after {
	content: "prev";
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	right: 10px;
	left: auto;
}

.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
	content: "next";
}

.swiper-button-next.swiper-button-white, .swiper-button-prev.swiper-button-white {
	--swiper-navigation-color: #fff;
}

.swiper-button-next.swiper-button-black, .swiper-button-prev.swiper-button-black {
	--swiper-navigation-color: #000;
}

.swiper-button-lock {
	display: none;
}

.swiper-pagination {
	position: absolute;
	text-align: center;
	transition: .3s opacity;
	transform: translate3d(0, 0, 0);
	z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
	opacity: 0;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
	bottom: 10px;
	left: 0;
	width: 100%;
}

.swiper-pagination-bullets-dynamic {
	overflow: hidden;
	font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transform: scale(.33);
	position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
	transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	transform: scale(.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
	transform: scale(.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
	transform: scale(.33);
}

.swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	display: inline-block;
	border-radius: 100%;
	background: #000;
	opacity: .2;
}

button.swiper-pagination-bullet {
	border: none;
	margin: 0;
	padding: 0;
	box-shadow: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
	cursor: pointer;
}

.swiper-scrollbar-cursor-drag, .swiper-slide-zoomed {
	cursor: move;
}

.swiper-pagination-bullet-active {
	opacity: 1;
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical>.swiper-pagination-bullets {
	right: 10px;
	top: 50%;
	transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 6px 0;
	display: block;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	display: inline-block;
	transition: .2s transform, .2s top;
}

.swiper-pagination-lock, .swiper-scrollbar-lock {
	display: none;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 4px;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
}

.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s left;
}

.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
	transition: .2s transform, .2s right;
}

.swiper-pagination-progressbar {
	background: rgba(0, 0, 0, .25);
	position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: var(--swiper-pagination-color, var(--swiper-theme-color));
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	transform-origin: right top;
}

.swiper-container-horizontal>.swiper-pagination-progressbar, .swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
	width: 100%;
	height: 4px;
	left: 0;
	top: 0;
}

.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical>.swiper-pagination-progressbar {
	width: 4px;
	height: 100%;
	left: 0;
	top: 0;
}

.swiper-pagination-white {
	--swiper-pagination-color: #fff;
}

.swiper-pagination-black {
	--swiper-pagination-color: #000;
}

.swiper-scrollbar {
	border-radius: 10px;
	position: relative;
	-ms-touch-action: none;
	background: rgba(0, 0, 0, .1);
}

.swiper-container-horizontal>.swiper-scrollbar {
	position: absolute;
	left: 1%;
	bottom: 3px;
	z-index: 50;
	height: 5px;
	width: 98%;
}

.swiper-container-vertical>.swiper-scrollbar {
	position: absolute;
	right: 3px;
	top: 1%;
	z-index: 50;
	width: 5px;
	height: 98%;
}

.swiper-scrollbar-drag {
	height: 100%;
	width: 100%;
	position: relative;
	background: rgba(0, 0, 0, .5);
	border-radius: 10px;
	left: 0;
	top: 0;
}

.swiper-zoom-container {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.swiper-zoom-container>canvas, .swiper-zoom-container>img, .swiper-zoom-container>svg {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.swiper-lazy-preloader {
	width: 42px;
	height: 42px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -21px;
	margin-top: -21px;
	z-index: 10;
	transform-origin: 50%;
	animation: swiper-preloader-spin 1s infinite linear;
	box-sizing: border-box;
	border: 4px solid;
	border-radius: 50%;
	border-top-color: transparent;
}

.swiper-lazy-preloader-white {
	--swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
	--swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
	100% {
		transform: rotate(360deg);
	}
}

.swiper-container .swiper-notification {
	position: absolute;
	left: 0;
	top: 0;
	pointer-events: none;
	opacity: 0;
	z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
	transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
	pointer-events: none;
	transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-fade .swiper-slide-active, .swiper-container-fade .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube {
	overflow: visible;
}

.swiper-container-cube .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
	visibility: hidden;
	transform-origin: 0 0;
	width: 100%;
	height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
	transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-next+.swiper-slide, .swiper-container-cube .swiper-slide-prev {
	pointer-events: auto;
	visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: .6;
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 0;
}

.swiper-container-flip {
	overflow: visible;
}

.swiper-container-flip .swiper-slide {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
	pointer-events: none;
}

.swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
	pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
	z-index: 0;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.selectize-control.plugin-drag_drop.multi>.selectize-input>div.ui-sortable-placeholder {
	visibility: visible !important;
	background: #f2f2f2 !important;
	background: rgba(0, 0, 0, .06) !important;
	border: 0 !important;
	-webkit-box-shadow: inset 0 0 12px 4px #fff;
	box-shadow: inset 0 0 12px 4px #fff;
}

.selectize-control.plugin-drag_drop .ui-sortable-placeholder::after {
	content: "!";
	visibility: hidden;
}

.selectize-control.plugin-drag_drop .ui-sortable-helper {
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.selectize-dropdown-header {
	position: relative;
	padding: 5px 8px;
	border-bottom: 1px solid #d0d0d0;
	background: #f8f8f8;
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.selectize-dropdown-header-close {
	position: absolute;
	right: 8px;
	top: 50%;
	color: #303030;
	opacity: .4;
	margin-top: -12px;
	line-height: 20px;
	font-size: 20px !important;
}

.selectize-dropdown-header-close:hover {
	color: #000;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup {
	border-right: 1px solid #f2f2f2;
	border-top: 0 none;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:last-child {
	border-right: 0 none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup:before {
	display: none;
}

.selectize-dropdown.plugin-optgroup_columns .optgroup-header {
	border-top: 0 none;
}

.selectize-control.plugin-remove_button [data-value] {
	position: relative;
	padding-right: 24px !important;
}

.selectize-control.plugin-remove_button [data-value] .remove {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 17px;
	text-align: center;
	font-weight: 700;
	font-size: 12px;
	color: inherit;
	text-decoration: none;
	vertical-align: middle;
	display: inline-block;
	padding: 2px 0 0;
	border-left: 1px solid #d0d0d0;
	-webkit-border-radius: 0 2px 2px 0;
	-moz-border-radius: 0 2px 2px 0;
	border-radius: 0 2px 2px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.selectize-control.plugin-remove_button [data-value] .remove:hover {
	background: rgba(0, 0, 0, .05);
}

.selectize-control.plugin-remove_button [data-value].active .remove {
	border-left-color: #cacaca;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove:hover {
	background: 0 0;
}

.selectize-control.plugin-remove_button .disabled [data-value] .remove {
	border-left-color: #fff;
}

.selectize-control.plugin-remove_button .remove-single {
	position: absolute;
	right: 28px;
	top: 6px;
	font-size: 23px;
}

.selectize-control, .selectize-input {
	position: relative;
}

.selectize-dropdown, .selectize-input, .selectize-input input {
	color: #303030;
	font-family: inherit;
	font-size: 13px;
	line-height: 18px;
	-webkit-font-smoothing: inherit;
}

.selectize-control.single .selectize-input.input-active, .selectize-input {
	background: #fff;
	cursor: text;
	display: inline-block;
}

.selectize-input {
	border: 1px solid #d0d0d0;
	padding: 8px;
	display: inline-block;
	width: 100%;
	overflow: hidden;
	z-index: 1;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.selectize-control.multi .selectize-input.has-items {
	padding: 6px 8px 3px;
}

.selectize-input.full {
	background-color: #fff;
}

.selectize-input.disabled, .selectize-input.disabled * {
	cursor: default !important;
}

.selectize-input.focus {
	-webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .15);
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, .15);
}

.selectize-input.dropdown-active {
	-webkit-border-radius: 3px 3px 0 0;
	-moz-border-radius: 3px 3px 0 0;
	border-radius: 3px 3px 0 0;
}

.selectize-input>* {
	vertical-align: baseline;
	display: -moz-inline-stack;
	display: inline-block;
	zoom: 1;
}

.selectize-control.multi .selectize-input>div {
	cursor: pointer;
	margin: 0 3px 3px 0;
	padding: 2px 6px;
	background: #f2f2f2;
	color: #303030;
	border: 0 solid #d0d0d0;
}

.selectize-control.multi .selectize-input>div.active {
	background: #e8e8e8;
	color: #303030;
	border: 0 solid #cacaca;
}

.selectize-control.multi .selectize-input.disabled>div, .selectize-control.multi .selectize-input.disabled>div.active {
	color: #7d7d7d;
	background: #fff;
	border: 0 solid #fff;
}

.selectize-input>input {
	display: inline-block !important;
	padding: 0 !important;
	min-height: 0 !important;
	max-height: none !important;
	max-width: 100% !important;
	margin: 0 2px 0 0 !important;
	text-indent: 0 !important;
	border: 0 !important;
	background: 0 0 !important;
	line-height: inherit !important;
	-webkit-user-select: auto !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}

.selectize-input>input::-ms-clear {
	display: none;
}

.selectize-input>input:focus {
	outline: 0 !important;
}

.selectize-input::after {
	content: " ";
	display: block;
	clear: left;
}

.selectize-input.dropdown-active::before {
	content: " ";
	display: block;
	position: absolute;
	background: #f0f0f0;
	height: 1px;
	bottom: 0;
	left: 0;
	right: 0;
}

.selectize-dropdown {
	position: absolute;
	z-index: 10;
	border: 1px solid #d0d0d0;
	background: #fff;
	margin: -1px 0 0;
	border-top: 0 none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
	-webkit-border-radius: 0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}

.selectize-dropdown [data-selectable] {
	cursor: pointer;
	overflow: hidden;
}

.selectize-dropdown [data-selectable] .highlight {
	background: rgba(125, 168, 208, .2);
	-webkit-border-radius: 1px;
	-moz-border-radius: 1px;
	border-radius: 1px;
}

.selectize-dropdown .optgroup-header, .selectize-dropdown [data-selectable] {
	padding: 5px 8px;
}

.selectize-dropdown .optgroup:first-child .optgroup-header {
	border-top: 0 none;
}

.selectize-dropdown .optgroup-header {
	color: #303030;
	background: #fff;
	cursor: default;
}

.selectize-dropdown .active {
	background-color: #f5fafd;
	color: #495c68;
}

.selectize-dropdown .active.create {
	color: #495c68;
}

.selectize-dropdown .create {
	color: rgba(48, 48, 48, .5);
}

.selectize-dropdown-content {
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 200px;
	-webkit-overflow-scrolling: touch;
}

.selectize-control.single .selectize-input, .selectize-control.single .selectize-input input {
	cursor: pointer;
}

.selectize-control.single .selectize-input.input-active, .selectize-control.single .selectize-input.input-active input {
	cursor: text;
}

.selectize-control.single .selectize-input:after {
	content: " ";
	display: block;
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -3px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0;
	border-color: grey transparent transparent;
}

.selectize-control.single .selectize-input.dropdown-active:after {
	margin-top: -4px;
	border-width: 0 5px 5px;
	border-color: transparent transparent grey;
}

.selectize-control.rtl.single .selectize-input:after {
	left: 15px;
	right: auto;
}

.selectize-control.rtl .selectize-input>input {
	margin: 0 4px 0 -2px !important;
}

.selectize-control .selectize-input.disabled {
	opacity: .5;
	background-color: #fafafa;
}

.mfp-close, strong {
	font-style: normal;
}

body, button {
	font-family: Lato, Arial, Helvetica, sans-serif;
}

.mfp-title, body, pre {
	word-wrap: break-word;
}

a, body {
	color: #222;
}

:root {
	--primary: #29aae3;
}

html {
	overflow-x: hidden;
	height: 100%;
}

body {
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	background: #fff;
	overflow-wrap: break-word;
	text-align: left;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

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

* {
	outline: 0;
}

a {
	text-decoration: none;
}

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

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

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

strong {
	font-weight: 700;
}

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

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

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

button {
	border-radius: 0;
	cursor: pointer;
}

.mh-caption__inner, .mh-estate__details .mh-estate__details__price, .mh-navbar__blog-name, .mh-pricing-table__row--price, .mh-slider-single__price, .mh-top-header, h1, h2, h3, h4, h5, h6 {
	font-family: Play, Arial, Helvetica, sans-serif;
}

blockquote, figure {
	margin: 0;
}

blockquote footer, cite {
	font-style: italic;
}

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

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 24px;
	font-weight: 400;
	padding: 0;
	letter-spacing: 0;
	line-height: 1.2;
}

.mh-accordion .ui-accordion-header, .mh-estate-horizontal__primary, .mh-estate-horizontal__subheading, .mh-estate-vertical__primary, .mh-estate-vertical__subheading, .mh-font-body, .mh-map-infobox, .mh-mega-intro__heading, .mh-top-bar-user-panel__user-menu a, .mh-top-bar-user-panel__user-menu button, .woocommerce h1, .woocommerce h2, .woocommerce h3, .woocommerce h4, .woocommerce h5, .woocommerce h6, button, input, optgroup, select, textarea {
	font-family: Lato, 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;
}

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

input[type=date]:active, input[type=date]:focus, input[type=email]:active, input[type=email]:focus, input[type=number]:active, input[type=number]:focus, input[type=password]:active, input[type=password]:focus, input[type=search]:not(#media-search-input):active, input[type=search]:not(#media-search-input):focus, input[type=tel]:active, input[type=tel]:focus, input[type=text]:active, input[type=text]:focus, textarea:active, textarea:focus {
	border: 2px solid #29aae3;
	background: rgba(41, 170, 227, .05);
	padding: 9px 19px;
}

input[type=email]:focus::-moz-placeholder, input[type=number]:focus::-moz-placeholder, input[type=password]:focus::-moz-placeholder, input[type=tel]:focus::-moz-placeholder, input[type=text]:focus::-moz-placeholder, textarea:focus::-moz-placeholder, textarea[type=text]:focus::-moz-placeholder {
	color: transparent !important;
	opacity: 0 !important;
}

input[type=email]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, textarea[type=text]::-webkit-input-placeholder {
	color: #222 !important;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}

input[type=email]:-moz-placeholder, input[type=number]:-moz-placeholder, input[type=password]:-moz-placeholder, input[type=tel]:-moz-placeholder, input[type=text]:-moz-placeholder, textarea:-moz-placeholder, textarea[type=text]:-moz-placeholder {
	color: #222 !important;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}

input[type=email]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=text]::-moz-placeholder, textarea::-moz-placeholder, textarea[type=text]::-moz-placeholder {
	opacity: 1 !important;
	color: #222 !important;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}

input[type=email]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=text]:-ms-input-placeholder, textarea:-ms-input-placeholder, textarea[type=text]:-ms-input-placeholder {
	color: #222 !important;
	-webkit-transition: .1s;
	-moz-transition: .1s;
	-ms-transition: .1s;
	-o-transition: .1s;
	transition: .1s;
}

input[type=email]:focus::-webkit-input-placeholder, input[type=number]:focus::-webkit-input-placeholder, input[type=password]:focus::-webkit-input-placeholder, input[type=tel]:focus::-webkit-input-placeholder, input[type=text]:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder, textarea[type=text]:focus::-webkit-input-placeholder {
	color: transparent !important;
}

input[type=email]:focus:-ms-input-placeholder, input[type=number]:focus:-ms-input-placeholder, input[type=password]:focus:-ms-input-placeholder, input[type=tel]:focus:-ms-input-placeholder, input[type=text]:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder, textarea[type=text]:focus:-ms-input-placeholder {
	color: transparent !important;
}

input:disabled {
	color: rgba(34, 34, 34, .7) !important;
	background: rgba(34, 34, 34, .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: #666;
	font-style: italic;
	text-align: center;
	background: #fff;
	resize: none;
}

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

.page-template-page_agents input[type=date], .page-template-page_agents input[type=email], .page-template-page_agents input[type=number], .page-template-page_agents input[type=password], .page-template-page_agents input[type=search]:not(#media-search-input), .page-template-page_agents input[type=tel], .page-template-page_agents input[type=text], .page-template-page_agents textarea {
	max-width: inherit;
	width: 100%;
	border: inherit;
	padding: inherit;
	line-height: inherit;
	border-radius: inherit;
	margin-bottom: inherit;
	color: inherit;
	font-style: inherit;
	text-align: inherit;
	background: inherit;
}

.woocommerce-page:not(.page-template-page_agents-php) input[type=date], .woocommerce-page:not(.page-template-page_agents-php) input[type=email], .woocommerce-page:not(.page-template-page_agents-php) input[type=number], .woocommerce-page:not(.page-template-page_agents-php) input[type=password], .woocommerce-page:not(.page-template-page_agents-php) input[type=search]:not(#media-search-input), .woocommerce-page:not(.page-template-page_agents-php) input[type=tel], .woocommerce-page:not(.page-template-page_agents-php) input[type=text], .woocommerce-page:not(.page-template-page_agents-php) textarea {
	max-width: inherit;
	width: 100%;
	border: 1px solid #ccc;
	padding: inherit;
	line-height: inherit;
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: inherit;
	color: inherit;
	font-style: inherit;
	text-align: left;
	background: #fff;
}

.tagcloud a, td, th {
	border: 1px solid #999;
}

table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 24px;
}

td, th {
	padding: 12px;
	text-align: left;
	font-weight: initial;
}

.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;
	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;
}

.mh-properties .mh-grid__1of1, .mh-properties .mh-grid__1of2, .mh-properties .mh-grid__1of3, .mh-thumbnail, .post-content {
	margin-bottom: 12px;
}

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

.bypostauthor, .gallery-caption {
	display: block;
}

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

.gallery .gallery-item a:after, .mh-thumbnail__inner:after {
	height: 100%;
	-webkit-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

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

.gallery {
	margin-bottom: 24px;
	max-width: 600px !important;
}

.gallery-item, .mdl-textfield, .mfp-image-holder .mfp-content, img.mfp-img {
	max-width: 100%;
}

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

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

.gallery .gallery-item a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	opacity: 0;
	width: 100%;
	background: #000;
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

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

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

.gallery-item {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	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;
	font-style: italic;
	text-align: center;
	padding: 6px 10px 0;
}

.mh-layout, .mh-layout__content-left, .mh-layout__content-right, .mh-layout__sidebar-left, .mh-layout__sidebar-right {
	margin: 0 auto;
}

.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;
}

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

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

.sticky {
	border-top: 2px solid #29aae3;
}

.mh-layout {
	padding: 0 15px;
	flex: 1 0 auto;
}

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

@media (min-width:1200px) {
	.mh-layout {
		max-width: 1200px;
		padding: 0 30px;
	}
}

.mh-layout__sidebar-right {
	position: relative;
}

@media (min-width:1024px) {
	.mh-layout__content-left {
		width: 75%;
		float: left;
		padding-right: 36px;
	}
	
	.mh-layout__content-left:after {
		content: "​";
		visibility: hidden;
	}
	
	.mh-layout__content-right {
		width: 75%;
		float: left;
		padding-left: 36px;
	}
	
	.mh-layout__content-right:after {
		content: "​";
		visibility: hidden;
	}
	
	.mh-layout__sidebar-left {
		width: 25%;
		float: left;
	}
	
	.mh-layout__sidebar-left:after {
		content: "​";
		visibility: hidden;
	}
	
	.mh-layout__sidebar-right {
		width: 25%;
		float: right;
	}
	
	.mh-layout__sidebar-right:after {
		content: "​";
		visibility: hidden;
	}
}

.mh-grid:after, .mh-navbar__container:after, .mh-navbar__search:before, .mh-navbar__wrapper .menu-primary-menu-container>ul>.menu-item-has-children>a:after, .mh-pagination:after, .mh-thumbnail__inner:after {
	content: "";
}

.mh-layout__sidebar--sticky {
	position: static;
}

.mh-navbar__blog-name {
	font-weight: 700;
	font-size: 24px;
	margin-right: 40px;
	line-height: 65px;
	display: inline-block;
	position: absolute;
	left: 15px;
}

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

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

.mh-navbar__wrapper .menu-primary-menu-container>ul>.menu-item-has-children>a:after {
	width: 0;
	top: 9px;
	left: 5px;
	position: relative;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid #222;
}

.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: #29aae3;
	}
}

@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 {
	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;
	color: #4d4d4d;
	font-size: 14px;
	letter-spacing: .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: #29aae3;
}

.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 !important;
}

.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: #999;
}

.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 {
	height: 55px;
	width: 1px;
	position: absolute;
	top: 9px;
	left: -30px;
	bottom: 0;
}

.mh-navbar__search input {
	height: 72px;
	width: auto;
	padding: 0 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: 0;
		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: #29aae3;
	}
	
	.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:after, .mh-navbar__container .mh-navbar__menu ul:not(:first-child)>li>a:before {
		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;
	}
}

.mh-grid, .mh-thumbnail {
	position: relative;
}

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

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

@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%;
	}
}

.mh-grid__1of4 {
	width: 100%;
}

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

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

.mh-thumbnail {
	display: block;
}

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

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

.mh-thumbnail__inner--no_image {
	text-align: center;
	background: #ddd;
}

.mh-thumbnail__inner--no_image:before {
	opacity: 0 !important;
}

.mh-thumbnail__inner--no_image__icon svg {
	max-height: 64px !important;
	position: absolute;
	top: 50%;
	fill: #222 !important;
	display: inline-block !important;
	margin-top: -32px !important;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.mh-thumbnail__inner--no_image+.mh-estate-vertical__text {
	display: none !important;
}

.mh-thumbnail__inner:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	opacity: 0;
	width: 100%;
	background: #000;
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.mh-thumbnail__featured {
	z-index: 10 !important;
	position: absolute;
	top: 12px;
	left: 0;
	padding: 3px 6px;
	color: #fff;
	background: #29aae3;
	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;
	}
}

.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;
	display: table;
}

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

.mh-pagination a:hover {
	color: #29aae3;
}

.mh-pagination--properties {
	padding-left: 0;
	text-transform: uppercase;
	font-size: 14px;
}

.mh-pagination--properties li {
	display: inline;
}

@media (min-width:480px) {
	.mh-pagination--properties .mh-pagination__item {
		padding: 0 6px;
	}
	
	.mh-pagination--properties li {
		padding: 0 12px;
	}
}

.mh-pagination--properties li a {
	display: inline-block;
	padding: 6px;
	color: #444;
}

.mh-pagination--properties li.active a, .mh-pagination--single-post, .page-numbers.current {
	color: #29aae3;
}

.mh-pagination--properties__inner {
	display: inline-block;
	margin: 0 auto;
}

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

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

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

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

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

.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%;
}

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

@media (min-width:1024px) {
	.mh-footer__row {
		margin: 0 -18px;
		position: relative;
	}
	
	.mh-footer__row .mh-footer__row__column {
		padding: 0 18px;
		float: left;
		width: 25%;
	}
	
	.mh-footer__row .mh-footer__row__column--1of2 {
		width: 50%;
	}
	
	.mh-footer__row .mh-footer__row__column--1of3 {
		width: 33.3%;
	}
	
	.mh-footer__row .mh-footer__row__column--1of5 {
		width: 20%;
	}
}

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

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

@media (min-width:768px) {
	.mh-footer__heading {
		margin-bottom: 24px;
	}
	
	.mh-footer__logo>img {
		margin-bottom: 36px;
	}
	
	.mh-footer-bottom {
		text-align: right;
	}
}

.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;
}

.mh-footer-top {
	background: #f2f2f2;
}

.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, .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:active, .mh-footer-top--dark a:focus, .mh-footer-top--dark a:hover {
		color: #29aae3;
		text-decoration: none;
	}
	
	.mh-footer-top--dark .widget_archive ul li a:active, .mh-footer-top--dark .widget_archive ul li a:focus, .mh-footer-top--dark .widget_archive ul li a:hover, .mh-footer-top--dark .widget_categories ul li a:active, .mh-footer-top--dark .widget_categories ul li a:focus, .mh-footer-top--dark .widget_categories ul li a:hover, .mh-footer-top--dark .widget_meta ul li a:active, .mh-footer-top--dark .widget_meta ul li a:focus, .mh-footer-top--dark .widget_meta ul li a:hover, .mh-footer-top--dark .widget_nav_menu ul li a:active, .mh-footer-top--dark .widget_nav_menu ul li a:focus, .mh-footer-top--dark .widget_nav_menu ul li a:hover, .mh-footer-top--dark .widget_pages ul li a:active, .mh-footer-top--dark .widget_pages ul li a:focus, .mh-footer-top--dark .widget_pages ul li a:hover, .mh-footer-top--dark .widget_recent_entries ul li a:active, .mh-footer-top--dark .widget_recent_entries ul li a:focus, .mh-footer-top--dark .widget_recent_entries ul li a:hover {
		color: #fff;
	}
}

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

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

.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, .mh-footer-top--dark .recentcomments a {
	color: #fff;
}

.mh-footer-top--dark .tagcloud a {
	border-color: #666;
	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, .mh-footer-top--dark .mh-footer__text-bottom, .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=email]:active, .mh-footer-top--dark input[type=email]:focus, .mh-footer-top--dark input[type=password]:active, .mh-footer-top--dark input[type=password]:focus, .mh-footer-top--dark input[type=search]:active, .mh-footer-top--dark input[type=search]:focus, .mh-footer-top--dark input[type=text]:active, .mh-footer-top--dark input[type=text]:focus {
	background: #fff;
}

.mh-footer-bottom {
	padding-bottom: 24px;
	font-size: 13px;
	padding-top: 24px;
	background: #222;
	color: #fff;
}

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

.lazylaoding, .lazyload {
	opacity: 0;
}

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

.mh-active-input-primary .mh-active-input input {
	color: #29aae3;
	border: 2px solid #29aae3;
	padding-top: 9px;
	padding-bottom: 9px;
	background: rgba(41, 170, 227, .05);
}

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

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

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

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

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

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=email]:active, body.mh-active-input-dark input[type=email]: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=search]:active, body.mh-active-input-dark input[type=search]:focus, body.mh-active-input-dark input[type=text]:active, body.mh-active-input-dark input[type=text]:focus {
	color: #222;
	border-color: #4d4d4d;
	background: #fff;
}

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

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

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

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

.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, .mh-agent-contact__element a:hover {
	color: #222;
}

.awesomplete [hidden] {
	display: none;
}

.awesomplete, .awesomplete>input {
	display: block;
}

.awesomplete .visually-hidden {
	position: absolute;
	clip: rect(0, 0, 0, 0);
}

.awesomplete {
	position: relative;
}

.awesomplete>ul {
	position: absolute;
	left: 0;
	top: 48px;
	z-index: 1000;
	min-width: 100%;
	box-sizing: border-box;
	list-style: none;
	padding: 0;
	margin: 0;
	border-radius: 0;
	background: #fff;
	border: 1px solid #c3c3c5;
}

.awesomplete>ul:empty {
	display: none;
}

@supports (transform:scale(0)) {
	.awesomplete>ul:empty, .awesomplete>ul[hidden] {
		opacity: 0;
		display: block;
	}
}

.awesomplete>ul>li {
	position: relative;
	padding: 6px 12px;
	font-size: 14px;
	cursor: pointer;
}

.awesomplete>ul>li:hover {
	background: #f0f0f0;
}

.awesomplete mark {
	background: #29aae3;
	color: #fff !important;
}

.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;
	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: .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;
	max-height: 300px !important;
}

.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, .wpcf7-form input, .wpcf7-form textarea {
	text-align: left;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	display: none;
	float: left;
	margin: 2px 0 0;
	font-size: 14px;
	min-width: 100%;
	list-style: none;
	background-color: #fff;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: 1px solid #c3c3c5;
}

.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;
	min-height: 36px;
	clear: both;
	font-weight: 400;
	color: #222;
	white-space: nowrap;
	text-transform: capitalize;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

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

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

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

.wpcf7-form label {
	font-weight: 700;
	display: block;
}

.wpcf7-form label:after {
	clear: both;
	content: "";
	display: table;
}

.wpcf7-form .wpcf7-form-control-wrap {
	display: block;
	margin-bottom: 3px;
	position: relative;
	width: 100%;
}

.wpcf7-form .wpcf7-select {
	border: 1px solid #c6c6c7;
}

.wpcf7-form input {
	margin-bottom: 0;
}

.wpcf7-form select {
	padding-top: 12px;
	padding-bottom: 12px;
}

.wpcf7-form p, .wpcf7-form textarea {
	margin-bottom: 0;
}

.wpcf7-form .wpcf7-not-valid-tip {
	border-left: 5px solid red;
	background: rgba(255, 0, 0, .1);
	padding: 6px 12px;
	margin-bottom: 0;
	margin-top: 3px;
	font-size: 14px;
	color: #222;
}

.wpcf7-form .wpcf7-form-control.wpcf7-submit {
	background: #29aae3;
	color: #fff;
	border: 0;
	padding: 0 24px;
	line-height: 48px;
	shadow: none;
	cursor: pointer;
	margin-bottom: 24px;
	margin-right: 24px;
	text-transform: uppercase;
	letter-spacing: .1px;
}

.wpcf7-form .wpcf7-validation-errors {
	margin: 0 0 24px;
	padding: 24px;
	background: #f4f4f4;
	border: 0;
}

.wpcf7-form .wpcf7-mail-sent-ok {
	margin: 0 0 24px;
	padding: 24px;
	border: 0;
	background: green;
	color: #fff;
}

.mh-contact-form-style-2 {
	background: #f4f4f4 !important;
	margin-bottom: 24px !important;
	padding: 6px 18px 0 !important;
}

.mh-contact-form-style-2 .wpcf7-list-item {
	display: block !important;
	margin: 0 !important;
}

.mh-contact-form-style-2 label {
	margin-bottom: 12px !important;
	margin-top: 12px !important;
}

.mh-contact-form-style-2 .wpcf7-list-item-label {
	left: 6px !important;
	top: -2px !important;
	position: relative !important;
	font-size: 14px !important;
}

.mh-contact-form-style-2 .wpcf7-list-item.first {
	margin-top: 6px !important;
}

.mh-contact-form-style-2 .wpcf7-form-control-wrap {
	display: block !important;
	margin-top: 3px !important;
}

#wp-admin-bar-essb, .essb-customizer-toggle, .essb-location-customize, .mh-top-essb .essb_network_name {
	display: none !important;
}

.mh-contact-form-style-2 input[type=date], .mh-contact-form-style-2 input[type=email], .mh-contact-form-style-2 input[type=number], .mh-contact-form-style-2 input[type=password], .mh-contact-form-style-2 input[type=tel], .mh-contact-form-style-2 input[type=text], .mh-contact-form-style-2 textarea {
	text-align: left !important;
	margin-bottom: 0 !important;
}

.mh-contact-form-style-2+.wpcf7-mail-sent-ok {
	margin-top: -114px !important;
	z-index: 99999 !important;
	position: relative !important;
	margin-bottom: 24px !important;
}

.mh-contact-form-style-2+.wpcf7-validation-errors {
	margin-top: -70px !important;
	z-index: 99999 !important;
	margin-bottom: 24px !important;
	position: relative !important;
}

.mfp-bg, .mfp-wrap {
	position: fixed;
	top: 0;
	height: 100%;
	left: 0;
}

.mh-estate__section--details .essb_links.essb_template_flat-retina li a .essb_network_name, .post-content .essb_links.essb_template_flat-retina li a .essb_network_name {
	margin-right: 16px;
}

.mh-estate__section--details .essb_links.essb_template_flat-retina li a, .post-content .essb_links.essb_template_flat-retina li a {
	box-shadow: none;
	-webkit-box-shadow: none;
	border-radius: 0;
}

.mh-estate__section--details .essb_links.essb_template_flat-retina, .post-content .essb_links.essb_template_flat-retina {
	word-wrap: normal !important;
	clear: both;
	margin: -2px 0 22px;
}

.mh-top-essb {
	width: 248px;
	margin-top: 9px;
	float: left;
}

.mh-top-essb .essb_links {
	margin-top: 0;
	margin-bottom: 0;
}

.mh-top-essb .essb_item:last-child a {
	margin-right: 0 !important;
}

@media (min-width:768px) {
	.mh-top-essb {
		margin-top: 0;
	}
}

@media (min-width:1024px) {
	.mh-top-essb {
		float: right;
		text-align: right;
	}
}

@media (min-width:1200px) {
	.mh-top-essb {
		width: 320px;
	}
}

.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;
}

.mfp-bg {
	width: 100%;
	overflow: hidden;
	background: #0b0b0b;
	opacity: .95;
}

.mfp-wrap {
	width: 100%;
	outline: 0 !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-close, .mfp-preloader {
	text-align: center;
	position: absolute;
}

.mfp-ajax-holder .mfp-content, .mfp-inline-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-arrow, .mfp-close, .mfp-counter, .mfp-preloader {
	-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;
	top: 50%;
	width: auto;
	margin-top: -.8em;
	left: 8px;
	right: 8px;
	z-index: 204002;
}

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

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

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

button.mfp-arrow, button.mfp-close {
	overflow: visible;
	cursor: pointer;
	background: 0 0;
	border: 0;
	-webkit-appearance: none;
	display: block;
	outline: 0;
	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;
	right: 0;
	top: 0;
	text-decoration: none;
	opacity: .65;
	padding: 0 0 18px 10px;
	font-size: 28px;
	font-family: Arial, Baskerville, monospace;
}

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

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

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

.mfp-iframe-holder .mfp-close, .mfp-image-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: .65;
	margin: -55px 0 0;
	top: 50%;
	padding: 0;
	width: 48px;
	height: 48px;
	-webkit-tap-highlight-color: transparent;
}

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

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

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

.mfp-arrow-left:after, .mfp-arrow-right:after {
	font-family: "Font Awesome 5 Free" !important;
	font-size: 16px !important;
	color: #222;
	line-height: 48px;
	text-align: center;
	background: #fff;
	width: 48px;
	height: 48px;
}

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

.mfp-arrow-left:after {
	content: "" !important;
	font-weight: 900;
	display: block;
}

.mfp-arrow-right:after, .mh-property .swiper-button-next:before {
	content: "" !important;
	font-weight: 900;
}

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

.mfp-arrow-right:after {
	display: block;
}

.mdl-button.mdl-button--white:before, .mdl-textfield__label:after, .mfp-figure:after, .mh-mega-intro__wrapper:after, .mh-mmm-label a:after {
	content: "";
}

.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, .6);
	background: #000;
}

img.mfp-img {
	width: auto;
	height: auto;
	display: block;
	line-height: 0;
	box-sizing: border-box;
	padding: 40px 0;
	margin: 0 auto;
}

.mfp-figure {
	line-height: 0;
}

.mfp-figure:after {
	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, .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;
}

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

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

@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, .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, .6);
		position: fixed;
		text-align: center;
		padding: 0;
	}
}

@media all and (max-width:900px) {
	.mfp-arrow {
		-webkit-transform: scale(.75);
		transform: scale(.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;
}

.mdl-ripple {
	background: #000;
	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 .3s cubic-bezier(0, 0, .2, 1), width .3s cubic-bezier(0, 0, .2, 1), height .3s cubic-bezier(0, 0, .2, 1), opacity .6s cubic-bezier(0, 0, .2, 1);
}

.mdl-animation--default, .mdl-animation--fast-out-slow-in, .mdl-checkbox__tick-outline, .mdl-radio__inner-circle, .mdl-textfield--floating-label .mdl-textfield__label, .mdl-textfield__expandable-holder, .mdl-textfield__label:after {
	transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}

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

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

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

.mdl-button {
	background: 0 0;
	border: none;
	height: 36px;
	margin: 0;
	min-width: 64px;
	padding: 0 16px;
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	will-change: box-shadow;
	transition: box-shadow .2s cubic-bezier(.4, 0, 1, 1), background-color .2s cubic-bezier(.4, 0, .2, 1), color .2s cubic-bezier(.4, 0, .2, 1);
	outline: 0;
	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, .2);
}

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

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

.mdl-button.mdl-button--colored {
	color: #3f51b5;
}

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

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

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

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

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

.mdl-button--raised.mdl-button--colored {
	background: #3f51b5;
	color: #fff;
}

.mdl-button--raised.mdl-button--colored:active, .mdl-button--raised.mdl-button--colored:focus:not(:active), .mdl-button--raised.mdl-button--colored:hover {
	background-color: #3f51b5;
}

.mdl-button--raised.mdl-button--colored .mdl-ripple {
	background: #fff;
}

.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, .2);
	box-shadow: 0 1px 1.5px 0 rgba(0, 0, 0, .12), 0 1px 1px 0 rgba(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, #fff, #000);
}

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

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

.mdl-button--fab.mdl-button--colored {
	background: #ff4081;
	color: #fff;
}

.mdl-button--fab.mdl-button--colored:active, .mdl-button--fab.mdl-button--colored:focus:not(:active), .mdl-button--fab.mdl-button--colored:hover {
	background-color: #ff4081;
}

.mdl-button--fab.mdl-button--colored .mdl-ripple {
	background: #fff;
}

.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, .mdl-checkbox__input, .mdl-checkbox__label, .mdl-radio, .mdl-radio__button {
	line-height: 24px;
}

.mdl-button--icon .material-icons {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-12px, -12px);
	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: 0;
	left: 0;
}

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

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

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

.mdl-button--primary.mdl-button--primary {
	color: #3f51b5;
}

.mdl-button--primary.mdl-button--primary .mdl-ripple {
	background: #fff;
}

.mdl-button--primary.mdl-button--primary.mdl-button--fab, .mdl-button--primary.mdl-button--primary.mdl-button--raised {
	color: #fff;
	background-color: #3f51b5;
}

.mdl-button--accent.mdl-button--accent {
	color: #ff4081;
}

.mdl-button--accent.mdl-button--accent .mdl-ripple {
	background: #fff;
}

.mdl-button--accent.mdl-button--accent.mdl-button--fab, .mdl-button--accent.mdl-button--accent.mdl-button--raised {
	color: #fff;
	background-color: #ff4081;
}

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

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

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

.mdl-button--colored.mdl-button--disabled.mdl-button--disabled, .mdl-button--colored[disabled][disabled] {
	color: rgba(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__box-outline, .mdl-radio__outer-circle {
	z-index: 2;
	width: 14px;
	height: 14px;
}

.mdl-checkbox.is-upgraded {
	padding-left: 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;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
	cursor: pointer;
	overflow: hidden;
	border: 2px solid rgba(0, 0, 0, .54);
	z-index: 2;
}

.mdl-checkbox.is-disabled .mdl-checkbox__box-outline, fieldset[disabled] .mdl-checkbox .mdl-checkbox__box-outline {
	border: 2px solid rgba(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 0 8px rgba(0, 0, 0, .1);
	background-color: rgba(0, 0, 0, .1);
}

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

.mdl-checkbox__tick-outline {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: 0 0;
	transition-duration: .28s;
	transition-property: background;
}

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

.mdl-checkbox__label {
	position: relative;
	cursor: pointer;
	margin: 0;
}

.mdl-checkbox.is-checked.is-disabled .mdl-checkbox__tick-outline.nitro-lazy, fieldset[disabled] .mdl-checkbox.is-checked .mdl-checkbox__tick-outline.nitro-lazy {
	background-image: none !important;
}

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

.mdl-checkbox__ripple-container {
	position: absolute;
	z-index: 2;
	box-sizing: border-box;
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000);
}

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

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

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

.mdl-radio.is-upgraded {
	padding-left: 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;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	margin: 0;
	cursor: pointer;
	border: 2px solid rgba(0, 0, 0, .54);
	border-radius: 50%;
	z-index: 2;
}

.mdl-radio.is-checked .mdl-radio__outer-circle {
	border: 2px solid #3f51b5;
}

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

.mdl-radio__inner-circle {
	position: absolute;
	z-index: 1;
	margin: 0;
	box-sizing: border-box;
	cursor: pointer;
	transition-duration: .28s;
	transition-property: transform;
	transform: scale3d(0, 0, 0);
	border-radius: 50%;
}

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

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

.mdl-radio__label {
	cursor: pointer;
}

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

.mdl-radio__ripple-container {
	position: absolute;
	z-index: 2;
	box-sizing: border-box;
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
	-webkit-mask-image: -webkit-radial-gradient(circle, #fff, #000);
}

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

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

.mdl-textfield {
	position: relative;
	font-size: 16px;
	display: inline-block;
	box-sizing: border-box;
	width: 300px;
	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__input, .mdl-textfield__label {
	font-size: 16px;
	width: 100%;
	text-align: left;
	display: block;
}

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

.mdl-textfield__input {
	border: none;
	border-bottom: 1px solid rgba(0, 0, 0, .12);
	font-family: Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 4px 0;
	background: 0 0;
	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: 0;
}

.mdl-textfield.is-invalid .mdl-textfield__input {
	border-color: #d50000;
	box-shadow: none;
}

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

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

.mdl-textfield__label {
	bottom: 0;
	color: rgba(0, 0, 0, .26);
	left: 0;
	right: 0;
	pointer-events: none;
	position: absolute;
	top: 24px;
	overflow: hidden;
	white-space: nowrap;
}

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

.mdl-textfield--floating-label .mdl-textfield__label {
	transition-duration: .2s;
}

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

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

.mdl-textfield--floating-label.has-placeholder .mdl-textfield__label, .mdl-textfield--floating-label.is-dirty .mdl-textfield__label, .mdl-textfield--floating-label.is-focused .mdl-textfield__label {
	color: #3f51b5;
	font-size: 12px;
	top: 4px;
	visibility: visible;
}

.mdl-textfield--floating-label.is-invalid .mdl-textfield__label, .mdl-textfield__error {
	color: #d50000;
	font-size: 12px;
}

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

.mdl-textfield__label:after {
	background-color: #3f51b5;
	bottom: 20px;
	height: 2px;
	left: 45%;
	position: absolute;
	transition-duration: .2s;
	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: #d50000;
}

.mdl-textfield__error {
	position: absolute;
	margin-top: 3px;
	visibility: hidden;
	display: block;
}

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

.mdl-textfield__expandable-holder {
	position: relative;
	margin-left: 32px;
	transition-duration: .2s;
	display: inline-block;
	max-width: .1px;
}

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

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

.mdl-button {
	font-family: inherit;
	letter-spacing: .1px;
	border-radius: 0;
	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, .mdl-button.mdl-button--raised:active, .mdl-button.mdl-button--raised:focus, .mdl-button.mdl-button--raised:hover {
	box-shadow: none;
}

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

.mdl-button.mdl-button--lg {
	font-size: 16px;
	padding: 6px 20px;
	height: auto;
	line-height: 36px;
}

.mdl-button.mdl-button--raised.mdl-button--primary {
	background: #29aae3;
}

@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: .15s ease-in-out;
		-moz-transition: .15s ease-in-out;
		-ms-transition: .15s ease-in-out;
		-o-transition: .15s ease-in-out;
		transition: .15s ease-in-out;
	}
	
	.mdl-button.mdl-button--raised.mdl-button--primary:hover:before {
		background: rgba(255, 255, 255, .18);
	}
}

.mdl-button.mdl-button--primary-ghost {
	background: 0 0;
	border: 2px solid #29aae3;
	line-height: 32px;
	color: #29aae3;
}

.mdl-button.mdl-button--primary-ghost:hover {
	color: #fff;
	background: #29aae3;
}

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

@media (max-width:1024px) {
	.mdl-button.mdl-button--primary-ghost {
		color: #29aae3;
		background: 0 0 !important;
	}
}

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

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

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

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

.mdl-button.mdl-button--white .mdl-ripple {
	background: #000;
}

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

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

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

.mdl-button.mdl-button--dark-font:active, .mdl-button.mdl-button--dark-font:focus, .mdl-button.mdl-button--dark-font:hover, .mdl-button.mdl-button--primary-font:active, .mdl-button.mdl-button--primary-font:focus, .mdl-button.mdl-button--primary-font:hover {
	background: 0 0;
}

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

.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--compare-active {
	background: #29aae3;
	color: #fff;
}

.mdl-button.mdl-button--compare-active:active, .mdl-button.mdl-button--compare-active:focus, .mdl-button.mdl-button--compare-active:hover {
	background: #29aae3;
}

.mdl-button.mdl-button--clear {
	margin-left: 6px;
}

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

@media (min-width:768px) {
	.mdl-button.mdl-button--half {
		min-width: 50%;
	}
	
	.mdl-button.mdl-button--clear {
		float: none;
		margin: 0 4px;
		display: inline-block;
		min-width: 120px;
	}
	
	.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;
}

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

.mdl-checkbox {
	margin-bottom: 0;
}

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

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

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

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

.mdl-checkbox.is-checked .mdl-checkbox__tick-outline {
	background: url("https://cdn-ilcdbhp.nitrocdn.com/NhcFkQsIkCKaaVpYqDVQCAvYXJivIbEu/assets/images/source/rev-e76cc99/douglasemmettapartments.com/wp-content/themes/myhome/assets/images/e57fa4c6462a704393282f53060236e6.tick.svg") #fff !important;
}

.mdl-checkbox.is-checked .mdl-checkbox__tick-outline.nitro-lazy {
	background-image: none !important;
}

.mdl-radio__outer-circle {
	border-color: #666;
	top: 6px;
}

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

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

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

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

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

.mh-mega-intro__wrapper {
	padding-top: 72px;
	padding-bottom: 72px;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	position: relative !important;
	background-size: cover !important;
	z-index: 1;
}

.mh-mega-intro__wrapper:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 2;
}

.mh-mega-intro__content {
	max-width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
	z-index: 3;
	position: relative;
	text-align: center;
}

.mh-mega-intro__info {
	display: block;
	text-align: center;
	font-size: 21px;
	margin-bottom: 32px;
	color: #fff;
}

.mh-mega-intro__heading {
	color: #fff;
	text-align: center;
}

@media (min-width:768px) {
	.mh-mega-intro__heading {
		font-size: 60px;
	}
}

.mh-mega-intro__button {
	margin: 0 auto;
}

#mega_main_menu li {
	color: transparent;
}

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 .nav_logo .logo_link {
	padding-right: 0 !important;
}

html body #mega_main_menu.mh-primary li.default_dropdown li>ul, html body #mega_main_menu.mh-primary li.default_dropdown>ul, html body #mega_main_menu.mh-primary li.grid_dropdown .mega_dropdown>li .post_details, html body #mega_main_menu.mh-primary li.grid_dropdown>ul, html body #mega_main_menu.mh-primary li.multicolumn_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.post_type_dropdown>ul, html body #mega_main_menu.mh-primary li.tabs_dropdown>ul, html body #mega_main_menu.mh-primary li.widgets_dropdown>ul {
	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: #29aae3;
	background: 0 0;
	border: none;
	padding: 0 !important;
}

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

@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: #29aae3;
}

@media (max-width:1023px) {
	html body #mega_main_menu.mh-primary>.menu_holder>.menu_inner>.nav_logo>.mobile_toggle>.mobile_button .symbol_cross, 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 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 li.default_dropdown .mega_dropdown>li>.item_link, html body #mega_main_menu.mh-primary li.grid_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.widgets_dropdown .mega_dropdown>li>.item_link, html body #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li .mega_dropdown>li .post_details, 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 {
		background: #fff !important;
	}
	
	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 .post_details>.post_icon>i, 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 .mega_dropdown, html body #mega_main_menu.mh-primary .nav_logo .logo_link {
		padding: 0 15px;
	}
	
	html body #mega_main_menu.mh-primary li.default_dropdown>.mega_dropdown>.menu-item>.item_link:before {
		border-color: #222 !important;
	}
}

@media (min-width:1023px) {
	html body #mega_main_menu.mh-primary .mega_dropdown li, html body #mega_main_menu.mh-primary ul li .mega_dropdown>li>.item_link {
		min-height: 48px;
	}
	
	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: 36px;
	}
	
	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 .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: #666;
	}
	
	html body #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.item_link>.link_content>.link_text {
		letter-spacing: .3px;
	}
	
	html body #mega_main_menu.mh-primary li.multicolumn_dropdown:hover>.mega_dropdown {
		padding: 0;
	}
	
	html body #mega_main_menu.mh-primary li.default_dropdown li>ul, html body #mega_main_menu.mh-primary li.grid_dropdown .mega_dropdown>li .post_details, html body #mega_main_menu.mh-primary li.widgets_dropdown>ul {
		box-shadow: none;
		padding: 0;
	}
	
	html body #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li .mega_dropdown>li .post_details, 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 {
		background: #fff;
	}
	
	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: #29aae3;
	}
	
	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.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, 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.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.tabs_dropdown>.mega_dropdown, html body #mega_main_menu.mh-primary.dropdowns_animation-anim_4>.menu_holder li.widgets_dropdown>.mega_dropdown {
		-webkit-transition: transform .2s, opacity .2s, padding .2s;
		-moz-transition: transform .2s, opacity .2s, padding .2s;
		-ms-transition: transform .2s, opacity .2s, padding .2s;
		-o-transition: transform .2s, opacity .2s, padding .2s;
		transition: transform .2s, opacity .2s, padding .2s;
		background: #666;
	}
	
	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.multicolumn_dropdown>.mega_dropdown>li, html body #mega_main_menu.mh-primary>.menu_holder li.widgets_dropdown>.mega_dropdown>li {
		padding-left: 0;
		padding-right: 0;
	}
	
	html body #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li[class*=columns] {
		margin-right: 10px;
	}
}

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

@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: 0;
	}
}

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%;
}

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

@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 .mobile_toggle .symbol_cross, html body .mh-header--transparent #mega_main_menu.mh-primary .mobile_toggle .symbol_menu i {
	color: #fff;
}

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.current-menu-ancestor>.item_link, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li.current-menu-ancestor>.item_link *, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li.current-menu-item>.item_link *, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li.current-page-ancestor>.item_link *, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li.current-post-ancestor>.item_link *, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li:hover>.item_link, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li:hover>.item_link *, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.item_link:focus, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.item_link:hover {
		color: #fff !important;
	}
	
	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 *, html body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.item_link:after {
		color: #fff;
	}
	
	xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.default_dropdown .mega_dropdown>li>.item_link, xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.grid_dropdown .mega_dropdown>li>.item_link, xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.multicolumn_dropdown .mega_dropdown>li>.item_link, xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.widgets_dropdown .mega_dropdown>li>.item_link, xhtml body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li .mega_dropdown>li .post_details, xhtml body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li.default_dropdown .mega_dropdown, xhtml body .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.mega_dropdown {
		background: #333;
	}
	
	xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.default_dropdown .mega_dropdown>li>.item_link:hover, xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.grid_dropdown .mega_dropdown>li>.item_link:hover, xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.multicolumn_dropdown .mega_dropdown>li>.item_link:hover, xhtml body .mh-header--transparent #mega_main_menu.mh-primary li.widgets_dropdown .mega_dropdown>li>.item_link:hover {
		background: #666;
	}
	
	.mh-header--transparent #mh-submit-button a, .mh-header--transparent #mh-submit-button i, .mh-header--transparent-dark #mh-submit-button a, .mh-header--transparent-dark #mh-submit-button i {
		color: #fff !important;
	}
}

html body:not(.vc_editor) .mh-header--transparent-dark #mega_main_menu.mh-primary>.menu_holder:not(.sticky_container)>.mmm_fullwidth_container {
	background: url("https://cdn-ilcdbhp.nitrocdn.com/NhcFkQsIkCKaaVpYqDVQCAvYXJivIbEu/assets/images/optimized/rev-e76cc99/douglasemmettapartments.com/wp-content/themes/myhome/assets/images/gradient-dark.png") repeat-x;
	background-size: contain;
	border-color: transparent;
}

html body:not(.vc_editor) .mh-header--transparent-dark #mega_main_menu.mh-primary>.menu_holder:not(.sticky_container)>.mmm_fullwidth_container.nitro-lazy {
	background-image: none !important;
}

.mh-header--transparent-dark #mega_main_menu.direction-horizontal>.menu_holder.sticky_container {
	background: #fff !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: #29aae3;
}

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, 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 {
	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) {
	.mh-primary--no-logo .nav_logo {
		display: none !important;
	}
	
	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: #29aae3;
	}
	
	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: 0;
		height: 0;
		border-left: 6px solid transparent;
		border-right: 6px solid transparent;
		border-bottom: 6px solid #666;
		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 .1s ease-out .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, 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 #mega_main_menu.mh-primary .mega_main_menu_ul>li.multicolumn_dropdown>.mega_dropdown>li {
		border-right: none !important;
	}
}

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;
}

.mega_main_menu_ul li.multicolumn_dropdown ul.mega_dropdown ul.mega_dropdown {
	border: none !important;
}

@media (min-width:1023px) {
	.menu-item-has-children, html body #mega_main_menu.mh-primary .mega_main_menu_ul>li.multicolumn_dropdown>.mega_dropdown>li.menu-item-has-children>a {
		background: 0 0 !important;
	}
	
	html body #mega_main_menu.mh-primary .mega_main_menu_ul>li.multicolumn_dropdown>.mega_dropdown>li.menu-item-has-children>a .link_text {
		font-weight: 700;
		color: #fff;
		letter-spacing: .2px !important;
		margin-bottom: 12px !important;
	}
	
	html body #mega_main_menu.mh-primary .mega_main_menu_ul>li.multicolumn_dropdown>.mega_dropdown>li.menu-item-has-children>ul>li {
		border-right: none !important;
		padding: 0 !important;
		min-height: 36px !important;
	}
	
	.multicolumn_dropdown .mega_dropdown:before {
		display: none;
	}
	
	html body #mega_main_menu.mh-primary ul li.multicolumn_dropdown .mega_dropdown>.menu-item-has-children>.item_link {
		min-height: 48px;
	}
	
	html body #mega_main_menu.mh-primary .mega_main_menu_ul>li.multicolumn_dropdown>.mega_dropdown>li.menu-item-has-children>a:before {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 2px;
		background: #999;
	}
}

.mh-mmm-label a:after {
	border-radius: 4px;
	background: #fed700 !important;
	color: #333;
	display: inline-block;
	padding: 2px 7px;
	font-weight: 700;
	position: absolute;
	top: 14px;
	left: 14px;
}

.mh-mmm-label--slider a {
	padding-left: 68px !important;
}

.mh-mmm-label--slider a:after {
	content: "Main";
}

.mh-mmm-label--classic a {
	padding-left: 80px !important;
}

.mh-mmm-label--classic a:after {
	top: 12px;
	content: "classic";
}

.mh-mmm-label--popular a {
	padding-left: 92px !important;
}

.mh-mmm-label--popular a:after {
	content: "Popular";
}

.mh-mmm-label--social a {
	padding-left: 79px !important;
}

.mh-mmm-label--social a:after {
	top: 12px;
	content: "Buzz!!!";
}

.mh-mmm-label--big a {
	padding-left: 54px !important;
}

.mh-mmm-label--hd a, .mh-mmm-label--video a {
	padding-left: 52px !important;
}

.mh-mmm-label--big a:after {
	top: 12px;
	content: "BIG";
}

.mh-mmm-label--hd a:after, .mh-mmm-label--video a:after {
	content: "HD";
}

.mh-mmm-label--hd a:after {
	top: 12px;
}

.mh-mmm-label--components a {
	padding-left: 101px !important;
}

.mh-mmm-label--components a:after {
	top: 12px;
	content: "Powerful";
}

.mh-mmm-label--main a {
	padding-left: 100px !important;
}

.mh-mmm-label--main a:after {
	content: "main";
}

.menu-bg-dark, .menu-bg-dark * {
	background: #222 !important;
}

.menu-bg-dark li:hover a, .menu-bg-dark li:hover a * {
	background: #000 !important;
}

.mega_main_menu.no-logo .nav_logo {
	display: block !important;
}

#mega_main_menu_ul span.wpml-ls-native {
	padding-left: 6px;
}

#mega_main_menu_ul img.wpml-ls-flag {
	margin-top: -3px !important;
}

@media (max-width:1023px) {
	html body.myhome-body #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.item_link * {
		color: #222 !important;
	}
}

.mh-fixed-menu--active .mmm_fullwidth_container {
	background-image: none !important;
}

.mh-fixed-menu--active .mmm_fullwidth_container.nitro-lazy {
	background-image: none !important;
}

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

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

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

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

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

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

.mh-accordion .ui-accordion-content {
	background: #fff;
	width: 100%;
	margin: 0;
	padding: 12px;
}

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

.mh-accordion .ui-accordion-header {
	background-color: #fafafa;
	margin: 3px 0 0;
	padding: 12px 24px;
	font-size: 14px;
	color: #333;
	border-bottom: none;
	cursor: pointer;
	-webkit-transition: background .3s, color .3s;
	-moz-transition: background .3s, color .3s;
	-ms-transition: background .3s, color .3s;
	-o-transition: background .3s, color .3s;
	transition: background .3s, color .3s;
}

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

.mh-accordion .ui-accordion-header.ui-accordion-header-active {
	background: #29aae3;
	color: #fff;
}

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

.mh-accordion {
	display: none !important;
}

.mh-accordion.ui-accordion {
	display: block !important;
}

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

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

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

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

.mh-agent__thumbnail:after {
	content: "";
	display: block;
	opacity: 0;
	background: #000;
	-webkit-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.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;
	display: flex;
	gap: 8px;
	align-content: center;
}

.mh-agent__social svg {
	width: 14px;
	height: 14px;
	fill: #666;
}

.mh-agent__social a {
	color: #666;
}

@media (min-width:1025px) {
	.mh-agent__thumbnail:hover:after {
		opacity: .3;
	}
	
	.mh-agent__social a:hover {
		color: #222;
	}
	
	.mh-agent__social a:hover path {
		fill: #222;
	}
	
	.mh-agent--dark a:hover {
		color: #fff;
	}
}

.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;
}

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

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

.mh-agent__additional-fields__item {
	font-size: 13px;
	line-height: 24px;
}

.mh-agent__content .mh-agent__additional-fields__item {
	line-height: initial;
	margin-bottom: 12px;
}

.mh-agent-intro {
	margin-top: -48px;
}

.mh-agent-intro>div {
	border-top: 5px solid #29aae3;
}

.mh-agent-intro>div>div {
	padding-left: 48px;
	padding-right: 48px;
}

@media (min-width:768px) {
	.mh-agent-intro {
		margin-top: -142px;
	}
	
	.mh-agent-list {
		margin: 0 -6px;
	}
	
	.mh-agent-list__element {
		width: 50%;
		float: left;
	}
	
	.mh-agent-list__element .mh-agent {
		margin: 0 6px 24px;
	}
}

@media (min-width:1024px) {
	.mh-agent-list__element {
		width: 33.3%;
		float: left;
	}
}

.mh-agency-agents {
	width: 100%;
	margin: 0 12px;
}

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

@media (min-width:768px) {
	.mh-agency-agents {
		max-width: 1140px;
		margin: 24px auto 0;
	}
}

.mh-agency-agents__single__img-wrapper {
	position: relative;
	display: block;
	padding-bottom: 100%;
}

.mh-agency-agents__single__img-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	opacity: 0;
	width: 100%;
	background: #000;
	-webkit-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

@media (min-width:1025px) {
	.mh-agency-agents__single__img-wrapper:hover:after {
		opacity: .3;
	}
}

.mh-agency-agents__single__img-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.mh-agency-agents__heading {
	padding: 12px;
	background: #f4f4f4;
	margin-bottom: 0;
}

.mh-agent-list {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	width: 100% !important;
}

@media (min-width:768px) {
	.mh-agent-list__element .mh-agent {
		height: 100% !important;
		margin-bottom: 0 !important;
	}
}

.mh-agent-list__element {
	margin-bottom: 24px !important;
}

.mh-arrow-up {
	background: #29aae3;
	width: 48px;
	height: 48px;
	position: fixed;
	bottom: 24px;
	right: 24px;
	z-index: 1000000000000;
	cursor: pointer;
	-webkit-transition: all .1s;
	-moz-transition: all .1s;
	-ms-transition: all .1s;
	-o-transition: all .1s;
	transition: all .1s;
}

.mh-arrow-up:hover {
	background: #f4f4f4;
	color: #000;
}

.mh-arrow-up__inner {
	position: relative;
}

.mh-arrow-up i {
	position: absolute;
	top: 14px;
	left: 0;
	right: 0;
	font-size: 16px;
	color: #222;
	text-align: center;
}

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

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

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

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

.mh-author__avatar__image {
	width: 125px;
	height: 125px;
}

@media (min-width:768px) {
	.mh-author {
		padding: 36px 18px;
		position: relative;
		text-align: left;
	}
	
	.mh-author__avatar {
		position: absolute;
		top: 0;
		left: 0;
		margin-bottom: 24px;
	}
	
	.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 #29aae3;
	padding: 12px;
	margin-bottom: 24px;
}

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

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

.mh-box__img-wrapper {
	display: block;
	overflow: hidden;
	padding-bottom: 62.5%;
	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);
	-webkit-transition: all .6s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: all .6s cubic-bezier(.4, 0, .2, 1);
	-o-transition: all .6s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: all .6s cubic-bezier(.4, 0, .2, 1);
	transition: all .6s cubic-bezier(.4, 0, .2, 1);
}

.comment-reply-title, .mh-box, .mh-breadcrumbs-wrapper .mh-layout, .mh-breadcrumbs-wrapper i, .mh-breadcrumbs__back, .mh-comment {
	position: relative;
}

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

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

.mh-clients--image-filter img, .mh-compare__column .mh-thumbnail .mh-thumbnail__inner:after, .mh-estate-vertical .mh-thumbnail .mh-thumbnail__inner:before {
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
}

.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;
}

.mh-breadcrumbs-wrapper {
	background: #f9f9f9;
	color: #999;
	font-size: 13px;
	line-height: 18px;
	margin-bottom: 12px;
	border-top: 1px solid #fff;
	padding: 0 0 12px;
}

@media (min-width:1024px) {
	.mh-breadcrumbs-wrapper {
		padding: 6px 0;
	}
}

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

.mh-breadcrumbs-wrapper i {
	padding: 0 9px;
	top: -1px;
	font-size: 11px;
	color: #666;
}

.mh-breadcrumbs-wrapper .selectize-dropdown {
	min-width: 100%;
}

.mh-breadcrumbs-wrapper .selectize-input {
	min-width: 120px;
	border-radius: 0;
	box-shadow: none;
	padding: 3px 20px 3px 6px;
	cursor: pointer;
	margin-top: -13px;
	top: 7px;
}

.mh-breadcrumbs-wrapper .selectize-input.input-active {
	padding: 3px 20px 3px 6px;
}

.mh-breadcrumbs-wrapper .selectize-input .selectize-dropdown-content>div {
	white-space: nowrap;
	width: auto;
	display: block;
}

.mh-breadcrumbs-wrapper select.mh-breadcrumbs-selectize, .single-estate .comments-fields-wrapper .mh-grid__1of3:last-child {
	display: none;
}

.mh-breadcrumbs-wrapper .selectize-input:after {
	right: 6px !important;
	border-width: 4px 4px 0;
	border-color: #000 transparent transparent;
}

.mh-breadcrumbs-wrapper--single-property-gallery {
	margin-top: -12px;
}

@media (min-width:768px) {
	.mh-breadcrumbs-wrapper {
		margin-bottom: 24px;
	}
	
	.mh-breadcrumbs-wrapper--single-property-gallery {
		margin-top: -36px;
	}
}

.mh-breadcrumbs-wrapper--single-property-slider {
	margin-top: 0;
	margin-left: 15px;
	margin-right: 15px;
	background: #f5f5f5;
}

.mh-breadcrumbs {
	max-width: 708px;
	width: 100%;
	float: left;
	padding: 12px 0 0;
}

@media (min-width:768px) {
	.mh-breadcrumbs-wrapper--single-property-slider {
		margin-top: -24px;
		margin-left: 0;
		margin-right: 0;
	}
	
	.mh-breadcrumbs {
		padding: 6px 0;
	}
}

@media (min-width:1200px) {
	.mh-breadcrumbs {
		max-width: 820px;
	}
}

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

.mh-breadcrumbs__item-wrapper {
	display: inline-block;
	float: left;
	line-height: 2;
}

.mh-breadcrumbs__item {
	display: inline-block;
}

.mh-breadcrumbs__item a {
	color: #666;
}

.mh-breadcrumbs__item a:hover {
	color: #29aae3;
}

.mh-breadcrumbs__back {
	padding-right: 24px;
	font-size: 13px;
	color: #666;
	font-weight: 700;
	display: inline-block;
}

.mh-breadcrumbs__back:hover, .mh-breadcrumbs__back:hover i {
	color: #29aae3;
}

.mh-breadcrumbs__back:after {
	content: "";
	position: absolute;
	height: 16px;
	width: 1px;
	right: 12px;
	top: 5px;
	background: #ccc;
}

.mh-breadcrumbs__back i {
	padding-left: 0;
}

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

.mh-caption__inner {
	padding: 6px 12px;
	margin: 12px 0 12px 6px;
	float: right;
	display: inline-block;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
	font-weight: 700;
	background: #29aae3;
	color: #fff;
	width: auto;
	border-radius: 0;
}

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

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

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

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

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

.mh-comment .mh-comment:last-child, .mh-comments .mh-post-single__section__heading, .mh-comments textarea {
	margin-bottom: 0;
}

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

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

.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;
}

.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 .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__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, .mh-comment__text:after {
	clear: both;
	content: "";
	display: table;
}

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

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

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

.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, .05);
}

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

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

.comment-edit-link:hover {
	color: #29aae3;
}

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

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

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

.comment-reply-link:hover {
	color: #29aae3;
}

.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 textarea {
	float: left;
	text-align: left !important;
	font-style: normal;
}

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

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

.single-estate .comments-textarea-wrapper textarea {
	padding: 12px;
}

.single-estate .comments-textarea-wrapper textarea:active, .single-estate .comments-textarea-wrapper textarea:focus {
	padding: 11px;
}

.single-estate .comment-respond {
	margin-top: 0;
}

.single-estate .comments-logged {
	margin-top: 24px;
}

.single-estate .form-submit {
	display: block;
	float: right;
	margin-bottom: 24px;
}

@media (min-width:768px) {
	.single-estate .comments-fields-wrapper .mh-grid__1of3 {
		width: 50%;
	}
}

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

.single-estate .mh-comment .mh-comment {
	border-color: #fff;
}

.single-estate .mh-comment {
	border-bottom: 0;
}

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

#cancel-comment-reply-link {
	position: absolute;
	right: 0;
	display: inline-block;
	background: url("https://cdn-ilcdbhp.nitrocdn.com/NhcFkQsIkCKaaVpYqDVQCAvYXJivIbEu/assets/images/optimized/rev-e76cc99/douglasemmettapartments.com/wp-content/themes/myhome/assets/images/close.png");
	border: 0;
	background-size: 30px 30px;
	width: 30px;
	height: 30px;
	font-size: 0;
	color: transparent;
}

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

.mh-compare a {
	color: inherit;
}

.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: url("https://cdn-ilcdbhp.nitrocdn.com/NhcFkQsIkCKaaVpYqDVQCAvYXJivIbEu/assets/images/optimized/rev-e76cc99/douglasemmettapartments.com/wp-content/themes/myhome/assets/images/close.png");
	border: 0;
	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;
	position: relative;
}

.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-app-wrapper .stepper, .mh-app-wrapper .stepper__header, .mh-menu-currency-wrapper button, .wp-video-shortcode, .wp-video-shortcode * {
	box-shadow: none !important;
}

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

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

.mh-compare__column .mh-thumbnail .mh-thumbnail__inner:after {
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.mh-compare__thumbnail-wrapper:after, .mh-estate__plan-thumbnail-wrapper:after {
	opacity: 0;
	-webkit-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

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

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

.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: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: #000;
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.mh-compare__heading__text:after, .mh-compare__title:after {
	height: 2px;
	width: 100%;
	left: 0;
	content: "";
	bottom: 0;
}

.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 {
	position: absolute;
	background: #fff;
}

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

@media (min-width:768px) {
	.mh-compare .owl-next-prev {
		float: none;
	}
	
	.mh-compare__title {
		text-align: center;
	}
	
	.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 #ccc;
	color: #4d4d4d;
	font-style: italic;
}

.mh-compare__price {
	display: block;
	background: #29aae3;
	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 {
	position: absolute;
	background: #fff;
}

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

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

.mh-compare__feature-list li a:hover {
	color: #29aae3;
}

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

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

@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;
}

.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;
}

.mh-compare__list__element strong i {
	font-weight: 400;
}

@media (min-width:1025px) {
	.mh-box:hover img {
		transform: scale(1.2);
	}
	
	.mh-clients--image-filter img:hover {
		-webkit-filter: grayscale(0);
		-moz-filter: grayscale(0);
		filter: grayscale(0);
	}
	
	.mh-compare__thumbnail-wrapper:hover:after {
		opacity: .3;
	}
	
	.mh-compare__list__element a:hover, .mh-compare__list__element a:hover i {
		color: #29aae3;
	}
}

.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;
	}
}

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

.mh-compare__next-prev, .mh-compare__text, .mh-estate-horizontal__left {
	display: inline-block;
	float: left;
}

.mh-compare__text button {
	font-size: 13px;
}

.mh-compare__next-prev .owl-next, .mh-compare__next-prev .owl-prev {
	position: static;
	border: none;
}

.mh-compare__next-prev .owl-next i:before, .mh-compare__next-prev .owl-prev i:before {
	line-height: 36px;
	width: 30px;
	height: 36px;
}

.mh-currency-switcher__label {
	float: left;
	line-height: 36px;
	margin-right: 6px;
}

.mh-menu-currency-wrapper {
	float: left;
	width: 100%;
}

@media (min-width:1024px) {
	.owl-carousel--columns_1 {
		max-width: 33.33%;
	}
	
	.owl-carousel--columns_2 {
		max-width: 66.66%;
	}
	
	.mh-menu-currency-wrapper {
		display: inline-block;
		width: auto;
	}
}

.mh-menu-currency-wrapper button {
	margin: 0 !important;
	line-height: 1.2 !important;
	width: auto !important;
	max-height: 28px !important;
	min-width: 65px !important;
	padding-top: 6px !important;
	padding-bottom: 6px !important;
	position: relative !important;
	top: 3px !important;
	padding-left: 12px !important;
}

.mh-top-header .mh-currency-switcher, .mh-top-header-big .mh-currency-switcher {
	float: left;
	width: auto;
	left: 0;
	margin-bottom: 0;
	display: none;
}

.mh-top-header .mh-currency-switcher .dropdown-menu, .mh-top-header-big .mh-currency-switcher .dropdown-menu {
	z-index: 9999999999;
	border: 1px solid #f0f0f0;
}

.mh-top-header .mh-currency-switcher .filter-option, .mh-top-header-big .mh-currency-switcher .filter-option {
	font-style: normal;
}

.mh-top-header .mh-currency-switcher>.btn, .mh-top-header-big .mh-currency-switcher>.btn {
	min-width: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
	position: relative;
	top: 3px;
	padding-left: 12px;
	font-style: normal;
	background: #fafafa;
	border: none;
}

.mh-top-header .mh-currency-switcher .dropdown-menu>li, .mh-top-header-big .mh-currency-switcher .dropdown-menu>li {
	line-height: 21px;
}

.mh-top-header .mh-currency-switcher .dropdown-menu>li>a, .mh-top-header-big .mh-currency-switcher .dropdown-menu>li>a {
	padding-top: 2px;
	padding-bottom: 2px;
	min-height: 21px;
}

.mh-top-header .mh-currency-switcher .dropdown-menu>li>a:hover, .mh-top-header-big .mh-currency-switcher .dropdown-menu>li>a:hover {
	color: #222;
}

.mh-top-header .mh-currency-switcher .dropdown-menu>li.selected>a:hover, .mh-top-header-big .mh-currency-switcher .dropdown-menu>li.selected>a:hover {
	color: #fff;
}

.mh-top-header .mh-currency-switcher option, .mh-top-header-big .mh-currency-switcher option {
	font-size: 14px;
	color: #999;
	border: 0;
	background: 0 0;
}

.mh-top-header .mh-currency-switcher option.selected, .mh-top-header-big .mh-currency-switcher option.selected {
	color: #222;
	background: #f4f4f4;
}

.btn-group.bootstrap-select.mh-currency-switcher {
	display: block;
}

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

.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;
}

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

.mh-estate__slider__price {
	background: #29aae3;
	color: #fff;
}

@media (min-width:768px) {
	.mh-estate__slider {
		margin-bottom: 24px;
	}
	
	.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 {
		width: 250px;
		display: inline-block;
		float: left;
		height: 60px;
	}
	
	.mh-estate__slider__phone i {
		margin-right: 9px;
	}
	
	.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: 0;
}

.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:last-child {
	margin-bottom: 0;
}

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

.mh-estate__list__element strong [class*=flaticon-] {
	position: relative;
	padding-left: 24px;
}

.mh-estate__list__element strong [class*=flaticon-]:before {
	position: absolute;
	left: 0;
	font-weight: 400;
	top: -3px;
	font-size: 19px;
}

@media (min-width:1025px) {
	.mh-estate__list__element a:hover, .mh-estate__list__element a:hover i {
		color: #29aae3;
	}
	
	.mh-estate__plan-thumbnail-wrapper:hover:after {
		opacity: .3;
	}
}

.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;
		width: 50%;
	}
}

.mh-estate__list__element--dot, .mh-estate__no-sidebar .mh-estate__details__map a, .mh-estate__no-sidebar .mh-estate__details__phone a {
	padding-left: 12px;
}

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

.mh-estate__list .mh-estate__list__inner .mh-estate__list__element--attachment {
	width: 100%;
}

.mh-estate__list .mh-estate__list__inner .mh-estate__list__element--attachment a:hover {
	color: #29aae3;
}

.mh-estate__list .mh-estate__list__inner .mh-estate__list__element--attachment i {
	margin-right: 3px;
	font-size: 16px !important;
	top: 0 !important;
	position: relative;
}

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

@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: 14px 12px;
	line-height: 20px;
	text-align: left;
	position: relative;
}

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

.mh-estate__details>div a {
	width: 100%;
	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: #29aae3;
}

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

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

.mh-estate__details .mh-estate__details__price {
	font-size: 21px;
	background: #29aae3;
	color: #fff;
	padding: 10px 12px;
	line-height: 28px;
	border-bottom: 2px solid #fff;
}

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

.mh-estate__details__price__single+.mh-estate__details__price__single:after {
	content: "";
	background: rgba(255, 255, 255, .2);
	width: 100%;
	position: absolute;
	height: 2px;
	left: 0;
	top: -1px;
}

.mh-estate__details__map a, .mh-estate__details__phone a {
	display: block;
	line-height: 20px;
	height: 48px;
	color: #222 !important;
}

.mh-estate__details__price__single:nth-child(2) {
	padding-top: 24px;
}

.mh-estate__details__price__single:nth-child(2):after {
	top: 11px;
}

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

.mh-estate__details__map {
	font-size: 14px;
	border-bottom: 2px solid #fff;
	padding: 0 !important;
	color: #222 !important;
}

.mh-estate__details__map a {
	padding: 14px 12px;
	background: #fafafa !important;
}

.mh-estate__details__map a:hover {
	background: #f0f0f0 !important;
}

.mh-estate__details__phone:after, .mh-estate__details__print:after {
	clear: both;
	content: "";
	display: table;
}

.mh-estate__details__phone {
	padding: 0 !important;
	font-size: 14px;
	border-bottom: 2px solid #fff;
}

.mh-estate__details__phone a {
	padding: 14px 12px;
	background: #fafafa !important;
}

.mh-estate__details__phone a:hover {
	background: #f0f0f0 !important;
}

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

.mh-estate__section:after, .single-estate .mh-comments:after {
	clear: both;
	content: "";
	display: table;
}

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

.mh-estate__section .mh-estate__list__inner, .mh-estate__section--shortcode {
	padding-bottom: 24px;
}

.mh-estate__section__heading, .single-estate .comment-reply-title, .single-estate .mh-post-single__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, .single-estate .comment-reply-title:after, .single-estate .mh-post-single__section__heading:after {
	content: "";
	height: 2px;
	width: 100%;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}

@media (min-width:768px) {
	.mh-estate__section__heading, .single-estate .comment-reply-title, .single-estate .mh-post-single__section__heading {
		font-size: 21px;
		margin-bottom: 18px;
		padding-bottom: 18px;
	}
	
	.mh-estate__estate-info ul {
		display: flex;
		justify-content: space-between;
	}
}

.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: #666 !important;
}

.mh-estate__agent__email a, .mh-estate__agent__more, .mh-estate__agent__phone {
	color: #4d4d4d;
}

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

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

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

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

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

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

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

.mh-estate__agent__social-icons {
	margin-bottom: 16px;
}

.mh-estate__agent__social-icons svg {
	width: 14px;
	height: 14px;
}

.mh-estate__agent__social-icons svg path {
	fill: #666;
}

.mh-estate__agent__social-icons a {
	color: #666;
	margin-right: 6px;
	font-size: 14px;
}

.mh-estate__agent__social-icons a:hover {
	color: #222;
}

.mh-estate__agent__social-icons a:hover path {
	fill: #222;
}

.mh-estate__agent__content {
	max-width: 480px;
	margin: 0 auto;
}

.mh-estate__agent__content a:hover {
	color: #29aae3;
}

.mh-estate__plan-thumbnail-wrapper {
	position: relative;
	display: block;
	padding-bottom: 62.5%;
	overflow: hidden;
}

.mh-estate__plan-thumbnail-wrapper img, .mh-estate__plan-thumbnail-wrapper:after {
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
}

.mh-estate__plan-thumbnail-wrapper:after {
	content: "";
	display: block;
	height: 100%;
	background: #000;
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

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

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

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

.mh-estate__agent__thumbnail-wrapper img {
	min-width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.mh-estate__huge-image {
	overflow: hidden;
	position: relative;
	height: 350px;
}

@media (min-width:1024px) {
	.mh-estate__slider {
		min-height: 668px;
	}
	
	.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, .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;
}

.mh-estate__no-sidebar .mh-estate__add-to {
	margin-top: 0;
}

.mh-estate__attachments-wrapper {
	margin-bottom: 24px;
}

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

.mh-estate__attachment {
	background: #fff;
	float: left;
	position: relative;
	width: 48%;
	padding: 24px;
}

.mh-estate__attachment__icon {
	width: 30%;
	float: right;
	position: absolute;
	top: 12px;
	left: 12px;
}

.mh-estate__attachment__name {
	padding-left: 70px;
}

.mh-estate__related .mh-estate__section__heading {
	padding-bottom: 24px;
	margin-bottom: 0;
}

.mh-estate__related .mh-estate__section__heading:after {
	display: none;
}

.mh-estate__related .mh-grid__1of2 {
	margin-bottom: 12px;
}

.mh-estate__cta {
	margin-bottom: 24px;
	margin-top: 24px;
	padding: 0 !important;
}

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

.mh-estate__cta__text {
	padding: 12px;
	background: #f4f4f4;
	font-size: 13px;
}

.mh-estate__add-to {
	padding: 0 !important;
	margin-top: 0;
	margin-bottom: 12px;
}

@media (min-width:768px) {
	.mh-estate__no-sidebar .mh-estate__details>div, .mh-estate__no-sidebar .mh-estate__details>div a {
		xpadding-left: 24px;
		xpadding-right: 24px;
	}
	
	.mh-estate__add-to {
		margin-top: -25px;
	}
	
	.mh-estate-horizontal__buttons__single .mdl-button {
		min-width: 125px !important;
	}
}

.mh-estate__add-to button {
	min-height: 48px;
	line-height: 24px;
	font-size: 14px;
	padding: 12px;
	display: block;
	color: #444;
	text-align: left;
	width: 100%;
	margin: 0;
	background: #fafafa;
	border: 0 solid transparent;
}

.mh-estate__add-to button:hover {
	background: #f2f2f2;
	color: #222;
}

.mh-estate__add-to button:last-child {
	border-top: 2px solid #fff;
}

.mh-estate__add-to button .fab, .mh-estate__add-to button .far, .mh-estate__add-to button .fas {
	margin-right: 6px;
	position: relative;
}

.mh-estate__add-to__compare--active {
	color: #4caf50 !important;
}

.mh-estate__add-to__favorite--active {
	color: #d32f2f !important;
}

.mh-single_estate--slider .mh-fixed-menu+.mh-sticky-menu-placeholder {
	max-height: 0 !important;
	height: 0 !important;
	min-height: 0 !important;
}

.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%;
	display: flex;
	flex-direction: column;
	position: relative;
}

.mh-estate-horizontal__left .mh-thumbnail {
	position: relative;
}

.mh-estate-horizontal__left .swiper-container {
	margin-bottom: 0 !important;
}

.mh-estate-horizontal__left .mh-thumbnail__inner {
	padding-bottom: 62.5%;
}

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

.mh-estate-horizontal__right {
	width: 60%;
	float: left;
	display: inline-block;
	display: flex;
	flex-direction: column;
	padding: 12px 18px;
}

.mh-estate-horizontal--gallery .mh-estate-horizontal__inner {
	display: block;
}

.mh-estate-horizontal--gallery .mh-estate-horizontal__left, .mh-estate-horizontal--gallery .mh-estate-horizontal__right {
	display: inline-block;
}

.mh-estate-horizontal--gallery .swiper-container {
	margin-bottom: 0;
}

.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;
	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;
}

.mh-estate-horizontal__buttons__single .mdl-button__icon-left, .mh-estate-horizontal__buttons__single .mdl-button__icon-right {
	display: inline;
}

.mh-estate-horizontal__bottom:after, .mh-estate-horizontal__bottom__inner:after {
	display: table;
	content: "";
	clear: both;
}

.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__inner {
	width: 100%;
	bottom: 0;
	left: 0;
	position: absolute;
}

.mh-estate-horizontal__primary {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 12px;
	color: #29aae3;
}

.mh-estate-horizontal__more-info {
	display: inline-block;
	margin-right: 12px;
	line-height: 21px;
	font-size: 14px;
}

.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;
	overflow: hidden;
	display: block;
	padding-bottom: 0;
}

.mh-estate-vertical .mh-thumbnail .mh-thumbnail__inner {
	padding-bottom: 62.5%;
}

.mh-estate-vertical .mh-thumbnail .mh-thumbnail__inner:before {
	content: "";
	background: #000;
	opacity: 0;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.mh-estate-vertical .mh-thumbnail .mh-thumbnail__inner:after, .mh-map-infobox .mh-map-infobox__img-wrapper {
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	-webkit-transition: .2s ease-in-out;
}

.mh-estate-vertical .mh-thumbnail .mh-thumbnail__inner:after {
	clear: both;
	content: "";
	display: table;
	transition: .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:before {
		opacity: .5;
	}
	
	.mh-estate-vertical .mh-thumbnail:hover .mh-estate-vertical__text {
		top: 50%;
		margin-top: -34px;
		opacity: 1;
		z-index: 2;
		-webkit-transition: opacity .3s ease-out, bottom .2s ease-out;
		-moz-transition: opacity .3s ease-out, bottom .2s ease-out;
		-ms-transition: opacity .3s ease-out, bottom .2s ease-out;
		-o-transition: opacity .3s ease-out, bottom .2s ease-out;
		transition: opacity .3s ease-out, bottom .2s ease-out;
	}
	
	.mh-estate-vertical .mh-thumbnail:hover .mh-estate-vertical__text__inner {
		display: table-cell;
		vertical-align: middle;
	}
}

.mh-estate-vertical--list {
	margin-bottom: 12px;
}

.mh-estate-vertical--white, .mh-estate-vertical--white .mh-estate-horizontal, .mh-estate-vertical--white .mh-estate-vertical {
	background: #fff;
}

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

.mh-estate-vertical--dark .mh-estate-vertical__heading a, .mh-estate-vertical--dark .myhome-compare .mdl-button, .mh-estate-vertical--dark .myhome-compare-button 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: 24px;
	font-weight: 700;
}

.mh-estate-vertical__subheading {
	font-weight: 400;
	font-size: 14px;
	margin-bottom: 12px;
}

.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: right;
}

.mh-estate-vertical__buttons__single {
	display: inline-block;
	width: auto;
	white-space: nowrap;
	font-size: 13px;
}

.mh-estate-vertical__buttons__single .mdl-button {
	min-width: 95px !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 {
		min-width: 125px !important;
	}
	
	.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: .3s ease-out;
}

.mh-estate-vertical__text .mh-estate-vertical__inner {
	display: table-cell;
	vertical-align: middle;
}

.mh-estate-vertical__primary {
	font-size: 16px;
	color: #29aae3;
	font-weight: 700;
	margin-bottom: 6px;
}

.mh-estate-vertical__more-info {
	display: inline-block;
	margin-right: 12px;
	line-height: 24px;
	margin-bottom: 6px;
	font-size: 14px;
	position: relative !important;
}

.mh-estate-vertical__more-info [class*=flaticon-] {
	padding-left: 30px;
}

.mh-estate-vertical__more-info [class*=flaticon-]:before {
	position: absolute;
	left: 0;
	font-weight: 400 !important;
	font-size: 20px !important;
	margin-right: 6px !important;
	top: 2px !important;
}

.mh-estate-vertical__more-info .fab, .mh-estate-vertical__more-info .far, .mh-estate-vertical__more-info .fas {
	padding-left: 24px;
}

.mh-estate-vertical__more-info .fab:before, .mh-estate-vertical__more-info .far:before, .mh-estate-vertical__more-info .fas:before {
	position: absolute;
	left: 0;
	font-size: 20px !important;
	top: 1px !important;
}

.owl-item .mh-estate-vertical {
	margin-bottom: 24px;
}

.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: 0;
	position: relative;
	line-height: 36px;
	height: 36px;
	font-size: 16px;
	color: #999;
	font-weight: 400;
	background: 0 0;
	border: 0;
	padding: 2px 0 0;
	margin-right: 12px;
}

.mh-filters__button, .mh-map-panel__element button {
	color: #222;
	line-height: 24px;
	text-transform: uppercase;
}

.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: 0 0;
	font-weight: 400;
	margin: 3px 9px 3px 0;
	font-size: 13px;
	border-radius: 0;
	border: 1px solid transparent;
}

@media (min-width:1025px) {
	.mh-filters__button:hover {
		color: #222;
	}
	
	.mh-filters__button.mh-filters__button--active:hover {
		color: #29aae3;
	}
}

.mh-filters__button.mh-filters__button--active, .mh-form-container__reset:hover, .mh-loader, .mh-loader-wrapper-map, .mh-map-wrapper__noresults, button.mh-filters__right__button--active {
	color: #29aae3;
}

@media (min-width:1200px) {
	.mh-filters__button {
		padding: 3px 9px;
	}
}

.mh-fixed-menu .mh-header {
	position: relative;
}

@media (max-width:1023px) {
	.mobile_menu_active #mega_main_menu_ul {
		overflow-y: scroll;
		height: 100vh;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
	}
	
	.mh-sticky-menu-placeholder--active {
		min-height: 65px;
	}
}

.mobile_menu_active+.mega_main_menu_ul {
	width: 100% !important;
	background: #fff !important;
}

.mh-fixed-menu--active .mobile_menu_active+.mega_main_menu_ul {
	background: #fff !important;
	height: 100vh !important;
	overflow-y: scroll !important;
}

.mh-fixed-menu .mh-header>div {
	position: absolute !important;
	width: 100% !important;
	top: 0 !important;
	left: 0 !important;
}

.mh-fixed-menu--active .mh-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 600;
}

@media (min-width:782px) {
	.admin-bar .mh-fixed-menu--active .mh-header {
		top: 32px;
	}
}

.mh-fixed-menu--active .mega_main_menu {
	background: #222;
}

html body .mh-fixed-menu.mh-fixed-menu--transparent-light.mh-fixed-menu--active .mega_main_menu {
	background: #fff !important;
}

html body .mh-fixed-menu.mh-fixed-menu--transparent-light.mh-fixed-menu--active .mega_main_menu .mmm_fullwidth_container {
	background-image: none !important;
}

html body .mh-fixed-menu.mh-fixed-menu--transparent-light.mh-fixed-menu--active .mega_main_menu .mmm_fullwidth_container.nitro-lazy {
	background-image: none !important;
}

html body .mh-fixed-menu.mh-fixed-menu--transparent-light.mh-fixed-menu--active #mega_main_menu.mh-primary>.menu_holder:not(.sticky_container)>.menu_inner>ul>li>.item_link *, html body .mh-fixed-menu.mh-fixed-menu--transparent-light.mh-fixed-menu--active #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.item_link:after, html body .mh-fixed-menu.mh-fixed-menu--transparent-light.mh-fixed-menu--active .symbol_menu i {
	color: #4d4d4d !important;
}

html body .mh-fixed-menu--transparent-light.mh-fixed-menu--active .mh-header--transparent #mega_main_menu.mh-primary>.menu_holder:not(.sticky_container)>.mmm_fullwidth_container {
	border-bottom: 1px solid #efefef;
}

.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: #666;
}

.mh-form-container input::-moz-placeholder, .mh-form-container textarea::-moz-placeholder {
	color: #666;
}

.mh-form-container input:-moz-placeholder, .mh-form-container textarea:-moz-placeholder {
	color: #666;
}

.mh-form-container input:-ms-input-placeholder, .mh-form-container textarea:-ms-input-placeholder {
	color: #666;
}

.mh-form-container input {
	margin-bottom: 6px;
	text-align: left !important;
}

.mh-form-container textarea {
	text-align: left !important;
}

.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 {
	background: rgba(242, 116, 116, .2);
	padding: 12px;
	border-left: 5px solid #f27474;
	margin-bottom: 6px;
	font-size: 13px;
}

.mh-form-container__error, .mh-form-container__sending, .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;
}

.owl-carousel--gallery .owl-stage {
	background: #f4f4f4;
}

.owl-carousel--gallery-thumbs a {
	display: block;
	position: relative;
	margin-bottom: 12px;
	overflow: hidden;
}

@media (min-width:768px) {
	.owl-carousel--gallery-thumbs {
		display: block !important;
	}
	
	.owl-carousel--gallery-thumbs a {
		height: 120px;
		margin-bottom: 24px;
	}
	
	.owl-carousel--gallery-thumbs a:after {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		background: rgba(255, 255, 255, .5);
		width: 100%;
		height: 100%;
		opacity: 1;
		-webkit-transition: .2s ease-in-out;
		-moz-transition: .2s ease-in-out;
		-ms-transition: .2s ease-in-out;
		-o-transition: .2s ease-in-out;
		transition: .2s ease-in-out;
	}
	
	.owl-carousel--gallery-thumbs a:hover:after {
		background: rgba(255, 255, 255, 0);
	}
	
	.owl-carousel--gallery-thumbs img {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		min-height: 100%;
		-webkit-transition: .2s ease-in-out;
		-moz-transition: .2s ease-in-out;
		-ms-transition: .2s ease-in-out;
		-o-transition: .2s ease-in-out;
		transition: .2s ease-in-out;
	}
	
	.owl-carousel--gallery-thumbs .current a:after {
		background: rgba(255, 255, 255, 0) !important;
	}
}

.owl-carousel--gallery-thumbs {
	margin-top: 12px;
	display: none !important;
}

.owl-carousel--gallery.owl-loaded+.owl-carousel--gallery-thumbs {
	display: block !important;
}

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

.mh-gallery-submit .mh-simple-spinner-text {
	display: none;
}

.mh-gallery-submit>div {
	background: #f4f4f4;
}

.mh-gallery-submit>div:nth-child(even) {
	background: #f9f9f9;
}

.mh-gallery-submit__row {
	background: #f4f4f4;
}

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

.mh-gallery-submit__row:last-child {
	margin-bottom: 12px;
}

.mh-gallery-submit__col-1 {
	position: relative;
}

@media (min-width:768px) {
	.mh-gallery-submit__col-1 {
		position: absolute;
		padding: 6px;
	}
	
	.mh-gallery-submit__col-2 {
		float: left;
		width: 100%;
		padding-left: 140px;
		line-height: 132px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

.mh-gallery-submit__spinner {
	position: absolute;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: 50px;
}

.mh-gallery-submit-loaded {
	margin: 0 0 24px;
	padding: 12px 12px 0;
	background: #f4f4f4;
}

.mh-heading--bottom-separator:after, .mh-heading--top-separator:after {
	max-width: 90px;
	width: 50%;
	height: 2px;
	background: #29aae3;
	content: "";
	right: 0;
}

.mh-gallery-submit-loaded__label {
	margin-bottom: 12px;
	font-weight: 700;
}

.mh-heading-wrapper {
	position: relative;
	display: block;
}

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

.mh-heading-wrapper .mh-subheading, .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: block;
	text-align: center;
}

.mh-heading-wrapper--left .mh-subheading, .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: left;
}

.mh-heading-wrapper--left .mh-subheading:after, .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 .mh-subheading, .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 .mh-subheading:after, .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;
}

.mh-heading {
	position: relative;
}

.mh-heading--top-separator {
	font-wegiht: 400;
	text-transform: uppercase;
	text-align: center;
	padding-top: 12px;
	margin-bottom: 24px;
}

.mh-heading--top-separator:after {
	display: inline;
	position: absolute;
	top: 0;
	left: 0;
	margin: 0 auto;
}

.mh-heading--bottom-separator {
	position: relative;
	text-transform: uppercase;
	text-align: center;
	padding-bottom: 12px;
	margin-bottom: 36px;
}

.mh-heading--bottom-separator:after {
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	margin: 0 auto;
}

.mh-subheading {
	max-width: 900px;
	margin: -24px auto 36px;
}

.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, .45);
	z-index: 1;
}

.mh-icon-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
}

.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;
}

[class*=" flaticon-"]:after, [class*=" flaticon-"]:before, [class^=flaticon-]:after, [class^=flaticon-]:before {
	font-family: Flaticon;
	font-style: normal;
}

.flaticon-air-conditioner:before {
	content: "";
}

.flaticon-apartment:before {
	content: "";
}

.flaticon-area:before {
	content: "";
}

.flaticon-bath:before {
	content: "";
}

.flaticon-bath-2:before {
	content: "";
}

.flaticon-bathtub:before {
	content: "";
}

.flaticon-bed:before {
	content: "";
}

.flaticon-bulb:before {
	content: "";
}

.flaticon-city:before {
	content: "";
}

.flaticon-city-2:before {
	content: "";
}

.flaticon-computer:before {
	content: "";
}

.flaticon-construction:before {
	content: "";
}

.flaticon-construction-2:before {
	content: "";
}

.flaticon-date:before {
	content: "";
}

.flaticon-dishwasher:before {
	content: "";
}

.flaticon-door:before {
	content: "";
}

.flaticon-fence:before {
	content: "";
}

.flaticon-fireplace:before {
	content: "";
}

.flaticon-full-size:before {
	content: "";
}

.flaticon-furniture:before {
	content: "";
}

.flaticon-garage:before {
	content: "";
}

.flaticon-home:before {
	content: "";
}

.flaticon-home-2:before {
	content: "";
}

.flaticon-home-3:before {
	content: "";
}

.flaticon-home-4:before {
	content: "";
}

.flaticon-home-5:before {
	content: "";
}

.flaticon-home-6:before {
	content: "";
}

.flaticon-house-plan:before {
	content: "";
}

.flaticon-house-plan-2:before {
	content: "";
}

.flaticon-interface:before {
	content: "";
}

.flaticon-layers:before {
	content: "";
}

.flaticon-lift:before {
	content: "";
}

.flaticon-location:before {
	content: "";
}

.flaticon-location-2:before {
	content: "";
}

.flaticon-mail:before {
	content: "";
}

.flaticon-mail-2:before {
	content: "";
}

.flaticon-map:before {
	content: "";
}

.flaticon-medical:before {
	content: "";
}

.flaticon-microwave:before {
	content: "";
}

.flaticon-multimedia:before {
	content: "";
}

.flaticon-office:before {
	content: "";
}

.flaticon-office-2:before {
	content: "";
}

.flaticon-owen:before {
	content: "";
}

.flaticon-parquet:before {
	content: "";
}

.flaticon-phone:before {
	content: "";
}

.flaticon-pin:before {
	content: "";
}

.flaticon-prize:before {
	content: "";
}

.flaticon-rent:before {
	content: "";
}

.flaticon-roof:before {
	content: "";
}

.flaticon-school:before {
	content: "";
}

.flaticon-school-2:before {
	content: "";
}

.flaticon-search:before {
	content: "";
}

.flaticon-shower:before {
	content: "";
}

.flaticon-sofa:before {
	content: "";
}

.flaticon-sofa-2:before {
	content: "";
}

.flaticon-sold:before {
	content: "";
}

.flaticon-stairs:before {
	content: "";
}

.flaticon-swimming-pool:before {
	content: "";
}

.flaticon-technology:before {
	content: "";
}

.flaticon-transport:before {
	content: "";
}

.flaticon-wall:before {
	content: "";
}

.flaticon-wardrobe:before {
	content: "";
}

.flaticon-wifi:before {
	content: "";
}

.flaticon-window:before {
	content: "";
}

#wp-admin-bar-myhome-panel>a.ab-item:before {
	content: "";
	margin-top: 3px;
}

#wp-admin-bar-myhome-panel-add-property>a.ab-item:before {
	content: "";
	margin-top: 3px;
}

.mh-list-attribute:after, .mh-loader:after, .mh-loader:before, .mh-map-infobox .mh-map-infobox__price:after, .mh-map-infobox:after, .mh-map-panel__element button:after, .mh-map-zoom:after, .mh-mosaic-grid:after, .mh-post-grid:after, .mh-post-grid__heading:after, .mh-post-grid__thumbnail:after {
	content: "";
}

#wp-admin-bar-MyHome span.ab-icon.dashicons-portfolio {
	margin-top: 2px !important;
}

#wp-admin-bar-myhome-panel-add-property {
	display: none;
}

@media (max-width:1200px) {
	#wp-admin-bar-MyHome, #wp-admin-bar-myhome-panel {
		display: none;
	}
}

.mh-list-attribute {
	position: relative;
}

@media (min-width:768px) {
	.mh-heading-background-wrapper {
		padding: 48px;
	}
	
	.mh-list-attribute {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		flex: 1;
		overflow: hidden;
		margin-left: -6px;
		margin-right: -6px;
	}
}

.mh-list-attribute:after {
	flex: auto;
}

.mh-list-attribute__item {
	margin-bottom: 12px;
	padding: 0 6px;
}

@media (min-width:768px) {
	.mh-list-attribute__item {
		width: 33%;
		margin-bottom: 24px;
	}
}

.mh-list-attribute__item__content {
	background: #f4f4f4;
}

.mh-list-attribute__image__link {
	position: relative;
	padding-bottom: 62.5%;
	display: block;
}

.mh-list-attribute__image__link img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	display: block;
}

.mh-list-attribute__heading__link {
	display: block;
	padding: 18px 12px;
}

.mh-list-attribute__heading__link h3 {
	text-align: center;
	margin-bottom: 0;
}

.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, .9);
		z-index: 999999999999;
	}
	
	.mh-loader-wrapper.mh-loader--mobile-searchform .mh-loader {
		top: 50%;
		left: 0;
		right: 0;
		margin: -2em auto 0;
	}
}

.mh-loader-wrapper-map {
	background: rgba(255, 255, 255, .9);
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 48px;
}

.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:after, .mh-loader:before {
	background: #29aae3;
	-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 {
	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: -.16s;
	animation-delay: -.16s;
}

.mh-loader:after, .mh-loader:before {
	position: absolute;
	top: 0;
}

.mh-loader:before {
	left: -1.5em;
	-webkit-animation-delay: -.32s;
	animation-delay: -.32s;
}

.mh-loader:after {
	left: 1.5em;
}

@-webkit-keyframes mh-loader-animation {
	0%, 100%, 80% {
		box-shadow: 0 0;
		height: 4em;
	}
	
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

@keyframes mh-loader-animation {
	0%, 100%, 80% {
		box-shadow: 0 0;
		height: 4em;
	}
	
	40% {
		box-shadow: 0 -2em;
		height: 5em;
	}
}

.wpb_single_image {
	display: none !important;
}

.js_active .wpb_single_image {
	display: block !important;
}

.mh-map-wrapper {
	position: relative;
}

.gm-style-pbc {
	z-index: 5 !important;
	pointer-events: none;
	background-color: rgba(0, 0, 0, .8) !important;
}

.mh-map-no-key {
	text-align: center;
	font-size: 32px;
	font-weight: 700;
	padding: 150px 15px;
	background: #f2f2f2;
}

#myhome-listing-map {
	position: relative;
	overflow: hidden;
}

.mh-map-height-tall #myhome-map, .mh-map-height-tall .mh-loader-wrapper-map, .mh-map-height-tall .mh-map-wrapper__noresults, .mh-map-placeholder--tall #myhome-map, .mh-map-placeholder--tall .mh-loader-wrapper-map, .mh-map-placeholder--tall .mh-map-wrapper__noresults {
	height: 450px;
}

@media (min-width:1200px) {
	.mh-map-height-tall #myhome-map, .mh-map-height-tall .mh-loader-wrapper-map, .mh-map-height-tall .mh-map-wrapper__noresults, .mh-map-placeholder--tall #myhome-map, .mh-map-placeholder--tall .mh-loader-wrapper-map, .mh-map-placeholder--tall .mh-map-wrapper__noresults {
		height: 650px;
	}
}

.mh-map-height-standard #myhome-map, .mh-map-height-standard .mh-loader-wrapper-map, .mh-map-height-standard .mh-map-wrapper__noresults, .mh-map-placeholder--standard #myhome-map, .mh-map-placeholder--standard .mh-loader-wrapper-map, .mh-map-placeholder--standard .mh-map-wrapper__noresults {
	height: 450px;
}

@media (min-width:1200px) {
	.mh-map-height-standard #myhome-map, .mh-map-height-standard .mh-loader-wrapper-map, .mh-map-height-standard .mh-map-wrapper__noresults, .mh-map-placeholder--standard #myhome-map, .mh-map-placeholder--standard .mh-loader-wrapper-map, .mh-map-placeholder--standard .mh-map-wrapper__noresults {
		height: 500px;
	}
}

.mh-map-wrapper__noresults {
	background: rgba(0, 0, 0, .9) !important;
	display: table;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	font-size: 48px;
}

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

.mh-map-single-estate {
	height: 500px;
}

.mh-map-single-estate-small {
	height: 500px;
	margin-bottom: 24px;
}

.mh-map-controls {
	margin: 12px 0;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 0;
	z-index: 3;
}

.mh-map-panel, .mh-map-zoom {
	z-index: 2;
	position: absolute;
}

@media (min-width:1024px) {
	.mh-map-controls {
		margin: 24px auto 0;
	}
}

.mh-map-controls__inner {
	position: relative;
	box-sizing: content-box;
}

.mh-map-panel {
	width: auto;
	background: #fff;
	top: 0;
	right: 0;
	text-align: center;
	border: 2px solid #29aae3;
}

.mh-map-panel__element {
	display: inline-block;
	float: left;
}

.mh-map-panel__element button {
	background: 0 0;
	width: 100%;
	font-weight: 700;
	position: relative;
	font-size: 12px;
	height: 42px;
	border: 0;
	text-align: left;
	padding: 6px 12px;
}

.mh-map-panel__element button>span {
	display: none;
}

.mh-map-panel__element button .fab, .mh-map-panel__element button .far, .mh-map-panel__element button .fas {
	padding: 0 6px;
}

@media (min-width:768px) {
	.mh-map-panel__element button .fab, .mh-map-panel__element button .far, .mh-map-panel__element button .fas {
		padding: 0;
	}
	
	.mh-map-panel__element button .fab.fa-angle-left, .mh-map-panel__element button .fab.fa-expand-alt, .mh-map-panel__element button .fab.fa-street-view, .mh-map-panel__element button .far.fa-angle-left, .mh-map-panel__element button .far.fa-expand-alt, .mh-map-panel__element button .far.fa-street-view, .mh-map-panel__element button .fas.fa-angle-left, .mh-map-panel__element button .fas.fa-expand-alt, .mh-map-panel__element button .fas.fa-street-view {
		margin-right: 9px;
	}
	
	.mh-map-panel__element button>span {
		display: inline-block;
	}
	
	.mh-map-panel__element button .fab.fa-angle-right, .mh-map-panel__element button .far.fa-angle-right, .mh-map-panel__element button .fas.fa-angle-right {
		margin-left: 9px;
	}
}

.mh-map-panel__element button:after {
	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: #29aae3;
}

@media (max-width:1024px) {
	.mh-map-panel__element button:not(.mh-button--active):hover {
		background: 0 0 !important;
		color: #222 !important;
	}
}

.mh-map-panel .mh-map-panel__element button.mh-button--active, .mh-map-panel .mh-map-panel__element button.mh-button--active:active, .mh-map-panel .mh-map-panel__element button.mh-button--active:focus, .mh-map-panel .mh-map-panel__element button.mh-button--active:hover {
	background: #29aae3;
	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;
	}
}

.mh-map-zoom {
	color: #fff;
	text-align: center;
	top: 0;
	left: 0;
	width: 40px;
	border: 2px solid #29aae3;
}

.mh-map-zoom:after {
	clear: both;
	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: 0 0;
	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: #29aae3;
}

@media (max-width:1024px) {
	.mh-map-zoom__element button:hover {
		background: 0 0 !important;
		color: #222 !important;
	}
}

.infoBox>img {
	float: right;
	width: 30px;
	top: 18px;
	right: 9px;
	z-index: 1;
}

.mh-map-infobox {
	background: #29aae3;
	padding: 12px 0 0;
	position: relative;
	margin-top: -24px;
	width: 100%;
	float: left;
}

.mh-map-infobox:after {
	clear: both;
	display: block;
	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 #29aae3;
}

.mh-map-infobox .mh-map-infobox__img-wrapper {
	max-width: 100%;
	height: 160px;
	overflow: hidden;
	margin-top: -12px;
	position: relative;
	border: 2px solid #29aae3;
	transition: .2s ease-in-out;
}

.mh-map-infobox .mh-map-infobox__img-wrapper img {
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	margin: 0 auto;
	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: .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;
	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: #29aae3;
	font-weight: 700;
}

.mh-map-pin.mh-map-pin--dark i {
	color: #666;
}

.mh-map-wrapper--fullscreen {
	min-height: 100vh;
	max-height: 100vh;
	width: 100%;
	position: fixed !important;
	top: 0;
	left: 0;
	z-index: 200000;
}

.mh-map-wrapper--fullscreen #myhome-map {
	width: 100%;
	height: 100vh;
	min-height: 100vh;
	max-height: 100vh;
}

.mh-map-wrapper--fullscreen, .mh-map-wrapper--fullscreen #map {
	height: 100vh;
}

.mh-map-wrapper--fullscreen+.mh-map-controls {
	position: fixed !important;
	z-index: 200001;
}

@media (min-width:767px) {
	.mh-search-map-top .mh-map-controls {
		margin-top: 150px;
	}
}

.mh-mosaic-grid {
	margin: 0 auto;
}

@media (min-width:768px) {
	.mh-mosaic-grid {
		max-width: 740px;
	}
}

.mh-mosaic-grid:after {
	clear: both;
	display: table;
}

.mh-mosaic-grid .mh-box__img-wrapper {
	padding-bottom: 75%;
}

.mh-mosaic-grid__item {
	width: 100%;
	float: left;
	overflow: hidden;
	padding: 12px 15px;
}

@media (min-width:768px) {
	.mh-mosaic-grid__item {
		padding: 0;
		margin-bottom: 12px;
		height: 139px;
		width: 183px;
	}
	
	.mh-mosaic-grid__item .mh-box__img-wrapper img {
		top: 0;
	}
	
	.mh-mosaic-grid__item:nth-child(11), .mh-mosaic-grid__item:nth-child(2), .mh-mosaic-grid__item:nth-child(20), .mh-mosaic-grid__item:nth-child(29), .mh-mosaic-grid__item:nth-child(38) {
		width: 555px;
	}
}

@media (min-width:768px) and (min-width:1024px) {
	.mh-mosaic-grid__item:nth-child(11), .mh-mosaic-grid__item:nth-child(2), .mh-mosaic-grid__item:nth-child(20), .mh-mosaic-grid__item:nth-child(29), .mh-mosaic-grid__item:nth-child(38) {
		width: 720px;
	}
}

@media (min-width:768px) and (min-width:1200px) {
	.mh-mosaic-grid__item:nth-child(11), .mh-mosaic-grid__item:nth-child(2), .mh-mosaic-grid__item:nth-child(20), .mh-mosaic-grid__item:nth-child(29), .mh-mosaic-grid__item:nth-child(38) {
		width: 855px;
	}
}

@media (min-width:768px) {
	.mh-mosaic-grid__item:nth-child(12), .mh-mosaic-grid__item:nth-child(13), .mh-mosaic-grid__item:nth-child(21), .mh-mosaic-grid__item:nth-child(22), .mh-mosaic-grid__item:nth-child(3), .mh-mosaic-grid__item:nth-child(30), .mh-mosaic-grid__item:nth-child(31), .mh-mosaic-grid__item:nth-child(39), .mh-mosaic-grid__item:nth-child(4), .mh-mosaic-grid__item:nth-child(40) {
		width: 50%;
	}
	
	.mh-mosaic-grid__item:nth-child(11) .mh-box__content, .mh-mosaic-grid__item:nth-child(2) .mh-box__content, .mh-mosaic-grid__item:nth-child(20) .mh-box__content, .mh-mosaic-grid__item:nth-child(29) .mh-box__content, .mh-mosaic-grid__item:nth-child(38) .mh-box__content {
		margin-left: 12px;
	}
	
	.mh-mosaic-grid__item:nth-child(11) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(2) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(20) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(29) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(38) .mh-box__img-wrapper {
		padding-bottom: 26%;
	}
	
	.mh-mosaic-grid__item:nth-child(12) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(13) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(21) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(22) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(3) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(30) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(31) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(39) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(4) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(40) .mh-box__img-wrapper {
		padding-bottom: 38%;
	}
	
	.mh-mosaic-grid__item:nth-child(11) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(2) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(20) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(29) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(38) .mh-box__img-wrapper img {
		top: -100%;
	}
	
	.mh-mosaic-grid__item:nth-child(12) .mh-box__content, .mh-mosaic-grid__item:nth-child(21) .mh-box__content, .mh-mosaic-grid__item:nth-child(3) .mh-box__content, .mh-mosaic-grid__item:nth-child(30) .mh-box__content, .mh-mosaic-grid__item:nth-child(39) .mh-box__content {
		margin-right: 6px;
	}
	
	.mh-mosaic-grid__item:nth-child(12) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(21) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(3) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(30) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(39) .mh-box__img-wrapper img {
		top: -40%;
	}
	
	.mh-mosaic-grid__item:nth-child(13) .mh-box__content, .mh-mosaic-grid__item:nth-child(22) .mh-box__content, .mh-mosaic-grid__item:nth-child(31) .mh-box__content, .mh-mosaic-grid__item:nth-child(4) .mh-box__content, .mh-mosaic-grid__item:nth-child(40) .mh-box__content {
		margin-left: 6px;
	}
	
	.mh-mosaic-grid__item:nth-child(13) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(22) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(31) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(4) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(40) .mh-box__img-wrapper img {
		top: -30%;
	}
	
	.mh-mosaic-grid__item:nth-child(14), .mh-mosaic-grid__item:nth-child(23), .mh-mosaic-grid__item:nth-child(32), .mh-mosaic-grid__item:nth-child(41), .mh-mosaic-grid__item:nth-child(5) {
		width: 555px;
	}
}

@media (min-width:768px) and (min-width:1024px) {
	.mh-mosaic-grid__item:nth-child(14), .mh-mosaic-grid__item:nth-child(23), .mh-mosaic-grid__item:nth-child(32), .mh-mosaic-grid__item:nth-child(41), .mh-mosaic-grid__item:nth-child(5) {
		width: 720px;
	}
}

@media (min-width:768px) and (min-width:1200px) {
	.mh-mosaic-grid__item:nth-child(14), .mh-mosaic-grid__item:nth-child(23), .mh-mosaic-grid__item:nth-child(32), .mh-mosaic-grid__item:nth-child(41), .mh-mosaic-grid__item:nth-child(5) {
		width: 855px;
	}
}

@media (min-width:768px) {
	.mh-mosaic-grid__item:nth-child(14) .mh-box__content, .mh-mosaic-grid__item:nth-child(23) .mh-box__content, .mh-mosaic-grid__item:nth-child(32) .mh-box__content, .mh-mosaic-grid__item:nth-child(41) .mh-box__content, .mh-mosaic-grid__item:nth-child(5) .mh-box__content {
		margin-right: 12px;
	}
	
	.mh-mosaic-grid__item:nth-child(14) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(23) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(32) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(41) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(5) .mh-box__img-wrapper {
		padding-bottom: 26%;
	}
	
	.mh-mosaic-grid__item:nth-child(14) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(23) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(32) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(41) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(5) .mh-box__img-wrapper img {
		top: -100%;
	}
	
	.mh-mosaic-grid__item:nth-child(16), .mh-mosaic-grid__item:nth-child(25), .mh-mosaic-grid__item:nth-child(34), .mh-mosaic-grid__item:nth-child(43), .mh-mosaic-grid__item:nth-child(7) {
		width: 246px;
	}
}

@media (min-width:768px) and (min-width:1024px) {
	.mh-mosaic-grid__item:nth-child(16), .mh-mosaic-grid__item:nth-child(25), .mh-mosaic-grid__item:nth-child(34), .mh-mosaic-grid__item:nth-child(43), .mh-mosaic-grid__item:nth-child(7) {
		width: 320px;
	}
}

@media (min-width:768px) and (min-width:1200px) {
	.mh-mosaic-grid__item:nth-child(16), .mh-mosaic-grid__item:nth-child(25), .mh-mosaic-grid__item:nth-child(34), .mh-mosaic-grid__item:nth-child(43), .mh-mosaic-grid__item:nth-child(7) {
		width: 380px;
	}
}

@media (min-width:768px) {
	.mh-mosaic-grid__item:nth-child(16) .mh-box__content, .mh-mosaic-grid__item:nth-child(25) .mh-box__content, .mh-mosaic-grid__item:nth-child(34) .mh-box__content, .mh-mosaic-grid__item:nth-child(43) .mh-box__content, .mh-mosaic-grid__item:nth-child(7) .mh-box__content {
		margin-right: 8px;
	}
	
	.mh-mosaic-grid__item:nth-child(16) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(25) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(34) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(43) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(7) .mh-box__img-wrapper {
		padding-bottom: 57%;
	}
	
	.mh-mosaic-grid__item:nth-child(16) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(25) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(34) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(43) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(7) .mh-box__img-wrapper img {
		top: 0;
	}
	
	.mh-mosaic-grid__item:nth-child(17), .mh-mosaic-grid__item:nth-child(26), .mh-mosaic-grid__item:nth-child(35), .mh-mosaic-grid__item:nth-child(44), .mh-mosaic-grid__item:nth-child(8) {
		width: 246px;
	}
}

@media (min-width:768px) and (min-width:1024px) {
	.mh-mosaic-grid__item:nth-child(17), .mh-mosaic-grid__item:nth-child(26), .mh-mosaic-grid__item:nth-child(35), .mh-mosaic-grid__item:nth-child(44), .mh-mosaic-grid__item:nth-child(8) {
		width: 320px;
	}
}

@media (min-width:768px) and (min-width:1200px) {
	.mh-mosaic-grid__item:nth-child(17), .mh-mosaic-grid__item:nth-child(26), .mh-mosaic-grid__item:nth-child(35), .mh-mosaic-grid__item:nth-child(44), .mh-mosaic-grid__item:nth-child(8) {
		width: 380px;
	}
}

@media (min-width:768px) {
	.mh-mosaic-grid__item:nth-child(17) .mh-box__content, .mh-mosaic-grid__item:nth-child(26) .mh-box__content, .mh-mosaic-grid__item:nth-child(35) .mh-box__content, .mh-mosaic-grid__item:nth-child(44) .mh-box__content, .mh-mosaic-grid__item:nth-child(8) .mh-box__content {
		margin-left: 4px;
		margin-right: 4px;
	}
	
	.mh-mosaic-grid__item:nth-child(17) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(26) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(35) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(44) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(8) .mh-box__img-wrapper {
		padding-bottom: 57%;
	}
	
	.mh-mosaic-grid__item:nth-child(17) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(26) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(35) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(44) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(8) .mh-box__img-wrapper img {
		top: 0;
	}
	
	.mh-mosaic-grid__item:nth-child(18), .mh-mosaic-grid__item:nth-child(27), .mh-mosaic-grid__item:nth-child(36), .mh-mosaic-grid__item:nth-child(45), .mh-mosaic-grid__item:nth-child(9) {
		width: 246px;
	}
	
	.mh-mosaic-grid__item:nth-child(18) .mh-box__content, .mh-mosaic-grid__item:nth-child(27) .mh-box__content, .mh-mosaic-grid__item:nth-child(36) .mh-box__content, .mh-mosaic-grid__item:nth-child(45) .mh-box__content, .mh-mosaic-grid__item:nth-child(9) .mh-box__content {
		margin-left: 8px;
	}
	
	.mh-mosaic-grid__item:nth-child(18) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(27) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(36) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(45) .mh-box__img-wrapper, .mh-mosaic-grid__item:nth-child(9) .mh-box__img-wrapper {
		padding-bottom: 57%;
	}
	
	.mh-mosaic-grid__item:nth-child(18) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(27) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(36) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(45) .mh-box__img-wrapper img, .mh-mosaic-grid__item:nth-child(9) .mh-box__img-wrapper img {
		top: 0;
	}
}

@media (min-width:768px) and (min-width:1024px) {
	.mh-mosaic-grid__item:nth-child(18), .mh-mosaic-grid__item:nth-child(27), .mh-mosaic-grid__item:nth-child(36), .mh-mosaic-grid__item:nth-child(45), .mh-mosaic-grid__item:nth-child(9) {
		width: 320px;
	}
}

@media (min-width:768px) and (min-width:1200px) {
	.mh-mosaic-grid__item:nth-child(18), .mh-mosaic-grid__item:nth-child(27), .mh-mosaic-grid__item:nth-child(36), .mh-mosaic-grid__item:nth-child(45), .mh-mosaic-grid__item:nth-child(9) {
		width: 380px;
	}
}

@media (min-width:1024px) {
	.mh-mosaic-grid {
		max-width: 960px;
	}
	
	.mh-mosaic-grid__item {
		height: 180px;
		width: 240px;
	}
}

@media (min-width:1200px) {
	.mh-mosaic-grid {
		max-width: 1140px;
	}
	
	.mh-mosaic-grid__item {
		height: 213px;
		width: 285px;
	}
}

.mh-mosaic-grid__item .mh-box {
	margin-bottom: 0 !important;
}

.mh-post-grid {
	padding: 12px 0 24px;
	background: #f2f2f2;
	margin-bottom: 24px;
}

.mh-post-grid:after {
	clear: both;
	display: table;
}

.mh-post-grid.has-post-thumbnail {
	padding: 0 0 12px;
}

.mh-post-grid .mh-thumbnail__inner:not(.mh-thumbnail__inner--horizontal):not(.mh-thumbnail__inner--square):not(.mh-thumbnail__inner--vertical) {
	padding-bottom: 62.5%;
	overflow: hidden;
	display: block;
	position: relative;
}

.mh-post-grid .mh-thumbnail__inner:not(.mh-thumbnail__inner--horizontal):not(.mh-thumbnail__inner--square):not(.mh-thumbnail__inner--vertical) img {
	top: 0;
	left: 0;
	width: 100% !important;
	position: absolute;
	min-width: 100%;
	height: initial;
	max-height: none;
	min-height: 100%;
}

.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 .post-content a:hover, .mh-post-single__meta a:hover, .mh-search__heading-big {
	color: #29aae3;
}

.mh-post-grid__thumbnail {
	overflow: hidden;
	margin-bottom: 0;
	position: relative;
	display: block;
}

.mh-post-grid__excerpt, .mh-post-grid__heading, .mh-post-single__header, .mh-post-single__main-image, .mh-post-single__title {
	margin-bottom: 12px;
}

.mh-post-grid__thumbnail:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	opacity: 0;
	width: 100%;
	background: #000;
	-webkit-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.mh-post-grid__thumbnail .mh-thumbnail__inner img {
	max-height: 100%;
	width: 100%;
}

.mh-post-grid__inner {
	position: relative;
	padding: 0 18px;
}

.mh-post-grid__heading {
	padding-top: 12px;
}

.mh-post-grid__heading:after {
	clear: both;
	display: table;
}

.mh-post-grid__heading a {
	font-weight: 700;
}

.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--horizontal, .mh-post-grid__thumbnail .mh-thumbnail__inner--square, .mh-post-grid__thumbnail .mh-thumbnail__inner--vertical {
	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-single__title {
	margin-top: 0;
	font-weight: 400;
	font-size: 24px;
}

.mh-post-single__main-image {
	display: block;
}

.mh-post-single__password form:after, .mh-post-single__section__heading:after {
	clear: both;
	display: table;
	content: "";
}

@media (min-width:768px) {
	.mh-post-single__title {
		font-size: 36px;
	}
	
	.mh-post-single__main-image {
		margin-bottom: 24px;
	}
}

.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__meta {
	font-size: 13px;
	margin: 0 0 12px;
	padding: 0;
	list-style-type: none;
}

.mh-post-single__meta a {
	line-height: 20px;
}

.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 {
		margin-bottom: 24px;
	}
	
	.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-grid__thumbnail:hover:after {
		opacity: .3;
	}
	
	.mh-post-single__content a:hover {
		text-decoration: underline;
	}
	
	.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__next, .mh-post-single__nav__prev {
	font-size: 16px;
}

.mh-post-single__nav__next a, .mh-post-single__nav__prev a {
	font-style: italic;
	color: #666;
	font-size: 16px;
}

.mh-post-single__nav__next span, .mh-post-single__nav__prev 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: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .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: #29aae3;
		-webkit-transition: .2s ease-in-out;
		-moz-transition: .2s ease-in-out;
		-ms-transition: .2s ease-in-out;
		-o-transition: .2s ease-in-out;
		transition: .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: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .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: #29aae3;
		-webkit-transition: .2s ease-in-out;
		-moz-transition: .2s ease-in-out;
		-ms-transition: .2s ease-in-out;
		-o-transition: .2s ease-in-out;
		transition: .2s ease-in-out;
	}
}

.mh-post-single-main-image:after, .mh-service__image-wrapper:after {
	opacity: 0;
	-moz-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-webkit-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

@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;
	margin-bottom: 24px;
	background: #f2f2f2;
}

.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: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: #000;
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.mh-search, .mh-social-icon {
	-o-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
}

@media screen and (min-width:0\0) and (min-resolution:72dpi) {
	.mh-post-single-main-image img {
		width: 100%;
	}
}

.mh-post .post-content blockquote {
	margin-bottom: 12px;
	border-left: 3px solid #29aae3;
	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-search-horizontal {
	position: relative;
	margin: 0 auto 12px;
	padding: 18px 12px;
	background: #f9f9f9;
	max-width: 1140px;
	border-top: 5px solid #29aae3;
}

@media (min-width:768px) {
	.mh-search-horizontal {
		margin: 0 auto;
		padding: 24px 12px;
	}
}

.mh-search-horizontal .mdl-checkbox {
	width: auto;
	margin-right: 12px;
	margin-bottom: 12px;
}

.mh-search-map-top, .mh-search__heading-big {
	width: 100%;
	position: relative;
}

.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 .mh-search__buttons {
	display: none;
}

.mh-property .swiper-container:hover .swiper-button-next, .mh-property .swiper-container:hover .swiper-button-prev, .mh-search.mh-search--open .mh-search__element {
	display: block !important;
}

.mh-search-map-top .mh-map-controls {
	margin-top: 48px;
}

.mh-search-map-top>.mh-layout {
	margin: 24px auto -24px;
	left: 0;
	right: 0;
}

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

.mh-search {
	-webkit-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

@media (min-width:768px) {
	.mh-search-map-top .mh-search-horizontal {
		border-top: 0 solid #29aae3;
		border-bottom: 5px solid #29aae3;
		padding-bottom: 12px;
		padding-top: 24px;
		background: #fff;
		box-shadow: 0 0 2px rgba(0, 0, 0, .2);
		width: 100%;
		z-index: 4;
	}
	
	.mh-search__heading-big {
		text-align: center;
	}
	
	.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%;
	}
}

.mh-search-small .mh-search__panel:after, .mh-search__2-col:after, .mh-search__buttons:after {
	display: table;
	clear: both;
	content: "";
}

@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__element, .mh-search-small .mh-search__panel__checkbox {
	margin-bottom: 12px;
}

.mh-search-small .mh-search__subtitle {
	color: #666;
}

.mh-search-small .bootstrap-select.btn-group>.btn {
	padding: 9px 0;
	font-size: 13px;
}

.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 .mh-search__2-col input, .mh-search-small .mh-search__panel>div:last-child .mdl-radio {
	margin-bottom: 9px;
}

.mh-layout__sidebar-left .mh-search__panel--checkbox, .mh-layout__sidebar-right .mh-search__panel--checkbox, .mh-search__element .mh-search--features, .mh-search__label {
	margin-bottom: 12px;
}

.mh-search-small .mh-search__panel .mh-search__2-col__right:after {
	left: -1px;
	top: 18px;
	width: 4px;
}

.mh-search__element #mh-currency_field {
	position: absolute;
	top: 0;
	right: 0;
}

.mh-search__element #mh-currency_field .bootstrap-select.btn-group>.dropdown-toggle {
	width: auto !important;
	padding: 2px 25px 2px 2px !important;
}

@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;
	}
}

.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: #666;
	height: 1px;
	width: 6px;
}

.mh-search__label {
	font-size: 14px;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	position: relative;
}

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

.mh-search__label select {
	width: auto;
	padding: 0 3px;
	cursor: pointer;
	border: 0;
	border: 1px solid #c3c3c5;
	font-size: 13px;
	position: absolute;
	top: 0;
	right: 0;
}

.mh-search__buttons {
	margin-top: 6px;
	text-align: right;
}

@media (min-width:768px) {
	.mh-search__buttons {
		margin-top: 12px;
		text-align: center;
		width: 100%;
		margin-bottom: 0;
		text-transform: uppercase;
	}
}

.mh-search__buttons input[type=search]:active, .mh-search__buttons input[type=search]:focus, .mh-search__buttons input[type=text]:active, .mh-search__buttons input[type=text]:focus {
	background: #fff;
}

.mh-search__buttons--disabled {
	display: none;
}

.mh-search__results-wrapper {
	min-height: 18px;
	margin-bottom: 12px;
	position: relative;
	padding: 0 12px;
}

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

@media (min-width:768px) {
	.mh-search__results-wrapper {
		padding: 0 160px 0 12px;
	}
	
	.mh-save-search-button {
		position: absolute;
		right: 0;
		top: -6px;
	}
}

.mh-save-search-button button {
	background: 0 0 !important;
	color: #222 !important;
	padding-right: 12px !important;
	padding-left: 12px !important;
}

.mh-search__results, .mh-search__results-filters ul {
	color: #666;
	position: relative;
	display: inline-block;
	float: left;
}

@media (max-width:767px) {
	.mh-save-search-button {
		background: #f4f4f4 !important;
		margin: -12px -12px 12px !important;
		text-align: center !important;
	}
	
	.mh-save-search-button button {
		width: 100%;
	}
}

.mh-search__more, .mh-search__previous {
	text-align: center;
}

.mh-search__results {
	font-size: 21px;
	line-height: 24px;
	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 {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: uppercase;
}

.mh-search__results-filters ul li {
	display: inline;
	position: relative;
}

.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: 2px;
	left: 11px;
	height: 14px;
	width: 1px;
	background: #ccc;
}

.mh-search__results-filters ul li>span>span {
	line-height: 24px;
	margin-right: 14px;
	padding-right: 24px;
	position: relative;
	display: inline-block;
}

.mh-search__results__button-delete {
	background: url("https://cdn-ilcdbhp.nitrocdn.com/NhcFkQsIkCKaaVpYqDVQCAvYXJivIbEu/assets/images/optimized/rev-e76cc99/douglasemmettapartments.com/wp-content/themes/myhome/assets/images/close-small.png");
	border: none;
	display: inline-block;
	background-size: 21px 21px;
	width: 21px;
	height: 21px;
	position: absolute;
	right: -2px;
	margin-left: 0;
	top: 2px;
	font-size: 0;
	color: transparent;
}

.compose-mode .mh-sidebar-more__content, .mh-disable-vc-front-end-editor__info, .mh-search--button .mh-search__label, .mh-sidebar-more__info {
	display: none;
}

.mh-search__results__button-clear {
	background: 0 0;
	border: none;
	color: #666;
	text-transform: uppercase;
}

.mh-search__results__button-clear:hover {
	color: #222;
}

.mh-search__previous button {
	margin-top: 12px;
	margin-bottom: 24px;
}

.mh-search__more {
	font-size: 24px;
	margin: 12px 0 0;
	font-weight: 700;
	width: 100%;
}

.mh-search__more button {
	margin-bottom: 24px;
}

.mh-search__end {
	border-top: 1px solid #f0f0f0;
	padding: 12px 0 36px;
}

.mh-search-classic {
	max-width: 1140px;
	margin: 0 auto;
}

@media (min-width:768px) {
	.mh-search-classic .mh-layout__sidebar-left .mdl-button--clear, .mh-search-classic .mh-layout__sidebar-right .mdl-button--clear {
		margin: 0;
		min-width: initial;
	}
}

.mh-search-wide .mh-search-horizontal {
	max-width: 100%;
	margin-left: 15px;
	margin-right: 15px;
}

.mh-search-clear-sidebar {
	margin-top: 12px;
	margin-bottom: 24px;
}

.mh-search--button {
	padding: 6px;
	position: relative;
}

.mh-search--button input[type=text] {
	position: relative;
	background: #fff;
}

.mh-search--button .bootstrap-select.btn-group .filter-option, .mh-search--button input[type=text] {
	text-align: left;
}

.mh-search--button .mdl-button {
	width: 100%;
	height: 46px;
	line-height: 46px;
	padding: 0;
}

.mh-search--button .btn-group.bootstrap-select {
	background: #fff;
}

.mh-sidebar-more {
	margin: 24px 0;
}

.compose-mode .mh-sidebar-more__info {
	display: block;
	background: #222;
	padding: 36px;
	margin: 24px 0;
	color: #fff;
	text-align: center;
}

.compose-mode .mh-sidebar-more__info .mh-estate-horizontal__text__inner, .compose-mode .mh-sidebar-more__info .mh-estate-vertical__text__inner {
	display: none;
}

.compose-mode .mh-sidebar-more__info h3 {
	color: #fff;
	text-align: center;
}

.mh-layout__content-left .mh-search__results-wrapper, .mh-layout__content-right .mh-search__results-wrapper {
	position: relative;
}

.mh-layout__content-left .mh-save-search-button button, .mh-layout__content-right .mh-save-search-button button {
	margin-top: 0 !important;
}

.mh-search-form-basic {
	padding: 6px;
	position: relative;
}

.mh-search-form-basic:after {
	clear: both;
	content: "";
	display: table;
}

.mh-search-form-basic input[type=text] {
	position: relative;
	background: #fff;
}

.mh-search-form-basic .mh-search__label {
	display: none;
}

.mh-search-form-basic__buttons:after, .mh-search-form-basic__inner:after {
	display: table;
	content: "";
	clear: both;
}

.mh-search-form-basic .bootstrap-select.btn-group .filter-option, .mh-search-form-basic input[type=text] {
	text-align: left;
}

.mh-search-form-basic .mdl-button {
	width: 100%;
	height: 46px;
	line-height: 46px;
	padding: 0;
}

.mh-search-form-basic .btn-group.bootstrap-select {
	background: #fff;
}

.mh-search-form-basic__inner {
	position: relative;
	top: 100px;
	max-width: 960px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.mh-search-form-basic__inner .mh-search__element {
	width: 100%;
}

.mh-search-form-basic__inner .mh-search__element:not(:last-child) {
	margin-bottom: 6px;
}

@media (min-width:778px) {
	.mh-search-form-basic__inner .mh-search__element:not(:last-child) {
		margin-bottom: 0;
	}
	
	.mh-search-form-basic__inner .mh-search__element {
		width: 25%;
	}
}

.mh-search-form-basic__buttons {
	float: left;
	width: 100%;
	margin-bottom: 12px;
	margin-left: -12px;
	margin-right: -12px;
}

.mh-search-form-basic__buttons__single {
	display: inline-block;
	margin-right: 12px;
}

.mh-search-form-basic__buttons__single button {
	border: none;
	box-shadow: none;
	background: #fff;
	color: #222;
	padding: 12px 18px;
	border-radius: 5px;
}

.mh-search-form-basic__buttons__single button.is-active {
	background: #29aae3;
	color: #fff;
}

.mh-search-form-basic__form {
	background: #fff;
	border-radius: 5px;
	float: left;
	width: 100%;
	position: relative;
}

.mh-search-form-basic__form input[type=text] {
	position: relative;
	background: #fff;
	text-align: left;
}

.mh-search-form-basic__form .bootstrap-select.btn-group .filter-option {
	text-align: left;
}

.mh-service .mh-service__btn, .mh-service__btn {
	text-align: right;
}

.mh-search-form-basic__form .btn-group.bootstrap-select {
	background: #fff;
}

@media (min-width:768px) {
	.mh-search-form-basic__form {
		padding: 9px 0 0;
		display: flex;
		flex-wrap: wrap;
		flex: 1;
		margin-left: -6px;
		margin-right: -6px;
	}
	
	.mh-search-form-basic__form:after {
		content: "";
		flex: auto;
	}
	
	.mh-search-form-basic__form .mh-search__element {
		padding: 0 6px;
		width: 25%;
	}
}

@media (min-width:768px) and (min-width:1024px) {
	.mh-search-form-basic__form {
		margin-left: -12px;
		margin-right: -12px;
	}
	
	.mh-search-form-basic__form .mh-search__element {
		padding: 0 12px;
	}
}

.mh-service {
	background: #f2f2f2;
	padding-bottom: 12px;
	margin-bottom: 24px;
}

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

.mh-service .mh-service__inner {
	padding-left: 12px;
	padding-right: 12px;
	padding-top: 12px;
}

.mh-service__image-wrapper {
	display: block;
	position: relative;
	padding-bottom: 62.5%;
	overflow: hidden;
}

.mh-service__image-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: #000;
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.mh-simple-box-wrapper:after, .mh-simple-box:after {
	display: table;
	content: "";
}

.mh-service__image-wrapper img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !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 {
	width: 100%;
}

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

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

.mh-simple-box-wrapper:after {
	clear: both;
}

.mh-simple-box {
	position: relative;
	margin: 0 auto;
	max-width: 400px;
	text-align: center;
}

.mh-simple-box:after {
	clear: both;
}

.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, .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;
	}
	
	.mh-simple-box--big-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;
	}
	
	.mh-simple-box--center .mh-icon-wrapper {
		margin-bottom: 24px;
	}
	
	.mh-simple-box--center .mh-simple-box__heading {
		font-size: 32px;
		text-transform: uppercase;
	}
	
	.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;
	}
	
	.mh-simple-box--right, .mh-simple-box--right .mh-simple-box__heading {
		text-align: right;
	}
	
	.mh-simple-box--right .mh-icon-wrapper {
		margin-bottom: 24px;
		position: absolute;
		top: 0;
		left: 0;
	}
	
	.mh-simple-box--right .mh-simple-box__content {
		padding-right: 80px;
	}
	
	.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;
		position: absolute;
		top: 0;
		right: 0;
	}
	
	.mh-simple-box--big-right .mh-simple-box__content {
		padding-right: 100px;
	}
	
	.mh-layout__content-left #mh_rev_gallery_single_wrapper {
		height: 668px !important;
		margin-bottom: 24px;
	}
}

#mh_rev_gallery_single_wrapper {
	margin-bottom: 24px;
}

#mh_rev_gallery_single_wrapper .tp-thumbs-inner-wrapper {
	-webkit-transition: all .2s ease-out !important;
	-moz-transition: all .2s ease-out !important;
	-ms-transition: all .2s ease-out !important;
	-o-transition: all .2s ease-out !important;
	transition: all .2s ease-out !important;
	margin-top: 12px;
}

#mh_rev_gallery_single_wrapper .tp-thumb {
	opacity: .3;
	-webkit-transition: opacity .2s !important;
	-moz-transition: opacity .2s !important;
	-ms-transition: opacity .2s !important;
	-o-transition: opacity .2s !important;
	transition: opacity .2s !important;
}

@media (min-width:1025px) {
	.mh-post-single-main-image:hover:after, .mh-service__image-wrapper:hover:after {
		opacity: .3;
	}
	
	#mh_rev_gallery_single_wrapper .tp-thumb:hover {
		opacity: 1;
	}
}

#mh_rev_gallery_single_wrapper .tp-thumb.selected {
	opacity: 1;
}

.single-estate .mh-layout__content-left {
	overflow-x: hidden !important;
}

.mh-layout__content-left #mh_rev_gallery_single_wrapper {
	position: relative;
}

@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;
}

.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 {
		margin-bottom: 24px;
	}
	
	.mh-slider-single__content {
		background: 0 0;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		bottom: 24px;
		color: #fff;
		padding: 0;
	}
	
	.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;
}

.mh-slider-single__address {
	color: #4d4d4d;
	margin-bottom: 12px;
}

@media (min-width:768px) {
	.mh-slider-single__bottom span {
		display: inline;
		padding: 0;
	}
	
	.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: #fff;
		float: left;
		display: inline-block;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
	
	.mh-slider-single__phone {
		display: inline-block;
		float: right;
	}
	
	.mh-slider-single__phone a {
		color: #fff;
	}
	
	.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: 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-size: 18px;
}

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

@media (min-width:768px) {
	.mh-slider-single__price {
		padding-bottom: 6px;
		margin-bottom: 0;
		background: 0 0;
		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;
	}
}

#estate_slider_card .tparrows, #estate_slider_card_short .tparrows, #mh_rev_gallery_single .tparrows, #mh_rev_slider_single .tparrows {
	background: rgba(255, 255, 255, .7);
	width: 48px;
	height: 48px;
}

#estate_slider_card .tparrows:before, #estate_slider_card_short .tparrows:before, #mh_rev_gallery_single .tparrows:before, #mh_rev_slider_single .tparrows:before {
	color: #222 !important;
	-webkit-transition: .1s ease-in-out;
	-moz-transition: .1s ease-in-out;
	-ms-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
	line-height: 48px;
}

.mh-social-icon, .mh-social-icon svg path {
	-webkit-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
}

#estate_slider_card .tparrows:hover:before, #estate_slider_card_short .tparrows:hover:before, #mh_rev_gallery_single .tparrows:hover:before, #mh_rev_slider_single .tparrows:hover:before {
	color: #fff !important;
	background: var(--primary);
}

@media (max-width:1024px) {
	#estate_slider_card .tparrows:active:before, #estate_slider_card .tparrows:focus:before, #estate_slider_card .tparrows:hover:before, #estate_slider_card_short .tparrows:active:before, #estate_slider_card_short .tparrows:focus:before, #estate_slider_card_short .tparrows:hover:before, #mh_rev_gallery_single .tparrows:active:before, #mh_rev_gallery_single .tparrows:focus:before, #mh_rev_gallery_single .tparrows:hover:before, #mh_rev_slider_single .tparrows:active:before, #mh_rev_slider_single .tparrows:focus:before, #mh_rev_slider_single .tparrows:hover:before {
		background: rgba(255, 255, 255, .7) !important;
		color: #222 !important;
	}
}

#estate_slider_card .tparrows.tp-leftarrow, #estate_slider_card_short .tparrows.tp-leftarrow, #mh_rev_gallery_single .tparrows.tp-leftarrow, #mh_rev_slider_single .tparrows.tp-leftarrow {
	margin-left: 12px;
}

#estate_slider_card .tparrows.tp-rightarrow, #estate_slider_card_short .tparrows.tp-rightarrow, #mh_rev_gallery_single .tparrows.tp-rightarrow, #mh_rev_slider_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;
}

.mh-slider__buttons .mdl-button {
	min-width: 130px;
	margin: 0 6px;
}

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, .compose-mode .vc_element.vc_mh_slider_estate {
	margin-top: 35px;
}

.ares .tp-bullet-title {
	display: none;
}

.mh-social-icons {
	margin-bottom: -12px;
}

.mh-social-icon {
	background-color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	text-align: center;
	color: #222 !important;
	height: 48px;
	width: 48px;
	font-size: 16px;
	line-height: 48px;
	margin-bottom: 12px;
	margin-right: 12px;
	transition: .2s ease-in-out;
	border-radius: 50%;
}

.mh-social-icon svg {
	width: 16px;
	height: 16px;
}

.mh-social-icon svg path {
	-moz-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	fill: #222;
}

.mh-social-icon:after {
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	height: 48px;
	width: 48px;
	content: "";
	border: 1px solid #222;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
	border-radius: 50%;
}

.mh-social-icon:active, .mh-social-icon:focus, .mh-social-icon:hover {
	color: #fff !important;
}

.mh-social-icon:active path, .mh-social-icon:focus path, .mh-social-icon:hover path {
	fill: #fff;
}

@media (min-width:1025px) {
	.mh-social-icon:hover {
		background: #29aae3;
	}
	
	.mh-social-icon:hover:after {
		opacity: 1;
		border: 1px solid #29aae3;
		transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-moz-transform: scale(1.2);
		-o-transform: scale(1.2);
	}
}

.mh-testimonial {
	max-width: 600px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 24px;
}

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

.mh-testimonial__occupation {
	font-size: 13px;
}

.mh-testimonial__author {
	font-weight: 700;
	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-block;
}

.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, .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: 12px;
	height: auto !important;
	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__author, .mh-testimonials--transparent.mh-testimonials--light, .mh-testimonials--transparent.mh-testimonials--light .mh-testimonial .mh-testimonial__author, .mh-testimonials--transparent.mh-testimonials--light .mh-testimonial .mh-testimonial__text {
	color: #fff;
}

.mh-testimonials--cloud-text.mh-testimonials--light .mh-testimonial .mh-testimonial__text:before {
	border-top-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--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-testimonials--cloud-text .mh-testimonial .mh-testimonial__text a {
	color: #fff;
}

.single-testimonial .mh-post-single__meta {
	display: none;
}

.mh-top-bar-user-panel {
	position: absolute;
	top: 0;
	right: 15px;
}

.mh-top-bar-user-panel__user-menu {
	display: none;
	margin: 36px 0 0;
	padding: 0;
	position: absolute;
	top: 0;
	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;
	line-height: 24px;
	font-size: 12px;
	text-transform: uppercase;
	border: 0;
}

.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;
	left: -24px;
	display: inline-block;
	padding: 0 12px;
	height: 34px;
}

.mh-top-bar-user-panel__user-info img[src*=http] {
	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;
	font-size: 14px;
}

@media (min-width:767px) {
	.mh-top-bar-user-panel__user-info {
		left: 0;
	}
}

.mh-top-header--primary .mh-top-bar-user-panel__user-info {
	background: #29aae3;
}

.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-header .mh-top-bar-user-panel__main-link:before {
		content: "";
		height: 20px;
		width: 1px;
		background: #f0f0f0;
		position: absolute;
		top: 8px;
		left: -12px;
	}
}

.mh-top-bar-user-panel-small .mh-top-bar-user-panel {
	position: static;
}

.mh-top-bar-user-panel-small .mh-top-bar-user-panel>div {
	padding-left: 24px;
}

.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 {
		display: inline-block;
		position: relative;
	}
}

.mh-top-header--default .mh-top-bar-user-panel__user-info {
	background: 0 0;
}

.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: #29aae3;
}

.mh-top-header-big .mh-top-bar-user-panel__user-info>a, .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;
}

.mh-top-header {
	font-size: 14px;
	line-height: 36px;
	color: #666;
	border-bottom: 1px solid #f0f0f0;
}

.mh-top-header:not(.mh-top-header--primary) a {
	color: #666;
}

.mh-top-header:not(.mh-top-header--primary) a:hover {
	color: #29aae3;
}

.mh-top-header:not(.mh-top-header--primary) a:hover path {
	fill: #29aae3;
}

.mh-top-header address {
	font-style: normal;
}

.mh-top-header__element {
	width: 100%;
	float: left;
	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%;
	}
}

@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;
	}
	
	.mh-top-header {
		height: 36px;
		text-align: right;
	}
	
	.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-flex;
		gap: 9px;
	}
}

.mh-top-header--primary {
	background: #29aae3;
	border-color: #29aae3;
	color: #fff;
}

.mh-top-header--primary .mh-top-header__element>a, .mh-top-header--primary .mh-top-header__element>a:hover, .mh-top-header--primary .mh-top-header__element>span>a, .mh-top-header--primary .mh-top-header__element>span>a:hover {
	color: #fff;
}

.mh-top-header-big {
	background: #fff;
}

.mh-top-header-big:after {
	clear: both;
	content: "";
	display: table;
}

.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 {
		height: 120px;
	}
	
	.mh-top-header-big__logo-placeholder {
		float: left;
		display: inline-block;
		width: 155px;
		margin-right: 30px;
		height: 120px;
	}
}

.mh-top-header-big__element:not(.mh-top-header-big__panel) a:hover {
	color: #29aae3;
}

.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, .mh-top-header-big__logo-placeholder {
		width: 285px;
	}
}

.mh-top-header-big__element__icon-big {
	position: relative;
	top: 1px;
	font-size: 16px;
	margin-bottom: 6px;
	display: inline-block;
}

.mh-top-header-big__element__icon-big svg {
	width: 12px;
	height: 12px;
}

.mh-top-header-big__element__icon-big svg path {
	fill: #4d4d4d;
}

.mh-top-header-big__element {
	display: block;
	position: relative;
	font-size: 13px;
	text-align: left;
	color: #4d4d4d;
	padding: 0;
}

.mh-top-header-big__element a {
	color: #222;
}

@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;
	}
	
	.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;
}

.mh-top-header-big__panel {
	margin-top: 3px;
	margin-bottom: 6px;
}

@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: #29aae3;
	}
	
	.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;
	}
	
	.mh-top-header-big__info-element__info {
		padding-left: 60px;
		max-width: 130px;
	}
	
	.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;
	}
	
	.mh-top-header-big+.mh-navbar__wrapper .mh-navbar__header {
		display: none !important;
	}
	
	.mh-top-header-big__panel {
		margin: 0;
		height: auto;
		display: block;
		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;
	}
	
	.mh-top-header-big .mh-top-header-big__panel {
		background: #29aae3;
	}
	
	.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;
	}
}

@media (max-width:767px) {
	.mh-top-header-big .mh-top-bar-user-panel__user-info {
		left: 0 !important;
	}
}

.mh-top-title {
	background: #f2f2f2;
	color: #999;
	text-align: center;
	padding: 36px 18px;
}

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

.mh-top-title a, .mh-top-title a:hover {
	color: #222;
}

.mh-header--transparent+.mh-top-title {
	padding-top: 120px;
}

.mh-top-title--image-background .small-text, .mh-top-title--image-background .small-text i, .mh-top-title--image-background h1 {
	color: #fff !important;
	z-index: 3 !important;
	position: relative;
}

.mh-top-title-offset {
	margin-top: 24px;
}

.mh-top-title__heading {
	margin-bottom: 0;
}

.mh-top-title--single-estate {
	margin-bottom: 12px;
}

@media (min-width:768px) {
	.mh-top-title-offset {
		margin-top: 36px;
	}
	
	.mh-top-title--single-estate {
		margin-bottom: 36px;
		padding-top: 36px;
		padding-bottom: 36px;
	}
}

.mh-top-title--single-estate .mh-caption {
	top: -48px;
	right: 24px;
}

.mh-top-title--single-estate .mh-layout {
	position: relative;
}

.mh-top-title--author {
	padding-top: 24px;
	padding-bottom: 24px;
	color: #666;
}

.mh-top-title--author .agent-contact {
	margin-bottom: 0;
}

.mh-top-title--author .mh-top-title__heading {
	color: #666;
	text-transform: none;
}

.mh-top-title--author .mh-top-title__heading:first-letter {
	text-transform: uppercase;
}

@media (min-width:768px) {
	.mh-top-title--author {
		padding-top: 64px;
		padding-bottom: 64px;
		text-align: left;
	}
	
	.mh-top-title--author .mh-top-title__heading {
		font-size: 44px;
		text-align: left;
	}
	
	.mh-top-title__avatar+.mh-top-title__author-info {
		padding-left: 200px;
	}
}

.mh-top-title--author .mh-agent-contact__element {
	display: block;
	font-weight: 400;
	font-size: 13px;
	margin-bottom: 0;
}

@media (min-width:768px) {
	.mh-top-title__author-info {
		height: 160px;
		display: table;
		vertical-align: middle;
	}
	
	.mh-top-title__author-info__content {
		display: table-cell;
		vertical-align: middle;
	}
	
	.mh-top-title--image-background {
		padding-top: 72px;
		padding-bottom: 72px;
	}
}

.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, .45);
	z-index: 0;
}

.mh-top-title--image-background .mh-top-title__subheading {
	position: relative;
	color: #fff;
	z-index: 2;
}

.mh-top-title__heading {
	position: relative;
	display: inline-block;
	font-size: 24px;
	color: #231e2e;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
}

.mh-top-title__avatar>img {
	border-radius: 50%;
	width: 160px;
	margin-bottom: 12px;
}

@media (min-width:768px) {
	.mh-top-title__heading {
		font-size: 32px;
	}
	
	.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 {
		text-align: left;
	}
}

.mh-top-title__user-description {
	max-width: 600px;
	margin-bottom: 12px;
}

.mh-top-title__social-icons:after {
	clear: both;
	content: "";
	display: table;
}

.mh-top-title__social-icons a {
	color: #666;
	display: inline-block;
	margin-right: 8px;
	font-size: 14px;
}

.mh-top-title__social-icons a svg {
	width: 14px;
	height: 14px;
	fill: #666;
}

.mh-top-title--parallax:after, .mh-top-title--wide-bg:after {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: "";
}

@media (min-width:1025px) {
	.mh-top-title__social-icons a:active, .mh-top-title__social-icons a:focus, .mh-top-title__social-icons a:hover {
		color: #222;
	}
	
	.mh-top-title__social-icons a:active path, .mh-top-title__social-icons a:focus path, .mh-top-title__social-icons a:hover path {
		fill: #222;
	}
}

.mh-top-title--parallax .mh-top-title__heading, .mh-top-title--parallax .mh-top-title__subheading {
	position: relative;
	z-index: 2;
	color: #fff;
}

.mh-top-title--parallax {
	padding-top: 72px;
	padding-bottom: 72px;
	background-position: center center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	position: relative;
	background-size: cover !important;
}

.mh-top-title--parallax:after {
	position: absolute;
	background: rgba(0, 0, 0, .45);
	z-index: 1;
}

.mh-top-title--wide-bg .mh-top-title__heading, .mh-top-title--wide-bg .mh-top-title__subheading {
	position: relative;
	z-index: 2;
	color: #fff;
}

.mh-top-title--wide-bg {
	padding-top: 72px;
	padding-bottom: 72px;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	background-size: cover !important;
}

.mh-top-title--wide-bg:after {
	position: absolute;
	background: rgba(0, 0, 0, .45);
	z-index: 1;
}

.mh-video-wrapper {
	padding-bottom: 24px;
	text-align: center;
	position: relative;
}

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

.mh-video-wrapper .wp-video {
	width: 100% !important;
}

.mh-video-wrapper iframe {
	width: 100%;
	min-height: 434px;
}

.mejs-mediaelement {
	position: static !important;
}

.wp-video-shortcode {
	height: auto !important;
	outline: 0 !important;
}

.wp-video-shortcode * {
	outline: 0 !important;
}

.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: #29aae3;
	content: "";
}

.mh-favorite-card {
	position: absolute;
	z-index: 99;
	right: 12px;
	top: -40px;
	padding: 0;
	color: #000;
	margin-top: 62.5%;
	font-size: 16px;
}

.mh-favorite-card button {
	padding: 6px;
	background: rgba(255, 255, 255, .5);
	border: 0 solid transparent;
	border-radius: 4px;
	line-height: 1;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.mh-favorite-card button:hover {
	background: #fff !important;
	color: #d32f2f;
}

.mh-favorite-card .fas.fa-heart {
	color: #d32f2f !important;
}

.mh-favorite-card .is-favorite button {
	background: #fff;
}

.mh-favorite-card__added-removed {
	position: absolute;
	width: initial;
	border-radius: 6px;
	display: block;
	background: #fff;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: 700;
	color: #444;
	right: 0;
	top: 0;
	margin-right: 36px;
	white-space: nowrap;
	opacity: 1;
}

.mh-favorite-card__added-removed:after {
	content: "";
	position: absolute;
	right: -4px;
	top: 8px;
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 6px solid #fff;
}

.owl-carousel {
	display: none;
	width: 100%;
	-webkit-tap-highlight-color: transparent;
	position: relative;
	z-index: 1;
}

.owl-item {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1, 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;
	-webkit-transform: translate3d(0, 0, 0);
}

.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%;
	-webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
	display: none;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
	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 .owl-carousel {
	display: block;
}

.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-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-height {
	transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity .4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.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;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: -webkit-transform .1s ease;
	transition: transform .1s 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-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}

.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}

.owl-carousel--gallery .owl-nav {
	position: absolute;
	height: 48px;
	margin-top: -12px;
	top: 50%;
	width: 100%;
	text-align: center;
	-webkit-tap-highlight-color: transparent;
}

.owl-carousel--gallery .owl-item {
	-webkit-backface-visibility: hidden;
	-webkit-transform: translateZ(0) scale(1, 1);
}

.owl-carousel--gallery .owl-controls {
	position: absolute;
	top: 24px;
	right: 48px;
}

.owl-carousel--gallery .owl-carousel-sidebar .owl-controls {
	position: absolute;
	top: 24px;
	right: 24px;
}

.owl-dots {
	text-align: center;
	-webkit-tap-highlight-color: transparent;
	margin-top: 0;
	height: 14px;
	margin-bottom: 24px;
}

.owl-dots .owl-dot {
	position: relative;
	top: -4px;
	display: inline-block;
	zoom: 1;
}

.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 .2s ease;
	border-radius: 30px;
}

.owl-dots .owl-dot.active span {
	background: #29aae3;
	border-color: #29aae3;
}

.owl-next, .owl-prev {
	background: rgba(255, 255, 255, .7);
	position: absolute;
}

.owl-next:before, .owl-prev:before {
	color: #222 !important;
	-webkit-transition: .1s ease-in-out;
	-moz-transition: .1s ease-in-out;
	-ms-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out;
	transition: .1s ease-in-out;
}

.owl-next:hover i:before, .owl-prev:hover i:before {
	color: #fff !important;
	background: #29aae3;
}

.owl-next i:before, .owl-prev i:before {
	font-family: revicons;
	font-size: 16px;
	color: #222;
	display: block;
	line-height: 48px;
	text-align: center;
	width: 48px;
	height: 48px;
}

@media (max-width:1024px) {
	.owl-next:active:before, .owl-next:focus:before, .owl-next:hover:before, .owl-prev:active:before, .owl-prev:focus:before, .owl-prev:hover:before {
		background: rgba(255, 255, 255, .7) !important;
		color: #222 !important;
	}
}

.owl-next:hover, .owl-prev:hover {
	color: #fff;
	background: #29aae3;
}

.owl-prev {
	left: 12px;
}

.owl-prev i:before {
	content: "";
}

.owl-next {
	right: 12px;
}

.owl-next i:before {
	content: "";
}

.mh-rs-search #myhome-listing-grid:after, .mh-rs-search .mh-search-left:after, .mh-rs-search .mh-search-right:after, .mh-slider__extra-content #myhome-listing-grid:after, .mh-slider__extra-content .mh-search-left:after, .mh-slider__extra-content .mh-search-right:after {
	clear: both;
	content: "";
	display: table;
}

.vc_images_carousel {
	max-width: 100% !important;
	margin-bottom: 24px !important;
}

@media screen and (min-width:768px) {
	.vc_images_carousel .vc_carousel-indicators {
		bottom: -36px !important;
	}
}

.mh-rs-search #myhome-listing-grid, .mh-slider__extra-content #myhome-listing-grid {
	position: relative;
	margin-right: 12px;
	margin-left: 12px;
	margin-top: -36px;
	background: #fff;
	z-index: 2;
}

.mh-rs-search .mh-search-left, .mh-rs-search .mh-search-right, .mh-slider__extra-content .mh-search-left, .mh-slider__extra-content .mh-search-right {
	z-index: 99999;
	padding: 24px 18px;
	background: #fff;
}

@media (min-width:1164px) {
	.mh-rs-search #myhome-listing-grid, .mh-slider__extra-content #myhome-listing-grid {
		max-width: 1140px;
		margin-left: auto;
		margin-right: auto;
		margin-top: -96px;
	}
}

.mh-rs-search .mh-search-top, .mh-slider__extra-content .mh-search-top {
	background: #fff;
	padding: 0;
}

.mh-rs-search {
	position: relative;
}

.mh-rs-search .mh-search {
	position: relative;
	z-index: 2;
}

.mh-rs-search .vc_mh_search_form_submit {
	position: static !important;
}

@media (min-width:768px) {
	.mh-rs-search .mh-search--button .mh-search__element {
		padding: 0 3px;
	}
}

.mh-rs-search .mh-search--button .btn-group, .mh-rs-search .mh-search--button input[type=text] {
	margin-bottom: 0 !important;
}

.mh-rs-search .mh-search--button .mh-search__panel--text_range .mh-search__panel {
	background: 0 0 !important;
}

.mh-rs-search .mh-search.mh-search--button .mh-search__panel {
	background: #fff;
}

.mh-rs-search #myhome-search-form-submit {
	margin: 0 auto;
	max-width: 360px;
	width: 100%;
}

.mh-rs-search #myhome-search-form-submit input#field-keyword {
	padding-left: 50px;
}

.mh-rs-search #myhome-search-form-submit .mh-search__panel--keyword .mh-search__panel {
	position: relative;
}

.mh-rs-search #myhome-search-form-submit .mh-search__panel--keyword .mh-search__panel:after {
	content: "";
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 400;
	font-style: normal;
	color: #222;
	position: absolute;
	left: 22px;
	font-size: 16px;
	top: 7px;
	text-decoration: none;
}

.mh-rs-search #myhome-search-form-submit .mh-search__panel--keyword .mh-search__panel.mh-active-input:after {
	color: #29aae3;
}

.mh-rs-search--bg-dark-mask #myhome-search-form-submit .mh-search--button {
	background: rgba(0, 0, 0, .6);
}

.mh-rs-search--bg-light-mask #myhome-search-form-submit .mh-search--button {
	background: rgba(255, 255, 255, .6);
}

.mh-rs-search--bg-light #myhome-search-form-submit .mh-search--button {
	background: #fff;
}

.mh-rs-search--bg-dark #myhome-search-form-submit .mh-search--button {
	background: #222;
}

.mh-rs-search--bg-dark .mh-search__2-col__right:after, .mh-rs-search--bg-dark-mask .mh-search__2-col__right:after {
	background: #fff;
}

.mh-rs-search--bg-light .mh-search__2-col__right:after, .mh-rs-search--bg-light-mask .mh-search__2-col__right:after {
	background: #222;
}

.mh-rs-search--middle #myhome-search-form-submit {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	padding-left: 15px;
	padding-right: 15px;
	margin-top: -35px;
}

.mh-rs-search--middle #myhome-search-form-submit .mh-search__element {
	width: 100%;
}

.mh-rs-search--middle #myhome-search-form-submit .mh-search__element:not(:last-child) {
	margin-bottom: 6px;
}

.mh-rs-search--size-full .mh-slider__extra-content {
	max-width: none;
}

.mh-rs-search--type-1 #myhome-search-form-submit .mh-search__element {
	display: none;
}

.mh-rs-search--type-1 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-1 #myhome-search-form-submit .mh-search__element:last-child {
	display: block;
}

.mh-rs-search--type-2 #myhome-search-form-submit .mh-search__element {
	display: none;
}

.mh-rs-search--type-2 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-2 #myhome-search-form-submit .mh-search__element:last-child {
	display: block;
}

@media (min-width:778px) {
	.mh-rs-search--middle #myhome-search-form-submit .mh-search__element:not(:last-child) {
		margin-bottom: 0;
	}
	
	.mh-rs-search--size-big #myhome-search-form-submit {
		max-width: 1140px;
	}
	
	.mh-rs-search--size-medium #myhome-search-form-submit {
		max-width: 960px;
	}
	
	.mh-rs-search--type-1 #myhome-search-form-submit .mh-search__element:first-child {
		width: 75%;
	}
	
	.mh-rs-search--type-1 #myhome-search-form-submit .mh-search__element:last-child {
		width: 25%;
	}
	
	.mh-rs-search--type-2 #myhome-search-form-submit .mh-search__element:first-child {
		width: 75%;
	}
}

@media (min-width:1024px) {
	.mh-rs-search--type-2 #myhome-search-form-submit .mh-search__element:first-child {
		width: 85%;
	}
}

@media (min-width:778px) {
	.mh-rs-search--type-2 #myhome-search-form-submit .mh-search__element:last-child {
		width: 25%;
	}
}

@media (min-width:1024px) {
	.mh-rs-search--type-2 #myhome-search-form-submit .mh-search__element:last-child {
		width: 15%;
	}
}

.mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element {
	display: none;
}

.mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:nth-child(2), .mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:nth-child(3) {
	display: block;
}

.mh-rs-search--type-4 #myhome-search-form-submit .mh-search__element {
	display: none;
}

.mh-rs-search--type-4 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-4 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-4 #myhome-search-form-submit .mh-search__element:nth-child(2) {
	display: block;
}

.mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element {
	display: none;
}

.mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:nth-child(2), .mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:nth-child(3) {
	display: block;
}

.mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element {
	display: none;
}

.mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(2), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(3), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(4), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(5), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(6) {
	display: block;
}

.mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:first-child .mh-search__panel, .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(2) .mh-search__panel, .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(3) .mh-search__panel {
	margin-bottom: 6px;
}

.mh-rs-search--type-7 #myhome-search-form-submit .mh-search__element {
	display: none;
}

.mh-rs-search--type-7 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-7 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-7 #myhome-search-form-submit .mh-search__element:nth-child(2) {
	display: block;
}

.mh-pricing-table:after, .mh-pricing-table__column__inner:after {
	display: table;
	content: "";
	clear: both;
}

@media (min-width:778px) {
	.mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:first-child {
		width: 40%;
	}
	
	.mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:nth-child(2), .mh-rs-search--type-3 #myhome-search-form-submit .mh-search__element:nth-child(3), .mh-rs-search--type-4 #myhome-search-form-submit .mh-search__element:first-child {
		width: 20%;
	}
	
	.mh-rs-search--type-4 #myhome-search-form-submit .mh-search__element:nth-child(2) {
		width: 60%;
	}
	
	.mh-rs-search--type-4 #myhome-search-form-submit .mh-search__element:last-child {
		width: 20%;
	}
	
	.mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:nth-child(2), .mh-rs-search--type-5 #myhome-search-form-submit .mh-search__element:nth-child(3), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:first-child, .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(2), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(3), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(4), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(5), .mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:nth-child(6) {
		width: 25%;
	}
	
	.mh-rs-search--type-6 #myhome-search-form-submit .mh-search__element:last-child {
		width: 50%;
	}
	
	.mh-rs-search--type-7 #myhome-search-form-submit .mh-search__element:first-child {
		width: 60%;
	}
	
	.mh-rs-search--type-7 #myhome-search-form-submit .mh-search__element:last-child, .mh-rs-search--type-7 #myhome-search-form-submit .mh-search__element:nth-child(2) {
		width: 20%;
	}
}

.mh-slider__extra-content {
	z-index: 2;
	position: relative;
}

#myhome-app .swal2-modal .swal2-title {
	font-size: 21px;
	font-family: inherit;
}

#myhome-app .swal2-buttonswrapper>button, #myhome-app .swal2-modal {
	border-radius: 0;
}

#myhome-app .swal2-loading button {
	border-radius: 100%;
}

#myhome-app .swal2-cancel {
	border-radius: 0 !important;
}

.swal2-container {
	z-index: 99999999;
}

body {
	padding-right: 0 !important;
}

.mh-pricing-table {
	background: #f4f4f4;
	padding: 0;
}

.mh-pricing-table--1-col .mh-pricing-table__inner {
	max-width: 400px;
	margin: 0 auto;
}

.mh-pricing-table--1-col .mh-pricing-table__column {
	width: 100%;
	margin: 0 auto !important;
	float: initial !important;
}

@media (min-width:768px) {
	.mh-pricing-table {
		padding: 48px 0;
	}
	
	.mh-pricing-table--1-col .mh-pricing-table__column {
		max-width: 300px;
	}
}

.mh-pricing-table--2-col .mh-pricing-table__inner {
	max-width: 750px;
	margin: 0 auto;
}

.mh-pricing-table--2-col .mh-pricing-table__column {
	width: 50%;
}

@media (min-width:768px) {
	.mh-pricing-table--2-col .mh-pricing-table__column:nth-child(2) {
		margin-top: -40px;
	}
}

.mh-pricing-table--2-col .mh-pricing-table__column:nth-child(2) .mh-pricing-table__row {
	padding: 30px 12px;
}

.mh-pricing-table--3-col .mh-pricing-table__inner {
	max-width: 1024px;
	margin: 0 auto;
}

.mh-pricing-table--3-col .mh-pricing-table__column {
	width: 33.33%;
}

@media (min-width:768px) {
	.mh-pricing-table--3-col .mh-pricing-table__column:nth-child(2) {
		margin-top: -40px;
	}
}

.mh-pricing-table--3-col .mh-pricing-table__column:nth-child(2) .mh-pricing-table__row {
	padding: 30px 12px;
}

.mh-pricing-table--4-col .mh-pricing-table__inner {
	max-width: 1170px;
	margin: 0 auto;
}

.mh-pricing-table--4-col .mh-pricing-table__column {
	width: 50%;
	padding: 8px;
}

@media (min-width:1023px) {
	.mh-pricing-table--4-col .mh-pricing-table__column {
		width: 25%;
	}
	
	.mh-pricing-table--4-col .mh-pricing-table__column:nth-child(3) {
		margin-top: -40px;
	}
	
	.mh-pricing-table--4-col .mh-pricing-table__column:nth-child(3) .mh-pricing-table__row {
		padding: 30px 12px;
	}
}

.mh-pricing-table--5-col .mh-pricing-table__inner {
	max-width: 1170px;
	margin: 0 auto;
}

.mh-pricing-table--5-col .mh-pricing-table__column {
	width: 50%;
}

@media (min-width:1023px) {
	.mh-pricing-table--5-col .mh-pricing-table__column {
		width: 20%;
		padding: 4px;
	}
	
	.mh-pricing-table--5-col .mh-pricing-table__column:nth-child(3) {
		margin-top: -40px;
	}
	
	.mh-pricing-table--5-col .mh-pricing-table__column:nth-child(3) .mh-pricing-table__row {
		padding: 30px 12px;
	}
}

.mh-pricing-table__column {
	float: left;
	padding: 12px;
}

.mh-pricing-table__row {
	padding: 12px;
	position: relative;
	text-align: center;
}

@media (min-width:768px) {
	.mh-pricing-table__row {
		padding: 24px 12px 12px;
	}
}

.mh-pricing-table__row--sold {
	font-style: italic;
	padding: 35px 0;
	line-height: 1;
	position: relative;
	color: #29aae3;
}

@media (max-width:600px) {
	.mh-pricing-table__column {
		width: 100% !important;
	}
	
	.mh-pricing-table__column:after {
		clear: both;
		content: "";
		display: table;
	}
	
	.mh-pricing-table__row:last-child {
		padding: 24px !important;
	}
}

.mh-pricing-table__column__inner {
	background: #fff;
}

.mh-pricing-table__row--button {
	background-color: #fff;
	font-size: 24px;
	padding-bottom: 30px;
}

.mh-pricing-table__row__one-time-heading {
	position: absolute;
	bottom: -12px;
	z-index: 9;
	left: 0;
	display: inline-block;
	right: 0;
	margin: 0 auto;
}

.mh-pricing-table__row__one-time-heading__inner {
	font-size: 11px;
	line-height: 1;
	display: inline-block;
	color: #fff;
	padding: 6px 9px;
	font-weight: 700;
	text-transform: uppercase;
	background: #4d4d4d;
}

.mh-pricing-table__row--price {
	background-color: #fff;
	font-size: 36px;
	font-weight: 700;
	color: #444;
	padding-bottom: 0 !important;
}

.mh-pricing-table__row--price del {
	font-size: 16px;
}

.mh-pricing-table__price-period {
	display: block;
	color: #999;
	font-weight: 400;
	font-size: 16px;
}

.mh-pricing-table__row--name {
	background-color: #29aae3;
	font-size: 24px;
	color: #fff;
	padding: 18px;
}

.mh-property .swiper-container .swiper-wrapper {
	position: absolute;
	top: 0;
	left: 0;
}

.mh-property .swiper-container .swiper-button-next, .mh-property .swiper-container .swiper-button-prev {
	display: none !important;
}

.mh-property .swiper-container .mh-caption {
	z-index: 3;
}

.mh-property .swiper-container .swiper-button-next:after, .mh-property .swiper-container .swiper-button-prev:after {
	display: none;
}

.mh-property .swiper-container:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 30px;
	background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .2) 100%);
	z-index: 2;
}

.mh-property .swiper-container:hover .swiper-slide:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 25%;
	height: 100%;
	background: linear-gradient(to left, transparent 0, rgba(0, 0, 0, .5) 100%);
	z-index: 2;
}

.mh-property .swiper-container:hover .swiper-slide:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 25%;
	height: 100%;
	background: linear-gradient(to right, transparent 0, rgba(0, 0, 0, .5) 100%);
	z-index: 2;
}

.mh-property .swiper-button-next, .mh-property .swiper-button-prev {
	background-image: none !important;
	position: absolute;
	top: 50%;
	margin-top: -40px;
}

.mh-property .swiper-button-next.nitro-lazy, .mh-property .swiper-button-prev.nitro-lazy {
	background-image: none !important;
}

.mh-property .swiper-button-next:before, .mh-property .swiper-button-prev:before {
	font-family: "Font Awesome 5 Free" !important;
	font-size: 20px;
	height: 80px;
	display: block;
	line-height: 80px;
	text-align: center;
	color: #fff;
	z-index: 2;
}

.mh-property .swiper-button-next {
	line-height: 80px;
	height: 80px;
	right: 0;
	padding-left: 48px;
	padding-right: 12px;
}

.mh-property .swiper-button-next:before {
	position: absolute;
	right: 0;
	margin-right: 12px;
}

.mh-property .swiper-button-prev:before, .swiper-container--single .swiper-button-prev:before {
	content: "" !important;
}

.mh-property .swiper-button-prev {
	line-height: 80px;
	height: 80px;
	left: 0;
	padding-left: 12px;
	padding-right: 48px;
}

.mh-property .swiper-button-prev:before {
	font-weight: 900;
	margin-right: 36px;
}

.mh-property .swiper-lazy-preloader {
	display: none;
}

.mh-property .swiper-pagination-bullet {
	background: #fff;
	opacity: .6;
}

.mh-property .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next, .mh-property .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next, .mh-property .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev, .mh-property .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
	-webkit-transform: scale(.8);
	-ms-transform: scale(.8);
	transform: scale(.8);
}

.mh-property .swiper-pagination-bullet-active {
	opacity: 1;
}

.mh-property .swiper-slide {
	text-align: center;
	padding-bottom: 62.5%;
	position: relative;
	overflow: hidden;
}

.mh-property .swiper-slide img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.mh-property .swiper-container {
	margin-bottom: 12px;
	position: relative;
	padding-bottom: 62.5%;
}

.swiper-container--single .swiper-pagination {
	color: #fff;
	padding-bottom: 12px;
	bottom: 0;
}

.swiper-container--single a:before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 48px;
	background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .2) 100%);
	z-index: 2;
}

.swiper-container--single .swiper-slide:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 25%;
	height: 100%;
	background: linear-gradient(to left, transparent 0, rgba(0, 0, 0, .5) 100%);
	z-index: 2;
}

.swiper-container--single .swiper-slide:after {
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 25%;
	height: 100%;
	background: linear-gradient(to right, transparent 0, rgba(0, 0, 0, .5) 100%);
	z-index: 2;
}

.swiper-container--single .swiper-button-next:before, .swiper-container--single .swiper-button-prev:before {
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	font-size: 16px !important;
	height: 80px;
	top: 50%;
	margin-top: -40px;
	margin-right: 24px;
	display: block;
	line-height: 80px;
	text-align: center;
	z-index: 2;
}

.swiper-container--single .swiper-button-next {
	background-image: none !important;
	padding-left: 48px;
	padding-right: 24px;
}

.swiper-container--single .swiper-button-next.nitro-lazy {
	background-image: none !important;
}

.swiper-container--single .swiper-button-next:before {
	content: "" !important;
}

.swiper-container--single .swiper-button-prev {
	background-image: none !important;
	padding-left: 24px;
	padding-right: 48px;
}

.swiper-container--single .swiper-button-prev.nitro-lazy {
	background-image: none !important;
}

.swiper-container--single-thumbs {
	margin: 12px -6px 24px !important;
	box-sizing: border-box;
}

@media (max-width:767px) {
	.swiper-container--single-thumbs {
		margin-bottom: 12px !important;
	}
}

.swiper-container--single-thumbs .swiper-container {
	margin-bottom: 12px;
	position: relative;
	padding-bottom: 62.5%;
}

.swiper-container--single-thumbs .swiper-container .swiper-wrapper {
	position: absolute;
	top: 0;
	left: 0;
}

.swiper-container--single-thumbs .swiper-slide {
	width: 33%;
	cursor: pointer;
	padding: 0 6px;
}

@media (min-width:768px) {
	.swiper-container--single-thumbs .swiper-slide {
		width: 20%;
	}
}

.swiper-container--single-thumbs .swiper-slide .swiper-slide__inner {
	overflow: hidden;
	opacity: .4;
	padding-bottom: 62.5%;
	background-size: cover;
	background-position: center;
}

.swiper-container--single-thumbs .swiper-slide-active .swiper-slide__inner {
	opacity: 1;
}

.tagcloud {
	margin-bottom: 16px;
}

.tagcloud a {
	display: inline-block;
	position: relative;
	font-size: 11px !important;
	background: 0 0;
	color: #4d4d4d;
	text-transform: uppercase;
	padding: 5px 12px;
	margin: 0 8px 8px 0;
}

.mh-layout__sidebar-left ul, .mh-layout__sidebar-right ul, .tt-menu h3, .widget_rss ul li a {
	font-size: 16px;
}

.tagcloud a:active, .tagcloud a:focus, .tagcloud a:hover {
	color: #fff !important;
	background: #29aae3;
	border-color: #29aae3;
}

.twitter-typeahead {
	display: block !important;
}

.tt-query {
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.tt-hint {
	color: #999;
}

.tt-menu {
	width: 100%;
	margin-top: 2px;
	background-color: #fff;
	border: 1px solid #ccc;
}

.tt-menu h3 {
	padding: 12px 0 6px;
	font-weight: 700;
	margin: 0 12px;
	border-bottom: 1px solid #f4f4f4;
}

.tt-highlight {
	color: #29aae3;
}

.tt-suggestion {
	padding: 6px 12px;
	min-height: 36px;
	cursor: pointer;
}

.tt-suggestion.tt-cursor, .tt-suggestion:hover {
	background-color: #f4f4f4;
}

.tt-suggestion p {
	margin: 0;
}

#myhome-listing-grid .tt-menu {
	margin-top: -10px;
}

.mh-2-col-image {
	width: 100%;
	position: relative;
	float: left;
	padding: 0 15px;
}

.mh-2-col-image img {
	padding: 24px 12px 0;
}

@media (min-width:768px) {
	.mh-2-col-image img {
		position: absolute;
		top: 0;
		left: 0;
		max-width: none !important;
		padding: 0;
		height: 100% !important;
		width: auto !important;
	}
	
	.mh-2-col-image {
		width: 50%;
		overflow: hidden !important;
	}
}

@media (min-width:1200px) {
	.mh-2-col-image img {
		min-width: 100% !important;
		max-height: initial !important;
		height: initial !important;
		min-height: initial !important;
	}
}

.mh-2-col-image-bg {
	min-height: 200px !important;
}

.mh-2-col-image-bg>div {
	margin: 0 12px !important;
}

.compose-mode .mh-2-col-image .vc_element {
	position: static;
}

.mh-2-col-text {
	width: 100%;
	float: right;
	order: 10;
	padding: 24px 15px 36px !important;
}

@media (min-width:768px) {
	.mh-2-col-image-bg>div {
		margin: 0 !important;
	}
	
	.mh-2-col-image-bg {
		margin: 0 !important;
		min-height: initial !important;
	}
	
	.mh-2-col-text {
		order: 0;
		width: 50%;
		padding: 60px 30px !important;
	}
}

@media (min-width:1200px) {
	.mh-2-col-text {
		padding: 90px 30px !important;
	}
}

@media (max-width:767px) {
	.mh-2-col-text .mh-font-size-m {
		font-size: 16px !important;
	}
}

.widget, .widget-area {
	width: 100%;
	margin-bottom: 36px;
}

.mh-menu ul, .widget_archive ul, .widget_categories ul, .widget_meta ul, .widget_nav_menu ul, .widget_pages ul, .widget_recent_entries ul {
	padding: 0;
	margin: 0;
	width: 100%;
	overflow: hidden;
	font-size: 13px;
}

.mh-menu ul li, .widget_archive ul li, .widget_categories ul li, .widget_meta ul li, .widget_nav_menu ul li, .widget_pages ul li, .widget_recent_entries ul li {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.mh-menu ul li a, .widget_archive ul li a, .widget_categories ul li a, .widget_meta ul li a, .widget_nav_menu ul li a, .widget_pages ul li a, .widget_recent_entries 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: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.mh-menu ul li a:before, .widget_archive ul li a:before, .widget_categories ul li a:before, .widget_meta ul li a:before, .widget_nav_menu ul li a:before, .widget_pages ul li a:before, .widget_recent_entries ul li a:before {
	position: absolute;
	left: -12px;
	top: 50%;
	background: #29aae3;
	height: 2px;
	width: 12px;
	content: "";
	display: block;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

@media (min-width:1025px) {
	.mh-menu ul li a:hover, .widget_archive ul li a:hover, .widget_categories ul li a:hover, .widget_meta ul li a:hover, .widget_nav_menu ul li a:hover, .widget_pages ul li a:hover, .widget_recent_entries ul li a:hover {
		padding-left: 30px;
		padding-right: 0;
		color: #000;
	}
	
	.mh-menu ul li a:hover:before, .widget_archive ul li a:hover:before, .widget_categories ul li a:hover:before, .widget_meta ul li a:hover:before, .widget_nav_menu ul li a:hover:before, .widget_pages ul li a:hover:before, .widget_recent_entries ul li a:hover:before {
		left: 0;
	}
}

.mh-menu ul li ul, .widget_archive ul li ul, .widget_categories ul li ul, .widget_meta ul li ul, .widget_nav_menu ul li ul, .widget_pages ul li ul, .widget_recent_entries ul li ul {
	padding-left: 18px;
}

.mh-menu>ul>li:last-child a, .widget_archive>ul>li:last-child a, .widget_categories>ul>li:last-child a, .widget_meta>ul>li:last-child a, .widget_nav_menu>ul>li:last-child a, .widget_pages>ul>li:last-child a, .widget_recent_entries>ul>li:last-child a {
	border-bottom: none;
}

.widget_nav_menu ul li:last-child a {
	border-bottom: 0;
}

.mh-widget-title+ul {
	margin-top: -15px;
	margin-bottom: -15px;
}

.widget.widget_tag_cloud {
	margin-bottom: 28 px;
}

.widget_archive ul li, .widget_categories ul li {
	min-height: 48px;
	text-align: right;
	padding-top: 15px;
}

.widget_archive ul li a, .widget_categories ul li a {
	position: absolute;
	left: 0;
	top: 0;
	text-align: left;
}

.widget_archive .children, .widget_categories .children {
	margin-top: 16px;
}

.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;
}

#today, .calendar_wrap table tbody a:hover {
	background: #29aae3;
	color: #fff;
}

tbody tr {
	text-align: center;
	font-size: 13px;
}

tfoot {
	border-top: 1px solid #c3c3c5;
	padding-top: 10px;
}

#next, #prev {
	line-height: 36px;
	padding: 0;
}

tfoot a {
	font-size: 13px;
	font-weight: 400;
}

#prev {
	text-align: left;
}

#next a, #prev a {
	-webkit-transition: 0s;
	-moz-transition: 0s;
	-ms-transition: 0s;
	-o-transition: 0s;
	transition: 0s;
}

#next a:hover, #prev a:hover {
	color: #29aae3;
}

#next {
	text-align: right;
}

#today {
	font-weight: 400;
}

.recentcomments a:hover, .rsswidget:hover {
	color: #29aae3;
}

@media (max-width:991px) {
	.calendar_wrap {
		padding: 0 15px;
		max-width: 500px;
		margin: 0 auto;
	}
}

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

.recentcomments {
	padding: 12px 0 11px;
	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;
}

.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 .mdl-button {
	margin-bottom: 0;
}

.widget-infobox img[src=""] {
	display: none;
}

.widget-infobox__image-wrapper {
	max-width: 400px;
	margin: 0 auto;
	position: relative;
	display: block;
}

.widget-infobox__image-wrapper:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	opacity: 0;
	width: 100%;
	background: #000;
	-webkit-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-moz-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-ms-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	-o-transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
	transition: opacity .3s cubic-bezier(.4, 0, .2, 1);
}

.widget-infobox__image {
	max-width: 100%;
	display: block;
	margin: 0 auto 12px;
}

.widget-infobox__text {
	margin-bottom: 24px;
	font-style: italic;
}

.widget_rss {
	overflow: hidden;
}

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

.widget_rss ul li {
	margin: 0;
	border-bottom: 1px solid #f0f0f0;
	padding: 16px 0;
}

.widget_rss ul li:after {
	clear: both;
	content: "";
	display: table;
}

.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;
}

.widget_search {
	margin-right: 50px;
}

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

.widget_search input.search-field {
	text-align: left !important;
	border-right: 0 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;
}

.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) {
	.widget-infobox__image-wrapper:hover:after {
		opacity: .3;
	}
	
	.mh-widget-twitter .tweet a:hover {
		text-decoration: underline;
	}
}

.mh-widget-twitter .tweet:before {
	content: url("https://cdn-ilcdbhp.nitrocdn.com/NhcFkQsIkCKaaVpYqDVQCAvYXJivIbEu/assets/images/optimized/rev-e76cc99/douglasemmettapartments.com/wp-content/themes/myhome/assets/images/twitter.png");
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
}

img.wpml-ls-flag {
	position: relative;
}

.wpml-ls-menu-item .mega_dropdown {
	min-width: initial !important;
	width: auto !important;
}

.mh-panel-wpml-languages {
	background: #f9f9f9;
	padding: 0;
	margin-bottom: 12px;
	font-size: 13px;
}

.mh-panel-wpml-languages>div {
	padding: 12px 18px;
	text-transform: uppercase;
	cursor: pointer;
	display: inline-block;
}

.mh-panel-wpml-languages>div.active {
	color: #29aae3;
}

.mh-panel-wpml-languages>div:not(.active):hover {
	background: #f0f0f0;
}

.mh-menu-language-switcher-wrapper {
	display: inline-block;
	float: left;
}

.mh-wpml-top-bar__item {
	display: inline-block;
	padding: 0;
	width: 28px;
	margin-top: -2px;
	float: left;
}

.mh-search__panel input, .myhome-contact-form input {
	min-height: 46px;
}

.mh-popup-login-field--login input[type=text] {
	margin-bottom: 9px;
}

.mh-panel-social-buttons-heading {
	font-size: 16px !important;
	margin-top: 12px !important;
	margin-bottom: 12px !important;
	width: 100% !important;
	float: left !important;
}

.mh-popup-login-field--password {
	margin-bottom: 6px;
}

.mh-popup-login__info {
	padding: 12px 24px 0;
	width: 100%;
	font-weight: 700;
	font-size: 21px;
	text-align: center;
}

.mh-popup-login__login-solo-heading {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 12px;
	margin-top: -6px;
}

.mh-popup-window-new {
	padding: 24px;
	text-align: center;
}

.mh-popup-top-info {
	padding: 0 24px 24px;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, .9);
}

.mh-popup-top-info i {
	margin: -24px auto 0;
	left: 0;
	right: 0;
	font-size: 24px;
	color: #29aae3;
	position: absolute;
	top: 50%;
}

.mh-popup-top-msg-error {
	margin: -6px 0 12px;
	color: red;
}

.mh-popup-login__no-registered-user {
	font-size: 21px;
	margin-bottom: 12px;
}

.mh-popup-login {
	display: table-cell !important;
	vertical-align: middle;
	margin: 0 auto;
	z-index: 1000001;
	position: relative;
}

.mh-popup-login__inner:after, .mh-popup-login__inner__body:after {
	display: table;
	content: "";
	clear: both;
}

.mh-popup-login input, .mh-popup-login select {
	text-align: left !important;
	font-style: normal !important;
	border: 1px solid #ddd !important;
	background: #fff !important;
	padding: 4px 12px !important;
}

@media (min-width:768px) {
	.mh-popup-login {
		margin-left: auto !important;
		margin-right: auto !important;
	}
}

@media (max-width:767px) {
	.mh-popup-login {
		margin-top: 0 !important;
	}
}

.mh-popup-login .bootstrap-select button {
	height: 34px;
	line-height: 20px;
	padding: 6px 14px 6px 10px !important;
	text-transform: none;
	text-align: left !important;
	border: 1px solid #ddd !important;
}

.mh-popup-login .bootstrap-select button .filter-option {
	font-style: normal !important;
	text-align: left !important;
}

.mh-popup-login__inner__body {
	padding: 24px 18px 12px;
	background: #fff;
	width: 100%;
	float: left;
}

.mh-popup-login__inner__body h5 {
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 700;
	text-align: left;
	text-transform: uppercase;
	position: relative;
}

.mh-popup-login__inner__body h3 {
	text-align: left;
	margin-top: 0;
	float: left;
	width: 100%;
	font-size: 14px;
	margin-bottom: 12px;
}

.mh-popup-login__inner__body--reset {
	padding-top: 12px;
}

.mh-popup-login__inner {
	position: relative;
	z-index: 99999999999;
	margin-bottom: 24px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
	background: #fff;
	border-radius: 2px;
	box-shadow: 0 11px 15px -7px rgba(0, 0, 0, .2), 0 24px 38px 3px rgba(0, 0, 0, .14), 0 9px 46px 8px rgba(0, 0, 0, .12);
}

.mh-popup-login__exit {
	border: 0 solid transparent;
	position: absolute;
	background: 0 0;
	color: #fff;
	top: -36px;
	right: -8px;
	font-size: 36px;
}

.mh-popup-login__rest-password-link {
	float: right;
	width: 100%;
	display: block;
	text-align: right;
	margin-top: 6px;
	color: #444;
	font-size: 13px;
}

.mh-popup-login__rest-password-link i {
	font-size: 16px;
}

.mh-popup-login__rest-password-link:hover {
	color: #222;
}

.tabs {
	border-bottom: 5px solid #29aae3;
	background-color: #fff;
	float: left;
	width: 100%;
}

.mh-popup-login .mh-popup-login__tab-button {
	width: 50%;
	float: left;
	margin-bottom: 0;
	line-height: 60px;
	font-weight: 700;
	text-transform: uppercase;
	border: none;
	font-size: 16px !important;
	text-align: center;
	background: 0 0;
}

.mh-popup-login .mh-popup-login__tab-button.active {
	background: #29aae3;
	color: #fff !important;
}

.mdl-button--popup-login, .mdl-button--popup-register {
	width: 100%;
	margin-bottom: 6px;
	font-weight: 700;
}

.mdl-button--popup-register {
	margin-top: 10px;
}

.mh-popup-login__select-role {
	margin-bottom: 12px;
}

.mh-popup-login__select-role.open {
	z-index: 1000000000000000000 !important;
}

.login-pop-up-reset-button {
	background: 0 0;
	border: none;
	float: right;
	font-size: 14px;
	padding-right: 0 !important;
}

.login-pop-up-reset__reset {
	margin-left: 12px;
}

.mh-popup-login__reset-password-heading {
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.mh-popup-login__reset-error {
	color: red;
	margin-top: -6px;
	margin-bottom: 18px;
}

.mh-register-field__terms .mh-register-field__terms__text a, .mh-register-terms .mh-register-terms__text a {
	text-decoration: underline;
	color: #29aae3;
}

.mh-popup-login__reset-input {
	margin-bottom: 24px;
}

.mh-popup-login__reset-info {
	margin-bottom: 12px;
}

@media (min-width:768px) {
	.mh-register-fields {
		margin: 0 -6px;
	}
}

.mh-register-field__terms {
	position: relative;
	margin-bottom: 6px;
	margin-top: -6px;
}

.mh-register-field__terms .mh-register-field__terms__box {
	position: absolute;
	top: 2px;
	left: 8px;
}

.mh-register-field__terms .mh-register-field__terms__text {
	padding-left: 20px;
}

@media (min-width:768px) {
	.mh-register-field {
		width: 100%;
		float: left;
		padding: 0 6px;
	}
	
	.mh-register-field input[type=email], .mh-register-field input[type=password], .mh-register-field input[type=text] {
		margin-bottom: 9px !important;
	}
}

.mh-register-field--account-type {
	width: 100%;
}

.mh-register-field--account-type .btn-group {
	margin-bottom: 18px !important;
}

.mh-register-login-field__label {
	font-weight: 700;
	margin-bottom: 3px;
	font-size: 14px;
}

.mh-register-field__password-mismatch {
	color: red;
	padding: 0 0 12px 6px;
}

.mh-account_overlay {
	position: fixed;
	overflow-y: scroll;
	padding-top: 0;
	padding-left: 12px;
	padding-right: 12px;
	width: 100vw;
	height: 100vh;
	transition: .5s cubic-bezier(.25, .8, .5, 1);
	z-index: 1000000;
	background-color: rgba(33, 33, 33, .5);
}

#myhome-account__inner {
	width: 100%;
	padding-top: 30px;
	display: table !important;
	height: 100vh;
	transition: .5s cubic-bezier(.25, .8, .5, 1);
	z-index: 1000000;
}

.mh-mdl-remove-button-shadow {
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.mh-popup-login__back-wrapper {
	width: 50%;
	float: left;
	padding-right: 6px;
}

.mh-popup-login__back-wrapper button {
	width: 100% !important;
	margin: 0;
}

.mh-popup-login__back-wrapper button i {
	margin-right: 12px;
	font-size: 14px;
}

.mh-popup-login__reset-wrapper {
	width: 50%;
	float: left;
	padding-left: 6px;
}

.mh-popup-login__reset-wrapper button {
	width: 100% !important;
	margin: 0;
}

.mh-save-search-window-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1000000;
}

.mh-save-search-window-wrapper input[type=text] {
	text-align: center !important;
}

@media (max-width:767px) {
	.mh-save-search-window-wrapper {
		position: fixed !important;
		top: 0 !important;
		left: 0 !important;
		width: 90% !important;
		height: 100vh !important;
		z-index: 1000000 !important;
		margin: 0 auto !important;
		right: 0 !important;
	}
}

.mh-save-search-window {
	display: block;
	transition: .5s cubic-bezier(.25, .8, .5, 1);
	z-index: 1000002;
}

.mh-save-search-window:after {
	position: fixed;
	background-color: #212121;
	bottom: 0;
	content: "";
	height: 100%;
	left: 0;
	opacity: .45;
	right: 0;
	top: 0;
	transition: inherit;
	transition-delay: .15s;
	width: 100%;
	z-index: 1000001;
}

.mh-save-search-window input {
	text-align: left !important;
	font-style: normal !important;
	border-color: #ddd !important;
	background: #fff !important;
}

.mh-save-search-window__inner {
	z-index: 1000003;
	max-width: 400px;
	border-radius: 2px;
	padding: 24px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: -83px auto 0;
}

.mh-save-search-window__exit {
	border: 0 solid transparent;
	position: absolute;
	cursor: pointer;
	background: 0 0;
	color: #fff;
	top: -40px;
	right: -2px;
	font-size: 36px;
}

.mh-search-field-required {
	color: red;
	margin-bottom: 12px;
	display: block;
}

.mh-save-search-window__label {
	font-size: 16px;
	display: block;
	margin-bottom: 12px;
	font-weight: 700;
	text-align: center;
}

.mh-save-search-window__label--success {
	margin-bottom: 0 !important;
	color: #4caf50;
}

.mh-edit-agents__list__element {
	padding: 12px;
	background: #f4f4f4;
	margin-bottom: 24px;
}

.mh-edit-agents__list__element i {
	cursor: pointer;
}

.mh-edit-agents__list__element .btn.primary {
	margin: 0;
}

.mh-edit-agents__no-agents {
	margin-bottom: 24px;
}

.mh-edit-agents__inv-code {
	display: inline-block;
	position: relative;
	top: 1px;
}

#myhome-panel-agents .btn.primary {
	margin: 0;
}

.mh-dashboard-info {
	background: #f0f0f0;
	padding: 0;
}

.mh-dashboard-info__inner {
	max-width: 1164px;
	margin: 0 auto;
	padding: 12px;
}

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

.mh-dashboard-info__properties span {
	display: block;
	float: left;
	width: 100%;
	margin-bottom: 6px;
}

@media (min-width:768px) {
	.mh-dashboard-info__properties {
		width: 66.66%;
		float: left;
		margin-bottom: 0;
		padding: 6px 0;
	}
	
	.mh-dashboard-info__properties>span {
		width: 50%;
		float: left;
	}
	
	.mh-dashboard-info__package {
		text-align: right;
		width: 33.33%;
		float: left;
		padding: 0;
	}
}

.mh-dashboard-info__package .btn {
	width: 100%;
	margin: 0 !important;
}

.mh-edit-profile {
	padding: 24px;
	background: #fff;
}

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

.mh-edit-profile .btn {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.mh-edit-profile__password {
	padding: 12px;
	width: 100%;
	float: left;
}

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

.mh-edit-profile__image-wrapper {
	position: relative;
}

.mh-edit-profile__image-trash {
	position: absolute !important;
	top: 6px;
	background: #fff !important;
	right: 6px;
}

.mh-edit-profile__password__inner {
	background: #f4f4f4;
	padding: 12px 24px 24px;
}

.mh-edit-profile__password__heading {
	margin-top: 12px;
	margin-bottom: 12px;
}

.mh-edit-profile__inner {
	margin: 0 -12px;
}

.mh-edit-profile__info {
	padding: 0 12px;
	float: left;
	width: 100%;
}

@media (min-width:768px) {
	.mh-edit-profile__info {
		width: 50%;
	}
}

.mh-edit-profile__join-agency {
	padding: 24px;
	background: #f4f4f4;
	margin-top: 24px;
}

.mh-edit-agents {
	background: #fff;
	padding: 24px;
}

.mh-edit-profile__additional-info-heading {
	margin-top: 24px !important;
	margin-bottom: 12px !important;
}

.mh-edit-profile__join-agency__heading {
	margin-top: 12px !important;
	margin-bottom: 12px !important;
}

.mh-app__sidebar-nav__avatar-placeholder {
	width: 40px;
	height: 40px;
	cursor: pointer;
	border-radius: 50%;
	display: block;
	background: #fff;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.mh-field-map .checkbox .input-group__details, .mh-table-my-favorite td:nth-child(1), .mh-table-my-favorite thead>tr>th:nth-child(1) {
	display: none;
}

.mh-app__sidebar-nav__avatar-placeholder i {
	color: #222;
	position: absolute;
	top: 12px;
	left: 0;
	right: 0;
	-webkit-transition: .2s ease-in-out;
	-moz-transition: .2s ease-in-out;
	-ms-transition: .2s ease-in-out;
	-o-transition: .2s ease-in-out;
	transition: .2s ease-in-out;
}

.mh-app__sidebar-nav__avatar-placeholder:hover {
	background: #29aae3;
}

.mh-app__sidebar-nav__avatar-placeholder:hover i {
	color: #fff;
}

.mh-edit-profile__invitations h2 {
	margin-top: 24px;
}

.mh-edit-profile__invitations i {
	cursor: pointer;
}

.mh-edit-profile__invitations__content {
	margin-bottom: 12px;
	background: #fff;
	padding: 12px 88px 12px 12px;
	position: relative;
}

.mh-edit-profile__invitations__icons {
	position: absolute;
	top: 11px;
	right: 0;
}

.mh-edit-profile__invitations__icons i {
	margin-right: 12px;
}

.mh-profile-progress-bar {
	margin: 36px 0 !important;
}

.mh-edit-profile__has-agency-wrapper {
	margin: 24px 0;
}

.mh-edit-profile__has-agency__inner {
	position: relative;
	background: #f4f4f4;
	padding: 12px 40px 12px 12px;
}

.mh-edit-profile__has-agency__inner i {
	cursor: pointer;
	position: absolute;
	top: 12px;
	right: 12px;
}

.mh-submit-property__step-content {
	margin: 0 auto;
	max-width: 767px;
}

.mh-submit-property-progress-linear {
	max-width: 1024px !important;
	margin: 60px auto !important;
}

.mh-submit-property__main-heading {
	margin: 0 12px 12px !important;
	font-size: 28px !important;
	font-weight: 400 !important;
}

@media (min-width:768px) {
	.mh-submit-property__step-content {
		padding: 24px;
	}
	
	.mh-submit-property__main-heading {
		margin: 24px 12px 36px !important;
		text-align: center !important;
	}
	
	.mh-table-my-favorite {
		padding: 0;
	}
}

.mh-submit-property-loader-bottom {
	margin: -24px 12px 0 !important;
	top: 36px !important;
}

.mh-table-my-favorite table {
	margin-bottom: 0;
}

.mh-table-my-favorite tr {
	background: #fff !important;
}

.mh-table-my-favorite td {
	padding-top: 12px !important;
	padding-bottom: 12px !important;
}

@media (min-width:768px) {
	.mh-table-my-favorite td:nth-child(1), .mh-table-my-favorite thead>tr>th:nth-child(1) {
		display: table-cell !important;
		min-width: 120px !important;
		width: 120px !important;
		max-width: 120px !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.mh-table-my-favorite td:nth-child(1) img, .mh-table-my-favorite thead>tr>th:nth-child(1) img {
		width: 120px;
		height: auto;
	}
}

.mh-table-my-favorite td:nth-child(2), .mh-table-my-favorite thead>tr>th:nth-child(2) {
	word-break: break-all;
}

.mh-table-my-favorite td:nth-child(3), .mh-table-my-favorite thead>tr>th:nth-child(3) {
	min-width: 60px !important;
	width: 60px !important;
	max-width: 60px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	text-align: right !important;
}

.mh-table-my-favorite td:nth-child(3) i, .mh-table-my-favorite thead>tr>th:nth-child(3) i {
	cursor: pointer;
	font-size: 16px;
	color: #222;
}

.mh-table-my-favorite td:nth-child(3) i:first-child, .mh-table-my-favorite thead>tr>th:nth-child(3) i:first-child {
	margin-right: 6px;
}

#myhome-panel-favorite .progress-linear {
	margin: 24px 0;
	float: left;
}

.mh-field, .mh-field h3, .mh-field__instruction {
	margin-bottom: 12px;
}

.mh-field {
	float: left;
	width: 100%;
}

.mh-field>div {
	padding-left: 12px;
	padding-right: 12px;
}

.mh-field__instruction {
	margin-top: 0;
	color: #a5a5a5;
}

@media (min-width:768px) {
	.mh-field--1of2 {
		width: 50%;
	}
	
	.mh-field--1of2>div {
		padding-left: 12px;
		padding-right: 12px;
	}
	
	.mh-field--1of3 {
		width: 33.33%;
	}
	
	.mh-field--1of3>div {
		padding-left: 12px;
		padding-right: 12px;
	}
	
	.mh-field__instruction {
		margin-top: -18px;
	}
}

.mh-field__error {
	color: #ff5252 !important;
	margin: 0 0 12px;
	font-size: 16px;
	border-radius: 3px;
	border: 1px solid #ff5252;
	padding: 9px 12px;
	background: rgba(255, 201, 201, .3);
}

.mh-field-additional-features, .mh-field-additional-features h3 {
	margin-bottom: 12px;
}

.mh-field-additional-features:after {
	clear: both;
	content: "";
	display: table;
}

.mh-field-additional-features__content {
	background: #fff;
	border-radius: 4px;
	margin: 0;
}

.mh-field-additional-features__content .mh-grid {
	margin-left: -12px;
	margin-right: -12px;
}

.mh-field-additional-features__content .mh-grid .mh-grid__1of2 {
	min-height: 70px;
}

.mh-field-additional-features__content .mh-grid .mh-grid__1of2:last-of-type .mh-field-additional-features__add-new-heading {
	display: none !important;
}

.mh-field-additional-features__content .mh-grid__1of2:first-child {
	padding: 12px 12px 18px;
}

.mh-field-additional-features__content .mh-grid__1of2:last-child {
	padding: 12px 12px 3px;
}

.mh-field-additional-features__add-new-heading {
	margin-top: 6px;
	margin-bottom: 12px;
	font-weight: 700;
	text-align: left;
}

.mh-field-additional-features__add-btn {
	margin: 0 !important;
}

.mh-field-additional-features__added:after {
	clear: both;
	content: "";
	display: table;
}

.mh-field-additional-features__added__row {
	padding: 12px 50px 12px 12px;
	width: 100%;
	background: #f4f4f4;
	margin-bottom: 12px;
	float: left;
	position: relative;
}

.mh-app__sidebar-nav, .mh-app__sidebar-nav .navigation-drawer, .mh-field-attachment .list, .mh-field-attachment .list__tile {
	padding: 0 !important;
}

.mh-field-additional-features__added__row i {
	position: absolute;
	top: 12px;
	right: 12px;
	cursor: pointer;
}

body[class*=mh-panel-body__dashboard-properties-] .mh-field-additional-features__content {
	background: #f4f4f4 !important;
}

body[class*=mh-panel-body__dashboard-properties-] .mh-field-additional-features__content .mh-field-additional-features__added>div {
	background: #fff !important;
}

.mh-field-attachment {
	margin-bottom: 12px;
}

.mh-field-attachment__content {
	overflow: hidden;
	border-radius: 4px;
	min-height: 64px;
	background: #fff;
	margin-bottom: 24px;
}

.mh-field-attachment__add {
	margin: 0 !important;
}

.mh-field-attachment__delete {
	top: 0 !important;
	left: -12px !important;
	color: #222 !important;
	background: #fff !important;
}

.mh-field-attachment__row {
	background: #fff;
	padding: 12px 12px 0;
}

.mh-field-featured-checkbox {
	margin-left: -3px !important;
}

.mh-field-featured-checkbox .input-group__details {
	display: none !important;
}

.mh-field-featured-checkbox label {
	margin-left: -3px !important;
	margin-top: -3px !important;
}

.mh-field-featured-checkbox .input-group--selection-controls__ripple {
	margin-top: -3px;
}

.mh-field-featured-image {
	margin-bottom: 12px;
}

.mh-field-featured-image:after {
	clear: both;
	content: "";
	display: table;
}

.mh-field-featured-image .mh-field-gallery__single {
	padding: 0;
}

.mh-field-featured-image .mh-field-gallery__single>div {
	padding: 0;
	width: 100%;
	min-height: 40px;
	background: #fff !important;
	margin-bottom: 0;
}

.mh-field-featured-image .progress-circular {
	margin-top: 9px;
}

.mh-field-featured-image__content {
	width: 100%;
	background: #fff;
	border-radius: 4px;
	float: left;
	margin: 0 0 24px;
	padding: 12px;
	min-height: 64px;
}

.mh-field-featured-image__content .mh-field-gallery__single {
	width: 100%;
	margin-bottom: 0;
}

@media (min-width:768px) {
	.mh-field-additional-features__content .mh-grid__1of2:first-child {
		border-right: 1px solid #f4f4f4;
	}
	
	.mh-field-additional-features__content .mh-grid__1of2:last-child {
		border-left: 1px solid #f4f4f4;
	}
	
	.mh-field-additional-features__add-new-heading {
		text-align: left;
		text-align: center;
	}
	
	body[class*=mh-panel-body__dashboard-properties-] .mh-field-additional-features__content .mh-grid__1of2:first-child, body[class*=mh-panel-body__dashboard-properties-] .mh-field-additional-features__content .mh-grid__1of2:last-child {
		border-color: #fff !important;
	}
	
	.mh-field-featured-image .mh-field-gallery__single>div {
		max-width: 400px;
		height: 250px;
	}
	
	.mh-field-featured-image__content {
		max-width: 424px;
	}
}

.mh-field-featured-image__upload {
	margin: 0 !important;
}

.mh-field-featured-image__single {
	overflow: hidden;
	padding-bottom: 62.5%;
}

.mh-field-featured-image__single>div {
	background: #f4f4f4;
	padding: 12px;
	position: relative;
	height: 150px;
}

.mh-field-featured-image__single>div img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.mh-field-featured-image__remove {
	position: absolute;
	top: 0;
	right: 0;
}

.mh-field-featured-image__remove button {
	background: #fff;
	border-radius: 50%;
	box-shadow: none;
}

.mh-field-featured-image__label {
	text-align: center;
	font-weight: 700;
}

.mh-field-featured-image__single {
	position: relative;
	display: inline-block;
	margin-bottom: 12px;
}

.mh-panel__upload-gallery__remove {
	text-align: right;
}

.mh-panel__upload-gallery__remove button {
	background: #fff;
}

.mh-panel__upload-gallery__icon-placeholder i {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: -50px auto 0;
	font-size: 100px;
	color: #f4f4f4;
	display: block;
	text-align: center;
	height: 100px;
}

.mh-field-gallery {
	margin-bottom: 12px;
}

.mh-field-gallery__images-wrapper {
	overflow: initial;
	background: #fff;
	padding: 6px 3px 0;
	float: left;
	border-radius: 4px;
	margin: 0 0 24px;
	min-height: 64px;
	width: 100%;
}

@media (min-width:768px) {
	.mh-field-gallery__images-wrapper {
		padding: 12px 6px 0;
	}
}

.mh-field-gallery__single {
	position: relative;
	overflow: hidden;
	float: left;
	width: 50%;
	padding-left: 3px;
	padding-right: 3px;
	margin-bottom: 6px;
}

@media (min-width:767px) {
	.mh-field-gallery__single {
		padding-left: 6px;
		padding-right: 6px;
		width: 33.33%;
		margin-bottom: 12px;
	}
}

.mh-field-gallery__single>div {
	overflow: hidden;
	background: #f4f4f4;
	max-width: 400px;
	padding-bottom: 62.5%;
	position: relative;
	margin-bottom: 12px;
}

.mh-field-gallery__single>div img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.mh-field-gallery__single>div:last-child {
	margin-bottom: 0;
}

.mh-field-gallery__progress__inner {
	top: 50%;
	position: absolute;
	margin: -27px auto 0;
	width: 100%;
	text-align: center;
	left: 0;
	right: 0;
	padding: 0 12px;
}

.mh-field-gallery__progress__text {
	text-align: center;
	font-weight: 700;
}

.mh-field-gallery__remove {
	position: absolute;
	top: 0;
	right: 0;
}

.mh-field-gallery__remove button {
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 3px 1px -2px rgba(0, 0, 0, .2), 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12);
}

.mh-field-gallery__upload {
	margin: 0 !important;
}

.mh-field-map {
	margin-bottom: 12px;
}

.mh-field-map .input-group {
	padding-top: 0 !important;
}

.mh-field-map .checkbox .input-group__input {
	margin-bottom: 6px;
	margin-top: 3px;
	margin-left: -2px !important;
}

.mh-field-map .mh-panel-submit__instruction {
	margin-top: -6px;
	margin-bottom: 6px;
}

.mh-field-map .input-group--selection-controls__ripple {
	margin-top: -3px;
}

.mh-field-map .input-group--text-field .input-group__details {
	min-height: 2px;
}

.mh-field-map .checkbox {
	margin-top: 6px;
}

.mh-field-map .checkbox label {
	margin-left: -6px;
}

.mh-field-map__location {
	height: 300px;
}

@media (min-width:768px) {
	.mh-field-map__location {
		height: 400px;
	}
}

#mh-field-location::placeholder {
	font-family: Roboto, sans-serif !important;
	color: rgba(0, 0, 0, .54) !important;
}

.mh-field-plans {
	margin-bottom: 12px;
}

.mh-field-plans .btn {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.mh-field-plans button.btn.btn--icon {
	background: #f4f4f4;
	margin-top: 12px;
}

.mh-field-plans .mh-panel-submit__plan-error {
	background: red;
	color: #fff;
	margin-bottom: 24px;
	padding: 12px;
}

.mh-field-plans__list {
	overflow: hidden;
	border-radius: 4px;
	min-height: 64px;
	background: #fff;
	margin-bottom: 24px;
	padding: 12px;
}

.mh-field-plans__list__row {
	display: flex;
}

.mh-field-plans__list__row:last-child {
	margin-bottom: -12px;
}

.mh-field-plans__list__image {
	width: 60px;
	padding-right: 12px;
}

.mh-field-plans__list__image img {
	border-radius: 50%;
	width: 48px;
	height: 48px;
	margin-top: 3px;
}

.mh-field-plans__list__image__icon {
	width: 48px;
	height: 48px;
	line-height: 48px;
	text-align: center;
	background: #29aae3;
	border-radius: 50%;
}

.mh-field-plans__list__image__icon i {
	color: #fff !important;
	font-size: 31px;
}

.mh-field-plans__list__text {
	flex-grow: 3;
}

.mh-field-plans__list__remove {
	margin-left: 12px;
	padding-top: 12px;
}

.mh-field-plans__list__remove i {
	padding: 8px;
	cursor: pointer;
	font-size: 27px;
}

.mh-app-wrapper {
	background: #fafafa;
	min-height: 200px;
}

.mh-app-wrapper h1, .mh-app-wrapper h2, .mh-app-wrapper h3, .mh-app-wrapper h4, .mh-app-wrapper h5 {
	display: block;
	width: 100%;
	font-family: Lato, Arial, Helvetica, sans-serif !important;
}

.mh-login-register-panel:after, .mh-popup-login-fields-login-captcha:after, .mh-popup-login-fields-register-captcha:after, .mh-submit-captcha-submit-property:after {
	display: table;
	content: "";
}

.mh-app-wrapper h1 {
	font-size: 36px;
}

.mh-app-wrapper h2 {
	font-size: 21px;
	font-weight: 400;
}

@media (min-width:768px) {
	.mh-app-wrapper h1, .mh-app-wrapper h2 {
		margin-bottom: 24px;
	}
}

.mh-app-wrapper h3 {
	margin-bottom: 12px;
	font-size: 21px;
}

.mh-app-wrapper a:not(.btn), .mh-app-wrapper a:not(.btn):active, .mh-app-wrapper a:not(.btn):focus, .mh-app-wrapper a:not(.btn):hover {
	color: #222;
}

.mh-app-wrapper .secondary {
	background-color: #666 !important;
	border-color: #666 !important;
}

.mh-app-wrapper .btn.btn--large .icon--left {
	margin-left: -10px;
}

.mh-app-wrapper .btn.btn--large .icon--right {
	margin-right: -10px;
}

.mh-app-wrapper .card {
	box-shadow: none;
}

.mh-app-wrapper .mh-card-big-title {
	font-size: 33px;
}

.mh-app-wrapper td, .mh-app-wrapper th {
	border: none;
}

.mh-app-wrapper .primary {
	background-color: #29aae3;
	border-color: #29aae3;
}

.mh-app-wrapper .list__tile__content .list__tile__title .list__tile__mask {
	background: #29aae3;
	color: #fff;
}

@media (max-width:767px) {
	.mh-app-wrapper button.secondary {
		width: 100%;
	}
	
	.mh-app-wrapper .btn.btn--depressed.secondary {
		min-height: 44px;
	}
}

.alert.alert {
	text-align: left !important;
}

.application--wrap {
	min-height: initial !important;
}

.mh-panel-app-spacing {
	padding: 12px 12px 24px;
}

@media (min-width:768px) {
	.mh-app-wrapper h3 {
		margin-bottom: 24px;
	}
	
	.mh-panel-app-spacing {
		padding: 36px 12px;
	}
	
	.mh-panel-submit__title {
		padding: 0 12px;
	}
}

.mh-panel-submit__title {
	margin: 0;
}

.mh-edit-property, .mh-favorite, .mh-page-properties, .mh-save-search {
	padding: 24px 24px 36px;
}

.mh-2-col-title h1 {
	margin-bottom: 0;
}

@media (min-width:768px) {
	.mh-2-col-title .mh-2-col-title__col {
		float: left;
		width: 50%;
		padding-right: 12px;
	}
	
	.mh-2-col-title .mh-2-col-title__col:last-child {
		padding-left: 12px;
		padding-right: 0;
	}
	
	.mh-2-col-title h1 {
		margin-bottom: 24px;
	}
}

.dialog {
	text-align: center;
	background: #fff;
	padding: 24px;
	max-width: 400px;
}

.overlay.overlay--active {
	z-index: 100000 !important;
}

.dialog__content.dialog__content__active {
	z-index: 100001 !important;
}

.application .theme--light.list, .theme--light .list {
	background: 0 0 !important;
}

.mh-login-register-panel {
	padding: 24px 18px 12px;
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
	background: #fff;
}

.mh-login-captcha, .mh-login-register-panel #mh-login-captcha {
	margin: 12px 0;
}

.mh-login-register-panel:after {
	clear: both;
}

#mh-login-captcha {
	height: 78px;
}

.mh-register-captcha {
	margin: 6px 0 18px;
}

.mh-register-terms {
	position: relative;
	margin-bottom: 18px;
}

.mh-register-terms .mh-register-terms__box {
	position: absolute;
	top: 1px;
	left: 0;
}

.mh-register-terms .mh-register-terms__text {
	padding-left: 30px;
}

.mh-submit-captcha-submit-property {
	width: 100%;
	float: left;
}

.mh-submit-captcha-submit-property:after {
	clear: both;
}

.mh-submit-captcha-submit-property #mh-submit-captcha {
	width: 100%;
	float: right;
	margin: 0 12px 12px;
}

.mh-submit-captcha-submit-property #mh-submit-captcha>div {
	float: right;
}

.mh-popup-login-fields-login-captcha:after {
	clear: both;
}

.mh-popup-login-fields-register-captcha {
	float: left;
	width: 100%;
	margin: 6px 0 12px;
}

.mh-popup-login-fields-register-captcha:after {
	clear: both;
}

.mh-popup-login #mh-login-captcha {
	margin-bottom: 18px;
	margin-top: 12px;
}

.mh-login-register-panel__heading {
	color: #222;
	margin-bottom: 12px;
}

.mh-login-register-panel__heading h3 {
	margin-bottom: 0 !important;
	line-height: 1 !important;
}

.mh-panel-login-buttons .mh-panel-login-buttons__remember .checkbox>label {
	top: -4px;
	margin-left: 8px;
}

.mh-panel-login-buttons .mh-panel-login-buttons__remember .input-group__details {
	display: none;
}

@media (min-width:768px) {
	.mh-panel-login-buttons .mh-panel-login-buttons__remember .checkbox>label {
		top: -1px;
	}
	
	.mh-panel-login-buttons .mh-panel-login-buttons__remember {
		width: 40%;
		float: left;
	}
	
	.mh-panel-login-buttons .mh-panel-login-buttons__remember>div {
		margin-top: 19px;
	}
	
	.mh-panel-login-buttons .mh-panel-login-buttons__remember label {
		font-size: 13px !important;
		margin-top: -3px !important;
	}
}

.mh-panel-login-buttons .mh-panel-login-buttons__right {
	width: 100%;
	margin-top: 12px;
	float: left;
	text-align: right;
}

.mh-panel-login-buttons .mh-panel-login-buttons__right:after {
	clear: both;
	content: "";
	display: table;
}

.mh-panel-login-buttons .mh-panel-login-buttons__right div {
	display: inline-block;
	float: left;
	line-height: 36px;
	width: 100%;
}

@media (min-width:768px) {
	.mh-panel-login-buttons .mh-panel-login-buttons__right div {
		width: auto;
		float: right;
	}
	
	.mh-panel-login-buttons .mh-panel-login-buttons__right {
		width: 60%;
	}
}

.mh-panel-login-buttons .mh-panel-login-buttons__register button {
	width: 100%;
	background: #f4f4f4 !important;
	margin: 12px 0 0;
}

@media (min-width:768px) {
	.mh-panel-login-buttons .mh-panel-login-buttons__register button {
		margin: 0;
		width: auto;
		float: right;
	}
}

.mh-panel-login-buttons .mh-panel-login-buttons__login button {
	width: 100%;
}

@media (min-width:768px) {
	.mh-panel-login-buttons .mh-panel-login-buttons__login button {
		width: auto;
		margin-right: 0;
		margin-left: 6px !important;
	}
	
	.mh-panel-login-buttons .mh-panel-login-buttons__login .primary {
		position: relative;
		top: -2px;
	}
}

.mh-panel-login-buttons .mh-panel-login-buttons__login .primary {
	margin: 0;
}

.mh-panel-register-buttons {
	text-align: right;
}

.mh-panel-register-buttons .btn:last-child {
	margin-right: 0;
}

.mh-panel-register-buttons .btn.btn--flat {
	width: 100%;
}

@media (min-width:768px) {
	.mh-panel-register-buttons .btn.btn--flat {
		display: inline-block;
		width: auto;
	}
}

.mh-panel-register-buttons .primary {
	width: 100%;
	margin: 0 0 12px;
}

@media (min-width:768px) {
	.mh-panel-register-buttons .primary {
		width: auto;
	}
}

.mh-panel-register-buttons__back {
	width: 50%;
	padding-right: 6px;
	float: left;
}

.mh-panel-register-buttons__back button {
	width: 100% !important;
	margin: 0;
	background: #f4f4f4 !important;
}

.mh-panel-register-buttons__back button i {
	margin-right: 6px;
}

.mh-panel-register-buttons__register {
	width: 50%;
	padding-left: 6px;
	float: left;
}

.mh-panel-register-buttons__register button {
	width: 100% !important;
}

.mh-panel-login-buttons {
	float: left;
	width: 100%;
	margin-bottom: 12px;
}

.mdl-button--popup-register[disabled=disabled], .mh-popup-login__inner__body .mdl-button--popup-login[disabled=disabled] {
	color: #f4f4f4 !important;
	background: #ccc !important;
	opacity: 1 !important;
}

.mdl-button--popup-register[disabled=disabled]:before, .mh-popup-login__inner__body .mdl-button--popup-login[disabled=disabled]:before {
	opacity: 0 !important;
}

.mh-panel-login-social-buttons:after {
	clear: both;
	content: "";
	display: table;
}

.mh-panel-login-social-buttons .mh-panel-login-social-buttons__all-buttons {
	margin: 0 -6px;
}

.mh-panel-login-social-buttons .mh-panel-login-social-buttons__all-buttons>div {
	width: 100%;
	float: left;
	padding: 0 6px;
}

@media (min-width:768px) {
	.mh-panel-login-social-buttons .mh-panel-login-social-buttons__all-buttons>div {
		width: 50%;
	}
}

.mh-panel-login-social-buttons .mh-panel-login-social-buttons__all-buttons>div button {
	font-size: 11px !important;
	margin: 0 0 6px !important;
	width: 100%;
	height: 36px !important;
	position: relative;
}

.mh-panel-login-social-buttons .mh-panel-login-social-buttons__all-buttons>div button:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(255, 255, 255, .1);
	z-index: 100000000000000000;
}

.mh-panel-login-social-buttons .mh-panel-login-social-buttons__all-buttons>div button:hover:after {
	opacity: 1;
}

.mh-panel-login-social-buttons button {
	color: #fff !important;
	overflow: hidden;
	text-align: left !important;
	border-radius: 2px !important;
	border: 0 solid transparent;
	text-transform: uppercase;
}

.mh-panel-login-social-buttons button:before {
	font-family: "Font Awesome 5 Brands" !important;
	font-weight: 400;
	font-style: normal;
	background: rgba(0, 0, 0, .2);
	display: inline-block;
	text-decoration: inherit;
	position: absolute;
	left: 0;
	top: 0;
	line-height: 36px;
	height: 36px;
	font-size: 16px;
	padding: 0 10px;
}

.mh-panel-login-social-buttons .btn__content {
	display: block !important;
	text-align: left !important;
	line-height: 36px;
	padding-left: 44px !important;
}

.mh-panel-login-social-buttons button[data-name=facebook] {
	background: #3b5998 !important;
}

.mh-panel-login-social-buttons button[data-name=facebook]:before {
	content: "";
}

.mh-panel-login-social-buttons button[data-name=twitter] {
	background: #55acee !important;
}

.mh-panel-login-social-buttons button[data-name=twitter]:before {
	content: "";
}

.mh-panel-login-social-buttons button[data-name=linkedin] {
	background: #007bb6 !important;
}

.mh-panel-login-social-buttons button[data-name=linkedin]:before {
	content: "";
}

.mh-panel-login-social-buttons button[data-name=instagram] {
	background: #e4405f !important;
}

.mh-panel-login-social-buttons button[data-name=instagram]:before {
	content: "";
}

.mh-panel-login-social-buttons button[data-name=google] {
	background: #dd4b39 !important;
}

.mh-panel-login-social-buttons button[data-name=google]:before {
	content: "";
}

.mh-panel-login-social-buttons button[data-name=yahoo] {
	background: #410093 !important;
}

.mh-panel-login-social-buttons button[data-name=yahoo]:before {
	content: "";
}

.mh-panel-login-social-buttons__heading {
	width: 100%;
	margin-bottom: 6px;
	margin-top: 12px;
}

.mh-app__sidebar-nav {
	transform: none !important;
	margin-bottom: 24px;
	height: initial !important;
	width: initial !important;
}

.mh-app__sidebar-nav .toolbar__content {
	border-bottom: 2px solid #fff;
	height: 80px !important;
	background: #eee !important;
}

.mh-app__sidebar-nav .active .list__tile, .mh-app__sidebar-nav .list__tile--link:hover {
	background: #eee !important;
}

.mh-app__sidebar-nav .list__tile__title {
	margin-top: 3px;
	margin-left: 3px;
	font-weight: 400;
}

.mh-app-wrapper .stepper__step__step, .mh-app__sidebar-nav .avatar+.list__tile__title {
	font-weight: 700;
}

.mh-app__sidebar-nav .list .list__tile.list__tile--link {
	height: 48px;
}

.mh-app__sidebar-nav .list--dense {
	padding-bottom: 0;
}

.mh-app__sidebar-nav .list__tile__action {
	width: 40px;
}

.mh-app__sidebar-nav .avatar, .mh-app__sidebar-nav .avatar img {
	min-height: 40px !important;
	min-width: 40px !important;
	height: 40px !important;
	width: 40px !important;
}

.mh-app__sidebar-nav .avatar {
	background: #fff;
	display: inline-block;
	margin-right: 12px;
}

.mh-app__sidebar-nav .navigation-drawer__border {
	display: none;
}

@media (min-width:768px) {
	.mh-table-my-properties {
		padding: 0;
	}
	
	.mh-table-my-properties table {
		margin-bottom: 0;
	}
	
	.mh-table-my-properties tr {
		background: #fff !important;
	}
	
	.mh-table-my-properties td {
		padding-top: 12px !important;
		padding-bottom: 12px !important;
	}
	
	.mh-table-my-properties .mh-table-my-properties__id, .mh-table-my-properties .mh-table-my-properties__td-id {
		text-align: left !important;
		padding: 0 !important;
		min-width: 48px !important;
		width: 48px !important;
		max-width: 48px !important;
	}
	
	.mh-table-my-properties .mh-table-my-properties__image, .mh-table-my-properties .mh-table-my-properties__td-image {
		min-width: 120px !important;
		width: 120px !important;
		max-width: 120px !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.mh-table-my-properties .mh-table-my-properties__image img, .mh-table-my-properties .mh-table-my-properties__td-image img {
		width: 120px;
		height: auto;
	}
	
	.mh-table-my-properties .mh-table-my-properties__actions, .mh-table-my-properties .mh-table-my-properties__td-action {
		min-width: 60px !important;
		width: 60px !important;
		max-width: 60px !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
		text-align: right !important;
	}
	
	.mh-table-my-properties .mh-table-my-properties__actions i, .mh-table-my-properties .mh-table-my-properties__td-action i {
		cursor: pointer;
		font-size: 16px;
		color: #222;
	}
	
	.mh-table-my-properties .mh-table-my-properties__actions i:first-child, .mh-table-my-properties .mh-table-my-properties__td-action i:first-child {
		margin-right: 6px;
	}
}

.mh-table-my-properties__td-mod-buttons {
	padding-right: 0 !important;
}

.mh-table-my-properties__td-mod-buttons__button {
	background: #f4f4f4;
	margin: 6px 12px 6px 0;
	float: left;
	width: 100%;
	cursor: pointer;
	display: block;
	text-align: left;
	overflow: hidden;
	border-radius: 2px !important;
	font-size: 13px !important;
	color: #4d4d4d !important;
	padding: 3px 6px 3px 38px;
	position: relative;
	z-index: 3;
}

@media (min-width:768px) {
	.mh-table-my-properties__td-mod-buttons__button {
		margin: 0 0 6px;
	}
}

.mh-table-my-properties__td-mod-buttons__button:before {
	background: #cacaca;
	width: 30px;
	z-index: 4;
	height: 100%;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
}

.mh-table-my-properties__td-mod-buttons__button i {
	z-index: 5;
	font-size: 19px;
	line-height: 9px;
	margin-right: 3px;
	position: absolute;
	top: 8px;
	left: 5px;
}

.mh-table-my-properties__td-mod-buttons__button:hover {
	color: #000 !important;
}

.mh-panel-body__dashboard-moderation .mh-table-my-properties thead>tr>th {
	padding-right: 0 !important;
}

.mh-modal-delete-property-dialog {
	text-align: center;
}

.mh-modal-delete-property-dialog div {
	width: 100%;
}

.mh-panel-body__dashboard-trash .mh-table-my-properties th:last-child, .mh-table-my-properties__td-restore-delete {
	text-align: right !important;
	padding-right: 0 !important;
}

.mh-panel-body__dashboard-trash .mh-table-my-properties th:last-child button, .mh-table-my-properties__td-restore-delete button {
	margin-right: 0 !important;
}

.mh-panel-body__dashboard-moderation th:last-of-type, .mh-panel-body__dashboard-trash th:last-of-type, .mh-table-my-properties__td-mod-buttons, .mh-table-my-properties__td-restore-delete {
	text-align: center !important;
	max-width: 150px !important;
	min-width: 150px !important;
	width: 150px !important;
}

.mh-my-search-table table {
	margin-bottom: 0 !important;
	word-break: break-word;
}

.mh-my-search-table tr {
	background: #fff !important;
}

@media (min-width:768px) {
	.mh-my-search-table {
		padding: 0;
	}
	
	.mh-my-search-table .mh-my-search-table__id, .mh-my-search-table thead>tr>th:nth-child(1) {
		min-width: 200px !important;
		width: 200px !important;
		max-width: 200px !important;
		text-align: left !important;
	}
	
	.mh-my-search-table .mh-my-search-table__id {
		padding: 12px 0 !important;
	}
	
	.mh-my-search-table thead>tr>th:nth-child(1) {
		padding: 0 !important;
	}
	
	.mh-my-search-table .mh-my-search-table__name, .mh-my-search-table thead>tr>th:nth-child(2) {
		padding: 12px 0 !important;
		min-width: 200px !important;
		width: 200px !important;
		max-width: 200px !important;
		text-align: left !important;
	}
}

.mh-my-search-table .mh-my-search-table__delete, .mh-my-search-table thead>tr>th:nth-child(3) {
	text-align: center !important;
}

@media (min-width:768px) {
	.mh-my-search-table .mh-my-search-table__delete, .mh-my-search-table thead>tr>th:nth-child(3) {
		min-width: 60px !important;
		width: 60px !important;
		max-width: 60px !important;
		text-align: right !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
	
	.mh-my-search-table .mh-my-search-table__delete i, .mh-my-search-table thead>tr>th:nth-child(3) i {
		cursor: pointer;
		font-size: 16px;
		color: #222;
	}
	
	.mh-my-search-table .mh-my-search-table__delete i:first-child, .mh-my-search-table thead>tr>th:nth-child(3) i:first-child {
		margin-right: 6px;
	}
}

#myhome-panel-searches .progress-linear {
	margin: 24px 0;
	float: left;
}

.mh-rest-password-link {
	float: right;
	width: 100%;
	display: block;
	text-align: right;
	margin-top: 12px;
	color: #444;
	font-size: 13px;
}

.mh-rest-password-link i {
	font-size: 16px;
}

.mh-rest-password-link:hover {
	color: #222;
}

.mh-app-wrapper .stepper__header {
	padding-top: 12px;
}

.mh-app-wrapper .mh-submit-property__step-content {
	padding: 0;
}

.mh-app-wrapper .stepper__label {
	width: 100% !important;
	text-align: center !important;
	display: none !important;
}

@media (min-width:768px) {
	.mh-app-wrapper .stepper__label {
		display: block !important;
	}
}

.mh-app-wrapper .stepper__content {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.mh-app-wrapper .stepper .stepper__label {
	text-shadow: none !important;
	font-size: 14px;
	color: #333;
	line-height: 1.2;
}

.mh-app-wrapper .stepper .stepper__step--active .stepper__label {
	color: #444;
}

.mh-app-wrapper .stepper__header .divider {
	background: #fff !important;
	margin: 34px -80px 0 !important;
	height: 3px;
}

.mh-app-wrapper .stepper__header .stepper__step--complete+.divider {
	background: #29aae3;
}

.mh-app-wrapper .stepper__header {
	max-width: 1170px !important;
	margin: 0 auto !important;
	background: 0 0 !important;
}

.mh-app-wrapper .stepper {
	background: #f0f0f0 !important;
}

.mh-app-wrapper .stepper__items {
	background: #fafafa !important;
}

.mh-app-wrapper .container {
	max-width: 1170px;
}

.mh-app-wrapper .stepper__step:not(.stepper__step--active):not(.stepper__step--complete):not(.stepper__step--error) .stepper__step__step {
	background: #fff !important;
	color: #222;
}

.mh-submit-property-buttons {
	text-align: center;
	width: 100%;
	margin-top: 12px;
}

.mh-submit-property-buttons:after {
	clear: both;
	content: "";
	display: table;
}

@media (min-width:768px) {
	.mh-submit-property-buttons {
		padding: 24px 0 36px;
		margin: 0 12px;
	}
}

.mh-submit-property-buttons button {
	margin: 0;
	width: auto;
}

.mh-submit-property-buttons .mh-submit-property-buttons__back {
	margin-bottom: 12px;
	margin-left: 12px;
	margin-right: 12px;
}

.mh-submit-property-buttons .mh-submit-property-buttons__back button {
	width: 100%;
}

@media (min-width:768px) {
	.mh-submit-property-buttons .mh-submit-property-buttons__back {
		width: 50%;
		margin-left: initial;
		margin-right: initial;
		float: left;
		text-align: left;
	}
	
	.mh-submit-property-buttons .mh-submit-property-buttons__back button {
		width: auto;
	}
}

.mh-submit-property-buttons .mh-submit-property-buttons__continue {
	margin-bottom: 12px;
	padding-left: 12px;
	padding-right: 12px;
}

.mh-submit-property-buttons .mh-submit-property-buttons__continue>div {
	margin-top: -24px;
	margin-bottom: 12px;
	color: red;
}

.mh-submit-property-buttons .mh-submit-property-buttons__continue button {
	width: 100%;
}

.mh-submit-property-buttons .mh-submit-property-buttons__submit {
	margin-bottom: 12px;
}

@media (min-width:768px) {
	.mh-submit-property-buttons .mh-submit-property-buttons__continue {
		width: 50%;
		float: right;
		text-align: right;
		padding-left: 0;
		padding-right: 0;
	}
	
	.mh-submit-property-buttons .mh-submit-property-buttons__continue button {
		width: auto;
	}
	
	.mh-submit-property-buttons .mh-submit-property-buttons__submit {
		width: 100%;
		float: left;
		text-align: center;
	}
}

.mh-edit-next-step__heading {
	padding: 12px;
}

.mh-edit-property-loader-top {
	margin: 36px 6px 12px 0 !important;
	overflow: hidden;
}

.mh-edit-next-step>.layout {
	margin: 0 -9px;
}

.mh-edit-property-loader-bottom {
	margin: -12px 6px 24px 0 !important;
	overflow: hidden;
	top: 36px !important;
}

.mh-edit-property-button {
	padding: 24px 0 0 3px;
	text-align: right;
}

.mh-edit-property .mh-field-gallery__single>div {
	background: #fff !important;
}

.mh-edit-property .mh-field-featured-image .mh-field-gallery__single>div, .mh-edit-property .mh-field-featured-image__content, .mh-edit-property .mh-field-gallery__images-wrapper, .mh-edit-property .mh-field-plans__list {
	background: #f4f4f4 !important;
}

.mh-edit-property .mh-panel__upload-gallery__icon-placeholder i {
	color: #fff !important;
}

.mh-modal-package__text {
	text-align: center;
	margin-bottom: 12px;
}

.woocommerce h3 {
	margin-bottom: 12px;
}

.woocommerce .input-text, .woocommerce select, .woocommerce textarea {
	padding: 12px;
	border: 1px solid #c5c5c5;
}

.woocommerce .input-text, .woocommerce select {
	height: 46px;
	margin-bottom: 12px !important;
}

.woocommerce .woocommerce-error, .woocommerce .woocommerce-info, .woocommerce .woocommerce-message {
	margin-bottom: 24px;
}

.woocommerce-cart {
	background: #fafafa;
}

.woocommerce-cart table.shop_table.woocommerce-cart-form__contents button.button {
	margin-right: 9px;
	padding: 16px 18px;
}

.woocommerce-cart table.shop_table.woocommerce-cart-form__contents button.button:disabled {
	opacity: .4;
}

.woocommerce-cart table.shop_table.woocommerce-cart-form__contents th {
	font-weight: 400;
	border: 1px solid transparent !important;
}

.woocommerce-cart table.shop_table.woocommerce-cart-form__contents td {
	border: 1px solid transparent !important;
	border-top: 1px solid #fafafa !important;
}

.woocommerce-cart table.shop_table.woocommerce-cart-form__contents tbody tr:last-child td {
	border: 1px solid transparent !important;
	border-top: 1px solid #fafafa !important;
	padding: 12px 0 0;
}

.woocommerce-cart .product-thumbnail {
	display: none;
}

.woocommerce-cart .quantity .qty {
	width: 60px;
	margin-bottom: 0 !important;
}

.woocommerce-cart .product-remove .remove {
	background: url("https://cdn-ilcdbhp.nitrocdn.com/NhcFkQsIkCKaaVpYqDVQCAvYXJivIbEu/assets/images/optimized/rev-e76cc99/douglasemmettapartments.com/wp-content/themes/myhome/assets/images/close.png") !important;
	border: 0 solid transparent;
	width: 30px;
	height: 30px;
	font-size: 0;
}

.woocommerce-cart table.shop_table {
	border: 0 transparent;
	border-radius: 0;
	background: #fff;
	padding: 0;
}

@media (min-width:768px) {
	.woocommerce-cart table.shop_table {
		padding: 6px 18px 0;
	}
}

.woocommerce-cart #coupon_code {
	width: 100%;
	padding-left: 12px;
}

@media (min-width:768px) {
	.woocommerce-cart #coupon_code {
		width: 200px;
		margin: 0;
	}
}

.woocommerce-cart .coupon {
	padding: 0 12px;
}

.woocommerce-cart input.button[name=apply_coupon] {
	width: 100% !important;
	height: 46px !important;
	border-radius: 0 !important;
}

@media (min-width:768px) {
	.woocommerce-cart input.button[name=apply_coupon] {
		width: auto !important;
		margin-left: 3px;
	}
}

.woocommerce-cart .checkout-button {
	background: #29aae3;
	border-radius: 0 !important;
	text-transform: uppercase;
	padding: 16px 18px;
	color: #fff !important;
}

.woocommerce-cart .shop_table td, .woocommerce-cart .shop_table th, .woocommerce-cart .shop_table tr {
	border: none;
}

.woocommerce-checkout {
	background: #fafafa;
}

.woocommerce-checkout .woocommerce-checkout-review-order .shop_table.woocommerce-checkout-review-order-table {
	padding-left: 9px;
	padding-right: 9px;
}

.woocommerce-checkout .woocommerce-checkout-review-order .shop_table.woocommerce-checkout-review-order-table td {
	border-top: 1px solid #fff;
}

.woocommerce-checkout button[type=submit] {
	background: #29aae3;
	border-radius: 0 !important;
	text-transform: uppercase;
	padding: 16px 18px;
	color: #fff !important;
}

.woocommerce-checkout .woocommerce-checkout td, .woocommerce-checkout .woocommerce-checkout th {
	border: 0 solid transparent !important;
}

.woocommerce-checkout .wc_payment_method label {
	top: -2px;
	position: relative;
}

.woocommerce-checkout table.shop_table.woocommerce-checkout-review-order-table {
	padding: 12px;
	background: #fff;
	border: none;
	border-radius: 0;
}

.woocommerce-checkout .woocommerce-additional-fields__field-wrapper, .woocommerce-checkout .woocommerce-billing-fields__field-wrapper {
	padding: 12px;
	background: #fff;
	margin-bottom: 24px;
}

.woocommerce-checkout textarea#order_comments {
	height: 150px;
	border: 1px solid #c5c5c5;
}

.woocommerce-checkout li.wc_payment_method {
	padding-bottom: 12px;
	position: relative;
	float: left;
	width: 100%;
}

.woocommerce-checkout .about_paypal {
	float: none !important;
	line-height: 1 !important;
	padding-left: 12px !important;
	font-size: 13px !important;
}

.woocommerce-checkout #payment.woocommerce-checkout-payment {
	background: 0 0;
	padding: 0;
}

.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods {
	border-bottom: 2px solid #fff !important;
	background: #fff;
	padding: 12px 18px;
}

.woocommerce-checkout #payment.woocommerce-checkout-payment .place-order {
	background: 0 0;
	padding: 0;
}

.woocommerce-checkout #payment.woocommerce-checkout-payment .place-order button {
	display: block;
	text-align: center;
	margin-bottom: 1em;
	font-size: 21px;
	padding: 12px 24px;
}

.woocommerce-checkout #add_payment_method #payment div.payment_box, .woocommerce-checkout .woocommerce-cart #payment div.payment_box, .woocommerce-checkout .woocommerce-checkout #payment div.payment_box {
	background: #fff;
}

.woocommerce-checkout #add_payment_method #payment div.payment_box::before, .woocommerce-checkout .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout .woocommerce-checkout #payment div.payment_box::before {
	border: 12px solid #fff;
	margin: -12px 0 0 24px;
	border-right-color: transparent;
	border-left-color: transparent;
	border-top-color: transparent;
}

.woocommerce-checkout .cart_totals.calculated_shipping table {
	border: 0 solid transparent;
	background: #f4f4f4;
}

.woocommerce-checkout .cart_totals.calculated_shipping table td, .woocommerce-checkout .cart_totals.calculated_shipping table th {
	border-bottom: 0 solid #fff;
	border-top: 1px solid #fff;
}

@media (min-width:768px) {
	.woocommerce-checkout .col2-set {
		margin: 0 -6px;
	}
	
	.woocommerce-checkout .col2-set .col-1, .woocommerce-checkout .col2-set .col-2 {
		width: 50%;
		float: left;
		padding: 0 6px;
	}
}

.woocommerce-checkout .select2-selection--single {
	background-color: #fff;
	border: 1px solid #c5c5c5;
	border-radius: 0;
	padding: 6px !important;
	height: 42px;
}

.woocommerce-checkout .select2-selection--single .select2-selection__arrow {
	height: 42px;
	right: 10px;
}

.woocommerce-order-received {
	background: #fafafa;
}

.woocommerce-order-received .order_details td, .woocommerce-order-received .order_details th, .woocommerce-order-received .order_details tr {
	border: none;
}

.woocommerce-order-received .woocommerce-customer-details address {
	background: #fff;
	border: none;
	border-radius: 0;
	padding: 12px;
}

.woocommerce-order-received .order_details {
	border: 0 !important;
	background: #fff;
}

.woocommerce-order-received table.woocommerce-table.woocommerce-table--order-details.shop_table.order_details {
	border: 0;
	background: #fff;
}

.woocommerce-order-received .woocommerce ul.order_details {
	padding: 12px;
	background: #fff;
	margin-bottom: 24px;
}

.woocommerce-order-received .woocommerce ul.order_details li {
	padding: 0 36px 0 0;
	border-right: 1px solid #f4f4f4;
}

.woocommerce-order-received .woocommerce ul.order_details li:last-child {
	border: none;
}

.woocommerce-order-received .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email, .woocommerce-order-received .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone {
	margin-top: 12px;
}

.woocommerce-order-received .woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
	content: "";
	font-family: Flaticon;
	font-style: normal;
}

.woocommerce-order-received .woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
	content: "";
	font-family: Flaticon;
	font-style: normal;
}

.myhome-property-slider .swiper-button-next:after, .myhome-property-slider .swiper-button-prev:after {
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	font-size: 16px !important;
	transition: all .2s ease;
}

.myhome-property-slider {
	position: relative;
}

@media (min-width:1100px) and (min-height:700px) {
	.myhome-property-slider {
		height: 600px;
	}
}

.myhome-property-slider .swiper-button-next, .myhome-property-slider .swiper-button-prev {
	background: rgba(255, 255, 255, .7);
	width: 48px;
	height: 48px;
	transition: all .2s ease;
}

@media (min-width:1023px) {
	.myhome-property-slider .swiper-button-next:hover, .myhome-property-slider .swiper-button-prev:hover {
		background: var(--primary);
	}
	
	.myhome-property-slider .swiper-button-next:hover:after, .myhome-property-slider .swiper-button-prev:hover:after {
		color: #fff;
	}
}

.myhome-property-slider .swiper-button-prev:after {
	content: "" !important;
	color: #222;
}

.myhome-property-slider .swiper-button-next:after {
	content: "" !important;
	color: #222;
}

.myhome-property-slider img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

@media (max-width:768px) {
	.myhome-property-slider .vehica-carousel-v1__arrows {
		margin-top: 30px;
	}
}

.swiper-container--single .swiper-button-next:after, .swiper-container--single .swiper-button-prev:after {
	display: none;
}

.swiper-container--single:not(.swiper-container--auto_height) {
	position: relative;
	height: 350px;
}

@media (min-width:450px) {
	.swiper-container--single:not(.swiper-container--auto_height) {
		height: 400px;
	}
}

@media (min-width:900px) {
	.swiper-container--single:not(.swiper-container--auto_height) {
		height: 500px;
	}
}

@media (min-width:1200px) {
	.swiper-container--single:not(.swiper-container--auto_height) {
		height: 550px;
	}
}

.swiper-container--single:not(.swiper-container--auto_height) img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.swiper-container--single.swiper-container--auto_height img {
	min-width: 100%;
}

.swiper-container--single .swiper-slide:after, .swiper-container--single .swiper-slide:before {
	display: none !important;
}

.swiper-container--single .swiper-button-prev {
	height: 48px;
	width: 48px;
	margin-top: -24px;
	top: 50%;
	position: absolute;
	padding: 0;
	text-align: center;
	background: rgba(255, 255, 255, .7);
	transition: all .2s ease;
}

.swiper-container--single .swiper-button-prev:before {
	position: static;
	margin: 0 !important;
	right: initial !important;
	color: #222;
}

@media (min-width:1024px) {
	.swiper-container--single .swiper-button-prev:hover {
		background: var(--primary);
	}
	
	.swiper-container--single .swiper-button-prev:hover:before {
		color: #fff;
	}
}

.swiper-container--single .swiper-button-next {
	height: 48px;
	width: 48px;
	margin-top: -24px;
	top: 50%;
	position: absolute;
	padding: 0;
	text-align: center;
	background: rgba(255, 255, 255, .7);
	transition: all .2s ease;
}

.swiper-container--single .swiper-button-next:before {
	position: static;
	margin: 0 !important;
	right: initial !important;
	color: #222;
}

@media (min-width:1024px) {
	.swiper-container--single .swiper-button-next:hover {
		background: var(--primary);
	}
	
	.swiper-container--single .swiper-button-next:hover:before {
		color: #fff;
	}
}

@media (min-width:450px) {
	.myhome-single-property-slider {
		height: 400px;
	}
}

@media (min-width:900px) {
	.myhome-single-property-slider {
		height: 500px;
	}
}

@media (min-width:1200px) {
	.myhome-single-property-slider {
		height: 550px;
	}
}

.myhome-single-property-slider .swiper-button-next, .myhome-single-property-slider .swiper-button-prev {
	background: rgba(255, 255, 255, .7);
	width: 48px;
	height: 48px;
	transition: all .2s ease;
}

@media (min-width:1023px) {
	.myhome-single-property-slider .swiper-button-next:hover, .myhome-single-property-slider .swiper-button-prev:hover {
		background: var(--primary);
	}
	
	.myhome-single-property-slider .swiper-button-next:hover:after, .myhome-single-property-slider .swiper-button-prev:hover:after {
		color: #fff;
	}
}

.myhome-single-property-slider .swiper-button-next:after, .myhome-single-property-slider .swiper-button-prev:after {
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	font-size: 16px !important;
	color: #222;
	transition: all .2s ease;
}

.myhome-single-property-slider .swiper-button-prev:after {
	content: "" !important;
}

.myhome-single-property-slider .swiper-button-next:after {
	content: "" !important;
}

.myhome-single-property-slider .mh-popup-group__element:after {
	content: "";
	display: block;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.myhome-single-property-slider img {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	cursor: pointer;
}

.myhome-single-property-slider .swiper-pagination.swiper-pagination-bullets {
	display: none !important;
}

.mh-slider-single__top {
	z-index: 3 !important;
	position: relative;
}

.mh-slider-single {
	z-index: 2;
	position: relative;
}

.myhome-property-slider--transparent {
	position: relative;
}

.myhome-property-slider--transparent .swiper-slide:after {
	content: "";
	display: block;
	background: rgba(0, 0, 0, .5);
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 2;
}

.mh-slider__transparent {
	text-align: center;
	position: absolute;
	height: 162px;
	margin-top: -81px;
	top: 50%;
	left: 0;
	right: 0;
	vertical-align: middle;
	z-index: 3;
}

@media (min-width:1000px) {
	.mh-slider__transparent {
		height: 200px;
		margin-top: -100px;
	}
}

@media (min-width:1024px) {
	.mh-slider__transparent {
		font-size: 36px;
	}
}

@media (max-width:767px) {
	.mh-slider__transparent {
		display: flex;
		align-items: center;
		justify-content: center;
		top: initial;
		bottom: 0;
	}
	
	.mh-slider__transparent .mh-slider__transparent__title {
		margin-bottom: 0 !important;
	}
}

.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;
	max-width: 280px;
	border: 2px solid #fff;
	padding: 6px 12px;
	width: 100%;
}

@media (min-width:375px) {
	.mh-slider__transparent__title {
		max-width: 300px;
	}
}

@media (min-width:480px) {
	.mh-slider__transparent__title {
		max-width: 400px;
	}
}

@media (min-width:768px) {
	.mh-slider__transparent__title {
		border: none;
		display: inline-block;
		width: auto;
		padding-left: 0;
		padding-right: 0;
		border-bottom: 2px solid #fff;
		max-width: 600px;
		font-size: 32px;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}
}

@media (min-width:1024px) {
	.mh-slider__transparent__title {
		max-width: 900px;
		font-size: 36px;
	}
}

@media (min-width:1200px) {
	.mh-slider__transparent {
		height: 216px;
		margin-top: -108px;
	}
	
	.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;
		font-style: italic;
		white-space: nowrap;
		margin-bottom: 18px;
	}
}

.mh-slider__transparent__price {
	display: none;
}

@media (min-width:768px) {
	.mh-slider__transparent__price {
		text-align: center;
		color: #fff;
		display: inline-block;
		margin: 0 auto;
		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;
	}
}

.mh-slider__card-default-wrapper {
	position: absolute;
	width: 100%;
	margin: 0 auto !important;
	bottom: 64px;
}

.mh-slider__card-default-wrapper .mh-layout {
	width: 100%;
	margin: 0 auto;
}

@media (min-width:900px) and (max-width:1300px) {
	.mh-slider__card-default-wrapper {
		left: 100px;
	}
}

.mh-slider__card-default {
	background: #fff;
	color: #222;
	padding: 12px;
	font-size: 16px;
}

@media (max-width:899px) {
	.mh-slider__card-default-wrapper {
		text-align: center;
	}
	
	.mh-slider__card-default {
		display: inline-block;
	}
}

@media (min-width:900px) {
	.mh-slider__card-default-wrapper {
		bottom: 150px;
	}
	
	.mh-slider__card-default {
		width: 100%;
		background: rgba(255, 255, 255, .85);
		max-width: 530px;
		padding: 12px 24px 24px;
	}
}

.mh-slider__card-default__heading {
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 0;
	visibility: inherit;
	color: #4d4d4d;
	text-align: center;
	max-width: 280px;
}

@media (min-width:375px) {
	.mh-slider__card-default__heading {
		max-width: 300px;
	}
}

@media (min-width:480px) {
	.mh-slider__card-default__heading {
		max-width: 400px;
	}
}

@media (min-width:768px) {
	.mh-slider__card-default__heading {
		max-max-width: 600px;
		font-size: 24px;
	}
	
	.mh-slider__card-short__heading {
		max-width: 600px;
	}
}

.mh-slider__card-default__address {
	display: none;
}

@media (min-width:900px) {
	.mh-slider__card-default__heading {
		margin-bottom: 24px;
		font-size: 32px;
		text-align: left;
		padding: 0;
	}
	
	.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, .mh-slider__card-short__address {
	display: none;
}

@media (min-width:900px) {
	.mh-slider__card-default__price {
		background: var(--primary);
		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;
	}
	
	.myhome-property-slider--short .mh-slider__card-default-wrapper {
		bottom: 275px;
	}
}

@media (min-width:1100px) and (min-height:700px) {
	.myhome-property-slider--short {
		bottom: 50px;
	}
}

.mh-slider__card-short {
	background: #fff;
	color: #222;
	padding: 12px;
	width: 100%;
	font-size: 16px;
}

.mh-slider__card-short__heading {
	font-size: 21px;
	text-transform: uppercase;
	font-weight: 700;
	visibility: inherit;
	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:900px) {
	.mh-slider__card-short {
		background: rgba(255, 255, 255, .85);
		max-width: 600px;
		padding: 12px 24px;
		position: relative;
	}
	
	.mh-slider__card-short__heading {
		margin-bottom: 6px;
		font-size: 32px;
		text-align: left;
		padding: 0;
		width: auto;
	}
	
	.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: var(--primary);
		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: 0;
		margin-left: -160px !important;
		margin-bottom: -23px !important;
	}
}

.mc-rs-slider-front-end-editor {
	background: #222;
	height: 500px;
	position: relative;
	color: #fff;
}

.mc-rs-slider-front-end-editor__text {
	height: 48px;
	position: absolute;
	text-align: center;
	top: 50px;
	font-size: 32px;
	text-transform: uppercase;
	font-weight: 700;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: inline-block;
}

.mh-color-white {
	color: #fff !important;
}

.mh-color-dark {
	color: #222 !important;
}

.link-primary:hover, .mh-color-primary {
	color: #29aae3;
}

.mh-background-color-dark {
	background: #222 !important;
}

.mh-background-color-white {
	background: #fff !important;
}

.mh-background-color-transparent {
	background: 0 0 !important;
}

.mh-background-color-primary {
	background: #29aae3 !important;
}

.mh-background-cover, .mh-background-fixed {
	background-position: center center !important;
}

.mh-background-cover {
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	-o-background-size: cover !important;
	background-size: cover !important;
}

.mh-background-fixed {
	background-attachment: fixed !important;
	background-repeat: no-repeat !important;
}

.mh-border-color-primary {
	border-color: #29aae3;
}

.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;
}

.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;
}

.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;
}

.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;
}

.mh-mask-dark {
	background: rgba(0, 0, 0, .1);
}

.mh-mask-strong-dark {
	background: rgba(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;
}

.mh-display-desktop {
	display: none;
}

@media (min-width:768px) {
	.mh-display-mobile {
		display: none;
	}
	
	.mh-display-desktop {
		display: block;
	}
}

.font-weight-700 {
	font-weight: 700 !important;
}

.text-center {
	text-align: center !important;
}

#wp-admin-bar-myhome-panel>.ab-item:before {
	display: none !important;
}

.mh-gallery__upload-in-progress * {
	pointer-events: none !important;
}

.mdl-button {
	position: relative;
	overflow: hidden;
}

.mdl-button:after {
	content: "";
	display: block;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, .3);
	height: 100px;
	width: 100px;
	margin-top: -50px;
	margin-left: -50px;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
}

.mdl-button:active:after {
	animation-name: ripplesmall;
	animation-duration: .5s;
}

.mdl-button--full-width:active:after {
	animation-name: ripplebig;
	animation-duration: .5s;
}

@keyframes ripplesmall {
	from {
		opacity: .2;
		transform: scale(0);
	}
	
	to {
		opacity: 1;
		transform: scale(3);
	}
}

@keyframes ripplebig {
	from {
		opacity: .5;
		transform: scale(0);
	}
	
	to {
		opacity: 1;
		transform: scale(4.3);
	}
}

.single-estate .swiper-container--single .swiper-slide .mh-popup-group__element {
	text-align: center;
	width: 100%;
	display: block;
}

@media (max-width:1023px) {
	html body div #mega_main_menu.mh-primary li .mega_dropdown .item_link *, html body.myhome-body #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li:hover>.item_link *, html body.myhome-body div #mega_main_menu.mh-primary>.menu_holder>.menu_inner>ul>li>.item_link * {
		color: #000 !important;
	}
	
	.mh-estate-horizontal .swiper-slide:first-of-type, .mh-estate-vertical .swiper-slide:first-of-type {
		display: none !important;
	}
	
	.mh-property .swiper-wrapper {
		display: block !important;
		transform: none !important;
	}
	
	.mh-property .swiper-button-next, .mh-property .swiper-button-prev, .mh-property .swiper-container:hover .swiper-slide:after, .mh-property .swiper-container:hover .swiper-slide:before, .mh-property .swiper-pagination, .mh-property .swiper-slide:first-child, html body .mh-property .swiper-container:hover .swiper-button-next, html body .mh-property .swiper-container:hover .swiper-button-prev {
		display: none !important;
	}
}

.mh-rs-search--middle .myhome-idx-omnibar {
	z-index: 2;
}

.IDX-showcaseCell .IDX-showcaseAddress.IDX-showcaseAddressElement {
	padding: 0 5px;
}

.mh-estate-horizontal .swiper-slide>img, .mh-estate-vertical .swiper-slide>img {
	object-fit: cover;
	min-height: 100%;
}

.fas {
	font-weight: 900 !important;
}

.fab, .far {
	font-weight: 400 !important;
}

.swiper-container {
	width: auto !important;
}

.swiper-container--single .swiper-button-prev {
	left: 12px !important;
}

.swiper-container--single .swiper-button-next {
	right: 12px !important;
}

.myhome-property-slider {
	height: 450px !important;
}

@media (min-width:1100px) and (min-height:700px) {
	.myhome-property-slider {
		height: 600px !important;
	}
}

.myhome-single-property-slider {
	height: 350px !important;
}

@media (min-width:450px) {
	.myhome-single-property-slider {
		height: 400px !important;
	}
}

@media (min-width:900px) {
	.myhome-single-property-slider {
		height: 500px !important;
	}
}

@media (min-width:1200px) {
	.myhome-single-property-slider {
		height: 550px !important;
	}
}

@-webkit-keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);
	}
	
	30%, 70% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
		-ms-transform: translateY(-40px);
		-o-transform: translateY(-40px);
		transform: translateY(-40px);
	}
}

@-moz-keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);
	}
	
	30%, 70% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
		-ms-transform: translateY(-40px);
		-o-transform: translateY(-40px);
		transform: translateY(-40px);
	}
}

@keyframes passing-through {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);
	}
	
	30%, 70% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	
	100% {
		opacity: 0;
		-webkit-transform: translateY(-40px);
		-moz-transform: translateY(-40px);
		-ms-transform: translateY(-40px);
		-o-transform: translateY(-40px);
		transform: translateY(-40px);
	}
}

@-webkit-keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);
	}
	
	30% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

@-moz-keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);
	}
	
	30% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

@keyframes slide-in {
	0% {
		opacity: 0;
		-webkit-transform: translateY(40px);
		-moz-transform: translateY(40px);
		-ms-transform: translateY(40px);
		-o-transform: translateY(40px);
		transform: translateY(40px);
	}
	
	30% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
}

.dropzone, .dropzone * {
	box-sizing: border-box;
}

.dropzone {
	min-height: 120px;
	border: 1px solid #c3c3c5;
	background: #fff;
	padding: 0;
	font-size: 21px;
	margin-bottom: 24px;
	-webkit-transition: background .2s linear;
	-moz-transition: background .2s linear;
	-ms-transition: background .2s linear;
	-o-transition: background .2s linear;
	transition: background .2s linear;
}

.dropzone:hover {
	background: #f7f7f7;
}

.dropzone.dz-clickable {
	cursor: pointer;
}

.dropzone.dz-clickable * {
	cursor: default;
}

.dropzone.dz-clickable .dz-message, .dropzone.dz-clickable .dz-message * {
	cursor: pointer;
}

.dropzone.dz-started .dz-message {
	display: none;
}

.dropzone.dz-drag-hover {
	border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
	opacity: .5;
}

.dropzone .dz-message {
	text-align: center;
	margin: 2em 0;
}

.dropzone .dz-preview {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 6px;
}

.dropzone .dz-preview:hover {
	z-index: 1000;
}

.dz-details, .dz-remove {
	display: none;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
	border-radius: 0;
	background: #999;
	background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
	opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
	background: #fff;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
	-webkit-transition: opacity .2s linear;
	-moz-transition: opacity .2s linear;
	-ms-transition: opacity .2s linear;
	-o-transition: opacity .2s linear;
	transition: opacity .2s linear;
}

.dropzone .dz-preview .dz-remove {
	font-size: 14px;
	text-align: center;
	display: block;
	cursor: pointer;
	border: none;
}

.dropzone .dz-preview.dz-processing .dz-progress {
	opacity: 1;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
	opacity: 0;
	-webkit-transition: opacity .4s ease-in;
	-moz-transition: opacity .4s ease-in;
	-ms-transition: opacity .4s ease-in;
	-o-transition: opacity .4s ease-in;
	transition: opacity .4s ease-in;
}

.dropzone .dz-preview:hover .dz-details {
	opacity: 1;
}

.dropzone .dz-preview .dz-details {
	z-index: 20;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	font-size: 13px;
	min-width: 100%;
	max-width: 100%;
	padding: 2em 1em;
	text-align: center;
	color: #fff;
	line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
	margin-bottom: 1em;
	font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
	white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
	border: 1px solid rgba(200, 200, 200, .8);
	background-color: rgba(255, 255, 255, .8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
	overflow: hidden;
	text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
	border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span, .dropzone .dz-preview .dz-details .dz-size span {
	background-color: rgba(255, 255, 255, .4);
}

.dropzone .dz-preview:hover .dz-image:after {
	content: "";
	background: rgba(0, 0, 0, .4);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.dropzone .dz-preview .dz-image {
	overflow: hidden;
	width: 100px;
	height: 100px;
	position: relative;
	display: block;
	z-index: 10;
}

.dropzone .dz-preview .dz-image img {
	display: block;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
	-webkit-animation: passing-through 3s cubic-bezier(.77, 0, .175, 1);
	-moz-animation: passing-through 3s cubic-bezier(.77, 0, .175, 1);
	-ms-animation: passing-through 3s cubic-bezier(.77, 0, .175, 1);
	-o-animation: passing-through 3s cubic-bezier(.77, 0, .175, 1);
	animation: passing-through 3s cubic-bezier(.77, 0, .175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
	opacity: 1;
	-webkit-animation: slide-in 3s cubic-bezier(.77, 0, .175, 1);
	-moz-animation: slide-in 3s cubic-bezier(.77, 0, .175, 1);
	-ms-animation: slide-in 3s cubic-bezier(.77, 0, .175, 1);
	-o-animation: slide-in 3s cubic-bezier(.77, 0, .175, 1);
	animation: slide-in 3s cubic-bezier(.77, 0, .175, 1);
}

.dropzone .dz-preview .dz-error-mark, .dropzone .dz-preview .dz-success-mark {
	pointer-events: none;
	opacity: 0;
	z-index: 500;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	margin-left: -27px;
	margin-top: -27px;
}

.dropzone .dz-preview .dz-error-mark svg, .dropzone .dz-preview .dz-success-mark svg {
	display: block;
	width: 54px;
	height: 54px;
}

.dropzone .dz-preview .dz-progress {
	opacity: 1;
	z-index: 1000;
	pointer-events: none;
	position: absolute;
	height: 16px;
	left: 50%;
	top: 50%;
	margin-top: -8px;
	width: 80px;
	margin-left: -40px;
	background: rgba(255, 255, 255, .9);
	-webkit-transform: scale(1);
	border-radius: 0;
	overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
	background: #333;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	-webkit-transition: width .3s ease-in-out;
	-moz-transition: width .3s ease-in-out;
	-ms-transition: width .3s ease-in-out;
	-o-transition: width .3s ease-in-out;
	transition: width .3s ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
	display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
	opacity: 1;
	pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
	pointer-events: none;
	z-index: 1000;
	position: absolute;
	display: block;
	display: none;
	opacity: 0;
	-webkit-transition: opacity .3s ease;
	-moz-transition: opacity .3s ease;
	-ms-transition: opacity .3s ease;
	-o-transition: opacity .3s ease;
	transition: opacity .3s ease;
	border-radius: 0;
	font-size: 13px;
	top: 130px;
	left: -10px;
	width: 140px;
	background: #be2626;
	background: linear-gradient(to bottom, #be2626, #a92222);
	padding: .5em 1.2em;
	color: #fff;
}

.dropzone .dz-preview .dz-error-message:after {
	content: "";
	position: absolute;
	top: -6px;
	left: 64px;
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-bottom: 6px solid #be2626;
}

.swal2-container, body.swal2-iosfix {
	position: fixed;
	left: 0;
	right: 0;
}

body.swal2-shown {
	overflow-y: hidden;
}

.swal2-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	top: 0;
	bottom: 0;
	padding: 10px;
	background-color: transparent;
	z-index: 1060;
}

.swal2-container.swal2-fade {
	-webkit-transition: background-color .1s;
	transition: background-color .1s;
}

.swal2-container.swal2-shown {
	background-color: rgba(0, 0, 0, .4);
}

.swal2-modal {
	background-color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	border-radius: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	margin: auto;
	overflow-x: hidden;
	overflow-y: auto;
	display: none;
	position: relative;
	max-width: 100%;
}

.swal2-modal:focus {
	outline: 0;
}

.swal2-modal.swal2-loading {
	overflow-y: hidden;
}

.swal2-modal .swal2-title {
	color: #595959;
	font-size: 30px;
	text-align: center;
	font-weight: 600;
	text-transform: none;
	position: relative;
	margin: 0 0 .4em;
	padding: 0;
	display: block;
	word-wrap: break-word;
}

.swal2-modal .swal2-buttonswrapper {
	margin-top: 15px;
}

.swal2-modal .swal2-buttonswrapper:not(.swal2-loading) .swal2-styled[disabled] {
	opacity: .4;
	cursor: no-drop;
}

.swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-confirm {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 4px solid transparent;
	width: 40px;
	height: 40px;
	padding: 0;
	margin: 7.5px;
	vertical-align: top;
	background-color: transparent !important;
	color: transparent;
	cursor: default;
	border-radius: 100%;
	-webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
	animation: rotate-loading 1.5s linear 0s infinite normal;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.swal2-modal .swal2-buttonswrapper.swal2-loading .swal2-styled.swal2-cancel {
	margin-left: 30px;
	margin-right: 30px;
}

.swal2-modal .swal2-buttonswrapper.swal2-loading :not(.swal2-styled).swal2-confirm::after {
	display: inline-block;
	content: "";
	margin-left: 5px 0 15px;
	vertical-align: -1px;
	height: 15px;
	width: 15px;
	border: 3px solid #999;
	-webkit-box-shadow: 1px 1px 1px #fff;
	box-shadow: 1px 1px 1px #fff;
	border-right-color: transparent;
	border-radius: 50%;
	-webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
	animation: rotate-loading 1.5s linear 0s infinite normal;
}

.swal2-modal .swal2-styled {
	border: 0;
	border-radius: 3px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-size: 17px;
	font-weight: 500;
	margin: 15px 5px 0;
	padding: 10px 32px;
}

.swal2-modal .swal2-image {
	margin: 20px auto;
	max-width: 100%;
}

.swal2-modal .swal2-close {
	background: 0 0;
	border: 0;
	margin: 0;
	padding: 0;
	width: 38px;
	height: 40px;
	font-size: 36px;
	line-height: 40px;
	font-family: serif;
	position: absolute;
	top: 5px;
	right: 8px;
	cursor: pointer;
	color: #ccc;
	-webkit-transition: color .1s ease;
	transition: color .1s ease;
}

.swal2-modal .swal2-close:hover {
	color: #d55;
}

.swal2-modal>.swal2-checkbox, .swal2-modal>.swal2-file, .swal2-modal>.swal2-input, .swal2-modal>.swal2-radio, .swal2-modal>.swal2-select, .swal2-modal>.swal2-textarea {
	display: none;
}

.swal2-modal .swal2-content {
	font-size: 18px;
	text-align: center;
	font-weight: 300;
	position: relative;
	float: none;
	margin: 0;
	padding: 0;
	line-height: normal;
	color: #545454;
	word-wrap: break-word;
}

.swal2-modal .swal2-checkbox, .swal2-modal .swal2-file, .swal2-modal .swal2-input, .swal2-modal .swal2-radio, .swal2-modal .swal2-select, .swal2-modal .swal2-textarea {
	margin: 20px auto;
}

.swal2-modal .swal2-file, .swal2-modal .swal2-input, .swal2-modal .swal2-textarea {
	width: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 18px;
	border-radius: 3px;
	border: 1px solid #d9d9d9;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .06);
	-webkit-transition: border-color box-shadow .3s;
	transition: border-color box-shadow .3s;
}

.swal2-modal .swal2-file.swal2-inputerror, .swal2-modal .swal2-input.swal2-inputerror, .swal2-modal .swal2-textarea.swal2-inputerror {
	border-color: #f27474 !important;
	-webkit-box-shadow: 0 0 2px #f27474 !important;
	box-shadow: 0 0 2px #f27474 !important;
}

.swal2-modal .swal2-file:focus, .swal2-modal .swal2-input:focus, .swal2-modal .swal2-textarea:focus {
	outline: 0;
	border: 1px solid #b4dbed;
	-webkit-box-shadow: 0 0 3px #c4e6f5;
	box-shadow: 0 0 3px #c4e6f5;
}

.swal2-modal .swal2-file:focus::-webkit-input-placeholder, .swal2-modal .swal2-input:focus::-webkit-input-placeholder, .swal2-modal .swal2-textarea:focus::-webkit-input-placeholder {
	-webkit-transition: opacity .3s .03s ease;
	transition: opacity .3s .03s ease;
	opacity: .8;
}

.swal2-modal .swal2-file:focus:-ms-input-placeholder, .swal2-modal .swal2-input:focus:-ms-input-placeholder, .swal2-modal .swal2-textarea:focus:-ms-input-placeholder {
	-webkit-transition: opacity .3s .03s ease;
	transition: opacity .3s .03s ease;
	opacity: .8;
}

.swal2-modal .swal2-file:focus::placeholder, .swal2-modal .swal2-input:focus::placeholder, .swal2-modal .swal2-textarea:focus::placeholder {
	-webkit-transition: opacity .3s .03s ease;
	transition: opacity .3s .03s ease;
	opacity: .8;
}

.swal2-modal .swal2-file::-webkit-input-placeholder, .swal2-modal .swal2-input::-webkit-input-placeholder, .swal2-modal .swal2-textarea::-webkit-input-placeholder {
	color: #e6e6e6;
}

.swal2-modal .swal2-file:-ms-input-placeholder, .swal2-modal .swal2-input:-ms-input-placeholder, .swal2-modal .swal2-textarea:-ms-input-placeholder {
	color: #e6e6e6;
}

.swal2-modal .swal2-file::placeholder, .swal2-modal .swal2-input::placeholder, .swal2-modal .swal2-textarea::placeholder {
	color: #e6e6e6;
}

.swal2-modal .swal2-range input {
	float: left;
	width: 80%;
}

.swal2-modal .swal2-range output {
	float: right;
	width: 20%;
	font-size: 20px;
	font-weight: 600;
	text-align: center;
}

.swal2-modal .swal2-range input, .swal2-modal .swal2-range output {
	height: 43px;
	line-height: 43px;
	vertical-align: middle;
	margin: 20px auto;
	padding: 0;
}

.swal2-modal .swal2-input {
	height: 43px;
	padding: 0 12px;
}

.swal2-modal .swal2-input[type=number] {
	max-width: 150px;
}

.swal2-modal .swal2-file {
	font-size: 20px;
}

.swal2-modal .swal2-textarea {
	height: 108px;
	padding: 12px;
}

.swal2-modal .swal2-select {
	color: #545454;
	font-size: inherit;
	padding: 5px 10px;
	min-width: 40%;
	max-width: 100%;
}

.swal2-modal .swal2-radio {
	border: 0;
}

.swal2-modal .swal2-radio label:not(:first-child) {
	margin-left: 20px;
}

.swal2-modal .swal2-radio input, .swal2-modal .swal2-radio span {
	vertical-align: middle;
}

.swal2-modal .swal2-radio input {
	margin: 0 3px 0 0;
}

.swal2-modal .swal2-checkbox {
	color: #545454;
}

.swal2-modal .swal2-checkbox input, .swal2-modal .swal2-checkbox span {
	vertical-align: middle;
}

.swal2-modal .swal2-validationerror {
	background-color: #f0f0f0;
	margin: 0 -20px;
	overflow: hidden;
	padding: 10px;
	color: gray;
	font-size: 16px;
	font-weight: 300;
	display: none;
}

.swal2-modal .swal2-validationerror::before {
	content: "!";
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: #ea7d7d;
	color: #fff;
	line-height: 24px;
	text-align: center;
	margin-right: 10px;
}

.swal2-icon.swal2-info, .swal2-icon.swal2-question, .swal2-icon.swal2-warning {
	font-size: 60px;
	line-height: 80px;
	text-align: center;
}

@supports (-ms-accelerator:true) {
	.swal2-range input {
		width: 100% !important;
	}
	
	.swal2-range output {
		display: none;
	}
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
	.swal2-range input {
		width: 100% !important;
	}
	
	.swal2-range output {
		display: none;
	}
}

.swal2-icon {
	width: 80px;
	height: 80px;
	border: 4px solid transparent;
	border-radius: 50%;
	margin: 20px auto 30px;
	padding: 0;
	position: relative;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	cursor: default;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.swal2-icon.swal2-error {
	border-color: #f27474;
}

.swal2-icon.swal2-error .swal2-x-mark {
	position: relative;
	display: block;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
	position: absolute;
	height: 5px;
	width: 47px;
	background-color: #f27474;
	display: block;
	top: 37px;
	border-radius: 2px;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	left: 17px;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	right: 16px;
}

.swal2-icon.swal2-warning {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #f8bb86;
	border-color: #facea8;
}

.swal2-icon.swal2-info {
	font-family: "Open Sans", sans-serif;
	color: #3fc3ee;
	border-color: #9de0f6;
}

.swal2-icon.swal2-question {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #87adbd;
	border-color: #c9dae1;
}

.swal2-icon.swal2-success {
	border-color: #a5dc86;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line] {
	border-radius: 50%;
	position: absolute;
	width: 60px;
	height: 120px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
	border-radius: 120px 0 0 120px;
	top: -7px;
	left: -33px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 60px 60px;
	transform-origin: 60px 60px;
}

.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
	border-radius: 0 120px 120px 0;
	top: -11px;
	left: 30px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: 0 60px;
	transform-origin: 0 60px;
}

.swal2-icon.swal2-success .swal2-success-ring {
	width: 80px;
	height: 80px;
	border: 4px solid rgba(165, 220, 134, .2);
	border-radius: 50%;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	position: absolute;
	left: -4px;
	top: -4px;
	z-index: 2;
}

.swal2-icon.swal2-success .swal2-success-fix {
	width: 7px;
	height: 90px;
	position: absolute;
	left: 28px;
	top: 8px;
	z-index: 1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line] {
	height: 5px;
	background-color: #a5dc86;
	display: block;
	border-radius: 2px;
	position: absolute;
	z-index: 2;
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
	width: 25px;
	left: 14px;
	top: 46px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
	width: 47px;
	right: 8px;
	top: 38px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.swal2-progresssteps {
	font-weight: 600;
	margin: 0 0 20px;
	padding: 0;
}

.swal2-progresssteps li {
	display: inline-block;
	position: relative;
}

.swal2-progresssteps .swal2-progresscircle {
	background: #3085d6;
	border-radius: 2em;
	color: #fff;
	height: 2em;
	line-height: 2em;
	text-align: center;
	width: 2em;
	z-index: 20;
}

.swal2-progresssteps .swal2-progresscircle:first-child {
	margin-left: 0;
}

.swal2-progresssteps .swal2-progresscircle:last-child {
	margin-right: 0;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
	background: #3085d6;
}

.swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progresscircle, .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep~.swal2-progressline {
	background: #add8e6;
}

.swal2-progresssteps .swal2-progressline {
	background: #3085d6;
	height: .4em;
	margin: 0 -1px;
	z-index: 10;
}

[class^=swal2] {
	-webkit-tap-highlight-color: transparent;
}

@-webkit-keyframes showSweetAlert {
	0% {
		-webkit-transform: scale(.7);
		transform: scale(.7);
	}
	
	45% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	
	80% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes showSweetAlert {
	0% {
		-webkit-transform: scale(.7);
		transform: scale(.7);
	}
	
	45% {
		-webkit-transform: scale(1.05);
		transform: scale(1.05);
	}
	
	80% {
		-webkit-transform: scale(.95);
		transform: scale(.95);
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes hideSweetAlert {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: scale(.5);
		transform: scale(.5);
		opacity: 0;
	}
}

@keyframes hideSweetAlert {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	
	100% {
		-webkit-transform: scale(.5);
		transform: scale(.5);
		opacity: 0;
	}
}

.swal2-show {
	-webkit-animation: showSweetAlert .3s;
	animation: showSweetAlert .3s;
}

.swal2-show.swal2-noanimation {
	-webkit-animation: none;
	animation: none;
}

.swal2-hide {
	-webkit-animation: hideSweetAlert .15s forwards;
	animation: hideSweetAlert .15s forwards;
}

.swal2-hide.swal2-noanimation {
	-webkit-animation: none;
	animation: none;
}

@-webkit-keyframes animate-success-tip {
	0%, 54% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	
	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}
	
	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}
	
	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@keyframes animate-success-tip {
	0%, 54% {
		width: 0;
		left: 1px;
		top: 19px;
	}
	
	70% {
		width: 50px;
		left: -8px;
		top: 37px;
	}
	
	84% {
		width: 17px;
		left: 21px;
		top: 48px;
	}
	
	100% {
		width: 25px;
		left: 14px;
		top: 45px;
	}
}

@-webkit-keyframes animate-success-long {
	0%, 65% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	
	84% {
		width: 55px;
		right: 0;
		top: 35px;
	}
	
	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

@keyframes animate-success-long {
	0%, 65% {
		width: 0;
		right: 46px;
		top: 54px;
	}
	
	84% {
		width: 55px;
		right: 0;
		top: 35px;
	}
	
	100% {
		width: 47px;
		right: 8px;
		top: 38px;
	}
}

@-webkit-keyframes rotatePlaceholder {
	0%, 5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	100%, 12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
}

@keyframes rotatePlaceholder {
	0%, 5% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	
	100%, 12% {
		-webkit-transform: rotate(-405deg);
		transform: rotate(-405deg);
	}
}

.swal2-animate-success-line-tip {
	-webkit-animation: animate-success-tip .75s;
	animation: animate-success-tip .75s;
}

.swal2-animate-success-line-long {
	-webkit-animation: animate-success-long .75s;
	animation: animate-success-long .75s;
}

.swal2-success.swal2-animate-success-icon .swal2-success-circular-line-right {
	-webkit-animation: rotatePlaceholder 4.25s ease-in;
	animation: rotatePlaceholder 4.25s ease-in;
}

@-webkit-keyframes animate-error-icon {
	0% {
		-webkit-transform: rotateX(100deg);
		transform: rotateX(100deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0);
		opacity: 1;
	}
}

@keyframes animate-error-icon {
	0% {
		-webkit-transform: rotateX(100deg);
		transform: rotateX(100deg);
		opacity: 0;
	}
	
	100% {
		-webkit-transform: rotateX(0);
		transform: rotateX(0);
		opacity: 1;
	}
}

.swal2-animate-error-icon {
	-webkit-animation: animate-error-icon .5s;
	animation: animate-error-icon .5s;
}

@-webkit-keyframes animate-x-mark {
	0%, 50% {
		-webkit-transform: scale(.4);
		transform: scale(.4);
		margin-top: 26px;
		opacity: 0;
	}
	
	80% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
		margin-top: -6px;
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		margin-top: 0;
		opacity: 1;
	}
}

@keyframes animate-x-mark {
	0%, 50% {
		-webkit-transform: scale(.4);
		transform: scale(.4);
		margin-top: 26px;
		opacity: 0;
	}
	
	80% {
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
		margin-top: -6px;
	}
	
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		margin-top: 0;
		opacity: 1;
	}
}

.swal2-animate-x-mark {
	-webkit-animation: animate-x-mark .5s;
	animation: animate-x-mark .5s;
}

@-webkit-keyframes rotate-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes rotate-loading {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}
	
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
