#dbc-slider-cont {
    display: flex;
    gap: 10px;
    align-items: center;
}

#dbc-slider {
    max-width: 777px;
    aspect-ratio: 1.72;
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    border: 2px solid #ffffff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    animation: slideFadeOut 1s linear;

}

.slide.active {
    z-index: 1;
    opacity: 1;
    animation: slideFadeIn 1s linear;
}

#live-stream-cont {
    overflow: hidden;
}

#live-stream-cont > iframe {
    width: 100%;
    height: 100%;
}

#dbc-slider-dots {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dot {
    aspect-ratio: 1;
    border-radius: 100%;
    border: none;
    text-shadow: none;
    background: #529ACB77;
    cursor: pointer;
}

.dot.active {
    background: #FEC43F;
}

@media (max-width: 999px) {
    #dbc-slider-cont {
        flex-direction: column;
    }
    #dbc-slider-dots {
        flex-direction: row;
    }
}

@keyframes slideFadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes slideFadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}