/* START heroVideo*/
.heroVideo {
    height: 100vh;
}

.heroVideo .bigSpacing{
    height: 100%;
}

.heroVideo .uniformSpacing{
    display: flex;
    height: 100%;
    position: relative;
    z-index: 2;
    align-items: flex-end;
}

.heroVideo .containerVideo {
    position: initial;
}

body:not(#editor) .heroVideo .sliderContainer {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.heroVideo  .horizontalScroll {
    margin: 0;
}

body:not(#editor) .heroVideo.afterFilter:after {
    z-index: -10;
}

body:not(#editor) .heroVideo  .sliderWrapper {
    position: relative;
    z-index: 1;
}

body:not(#editor) .heroVideo  .sliderWrapper,
body:not(#editor) .heroVideo  .horizontalScroll,
body:not(#editor) .heroVideo .sliderSlide  {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

body#editor .sliderWrapper .editor-tpl{
    display: flex;
    gap: 1em;
}

body#editor .heroVideo {
    height: auto;
}

.heroVideo .sliderWrapper{
    gap: 0;
}

.heroVideo .containerSliderButton{
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 100;
}

.heroVideo .sliderDots {
    text-align: center;
    padding-top: 1.5em;
}

.heroVideo .sliderDot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background-color: transparent;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid var(--basicColor1);

}

.heroVideo .sliderDot.active {
    background-color: var(--basicColor1);
}

/* END heroVideo*/