.weight-border-success {
    border-top: 2px solid #4FC3F7;
    height: 2px;
    width: 100px;
    display: inline-block;
} 

.point-connected-not {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: gray;
    /* position: absolute; */
    /* right: 6px; */
    /* top: -10px; */
    display: block;
    margin: 10px;
}

.point-connected {
    width: 10px;
    height: 10px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background-color: #2cd07e;
    /* position: absolute; */
    /* right: 6px; */
    /* top: -10px; */
    display: block;
    margin: 10px;
}

.heartbit-connected {
    position: absolute;
    /* top: -20px; */
    /* right: -4px; */
    margin-top: -10px;
    height: 30px;
    width: 30px;
    z-index: 10;
    border: 5px solid #2cd07e;
    border-radius: 70px;
    -moz-animation: heartbit 1s ease-out;
    -moz-animation-iteration-count: infinite;
    -o-animation: heartbit 1s ease-out;
    -o-animation-iteration-count: infinite;
    -webkit-animation: heartbit 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.nav-bl::after {
    border-top-color: #933b81 !important;
}

.sidebar-nav ul .sidebar-item.selected>.sidebar-link {
    opacity: 1;
    background-color: #933b81;
    border-left: 3px solid transparent;
    font-weight: 500;
}
/* Bouton SWITCH Perso */
.switch-perso {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    cursor: pointer;
}

.switch-perso input {
    opacity: 0;
    width: 0;
    height: 0;
    box-sizing: border-box;
    overflow: visible;
}

input:checked + .slider-perso {
    background-color: #06c106 !important;
}

.slider-perso.round-perso {
    border-radius: 34px;
}

.slider-perso {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: red;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider-perso:before {
    /*-webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);*/
    transform: translateX(13px);
}

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

.slider-perso:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -2px;
    bottom: -2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 0px 0px 4px 1px #0000006b;
}