/*
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 */
.class-selector {
    padding: 5px;
    position: relative;
    opacity: 0;
}

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

.class-selector a.selected {
    display: inline-block;
    position: relative;
    border: 1px solid #ddd;
    border-radius: 2px;
    border-radius: 3px;
    padding: 3px 20px 3px 10px;
    text-decoration: none;
    width: 100%;
    background-color: white;
}

.class-selector a.selected.empty {
    color: #a4a9b1;
}

.class-selector a.selected: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";
    position: absolute;
    right: 10px;
    top: 7px;
}

.class-selector a.open:after {
    content: "\e610";
}

.class-selector .options {
    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;
    margin-top: 7px;
    overflow-y: auto;
    z-index: 100;
    min-height: 100px;
    max-height: 450px;
    transition: max-height, 300ms, ease, 0s;
}

.class-selector .options.folded {
    overflow: hidden;
    min-height: 0;
    max-height: 0;
    border-width: 0;
    transition: max-height, 300ms, ease, 0s;
}

.class-selector .options ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 0 15px;
}

.class-selector .options ul li {
    padding-top: 3px;
}

.class-selector .options ul li a {
    text-decoration: none;
    color: #222;
}

.class-selector .options ul li a:hover {
    color: #0e5d91;
    transition: color, 200ms, linear, 0s;
}

.class-selector .options ul 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: "\e60c";
    color: #d8ae5b;
    top: 2px;
    -webkit-text-shadow: 1px 1px 0 #ad8b49;
    -moz-text-shadow: 1px 1px 0 #ad8b49;
    text-shadow: 1px 1px 0 #ad8b49;
    margin-right: 4px;
}

.class-selector .options > ul {
    margin: 5px 0 0 7px;
}

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