.icons-list {
    width: 100%;
}
.icons-list .search-filter {
    margin-bottom: 10px;
}
.icons-list .selected {
    cursor: pointer;
    display: block;
    padding: .6rem 0;
    width: 100%;
}
.icons-list .selected i {
    font-size: 20px;
    margin-right: 6px;
    vertical-align: middle;
}
.icons-list .selected i.no-icon {
    font-size: 16px;
    font-style: normal;
}
.icons-list .icons {
    max-height: 0;
    overflow: hidden;
    padding: 0 5px;
    -webkit-transition: max-height .5s linear;
    -moz-transition: max-height .5s linear;
    transition: max-height .5s linear;
}
.icons-list .icons.in {
    max-height: 420px;
    -webkit-transition: max-height .5s linear;
    -moz-transition: max-height .5s linear;
    transition: max-height .5s linear;
}
.icons-list .filter {
    margin: 15px 0;
}
.icons-list .list {
    background-color: #eeeeee;
    height: 310px;
    list-style: none;
    margin: 0;
    overflow-y: scroll;
    padding: 10px 0;
    width: 100%;
}
.icons-list .list li.search-hidden {
    display: none;
}
.icons-list .list > li {
    color: #555555;
    cursor: pointer;
    float: left;
    height: 65px;
    margin: 5px 0;
    text-align: center;
    -webkit-transition: color .2s linear;
    -moz-transition: color .2s linear;
    transition: color .2s linear;
    width: 20%;
}
.icons-list .list li.active, .icons-list .list li:hover {
    color: #3071a9;
}
.icons-list .list li > i {
    display: block;
    font-size: 22px;
    line-height: 24px;
}
.icons-list .list li > span {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    margin-top: 5px;
}
.icons-list .list li > i.no-icon {
    display: block;
    font-size: 14px;
    font-style: normal;
    line-height: 40px;
}

@media (max-width: 1400px) {
    .icons-list .list > li {
        width: 25%;
    }
}
@media (max-width: 1200px) {
    .icons-list .list > li {
        width: 33.333%;
    }
}