/**@license
 *  _____
 * |_   _|___ ___ ___ ___ ___
 *   | | | .'| . | . | -_|  _|
 *   |_| |__,|_  |_  |___|_|
 *           |___|___|   version 0.4.4
 *
 * Tagger - Zero dependency, Vanilla JavaScript Tag Editor
 *
 * Copyright (c) 2018-2022 Jakub T. Jankiewicz <https://jcubic.pl/me>
 * Released under the MIT license
 */
.tagger
{
    border: 1px solid #EEEEEE;
}
.tagger input[type="hidden"] {
  /* fix for bootstrap */
  display: none;
}
.tagger > ul {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 4px 5px 0;
    justify-content: space-between;
    box-sizing: border-box;
    height: auto;
    flex: 0 0 auto;
    overflow-y: auto;
    margin: 0;
    list-style: none;
}
.tagger > ul > li {
    padding-bottom: 0.4rem;
    margin: 2px 4px 2px 4px;
}
.tagger > ul > li:not(.tagger-new) a,
.tagger > ul > li:not(.tagger-new) a:visited {
    text-decoration: none;
    color: #004E4E;
}
.tagger > ul > li:not(.tagger-new) > :first-child {
    padding: 4px 4px 4px 8px;
    background: #B3D9D9;
    border: 1px solid #1E9E9E;
    border-radius: 5px;
}
.tagger > ul > li:not(.tagger-new) > span,
.tagger > ul > li:not(.tagger-new) > a > span {
    white-space: nowrap;
	font-family: Arial, Helvetica, sans-serif;
	font-size:13px;
	font-weight: bold;
	color: #004E4E;
}
.tagger li a.close {
    padding: 4px;
    margin-left: 4px;
    /* for bootstrap */
    float: none;
    filter: alpha(opacity=100);
    opacity: 1;
	font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
    line-height: 13px;
}
.tagger li a.close:hover {
    color: white;
}
.tagger .tagger-new input {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;
    padding-left: 0;
    background: transparent;
}
.tagger .tagger-new {
    flex-grow: 1;
    position: relative;
    min-width: 40px;
}
.tagger.wrap > ul {
    flex-wrap: wrap;
    justify-content: start;
}