.uhsp-slider-wrapper {
    .uhsp-left,
    .uhsp-right {
        @include transition(padding .15s ease);
        color: white;
        cursor: pointer;
        fill: none;
        height: 100%;
        opacity: 1;
        position: absolute;
        stroke: white;
        text-align: center;
        width: 40px;
        z-index: 2;

        img {
            height: 33px;
            margin-top: -17px;
            position: relative;
            top: 50%;
            width: 17px;
        }
    }

    .uhsp-left {
        left: 0;
        padding-left: 10px;
        &:hover {
            padding-left: 6px;
        }
    }

    .uhsp-right {
        padding-right: 10px;
        right: 0;
        &:hover {
            padding-right: 6px;
        }
    }
}