.main-navigation {
	display: flex;
	align-items: center;
	justify-content: right;
	width: 100%;
	max-width: 1900px;
	margin-left: auto;
	margin-right: 0;
	position: relative;
}

.primary-menu {
	display: flex;
	gap: 20px;
	list-style: none;
	padding: 0;
}

.primary-menu-link {
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	text-transform: uppercase;
}

.search-form--main {
	position: relative;
	width: 100%;
}

.search-field--main {
	background-color: #e3e7ee;
	border-radius: 50px;
	border: none;
	font-size: 1rem;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	padding-right: 10px;
	width: 100%;
}

.search-field--main:focus {
	box-shadow: 0 1px 1px 0 rgba(89, 89, 89, 0.4);
}

.search-submit {
	background: none;
	border: none;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	border-radius: 50%;
	width: 38px;
	height: 38px;
	padding: 5px;
}

.ri-search-line {
	width: 20px;
	margin-top: 2px;
}

.tools-menu {
	display: flex;
	list-style: none;
	margin-top: auto;
	margin-bottom: auto;
	padding-left: 0;
	padding-right: 20px;
	gap: 16px;
}

.tools-menu li {
	display: flex;
	align-items: center;
	flex-direction: column;
}

.tools-menu .menu-item {
	font-size: 1rem;
	line-height: 1.1;
	text-align: center;
	justify-content: center;
	text-wrap: nowrap;
	position: relative;
}

.tools-menu-link {
	color: #000;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.tools-menu a {
	text-decoration: none;
}

.tools-menu-link::before {
	content: "";
	background-image: url(../../../images/icons/account-arrow-left-outline.svg);
	background-size: contain;
	display: block;
	width: 32px;
	height: 32px;
}

#responsive-toggle {
	background: none;
	border: 0;
	padding-left: 5px;
	padding-right: 0;
	padding-top: 7px;
	padding-bottom: 5px;
}

#hamburger-icon {
	width: 42px;
	height: 29px;
	position: relative;
	margin: auto;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
}

#hamburger-icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #000;
	border-radius: 1px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

#hamburger-icon span:nth-child(1) {
	top: 0px;
}

#hamburger-icon span:nth-child(2),
#hamburger-icon span:nth-child(3) {
	top: 10px;
}

#hamburger-icon span:nth-child(4) {
	top: 20px;
}

.responsive-toggle-open #hamburger-icon span:nth-child(1) {
	top: 10px;
	width: 0%;
	left: 50%;
}

.responsive-toggle-open #hamburger-icon span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.responsive-toggle-open #hamburger-icon span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.responsive-toggle-open #hamburger-icon span:nth-child(4) {
	top: 10px;
	width: 0%;
	left: 50%;
}

.hamburger-menu-text {
	font-size: 1rem;
	line-height: 1.1;
	text-align: center;
}
