.pushy-top {
	background: #0752A2;
	height: 50px;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pushy-title {
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 500;
	color: #fff;
}

.pushy-close {
	background: url('https://www.ugrasu.ru/local/templates/yugu2021/components/bitrix/menu/yugu_multilevels/img/close.svg');
	width: 17px;
	height: 17px;
	background-size: contain !important;
	cursor: pointer;
	transition: 0.3s ease;
	display: inline-block;
	filter: brightness(0) invert(1);
}

.pushy-close:hover {
	opacity: 0.7;
}

.right-side-show-menu li ul {
	display: none;
}

.right-side-show-menu li ul.show {
	display: table;
	margin-top: 10px;
}

.right-side-show-menu li {
	display: block;
	margin: 0 15px;
	padding: 20px 15px;
	border-bottom: 1px solid #bdc2d0;
}

.right-side-show-menu li a {
	font-weight: 500;
	display: block;
	font-size: 16px;
}

.right-side-show-menu li ul.show li {
	border: 0;
	padding: 5px 0;
}

.right-side-show-menu li ul.show li a {
	border: 0;
	padding: 0;
	font-weight: 400;
}


.show-ul {
	width: 24px;
	height: 24px;
	border-radius: 100%;
	border: 2px solid #bdc2d0;
	transition: all .2s linear;
	z-index: 10;
	background: #fff;
	position: relative;
	cursor: pointer;
}

.show-ul:hover, .show-ul.active {
	border-color: #0d49cd;
}

.show-ul:after, .show-ul:before {
	content: '';
	position: absolute;
	background: #bdc2d0;
	transition: all .2s linear;
}

.show-ul:hover:after, .show-ul:hover:before {
	background: #0d49cd;
}

.show-ul:before {
	width: 10px;
	height: 2px;
	top: 50%;
	margin-top: -1px;
	left: 50%;
	margin-left: -5px;
}

.show-ul:after {
	width: 2px;
	height: 10px;
	top: 50%;
	margin-top: -5px;
	left: 50%;
	margin-left: -1px;
	transform: rotate(0deg);
}


.show-ul.active:after {
    transform: rotate(90deg);
    background: #0d49cd;
}

.li-flex {
	display: grid;
    align-items: center;
    grid-template-columns: 1fr 30px;
}