.related .xSelect {
    min-width: 50%;
    position: relative;
}

.related .xSelect input {
    width: 100%;
    padding-right: 30px;
    box-sizing: border-box;
}

.related .xSelect::after {
    position: absolute;
    display: block;
    content: '';
    top: 12px;
    right: 12px;
    width: 5px;
    height: 5px;
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    transform: rotate(45deg);
}

.related .xItem {
    padding: 5px 28px 5px 8px;
    margin: 4px 4px 0 0;
    color: #212121;
    text-decoration: none;
    background-color: #FFF;
    border: 1px solid #DADADA;
    border-radius: 2px;
    position: relative;
    user-select: none;
}

.related .xItem .xRemove {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 3px;
    right: 3px;
    cursor: pointer;
}

.related .xItem .xRemove hr {
    border: none;
    width: 14px;
    height: 1px;
    background-color: #8e8e8e;
    position: absolute;
    top: 3px;
    left: 5px;
}

.related .xItem .xRemove hr:first-child {
    transform: rotate(45deg);
}

.related .xItem .xRemove hr:last-child {
    transform: rotate(-45deg);
}

.related .xItem .xRemove:hover hr {
    background-color: #000;
}