.checkbox-component {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}

.app-checkbox {
    padding: 4px;
    position: relative;
    width: 20px;
    min-width: 20px;
    height: 20px;
    min-height: 20px;
    border: 2px solid #B8B9BC;
    border-radius: 2px;
    box-sizing: border-box;
    color: #ffffff;
}

.app-checkbox.app-checked,
.app-checkbox.app-indeterminate {
    border-color: #2188D9;
    color: #2188D9;
    border-color: #2188D9;
}

.app-checkbox .app-checkbox-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
}

.app-checkbox-label {
    color: #828282;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.checkbox-component:hover,
.checkbox-component:focus {
    outline: none;
    text-decoration: none;
}

.checkbox-component:hover .app-checkbox,
.checkbox-component:focus .app-checkbox {
    border-color: #60636C;
}

.checkbox-component:hover .app-checkbox.app-checked,
.checkbox-component:focus .app-checkbox.app-checked,
.checkbox-component:hover .app-checkbox.app-indeterminate,
.checkbox-component:focus .app-checkbox.app-indeterminate {
    border-color: #2188D9;
    color: #2188D9;
    border-color: #2188D9;
}

.checkbox-component.app-disabled {
    cursor: not-allowed;
}

.checkbox-component.app-disabled .app-checkbox {
    background-color: #f8f8f8;
    border-color: #D0D0D2;
}

.checkbox-component.app-disabled .app-checkbox.app-checked,
.checkbox-component.app-disabled .app-checkbox.app-indeterminate {
    border-color: #D0D0D2;
    background: #D0D0D2;
}

.checkbox-component.app-disabled .app-checkbox-label {
    color: #D0D0D2;
}