.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropdown-toggle {
    border: none;
    outline: none;
    padding: 14px 16px;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown-content a::after {
    bottom: 10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media screen and (max-width: 1180px) {
    .dropdown {
        float: none;
        width: 100%;
        overflow: visible;
    }

    .dropdown .dropdown-toggle {
        width: 100%;
        min-height: 44px;
        padding: 0 14px;
        border-radius: 10px;
        background: #eef1f4;
        text-align: center;
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin-top: 10px;
        background: transparent;
        box-shadow: none;
        z-index: auto;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.is-open .dropdown-content {
        display: grid;
        gap: 10px;
    }

    .dropdown-content a {
        float: none;
        width: 100%;
        min-height: 44px;
        padding: 0 14px;
        border-radius: 10px;
        background: #eef1f4;
        text-align: center;
    }

    .dropdown-content a:hover,
    .dropdown-content a:focus {
        background: #e4ece7;
    }
}
