.block-videoPresentation {
    /* --slide-size: 70%; */
    --slide-spacing: 2rem;

    position: relative;
}

@media (max-width: 700px) {
    .block-videoPresentation {
        --slide-spacing: 0;
    }
}

.videoPresentation-default.embla__viewport {
    overflow: hidden;
}
.videoPresentation-default .embla__container {
    display: flex;
    margin-left: calc(var(--slide-spacing) * -1);
    position: relative;
    z-index: 2;
}
.videoPresentation-default .embla__slide {
    flex: 0 0 fit-content;
    min-width: 0;
    padding-left: var(--slide-spacing);
}


.videoPresentation-default {
    background-color: var(--accented);
    padding: 110px 0 15px 0;
}

.videoPresentation-default iframe {
    max-width: 92vw;
}

@media (max-width: 700px) {
    .videoPresentation-default iframe {
        height: 263px;
    }
}


.videoPresentation-default.vp-wrapper::before {
	content: "";
	position: absolute;
	z-index: 3;
	height: 100%;
	width: 100%;
	pointer-events: none;
	top: 0;
	left: 0;
	background: linear-gradient(90deg,rgba(0, 0, 0, 0.73) 0%, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0) 68%, rgba(0, 0, 0, 0.73) 100%);
}


.video-inner {
    transform: scale(0.85);
    transition: 0.3s ease;
    opacity: 0.4;
}

.single-video.is-active .video-inner {
    transform: scale(1);
    opacity: 1;
}


.videoPresentation-default.vp-wrapper h2 {
    color: #593b3d;
    margin: 0;
    position: absolute;
    top: 21.7px;
    font-size: 3.8vw;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 700px) {
    .videoPresentation-default.vp-wrapper h2 {
        font-size: 6vw;
    }
}

/*------------------------------ NAVIGATION ARROWS ------------------------------*/
.videoPresentation-default .navigation {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: clamp(100px, 100%, 1400px);
	min-height: 100%;
	z-index: 3;
	pointer-events: none;

	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.videoPresentation-default .navigation .nav-btn {
	height: fit-content;
	margin: auto 1rem;
	pointer-events: auto;
}

.videoPresentation-default .navigation svg {
	display: block;
	height: 50px;
  	width: auto;
	transition: 0.2s;
}
.videoPresentation-default .navigation path {
	color: #fff;
}
.videoPresentation-default .navigation .right-btn svg {
 transform: rotate(180deg);
}
.videoPresentation-default .navigation .nav-btn:hover svg {
	height: 60px;
	cursor: pointer;
}

.videoPresentation-default .navigation .nav-btn.disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}



/*------------------------------ NAVIGATION DOTS ------------------------------*/
.videoPresentation-default .embla__dots {
    margin: auto;
    width: fit-content;
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-top: 8px;
}

.videoPresentation-default .embla__dot {
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.546);
}

.videoPresentation-default .embla__dot.is-selected {
    background-color: var(--surface-base);
}