.dropdown-container{
    position: relative;
}

.dropdown-container .dropdown-items{
    position: absolute;
    background: white;
    display:none;
    width: 100%;
}

.animated.dropdown-items{
    display:block !important;
}

.dropdown-items a{
    font-size: 15px;
    font-weight: 500;
    line-height: 16px;
    margin: 1rem .5rem 1rem .5rem;
    padding: 0px 10px 10px 0px !important;
}


@media(max-width: 987px) {
    .dropdown-items{
        position: relative !important;
        display:block !important;
    }
    .animated.dropdown-items{
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        -ms-animation: none !important;
        animation: none !important;
    }

}