:root {
    --star-size: 40px;
    --star-color: #fff;
    --star-background: #f2bf0b;
}

.Stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    font-family: Times;
    line-height: 1;
}

.Stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.Stars.bottom {
    font-size: 24px;
    background: none;
    padding: 0;
}

.scrollrights1 {
    box-shadow: 3px 9px 10px #00000024;
}

.s3-container {
    padding-bottom: 100px;
}

.s3Left h2 {
    text-align: center;
    margin: 0 0 20px;
}

.slick-track {
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}

.scrollrights1 ul.slick-dots {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 2;
    bottom: -70px;
}

.scrollrights1 ul.slick-dots li button {
    font-size: 0;
    height: 4px;
    width: 30px;
    background: var(--primary);
    margin: 0 5px;
    border: 0;
    border-radius: 20px;
    cursor: pointer;
}

.scrollrights1 ul.slick-dots li.slick-active button {
    height: 6px;
    background: var(--secondary);
}

.s3-block h3 {
    font-size: 20px;
}

.scrollrights1 button.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -20px;
    width: 40px;
    aspect-ratio: 1/1;
    background: var(--primary);
    color: white;
    transition: all .1s ease-in-out;
    z-index: 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scrollrights1 button.slick-arrow:hover {
    background: var(--secondary);
}

.scrollrights1 button.slick-next.slick-arrow {
    left: initial;
    right: -20px;
}

.scrollrights1 .slick-track {
    position: relative;
}

.s3-block {
    padding: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-right: 1px solid #cccccc;
}

@media (max-width:1199px) {
    .s3-block {
        border-right: none;
    }
}