.industry-filter {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.industry-filter p {
    font-size: var(--font-size-18);
    font-weight: var(--mi-font-weight-light);
    color: var(--color-black);
    margin-right: 10px;
    margin-bottom: 0;
}

.industry-select {
    height: 42px;
    width: 300px;
    position: relative;
    margin-right: 0.625rem;
}

.content-filter-dd {
    width: 100%;
    padding: 0;
    border-radius: calc(42px / 2);
    position: absolute;
    z-index: 100;
    color: var(--color-black);
    list-style-type: none;
}

.content-filter-dd > li {
    position: relative;
    color: var(--color-black);
}

.content-filter-dd > li .industry-select-title {
    color: var(--color-black);
    padding: 0 0.625rem;
    cursor: pointer;
    font-size: var(--font-size-18);
    background: #E8E8E8;
    padding: 0.625rem;
    border-radius: calc(42px / 2);
    position: relative;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
}

.content-filter-dd > li .industry-select-title::before {
    background: url('../images/expand_more.svg') no-repeat scroll 95% center;
    position: absolute;
    content: '';
    width: 12px;
    height: 8px;
    right: 15px;
    bottom: 0;
    top: 0;
    z-index: 103;
    margin: auto;
}

.content-filter-dd li.active .industry-select-title {
    border-color: rgba(59, 65, 64, 0.2);
}

.content-filter-dd > li {
    position: relative;
    cursor: pointer;
}

.industry-select .content-filter-dd > li > .dd-industry {
    display: none;
    width: 100%;
    background-color: transparent;
    padding: 0.625rem;
    list-style: none;
    background: #F7F7F7;
    border-radius: 20px;
    border: 1px solid rgba(59, 65, 64, 0.2);
    margin-top: 6px;
}

.industry-select .content-filter-dd > li.active > .dd-industry {
    display: block;
}

.industry-select .content-filter-dd > li > .dd-industry li {
    color: var(--color-black);
    padding: 6px 14px;
    font-weight: var(--mi-font-weight-regular);
    font-size: var(--font-size-16);
}

.industry-select .content-filter-dd > li > .dd-industry li:hover {
    background: #E6E6E6;
    border-radius: 99em;
}

.industry-select .content-filter-dd > li > .dd-industry li a {
    color: var(--color-black);
    font-weight: var(--mi-font-weight-regular);
    font-size: var(--font-size-16);
    display: block;
}

.industry-select .content-filter-dd > li > .dd-industry li:before {
    display: none;
}

.industry-select .content-filter-dd > li > .dd-industry li .form-group {
    display: flex;
    align-items: center;
}

.industry-select .content-filter-dd > li > .dd-industry li .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.industry-select .content-filter-dd > li > .dd-industry li .form-group label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    width: 100%;
}

.industry-select .content-filter-dd > li > .dd-industry li .form-group label:before {
    content: '';
    -webkit-appearance: none;
    background-color: transparent;
    border: 2px solid var(--color-black);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 7px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 10px;
    border-radius: 4px;
}

.industry-select .content-filter-dd > li > .dd-industry li .form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 6px;
    width: 6px;
    height: 10px;
    border: solid var(--color-black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-utils {
    margin-top: 8px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #E6E6E6;
    border-radius: 99em;
}

.industry-select .content-filter-dd > li > .dd-industry li.filter-utils {
    padding: 10px 14px;
}

.filter-utils .reset-btn {
    background: transparent;
    color: var(--color-black);
    padding: 0;
}

.filter-utils .reset-btn img {
    width: 16px;
}

.filter-utils a {
    background: var(--color-black);
    font-size: var(--font-size-16);
    padding: 5px 20px;
    color: var(--color-white);
}

.filter-utils a#apply-tax-filter {
    color: var(--color-white) !important;
    border-radius: 99em;
}

@media screen and (max-width: 767px) {

    .industry-filter {
        justify-content: start;
        margin-top: 15px;
    }

    .industry-filter p {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .industry-select {
        width: calc(100% / 2 - 5px);
    }

    .industry-select.industry-select-topics {
        margin-right: 0;
    }

}

@media screen and (max-width: 576px) {
    
    .industry-filter p {
        margin-right: 0;
        margin-bottom: 0;
    }

    .industry-select {
        width: 100%;
        margin-top: 20px;
        margin-right: 0;
    }

    .content-filter-dd {
        z-index: 5;
    }

    .industry-select.industry-select-topics .content-filter-dd {
        z-index: 4;
    }

}