.navbar {
    background-color: var(--dx-color-header);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}

.nav-link {
    color: white !important;
}

.dropdown-menu {
    margin-top: 0;
    background-color: white;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px !important;
}

    .dropdown-menu .dropdown-toggle::after {
        vertical-align: middle;
        border-left: 4px solid;
        border-bottom: 4px solid transparent;
        border-top: 4px solid transparent;
    }

    .dropdown-menu .dropdown .dropdown-menu {
        left: 100%;
        top: 0%;
        margin: 0 20px;
        border-width: 0;
    }

        .dropdown-menu .dropdown .dropdown-menu.left {
            right: 100%;
            left: auto;
        }

.dropdown-item {
    color: black !important;
    font-size: 14px !important;
    display: flex !important;
    align-content: center !important;
    justify-content: space-between !important;
    align-items: center !important;
}

    .dropdown-item:active {
        background-color: var(--dx-color-header);
        color: white !important;
    }

@media (min-width: 768px) {
    .dropdown-menu .dropdown .dropdown-menu {
        margin: 0;
        border-width: 1px;
    }

    .dropdown-menu > li a:hover,
    .dropdown-menu > li.show {
        background: var(--dx-color-header);
        color: white !important;
    }

        .dropdown-menu > li.show > a {
            color: white !important;
        }
}

@media (width < 1000px) {
    .dropdown-menu {
        box-shadow: unset;
    }
}
