#header_menu {
	position: relative;
    /*background: #11A644;*/
	background: #86E2FF;
    border-radius: 8px;	
}

#header_menu > ul {
    height: 63px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    position: relative;
	/*margin-right: 60px;*/
}

#header_menu > ul li {
    height: 100%;
}

#header_menu > ul li > a {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 63px;
    color: #fff;
    text-decoration: none;
    height: 100%;
}

#header_menu > ul > li:has(>ul) > a {
    padding-right: 18px;
}

#header_menu > ul > li:has(>ul) > a::after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='5' height='8' viewBox='0 0 5 8' fill='none'%3E%3Cpath data-name='Объединение 6' d='M4.66675 4L0.666748 8L0.666748 0L4.66675 4Z' fill='white'/%3E%3C/svg%3E");
    position: absolute;
    right: 0;
}

#header_menu > ul > li ul {
    display: none;
    border-radius: 0 0 8px 8px;
    padding-top: 8px;
    margin-top: -8px;
}

#header_menu > ul > li ul li {
    padding: 0 21px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

#header_menu > ul > li > ul {
    position: absolute;
    z-index: 100;
    /*background: #11A644;*/
	background: #86E2FF;
    min-width: 308px;
    max-width: min-content;
    margin-left: -21px;
}

#header_menu > ul > li > ul a {
    line-height: 21px;
    padding: 15px 0;
}

#header_menu > ul > li:first-child > ul {
    left: 0;
    margin-left: 0;
}

#header_menu > ul > li:last-child > ul {
    right: 0;
    margin-left: 0;
}

#header_menu > ul > li:hover > ul {
    display: block;
}

#header_menu > ul > li:hover > a::after {
    transform: rotate(90deg);
}

#header_menu #search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
}

#search-panel {
	display: none;
	position: absolute;
	left: 0;
	right: 0;
    /*background: #11A644;*/
    background: #86E2FF;
	/*width: 1200px;*/
	margin-top: 16px;
	box-shadow: 0 1px 2px 0 rgba(0,0,0,.2);
	padding: 15px;
	z-index: 2;
}

#search-panel form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
	column-gap: 1%;
}

#search-panel input {
	width: 89%;
	display: block;
    color: #212121;
	margin: 0;
    padding: 9px 15px;
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

#search-panel button {
	display: block;
	width: 10%;
    color: #212121;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
	cursor: pointer;
    /*transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;*/
}

#search-panel button:hover {
	box-shadow: 0 1px 10px 0 rgba(0,0,0,.2);	
}

body,
#header,
#content,
#footer,
#header div#top-menu {
	background-color: #e9fefe;
}
