﻿.dropdown-toggle::after {
    display: none !important;
}

.dropdown-menu .dropdown-item {
    padding: 0.75rem !important;
}

    .dropdown-menu .dropdown-item i {
        margin: 0rem;
        font-size: 1rem;
        line-height: 0;
        display:flex;
        flex-direction:column;
        align-items: center;
        justify-content: center;
    }


.fade-in {
    animation: fadeIn 0.2s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}