/* Desktop menu */
.mtv-menu-desktop {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.mtv-menu-desktop .menu-item {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0;
	margin-right: 35px;
}

.mtv-menu-desktop .menu-item:last-child {
	margin-right: 0;
}

.mtv-menu-desktop .menu-item a,
.mtv-menu-desktop .menu-item a:visited,
.mtv-menu-desktop .menu-item.current-menu-item .sub-menu a,
.mtv-menu-desktop .menu-item.current-menu-ancestor .sub-menu a {
	display: block;
	margin: 0;
	height: 40px;
	line-height: 40px;
	color: #000;
	text-decoration: none;
	font-family: "Belleza", Arial, Helvetica, sans-serif;
	font-size: 17px;
	letter-spacing: 0.5px;
	outline: none;
}

.mtv-menu-desktop .menu-item.red a {
	color: red;
}

.mtv-menu-desktop .menu-item a:hover,
.mtv-menu-desktop .menu-item a:active,
.mtv-menu-desktop .menu-item.current-menu-item a,
.mtv-menu-desktop .menu-item.current-menu-ancestor a,
.mtv-menu-desktop .menu-item.current-menu-item .sub-menu a:hover,
.mtv-menu-desktop .menu-item.current-menu-item .sub-menu a:active {
	color: #d75d2b;
	text-decoration: none;
}


.mtv-menu-desktop .menu-item .sub-menu {
	position: absolute;
	left: 0;
	margin: 0;
	padding: 0;
	min-width: 170px;

	background: rgba(255, 255, 255, 0.7) !important;
	border-top: 5px solid #d75d2b;
	-webkit-box-shadow: -1px 3px 5px 0 rgba(0, 0, 0, 0.3);
	   -moz-box-shadow: -1px 3px 5px 0 rgba(0, 0, 0, 0.3);
			box-shadow: -1px 3px 5px 0 rgba(0, 0, 0, 0.3);

	-webkit-transition: opacity 0.2s ease-in;
	   -moz-transition: opacity 0.2s ease-in;
		 -o-transition: opacity 0.2s ease-in;
			transition: opacity 0.2s ease-in;

	z-index: -1;
	visibility: hidden;
	opacity: 0;
}

.mtv-menu-desktop .menu-item .sub-menu .menu-item {
	display: block;
	margin: 0;
	padding: 0;
	text-align: left;
}

.mtv-menu-desktop .menu-item .sub-menu .menu-item a {
	display: block;
	white-space: nowrap;
	font-size: 14px;
	line-height: 32px;
	height: 32px;
	padding: 0 20px;

	-webkit-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
	   -moz-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
		 -o-transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
			transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, height 0s, line-height 0s;
}

.mtv-menu-desktop .menu-item .sub-menu .menu-item a:hover,
.mtv-menu-desktop .menu-item .sub-menu .menu-item.current-menu-item a {
	background-color: #FFF;
	color: #d75d2b;
	text-decoration: none;
}

.mtv-menu-desktop .menu-item:hover .sub-menu {
	z-index: 99997;
	visibility: visible;
	opacity: 1;
}

/* ----------------------------------------------------------------------------------------------------------------- */
/* Mobile menu */

.mtv-menu-mobile {
	margin: 0 auto;
	width: 95%;
	list-style: none;
	padding: 0;
	margin-bottom: 7px;
	border: 1px solid #DADADA;
	border-top-width: 0;
	overflow: hidden;

	height: 0;

	-webkit-transition: height 150ms ease-out;
	   -moz-transition: height 150ms ease-out;
		 -o-transition: height 150ms ease-out;
			transition: height 150ms ease-out;
}

.mtv-menu-mobile .menu-item {
	margin: 0;
	padding: 0;
}

.mtv-menu-mobile .menu-item .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mtv-menu-mobile .menu-item a {
	display: block;
	padding: 0.4em 1em;
	font-family: "PT Sans", "Belleza", Arial, Helvetica, sans-serif;
	font-size: 12px;
	border-bottom: 1px solid #DADADA;
	background-color: #F9F9F9;
	color: #333;
	letter-spacing: 0.3px;
	outline: none;
}

.mtv-menu-mobile .menu-item.red a {
	color: red;
}

.mtv-menu-mobile .menu-item.current-menu-item a {
	background-color: #EEEEEE;
}

.mtv-menu-mobile > .menu-item:last-child a {
	border-bottom-width: 0;
}

.mtv-menu-mobile .sub-menu .menu-item a {
	padding-left: 1.6em;
	background-color: #F9F9F9; /* reset background color */
}

.mtv-menu-mobile .sub-menu .menu-item a:before {
	content: "- ";
	color: #d75d2b;
}

.mtv-menu-mobile .sub-menu .menu-item.current-menu-item a {
	background-color: #EEEEEE;
}

.mtv-menu-mobile .menu-item a:hover,
.mtv-menu-mobile .menu-item a:active {
	text-decoration: none;
	background-color: #d75d2b;
	color: #ffae5d;
}

.mtv-menu-mobile-toggler {
	position: relative;
	display: block;
	width: 95%;
	margin: 0 auto;
	margin-top: 7px;
	padding: 0.4em 0.9em;
	font-family: "PT Sans", "Belleza", Arial, Helvetica, sans-serif;
	font-size: 12px;
	border: 1px solid #DADADA;
	background-color: #F9F9F9;
	cursor: pointer;

	-webkit-user-select: none;
	   -moz-user-select: none;
		-ms-user-select: none;
			user-select: none;
}

.mtv-menu-mobile-toggler-button {
	font-size: 12px;
	cursor: pointer;
	line-height: 31px;

	border-left: 1px solid #DADADA;
	height: 31px;
	margin: 0;
	right: 5px;
	top: 0;
	width: 40px;
	position: absolute;

	border-color: #dadada;
}

.mtv-menu-mobile-toggler-button:before {
	content: "\f20d";
	font-family: 'Ionicons';
	font-size: 28px;
	margin-left: 12px;
	color: #c7c7c7;
}

/* ----------------------------------------------------------------------------------------------------------------- */

/* Highlight retreat */
li.menu-item a[href$="mooji.tv/online-retreat"] {
    color: red !important;
}
/* ----------------- */

/* Desktop menu */

@media screen and (min-width: 801px) {
	.mtv-header-wrapper {
		-webkit-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
		   -moz-box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
				box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	}

	.mtv-menu-desktop {
		display: block;
	}

	.mtv-menu-mobile {
		display: none;
	}

	.mtv-menu-mobile-toggler {
		display: none;
	}
}


/* Mobile menu */
@media screen and (max-width: 800px) {
	.mtv-menu-desktop {
		display: none;
	}

	.mtv-menu-mobile-toggler {
		display: block;
	}
}
