.dropdown-custom .dropdown {
    padding: 0rem 1rem;
    max-height: 0vh;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    margin-bottom: 1rem !important;
}

.dropdown .dropdown-custom .dropdown-link-active+.dropdown {
    height: auto;
    max-height: 50vh;
    padding: 0rem 1rem;
    display: inline-table;
    transition: max-height 0.2s ease-in-out;


}
.dropdown-custom .dropdown .dropdown-content {
    margin-left: 1rem;
    display: block;

    /* background-color: rgb(53, 124, 255); */
}

.dropdown-custom .dropdown .dropdown-content::before {
    width: 1px;
    background-color: #9f9f9f;
    position: absolute;
    height: 100%;
    margin-left: 15px;
    content: " ";
}



.dropdown .dropdown-custom .dropdown-link-active:before {
    transform: rotate(90deg);
}


.dropdown .dropdown-custom .dropdown-link::before {
    font-family: FontAwesome;
    font-size: 10pt;
    content: "\f054";
    /* content: "f054"; */
    /* background-color: red; */
    position: absolute;
    right: 2rem;
    padding: 3px 0;
}

.dropdown-custom ul {
    margin-bottom: 0 !important;
    list-style: none;
}

.dropdown-custom ul li {
    margin-bottom: 1rem;
    color: white;
    font-size: 10pt;
    position: relative;
}

.dropdown-custom ul li:last-child {
    margin-bottom: 0;
}

.dropdown-custom ul li a {
    color: white;
}

.dropdown-custom ul li a:hover {
    border: none !important;
}