/* slider styles */
.splide__list {
    display: flex;
    flex-direction: row;
}

.splide__slide {
    width: 100%;
    flex: 0 0 auto;
    margin: 0 !important;
}

.splide__slide .wp-block-group__inner-container > div {
    padding: 1em 5em;
}

.splide__slide p {
    margin: 0 0 0.5rem !important;
}

.splide__slide .has-background {
    border-radius: 10px;
    padding: 1em;
}

.splide .splide__arrow {
    background-color: white !important;
    padding: 1em !important;
    line-height: 1 !important;
    border-radius: 5em !important;
    width: 3.2em !important;
    height: 3.2em !important;
    display: inline-block !important;
}

/* Hide/show on hover the arrows on displays that support hovering (i.e. not phones or tablets) */
@media (hover: hover) {
    .splide .splide__arrow {
        opacity: 0;
    }

    .splide:hover .splide__arrow,
    .splide *:focus {
        opacity: 0.9;
    }
}

.splide__arrow:hover {
    box-shadow: none !important;
    background-color: #107EB6 !important;

}

.splide__arrow:hover svg {
    fill: white;
}

ul.splide__pagination li {
    margin: 3px;
}

.splide__pagination__page {
    background: white !important;
    border: 0 !important;
    border-radius: 50% !important;
    display: inline-block !important;
    padding: 0 !important;
    min-height: auto !important;
    transition: transform .2s linear !important;
}

.splide__pagination__page:hover {
    background-color: #107EB6 !important;

}