


/*--------------------------------------------------------------
# Slider
--------------------------------------------------------------*/

.m3slides {
    position: relative;
}

.m3slide {
    opacity: 0;
    transition: all 0.35s ease-out;
}

.m3slide.active {
    opacity: 1;
}

.m3slide:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}


.slider-align-full.slider-has-arrows {
    position: relative;
}

.arrows-sides .sldir {
    position: absolute;
    top: calc(50% - 15px);
    z-index: 1;
}

.arrows-sides .sldir.back {
    left: calc(80px - var(--margin-content));
}

.arrows-sides .sldir.forward {
    right: calc(80px - var(--margin-content));
}



.sl-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding: 0 36px;
	z-index: 1;
}

.sldir {
    cursor: pointer;
}



.m3bullets {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0.4em 0;
    gap: 5px;
    justify-content: center;
    position: absolute;
    bottom: 18px;
    width: 100%;
}

.m3bullets > div {
    width: 12px;
	height: 12px;
    border-radius: 50%;
    // border: 2px solid #fff;
	cursor: pointer;
    background-color: #fff;
	transition: all 0.35s ease-in-out;
}

.m3bullets > div.current {
    background-color: var(--wp--preset--color--accent);
}
