
.m-checkbox{
}
.m-checkbox__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.m-checkbox__input+label {
    display: inline-flex;
    align-items: center;
    user-select: none;
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    color: #52627A;
    cursor: pointer;
}
.m-checkbox__input+label::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
    cursor: pointer;
}
.m-checkbox__input:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11 8'%3e%3cpath fill='%23fff' d='M10.4714 1.8047C10.7318 1.54435 10.7318 1.12224 10.4714 0.861888C10.2111 0.601539 9.78895 0.601539 9.5286 0.861888L4 6.39048L1.13807 3.52855C0.877722 3.26821 0.455612 3.26821 0.195262 3.52855C-0.0650874 3.7889 -0.0650874 4.21101 0.195262 4.47136L3.5286 7.8047C3.78894 8.06505 4.21106 8.06505 4.4714 7.8047L10.4714 1.8047Z'/%3e%3c/svg%3e");
}
.m-checkbox__input+label span {
  display: contents;
}