.menu--catalog {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: calc(1230px + 2em);
	padding: .4em 0;
	background-color: rgb(255, 255, 255);
	border-top: solid 1px rgb(80, 90, 90);
	border-bottom: solid 1px rgb(80, 90, 90);
}

.menu--catalog > .menu__divider {
	margin-top: 1.2px;
}

.menu--catalog > .menu__divider .icon {
	display: block;
	width: 4px;
}

.menu--catalog > .menu__item {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

.menu--catalog > .menu__item > .menu__wrapper {
	z-index: 9000;
	top: auto;
	left: auto;
	padding-top: 4px;
}

.menu--catalog > .menu__item > .menu__link {
	padding: .2em .9em;
	color: rgb(80, 90, 90);
	background-color: rgb(255, 255, 255);
	text-decoration-color: transparent;
	text-transform: uppercase;
	font-size: .9375em;
	font-weight: 600;
}

.menu--catalog > .menu__item > .menu__link:hover {
	text-decoration-color: transparent;
}

.menu--catalog > .menu__item > .menu__link--highlight {
	color: rgb(255, 21, 0);
}

.menu--catalog > .menu__item--focused > .menu__link {
	color: rgb(167, 172, 172);
}

.menu--catalog > .menu__item--focused > .menu__link--highlight {
	color: rgba(255, 21, 0, .7);
}

.menu--catalog .menu--l2 {
	position: relative;
	border: solid 1px rgb(167, 172, 172);
	border-width: 4px 1px 1px;
	font-size: .9rem;
}

.menu--catalog .menu--l2 > .menu__item {
	position: static;
}

.menu--catalog .menu--l2 > .menu__item--header {
	display: none;
}

.menu--catalog .menu--l2 > .menu__item > .menu__wrapper {
	top: -4px;
	height: 100%;
}

.menu--catalog .menu--l2 > .menu__item > .menu__link {
	position: relative;
	padding: .1em .6em .3em .6em;
}

.menu--catalog .menu--l3 {
	min-height: 100%;
	border: solid 1px rgb(167, 172, 172);
	border-width: 4px 1px 1px 0;
	font-size: .9rem;
}

.menu--catalog .menu--l3 > .menu__item > .menu__link {
	background-color: transparent;
}

.menu--catalog .menu--l3 > .menu__item--header > .menu__link {
	color: rgb(167, 172, 172);
	text-decoration-color: rgb(167, 172, 172);
}

.menu--catalog .menu--l3 > .menu__item--header.menu__item--focused > .menu__link {
	text-decoration-color: rgb(255, 21, 0);
}

/* MENU CATALOG THEME ARROWS */

.menu--promo > .menu__item--parent > .menu__link::after {
	display: none;
	position: absolute;
	top: -2px;
	left: 5px;
	border: none;
	width: auto;
	height: 40%;
	background: transparent;
	content: attr(data-text);
	padding: 6px 14px 28px 16px;
	white-space: nowrap;
	box-shadow: 0 0px 4px 0px rgba(0, 0, 0, .7);
}

.menu--promo > .menu__item--parent > .menu__link::before {
	display: none;
	position: absolute;
	z-index: 9999;
	top: -2px;
	left: -1px;
	border: none;
	width: auto;
	height: 40%;
	background: #FFF;
	content: attr(data-text);
	padding: 5px 14px 28px 16px;
	white-space: nowrap;
}

.menu--catalog .menu--l2 > .menu__item--parent > .menu__link::after {
	display: none;
	position: absolute;
	z-index: 2;
	width: 0;
	height: 0;
	content: '';
	right: 0;
	top: 50%;
	margin-top: -5px;
	border-top: 6px solid transparent;
	border-right: 6px solid rgb(255, 255, 255);
	border-bottom: 6px solid transparent;
}

.menu--promo > .menu__item--focused > .menu__link::before,
.menu--catalog > .menu__item--focused > .menu__link::after,
.menu--catalog .menu--l2 > .menu__item--focused > .menu__link::after {
	display: block;
}

/* MENU CATALOG THEME FINE TUNING */

.menu--catalog > .menu__item:nth-child(11) > .menu__wrapper,
.menu--catalog > .menu__item:nth-child(13) > .menu__wrapper
	/* .menu--catalog > .menu__item:nth-child(15) > .menu__wrapper */
{
	left: auto;
	right: 0;
}

.menu--catalog > .menu__item:nth-child(11) .menu--l2 > .menu__item > .menu__wrapper,
.menu--catalog > .menu__item:nth-child(13) .menu--l2 > .menu__item > .menu__wrapper
	/* .menu--catalog > .menu__item:nth-child(15) .menu--l2 > .menu__item > .menu__wrapper */
{
	left: auto;
	right: 100%;
}

.menu--catalog > .menu__item:nth-child(11) .menu--l2 > .menu__item--parent > .menu__link::after,
.menu--catalog > .menu__item:nth-child(13) .menu--l2 > .menu__item--parent > .menu__link::after
	/* .menu--catalog > .menu__item:nth-child(15) .menu--l2 > .menu__item--parent > .menu__link::after */
{
	left: 0;
	border-right-color: transparent;
	border-left: 6px solid rgb(255, 255, 255);
}

.menu--catalog > .menu__item:nth-child(11) .menu--l3,
.menu--catalog > .menu__item:nth-child(13) .menu--l3
	/* .menu--catalog > .menu__item:nth-child(15) .menu--l3 */
{
	border-width: 4px 0px 1px 1px;
}

/* MENU PLAIN THEME */

.menu--plain {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.menu--plain > .menu__item {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

.menu--plain > .menu__item > .menu__wrapper {
	z-index: 9000;
	top: auto;
	right: 0;
	left: auto;
	padding-top: 6px;
}

.menu--plain > .menu__item > .menu__link {
	padding: .1em 0;
	color: rgb(80, 90, 90);
	background-color: transparent;
	text-decoration-color: transparent;
}

.menu--plain > .menu__item > .menu__link:hover {
	text-decoration-color: transparent;
}

.menu--plain > .menu__item > .menu__link--highlight {
	color: rgb(255, 21, 0);
	font-weight: 600;
}

.menu--plain > .menu__item--focused > .menu__link {
	color: rgb(167, 172, 172);
}

.menu--plain > .menu__item--focused > .menu__link--highlight {
	color: rgba(255, 21, 0, .7);
}

.menu--plain .menu--l2 {
	position: relative;
	border: solid 1px rgb(167, 172, 172);
	border-width: 4px 1px 1px;
	font-size: .9rem;
}

.menu--plain .menu--l2 > .menu__item {
	position: static;
}

.menu--plain .menu--l2 > .menu__item--header {
	display: none;
}

.menu--plain .menu--l2 > .menu__item > .menu__link {
	padding: .1em .6em .3em .6em;
}

.menu--plain .menu--l2 > .menu__item > .menu__wrapper {
	display: none !important;
}

/* MENU PLAIN THEME ARROWS */

.menu--plain > .menu__item--parent > .menu__link::after {
	display: none;
	position: absolute;
	z-index: 2;
	width: 0;
	height: 0;
	content: '';
	bottom: -6px;
	left: 50%;
	margin-left: -6px;
	border-right: 6px solid transparent;
	border-bottom: 6px solid rgb(167, 172, 172);
	border-left: 6px solid transparent;
}

.menu--plain > .menu__item--focused > .menu__link::after {
	display: block;
}

.menu--promo .menu__item--parent.menu__item--focused > .menu__wrapper {
	display: flex;
	top: 40px;
}

/** PROMO BLOCK **/

.menu--promo .menu__item--parent > .menu__wrapper {
	box-shadow: 0 0px 4px 0px rgba(0, 0, 0, .7);
	background-color: #fff;
	padding: 15px;
	margin-top: 0;
	border: none;
	font-size: .9rem;
	padding-top: 10px;
	height : 316px;
}

.menu--promo .menu__item--parent > .menu__wrapper > ul {
	float: left;
}

.only--menu-wrapper {
	display: flex;
	height: 100%;
}

.menu--promo.menu--catalog .menu--l2 {
	border-width:  0 2px 0 0;
	border-right-color: #eaebeb;
	width: 350px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding-right: 15px;
	height: 100%;
}

.promo--wrapper {
	border: none;
	width: 100%;
	height: 100%;
	padding-top: 20px;
}

.promo--content {
	overflow: hidden;
	padding: 0 0 0 20px;
}

.menu--promo .menu--l2 > .menu__item > .menu__link {
	padding: 0;
}

.menu--promo > .menu__item--focused > .menu__link {
	color: rgb(80, 90, 90);
}
	.menu--promo .menu__item--focused > .menu__link, .menu--promo .menu__item--expanded > .menu__link {
		background: transparent;
		text-decoration: none;
	}

	.menu--promo .menu__link:hover, .menu--promo .menu__link:hover {
		color: rgb(255,20,0);
	}

	.menu--promo .menu--l2 > .menu__item > .menu__link:after {
		display: none;
	}

.menu--promo .menu--l2 li:last-of-type a.menu__link {
	padding-bottom: 0;
}

.menu--promo .menu--l2 + .menu--l2 {
	margin-left: 15px;
	padding-right: 0;
}

.promo--wrapper__inner img {
	display: block;
}

.posters-right {
	margin-left: 25px;
}

.flow--wrapper {
	display: flex;
	overflow: hidden;
	width: 100%;
}


.promo--header, .menu--inner__header {
	margin-bottom: 10px;
	text-align: center;
	width: 100%;
	font-size: .9rem;
	display: inline-block;
	font-weight: 600;
}

.menu--promo .menu__item--header span {
	font-weight: 600;
}

.promo--wrapper__inner {
	display: flex;
	justify-content: space-between;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 18px;
	margin-top: 10px;
}

.promo--content .posters-right a:last-child img{
	margin-top: 11px;
}

.promo--template__three .posters-right a:last-child img {
	margin: 0;
}

.promo--content a {
	margin: 0;
	padding: 0;
	line-height: unset;
}


.promo--template__video {
	position: relative;
}

.promo--template__video video {
	display: block;
}

.muted__overlay:hover, .muted__overlay:hover svg {
	border-color: rgb(255,20,0);
}

.muted__overlay {
	cursor: pointer;
	width: 60px;
	height: 60px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 4px solid #FFF;
	background-color: transparent;
	position: absolute;
	top: 10px;
	right: 10px;

}

.promo--template__video .muted__overlay {
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 11px -5px black, inset 0px 0px 11px -5px black;
	margin: 5px;
}

.promo--template__video video + .muted__overlay svg {
	stroke: #FFF;
	width: 80%;
	height: 80%;
	transform: translateX(1px);
}

.promo--template__video .muted__overlay:hover svg,
.promo--template__video .muted__overlay:hover svg path,
.promo--template__video .muted__overlay:hover svg line {
	stroke: rgb(255,20,0);
}

.promo--template__video .plyr + .muted__overlay {
	display: none;
}

.promo--content .plyr video {
	width: auto;
}

.promo--template__one .posters-left .plyr video {
	width: 228px;
	height: 285px;
}
.promo--template__one .plyr[class~=fullscreen-active] div.plyr__controls,
.promo--template__two .plyr[class~=fullscreen-active] div.plyr__controls {
	padding-left: 80px !important;
}

.promo--template__one div.plyr__controls,
.promo--template__two div.plyr__controls {
	padding-left: 45px !important;
}

/*.promo--template__two h3, .promo--template__three h3, .promo--template__five h3 {*/
	/*text-align: center;*/
/*}*/

.promo--template__three .posters-left .plyr video {
	width: 228px;
	height: 285px;
}

.promo--template__one .plyr[class~=fullscreen-active] button.plyr__control[data-plyr="play"],
.promo--template__two .plyr[class~=fullscreen-active] button.plyr__control[data-plyr="play"] {
	padding: 12px;
}
.promo--template__one .plyr[class~=fullscreen-active] button.plyr__control[data-plyr="play"] svg.icon--not-pressed,
.promo--template__two .plyr[class~=fullscreen-active] button.plyr__control[data-plyr="play"] svg.icon--not-pressed {
	width: 27px;
}

.promo--template__one .plyr[class~=fullscreen-active] button.plyr__control[data-plyr="play"] svg,
.promo--template__two .plyr[class~=fullscreen-active] button.plyr__control[data-plyr="play"] svg {
	width: 25px;
	height: 25px;
}

.promo--template__one button.plyr__control[data-plyr="play"],
.promo--template__two button.plyr__control[data-plyr="play"] {
	padding: 7px;
}

.promo--template__one button.plyr__control[data-plyr="play"] svg.icon--not-pressed,
.promo--template__two button.plyr__control[data-plyr="play"] svg.icon--not-pressed {
	margin-left: -2px;
	width: 16px;
}

.promo--template__one button.plyr__control[data-plyr="play"] svg.icon--pressed,
.promo--template__two button.plyr__control[data-plyr="play"] svg.icon--pressed {
	padding-left: 1px;
}

.promo--template__one button.plyr__control[data-plyr="play"] svg,
.promo--template__two button.plyr__control[data-plyr="play"] svg {
	width: 14px;
	height: 14px;
}

.promo--template__one .plyr[class~=fullscreen-active]  div.plyr__controls button.plyr__control[data-plyr="play"],
.promo--template__two .plyr[class~=fullscreen-active]  div.plyr__controls button.plyr__control[data-plyr="play"] {
	left: 20px;
}

.promo--template__one div.plyr__controls button.plyr__control[data-plyr="play"],
.promo--template__two div.plyr__controls button.plyr__control[data-plyr="play"] {
	left: 5px;
	bottom: 5px;
}

.promo--template__one .plyr[class~=fullscreen-active] .plyr__menu, .promo--template__one .plyr[class~=fullscreen-active] .plyr__progress,
.promo--template__two .plyr[class~=fullscreen-active] .plyr__menu, .promo--template__two .plyr[class~=fullscreen-active] .plyr__progress {
	display: block;
}

.promo--template__one .plyr__menu, .promo--template__one .plyr__progress ,
.promo--template__two .plyr__menu, .promo--template__two .plyr__progress {
	display: none;
}

.promo--template__two .posters-left {
	display: flex;
	flex: 1;
}

.promo--template__two .posters-left .promo--template__video .plyr video {
	width: 228px;
	height: 285px;
}

.promo--template__two .posters-left .promo--template__video:last-child,
.promo--template__two .posters-left a:last-of-type {
	margin: 0 0 0 100px;
}

.promo--template__one .posters-right .plyr video,
.promo--template__two .posters-right .plyr video {
	width: 228px;
	height: 137px;
}

.promo--content .plyr.fullscreen-active video {
	width: 100%;
	height: 100%;
}

.promo--template__two .posters-right .promo--template__video:last-of-type,
.promo--template__one .posters-right .promo--template__video:last-of-type {
	margin-top: 12px;
}

.promo--template__three .posters-left {
	margin-left: 50px;
}

.promo--template__five a {
	margin-right: 50px;
}

.promo--template__three .plyr video {
	width: 506px;
}


.promo--content.promo--template__fourth {
	padding-left: 13px;
	height: 100%;
}

.promo--template__fourth .promo--wrapper__inner {
	height: 90%;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.promo--template__fourth h3 {
	text-align: center;
}

.promo--template__fourth .posters-right {
	margin-left: 15px;
}

.promo--content.promo--template__six .posters-right a:last-child img,
.promo--content.promo--template__five .posters-right a:last-child img,
.promo--content.promo--template__fourth .posters-right a:last-child img {
	margin-top: 0;
}

.promo--template__fourth .plyr video {
	width: 431px;
}

.promo--template__two .posters-left .promo--template__video .plyr video {
	width: 228px;
	height: 285px;
}



.promo--template__five .posters-left .plyr video {
	width: 506px;
	height: 285px;
}

.promo--template__six .plyr video,
.promo--template__five .posters-right .plyr video {
	width: 228px;
	height: 285px;
}

.promo--template__five .posters-right {
	margin-right: 50px;
}

.menu--promo .menu__item.menu__item--header {
	display: block;
}


.menu__link.rhombus {
	background-color: #505958 !important;
	transform: skew(-20deg);
}

.menu__link.rhombus .menu__text {
	transform: skew(20deg);
	color: #fff;
	display: inline-block;
}

.menu__link.rhombus .menu__text:hover {
	color: var(--red);
}

.menu__divider .transparent__devider {
	padding: 5px;
}

.menu--l2__group_name {
	font-size: 1rem;
	color: var(--red);
	/* text-transform: capitalize; */
}

.menu__item.menu--l2__group_name.devider_groups {
	height: 20px;
}

.menu__link.inclide_icon {
	position: relative;
	display: flex;
	align-items: center;

}

.level-promo__menu-icon {

	position: absolute;
	left: -2px;

}
