@font-face { font-family: dashicons; font-display: auto; src: url('/assets/fonts/dashicons.ttf'); }
/* Toolbar ucun custom css */
.admin-bar {
    background: #23282d;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 13px;
    z-index: 1000000;
    height: 35px;
    position: fixed;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;;
}
.admin-bar-elements {
    display: flex;
    flex-wrap: wrap;
}
.admin-bar-sub-element {
    position: absolute;
    background: #444;
    padding: 3px 0;
    min-width: 150px;
    display: none;
}
.admin-bar-element > a {
    display: block;
    color: #eee;
    height: 35px;
    line-height: 35px;
    padding: 0 10px;
}
.admin-bar a:hover {
    background: #444;
    color: #00a0d2;
}
.admin-bar-sub-element a {
    padding: 5px 10px;
    display: block;
    color: #eee;
}
.admin-bar-element:hover .admin-bar-sub-element {
    display: block;
}
.admin-bar-element > a:before {
    font-family: dashicons;
    margin-right: 5px;
    color: #a0a5aa;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 1;
}
.go-site > a:before {
    content: '\f102';
    transform: translateY(-2px);
}
.add-new > a:before {
    content: '\f132';
}
.edit-admin-bar > a:before {
    content: '\f327';
    transform: translateY(-2px);
}
.admin-bar-lang {
    height: 35px;
    color: white;
    flex-wrap: wrap;
    align-items: center;
    background: #444;
    padding: 0 10px;
    display: none;
}
.admin-bar-lang:first-child {
    display: flex;
    background: #23282d;
}
.all-languages:hover .admin-bar-lang {
    display: flex;
}
.admin-bar-lang img {
    width: 18px;
    margin-right: 10px;
}
.admin-bar-error {
    color: black;
    display: flex;
    align-items: center;
    font-size: 14px;
    background: red;
    font-weight: 600;
    padding: 0 35px;
}
.translate-php .admin-bar-element.select-lang,
.translate-admin-php .admin-bar-element.select-lang,
.translate-extra-php .admin-bar-element.select-lang {
    display: none;
}
@media (max-width: 767px) {
    .front .admin-bar-element {
        display: none;
    }
    .front .go-site, .front .admin-bar-element.logout {
        display: block;
    }
}



/* Language switcher */
.admin-language-switcher ul {
    list-style: none;
    margin: 0;
}
.admin-language-switcher li, .admin-language-switcher li a {
    display: flex;
    align-items: center;
    color: white;
}
.admin-ls-current-lang {
    height: 35px;
    padding: 0 10px;
}
.admin-language-switcher img {
    width: 18px;
    margin-right: 10px;
}
.admin-language-switcher li a {
    padding: 0 10px;
    height: 35px;
}
.admin-language-switcher li a:hover {
    color: #00a0d2;
}
.admin-ls-sub-menu {
    display: none;
    background: #444;
}
.admin-language-switcher:hover .admin-ls-sub-menu {
    display: block;
}