.banner-dasboard {
    position: relative;
    width: fit-content;
}

.dashboard-stack {
    position: relative;
    width: 100%;
    height: auto;
}

.dashboard-stack img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity .6s ease;
    will-change: opacity;
}

.dashboard-stack img.is-visible {
    opacity: 1;
    position: relative;
}
