
  /* Checkbox */
.container-checkbox[data-v-eb0e832a] {
    display: block;
    position: relative;
    padding-left: 0px;
    margin-bottom: 0px;
    cursor: pointer;
    font-size: 20px;
    height: 20px;
    width: 20px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.container-checkbox input[data-v-eb0e832a] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark[data-v-eb0e832a] {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 20px;
    width: 20px;
    background-color: var(--cor_icones_1);
    border: 1px solid var(--cor_texto_2);
    border-radius: .28rem;
    border-radius: 100%;
}
.container-checkbox:hover input ~ .checkmark[data-v-eb0e832a] {
    background-color: var(--cor_background_1);
}
.container-checkbox input:checked ~ .checkmark[data-v-eb0e832a] {
    background-color: var(--cor_btn_1);
}
.checkmark[data-v-eb0e832a]:after {
    content: "";
    position: absolute;
    display: none;
}
.container-checkbox input:checked ~ .checkmark[data-v-eb0e832a]:after {
    display: block;
}
.container-checkbox .checkmark[data-v-eb0e832a]:after {
    left: 6.5px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

