.taguserlist {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    background-color: white;
    margin: 10px 20px 5px;
    width: 80%;
    max-height: 200px;
    overflow-y: scroll;
    border-radius: 20px;
    border: solid 1px #c8c8c7;
}

.taguserlist .userContainer {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 60px;
    padding: auto;
    justify-content: flex-start;
    align-items: center;
}

.taguserlist .userContainer > div {
    cursor: pointer;
}
.taguserlist .userContainer .userName {
    font-family: "Metropolis Regular";
    font-size: 14px;
    line-height: 1.71;
    letter-spacing: 1.4px;
    text-align: left;
    color: #333;
    padding-left: 20px;
    cursor: pointer;
    height: 37px;
    display: flex;
    align-items: center;
}

.taguserlist .userContainer .hLine {
    width: 100%;
    height: 1px;
    margin: 5px 0;
    background-color: #c8c8c7;
}
