.block-editor-block-list__block[class*="is-style-slider"],
[class*="is-style-slider"] {
	position: relative;
	margin-block-start:0;
}

.block-editor-block-list__block[class*="is-style-slider"],
[class*="is-style-slider"] .slider_strip {
	display: flex;
	flex-wrap: nowrap!important;
	gap:0 !important;
	scroll-behavior: smooth;
	scroll-snap-type: both mandatory;
}


[class*="is-style-slider"] .slider_strip {
	margin:0 !important;
	-ms-overflow-style: none;  /* IE and Edge */
	scrollbar-width: none;  /* Firefox */
	max-width: initial !important;
}

[class*="is-style-slider"] .slider_strip::-webkit-scrollbar {
	display: none;
}

.block-editor-block-list__block.wp-block-group.is-style-slider-horizontal,
.is-style-slider-horizontal .slider_strip {
	overflow-x: scroll;
	overflow-y: hidden;
}

.block-editor-block-list__block.wp-block-group.is-style-slider-vertical,
.is-style-slider-vertical .slider_strip {
	overflow-y: scroll;
	overflow-x: hidden;
	flex-direction: column;
}


.block-editor-block-list__block[class*="is-style-slider"] > *,
[class*="is-style-slider"] .slider_strip > * {
  flex-shrink: 0;  
  margin:0;
  scroll-snap-align: start;
  padding: 0;
  max-width: initial !important;
  align-self: start;
  width: 100%;
}

.block-editor-block-list__block.wp-block-group.is-style-slider-horizontal > *,
.is-style-slider-horizontal .slider_strip > * {
  flex-basis: 100%;
}  
  
[class*="is-style-slider"] > .slider-navigation {
	position: absolute;
	display: flex;
	gap:0;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.is-style-slider-horizontal > .slider-navigation {
	bottom: 20px;
	left: 0;
	right: 0;
}

.is-style-slider-vertical > .slider-navigation {
	right: 20px;
	top: 0;
	bottom: 0;
	flex-direction: column;
}

[class*="is-style-slider"] > .slider-navigation > .item {
	flex-wrap: nowrap;
	margin:0;
	display: inline-block;
	border-radius: 100px;
	height: 11px;
	width: 11px;
	background: white;
	margin: 5px;
	border: 1px solid black;
	transition: 0.2s ease-in-out;
}


.is-style-slider-horizontal > .slider-navigation > .item.active {
	width: 30px;
}

.is-style-slider-vertical > .slider-navigation > .item.active {
	height: 30px;
}

[class*="is-style-slider"] .nav_prev,
[class*="is-style-slider"] .nav_next {
	font-size: 1em;
	color: black;
	z-index: 2;
	background: white;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 1000px;
	width: 2em;
	height: 2em;
	transition: 0.2s ease-in-out;
	opacity: 1;
}

[class*="is-style-slider"] .nav_prev {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 1em;
}

[class*="is-style-slider"] .nav_prev:hover {
	left: 0.5em;
}

[class*="is-style-slider"] .nav_prev::before {
	content:'←';
	
}

[class*="is-style-slider"] .nav_next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 1em;
}

[class*="is-style-slider"] .nav_next:hover {
	right: 0.5em;	
}

[class*="is-style-slider"] .nav_next::before {
	content:'→';
}

[class*="is-style-slider"]:has(.slider_strip > *:first-child.active) .nav_prev {
	opacity: 0;
}

[class*="is-style-slider"]:has(.slider_strip > *:last-child.active) .nav_next {
	opacity: 0;
}


.block-editor-block-list__block[class*="is-style-slider"] > .wp-block-image img,
[class*="is-style-slider"] .slider_strip > .wp-block-image img {
  width:100%;
}



