.scroll-horizontal-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    white-space: nowrap;
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
}
.btn-scroll-left,
.btn-scroll-right {
    position: absolute;
    width: 55px;
    height: 30%;
    top: 25%;
    bottom: 0;
    text-align: center;
    border: 0;
    padding: 0;
    margin: 0;
    outline: none;
    background: #00D847;
}
.btn-scroll-left path,
.btn-scroll-right path {
    fill: #fff;
}
.btn-scroll-left {
    left: 0;
    border-radius: 0px 12px 12px 0px;
}
.btn-scroll-right {
    right: 0;
    border-radius: 12px 0px 0px 12px;
}
.btn-scroll-left svg,
.btn-scroll-right svg {
    height: 40px;
    vertical-align: middle;
}