/* === Custom Block Styling === */
.slideViewBlock{
    padding: var(--CB-padding-top) var(--CB-padding-right) var(--CB-padding-bottom) var(--CB-padding-left);
    margin: var(--CB-margin-top) var(--CB-margin-bottom);
    background-color: var(--CB-background-color);
    background-image: var(--CB-background-image);
    background-position: var(--CB-background-position);
    background-size: cover;
    margin-top: -64px !important;
    z-index: -1;
}


.slideView__container{
    position: relative;
    overflow: hidden;
    padding-top: 160px;
    padding-bottom: 96px;
}

.slideView__bottomBlocker{
    content: '';
    background-color: #fff;
    width: 100%;
    height: 64px;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}

.slideView__topBlocker{
    content: '';
    background-color: #fff;
    width: 100%;
    height: 64px;
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 11;
}

.slideView__background::after{
    content: '';
    background-color: var(--FC-black);
    opacity: 25%;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.slideView__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.slideView__wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    height: 300px;
}

.slideView__imageWrapper{
    max-width: 150px;
    width: 100%;
}

.slideView__image{
    width: 150px;
    height: 100%;
}

.slideView__leftSection, .slideView__rightSection, .slideView__middleSection{
    height: 100%;
    display: flex;
}

.slideView__rightSection{
    align-items: flex-end;
}

.slideView__text{
    color: var(--FC-near-white);
    font-size: var(--FC-font-size-80) !important;
    text-align: center;
    text-transform: uppercase;
}

.slideView__leftText{
    transform: translateX(-500px);
}

.slideView__rightText{
    transform: translateX(500px);
}