.tokenize {
	margin: 0 0 3px 0;
	padding: 0;
	width: 100%;
	overflow: auto;
    background-color: #fff;
    border-width: 1px 1px 2px 1px;
    border-style: solid;
    border-color: #ccc;
    border-radius: 5px;
    color: #333;
}
form#entry .tokenize {
	margin: 0 0 5px 5px;
	padding: 0;
	box-sizing: border-box;
}
form#entry .h-tokenize ~ .tokenize {
    margin: 5px 0 5px 5px;
    height: 120px;
}
.wide-tokenize ~ .tokenize {
	width: 46%;
	height: 156px;
	margin: 0px 0 3px 5px;
	flex-grow: 1;
}
.wide-tokenize.xl ~ .tokenize {
    width: 100%;
    height: auto;
	margin: 0px 0 3px 5px;
	flex-grow: 1;
}
.tokenize > .tokens-container {
	position: relative;
	list-style: none;
	padding: 2px 0 5px 2px;
	height: auto;
	cursor: text;
    flex-grow: 1;

    border-style: none;
    box-sizing: content-box;

}
.tokenize.focus > .tokens-container {
    border-color: #64bccc;
}
.wide-tokenize ~ .tokenize > .tokens-container {
    height: 93%;
    padding: 5px;
}
.tokenize > .tokens-container.input-sm {
    padding: 0 0 4px 4px;
    min-height: 30px;
}

.tokenize > .tokens-container.input-lg {
    padding: 0 0 9px 9px;
    min-height: 46px;
    visibility: hidden
}

.tokenize > .tokens-container > .token {
    padding: 0 1.2em 0 5px;
    background-color: #eff2f7;
    border-radius: 5px;
}

.tokenize > .tokens-container > .token,
.tokenize > .tokens-container > .token-search {
    display: inline-block;
    margin: 3px 5px 0 0;
    position: relative;
    vertical-align: middle;
    background-color: #68cce0;
    color: #fff;
    font-size: 14px;
    height: 20px;
    padding: 2px 8px 5px 30px;
    white-space: nowrap;
}
.wide-tokenize ~ .tokenize > .tokens-container > .token,
.wide-tokenize ~ .tokenize > .tokens-container > .token-search {
    display: block;
    margin: 0 0 5px 0;
}
.tokenize > .tokens-container > .placeholder {
	display: block;
	top: 5px;
	right: 25px;
	position: absolute;
	vertical-align: middle;
	font-size: 14px;
	background-color: transparent;
	min-height: 0;
}
.tokenize.sortable > .tokens-container > .token {
    cursor: move;
}

.tokenize.single > .tokens-container > .token {
    display: block;
    /*border-color: #fff;
    background-color: transparent;*/
}

.tokenize.sortable > .tokens-container > .token.shadow {
    border-color: #ccc;
    background-color: #ccc;
    filter: alpha(opacity=50);
    opacity: .2;
}

.tokenize > .tokens-container > .placeholder,
.tokenize > .tokens-container > .token-search {
    padding: 3px 0;
    border-color: #fff;
    background-color: #EDEDED !important;
    border-radius: 2px !important;
}
.tokenize > .tokens-container:hover > .placeholder,
.tokenize > .tokens-container:hover > .token-search {
    opacity: 0.3;
    animation: beat 0.7s infinite alternate;
}
@keyframes beat {
    to {opacity: 1;}
}
.tokenize > .tokens-container > .placeholder {
    color: #ccc;
}

.tokenize > .tokens-container > .token-search > input {
    padding: 0;
    margin: 0;
    line-height: 1em;
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    color: #333;
}
[data-theme='dark'] .tokenize > .tokens-container > .token-search > input {
    color: #fff;
}

.tokenize > .tokens-container > .token-search > input::-ms-clear {
    display: none;
}

.tokenize > .tokens-container.input-sm > .placeholder,
.tokenize > .tokens-container.input-sm > .token-search,
.tokenize > .tokens-container.input-sm > .token {
    margin: 4px 4px 0 0;
}

.tokenize > .tokens-container.input-lg > .placeholder,
.tokenize > .tokens-container.input-lg > .token-search,
.tokenize > .tokens-container.input-lg > .token {
    margin: 9px 9px 0 0;
}

.tokenize > .tokens-container > .token.pending-delete {
    background-color: #26c6da;
    border-color: #26c6da;
    color: #fff
}

.tokenize > .tokens-container > .token > .dismiss {
    position: absolute;
    left: 5px;
    top: 4px;
    height: 15px;
    width: 15px;
    color: #ffffff;
    background-color: rgba(0,0,0,0.3);
    text-decoration: none;
    border-radius: 20px;
    padding: 2px;
    cursor: pointer;
    font-family: 'Material Icons';
}
.tokenize > .tokens-container > .token > .dismiss:hover {
	background-color: #e06881;
	color: #fff;
}
.tokenize > .tokens-container > .token > .dismiss:after {
    position: absolute;
    right: 2px;
    top: 2px;
    content: "close";
    font-size: 15px;
}

.tokenize > .tokens-container > .token.pending-delete > .dismiss {
    color: #fff;
}
.tokenize > .tokens-container > .token.pending-delete > .dismiss:hover {
	background-color: #363636;
}

.tokenize-dropdown {
    position: absolute;
    display: none;
}

.tokenize-dropdown > .dropdown-menu {
	min-height: 10px;
	max-height: 120px;
	overflow: auto;
	width: 100%;
	display: block;
	margin: 0;
	visibility: visible;
	opacity: 1;
	background-color: #F7F7F7;
	font-size: 14px;
	color: #363636;
	box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
}

.tokenize-dropdown > .dropdown-menu li {
    cursor: pointer;
    padding: 2px 10px;
}
.tokenize-dropdown > .dropdown-menu li:hover {
	background-color: #ededed;
}

.tokenize-dropdown > .dropdown-menu li > a .tokenize-highlight {
    font-weight: bold;
}

.tokenize-dropdown > .dropdown-menu li.locked {
    padding: 3px 20px;
    color: #333;
    white-space: nowrap;
}

.tokenize-dropdown > .dropdown-menu li.locked,
.tokenize-dropdown > .dropdown-menu li > a {
    text-overflow: ellipsis;
    overflow-x: hidden;
}

.tokenize-dropdown > .dropdown-menu li:not(.active) a:hover,
.tokenize-dropdown > .dropdown-menu li:not(.active) a:focus {
    background-color: transparent;
}


/* form#report .tokenize {
    height: 20px;
    width: 300px;
    margin: 5px;
    padding: 3px;
    background-color: #fff;
    color: #333;
    box-sizing: content-box;
    overflow:hidden;
}
form#report .tokenize > .tokens-container {
	height: 20px;
	padding: 0;
} */
