.dropdown {
	display: flex;
	align-items: center;
}
.dropdown a {
	text-decoration: none;
}
.dropdown a:hover + ul,
.dropdown a:focus + ul,
.dropdown a:hover + div,
.dropdown a:focus + div {
	opacity: 1;
	pointer-events: all;
}
.dropdown.desktop-login {
	margin-left: auto;
}
.dropdown.mobile-items {
	gap: 0.5rem;
	margin: 1rem 0;
}
.dropdown.mobile-login {
	margin-right: 0;
	margin-left: auto;
}
.dropdown-menu {
	box-shadow: 0px 8px 8px #0A0A0D66;
	padding: 1.5rem 0;
	margin-top: -0.1rem;
	opacity: 0;
	pointer-events: none;
	z-index: 2;
}
.dropdown-menu:active,
.dropdown-menu:hover {
    opacity: 1;
	pointer-events: all;
}
.dropdown-menu .dropdown-item {
	max-width: 100%;
	color: #000000;
	font-size: 1rem;
	line-height: 1rem;
	margin: 0;
	padding: 0.5rem 2rem;
	white-space: normal;
}
.dropdown-menu.dropdown-right .dropdown-item {
	text-align: right;
	white-space: nowrap;

}
.dropdown-menu-right {
	right: 0;
	left: auto;
}
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover {
	color: #E30A17;
	background-color: transparent;
}
.dropdown-menu .dropdown-divider {
	margin: 0.5rem 2rem;
}
.dropdown-menu {
	border-radius: 0.5rem;
}
.dropdown-menu.dropdown-panels {
	display: flex;
	flex-wrap: nowrap;
	margin-left: 9.5rem;
	margin-top: -2rem;
}
.dropdown-menu.dropdown-panels .panel {
	display: inline-block;
	border-right: 1px solid #E1E4E6;
}
.dropdown-menu.dropdown-panels .panel:last-child {
	border: none;
}
.dropdown-menu.dropdown-menu-mobile {
	height: 100vh;
	top: 48px;
	margin-top: -1rem;
	border: 1px solid #E1E4E6;
	border-radius: 0;
	box-shadow:
				inset 0 -8px 3px 6px #ffff,
				inset 0 2px 3px 0px #0A0A0D66
}
.dropdown-menu.dropdown-menu-mobile.mobile-left-t1 {
	width: 100vw;
	padding: 0;
	margin-top: 0;
	margin-left: -1rem;
	border: none;
}
.dropdown-menu.dropdown-menu-mobile.mobile-left-t2 {
	width: 100vw;
	top: 1rem;
	padding: 0;
	margin-top: -1rem;
	border: none;
}
.dropdown-menu.dropdown-menu-mobile.mobile-right {
	margin-right: -2rem;
	padding-top: 2.5rem;
}
.dropdown-menu.dropdown-menu-mobile .dropdown-item {
	padding: 1.5rem 2rem;
	white-space: nowrap;
}
.social-links-mobile {
	display: flex;
	margin: 2rem;
	justify-content: space-around;
}