.switch2 {
    display: inline-block;
    height: 34px;
    position: relative;
    width: 60px;
}

.switch2 input {
    display: none;
}

.slider2 {
    background-color: rgba(255, 255, 255, 0.058);
    bottom: 0;
    cursor: pointer;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: .4s;
}

.slider2:before {
    background-color: rgba(55, 166, 159, 0.665);
    bottom: 4px;
    content: "";
    height: 26px;
    left: 4px;
    position: absolute;
    transition: .4s;
    width: 26px;
}

input:checked+.slider2 {
    background-color: rgba(55, 166, 159, 0.965);
}

input:checked+.slider2:before {
    background-color: #fff;
    transform: translateX(26px);
}

.slider2.round {
    border-radius: 34px;
}

.slider2.round:before {
    border-radius: 50%;
}