ul.dropdown {
	display: none;
}
ul.header-mobile__menu-list li {
	position: relative;
}
.header-mobile__menu-list span {
	position: absolute;
	right: 20px;
	top: 22px;
	background-image: url("images/arrow-right.svg");
	width: 6px;
	height: 11px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.submenu-item.parent span {
	width: 15px;
	height: 8px;
	background-image: url("images/arrow-down_o.svg");
}
.header-mobile__menu-item.parent.open > span {
	transform: rotate(90deg);
	transform-origin: center;
	transition: all 0.2s;
	top: 42px;
}
.submenu-item.parent.open > span {
	transform: rotate(180deg);
	transform-origin: center;
	transition: all 0.2s;
}
.header-mobile__menu-item.parent.open > a {
	display: flex;
	width: 100%;
	align-items: center;
	padding: 20px 19px;
	background-color: var(--main-orange);
	color: white;
}
.header-mobile__menu-list ul.dropdown {
	background-color: white;
}
.header-mobile__menu-list ul.dropdown li {
	padding: 16px 19px;
	position: relative;
	border-bottom: 1px solid rgba(58, 58, 58, 0.12);
}
.header-mobile__menu-list ul.dropdown li:last-child {
	border-bottom: unset;
}
.header-mobile__menu-list ul.dropdown a {
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	text-transform: capitalize;
	color: #626262;
}
