.keen-slider:not([data-keen-slider-disabled]) {
  align-content: flex-start;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}
.keen-slider:not([data-keen-slider-disabled]) .keen-slider__slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
}
.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-reverse] {
  flex-direction: row-reverse;
}
.keen-slider:not([data-keen-slider-disabled])[data-keen-slider-v] {
  flex-wrap: wrap;
}

[data-keen-slider-moves] * {
  pointer-events: none;
}
.navigation-wrapper {
    position: relative;
}

.dots {
    display: flex;
    padding: 10px 0;
    justify-content: center;
}

.dot {
    border: none;
    width: 8px;
    height: 8px;
    background: #BFB2F0;
    border-radius: 50%;
    margin: 10px 5px;
    padding: 5px;
    cursor: pointer;
}

.dot:focus {
    outline: none;
}

.dot--active {
    background: #6750B9;
}

.arrow {
    width: 88px;
    height: 88px;
    position: absolute;
    top: calc(50% - 30px);
    transform: translateY(-50%);
    fill: #fff;
    cursor: pointer;
    background-color: transparent;
    border-radius: 9999px;
    z-index: 100;
}

.arrow:hover {
 opacity:0.9;
}

.arrow--left {
    left: -20px;
    fill: "#fffff";
    background-image: url(/images/arrow-left-purple.svg?080db278c8a6bac1948f32c6f9e8737c);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 200;
        transition: all;
    transition-duration: 500ms;
}

.arrow--right {
    left: auto;
    right: -20px;
    background-image: url(/images/arrow-right-purple.svg?58e49314863cd1154e2260427c1309a0);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 200;
    transition: all;
    transition-duration: 500ms;
}
.arrow--right:hover {
    right:-10px;
}

.arrow--left:hover {
    left:-10px;
}
.arrow--disabled.arrow--left {
    background-image: url(/images/arrow-left-purple.svg?080db278c8a6bac1948f32c6f9e8737c);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 200;
}

.arrow--disabled.arrow--right {
    background-image: url(/images/arrow-right-purple.svg?58e49314863cd1154e2260427c1309a0);
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 200;
}

/* CUSTOM */

.keen-slider {
    border-radius: 48px;
    /*margin-top: 40px;*/
}

.slide-wrapper {
    padding-left: 16px;
    padding-right: 16px;
}

.keen-slider__slide {
    min-width: 100% !important;
    max-width: 100% !important;
}

@media only screen and (max-width: 750px) {
    .keen-slider {
        border-radius: 0;
        margin-top: 0;
    }

    .arrow {
        display: none;
    }
}

@media only screen and (min-width: 1px) and (max-width: 750px) {
    .slide-wrapper {
        padding-left: 0px;
        padding-right: 0px;
        overflow: hidden;
    }
}

@media only screen and (min-width: 751px) and (max-width: 900px) {
    .slide-wrapper {
        padding-left: 16px;
        padding-right: 16px;
        overflow: hidden;
    }
}
