.form-checkbox__label {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    font-size: 16px;
    line-height: 20px;
    color: #1B1E3C;
    cursor: pointer;
    padding-left: 26px;
}

.form-checkbox__label .form-checkbox__input {
    display: none;
}

.form-checkbox__item {
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    top: 50%;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 16px;
    background-color: transparent;
    border: 0.5px solid #F2989D;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.form-checkbox__checked-item {
    opacity: 0;
}

.form-checkbox__input:checked +.form-checkbox__checked-item {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    display: inline-block;
    opacity: 1;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: #F2989D;
    transition: ease .15s; 
}