/* CSS Document */

/*************************************************
//////////////////////////////////////// HEADER & MENU
**************************************************/
#header {
    /*grid-area: header;*/
    display: flex;
    background-color: #F2F2F2;
    border-bottom: 1px solid #C0C0C0;
    -webkit-box-shadow: 0 0 3px -1px #666666;
    -moz-box-shadow: 0 0 3px -1px #666666;
    box-shadow: 0 0 3px -1px #666666;
    align-items: flex-end;
    /*padding: 0 0 10px 20px;*/
    padding: 14px 10px 10px;
    max-height: 6vh;
    flex: 0 1 auto;
}

#header a.logo {
    background-size: cover;
    width: 239px;
    height: 45px;
    flex-shrink: 0;
    margin: 0 10px 2px 0;
    background: url(../imgs/logo_oxo.png) no-repeat center;
}

#header a.logo.vertical {
    background: url(../imgs/logo_oxo_vertical.png) no-repeat center;
    background-size: contain;
    width: 85px;
    height: 55px;
    margin: 0 10px -7px 0;
}

#header a.logo.logo-notext {
    background: url(../imgs/logo_oxo_notext.png) no-repeat top left;
    width: 48px;
}

#header .group-card{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 10px;
}
#header .group-card > .group-name {
    padding-top: 5px;
}
#header .group-card > img{
    width: 36px;
    height: 36px;
    border-radius: 5px;
    border: 1px solid #a4a4a4;
}
#header .group-card .text{
    white-space: nowrap;
}
#header .menu {
    height: 34px;
    display: flex;
    flex-wrap: wrap;
    /*min-width: 308px;*/
    width: 100%;
    overflow: hidden;
}

#header .menu > a,
#header .menu > .mitem {
    color: #333;
    text-decoration: none;
    padding: 9px 14px;
    display: flex;
    cursor: pointer;
    height: 16px;
}

#header .menu > .sitems .but {
    padding: 9px 14px;
    height: 16px;
    color: #333;
    text-decoration: none;
}

#header .menu > .sitems {
    position: relative;
    float: left;
    margin: 0 6px;
    display: inline;
    cursor: pointer;
}

#header .menu .msep {
    float: left;
    background-color: #CCC;
    width: 1px;
    height: 19px;
    margin: 9px 6px 3px;
}

#header .more {
    display: none;
    margin-right: 4px;
    position: relative;
}

#header .more .but {
    cursor: pointer;
    height: 16px;
    background: url("../imgs/bgglass.png") repeat-x scroll 50% 50% #FFF;
    padding: 8px 1px;
    border: 1px solid #C0C0C0;
    filter: alpha(opacity=40);
    -moz-opacity: .40;
    opacity: .40;
}

#header .more:hover .but {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    border-color: #FDB913;
}

#header .more .but .icon {
    width: 16px;
    height: 16px;
    background: url('../imgs/icons.png') no-repeat -112px -16px transparent;
}

#header .more.active .but,
#header .menu > .sitems.active .but {
    background: none repeat scroll 0 0 #FFFFFF !important;
    border: 1px solid #C0C0C0 !important;
    border-bottom: 1px solid #FFFFFF !important;
}

#header .menu > .sitems.active .but {
    padding: 8px 13px !important;
    position: relative;
    z-index: 5000;
}

#header .more.active .but {
    border: 1px solid #C0C0C0;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    z-index: 5000;
}

#header .more .list,
#header .menu > .sitems .list {
    position: absolute;
    background: #FFF;
    padding: 0 2px;
    border: 1px solid #C0C0C0;
    /*display: none;*/
    right: 0;
    top: 32px;
    z-index: 1000;
    -webkit-box-shadow: 0 3px 3px -2px #666666;
    -moz-box-shadow: 0 3px 3px -2px #666666;
    box-shadow: 0 3px 3px -2px #666666;
}

#header .menu > .sitems .list {
    display: none;
}

/*#header .menu > .sitems.active .list{
	display: block;
}*/
#header .more .list a,
#header .more .list .mitem,
#header .menu > .sitems .list a,
#header .menu > .sitems .list .mitem {
    display: block !important;
    padding: 9px 64px 9px 10px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
    margin: 4px 2px;
    white-space: nowrap;
}

#header .more .list a:hover,
#header .more .list .mitem:hover,
#header .menu > .sitems .list a:hover,
#header .menu > .sitems .list .mitem:hover {
    color: #D90 !important;
}

#header .more .list a.selected,
#header .more .list .mitem.selected,
#header .menu > .sitems .list a.selected,
#header .menu > .sitems .list .mitem.selected {
    color: #000;
    background: url("../imgs/bgglass.png") repeat-x scroll 50% 50% #FFF;
    padding: 8px 63px 8px 9px;
    border: 1px solid #FDB913;
}

#header .more .list .msep,
#header .menu > .sitems .list .msep {
    float: none;
    height: 1px;
    width: auto;
    margin: 4px 2px;
}

#header .more .list .msep:first-child,
#header .menu > .sitems .list .msep:first-child {
    display: none !important;
}


#header .more .list .sitems {
}

#header .more .list .sitems .but {
    display: none;
}

#header .more .list .sitems .list {
    position: relative;
    top: inherit;
    right: inherit;
    display: block !important;
    border: 0 none;
    padding: 0;
    -webkit-box-shadow: 0 0;
    -moz-box-shadow: 0 0;
    box-shadow: 0 0;
}

#header .profile {
    z-index: 10;
    cursor: default;
}

#header .profile .mcont {
    z-index: 10;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    box-sizing: border-box;
    padding: 5px 15px 5px 5px;
    margin-bottom: -5px;
}

#header .profile .mcont .pdata {
    display: flex;
    align-items: center;
}

#header .profile .mcont .udata {
    float: left;
    display: flex;
    align-items: center;
}

#header .menu > a:hover,
#header .menu > .mitem:hover,
#header .menu > .sitems:hover .but {
    color: #D90 !important;
}

#header .menu > a.selected,
#header .menu > .mitem.selected,
#header .menu > .sitems.selected .but,
#header .profile.selected {
    color: #000;
    /*background:url("../imgs/bgglass.png") repeat-x scroll 50% 50% #FFF;*/
    background: #FFF;
    padding: 8px 13px;
    border: 1px solid #FDB913;
}

#header .menu > a.selected:hover,
#header .menu > .mitem.selected:hover {

}

#header .menu > a.right,
#header .profile.right {
    position: relative;
}

#header .profile .userimg {
    width: 36px;
    height: 36px;
    background: no-repeat center center;
    border: 0 solid #CCC;
    float: left;
    margin: 0 5px 0 0;
    box-shadow: 0 0 2px -2px #000000;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 2px -2px #000000;
    -moz-box-shadow: 0 0 2px -2px #000000;
    object-fit: cover;
}

#header .profile.selected .userimg {
    border-color: #CDA601;
}

#header .profile .name {
    white-space: nowrap;
    padding-top: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    /*max-width: 175px;*/
    display: flex;
    flex-direction: column;
    min-width: 50px;
    gap: 2px;
}

#header .profile .name .text {
    margin-bottom: 1px;
}

#header .profile .ugdata {
    color: #666666;
    background: transparent;
    font-weight: normal;
    text-overflow: ellipsis;
    display: flex;
}

#header .profile .ugdata .name {
    float: none;
}

#header .profile:hover .mcont,
#header .profile.active .mcont {
    background-color: #FFF;
    border-top: 1px solid #C0C0C0;
    border-right: 1px solid #C0C0C0;
    border-left: 1px solid #C0C0C0;
    margin: 0 0 -5px;
    box-sizing: border-box;
}

#header .profile:hover .pdata,
#header .profile.active .pdata {
}

#header .profile .mcont .mopts {
    height: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    background-color: white;
    right: 0;
}

#header .profile:hover .mcont .mopts,
#header .profile.active .mcont .mopts {
    height: auto;
    display: block;
    border-bottom: 1px solid #C0C0C0;
    border-right: 1px solid #C0C0C0;
    border-left: 1px solid #C0C0C0;
    width: 100%;
    box-sizing: border-box;
}

#header .profile .mcont .separator {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    /* border-top: 1px solid rgba(0, 0, 0, 0.2); */
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    height: 1px;
}
#header .profile .mcont .mopt {
    display: flex;
    white-space: nowrap;
    padding: 9px 64px 9px 10px;
    background: #FFF;
    color: #333;
    cursor: pointer;
    margin: 2px;
    text-decoration: none;
    gap: 10px;
}
#header .profile .mcont .mopt > img{
    width: 32px;
    height: 32px;
    border-radius: 5px;
    border: 1px solid #a4a4a4;
}
#header .profile .mcont .mopt .text{
    margin-top: 5px;
}

#header .profile .mcont .mopt:last-child {
    margin-bottom: 0;
}

#header .profile .mcont .mopt:hover {
    color: #D90;
    /*color:#000;
    padding:2px 3px;
    background: #FEDC89;
    border-bottom:1px solid #FDB913;
    border-top:1px solid #FDB913;
    text-decoration: none;*/
}

#header .profile .mcont .mopts-slider {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    /*border-top: 1px solid rgba(0, 0, 0, 0.2);*/
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-top: 10px;
}

#header .profile .mcont .msep {
    height: 1px;
    background: #CCC;
    margin: 0 10px;
}

#header .iewarn {
    background: #D00;
    color: #FFF;
    margin: -10px -15px 10px;
    padding: 5px;
    border-bottom: 1px solid #FDB913;
}

#header .iewarn a {
    color: #600;
    text-decoration: underline;
}

#header .iewarn a:hover {
    color: #FFF;
}

#header .compmode {

}

#notif {
    display: none;
    float: left;
    margin: 0 3px 0 0;
    background: url("../imgs/bgglass.png") repeat-x scroll center center #FFF;
    padding: 10px 3px;
    height: 14px;
    border: 1px solid #CCC;
    cursor: pointer;
    position: relative;
}

#notif.active {
    border: 1px solid #C00;
    background: url("../imgs/bgglass.png") repeat-x scroll center center #D75035;
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
}

#notif .icon {
    display: none;
}

#notif .count {
    padding: 0 3px;
    margin-top: -1px;
    color: #666;
    font-weight: bold;
    font-family: "Arial Black", Gadget, sans-serif;
}

#notif.active .count {
    color: #FFF;
}

#notiflist {
    display: none;
    overflow: auto;
    /*box-shadow:-1px 0 6px -1px #666666;
    -webkit-box-shadow:-1px 0 6px -1px #666666;
    -moz-box-shadow:-1px 0 6px -1px #666666;*/
    background-color: #FAFAFA;
    /*top: -1px;
    right: 100%;*/
}

#header .profile:hover .mcont #notiflist.opened,
#header .profile.active .mcont #notiflist.opened {
    display: block;
    max-height: 250px;
    padding: 3px;
    margin: 3px 0;
    border: 1px solid #C0C0C0;
}

#notiflist .loading {
    text-align: center;
    font-weight: bold;
    font-size: 10px;
    color: #AAA;
    padding: 5px 9px;
    margin-top: 3px;
}

#notiflist .loading:first-child {
    margin-top: 0;
}

#notiflist .list {
}

#notiflist .list .noti {
    color: #666;
    cursor: pointer;
    padding-bottom: 1px;
    margin-bottom: 1px;
    border-bottom: 1px solid #DADADA;
    font-size: 11px;
}

#notiflist .list .noti.uread {
    background: #FEDC89;
}

#notiflist .list .noti:last-child {
    border-bottom: 0 none;
}

#notiflist .list .noti .imgph {
    text-align: center;
    height: 27px;
    width: 48px;
    padding: 2px;
    margin: 2px 2px 0 0;
    float: left;
    background: center center no-repeat #FAFAFA;
}

#notiflist .list .noti .imgph img {
}

#notiflist .list .noti .imgfix {
    height: 27px;
    width: 48px;
    border: 2px solid #FFF;
    margin: auto;
    background: url('../imgs/diagonals.white.png') center #FFF;
}

#notiflist .list .noti b,
#notiflist .list .noti strong {
    color: #666;
}

#notiflist .list .noti .time {
    margin-top: 4px;
    font-size: 10px;
    float: right;
    color: #999;
    display: none;
}

#notiflist .list.empty {
    color: #999;
    padding: 5px 9px;
    text-align: center;
}

/*********
***	SEARCH BOX
*********/
.search {
    flex-shrink: 0;
}

.search.nosearch {
    filter: alpha(opacity=40);
    -moz-opacity: .40;
    opacity: .40;
}

.search .blockse {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 10;
}

.search .searchin {
    font-size: 14px;
    color: #C0C0C0;
    position: absolute;
    padding: 10px 6px 9px;
    z-index: 0;
    background: #FFF;
    width: 300px;
    height: 15px;
}

.search .searchenterkey {
    position: absolute;
    z-index: 1;
    right: 34px;
    height: 34px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0008;
}
.search .searchbox {
    margin-right: 0;
    border: 1px solid #C0C0C0;
    float: left;
    width: 300px;
    height: 28px;
    padding: 2px 5px;
    font-size: 14px;
    position: relative;
    background: transparent;
    z-index: 1;
}
.search #mainsearch{
    position: relative;
    height: 33px;
}
.search #q_autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    color:#000;
    background: #FFF;
    border: 1px solid #C0C0C0;
    border-top: 0 none;
    padding: 5px;
    max-height: 200px;
    overflow: auto;
}
.search #q_autocomplete:empty{
    display: none;
}

.search #q_autocomplete .metadata-autocomplete{
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 5px;
    cursor: pointer;
    border-bottom: 1px solid #C0C0C0;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-label{
    font-weight: bold;
    margin-bottom: 3px;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values{
    margin-left: auto;
    margin-right: 5px;
    color: #999;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value{
    display: flex;
    flex-direction: row;
    padding: 2px;
    gap: 25px;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value .metadata-autocomplete-value-label{
    color:#333;
    flex:1;
    gap: 2px;
    display: flex;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value .metadata-autocomplete-value-label .sifterstatus,
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value .metadata-autocomplete-value-label .md-status{
    display: flex;
    height: auto;
    flex:1;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value .metadata-autocomplete-value-count{
    color:#777;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value.focused{
    background-color: #FEDC89;
}
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value:hover .metadata-autocomplete-value-label,
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value:hover .metadata-autocomplete-value-count,
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value.focused .metadata-autocomplete-value-label,
.search #q_autocomplete .metadata-autocomplete .metadata-autocomplete-values .metadata-autocomplete-value.focused .metadata-autocomplete-value-count {
    text-decoration: underline;
    color: #5e4200;
}
.search .searchbox.empty {
    color: #CCC;
}

.search input[type=submit],
input.filtersbut {
    margin: 0;
    border: 1px solid #C0C0C0;
    border-left: 0 none;
    height: 0;
    width: 0;
    float: left;
    background: url(../imgs/icon.search.png) no-repeat center transparent;
    outline: none;
    padding: 16px;
}

input.filtersbut {
    z-index: 5;
    background: url("../imgs/icon.filter.png") 8px 8px no-repeat transparent;
    margin: 0 4px 0 -4px;
    padding: 15px 15px 16px;
    border-color: #E5E5E5;
}

.search input[type=submit]:hover,
input.filtersbut:hover {
    border: 1px solid #FDB913;
    margin-left: -1px;
}

input.filtersbut:hover {
    margin-left: -5px;
}

input.filtersbut.active {
    background-color: #FFF;
    border-bottom: 0 none;
    padding-bottom: 17px;
    border-color: #E5E5E5;
}

input.filtersbut.filtering {
    background: url("../imgs/icon.filter.on.png") 8px 8px no-repeat #FFF;
}

.search input[type=submit]:focus,
input.filtersbut:focus {
    outline: none;
}


/*********
***	LIST OPTIONS, SEARCH OPTIONS OVERRIDE
*********/
.searchfilters,
.assetssearchfilters {
    font-size: 12px;
    white-space: nowrap;
    display: none;
    z-index: 5;
}

.searchfilters:empty,
.assetssearchfilters:empty {
    display: none;
}

.assetssearchfilters {
    /*margin-left: 256px;*/
}

.assetssearchfilters.rr {
    margin-right: 256px;
}

.section.searchresults .assetssearchfilters {
    display: flex;
    flex-shrink: 0;
}

.assetssearchfilters.active {
    display: block;
    overflow: visible;
}

.searchoptions {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2px;
    gap: 3px;
}

.searchoptions > * {
    box-sizing: border-box;
}

.searchoptions .optstit {
    color: #666;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.searchoptions .tit {
    color: #666;
    padding: 0 9px 0 0;
}

.searchoptions .fblock {
    position: relative;
    min-height: 25px;
    display: flex;
    gap: 3px;
}

.searchoptions .fblock .tit {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 2px 5px;
    color: #999;
    font-weight: bold;
    background: #ECECEC;
    cursor: pointer;
    position: relative;
    z-index: 2;
    float: left;
    gap: 4px;
    min-height: 25px;
    border-bottom: 1px solid #c0c0c0;
}

.searchoptions .fblock .tit:last-child {
    margin-right: 0;
}

.searchoptions .fblock.nobset .tit {
    cursor: default;
}

.searchoptions .filter.filtered .tit,
.searchoptions .filter.alwayson .tit {
    color: #000;
}

.searchoptions .filter.filtered .tit > i,
.searchoptions .filter.alwayson .tit > i {
    color: #999;
}

.searchoptions .filter .remove {
    cursor: pointer;
    background: url("../imgs/remove.png") no-repeat left top;
    display: none;
    height: 18px;
    width: 18px;
    margin-bottom: -5px;
    margin-top: -2px;
    margin-left: 5px;
}

.searchoptions .filter:hover .remove {
    display: inline-block;
}

.searchoptions .filter .remove:hover {
    background-position: right top;
}

.searchoptions .fblock .tit .icon {
    height: 16px;
    width: 16px;
    background: url("../imgs/collapsable.png") left -12px;
    margin: 0 -6px -2px 2px;
    display: inline-block;
}

.searchoptions .fblock.open .tit {
    background-color: #FFF;
    padding: 2px 5px;
    z-index: 30;
}

.searchoptions .fblock.open .tit.bset-sep {
    padding-bottom: 11px;
    margin-bottom: -5px;
    z-index: 2;
}

.searchoptions .fblock .tit .filter {
    display: none;
}

.searchoptions .fblock .tit .nofilter {

}

.searchoptions .clear-filters {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: #999;
    font-weight: bold;
    background: #ECECEC;
    border-bottom: 1px solid #C0C0C0;
    cursor: pointer;
    z-index: 2;
    min-height: 25px;
    box-sizing: border-box;
}

.searchoptions .clear-filters .icon {
    width: 16px;
    height: 16px;
    background: url("../imgs/icons.png") -16px -96px;
}

.searchoptions .bset {
    position: absolute;
    padding: 0;
    background-color: #FFF;
    border: 1px solid #DADADA;
    -webkit-box-shadow: 0 3px 3px -2px #666666;
    -moz-box-shadow: 0 3px 3px -2px #666666;
    box-shadow: 0 3px 3px -2px #666666;
    z-index: 6;
    min-width: 100%;
    margin-top: -1px;
    display: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    top: 100%;
}

.searchoptions .fblock.users .bset {
    width: 260px;
}

.searchoptions .filter.open .bset,
.searchoptions .bset.open {
    display: block;
}

.searchoptions .bset label {
    margin: 1px;
    padding: 7px 12px 7px 5px;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: #333;
}

.searchoptions .bset label:hover {
    background: #F2F2F2;
    color: #D90;
}

.searchoptions .bset label.mdcb {
    display: inline-block;
    padding: 0 15px 0 0;
}

.searchoptions .metadataadd {
    margin-bottom: 15px;
}

.searchoptions .metadataadd option.private {
    color: #600;
    background: #FFFAF9;
}

.searchoptions .bset .sep {
    margin: 2px 1px;
    padding: 0;
    height: 1px;
    background-color: #DADADA;
    cursor: default;
}

.searchoptions .bset.bset-sep {
    position: relative;
    padding: 0;
    border: 0 none;
    box-shadow: 0 0;
    margin-bottom: 0;
    border-top: 1px solid #DADADA;
    z-index: 1;
}


.searchoptions .fblock.medium {
    width: 150px;
}

.searchoptions .fblock.large {
    width: 250px;
}

.searchoptions .fblock.wide {
    float: none;
    margin-right: 0;
}

.searchoptions .catname {
    display: inline-block;
}

.searchoptions .catname .cat {
    padding: 1px 3px 1px;
    height: 14px;
    clear: none;
    cursor: pointer;
    background: #FFF none;
    border: 1px solid #C0C0C0;
    color: #666;
    font-size: 11px;
    line-height: 14px;
    font-weight: normal;
}

.searchoptions .catname .cat:hover {
    border-color: #FDB913;
}

.searchoptions .catname .selcat .c {
    padding: 0 2px 2px 0;
}

.searchoptions .catname .selcat .s {
    margin: 3px 3px 0 0;
}

.searchoptions .catname .remover,
.searchoptions .catname .remover {
    height: 12px;
    width: 12px;
    margin: 2px 2px 0 3px;
    display: inline-block;
    background: url(../imgs/remove.png) -3px -3px repeat-x;
    cursor: pointer;
    filter: alpha(opacity=50);
    -moz-opacity: .50;
    opacity: .50;
}

.searchoptions .catname .remover:hover,
.searchoptions .catname .remover:hover {
    background-position: 51px -3px;
}

.searchoptions .catname .remover {
    margin: 3px 0 -2px 6px;
}

/*.searchoptions #advtypes .ui-button-text{
	height:16px;
	width:16px;
	background:url(../imgs/icons.png) no-repeat;
}
.searchoptions #advtypes .video .ui-button-text{ 	background-position: 0 0; }
.searchoptions #advtypes .audio .ui-button-text{ 	background-position: -16px 0; }
.searchoptions #advtypes .image .ui-button-text{ 	background-position: -32px 0; }
.searchoptions #advtypes .document .ui-button-text{ background-position: -48px 0; }
.searchoptions #advtypes .playlist .ui-button-text{ background-position: -64px 0; }
.searchoptions #advtypes .unknown .ui-button-text{ 	background-position: -80px 0; }
.searchoptions #advtypes .none .ui-button-text{ 	background-position: -96px 0; }*/
.searchoptions label {
    display: block;
    cursor: pointer;
    padding: 2px 1px;
    color: #666;
}

.searchoptions label.on {
    color: #FDB913;
}

.searchoptions label:hover {
    color: #FDB913;
}

.searchoptions label.off {
    color: #999;
}

.searchoptions label.off:hover {
    color: #C17D00;
}

.searchoptions label input.show {
    display: inherit;
    float: left;
    margin: 1px 7px 1px 0;
}

.searchoptions .ui-button-text-only .ui-button-text {
    padding: 0;
}

.searchoptions .ui-button .ui-button-text {
    font-size: 11px;
}

.searchoptions .ui-buttonset {
    height: 28px;
}

.searchoptions .ui-buttonset .ui-button {
    padding: 5px 12px;
}

.searchoptions .ui-buttonset .ui-button:last-child {
}


/****************
*** CATEGORY SEARCHER
****************/
.searchoptions #catsearcher,
.searchoptions #mdsearcher,
.searchoptions #sortsearcher,
.searchoptions #qsearcher,
.searchoptions #tagssearcher {
    display: none;
    float: none;
    position: relative;
}

.searchoptions #catsearcher.opened,
.searchoptions #mdsearcher.opened,
.searchoptions #sortsearcher.opened,
.searchoptions #qsearcher.opened,
.searchoptions #tagssearcher.opened {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.searchoptions #catsearcher span {
}

.searchoptions #catsearcher .tit {
    margin-right: 0;
}

.searchoptions .tagnames {
    display: block;
    margin-top: -1px;
    float: right;
}

.searchoptions .tags {
    display: inline-block;
    margin: -1px -3px -6px 0;
}

.searchoptions .tag {
    white-space: nowrap;
    float: left;
    margin: 0 4px 0 8px;
    padding: 0 2px 1px;
    cursor: pointer;
    color: #333;
    background-color: #FEF2D4;
    /*border:1px solid #D9D2BF;*/
    border: 1px solid #FDB913;
    border-left: 0 none;
    font-size: 11px;
    position: relative;
    height: 13px;
}

.searchoptions .tag:last-child {
    margin-right: 0;
}

.searchoptions .tag .tail {
    width: 7px;
    height: 16px;
    background: url("../imgs/asset.tagtail.png") top left no-repeat;
    position: absolute;
    left: -7px;
    top: -1px;
}

.searchoptions .tag.selected {
    background-color: #FEDC89;
    border: 1px solid #BE8601;
    border-left: 0 none;
    padding: 0 2px;
}

.searchoptions .tag:hover {
    background-color: #FEF2D4;
    border: 1px solid #BE8601;
    border-left: 0 none;
}

.searchoptions .tag:hover .tail {
    background-position: 0 -24px;
}

.searchoptions .tag.s1 {
    font-size: 11px;
    height: 13px;
    margin-left: 8px;
    line-height: 15px;
}

.searchoptions .tag.s2 {
    font-size: 11px;
    height: 15px;
    margin-left: 9px;
    line-height: 15px;
    padding: 1px 2px 0;
}

.searchoptions .tag.s3 {
    font-size: 14px;
    height: 17px;
    margin-left: 10px;
    line-height: 18px;
}

.searchoptions .tag.s4 {
    font-size: 16px;
    height: 19px;
    margin-left: 11px;
    line-height: 18px;
}

.searchoptions .tag.s5 {
    font-size: 18px;
    height: 21px;
    margin-left: 12px;
    line-height: 22px;
}

.searchoptions .tag.s1 .tail {
    width: 7px;
    left: -7px;
    height: 16px;
    background-position: 0 0;
}

.searchoptions .tag.s2 .tail {
    width: 8px;
    left: -8px;
    height: 18px;
    background-position: -7px 0;
}

.searchoptions .tag.s3 .tail {
    width: 9px;
    left: -9px;
    height: 20px;
    background-position: -15px 0;
}

.searchoptions .tag.s4 .tail {
    width: 10px;
    left: -10px;
    height: 22px;
    background-position: -24px 0;
}

.searchoptions .tag.s5 .tail {
    width: 11px;
    left: -11px;
    height: 24px;
    background-position: -34px 0;
}

.searchoptions .tag.s1.selected .tail {
    width: 7px;
    left: -7px;
    height: 16px;
    background-position: 0 -48px;
}

.searchoptions .tag.s2.selected .tail {
    width: 8px;
    left: -8px;
    height: 18px;
    background-position: -7px -48px;
}

.searchoptions .tag.s3.selected .tail {
    width: 9px;
    left: -9px;
    height: 20px;
    background-position: -15px -48px;
}

.searchoptions .tag.s4.selected .tail {
    width: 10px;
    left: -10px;
    height: 22px;
    background-position: -24px -48px;
}

.searchoptions .tag.s5.selected .tail {
    width: 11px;
    left: -11px;
    height: 24px;
    background-position: -34px -48px;
}

.searchoptions .tag.s1:hover .tail {
    background-position: 0 -24px;
}

.searchoptions .tag.s2:hover .tail {
    background-position: -7px -24px;
}

.searchoptions .tag.s3:hover .tail {
    background-position: -15px -24px;
}

.searchoptions .tag.s4:hover .tail {
    background-position: -24px -24px;
}

.searchoptions .tag.s5:hover .tail {
    background-position: -34px -24px;
}

.searchoptions .values {
    display: flex;
    flex-direction: row;
}

.searchoptions .value {
    white-space: nowrap;
    margin: 0 0 0 2px;
    cursor: pointer;
    color: #666;
    font-weight: normal;
    display: flex;
    align-items: center;
}

.searchoptions .value.field,
.searchoptions .value.dir {
    margin-left: 0;
}

.searchoptions .values .value:after {
    content: ',';
}

.searchoptions .fstatus .values .value:after,
.searchoptions .field-id-status .values .value:after,
.searchoptions .field-id-deliveryFiles .values .value:after,
.searchoptions .field-id-fileVersionStatus .values .value:after,
.searchoptions .values .value:last-child:after {
    content: '';
}

.searchoptions .field-id-deliveryFiles .values,
.searchoptions .field-id-fileVersionStatus .values {
    margin-left: 3px;
}

.searchoptions .fstatus .values .value,
.searchoptions .field-id-status .values .value,
.searchoptions .field-id-deliveryFiles .values .value,
.searchoptions .field-id-fileVersionStatus .values .value {
    color: #FFF;
    text-shadow: 0 0 2px #333;
    max-width: 160px;
    font-size: 12px;
    display: block;
    border-radius: 3px;
    padding: 2px 6px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.searchoptions .values .value:hover {
    color: #FDB913;
    text-decoration: underline;
}

.searchoptions .fstatus .values .value:hover,
.searchoptions .field-id-status .values .value:hover,
.searchoptions .field-id-deliveryFiles .values .value:hover,
.searchoptions .field-id-fileVersionStatus .values .value:hover {
    color: #FFF;
}

.searchoptions .values .value.approved,
.searchoptions .field-id-fileVersionStatus .values .value.available {
    background-color: #6C9CC1;
    border-color: #369;
}

.searchoptions .values .value.sending,
.searchoptions .values .value.uploading {
    background: url(../imgs/uploading_status.png) #FDD641;
}

.searchoptions .values .value.finalized,
.searchoptions .values .value.sent,
.searchoptions .values .value.encoding {
    background-color: #6C6;
    border-color: #080;
}

.searchoptions .values .value.complete,
.searchoptions .values .value.waiting,
.searchoptions .values .value.queued {
    background-color: #FDD641;
    border-color: #CDA601;
}

.searchoptions .values .value.incomplete,
.searchoptions .values .value.none,
.searchoptions .values .value.deleted,
.searchoptions .values .value.idle,
.searchoptions .values .value.canceled {
    background-color: #C1C1C1;
    border-color: #999;
}

.searchoptions .values .value.rejected,
.searchoptions .values .value.upload_interrupted,
.searchoptions .values .value.error {
    background-color: #C66;
    border-color: #900;
}

.searchoptions .values .value > span {
    font-size: 8px;
    margin-right: 2px;
    font-weight: bold;
}

/*
NEW SORT & GROUP BY
*/
#sort-group-by-block {
    position: relative;
    margin: 0;
    padding: 10px 15px 10px 10px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(auto, 10vw) auto auto;
    align-items: center;
    grid-column-gap: 5px;
    row-gap: 4px;
    z-index: 6;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80vh;
    width: max-content;
}

#sort-group-by-block input[type="radio"],
#sort-group-by-block input[type="checkbox"] {
    margin: 0 !important;
    cursor: pointer;
}

#sort-group-by-block .tit-label {
    font-size: 8px;
    /*font-style: italic;*/
    font-weight: bold;
    margin-bottom: 2px;
}

#sort-group-by-block .tit-label.sort {
    grid-column-start: 2;
    grid-column-end: 3;
}

#sort-group-by-block .tit-label.group {
    grid-column-start: 3;
    grid-column-end: 4;
}

#sort-group-by-block .md-tit {
    grid-column: 1/-1;
    margin-top: 8px;
    font-weight: bold;
}

#sort-group-by-block .sg-by-input {
    justify-self: center;
    display: inline-grid;
    align-items: center;
    justify-items: center;
    grid-template-columns: auto 10px;
    gap: 2px;
}

#sort-group-by-block .hide {
    display: none;
}

#sort-group-by-block .sg-by-sort-dir-icon {
    margin-left: 2px;
    align-items: center;
    justify-content: center;
    color: #333;
}
#sort-group-by-block .sg-by-sort-dir-icon.asc::before {
    font-family: "Font Awesome 6 Free", serif; font-weight: 900; content: "\f882";
    /*background: no-repeat 0 0 url("../imgs/sort-group-by-icons.png");*/
    /*f15d*/
}

#sort-group-by-block .sg-by-sort-dir-icon.desc::before {
    font-family: "Font Awesome 6 Free", serif; font-weight: 900; content: "\f15d";
}