/* @license GNU-GPL-2.0-or-later https://www.drupal.org/licensing/faq */

.ajax-progress {
    display: inline-block;
    padding: 1px 5px 2px 5px;
}

[dir="rtl"] .ajax-progress {
    float: right;
}

.ajax-progress-throbber .throbber {
    display: inline;
    padding: 1px 5px 2px;
    background: transparent url(/themes/contrib/stable/images/core/throbber-active.gif) no-repeat 0 center;
}

.ajax-progress-throbber .message {
    display: inline;
    padding: 1px 5px 2px;
}

tr .ajax-progress-throbber .throbber {
    margin: 0 2px;
}

.ajax-progress-bar {
    width: 16em;
}

.ajax-progress-fullscreen {
    position: fixed;
    z-index: 1000;
    top: 48.5%;
    left: 49%;
    width: 24px;
    height: 24px;
    padding: 4px;
    opacity: 0.9;
    border-radius: 7px;
    background-color: #232323;
    background-image: url(/themes/contrib/stable/images/core/loading-small.gif);
    background-repeat: no-repeat;
    background-position: center center;
}

[dir="rtl"] .ajax-progress-fullscreen {
    right: 49%;
    left: auto;
}

.text-align-left {
    text-align: left;
}

.text-align-right {
    text-align: right;
}

.text-align-center {
    text-align: center;
}

.text-align-justify {
    text-align: justify;
}

.align-left {
    float: left;
}

.align-right {
    float: right;
}

.align-center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.js input.form-autocomplete {
    background-image: url(/themes/contrib/stable/images/core/throbber-inactive.png);
    background-repeat: no-repeat;
    background-position: 100% center;
}

.js[dir="rtl"] input.form-autocomplete {
    background-position: 0% center;
}

.js input.form-autocomplete.ui-autocomplete-loading {
    background-image: url(/themes/contrib/stable/images/core/throbber-active.gif);
    background-position: 100% center;
}

.js[dir="rtl"] input.form-autocomplete.ui-autocomplete-loading {
    background-position: 0% center;
}

.fieldgroup {
    padding: 0;
    border-width: 0;
}

.container-inline div,
.container-inline label {
    display: inline;
}

.container-inline .details-wrapper {
    display: block;
}

.clearfix:after {
    display: table;
    clear: both;
    content: "";
}

.js details:not([open]) .details-wrapper {
    display: none;
}

.hidden {
    display: none;
}

.visually-hidden {
    position: absolute !important;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    word-wrap: normal;
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    position: static !important;
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
}

.invisible {
    visibility: hidden;
}

.item-list__comma-list,
.item-list__comma-list li {
    display: inline;
}

.item-list__comma-list {
    margin: 0;
    padding: 0;
}

.item-list__comma-list li:after {
    content: ", ";
}

.item-list__comma-list li:last-child:after {
    content: "";
}

.js .js-hide {
    display: none;
}

.js-show {
    display: none;
}

.js .js-show {
    display: block;
}

.nowrap {
    white-space: nowrap;
}

.position-container {
    position: relative;
}

.progress {
    position: relative;
}

.progress__track {
    min-width: 100px;
    max-width: 100%;
    height: 16px;
    margin-top: 5px;
    border: 1px solid;
    background-color: #fff;
}

.progress__bar {
    width: 3%;
    min-width: 3%;
    max-width: 100%;
    height: 1.5em;
    background-color: #000;
}

.progress__description,
.progress__percentage {
    overflow: hidden;
    margin-top: 0.2em;
    color: #555;
    font-size: 0.875em;
}

.progress__description {
    float: left;
}

[dir="rtl"] .progress__description {
    float: right;
}

.progress__percentage {
    float: right;
}

[dir="rtl"] .progress__percentage {
    float: left;
}

.progress--small .progress__track {
    height: 7px;
}

.progress--small .progress__bar {
    height: 7px;
    background-size: 20px 20px;
}

.reset-appearance {
    margin: 0;
    padding: 0;
    border: 0 none;
    background: transparent;
    line-height: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.resize-none {
    resize: none;
}

.resize-vertical {
    min-height: 2em;
    resize: vertical;
}

.resize-horizontal {
    max-width: 100%;
    resize: horizontal;
}

.resize-both {
    max-width: 100%;
    min-height: 2em;
    resize: both;
}

table.sticky-header {
    z-index: 500;
    top: 0;
    margin-top: 0;
    background-color: #fff;
}

.system-status-counter__status-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    vertical-align: middle;
}

.system-status-counter__status-icon:before {
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-position: center 2px;
    background-size: 20px;
}

.system-status-counter__status-icon--error:before {
    background-image: url(/themes/contrib/stable/images/core/icons/e32700/error.svg);
}

.system-status-counter__status-icon--warning:before {
    background-image: url(/themes/contrib/stable/images/core/icons/e29700/warning.svg);
}

.system-status-counter__status-icon--checked:before {
    background-image: url(/themes/contrib/stable/images/core/icons/73b355/check.svg);
}

.system-status-report-counters__item {
    width: 100%;
    margin-bottom: 0.5em;
    padding: 0.5em 0;
    text-align: center;
    white-space: nowrap;
    background-color: rgba(0, 0, 0, 0.063);
}

@media screen and (min-width:60em) {
    .system-status-report-counters {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .system-status-report-counters__item--half-width {
        width: 49%;
    }
    .system-status-report-counters__item--third-width {
        width: 33%;
    }
}

.system-status-general-info__item {
    margin-top: 1em;
    padding: 0 1em 1em;
    border: 1px solid #ccc;
}

.system-status-general-info__item-title {
    border-bottom: 1px solid #ccc;
}

body.drag {
    cursor: move;
}

tr.region-title {
    font-weight: bold;
}

tr.region-message {
    color: #999;
}

tr.region-populated {
    display: none;
}

tr.add-new .tabledrag-changed {
    display: none;
}

.draggable a.tabledrag-handle {
    float: left;
    overflow: hidden;
    height: 1.7em;
    margin-left: -1em;
    cursor: move;
    text-decoration: none;
}

[dir="rtl"] .draggable a.tabledrag-handle {
    float: right;
    margin-right: -1em;
    margin-left: 0;
}

a.tabledrag-handle:hover {
    text-decoration: none;
}

a.tabledrag-handle .handle {
    width: 14px;
    height: 14px;
    margin: -0.4em 0.5em 0;
    padding: 0.42em 0.5em;
    background: url(/themes/contrib/stable/images/core/icons/787878/move.svg) no-repeat 6px 7px;
}

a.tabledrag-handle:hover .handle,
a.tabledrag-handle:focus .handle {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/move.svg);
}

.touchevents .draggable td {
    padding: 0 10px;
}

.touchevents .draggable .menu-item__link {
    display: inline-block;
    padding: 10px 0;
}

.touchevents a.tabledrag-handle {
    width: 40px;
    height: 44px;
}

.touchevents a.tabledrag-handle .handle {
    height: 21px;
    background-position: 40% 19px;
}

[dir="rtl"] .touch a.tabledrag-handle .handle {
    background-position: right 40% top 19px;
}

.touchevents .draggable.drag a.tabledrag-handle .handle {
    background-position: 50% -32px;
}

.tabledrag-toggle-weight-wrapper {
    text-align: right;
}

[dir="rtl"] .tabledrag-toggle-weight-wrapper {
    text-align: left;
}

.indentation {
    float: left;
    width: 20px;
    height: 1.7em;
    margin: -0.4em 0.2em -0.4em -0.4em;
    padding: 0.42em 0 0.42em 0.6em;
}

[dir="rtl"] .indentation {
    float: right;
    margin: -0.4em -0.4em -0.4em 0.2em;
    padding: 0.42em 0.6em 0.42em 0;
}

.tablesort {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-size: 100%;
}

.tablesort--asc {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/twistie-down.svg);
}

.tablesort--desc {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/twistie-up.svg);
}

div.tree-child {
    background: url(/themes/contrib/stable/images/core/tree.png) no-repeat 11px center;
}

div.tree-child-last {
    background: url(/themes/contrib/stable/images/core/tree-bottom.png) no-repeat 11px center;
}

[dir="rtl"] div.tree-child,
[dir="rtl"] div.tree-child-last {
    background-position: -65px center;
}

div.tree-child-horizontal {
    background: url(/themes/contrib/stable/images/core/tree.png) no-repeat -11px center;
}

#toolbar-administration,
#toolbar-administration * {
    box-sizing: border-box;
}

#toolbar-administration {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    font-size: small;
    line-height: 1;
}

@media print {
    #toolbar-administration {
        display: none;
    }
}

.toolbar-loading #toolbar-administration {
    overflow: hidden;
}

.toolbar li,
.toolbar .item-list,
.toolbar .item-list li,
.toolbar .menu-item,
.toolbar .menu-item--expanded {
    list-style-type: none;
    list-style-image: none;
}

.toolbar .menu-item {
    padding-top: 0;
}

.toolbar .toolbar-bar .toolbar-tab,
.toolbar .menu-item {
    display: block;
}

.toolbar .toolbar-bar .toolbar-tab.hidden {
    display: none;
}

.toolbar a {
    display: block;
    line-height: 1;
}

.toolbar .toolbar-bar,
.toolbar .toolbar-tray {
    position: relative;
    z-index: 1250;
}

.toolbar-horizontal .toolbar-tray {
    position: fixed;
    left: 0;
    width: 100%;
}

.toolbar-oriented .toolbar-bar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.toolbar-oriented .toolbar-tray {
    position: absolute;
    right: 0;
    left: 0;
}

@media (min-width:61em) {
    .toolbar-loading.toolbar-horizontal .toolbar .toolbar-bar .toolbar-tab:last-child .toolbar-tray {
        position: relative;
        z-index: -999;
        display: block;
        visibility: hidden;
        width: 1px;
    }
    .toolbar-loading.toolbar-horizontal .toolbar .toolbar-bar .toolbar-tab:last-child .toolbar-tray .toolbar-lining {
        width: 999em;
    }
    .toolbar-loading.toolbar-horizontal .toolbar .toolbar-bar .home-toolbar-tab+.toolbar-tab .toolbar-tray {
        display: block;
    }
}

.toolbar-oriented .toolbar-bar {
    z-index: 502;
}

body.toolbar-fixed .toolbar-oriented .toolbar-bar {
    position: fixed;
}

body.toolbar-tray-open.toolbar-fixed.toolbar-vertical .toolbar-oriented {
    bottom: 0;
    width: 240px;
    width: 15rem;
}

.toolbar-loading.toolbar-horizontal .toolbar .toolbar-tray .toolbar-menu>li,
.toolbar .toolbar-bar .toolbar-tab,
.toolbar .toolbar-tray-horizontal li {
    float: left;
}

[dir="rtl"] .toolbar-loading.toolbar-horizontal .toolbar .toolbar-tray .toolbar-menu>li,
[dir="rtl"] .toolbar .toolbar-bar .toolbar-tab,
[dir="rtl"] .toolbar .toolbar-tray-horizontal li {
    float: right;
}

@media only screen {
    .toolbar .toolbar-bar .toolbar-tab,
    .toolbar .toolbar-tray-horizontal li {
        float: none;
    }
    [dir="rtl"] .toolbar .toolbar-bar .toolbar-tab,
    [dir="rtl"] .toolbar .toolbar-tray-horizontal li {
        float: none;
    }
}

@media (min-width:16.5em) {
    .toolbar .toolbar-bar .toolbar-tab,
    .toolbar .toolbar-tray-horizontal li {
        float: left;
    }
    [dir="rtl"] .toolbar .toolbar-bar .toolbar-tab,
    [dir="rtl"] .toolbar .toolbar-tray-horizontal li {
        float: right;
    }
}

.toolbar-oriented .toolbar-bar .toolbar-tab,
.toolbar-oriented .toolbar-tray-horizontal li {
    float: left;
}

[dir="rtl"] .toolbar-oriented .toolbar-bar .toolbar-tab,
[dir="rtl"] .toolbar-oriented .toolbar-tray-horizontal li {
    float: right;
}

.toolbar .toolbar-tray {
    z-index: 501;
    display: none;
}

.toolbar-oriented .toolbar-tray-vertical {
    position: absolute;
    left: -100%;
    width: 240px;
    width: 15rem;
}

[dir="rtl"] .toolbar-oriented .toolbar-tray-vertical {
    right: -100%;
    left: auto;
}

.toolbar .toolbar-tray-vertical>.toolbar-lining {
    min-height: 100%;
}

.toolbar .toolbar-bar .toolbar-tab>.toolbar-icon {
    position: relative;
    z-index: 502;
}

.toolbar-oriented .toolbar-tray-horizontal .menu-item ul {
    display: none;
}

.toolbar .toolbar-tray-vertical.is-active,
body.toolbar-fixed .toolbar .toolbar-tray-vertical {
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
}

.toolbar .toolbar-tray.is-active {
    display: block;
}

.toolbar-oriented .toolbar-tray-vertical.is-active {
    left: 0;
}

[dir="rtl"] .toolbar-oriented .toolbar-tray-vertical.is-active {
    right: 0;
    left: auto;
}

body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-left: 240px;
    margin-left: 15rem;
}

@media print {
    body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
        margin-left: 0;
    }
}

[dir="rtl"] body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
    margin-right: 240px;
    margin-right: 15rem;
    margin-left: auto;
}

@media print {
    [dir="rtl"] body.toolbar-tray-open.toolbar-vertical.toolbar-fixed {
        margin-right: 0;
    }
}

.toolbar .toolbar-tray .toolbar-toggle-orientation {
    display: none;
}

.toolbar-oriented .toolbar-tray .toolbar-toggle-orientation {
    display: block;
}

.toolbar-oriented .toolbar-tray-horizontal .toolbar-toggle-orientation {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
}

[dir="rtl"] .toolbar-oriented .toolbar-tray-horizontal .toolbar-toggle-orientation {
    right: auto;
    left: 0;
}

.toolbar-oriented .toolbar-tray-vertical .toolbar-toggle-orientation {
    float: right;
    width: 100%;
}

[dir="rtl"] .toolbar-oriented .toolbar-tray-vertical .toolbar-toggle-orientation {
    float: left;
}

.toolbar .toolbar-bar .home-toolbar-tab {
    display: none;
}

.path-admin .toolbar-bar .home-toolbar-tab {
    display: block;
}

.toolbar .toolbar-menu,
[dir="rtl"] .toolbar .toolbar-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.toolbar .toolbar-box {
    position: relative;
    display: block;
    width: auto;
    line-height: 1em;
}

.toolbar .toolbar-tray-vertical .toolbar-menu ul {
    display: none;
}

.toolbar .toolbar-tray-horizontal .toolbar-menu .toolbar-handle {
    display: none;
}

.toolbar-tray-open .toolbar-menu .menu-item--expanded ul {
    display: none;
}

.toolbar .toolbar-tray-vertical li.open>ul {
    display: block;
}

.toolbar .toolbar-tray-vertical .toolbar-handle+a {
    margin-right: 3em;
}

[dir="rtl"] .toolbar .toolbar-tray-vertical .toolbar-handle+a {
    margin-right: 0;
    margin-left: 3em;
}

.toolbar .toolbar-tray .menu-item--active-trail>.toolbar-box a,
.toolbar .toolbar-tray a.is-active {
    color: #000;
    font-weight: bold;
}

@media screen and (max-width:319px) {
    .toolbar .toolbar-tray-vertical.is-active {
        width: 100%;
    }
}

.toolbar .level-2>ul {
    border-top-color: #e5e5e5;
    border-bottom-color: #ccc;
    background-color: #fafafa;
}

.toolbar .level-3>ul {
    border-top-color: #ddd;
    border-bottom-color: #c5c5c5;
    background-color: #f5f5f5;
}

.toolbar .level-4>ul {
    border-top-color: #d5d5d5;
    border-bottom-color: #bbb;
    background-color: #eee;
}

.toolbar .level-5>ul {
    border-top-color: #ccc;
    border-bottom-color: #b5b5b5;
    background-color: #e5e5e5;
}

.toolbar .level-6>ul {
    border-top-color: #c5c5c5;
    border-bottom-color: #aaa;
    background-color: #eee;
}

.toolbar .level-7>ul {
    border-top-color: #ccc;
    border-bottom-color: #b5b5b5;
    background-color: #fafafa;
}

.toolbar .level-8>ul {
    border-top-color: #ddd;
    border-bottom-color: #ccc;
    background-color: #ddd;
}

.toolbar .toolbar-handle:hover {
    cursor: pointer;
}

.toolbar .toolbar-icon.toolbar-handle {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    height: 100%;
    padding: 0;
}

[dir="rtl"] .toolbar .toolbar-icon.toolbar-handle {
    right: auto;
    left: 0;
    padding: 0;
}

.toolbar {
    font-family: "Source Sans Pro", "Lucida Grande", Verdana, sans-serif;
    font-size: 0.8125rem;
    -moz-tap-highlight-color: rgba(0, 0, 0, 0);
    -o-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    -moz-touch-callout: none;
    -o-touch-callout: none;
    -webkit-touch-callout: none;
    touch-callout: none;
}

.toolbar .toolbar-item {
    padding: 1em 1.3333em;
    cursor: pointer;
    text-decoration: none;
    line-height: 1em;
}

.toolbar .toolbar-item:hover,
.toolbar .toolbar-item:focus {
    text-decoration: underline;
}

.toolbar .toolbar-bar {
    color: #ddd;
    background-color: #0f0f0f;
    box-shadow: -1px 0 3px 1px rgba(0, 0, 0, 0.3333);
}

[dir="rtl"] .toolbar .toolbar-bar {
    box-shadow: 1px 0 3px 1px rgba(0, 0, 0, 0.3333);
}

.toolbar .toolbar-bar .toolbar-item {
    color: #fff;
}

.toolbar .toolbar-bar .toolbar-tab>.toolbar-item {
    font-weight: bold;
}

.toolbar .toolbar-bar .toolbar-tab>.toolbar-item:hover,
.toolbar .toolbar-bar .toolbar-tab>.toolbar-item:focus {
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.125) 20%, transparent 200%);
    background-image: linear-gradient(rgba(255, 255, 255, 0.125) 20%, transparent 200%);
}

.toolbar .toolbar-bar .toolbar-tab>.toolbar-item.is-active {
    background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0.25) 20%, transparent 200%);
    background-image: linear-gradient(rgba(255, 255, 255, 0.25) 20%, transparent 200%);
}

.toolbar .toolbar-tray {
    background-color: #fff;
}

.toolbar-horizontal .toolbar-tray>.toolbar-lining {
    padding-right: 5em;
}

[dir="rtl"] .toolbar-horizontal .toolbar-tray>.toolbar-lining {
    padding-right: 0;
    padding-left: 5em;
}

.toolbar .toolbar-tray-vertical {
    border-right: 1px solid #aaa;
    background-color: #f5f5f5;
    box-shadow: -1px 0 5px 2px rgba(0, 0, 0, 0.3333);
}

[dir="rtl"] .toolbar .toolbar-tray-vertical {
    border-right: 0 none;
    border-left: 1px solid #aaa;
    box-shadow: 1px 0 5px 2px rgba(0, 0, 0, 0.3333);
}

.toolbar-horizontal .toolbar-tray {
    border-bottom: 1px solid #aaa;
    box-shadow: -2px 1px 3px 1px rgba(0, 0, 0, 0.3333);
}

[dir="rtl"] .toolbar-horizontal .toolbar-tray {
    box-shadow: 2px 1px 3px 1px rgba(0, 0, 0, 0.3333);
}

.toolbar .toolbar-tray-horizontal .toolbar-tray {
    background-color: #f5f5f5;
}

.toolbar-tray a {
    padding: 1em 1.3333em;
    cursor: pointer;
    text-decoration: none;
    color: #565656;
}

.toolbar-tray a:hover,
.toolbar-tray a:active,
.toolbar-tray a:focus,
.toolbar-tray a.is-active {
    text-decoration: underline;
    color: #000;
}

.toolbar .toolbar-menu {
    background-color: #fff;
}

.toolbar-horizontal .toolbar-tray .menu-item+.menu-item {
    border-left: 1px solid #ddd;
}

[dir="rtl"] .toolbar-horizontal .toolbar-tray .menu-item+.menu-item {
    border-right: 1px solid #ddd;
    border-left: 0 none;
}

.toolbar-horizontal .toolbar-tray .menu-item:last-child {
    border-right: 1px solid #ddd;
}

[dir="rtl"] .toolbar-horizontal .toolbar-tray .menu-item:last-child {
    border-left: 1px solid #ddd;
}

.toolbar .toolbar-tray-vertical .menu-item+.menu-item {
    border-top: 1px solid #ddd;
}

.toolbar .toolbar-tray-vertical .menu-item:last-child {
    border-bottom: 1px solid #ddd;
}

.toolbar .toolbar-tray-vertical .menu-item .menu-item {
    border: 0 none;
}

.toolbar .toolbar-tray-vertical .toolbar-menu ul ul {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.toolbar .toolbar-tray-vertical .menu-item:last-child>ul {
    border-bottom: 0;
}

.toolbar .toolbar-tray-vertical .toolbar-menu .toolbar-menu .toolbar-menu .toolbar-menu {
    margin-left: 0.25em;
}

[dir="rtl"] .toolbar .toolbar-tray-vertical .toolbar-menu .toolbar-menu .toolbar-menu .toolbar-menu {
    margin-right: 0.25em;
    margin-left: 0;
}

.toolbar .toolbar-menu .toolbar-menu a {
    color: #434343;
}

.toolbar .toolbar-toggle-orientation {
    height: 100%;
    padding: 0;
    background-color: #f5f5f5;
}

.toolbar-horizontal .toolbar-tray .toolbar-toggle-orientation {
    border-left: 1px solid #c9c9c9;
}

[dir="rtl"] .toolbar-horizontal .toolbar-tray .toolbar-toggle-orientation {
    border-right: 1px solid #c9c9c9;
    border-left: 0 none;
}

.toolbar .toolbar-toggle-orientation>.toolbar-lining {
    float: right;
}

[dir="rtl"] .toolbar .toolbar-toggle-orientation>.toolbar-lining {
    float: left;
}

.toolbar .toolbar-toggle-orientation button {
    display: inline-block;
    cursor: pointer;
}

.toolbar .toolbar-icon {
    position: relative;
    padding-left: 2.75em;
}

[dir="rtl"] .toolbar .toolbar-icon {
    padding-right: 2.75em;
    padding-left: 1.3333em;
}

.toolbar .toolbar-icon:before {
    position: absolute;
    top: 0;
    left: 0.6667em;
    display: block;
    width: 20px;
    height: 100%;
    content: "";
    background-color: transparent;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-size: 100% auto;
}

[dir="rtl"] .toolbar .toolbar-icon:before {
    right: 0.6667em;
    left: auto;
}

.toolbar button.toolbar-icon {
    border: 0;
    background-color: transparent;
    font-size: 1em;
}

.toolbar .toolbar-menu ul .toolbar-icon {
    padding-left: 1.3333em;
}

[dir="rtl"] .toolbar .toolbar-menu ul .toolbar-icon {
    padding-right: 1.3333em;
    padding-left: 0;
}

.toolbar .toolbar-menu ul a.toolbar-icon:before {
    display: none;
}

.toolbar .toolbar-tray-vertical .toolbar-menu ul a {
    padding-left: 2.75em;
}

[dir="rtl"] .toolbar .toolbar-tray-vertical .toolbar-menu ul a {
    padding-right: 2.75em;
    padding-left: 0;
}

.toolbar .toolbar-tray-vertical .toolbar-menu ul ul a {
    padding-left: 3.75em;
}

[dir="rtl"] .toolbar .toolbar-tray-vertical .toolbar-menu ul ul a {
    padding-right: 3.75em;
    padding-left: 0;
}

.toolbar .toolbar-tray-vertical .toolbar-menu a {
    padding-right: 4em;
    padding-left: 2.75em;
}

[dir="rtl"] .toolbar .toolbar-tray-vertical .toolbar-menu a {
    padding-right: 2.75em;
    padding-left: 4em;
}

.toolbar-bar .toolbar-icon-menu:before {
    background-image: url(/themes/contrib/stable/images/core/icons/bebebe/hamburger.svg);
}

.toolbar-bar .toolbar-icon-menu:active:before,
.toolbar-bar .toolbar-icon-menu.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/ffffff/hamburger.svg);
}

.toolbar-bar .toolbar-icon-help:before {
    background-image: url(/themes/contrib/stable/images/core/icons/bebebe/questionmark-disc.svg);
}

.toolbar-bar .toolbar-icon-help:active:before,
.toolbar-bar .toolbar-icon-help.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/ffffff/questionmark-disc.svg);
}

.toolbar-icon-system-admin-content:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/file.svg);
}

.toolbar-icon-system-admin-content:active:before,
.toolbar-icon-system-admin-content.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/file.svg);
}

.toolbar-icon-system-admin-structure:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/orgchart.svg);
}

.toolbar-icon-system-admin-structure:active:before,
.toolbar-icon-system-admin-structure.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/orgchart.svg);
}

.toolbar-icon-system-themes-page:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/paintbrush.svg);
}

.toolbar-icon-system-themes-page:active:before,
.toolbar-icon-system-themes-page.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/paintbrush.svg);
}

.toolbar-icon-entity-user-collection:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/people.svg);
}

.toolbar-icon-entity-user-collection:active:before,
.toolbar-icon-entity-user-collection.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/people.svg);
}

.toolbar-icon-system-modules-list:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/puzzlepiece.svg);
}

.toolbar-icon-system-modules-list:active:before,
.toolbar-icon-system-modules-list.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/puzzlepiece.svg);
}

.toolbar-icon-system-admin-config:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/wrench.svg);
}

.toolbar-icon-system-admin-config:active:before,
.toolbar-icon-system-admin-config.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/wrench.svg);
}

.toolbar-icon-system-admin-reports:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/barchart.svg);
}

.toolbar-icon-system-admin-reports:active:before,
.toolbar-icon-system-admin-reports.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/barchart.svg);
}

.toolbar-icon-help-main:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/questionmark-disc.svg);
}

.toolbar-icon-help-main:active:before,
.toolbar-icon-help-main.is-active:before {
    background-image: url(/themes/contrib/stable/images/core/icons/000000/questionmark-disc.svg);
}

@media only screen and (min-width:16.5em) {
    .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon {
        width: 4em;
        margin-right: 0;
        margin-left: 0;
        padding-right: 0;
        padding-left: 0;
        text-indent: -9999px;
    }
    .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon:before {
        left: 0;
        width: 100%;
        background-size: 42% auto;
    }
    .no-svg .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon:before {
        background-size: auto auto;
    }
    [dir="rtl"] .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon:before {
        right: 0;
        left: auto;
    }
}

@media only screen and (min-width:36em) {
    .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon {
        width: auto;
        padding-right: 1.3333em;
        padding-left: 2.75em;
        text-indent: 0;
        background-position: left center;
    }
    [dir="rtl"] .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon {
        padding-right: 2.75em;
        padding-left: 1.3333em;
        background-position: right center;
    }
    .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon:before {
        left: 0.6667em;
        width: 20px;
        background-size: 100% auto;
    }
    .no-svg .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon:before {
        background-size: auto auto;
    }
    [dir="rtl"] .toolbar .toolbar-bar .toolbar-tab>.toolbar-icon:before {
        right: 0.6667em;
        left: 0;
    }
}

.toolbar-tab a:focus {
    text-decoration: underline;
    outline: none;
}

.toolbar-lining button:focus {
    outline: none;
}

.toolbar-tray-horizontal a:focus,
.toolbar-box a:focus {
    outline: none;
    background-color: #f5f5f5;
}

.toolbar-box a:hover:focus {
    text-decoration: underline;
}

.toolbar .toolbar-icon.toolbar-handle:focus {
    outline: none;
    background-color: #f5f5f5;
}

.toolbar .toolbar-icon.toolbar-handle {
    width: 4em;
    text-indent: -9999px;
}

.toolbar .toolbar-icon.toolbar-handle:before {
    left: 1.6667em;
}

[dir="rtl"] .toolbar .toolbar-icon.toolbar-handle:before {
    right: 1.6667em;
    left: auto;
}

.toolbar .toolbar-icon.toolbar-handle:before {
    background-image: url(/themes/contrib/stable/images/core/icons/5181c6/chevron-disc-down.svg);
}

.toolbar .toolbar-icon.toolbar-handle.open:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/chevron-disc-up.svg);
}

.toolbar .toolbar-menu .toolbar-menu .toolbar-icon.toolbar-handle:before {
    background-image: url(/themes/contrib/stable/images/core/icons/5181c6/twistie-down.svg);
    background-size: 75%;
}

.toolbar .toolbar-menu .toolbar-menu .toolbar-icon.toolbar-handle.open:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/twistie-up.svg);
    background-size: 75%;
}

.toolbar .toolbar-icon-escape-admin:before {
    background-image: url(/themes/contrib/stable/images/core/icons/bebebe/chevron-disc-left.svg);
}

[dir="rtl"] .toolbar .toolbar-icon-escape-admin:before {
    background-image: url(/themes/contrib/stable/images/core/icons/bebebe/chevron-disc-right.svg);
}

.toolbar .toolbar-toggle-orientation button {
    width: 39px;
    height: 39px;
    padding: 0;
    text-indent: -999em;
}

.toolbar .toolbar-toggle-orientation button:before {
    right: 0;
    left: 0;
    margin: 0 auto;
}

[dir="rtl"] .toolbar .toolbar-toggle-orientation .toolbar-icon {
    padding: 0;
}

.toolbar .toolbar-toggle-orientation [value="vertical"]:before {
    background-image: url(/themes/contrib/stable/images/core/icons/bebebe/push-left.svg);
}

.toolbar .toolbar-toggle-orientation [value="vertical"]:hover:before,
.toolbar .toolbar-toggle-orientation [value="vertical"]:focus:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/push-left.svg);
}

[dir="rtl"] .toolbar .toolbar-toggle-orientation [value="vertical"]:before {
    background-image: url(/themes/contrib/stable/images/core/icons/bebebe/push-right.svg);
}

[dir="rtl"] .toolbar .toolbar-toggle-orientation [value="vertical"]:hover:before,
[dir="rtl"] .toolbar .toolbar-toggle-orientation [value="vertical"]:focus:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/push-right.svg);
}

.toolbar .toolbar-toggle-orientation [value="horizontal"]:before {
    background-image: url(/themes/contrib/stable/images/core/icons/bebebe/push-up.svg);
}

.toolbar .toolbar-toggle-orientation [value="horizontal"]:hover:before,
.toolbar .toolbar-toggle-orientation [value="horizontal"]:focus:before {
    background-image: url(/themes/contrib/stable/images/core/icons/787878/push-up.svg);
}