/* EmberTabs component CSS. */

.se-tab-component {
    display: flex;
    flex: 1;
    overflow-x: auto;
}

.se-tab-component::-webkit-scrollbar {
    height: 4px;
    color: #efefef;
}

.se-tab-component > ul {
    font-family: inherit;
    font-size: 0.8em;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.se-tab-component > ul > li.se-ember-item {
    display: inline-flex;
    max-width: 250px;
    min-width: 90px;
    min-height: 70px;
    border-right: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
    position: relative;
    background: #f9f9f9;
    flex: 1;
    width: auto;
    overflow-y: hidden;
}

.se-tab-component > ul > li.se-ember-item a {
    width: 100%;
    cursor: pointer;
}

.se-tab-component > ul > li.se-ember-item.selected a:hover {
    background-color: white;
}

.se-tab-component > ul > li.se-ember-item a:hover {
    background-color: #f6fbff;
}

.se-tab-component > ul > li.se-ember-item .ember-item.close {
    line-height: 1;
    color: #999;
    opacity: .5;
    position: absolute;
    height: 22px;
    width: 10px;
    top: 0.94em;
    right: 10px;
}

.se-tab-component > ul > li.se-ember-item .ember-item.close:hover {
    opacity: 1;
}
.se-tab-component > ul > li.se-ember-item .ember-item.close a:hover {
    background-color: inherit;
}

.se-tab-component > ul > li.se-ember-item.new {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

.se-tab-component > ul > li.se-ember-item.selected {
    background: white;
    opacity: 1;
    border-top: 2px solid #20a8d8;
    border-bottom: 2px solid white;
}

.se-tab-component > ul > li.se-ember-item.outside {
    border-bottom: 2px solid #efefef;
}

.se-tab-component > ul > li.se-ember-item .se-ember-content {
    width: 100%;
    padding: 0.6em 1.2em 0.2em;
    max-height: 65px;
}

.se-tab-component > ul > li.se-ember-item span {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 90%;
    display: inline-block;
    line-height: 1.24em;
    clear: both;
}

.se-tab-component ul li.se-ember-item span.title {
    font-size: 1.04em;
    min-height: 20px;
    font-weight: 600;
    color: #313131;
}

.se-tab-component ul li.se-ember-item.selected span.title {
    font-weight: 800;
    font-size: 1.08745em;
    color: #444;
}

.se-tab-component > ul > li.se-ember-item .body {
    position: relative;
    top: -6px;
    max-height: 36px;
    line-height: 17px;
    overflow: hidden;
    color: #777;
}

.se-tab-component > ul > li.se-ember-item span.serie, .se-tab-component > ul > li.se-ember-item span.doctype, .se-tab-component > ul > li.se-ember-item span.queue  {
    color: #777;
    font-weight: 600;
    text-transform: uppercase;
}

.se-tab-component > ul > li.se-ember-item.selected span.serie, .se-tab-component > ul > li.se-ember-item.selected span.doctype, .se-tab-component > ul > li.se-ember-item.selected span.queue {
    color: #3f78d0;
}

.se-tab-component > ul > li.se-ember-item span.lifecycle, .se-tab-component > ul > li.se-ember-item span.filter {
    padding: 3px 4px;
    width: auto;
    max-width: 200px;
    font-size: .85em;
    background-color: #e4e4e4;
    color: #999;
}

.se-tab-component > ul > li.se-ember-item.selected span.lifecycle {
    background-color: #5CB85C;
    color: white;
}

.se-tab-component > ul > li.se-ember-item span.filter {
    min-width: 16px;
}

.se-tab-component > ul > li.se-ember-item.selected span.filter {
    background-color: #5BC0DE;
    color: white;
}

.ase-spinner.embertabs {
    margin: 20px 0;
    width: 100%;
}
