.super-slider-wrapper {
    display: flex;
    overflow: hidden;
    border-radius:7px;
    user-select: none;
}
#super-slider {
    margin-bottom: 30px;
    position: relative;
}
.super-slider-navigation {
    cursor: pointer;
    user-select: none;
    position: absolute;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, 0.75);
    color: #333;
    border: none;
}
.super-slider-navigation svg {
    position: absolute;
    left: 20%;
    top: 20%;
    width: 60%;
    height: 60%;
    pointer-events: none;
}

.super-slider-navigation:hover {
    background: white;
    cursor: pointer;
}

.super-slider-navigation:focus {
    outline: none;
    box-shadow: 0 0 0 5px #19F;
}

.super-slider-navigation:active {
    opacity: 0.6;
}

.super-slider-left {
    left: 10px;
}
.super-slider-right {
    right: 10px;
}
.super-slider-navigation.disabled {
    opacity: 0.3;
    cursor: auto;
}
.super-slider-slide {
    cursor: pointer;
}
.super-slider-slide-content-image {
    cursor: pointer;
    user-select: none;
    pointer-events: none;
}
