/*
Usage:
- linear-gradient((color1, color2, color3)) - returns linear-gradient with evenly distributed colors,
   if 3 colors used then the position of each will be 33,33%
- linear-gradient((color1 0%, color2 30%, color3 80%)) - returns linear-gradient with manually distributed colors,
   first param - color, second - position. Also you can use px or other valid units for set position.
*/
/* based on "visually-hidden" mixin in LDS for accessibility goals */
/* Do not edit */
/* tooltip */
.resourcemgr {
    width: 90%;
    height: 100%;
    max-width: 1400px;
}

#mediaManager .resourcemgr.modal {
    max-height: 700px;
    top: 40px !important;
    bottom: 40px;
    padding: 0;
}

.resourcemgr > h2 {
    font-size: 15px;
    font-size: 1.5rem;
    margin: 20px 40px 10px;
    height: 40px;
}

.resourcemgr .file-wrapper {
    overflow-y: auto;
    margin: 0 40px;
    height: calc(100% - 40px - 40px - 40px);
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
}

.resourcemgr .file-browser {
    -ms-order: 0;
    order: 0;
    flex-item-align: stretch;
    align-self: stretch;
    flex: 0 0 260px;
}

.resourcemgr .file-preview {
    -ms-order: 0;
    order: 0;
    flex-item-align: stretch;
    align-self: stretch;
    flex: 0 0 300px;
}

.resourcemgr .file-selector {
    -ms-order: 0;
    order: 0;
    flex-item-align: stretch;
    align-self: stretch;
    flex: 1 1 auto;
    flex: 1 1;
    max-width: calc(100% - 560px);
}

.resourcemgr .file-browser, .resourcemgr .file-selector, .resourcemgr .file-preview {
    position: relative;
    vertical-align: top;
    height: 100% !important;
    color: #222;
}

.resourcemgr .file-browser h1, .resourcemgr .file-selector h1, .resourcemgr .file-preview h1 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #222;
    margin-top: 1px;
    padding: 5px;
}

.resourcemgr .file-browser h2, .resourcemgr .file-selector h2, .resourcemgr .file-preview h2 {
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.3;
    background-color: #d4d5d7;
    color: #222;
    margin-top: 1px;
    padding: 6px;
    position: relative;
    clear: both;
}

.resourcemgr .file-browser h2.toggler, .resourcemgr .file-selector h2.toggler, .resourcemgr .file-preview h2.toggler {
    cursor: pointer;
}

.resourcemgr .file-browser h2.toggler:after, .resourcemgr .file-selector h2.toggler:after, .resourcemgr .file-preview h2.toggler:after {
    position: absolute;
    right: 15px;
    top: 3px;
}

.resourcemgr .file-browser {
    background-color: #f3f1ef;
}

.resourcemgr .file-browser > h1 {
    background-color: #d4d5d7;
}

.resourcemgr .file-browser .file-browser-wrapper {
    overflow: auto;
    height: calc(100% - 50px);
}

.resourcemgr .file-browser ul {
    list-style-type: none;
    padding-left: 5px;
}

.resourcemgr .file-browser ul ul {
    padding-left: 18px;
}

.resourcemgr .file-browser ul li a {
    color: #222;
    white-space: nowrap;
}

.resourcemgr .file-browser ul li a:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'tao' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e60c";
    margin: 0 3px;
}

.resourcemgr .file-browser ul li a.opened:before {
    font-style: italic;
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'tao' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e60d";
}

.resourcemgr .file-browser ul li.active > a {
    background-color: #ecf2f6;
}

.resourcemgr .file-preview {
    background-color: #f3f1ef;
}

.resourcemgr .file-preview > h1 {
    background-color: #d4d5d7;
}

.resourcemgr .file-preview .file-properties {
    padding: 0 5px;
}

.resourcemgr .file-preview .previewer {
    height: 300px;
    overflow: hidden;
}

.resourcemgr .file-preview .actions {
    text-align: center;
    margin-bottom: 10px;
}

.resourcemgr .file-selector {
    position: relative;
    border: solid 1px #fff;
    border-top: none;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    background-color: white;
}

.resourcemgr .file-selector > h1 {
    position: relative;
    background-color: #f3f1ef;
}

.resourcemgr .file-selector > h1 .title {
    margin-right: 10px;
}

.resourcemgr .file-selector > h1 .upload-switcher a {
    display: inline-block;
}

.resourcemgr .file-selector > h1 .upload-switcher .listing {
    display: none;
}

.resourcemgr .file-selector .empty {
    color: #666;
    font-style: italic;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
}

.resourcemgr .file-selector ul.files {
    position: relative;
    margin-bottom: 0;
    padding: 0;
    list-style-type: none;
    flex-grow: 1;
    overflow-y: auto;
}

.resourcemgr .file-selector ul.files li {
    height: 35px;
    line-height: 35px;
    margin-bottom: 0;
    padding: 0 0 0 5px;
    position: relative;
}

.resourcemgr .file-selector ul.files li:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'tao' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e622";
    font-size: 16px;
    font-size: 1.6rem;
    vertical-align: top;
    line-height: 2.2;
    position: absolute;
    left: 8px;
}

.resourcemgr .file-selector ul.files li[data-type='image']:before {
    content: "\e620";
}

.resourcemgr .file-selector ul.files li[data-type='audio']:before {
    content: "\e670";
}

.resourcemgr .file-selector ul.files li[data-type='video']:before {
    content: "\e61e";
}

.resourcemgr .file-selector ul.files li.active, .resourcemgr .file-selector ul.files li:hover {
    background-color: #ecf2f6;
    cursor: pointer;
}

.resourcemgr .file-selector ul.files li .desc {
    display: inline-block;
    max-width: calc(100% - 130px);
    margin-left: 25px;
}

.resourcemgr .file-selector ul.files li .actions {
    top: 0;
    right: 0;
    position: absolute;
    height: 35px;
    width: 100px;
}

.resourcemgr .file-selector ul.files li .actions .tlb {
    display: inline-block;
    background: none;
    font-size: 14px;
    font-size: 1.4rem;
}

.resourcemgr .file-selector ul.files li .actions .tlb .tlb-top {
    background: none !important;
    border-width: 0 !important;
    -ms-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2);
}

.resourcemgr .file-selector .file-upload-container {
    display: none;
    padding: 0 5px;
}

.resourcemgr .file-selector .pagination-bottom {
    align-self: flex-end;
    width: 100%;
    padding: 5px 10px 0;
}

/*# sourceMappingURL=resourcemgr.css.map */