.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 7px 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 7px 20px;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 14px;
    text-decoration: none;
}
.dropdown-item.active {
    background-color: var(--color-primary);
    color: #fff;
}
.dropdown-item:hover{
    background: #f1f1f1;
}
.dropdown-menu>li>a {
    font-size: 14px;
}
