/*
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 */
.resource-selector {
    position: relative;
    height: 100%;
    display: -ms-flex;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    opacity: 0;
    background-color: #f3f1ef;
    border: 1px solid #ddd;
    border-radius: 2px;
    -webkit-border-radius: 2px;
}

.resource-selector.rendered {
    opacity: 1;
    transition: opacity, 300ms, linear, 0s;
}

.resource-selector .resource-list {
    position: relative;
    height: 100%;
    opacity: 0;
}

.resource-selector .resource-list.rendered {
    opacity: 1;
    transition: opacity, 300ms, linear, 0s;
}

.resource-selector .resource-list.multiple ul li a:after {
    display: block;
    transition: all, 200ms, linear, 0s;
}

.resource-selector .resource-list.multiple ul li[data-access="denied"] a:after {
    display: none;
}

.resource-selector .resource-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.resource-selector .resource-list ul li {
    position: relative;
    height: 40px;
    padding: 10px;
    border-bottom: solid 1px #ddd;
    transition: background-color, 200ms, linear, 0s;
}

.resource-selector .resource-list ul li a {
    transition: color, 200ms, linear, 0s;
    color: #222;
    display: inline-block;
    width: 100%;
    padding-right: 25px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.resource-selector .resource-list ul li a:after {
    /* 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: "\e69b";
    color: #0e5d91;
    position: absolute;
    right: 17px;
    top: 12px;
    display: none;
}

.resource-selector .resource-list ul li a:hover {
    text-decoration: none;
}

.resource-selector .resource-list ul li a > span {
    color: #0e5d91;
    margin-right: 4px;
    font-size: 16px;
    font-size: 1.6rem;
    vertical-align: top;
}

.resource-selector .resource-list ul li.selected, .resource-selector .resource-list ul li:hover {
    background-color: #3e7da7;
    cursor: pointer;
    transition: background-color, 200ms, linear, 0s;
}

.resource-selector .resource-list ul li.selected a, .resource-selector .resource-list ul li:hover a {
    color: white;
    transition: color, 200ms, linear, 0s;
}

.resource-selector .resource-list ul li.selected a:after, .resource-selector .resource-list ul li:hover a:after {
    color: white;
}

.resource-selector .resource-list ul li.selected a > span, .resource-selector .resource-list ul li:hover a > span {
    color: white;
}

.resource-selector .resource-list ul li.selected a:after {
    content: "\e69d";
}

.resource-selector .resource-list ul li[data-access=denied] > a [class^="icon-"], .resource-selector .resource-list ul li[data-access=denied] > a [class*=" icon-"], .resource-selector .resource-list ul li[data-access=partial] > a [class^="icon-"], .resource-selector .resource-list ul li[data-access=partial] > a [class*=" icon-"] {
    position: relative;
}

.resource-selector .resource-list ul li[data-access=denied] > a [class^="icon-"]:after, .resource-selector .resource-list ul li[data-access=denied] > a [class*=" icon-"]:after, .resource-selector .resource-list ul li[data-access=partial] > a [class^="icon-"]:after, .resource-selector .resource-list ul li[data-access=partial] > a [class*=" icon-"]:after {
    content: "\e629";
    color: #555;
    position: absolute;
    left: 7px;
    top: 6px;
}

.resource-selector .resource-list ul li[data-access=denied] {
    color: #a4a9b1;
    background-color: white;
}

.resource-selector .resource-list ul li[data-access=denied]:hover, .resource-selector .resource-list ul li[data-access=denied]:hover > a, .resource-selector .resource-list ul li[data-access=denied] > a, .resource-selector .resource-list ul li[data-access=denied] [class^="icon-"]:before, .resource-selector .resource-list ul li[data-access=denied] [class*=" icon-"]:before {
    cursor: auto;
    background-color: white;
    color: #a4a9b1 !important;
}

.resource-selector .resource-tree {
    position: relative;
    height: 100%;
    opacity: 0;
}

.resource-selector .resource-tree.rendered {
    opacity: 1;
    transition: opacity, 300ms, linear, 0s;
}

.resource-selector .resource-tree.multiple ul li.selectable > a > .selector {
    display: inline-block;
}

.resource-selector .resource-tree.multiple ul li.instance[data-access="denied"] a .selector {
    display: none;
}

.resource-selector .resource-tree .clickable:hover:before {
    content: " ";
    display: inline-block;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 7.5px;
    left: 0;
    border-radius: 50%;
    background-color: #b9bfc3;
    opacity: .5;
}

.resource-selector .resource-tree .clickable:focus {
    outline: 0 none;
}

.resource-selector .resource-tree ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.resource-selector .resource-tree ul li {
    position: relative;
    cursor: pointer;
}

.resource-selector .resource-tree ul li > a {
    height: 40px;
    line-height: 40px;
    display: block;
    width: 100%;
    padding-right: 30px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: solid 1px #ddd;
    color: #222;
}

.resource-selector .resource-tree ul li.class .class-toggler {
    display: inline-block;
    position: relative;
    width: 25px;
    height: 40px;
    text-align: center;
}

.resource-selector .resource-tree ul li.class .class-toggler:after {
    /* 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: "\e611";
    font-size: 15px;
    font-size: 1.5rem;
    position: relative;
}

.resource-selector .resource-tree ul li.class.empty .class-toggler {
    visibility: hidden;
}

.resource-selector .resource-tree ul li.class > a > .icon-folder:before {
    content: "\e60d";
    color: #d8ae5b;
    margin-right: 4px;
}

.resource-selector .resource-tree ul li.class > a:hover {
    background-color: #e7eff4;
    color: #222;
    transition: all, 200ms, linear, 0s;
}

.resource-selector .resource-tree ul li.class.selected > a {
    background-color: #3e7da7;
    color: white;
    transition: all, 200ms, linear, 0s;
}

.resource-selector .resource-tree ul li.class.selected > a:before, .resource-selector .resource-tree ul li.class.selected > a:after {
    color: white;
}

.resource-selector .resource-tree ul li.class.selected > a:hover {
    background-color: #266d9c;
    transition: all, 200ms, linear, 0s;
}

.resource-selector .resource-tree ul li.class.selected > a .clickable:hover:before {
    background-color: #518ab0;
}

.resource-selector .resource-tree ul li.class.closed > a > .class-toggler:after {
    content: "\e60f";
}

.resource-selector .resource-tree ul li.class.closed > a > .icon-folder:before {
    content: "\e60c";
}

.resource-selector .resource-tree ul li.class.closed > ul {
    display: none;
}

.resource-selector .resource-tree ul li.instance > a > [class^="icon-"], .resource-selector .resource-tree ul li.instance > a > [class*=" icon-"] {
    color: #0e5d91;
    margin-right: 4px;
    margin-left: 25px;
    font-size: 16px;
    font-size: 1.6rem;
}

.resource-selector .resource-tree ul li.instance:hover {
    background-color: #e7eff4;
    color: #222;
    transition: all, 200ms, linear, 0s;
}

.resource-selector .resource-tree ul li.instance.selected {
    background-color: #3e7da7;
    transition: all, 200ms, linear, 0s;
}

.resource-selector .resource-tree ul li.instance.selected > a, .resource-selector .resource-tree ul li.instance.selected > a > [class^="icon-"], .resource-selector .resource-tree ul li.instance.selected > a > [class*=" icon-"] {
    color: white;
}

.resource-selector .resource-tree ul li.instance.selected:hover {
    background-color: #266d9c;
    transition: all, 200ms, linear, 0s;
}

.resource-selector .resource-tree ul li.instance.selected .clickable:hover:before {
    background-color: #518ab0;
}

.resource-selector .resource-tree ul li > a > .selector {
    display: none;
    position: absolute;
    top: 0;
    right: 8px;
    line-height: 40px;
    height: 40px;
    width: 25px;
    text-align: center;
}

.resource-selector .resource-tree ul li > a > .selector:after {
    transition: all, 200ms, linear, 0s;
    /* 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: "\e69b";
    font-size: 15px;
    font-size: 1.5rem;
    color: #0e5d91;
    line-height: 40px;
    position: relative;
}

.resource-selector .resource-tree ul li.selected > a > .selector:after {
    content: "\e69d";
}

.resource-selector .resource-tree ul li.selected > a > .selector:after, .resource-selector .resource-tree ul li.selected > a:hover > .selector:after {
    color: white;
}

.resource-selector .resource-tree ul li[data-access=denied] > a [class^="icon-"], .resource-selector .resource-tree ul li[data-access=denied] > a [class*=" icon-"], .resource-selector .resource-tree ul li[data-access=partial] > a [class^="icon-"], .resource-selector .resource-tree ul li[data-access=partial] > a [class*=" icon-"] {
    position: relative;
}

.resource-selector .resource-tree ul li[data-access=denied] > a [class^="icon-"]:after, .resource-selector .resource-tree ul li[data-access=denied] > a [class*=" icon-"]:after, .resource-selector .resource-tree ul li[data-access=partial] > a [class^="icon-"]:after, .resource-selector .resource-tree ul li[data-access=partial] > a [class*=" icon-"]:after {
    content: "\e629";
    color: #555;
    position: absolute;
    left: 7px;
    top: 6px;
}

.resource-selector .resource-tree ul li[data-access=denied] {
    color: #a4a9b1;
    background-color: white;
}

.resource-selector .resource-tree ul li[data-access=denied]:hover, .resource-selector .resource-tree ul li[data-access=denied]:hover > a, .resource-selector .resource-tree ul li[data-access=denied] > a, .resource-selector .resource-tree ul li[data-access=denied] [class^="icon-"]:before, .resource-selector .resource-tree ul li[data-access=denied] [class*=" icon-"]:before {
    cursor: auto;
    background-color: white;
    color: #a4a9b1 !important;
}

.resource-selector .resource-tree ul li a:hover {
    text-decoration: none;
}

.resource-selector .filters {
    position: relative;
    height: 100%;
    opacity: 0;
}

.resource-selector .filters.rendered {
    opacity: 1;
    transition: opacity, 300ms, linear, 0s;
}

.resource-selector .filters .ui-generis-form {
    margin: 0;
    padding: 10px;
    width: 100%;
    background-color: #f3f1ef;
    border: none;
}

.resource-selector .filters .ui-generis-form h2 {
    margin: 0;
}

.resource-selector .filters .ui-generis-form .left {
    width: 100%;
}

.resource-selector .filters .ui-generis-form .toolbar {
    margin: 0;
}

.resource-selector nav {
    height: 40px;
    flex: 0 1 40px;
    border-top: solid 1px #ddd;
}

.resource-selector .context {
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    padding-right: 16px;
}

.resource-selector .context .class-context {
    -ms-order: 0;
    order: 0;
    flex-item-align: stretch;
    align-self: stretch;
    flex: 1 1 auto;
    flex: 1 1;
    overflow: hidden;
}

.resource-selector .context .class-context .class-selector {
    position: static;
}

.resource-selector .context .class-context .class-selector .options {
    max-height: calc(100% - 120px);
}

.resource-selector .context .class-context .class-selector .options.folded {
    max-height: 0;
}

.resource-selector .context > a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 10px 0 0 12px;
    color: #222;
    border-left: solid 1px white;
    text-shadow: 0 0 0 transparent;
    text-decoration: none;
}

.resource-selector .context > a:hover, .resource-selector .context > a.active {
    color: #3e7da7;
    transition: color, 200ms, linear, 0s;
}

.resource-selector .selection {
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    padding-right: 16px;
}

.resource-selector .selection .selection-control {
    flex: 0 0 80px;
}

.resource-selector .selection .selection-control > label {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 10px 0 0 12px;
    color: #222;
    border-left: solid 1px white;
    text-shadow: 0 0 0 transparent;
    text-decoration: none;
    width: 36px;
    padding: 10px 0 0 8px;
    margin: 0;
}

.resource-selector .selection .selection-control > label:hover, .resource-selector .selection .selection-control > label.active {
    color: #3e7da7;
    transition: color, 200ms, linear, 0s;
}

.resource-selector .selection .selection-control > a {
    display: inline-block;
    width: 40px;
    height: 40px;
    padding: 10px 0 0 12px;
    color: #222;
    border-left: solid 1px white;
    text-shadow: 0 0 0 transparent;
    text-decoration: none;
    width: 38px;
}

.resource-selector .selection .selection-control > a:hover, .resource-selector .selection .selection-control > a.active {
    color: #3e7da7;
    transition: color, 200ms, linear, 0s;
}

.resource-selector .selection .selection-control .selection-toggle .icon-multi-select:before {
    font-size: 16px;
    font-size: 1.6rem;
}

.resource-selector .selection .selection-control .selection-toggle.hidden {
    display: inline-block !important;
    visibility: hidden;
}

.resource-selector .selection .search {
    -ms-order: 0;
    order: 0;
    flex-item-align: stretch;
    align-self: stretch;
    flex: 1 1 auto;
    flex: 1 1;
    position: relative;
    padding: 6px 6px 6px 5px;
}

.resource-selector .selection .search: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: "\e61f";
    position: absolute;
    left: 12px;
    top: 12px;
    opacity: .4;
}

.resource-selector .selection .search input {
    border-radius: 2px;
    max-width: inherit;
    width: 100%;
    padding: 4px 25px;
}

.resource-selector .selection .search > a.filters-opener {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    text-decoration: none;
}

.resource-selector .selection .filters-container {
    position: absolute;
    width: 100%;
    background-color: #f3f1ef;
    border: solid 1px #ddd;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    -ms-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
    -o-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, 0.2);
    left: 0;
    top: 80px;
    overflow-y: auto;
    z-index: 100;
    max-height: calc(100% - 110px);
    transition: max-height, 300ms, ease, 0s;
}

.resource-selector .selection .filters-container.folded {
    overflow: hidden;
    max-height: 0;
    border-width: 0;
    transition: max-height, 300ms, ease, 0s;
}

.resource-selector main {
    -ms-order: 0;
    order: 0;
    flex-item-align: stretch;
    align-self: stretch;
    flex: 1 1 auto;
    flex: 1 1;
    min-height: 150px;
    border-top: solid 1px #ddd;
    background-color: white;
    height: 100%;
    overflow-y: scroll;
}

.resource-selector main .no-results {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 10px auto;
    opacity: .75;
}

.resource-selector main .more {
    height: 45px;
    padding: 10px;
}

.resource-selector main.loading .more {
    opacity: 0.65;
    cursor: inherit;
}

.resource-selector footer {
    height: 30px;
    flex: 0 1 30px;
    border-top: solid 1px #ddd;
    background-color: #f3f1ef;
    text-align: center;
    padding: 5px;
}

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