/**
 * CSS Fix for the Autoplay Toggle Switch.
 *
 * @since 1.6.1
 */
.shvh-autoplay-control {
    display: flex;
    align-items: center;
    gap: 8px;
}
.shvh-autoplay-text {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.shvh-autoplay-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}
.shvh-autoplay-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.shvh-slider-round {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 22px;
}
.shvh-slider-round:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
input:checked + .shvh-slider-round {
    background-color: #e74c3c;
}
input:checked + .shvh-slider-round:before {
    transform: translateX(22px);
}