
.tagator * {
    box-sizing: border-box;
    text-decoration: none;
}
#tagator_dimmer {
    background-color: rgba(0, 0, 0, 0.1);
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 100;
}
.tagator {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
    display: inline-block;
    text-decoration: none;
}
.tagator.options-visible {
    position: relative;
    z-index: 101;
}
.tagator_tags {
    display: inline;
}
.tagator_tag {
    background-color: #39f;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    font-size: 13px;
    margin: 2px;
    padding: 2px 2px 2px 20px;
    position: relative;
    vertical-align: top;
}
.tagator_tag_remove {
    border-radius: 0 2px 2px 0;
    bottom: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: verdana;
    font-size: 11px;
    font-weight: bold;
    left: 0;
    line-height: 10px;
    margin: 0 5px 0 0;
    padding: 6px 5px 4px;
    position: absolute;
    top: 0;
    vertical-align: top;
}
.tagator_tag_remove:hover {
    background-color: #8cf;
    color: #000;
}
.tagator_input, .tagator_textlength {
    background-color: transparent;
    border: 0 none;
    display: inline-block;
    font-size: 13px;
    margin: 0;
    outline: medium none;
    padding: 4px 0 0 5px;
}
.tagator_input {
}
.tagator_options {
    background-color: #fff;
    border: 1px solid #7f9db9;
    border-radius: 0 0 3px 3px;
    box-sizing: border-box;
    font-family: sans-serif;
    left: -1px;
    list-style: outside none none;
    margin: 0;
    max-height: 250px;
    overflow: auto;
    padding: 0;
    position: absolute;
    right: -1px;
    z-index: 101;
}
.tagator.options-hidden .tagator_options {
    display: none;
}
.tagator_option {
    color: #000;
    cursor: pointer;
    padding: 5px;
}
.tagator_option.active {
    background-color: #39f;
    color: #fff;
}
