.tag-input-tl {
    /*position: relative;*/
    border: 1px solid #e7eaec;
    padding: 2px 3px;
    display: inline-block;
    background: #ffffff;
    /*width: 600px;*/
    width: 100%;
    /*height: 40px;*/
    /*padding: 0;*/
    border-radius: 3px;
    box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.075);
}

.tag-input-tl button {
    height: 44px;
    background: #fff;
    color: #3DC1D2;
    font-weight: bold;
    font-size: 20px;
    border: none;
    border-right: 1px solid #ccc;
    width: 45px;
}

.tag-input-tl .box_tag_right {
    overflow: hidden;
    /*position: absolute;*/
    /*width: 550px;*/
    width: 100%;
    /*height: 38px;*/
    top: 0;
    /*left: 50px;*/
}

.tag-input-tl input {
    display: inline-block;
    /*position: absolute;*/
    top: -3px;
    width: auto;
    height: 37px;
    font-size: 15px;
    line-height: 43px;
    color: black;
    border: 0px;
    margin-left: 8px;
    background: transparent;
    color: #54657e;
}

.tag-input-tl input:focus {
    outline: 0;
    box-shadow: 0px;
}

.tag-input-tl .input-tag {
    position: relative;
    line-height: 22px;
    background-color: #224356;
    color: #fff;
    display: inline;
    float: left;
    border-radius: 2px;
    height: 28px;
    min-width: 75px;
    max-width: 175px;
    margin-left: 5px;
    border-radius: 7px;
    margin-top: 5px;
    overflow: hidden;
}

.tag-input-tl .input-tag span {
    margin-left: 5px;
    margin-top: 2px;
    float: left;
    white-space: nowrap;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tag-input-tl .input-tag .delete-tag {
    margin-top: 3px;
    float: right;
    cursor: pointer;
    color: #fff;
    width: 20px;
    margin-left: 5px;
}

.tag-input-tl .input-tag .delete-tag:hover {
    color: #fff;
}

.tag-input-tl .list_autocomplete {
    z-index: 100;
    position: absolute;
    top: 60px;
    width: 100%;
    background: #eceff4;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 1px 2px 11px 1px rgba(184, 192, 204, 0.9);
    list-style: none;
    border-radius: 5px;
}

.tag-input-tl .list_autocomplete .active_autocomplete {
    border: 1px solid #ccc;
    background: #f7f8fc;
}

.tag-input-tl .list_autocomplete .list_autocomplete_child {
    width: 100%;
    height: 45px;
    line-height: 45px;
    cursor: pointer;
    color: #54657e;
    padding-left: 10px;
}

.tag-input-tl .list_autocomplete .list_autocomplete_child:hover {
    background: #f7f8fc;
}

.tag-input-tl .animatedTag {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.tag-input-tl .flipInXTag {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}

/*# sourceMappingURL=tag-input-autocomplete-tl.css.map */
