/*Setting item Switch*/
.check-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 24px;
    margin: 0 auto;
}

.check-switch .item-checkbox {
    display:none;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f5f5f5;
    border: 1px solid #f5f5f5;
    -webkit-transition: .1s;
    transition: .1s;
    box-shadow: 0px 1px 4px #cecece;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 1px;
    bottom: 1px;
    background-color: #707070;
    -webkit-transition: .1s;
    transition: .1s;
}

.item-checkbox:checked + .switch-slider  {
    background-color: #cbedf6;
    border: 1px solid #cbedf6;
    box-shadow: 0px 1px 4px #cecece;
}

.item-checkbox:focus + .switch-slider  {
    box-shadow: 0 0 1px #cbedf6;
}
.item-checkbox:checked + .switch-slider:before {
    -webkit-transform: translateX(28px);
    -ms-transform: translateX(28px);
    transform: translateX(28px);
    background-color: #337ab7;
}

/* Rounded sliders */
.switch-slider.round {
    border-radius: 50px;
}

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