#pds-app-bar,
.pds-app-bar-section,
#pds-app-bar-title,
#pds-app-bar-info {
    display: flex;
    align-items: center;
}

#pds-app-bar-dropdown,
#pds-app-bar-info {
    display: flex;
    flex-direction: column-reverse;
}

#pds-app-bar {
    position: relative;
    z-index: 2;
    /* top: 0; 
    left: 0;
      max-width: 100vw;
    */
    margin: auto;
    width: 770px;
    padding: 5px;
    height: 25px;
    color: #f5f5f6;
    background: #000;
    box-sizing: content-box;
    border-bottom: 1px solid rgba(121,121,124,0.75);
    text-align: left;
}

#pds-app-bar * {
    font-family: Roboto,Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif !important;
    -webkit-font-smoothing: antialiased !important;
    box-sizing: content-box;
}

#pds-app-bar a {
    color: #f5f5f6;
    text-decoration: none;
    cursor: pointer;
    background-image: none;
    background-color: transparent;
    border: none;
}

.pds-app-bar-section:first-child {
    margin-right: 65px;
}
#pds-app-bar-title {
    font-size: 16px;
    padding: 2px 5px 2px 0;
}
#pds-app-bar-title img {
    display: flex;
    align-items: center;
    width: 48px;
    height: 25px;
    margin-right: 5px;
}

#pds-app-bar-dropdown > button {
    font-size: 14px;
    padding: 4px;
    color: #f5f5f6;
    background-color: transparent;
    border: none;
    border-image: none;
    display: flex;
    align-items: center;
}
#pds-app-bar-dropdown > button:after {
    display: inline-flex;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    border-color: #f5f5f6 transparent transparent transparent;
    margin-left: 15px;
}
#pds-app-bar-dropdown.active > button:after {
    border-width: 0 4px 5px 4px;
    border-color: transparent transparent #f5f5f6 transparent;
}
#pds-app-bar-dropdown > ul,
#pds-app-bar-info > div {
    display: none;
    position: absolute;
    top: 31px;
    margin: 0;
    border-radius: 0 0 3px 3px;
}
#pds-app-bar-dropdown.active > ul,
#pds-app-bar-info.active > div{
    display: block;
}
#pds-app-bar-dropdown > button,
#pds-app-bar-dropdown > ul li,
#pds-app-bar-dropdown > ul li > a {
    -webkit-transition: all 100ms ease;
       -moz-transition: all 100ms ease;
            transition: all 100ms ease;
}

#pds-app-bar-dropdown > ul {
    background-color: rgba(0,0,0,0.95);
    padding: 7px 5px 3px;
}
#pds-app-bar-dropdown > ul li {
    list-style-type: none;
    padding: 7px 0;
    font-size: 12px;
}
#pds-app-bar-dropdown > ul li:hover > a,
#pds-app-bar-dropdown > ul li:focus > a {
    color: #64b6f7;
}

#pds-app-bar-info > img {
    width: 18px;
    height: 18px;
    padding: 3px;
}
#pds-app-bar-info > div {
    z-index: 1000;
    background-color: rgba(0,0,0,1);
    font-size: 12px;
    padding: 11px 8px 7px;
    max-width: 580px;
}

/* tabbable items */
#pds-app-bar-title:focus,
#pds-app-bar-info:focus,
#pds-app-bar-dropdown > button:focus {
    outline: thin dotted;
}
#pds-app-bar-dropdown > ul li:focus {
    outline: none;
}
