.slider {
    width: 200px;
    height: 120px;
    border: none;
    border-radius: 5px;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 85px;
    height: 25px;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
    border-radius: 5px;
}

.slider-wrapper:hover {
    cursor: pointer;
}

.slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 25px;
    transition: 0.75s;
}

.slider.active {
    transition: 0.75s;
    left: -75px;
}

.inner-slider {
    position: absolute;
    width: 75px;
    height: 25px;
    display: inline-block;

    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    color: whitesmoke;
    line-height: 25px;
}

.slider-enabled {
    left: 0;
    background-color: #28A745;
}

.slider-disabled {
    left: 85px;
    background-color: #DC3545;
}

.slider-devider-left {
    position: absolute;
    left: 75px;
    width: 5px;
    height: 25px;
    display: inline-block;
    background-color: #28A745;
}

.slider-devider-right {
    position: absolute;
    left: 80px;
    width: 5px;
    height: 25px;
    display: inline-block;
    background-color: #DC3545;
}


.slider-devider-left-button {
    width: 5px;
    height: 25px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    background-color: gray;
}

.slider-devider-right-button {
    width: 5px;
    height: 25px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    background-color: gray;
}
