/* make the hamburger menu white */
.main-menu-btn-icon, .main-menu-btn-icon::before, .main-menu-btn-icon::after { background:white; }

/* Change the navigation to arrow instead of plus symbol - START */
@media only screen and (min-width: 768px)
{
	.sm-simple a span.sub-arrow {
		border: solid #ffffff;
		border-width: 0 2px 2px 0;
		display: inline-block;
		padding: 3px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		right: 13px !important;
		margin-top: -5px;
		width: 5px;
		height: 5px;
	}

	.sm-simple ul a span.sub-arrow {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		right: 10px !important;
	}
}
@media only screen and (max-width: 767px)
{
	.sm-simple a span.sub-arrow {
		border: solid #ffffff;
		border-width: 0 2px 2px 0;
		display: inline-block;
		padding: 3px;
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		right: 13px !important;
		margin-top: -5px;
		width: 5px;
		height: 5px;
	}

	.sm-simple a.highlighted span.sub-arrow {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}
/* Change the navigation - END */