/**
 * Frontend styles for Minimal 4 (reviews slider only, no footer).
 */

.strix-widget.strix-style-minimal-4 {
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.strix-widget-container.strix-style-minimal-4 {
    display: block;
    width: 100%;
}

.strix-widget-container.strix-style-minimal-4 .strix-reviews-container-minimal {
    position: relative;
    min-height: 280px;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.strix-widget-container.strix-style-minimal-4 .strix-controls {
    position: absolute;
    width: 99%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.strix-widget-container.strix-style-minimal-4 .strix-next,
.strix-widget-container.strix-style-minimal-4 .strix-prev {
    width: 30px;
    height: 30px;
    background: rgb(255 255 255 / 52%);
    border: 1px solid var(--strix-border);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--strix-transition);
    box-shadow: var(--strix-shadow);
    color: #333;
    position: relative;
}

.strix-widget-container.strix-style-minimal-4 .strix-next {
    right: 0vw;
}

.strix-widget-container.strix-style-minimal-4 .strix-prev {
    left: 0vw;
}

.strix-widget-container.strix-style-minimal-4 .strix-next:hover,
.strix-widget-container.strix-style-minimal-4 .strix-prev:hover {
    background: #f6bb06;
    color: white;
    transform: scale(1.1);
}

.strix-widget-container.strix-style-minimal-4 .strix-next::after,
.strix-widget-container.strix-style-minimal-4 .strix-prev::after {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.strix-widget-container.strix-style-minimal-4 .strix-next::after {
    background-image: url("../../assets/images/right-chevron.svg");
}

.strix-widget-container.strix-style-minimal-4 .strix-prev::after {
    background-image: url("../../assets/images/left-chevron.svg");
}

.strix-widget-container.strix-style-minimal-4 .strix-controls-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--strix-border-light);
    margin: 0vw 2vw 1vw 2vw;
}

.strix-widget-container.strix-style-minimal-4 .strix-controls-line .strix-minimal-dot {
    position: absolute;
    height: 100%;
    background: #f6bb06;
    transition: left 0.3s ease, width 0.3s ease;
}

@media (max-width: 992px) {
    .strix-minimal-three .strix-minimal-page {
        flex: 0 0 35%;
        width: 35%;
    }
}

@media (max-width: 768px) {
    .strix-widget-container.strix-style-minimal-4 .strix-reviews-container-minimal {
        min-height: 250px;
        width: 100%;
    }
    .strix-widget-container.strix-style-minimal-4 .strix-next,
    .strix-widget-container.strix-style-minimal-4 .strix-prev {
        filter: opacity(0.5);
    }
    .strix-widget-container.strix-style-minimal-4 .strix-next {
        right: 3.2vw;
    }
    .strix-widget-container.strix-style-minimal-4 .strix-prev {
        left: 1.8vw;
    }
    .strix-widget-container.strix-style-minimal-4 .strix-controls-line {
        margin: 0 auto;
        width: 29vw;
    }
}
