
.dropdown__list {
    display: flex;
    flex-direction: column;

    list-style-type: none;

    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-transform: none;

    background-color: #FFF;
    border-radius: 8px;
    padding: 8px 16px;
    box-shadow: 0 5px 5px #00000040;
}

.dropdown__item {
    padding: 8px 16px;
    border-radius: 4px;
}



.dropdown__item-link, .dropdown__item-link:active {
    padding: 20px 0;
    color: #426DA9;
    text-decoration: none;
}

.dropdown__item-link:hover {
    color: #002855;
}

.dropdown__item:hover {
    background-color: #EAF2FC;
}