.jump-menu {
	width: 32px;
	min-width: 32px;
	height: 32px;
}

.jump-menu__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.jump-menu__btn span{
	display: none;
}
.jump-menu__btn:hover {
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1), 0px 2px 8px rgba(0, 0, 0, 0.03);
}

.jump-menu__btn:active {
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.03), inset 0px 2px 1px rgba(0, 0, 0, 0.1);
}

.jump-menu__btn:hover rect {
	fill: #B4B2B2;
}

.jump-menu__btn rect {
	transition: .3s ease-out;
}

.jump-menu__btn.active rect {
	fill: #00A76D;
}

.jump-modal {
	position: absolute;
	top: 65px;
	left: 0;
	padding: 24px 0 48px 0;
	background: #FFF;
	visibility: hidden;
	opacity: 0;
	overflow-y: scroll;
	max-width: 100%;
	max-height: calc(100vh - 65px);
	transition: .3s ease-out;
	border-radius: 8px;
	box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}

.jump-modal::-webkit-scrollbar {
	width: 0;
}

.jump-modal.active {
	visibility: visible;
	opacity: 1;
}

.jump-modal__wrapper {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
    width: 100%;
	height: 100%;
	padding: 0 48px 0 24px;
}

.jump-modal__wrapper::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 20px;
	width: 20px;
	height: 20px;
	transform: rotate(45deg);
	background: #FFF;
	z-index: -1;
}

.jump-modal__close {
	position: absolute;
	top: 0;
	right: 25px;
	width: 10px;
	height: 10px;
	cursor: pointer;
}

.jump-modal__close svg {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.jump-modal__item {
	display: flex;
	flex-direction: column;
	min-width: 190px;
	margin-right: 40px;
	margin-bottom: 20px;
}

.jump-modal__item:last-child {
	margin-right: 0;
	margin-bottom: 0;
}

.jump-modal__link {
	margin-bottom: 17px;
}

.jump-modal__link_bottom {
	position: absolute;
	bottom: -24px;
	right: 24px;
	align-self: flex-end;
	margin-top: auto;
	text-decoration: underline;
}

.jump-modal__link:last-child {
	margin-bottom: 0;
}

.jump-modal__title {
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	margin-bottom: 17px;
}

.jump-modal__link {
	display: flex;
	align-items: center;
}

.jump-modal__icon {
	width: 22px;
	height: 22px;
	margin-right: 6px;
}

.jump-modal__icon img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 1149px) {
	.logo {
		margin-right: auto;
	}
	.logo img {
		width: 100%;
		height: auto;
	}
	.jump-menu {
		margin-right: 10px;
	}
}

@media (max-width: 575px) {
	.container-fluid.header .row .col.logo {
		max-width: 180px;
	}
}
