.xxx-checkboxes-tag{
    position: relative;
}

.xxx-checkboxes-tag__label{
    display: inline-flex;
    border: 1px solid #E8ECEF;
    border-radius: 3px;
    justify-content: center;
    align-items: center;
    padding: 7px 10px;
    cursor: pointer;
    background: white;
    color: #333E50;
    transition: background-color 0.3s ease, coloe 0.3s ease;
}

.xxx-checkboxes-tag__input + .xxx-checkboxes-tag__label:hover{
    background: #F6F9FC;
}

.xxx-checkboxes-tag__input{
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.xxx-checkboxes-tag__input:checked + .xxx-checkboxes-tag__label{
    background: #F6F9FC;
    color: #ADB4BF;
}


/* --reverse /start */

.xxx-checkboxes-tag.xxx-checkboxes-tag--reverse .xxx-checkboxes-tag__label{
    background: #F6F9FC;
    color: #ADB4BF;
}

.xxx-checkboxes-tag.xxx-checkboxes-tag--reverse .xxx-checkboxes-tag__input:checked + .xxx-checkboxes-tag__label{
    background: white;
    color: #333E50;
}

.xxx-checkboxes-tag.xxx-checkboxes-tag--reverse:checked .xxx-checkboxes-tag__label:hover{
    background: #F6F9FC;
}

/* --reverse /end */

/*--icon-close /start*/
.xxx-checkboxes-tag.xxx-checkboxes-tag--icon-close .xxx-checkboxes-tag__label{
    padding: 7px 18px;
    position: relative;
}

.xxx-checkboxes-tag.xxx-checkboxes-tag--icon-close .xxx-checkboxes-tag__input:checked + .xxx-checkboxes-tag__label{
    padding: 7px 10px 7px 10px;
}

.xxx-checkboxes-tag.xxx-checkboxes-tag--icon-close .xxx-checkboxes-tag__input:checked + .xxx-checkboxes-tag__label:after{
    content: "\e916";
    font-family: "bankiros" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 11px;
    margin-left: 5px;
}
/*--icon-close /end*/