.icon-bar {
    position: relative;
    overflow: hidden;
}

#icon-list {
    position: relative;
    display: flex;
    list-style-type: none;
    white-space: nowrap;
    overflow: hidden;
    margin: auto;
    justify-content: start;
}

#icon-list li {
    min-width: 200px;

}

#icon-list a {
    display: block;
    text-align: center;
}

#icon-list a span, #icon-list a:hover {
    color: #000;
}

.iconbar-icon {
    margin: auto;
}

.scroll-left,
.scroll-right {
    position: absolute;
    width: 3rem;
    height: 100%;
    border: 0;
    top: 0;
    z-index: 2;
    overflow: hidden;
    padding: 0;
    font-size: 5rem;
    color: #007AC3;
    cursor: pointer;
}
.scroll-right{
    right:0;
}
.scroll-left{
    left:0;
}
.scroll-left:before {
    font-family: "FontAwesome";
    content: "\f104";
}

.scroll-right:before {
    font-family: "FontAwesome";
    content: "\f105";
}

@media only screen and (min-width: 1200px) {
    #icon-list {
        justify-content: center;
    }
}