/* Menu */

.owl-menu-outer {
	display: flex;
	flex-direction: row;
}

.owl-menu-item-container {
	margin: 0 13px;
}

.header-menu-link {
	margin: 0 7px;
	color: #513322;
}

.submenu-link {
	margin-bottom: 15px;
	color: #513322;
}

.mobile-icon-wrapper, #close-mobile-menu, .menu-mobile-logo, .additional-buttons {
	display: none;
}

.menu-wrapper {
	display: flex;
	justify-content: flex-end;
}

.owl-menu-item-container > a {
	font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 500;
	text-transform: uppercase;
}

.owl-submenu-container {
	font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    font-weight: 500;
	display: none;
}
.owl-has-submenu {
	/* background: url('../img/hs-arrow.svg') right center no-repeat; */
	background: url('../img/blue-arrow.svg') right 10px no-repeat;
	/* padding-right: 20px; */
	padding-right: 13px;
}

@media (min-width: 1281px) {
	.owl-has-submenu:hover > .owl-submenu-container {
		display: flex;
		flex-direction: column;
		position: absolute;
		padding: 15px 15px 5px 7px;
		background: #fff;
	}
}

@media (max-width: 1024px) {
	.owl-menu-item-container {
		margin: 0 5px;
	}

	.owl-has-submenu {
		padding-right: 13px;
	}

	.owl-menu-item-container > a {
		font-size: 14px;
	}

	.menu-wrapper .owl-has-submenu:last-child:hover > .owl-submenu-container {
		right: -10px;
	}
	.owl-has-submenu.active {
		background: url('../img/blue-arrow-active.svg') right 27px no-repeat;
	}
}

@media (max-width: 767px) {
	.mobile-icon-wrapper {
		display: flex;
	}
	.menu-wrapper {
		display: none;
	}

	.owl-menu-outer {
		flex-direction: column;
	}

	.menu-wrapper.mobile-active {
		padding-top: 100px;
		display: flex;
		position: fixed;
		width: 100%;
		background: #fff;
		flex-direction: column;
		justify-content: flex-start;
		z-index: 100;
		top: 0;
		left: 0;
		height: 100%;
		/* box-shadow: 0px 0 70px 0px rgb(0 0 0 / 70%); */
	}
	.menu-mobile-logo {
		display: flex;
		/* margin-top: 20px;
		padding-left: 30px; */
		padding-bottom: 18px;
		width: 150px;
		/* border-bottom: 1px solid #DBDBDB; */
	}
	#close-mobile-menu {
		font-size: 36px;
		display: flex;
		position: absolute;
		right: 27px;
		top: 20px;
		z-index: 999;
		width: 24px;
	}

	.admin-bar .menu-wrapper.mobile-active {
		padding: 65px 26px 18px;
	}

	.admin-bar #close-mobile-menu {
		top: 64px;
	}

	.additional-buttons {
		/* display: flex; */
		display: none;
		margin: 20px 30px 0;
		border-bottom: 1px solid #DBDBDB;
		padding-bottom: 20px;
	}
	.additional-button {
		display: flex;
		align-items: center;
		color: #000;
		font-size: 16px;
		font-weight: 700;
		line-height: 36px; /* 225% */
		margin-right: 20px;
	}
	.additional-button svg {
		margin-right: 5px;
	}
	.header-menu-link {
		padding-left: 0;
		margin: 10px 0;
		/* border-bottom: 1px solid #DBDBDB; */
	}
	.header-menu-link:hover {

	}
	.owl-menu-item-container {
		margin: 10px 0;
	}
	.owl-has-submenu {
		background-position: right 9px;
	}
	.owl-has-submenu:hover > .owl-submenu-container {
		display: none;
		position: relative;
	}
	.owl-submenu-container.owl-submenu-open {
		display: flex!important;
		flex-direction: column;
		position: relative;
		padding: 15px 15px 5px 7px;
		background: #fff;
	}

	.submenu-link {
		margin-bottom: 10px;
		font-size: 14px;
	}
}