.industry {
    margin-bottom: 15px;
}
.industry__title{
    font-size: 2.5rem;
    margin: 0 15px 15px;
}
@media (max-width: 1200px) {
    .industry__title{
        font-size: 20px;
    }
}
@media (max-width: 768px) {
    .industry__title{
        margin: 0 15px 10px;
    }
}
@media (max-width: 440px) {
    .industry__title{
        margin: 0 0 10px;
    }
}
.industry__container{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    margin: -16px 0 14px 14px;
    transition: 0.3s ease;
    z-index: 50;
}
.industry__item{
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 44px;
    /*max-width: 340px;*/
    margin-top: 16px;
    margin-right: 12px;
    padding: 0 2px;
    background-color: #ffffff;
    border: 1px solid #015aaa;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
}
.industry__container .active{
    background-color: #005AAA !important;
}
.industry__container .active{
    background-color: #005AAA !important;
}
.industry__container .active .industry__name{
    color: #ffffff;
}
.industry__container .active img:first-child{
    opacity: 0;
}
.industry__container .active img:last-child{
    opacity: 1;
}
.industry__container .active .industry__close{
    display: block;
    /*display: none;*/
}
.industry__img{
    position: relative;
    display: flex;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    margin-right: 4px;
}
.industry__img img{
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: 0.3s ease;
}
.industry__img img:first-child{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}
.industry__img img:last-child{
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.industry__name{
    color: #005AAA;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 10px;
    transition: 0.3s ease;
}

.industry__item:hover{
    background-color: #005AAA;
}
.industry__item:hover .industry__name{
    color: #ffffff;
}
.industry__item:hover img:first-child{
   opacity: 0;
}
.industry__item:hover img:last-child{
    opacity: 1;
}
.industry__close{
    display: none;
    position: absolute;
    top: -4px;
    right: -1px;
    color: #015aaa;
    font-size: 15px;
    background: #ffffff;
    border-bottom-left-radius: 16px;
    width: 18px;
    padding: 0 4px 2px 4px;
}
.industry__close > div{
    transform: rotate(45deg);
}
.choose-item{
    position: relative;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 44px;
    padding: 6px 12px;
    background-color: #ffffff;
    border: 1px solid #ABCAE9;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    color: #828282;
    margin-bottom: 10px;
}
.choose-item .chosen {
    color: #005AAA;
    font-weight: 500;
}
.choose-arrow{
    transition: 0.3s ease;
}
.choose-arrow-rotate{
    transform: rotate(180deg);
}

@media (max-width: 879px){
    .industry{
        width: 100%;
        padding-right: 15px;
    }
    .industry__container{
        margin-top: 0;
        padding-right: 14px;
        flex-direction: column;
    }
    .industry__item{
        margin-top: 10px;
        width: 100% !important;
        justify-content: center;
        height: 60px;
    }
    .industry__img{
        width: 20px;
        height: 20px;
    }
    .industry__img img{
        width: 20px;
        height: 20px;
    }
    .industry__name{
        max-width: 200px;
        text-align: center;
    }
    .industry__container .active .industry__close{
        display: none;
    }
    .industry__close{
        display: none !important;
    }
}

@media (max-width: 440px){
    .industry{
        padding-left: 15px;
    }
    .choose-item{
        display: flex;
    }
    .industry{
        position: relative;
    }
    .industry__container{
        position: absolute;
        border: 1px solid #ABCAE9;
        border-radius: 8px;
        overflow: hidden;
        transform-origin: 0 0;
        transform: scaleY(0);
        width: 93%;
        visibility: hidden;
        padding: 0;
        margin: 0;
    }
    .industry__item{
        padding: 6px 12px;
        margin: 0;
        justify-content: space-between;
        height: 44px;
        border: none;
        border-top: 1px solid #ABCAE9;
        border-radius: unset;
        width: unset;

    }
    .industry__container .industry__item:first-child{
        border-top: none;
    }
    .industry__img{
        display: none;
    }
    .industry__name{
        text-align: left;
        font-size: 14px;
        font-weight: 500;
        text-transform: none;
    }
}

.industry .disable-filter__container {
    margin-bottom: 14px;
}
.industry .disable-filter__container .disable-filter {
    border-radius: 8px;
}

@media (min-width: 769px) {
    .industry .disable-filter__container {
        display: none;
    }
}

@media (min-width: 441px) {
    .industry .disable-filter__container {
        margin-left: 14px;
        margin-top: 30px;
    }
}