.ajustes-web-slider-host {
    width: 100%;
}

.ajustes-web-slider-loading,
.ajustes-web-slider,
.ajustes-web-slider-empty {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background: #f7f7f7;
}

.ajustes-web-slider-loading::before,
.ajustes-web-slider::before,
.ajustes-web-slider-empty::before {
    content: "";
    display: block;
    padding-top: 54.545455%;
}

.ajustes-web-slider-loading-text,
.ajustes-web-slider-track,
.ajustes-web-slider-empty-text {
    position: absolute;
    inset: 0;
}

.ajustes-web-slider-loading-text,
.ajustes-web-slider-empty-text {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-align: center;
    padding: 20px;
}

.ajustes-web-slider-track {
    position: absolute;
    inset: 0;
}

.ajustes-web-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
    display: block;
}

.ajustes-web-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.ajustes-web-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ajustes-web-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.ajustes-web-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,.55);
    cursor: pointer;
    padding: 0;
}

.ajustes-web-slider-dot.is-active {
    background: rgba(255,255,255,.95);
}
