.lock {
	overflow: hidden;
}

.bottom__menu {
	display: flex;
	position: fixed;
	margin: 0;
	padding: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #FFFFFF;
	box-shadow: 0px -4px 14px rgba(0, 0, 0, 0.1);
	border-radius: 4px 4px 0px 0px;
	z-index: 99999999999;
}

.bottom__menu-items {
	display: flex;
	justify-content: space-between;

	list-style-type: none;
	width: 100%;
	padding: 0;
	margin: 0;
	margin: 0 auto;
}

.bottom__menu-items li {
	padding: 13px 17px 13px 16px;
	position: relative;
}

.menu__item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column-reverse;
	text-decoration: none;
	font-size: 6px;
	color: #afafaf;
	position: relative;
}

.menu__item svg {
	width: 16px;
	height: 16px;
}

.selected__item {
	color: #E02C38;
}

.selected__item svg {
	fill: #E02C38;
}

.catalog__container {
	width: 100%;
	height: calc(100vh - 56px);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 45px;

}

.catalog__list {
	width: 100%;
	list-style-type: none;
	margin-left: 8px;
	margin-right: 8px;
	padding: 0;
	max-height: 80vh;
	overflow: scroll;
}

.open-catalog {
	color: #AFAFAF;
}

.open-catalog use {
	fill: #AFAFAF;
}

.catalog__btn-active {
	color: #E02C38;
}

.catalog__btn-active svg use {
	fill: #E02C38;
}

.catalog__list h3 {
	color: #131212;
}

.bottom__menu_container {
	max-width: 360px;
	width: 100%;
	margin: 0 auto;
}

.catalog__item {
	display: flex;
	justify-content: space-between;
	text-decoration: none;
	padding: 12px;
	border-radius: 4px;
	margin-bottom: 8px;
	font-weight: 600;
	color: #535763;
	transition: all 0.2s ease-in-out;
}

.catalog__item:hover {
	color: #535763;
}

.catalog__item-active {
	background: #E02C38;
	color: #fff;
	transition: all 0.2s ease-in-out;
}

.catalog__btn {}

.catalog__items {
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	background-color: #FFFFFF;
	z-index: 9999;
	transform: translate(0%, 100%);
	transition: all 0.5s ease-in-out;
}

.active__items {
	transform: translate(0, 0);
	transition: all 0.5s ease-in-out;
}

.mobile__menu-counter {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 12px;
	height: 12px;
	background-color: #fff;
	border-radius: 50%;
	top: 16%;
	right: 30%;
}

.counter {
	color: #E02C38;
	font-size: 8px;
}

.mobile__basket_count {
	width: 12px;
	height: 12px;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 24%;
	top: 15%;
	background-color: #fff;
	border-radius: 50%;
	color: #E02C38;
	font-size: 8px;
}

.favorite__svg {
	fill: none;
	stroke: #AFAFAF;
}