/*--- LABEL ---*/
label {
    font-weight: 400;
}

/*--- BAR ---*/
.bar_container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.bar_label {
    color: #1E1E1E;
    background-color: #C6E9F9;
    padding: 5px 15px;
    border-radius: 10px;
    border: 1px solid #007AFF;
}

.bar_line {
    flex-grow: 1;
    height: 1px;
    background-color: #007AFF;
    margin-left: 10px;
}

/*--- ETICHETTA ---*/
.etichetta_top {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 0px;
}

.etichetta_label {
    color: #1E1E1E;
    background-color: #C6E9F9;
    padding: 5px 15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 1px solid #007AFF;
    border-bottom: none;
}

.etichetta_sub {
    border: 1px solid #007AFF;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 10px 10px 0px 10px;
}

/*--- CHECKBOX ---*/
.checkbox_div {
    cursor: pointer;
    text-indent: -9999px;
    width: 72px;
    height: 36px;
    background: grey;
    display: block;
    border-radius: 100px;
    position: relative;
    margin-right: 10px;
}

.checkbox_div:after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 90px;
    transition: 0.3s;
}

input:checked + .checkbox_div {
    background: #bada55;
}

input:checked + .checkbox_div:after {
    left: calc(100% - 5px);
    transform: translateX(-100%);
}

.checkbox_div:active:after {
    width: 40px;
}

.checkbox_text {
    float: right;
    width: calc(100% - 82px);
}