/*
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 */
.document-viewer .pdf-viewer {
    position: relative;
    background-color: #f9f8f7;
}

.document-viewer .pdf-viewer .pdf-bar {
    position: relative;
    display: -ms-flex;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    -moz-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    background-color: #f3f1ef;
    color: #222;
    padding: 2px;
}

.document-viewer .pdf-viewer .pdf-bar label {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 0;
    margin: 0;
}

.document-viewer .pdf-viewer .pdf-info {
    padding: 0 2px;
    margin-right: 2px;
}

.document-viewer .pdf-viewer .pdf-info .info {
    display: inline-block;
}

.document-viewer .pdf-viewer .pdf-info .info[data-control="pdf-page-num"] {
    width: 3rem;
    margin: 0 2px;
    text-align: right;
    font-size: 12px;
    font-size: 1.2rem;
    background-color: #f9f8f7;
    border: 1px solid #c2c1bf;
}

.document-viewer .pdf-viewer .pdf-info .info[data-control="pdf-page-count"] {
    font-weight: bold;
}

.document-viewer .pdf-viewer [data-control="pdf-search"] .icon, .document-viewer .pdf-viewer .pdf-find-bar .icon {
    padding: 0;
    margin: 0;
}

.document-viewer .pdf-viewer .pdf-find-bar {
    position: absolute;
    z-index: 1;
    top: 35px;
    left: 8px;
    padding: 4px 8px;
    background-color: #f9f8f7;
    border: 1px solid #c2c1bf;
    border-radius: 4px;
    -ms-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    -o-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
}

.document-viewer .pdf-viewer .pdf-find-bar::before, .document-viewer .pdf-viewer .pdf-find-bar::after {
    bottom: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.document-viewer .pdf-viewer .pdf-find-bar::before {
    left: 13px;
    margin-left: -9px;
    border-bottom-color: #c2c1bf;
    border-width: 9px;
}

.document-viewer .pdf-viewer .pdf-find-bar::after {
    left: 13px;
    margin-left: -8px;
    border-bottom-color: #f9f8f7;
    border-width: 8px;
}

.document-viewer .pdf-viewer .pdf-search-info .pdf-search-position {
    padding: 4px 8px;
    font-family: "Source Sans Pro", sans-serif;
    font-size: 12px;
    font-size: 1.2rem;
    border-radius: 4px;
    background-color: #cfdfe9;
    color: #0e5d91;
}

.document-viewer .pdf-viewer .pdf-search-info .pdf-search-loop {
    padding-left: 10px;
    font-size: 10px;
    font-size: 1rem;
    font-style: italic;
    color: #4e4e4e;
}

.document-viewer .pdf-viewer .pdf-container {
    position: relative;
    overflow-y: auto;
}

.document-viewer .pdf-viewer .pdf-container.highlight-all .highlight {
    background-color: #0e5d91;
}

.document-viewer .pdf-viewer .pdf-page {
    position: relative;
    margin: 0 auto;
}

.document-viewer .pdf-viewer .pdf-content {
    margin: 0;
    padding: 0;
    display: block;
}

.document-viewer .pdf-viewer .pdf-text {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    opacity: 0.2;
    line-height: 1.0;
}

.document-viewer .pdf-viewer .pdf-text > div {
    color: transparent;
    position: absolute;
    white-space: pre;
    cursor: text;
    transform-origin: 0% 0%;
}

.document-viewer .pdf-viewer .pdf-text .highlight {
    margin: -1px;
    padding: 1px;
    border-radius: 4px;
}

.document-viewer .pdf-viewer .pdf-text .highlight.begin {
    -webkit-border-top-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -moz-border-radius-topright: 0px;
    -moz-border-radius-bottomright: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
}

.document-viewer .pdf-viewer .pdf-text .highlight.end {
    -webkit-border-top-left-radius: 0px;
    -webkit-border-top-right-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-topright: 0px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-topleft: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.document-viewer .pdf-viewer .pdf-text .highlight.middle {
    border-radius: 0px;
}

.document-viewer .pdf-viewer .pdf-text .highlight.selected {
    background-color: #0e914b;
}

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