:root {
	--hdbn-color: #363636;
	--hdbn-bg: #fff;
	--hdbn-more-bg: var(--hdbn-bg);
	--hdbn-more-color: var(--hdbn-color);
	--hdbn-color-active: #365edc;
	--hdbn-color-toggled: #050505;
	--hdbn-counter-bg: #365edc;
	--hdbn-counter-color: #fff;
	--hdbn-sliding-border: rgba(0, 0, 0, 0.1);
}
body.fixed {
	overflow: hidden;
}
.hdbn {
	height: 68px;
	width: 100%;
	display: none;
	position: relative;
	font-size: 13px;
	color: var(--hdbn-color);
}
.hdbn-panel {
	position: fixed;
	bottom: 0px;
	left: 0px;
	right: 0px;
	height: inherit;
	background: var(--hdbn-bg);
	z-index: 9999999999997;
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}
.hdbn-menu {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	overflow-x: auto;
	-webkit-overflow-scrolling: auto;
	position: relative;
	z-index: 1001;
	background: var(--hdbn-bg);
}
.hdbn-menu::-webkit-scrollbar {
	-webkit-appearance: none;
}

.hdbn-menu::-webkit-scrollbar:vertical {
	width: 6px;
}

.hdbn-menu::-webkit-scrollbar:horizontal {
	height: 6px;
}

.hdbn-menu::-webkit-scrollbar-thumb {
	background-color: rgba(153, 153, 153, 1);
	background: #ccc;
	border-radius: 10px;
	border: 2px solid #ffffff;
}

.hdbn-menu::-webkit-scrollbar-track {
	border-radius: 10px;
	background-color: #ffffff;
}
.hdbn-menu-item {
	height: inherit;
	display: flex;
	align-items: center;
	background: none;
	outline: none;
	justify-content: center;
	flex-grow: 1;
}
.hdbn-menu-item a,
.hdbn-sliding-button {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	min-width: 75px;
	max-width: 200px;
	width: 100%;
	height: 62px;
	text-align: center;
	background: transparent;
	position: relative;
	overflow: hidden;
	padding: 0px 3px 1px;
	text-decoration: none;
	gap: 3px;
	color: var(--hdbn-color);
	line-height: 25px;
}

.hdbn-menu-item a:hover,
.hdbn-menu-item a:focus {
	outline: none;
}
.hdbn-menu-item-icon {
	display: block;
	position: relative;
	min-width: 18px;
	height: 25px;
}

.hdbn-menu-item-icon svg path {
	fill: currentColor;
}
span.hdbn-menu-item-icon.no-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
span.hdbn-menu-item-icon.no-icon .hdbn-menu-item-counter {
	position: static;
}
.hdbn-menu-item-icon img {
	display: block;
	max-height: 25px;
	max-width: 100%;
}
.hdbn-menu-item-text {
	display: block;
	align-self: normal;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	line-height: 1.3em;
}

.hdbn-menu-item-icon .svg {
	top: -1px;
	display: inline-block;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	vertical-align: middle;
	min-width: 30px;
	min-height: 30px;
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	min-width: auto;
	min-height: auto;
}
.hdbn-menu-item-icon .svg svg {
	display: block;
}

.hdbn-menu-item--active,
.hdbn-menu-item--active a {
	color: var(--hdbn-color-active);
}
.hdbn-menu-item--active svg path {
	fill: var(--hdbn-color-active);
}
.hdbn-menu-item--active svg rect,
.hdbn-menu-item--active svg circle {
	stroke: var(--hdbn-color-active);
}
.hdbn-menu-item .hdbn-menu-item-counter {
	position: absolute;
	top: 0px;
	right: 0px;
}
.hdbn-menu-item .hdbn-menu-item-counter--in-icons {
	top: -3px;
	right: -9px;
}
.hdbn-menu-item .hdbn-menu-item-counter.hdbn-menu-item-counter--empty {
	display: none;
}
.hdbn-menu-item .hdbn-menu-item-counter__content {
	padding: 0 4px;
	min-width: 16px;
	height: 15px;
	line-height: 16px;
	border-radius: 100%;
	background: var(--hdbn-counter-bg);
}
.hdbn-menu-item .hdbn-menu-item-counter__content-value {
	color: var(--hdbn-counter-color);
	font-size: 0.667em;
}

.hdbn-sliding {
	position: absolute;
	bottom: 100%;
	display: none;
	left: 0;
	width: 100dvw;
	overflow: hidden;
	background: var(--hdbn-bg);
	box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
}
.hdbn-sliding-menu {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden auto;
	transform: translateX(0%);
	transition: transform 0.15s linear;
	will-change: transform;
	background: var(--hdbn-bg);
	overscroll-behavior: contain;
}
.hdbn-sliding-dropdown {
	transform: translateX(100%);
}
.hdbn-sliding-dropdown.opened {
	transform: translateX(0%);
}
.hdbn-sliding-item {
	border-bottom: 1px solid var(--hdbn-sliding-border);
	display: flex;
	width: 100%;
	align-items: center;
	margin: 0;
}
.hdbn-sliding-item a {
	color: var(--hdbn-color);
	text-decoration: none;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 15px;
	flex: 1;
}
.hdbn-sliding-menu-close {
	padding: 15px;
	gap: 15px;
}
.hdbn-sliding-more {
	background-color: var(--hdbn-more-bg);
	color: var(--hdbn-color);
	border: none;
	width: 50px;
	cursor: pointer;
	align-self: normal;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hdbn-sliding-more svg {
	display: block;
}
.hdbn-sliding-menu-close svg path {
	stroke: var(--hdbn-color);
}
.hdbn-sliding-more svg path {
	stroke: var(--hdbn-more-color);
}

.hdbn-sliding-button.toggled svg path {
	fill: currentColor;
}

.hdbn-sliding-button.toggled {
	color: var(--hdbn-color-toggled);
}
.hdbn-sliding-button.toggled .hdbn-menu-item-text {
	font-weight: 400;
}

.hdbn-sliding.opened {
	bottom: 100%;
	display: block;
	max-height: calc(100dvh - 68px);
	height: 100dvh;
}
@media (max-width: 767px) {
	.hdbn {
		display: block !important;
	}
}
@media (max-width: 380px) {
	.hdbn-menu-item a,
	.hdbn-sliding-button {
		font-size: 12px;
		min-width: 65px;
	}
}