/* BODY */
*
{
    margin: 0;
}

/* SLIDE */
.lbs-slider {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    
}

/* TRACK */
.lbs-track {
    position: relative;
    height: 100%;
}

/* SLIDE */
.lbs-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 0;
}

.lbs-slide.active {
    opacity: 1;
    z-index: 1;
}

/* IMAGE */
.lbs-bg {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-position: center center;
    /*filter: brightness(0.85);*/
}

/* OVERLAY */
.lbs-overlay:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, var( --e-global-color-brand-light ) -10%, #FFFFFF00 100%);
    opacity: 1;
}

.lbs-overlay:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: linear-gradient(180deg, #FFFFFF00 50%, var( --e-global-color-brand-light ) 100%);
    opacity: 1;
}

/* ===== ARROWS ===== */
.lbs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 5;
    transition: 0.3s;
}

.lbs-arrow:hover {
    background: rgba(0,0,0,0.9);
}

.lbs-prev {
    left: 20px;
}

.lbs-next {
    right: 20px;
}

/* ===== DOTS ===== */
.lbs-dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
    z-index: 5;
}

.lbs-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.lbs-dot.active {
    background: #fff;
    transform: scale(1.3);
}