.behavior {
    padding: 14px 16px 8px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.behaviorControl {
    padding: 6px 4px 0 0;
    display: flex;
    flex-direction: column;
    width: 228px;
    min-height: 32px;
    box-sizing: border-box;
    gap: 6px;
}

.behaviorControl__title {
    font-size: 16px;
    color: #000000;
    font-weight: 500;
}

.behaviorControl__block {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.behaviorControl__tooltip {
    font-size: 12px;
    line-height: 16px;
    color: #898a8f;
    width: 213px;
}

.behaviorControl__label {
    margin-left: auto;

    height: 22px;
    width: 40px;

    display: inline-block;
    position: relative;
}

.behaviorControl__label input {
    display: none;
}

.behaviorControl__slider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;

    cursor: pointer;
    border-radius: 22px;
    background-color: #ccc;
    transition: 0.4s;
}

.behaviorControl__slider:before {
    content: '';
    width: 16px;
    height: 16px;

    position: absolute;
    bottom: 3px;
    left: 3px;

    border-radius: 50%;
    background-color: #fff;
    transition: 0.4s;
}

.behaviorControl__label input:checked + .behaviorControl__slider {
    background-color: var(--interact-action);
}

.behaviorControl__label input:checked + .behaviorControl__slider:before {
    transform: translateX(18px);
}
