.splide__arrows {
    text-align: right;
}

.splide__arrow {
    outline: none;
    width: 50px;
    height: 50px;
    border: none;
    background: none;
    padding: 0;
    text-align: center;
    z-index: 50;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -25px;
    background-color: var(--slider-arrow-background-color);
    color: var(--slider-arrow-color);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16)
}

.splide__arrow:hover {
    cursor: pointer;
}

.splide__arrow .splide__arrow[disabled=disabled],
.splide__arrow:disabled {
    display: none
}

.splide__arrow:before {
    width: 50px;
    height: 50px;
    font-size: 18px;
    display: table-cell;
    vertical-align: middle;
}

.splide__arrow.splide__arrow--next {
    right: -25px;
}

.splide__arrow.splide__arrow--next:before {
    transform: rotate(-90deg);
}

.splide__arrow.splide__arrow--prev {
    left: -25px;
}

.splide__arrow.splide__arrow--prev:before {
    transform: rotate(90deg);

}

.splide__pagination {
    margin-top: 20px !important;
}

.align-centered .splide__pagination {
    justify-content: center;
}

.splide__pagination button {
    border: 0;
    width: 12px;
    height: 12px;
    background-color: var(--slider-bullet-color);
    margin-right: 10px;
    border-radius: 50%;
    padding: 0;
}

.splide__pagination button.is-active {
    background-color: var(--slider-bullet-color-active);
    width: 16px;
    height: 16px;
}

/* primary */

.section--primary .splide__pagination button {
    background-color: var(--slider-bullet-color-on-primary);
}

.section--primary .splide__pagination button.is-active {
    background-color: var(--slider-bullet-color-active-on-primary);
}

/* secondary */
.section--secondary .splide__pagination button {
    background-color: var(--slider-bullet-color-on-secondary);
}

.section--secondary .splide__pagination button.is-active {
    background-color: var(--slider-bullet-color-active-on-secondary);
}

/* secondary */
.section--tertiary .splide__pagination button {
    background-color: var(--slider-bullet-color-on-tertiary);
}

.section--tertiary .splide__pagination button.is-active {
    background-color: var(--slider-bullet-color-active-on-tertiary);
}


@media (max-width: 767px) {

    .splide__arrow,
    .splide__arrow:before {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .splide__arrow.splide__arrow--next {
        right: -10px;
    }

    .splide__arrow.splide__arrow--prev {
        left: -10px;
    }
}