.dropdown {
    width: 200px;
}

.dropdown-toggle {
    position: relative;
    width: 100%;
    padding: 5px 10px;
    font-size: 14px;
    border: solid 1px #015C7F;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
}

.dropdown-toggle svg {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-toggle svg {
    transform: rotate(0deg);
}

.dropdown-menu {
    position: absolute;
    width: 100%;
    background: white;
    border: solid 1px #015C7F;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    z-index: 10;
    left: 0%;
    top: 120%;
    border-radius: 5px;
}

.dropdown.open .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 5px 10px;
    cursor: pointer;
    color: #27628B;
}

.dropdown-menu li:hover {
    background: #e5f3f9;
}

.dropdown-toggle span {
    color : #888686;
}


