.tag-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    border-radius: 0;
    background-color: #ffffff;
}

.tag-item {
    margin: 4px;
    background-color: #e5fae8;
    border: none !important;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 5px;
}

.tag-item-close::before {
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 12px;
    font-family: "tredition" !important;
    content: "\e058";
}

.tag-item:hover, .tag-item:focus {
    color: #000000;
    background-color: #8ce699;
    /* border: 1px solid #ffffff; */
}


.tag-container-dark {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.tag-item-dark {
    margin: 4px;
    border: none;
    background-color: #6ed183;
    color: #ffffff;
    border-radius: 2px;
    font-size: 0.8rem;
}

.tag-item-dark-close::before {
    font-size: 0.6rem;
    font-weight: 600;
    margin-left: 8px;
    font-family: "tredition" !important;
    content: "\e058";
}

.tag-item-dark:hover {
    color: #ffffff;
    background-color: #44AA66;
}

.tag-item-dark-none {
    padding: 1px 6px;
}

.tag-item-dark-border {
    margin: 4px;
    background-color: transparent;
    border: 1px solid #6ed183;
    color: #ffffff;
    border-radius: 2px;
    font-size: 0.8rem;
    min-width: 42px;
}