.valueslider .slide-content {
    color: inherit;
    height: 289px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.valueslider .slick-slide .slide-content {
    height: 100%;
}

.valueslider .visual,
.valueslider .visual-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.valueslider .visual {
    height: 180px;
    padding-top: 25px;
}

.valueslider .visual-text {
    padding: 5px 15px 30px 15px;
    -ms-flex: 1;
    flex: 1;
}

.valueslider .visual img {
    height: 100%;
    object-fit: unset;
}

.valueslider .visual-text .number {
    display: block;
    line-height: 1.15;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.valueslider .visual-text .number2 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
}

.valueslider .slick-arrow,
.valueslider .slick-arrow::before {
    color: inherit;
}

.valueslider .slide-link {
    color: inherit;
}

.valueslider .play-pause-button {
    height: 30px;
    width: 30px;
    font-size: 18px;
    line-height: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px;
    cursor: pointer;
    color: #fff;
    border-radius: 50%;
    border: none;
    outline: 0;
    background: rgba(0, 0, 0, .1);
    bottom: -36px;
}

.valueslider .play-pause-button:hover {
    background: rgba(0, 0, 0, .2);
}

.valueslider .play-pause-button::before {
    /* Pause */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath class='bi-pause' d='M5.5 3.5A1.5 1.5 0 0 1 7 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5zm5 0A1.5 1.5 0 0 1 12 5v6a1.5 1.5 0 0 1-3 0V5a1.5 1.5 0 0 1 1.5-1.5z'%3E%3C/path%3E%3C/svg%3E");
    display: inline-block;
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.valueslider .play-pause-button.paused::before {
    /* Play */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M11.596 8.697l-6.363 3.692c-.54.313-1.233-.066-1.233-.697V4.308c0-.63.692-1.01 1.233-.696l6.363 3.692a.802.802 0 0 1 0 1.393z'%3E%3C/path%3E%3C/svg%3E");
}

@media (min-width: 992px) {
    .valueslider {
        height: 215px;
    }

    .valueslider .slide-content {
        height: 215px;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-align: center;
        align-items: center;
    }

    .valueslider .visual {
        padding-right: 0;
        text-align: center;
        width: 44%;
        height: 100%;
        -ms-flex: none;
        flex: none;
    }

    .valueslider .visual,
    .valueslider .visual-text {
        padding: 15px;
    }

    .valueslider .visual img {
        height: 85%;
        margin: 0 auto;
    }

    .valueslider .visual-text {
        text-align: left;
        width: 55%;
    }
}