.dropdown-menu {
    width: fit-content;
    display: flex;
    column-gap: 24px;
    background-color: var(--e-global-color-secondary);
    padding: 32px;
    border-radius: 16px;
}

.dropdown-menu .left {
/*     width: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 16px;
    height: 100%;
}
.dropdown-menu .left > a{
	width: 100%;
}
.dropdown-menu .left .card {
       display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 8px;
    padding: 8px 40px 8px 16px;
    border-radius: 8px;
    border: 2px solid #FFF;
    cursor: pointer;
    background-color: #FFF;
    width: 100%;
    transition: all 0.3s ease;
}
.dropdown-menu .left .card img{
	display: flex;
	width: 40px;
	height: 40px;
	padding: 10px;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	background:  var(--e-global-color-secondary);
}
.dropdown-menu .left .card.active  img{
	background:  var(--e-global-color-accent, #2870B6);
}
.dropdown-menu .left .card:hover {
	background-color: var(--e-global-color-primary, #2870B6);
    border: 2px solid var(--e-global-color-primary, #2870B6);
}
.dropdown-menu .left .card:hover img {
    background: var(--e-global-color-accent, #2870B6);
}
.dropdown-menu .left .card:hover span {
    color: #FFF;
}
.dropdown-menu .left .card.active {
    border-color: var(--e-global-color-primary);
    background-color: var(--e-global-color-primary, #123454);
}

.dropdown-menu .left .card.active span {
    color: #FFF;
}

.dropdown-menu .left .card svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    padding: 8px;
}

.dropdown-menu .left .card span {
    color: #123454;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    letter-spacing: -0.2px;
}

.dropdown-menu .right {
/*     width: 50%; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 16px;
    height: 100%;
}

.dropdown-menu .right .card {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 16px;
    height: 100%;
    width: 100%;
    padding: 24px 16px;
    background-color: #FFF;
    border-radius: 16px;
}

.dropdown-menu .right .card.active {
    display: flex;
}

.dropdown-menu .right .card .parent {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 8px;
    width: 100%;
}

.dropdown-menu .right .card .parent svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    padding: 8px;
}

.dropdown-menu .right .card .parent span {
    color: #123454;
    font-family: "DM Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%; /* 24px */
    letter-spacing: -0.2px;
}

.dropdown-menu .right .card .children {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    row-gap: 16px;
    height: 100%;
    width: 100%;
}

.dropdown-menu .right .card .children a {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    column-gap: 8px;
    width: 100%;
	padding: 8px;
}

.dropdown-menu .right .card .children a svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
    padding: 8px;
}

.dropdown-menu .right .card .children a span {
    color: #123454;
	font-family:  "DM Sans";
	font-size:  16px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%; /* 19.2px */
}
