.tagify {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	
  
    padding: 0;
    cursor: text;
    position: relative;
	background: repeating-linear-gradient( 45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8) 10px, rgba(0, 0, 0, 0.85) 10px, rgba(0, 0, 0, 0.85) 20px);
	color:#ffffff;
		
 
	border: 5px solid rgba(255,255, 255, 0.2);
	border-image-source: url('../../css/f3.svg');
	border-image-slice: 30;

}
@-webkit-keyframes tags--bump {
    30% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
@keyframes tags--bump {
    30% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
}
.tagify:hover {
    border-color: #ccc;
}
.tagify[readonly] {
    cursor: default;
}
.tagify[readonly]>.tagify__input {
    visibility: hidden;
    width: 0;
    margin: 5px 0;	
}

.tagify[readonly] x {
    display: none;
}
.tagify[readonly] tag>div {
    padding: 0.3em 0.5em;
}
.tagify+input,
.tagify+textarea {
    border: 0;
    display: none;
}
.tagify tag {
    display: inline-block;
    margin: 5px 0 5px 5px;
    position: relative;
    z-index: 1;
    cursor: default;
    -webkit-transition: 0.13s ease-out;
    -o-transition: 0.13s ease-out;
    transition: 0.13s ease-out;
}
.tagify tag>div {
    vertical-align: top;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 100%;
    padding: 0.3em 0.5em;
    color: #000;
    border-radius: 3px;
    -webkit-transition: 0.13s ease-out;
    -o-transition: 0.13s ease-out;
    transition: 0.13s ease-out;
    padding-right: 1.5em;
}
.tagify tag>div>* {
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: top;
    -webkit-transition: 0.1s;
    -o-transition: 0.1s;
    transition: 0.1s;
}
.tagify tag>div::before {
    content: '';
    position: absolute;
    border-radius: inherit;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    z-index: -1;
    pointer-events: none;
    -webkit-transition: 80ms ease;
    -o-transition: 80ms ease;
    transition: 80ms ease;
    -webkit-animation: 0.3s tags--bump 1 ease-out;
    animation: 0.3s tags--bump 1 ease-out;
}
.tagify tag:hover:not([readonly]) div::before {
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;

}
.tagify tag.tagify--noAnim {
    -webkit-animation: none;
    animation: none;
}
.tagify tag.tagify--hide {
    width: 0!important;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    pointer-events: none;
}
.tagify tag.tagify--mark div::before {
    -webkit-animation: none;
    animation: none;
}
.tagify tag.tagify--notAllowed div>span {
    opacity: 1;
}
.tagify tag.tagify--notAllowed div::before {
    background: rgba(255,0,0,1.0);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.tagify tag[readonly] x {
    display: none;
}
.tagify tag[readonly]>div {
    padding: 0.3em 0.5em;
}
.tagify tag x {
    font: 12px/16px Serif;
    width: 14px;
    height: 14px;
    text-align: center;
   
    position: absolute;
    z-index: 1;
    right: calc(.5em - 2px);
    top: 50%;	
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
	
	background: url('../../css/f4.svg');
background-repeat:round;
background-size: cover;	
	
}
.tagify tag x::after {
    content: "\00D7";
}
.tagify tag x:hover {	
    color: #fff;
    background: #ff0000;

}
.tagify tag x:hover+div>span {
    opacity: 1.0;
}
.tagify tag x:hover+div::before {
    background: rgba(255,0,0,0.4);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
	
}
.tagify__input {
    min-width: 110px;
    margin: 5px;
    padding: 0.3em 0.5em;
    position: relative;
}
.tagify__input:empty::before {
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    opacity: 0.5;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
	color:#ffffff;
    opacity: 1; /* Firefox */
}
.tagify__input:focus {
    outline: 0;
	
}
.tagify__input:focus::before {
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    opacity: 0;
    -webkit-transform: translatex(6px);
    -ms-transform: translatex(6px);
    transform: translatex(6px);
	
}
@supports (-moz-appearance:none) {
    .tagify__input:focus::before {
        display: none;
    }
}
.tagify__input:focus:empty::before {
    -webkit-transition: 0.2s ease-out;
    -o-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
    opacity: 0.3;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
	

}
@supports (-moz-appearance:none) {
    .tagify__input:focus:empty::before {
        display: inline-block;
    }
}
.tagify__input::before {
    content: attr(data-placeholder);
    line-height: 1.8;
    position: absolute;
    top: 0;
    z-index: 1;
    color: #000;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
	

}
@supports (-moz-appearance:none) {
    .tagify__input::before {
        line-height: inherit;
        position: relative;
    }
}
.tagify__input::after {
    content: attr(data-suggest);
    color:#ffffff;
    opacity: 0.5;
    pointer-events: none;
}
.tagify__input tag {
    margin: 0 2.5px;

}
.tagify__input tag>div {
    padding-top: 0;
    padding-bottom: 0;
	
}
.tagify__input tag>div::before {
    top: -3px;
    bottom: -3px;
	
}
.tagify__input tag:hover:not([readonly])>div::before {
    top: -3px;
    bottom: -3px;
    left: 0;
    right: 0;
}
.tagify--mix .tagify__input {
    padding: 5px;
    margin: 0;
    width: 100%;
    height: 100%;	
}
.tagify__dropdown {	
color:#ffffff;
    position: absolute;
    z-index: 999;   
background: rgba(0,0,0, 0.9);
    max-height: 300px;
    overflow: auto;
    border: 1px solid #ccc;
    -webkit-box-shadow: 0 2px 4px -2px rgba(0,0,0,.2);
    box-shadow: 0 2px 4px -2px rgba(0,0,0,.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;	
	

	
}
.tagify__dropdown__item {
	color:#ffffff;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    padding: 0.35em 0.6em;
    margin: 2px;
    cursor: pointer;
    border-radius: 3px;
    position: relative;		
	
}
.tagify__dropdown__item--active {
	color:#ffffff;
   background:rgba(255, 255, 255, 0.2);	
   
 
}
.tagify__dropdown__item:active {
	
    background: #ffffff;	
}

tag div{	
	color: #000000;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
	
}

.tagify--noAnim div,.tagify tag > div{
    background: repeating-linear-gradient( 45deg, rgba(78,145,25, 0.8), rgba(78,145,25, 0.8) 10px, rgba(78,145,25, 1) 10px, rgba(78,145,25, 1) 20px);	
		
background: url('../../css/button1.svg');
background-repeat:round;
background-size: cover;	
			
}

