/*
Last updated: 27/11/2024
*/

:root {
    --swiper-theme-color: #7f7f7f;
}

.material-symbols.prev,
.material-symbols.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    font-size: 4rem !important;
    cursor: pointer;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
	transition: var(--time);
}

.material-symbols.prev:active,
.material-symbols.next:active {
	transform: translateY(-50%) scale(1.1);
}

.material-symbols.next.swiper-button-disabled,
.material-symbols.prev.swiper-button-disabled {
	opacity: 0;
	cursor: default;
}

.slider.parameters {
	display: none;
}

.material-symbols.prev,
.material-symbols.next {
	color: var(--swiper-theme-color);
}

.material-symbols.prev {
	left: 0;
}
.material-symbols.next {
	right: 0;
}

.material-symbols.prev.outside {
	left: unset;
	right: 100%;
}
.material-symbols.next.outside {
	left: 100%;
	right: unset;
}

.swiper-scrollbar-drag {
	background: var(--swiper-theme-color) !important;
}

.editor-styles-wrapper .swiper-wrapper {
	pointer-events: none;
}

body .swiper-scrollbar.swiper-scrollbar-horizontal {
    left: 8px;
    bottom: 8px;
    height: 8px;
}

body .swiper-pagination {
	position: absolute;
	bottom: 0;
	width: 100%;
	z-index: 1;
}

body .swiper-pagination.swiper-pagination-progressbar {
	bottom: unset;
	top: 0;
	background-color: color-mix(in srgb, var(--swiper-theme-color) 60%, transparent);
}

body .swiper-pagination .swiper-pagination-progressbar-fill {
	height: var(--swiper-pagination-size);
    background-color: var(--swiper-theme-color);
    display: block;
    transform-origin: left;
}

body .swiper-pagination.swiper-pagination-bullets {
    display: flex;
    justify-content: center;
	gap: calc(var(--swiper-pagination-size) / 1.4);
    bottom: calc(var(--swiper-pagination-size)* 2);
}

body .swiper.pagination-position-outside .swiper-pagination.swiper-pagination-bullets {
    bottom: calc(-1 * var(--swiper-pagination-size)* 2);
}

body .swiper-pagination .swiper-pagination-bullet {
	width: var(--swiper-pagination-size);
	height: var(--swiper-pagination-size);
	background-color: var(--swiper-theme-color);
	display: block;
	border-radius: 50%;
	cursor: pointer;
	opacity: .5;
}

body .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

body .swiper-pagination.swiper-pagination-fraction {
	font-size: var(--swiper-pagination-size);
    width: 100%;
    color: var(--swiper-theme-color);
    text-align: center;
    bottom: var(--swiper-pagination-size);
}

body .pagination-position-outside .swiper-pagination {
	bottom: 0 !important;
}
body .pagination-position-outside {
	padding-bottom: calc(var(--swiper-pagination-size)* 2.5) !important;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-wrapper.continuous-autoscroll {
	pointer-events: none;
}