

.checkboxContainer {
    display: flex;
    position: relative;
    flex: 1;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.checkboxLabel {
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 0.5em;
}

.checkboxLabel::first-letter {
    text-transform: capitalize;
}

.checkboxContainer input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 17px;
    height: 17px;
    /* border: 2px solid var(--secondary-color); */
    border: 2px solid #e5e5e5;
    border-radius: 2px;
    vertical-align: middle;
}

.checkboxInput:checked { 
    background: url('../assets/checkbox_checked.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border: none;
}

.checkboxContainer input:disabled {
   background-color: rgba(189, 148, 148, 0.397);
   border: 1px solid rgba(189, 148, 148, 0.397);
}