.gerow-iconsholder-wrapper {
    display: none;
}
.gerow-iconsholder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 300px;
    overflow-y: scroll;
    border: 1px solid #DEE2E6;
    box-shadow: 1px 2px 4px rgb(33 37 41 / 5%);
    margin-top: 10px;
    margin-bottom: 5px;
}
.gerow-iconsholder::-webkit-scrollbar {
    width: 3px;
}
.gerow-iconsholder::-webkit-scrollbar-track {
    background-color: #f6f4f0;
    border-radius: 9px;
}
.gerow-iconsholder::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 9px;
}
.gerow-iconbox {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 16.6666666%;
    flex: 1 0 16.6666666%;
    text-align: center;
    cursor: pointer;
}
.gerow-iconbox p.icon {
    background: #fcfcfc;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 3px;
    margin: 5px;
    width: 28px;
    height: 28px;
    overflow: hidden;
    display: inline-block;
    font-size: 0;
}
.gerow-iconbox i {
    display: inline-block;
    margin-top: 5px;
    font-size: 18px;
}
.gerow-iconsholder-wrapper input.iconsearch {
    width: 100%;
    margin: 5px;
    border: 1px solid #ccc;
}
.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 15px;
}
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 1px;
    bottom: 0px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
input:checked+.slider {
    background-color: #2196F3;
}
input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}
input:checked+.slider:before {
    -webkit-transform: translateX(19px);
    -ms-transform: translateX(19px);
    transform: translateX(19px);
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}