.common-checkbox {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    gap: 5px;
    margin: 0;
}

.common-checkbox > input {
    display: none;
}

.common-checkbox:before {
    background: url(/static/www/assets/images/common/check-box-b88dac5b6cc7ab474dc1e5f6b83b374d.png) no-repeat 0 0;
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}

.common-checkbox.common-checkbox-error:before {
    background-position: 0 -180px;
}

.common-checkbox.is-checked:before {
    background-position: 0 -34px;
}