.gform_fields {
    list-style: none;
}


@media (max-width: 1000px) {
    .dropdown {
        background-color: var(--theme);
        color: #fff;
        padding: 1rem 0;
        text-align: center;
        width: 100%;
        box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
        transition: all 0.3s ease;
        border-radius: 5px;
        margin-bottom: 30px;
        position: relative;
        margin-right: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-left: 1rem;
        padding-right: 1rem;
    }

        .dropdown:hover {
            background: var(--theme-darker);
            border-color: var(--theme-darker);
        }

            .dropdown:hover > a {
                background: var(--theme-darker);
                border-color: var(--theme-darker);
            }

        .dropdown .dropdown-list {
            color: var(--black);
            display: none;
            position: absolute;
            z-index: 1;
            list-style: none;
            background-color: #fff;
            padding: 1rem 0;
            text-align: center;
            width: 100%;
            box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.15);
            transition-duration: 0.5s;
            border-radius: 5px;
            margin-top: 10px;
            top: 55px;
            margin-left: -1rem;
        }

        .dropdown.open .dropdown-list {
            display: block;
        }

        .dropdown i {
            height: 15px;
            display: inline !important;
            margin-left: 15px;
            transition-duration: 0.5s;
        }

        .dropdown.open i {
            transform: rotateZ(90deg);
        }

        .dropdown li {
            text-align: left;
            padding-left: 15px;
            padding-right: 15px;
        }

            .dropdown li:hover {
                background-color: #eee;
                color: var(--theme) !important;
            }

        .dropdown input:checked + label {
            color: var(--theme) !important;
        }

        .dropdown label {
            padding: 1rem 0.25rem;
            font-size: 1rem;
            text-align: left;
        }

        .dropdown input {
            position: absolute;
        }

    .dropdown-list a {
        background-color: transparent;
        border: transparent;
        color: var(--text-dark) !important;
        display: block;
    }

        .dropdown-list a:hover {
            background-color: transparent;
            border: transparent;
            color: var(--theme-darker) !important;
        }

    .dropdown-list .button.active {
        color: var(--theme-alt) !important;
        background-color: transparent !important;
        border: transparent !important;
    }

    .dropdown.active {
        background-color: var(--theme-alt);
        border-color: var(--theme-alt);
    }

        .dropdown.active > .button {
            background-color: var(--theme-alt);
            border-color: var(--theme-alt);
        }

    .all-button-desktop {
        display: none !important;
    }

    .all-button-mobile {
        display: flex !important;
    }
}

.dropdown {
    display: flex;
}

    .dropdown ul {
        display: flex;
        position: relative;
        background-color: transparent;
        top: 55px;
    }

    .dropdown:hover ul {
        display: flex;
    }

    .dropdown i {
        display: none;
    }

.dropdown-list .button.active {
    background-color: var(--theme-alt);
    border-color: var(--theme-alt);
}

.dropdown .button.active {
    background-color: var(--theme-alt);
    border-color: var(--theme-alt);
}

.all-button-desktop {
    display: inline;
}

.all-button-mobile {
    display: none;
}
