#fa-selector {
    position: relative;
    cursor: pointer
}

#fa-selector.active:before {
    content: "";
    width: 0;
    border: 10px solid;
    border-color: white transparent transparent;
    top: -11px;
    display: block;
    position: absolute;
    z-index: 2;
    left: 10px
}

#fa-selector.active:before.bottom {
    top: initial;
    bottom: -11px
}

#fa-selector .fa-child-container {
    position: absolute;
    width: 300px;
    height: 400px;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    overflow-y: scroll;
    z-index: 1;
    left: 0;
    cursor: initial;
    background: white;
    color: black;
    border: 1px solid grey
}

#fa-selector .fa-child-container input.search-fa-selector {
    position: sticky;
    top: 0;
    width: 100%;
    padding: .2rem
}

#fa-selector .fa-child-container>i {
    padding: .35em;
    width: 20px;
    cursor: pointer
}

#fa-selector[data-theme='modern'] .fa-child-container {
    border-radius: 5px;
    max-width: 250px;
    height: 300px;
    border: 1px solid #f7f7f7;
    box-shadow: 0 1px 1px rgba(72, 72, 72, 0.43);
    justify-content: center;
    margin-top: 10px;
}

#fa-selector[data-theme='modern'] .fa-child-container input {
    width: 100%;
    border: 0;
    background: #f3f3f3;
    outline: none;
    padding: .2rem .2rem;
    max-height: 41px;
    margin-bottom: .5em
}

#fa-selector[data-theme='modern'] .fa-child-container i {
    padding: .65em;
    border-radius: 100px;
    transition: all .3s;
    margin: 2px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #01579b;
}

#fa-selector[data-theme='modern'] .fa-child-container i:hover {
    /* background: #26a69a; */
    color: #26a69a
        /* box-shadow: 0 1px 1px #4caf50; */
}

#fa-selector[data-theme='modern'] .fa-child-container::-webkit-scrollbar {
    width: 8px;
    border-radius: 5px;
    padding: 2px
}

#fa-selector[data-theme='modern'] .fa-child-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 5px;
    overflow: hidden
}

#fa-selector[data-theme='modern'] .fa-child-container::-webkit-scrollbar-thumb {
    background: rgb(69, 125, 229);
    border: 1px solid #fff;
    border-radius: 5px
}

#fa-selector[data-theme='modern'] .fa-child-container::-webkit-scrollbar-thumb:hover {
    background: rgb(69, 125, 229);
}