* {
  margin: 0;
  font-family: 'Source Sans Pro', sans-serif;
}

header {
  display: flex;
  position: top;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 300;
  width: 100%;
  height: 56px;
  padding-left: 15px;
  padding-right: 15px;
  color: var(--color50);
  border-bottom: 1px solid var(--color80);
  background-color: var(--color97);
}

#usr_menu {
  display: none;
  flex-direction: column;
  position: absolute;
  background-color: var(--white);
  min-width: 100px;
  top: 46px;
  padding: 0;
  overflow: auto;
  border-radius: 7px 0px 7px 7px;
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
  z-index: 1;
}

#usr_menu li {
  display: flex;
  justify-content: flex-start;
  text-decoration: none;
  height: 42px;
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  /*  padding-left: 15px;
    padding-right: 20px;*/
  padding: 0;
  line-height: 42px;
  border-bottom: solid 1px var(--color90);
  cursor: pointer;
}

#usr_menu li a {
  display: block;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.hdr_lbox {
  display: flex;
  height: 36px;
  min-width: 200px;
  color: var(--color50);
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 300;
  padding: 2px;
}

.hdr_rbox {
  display: flex;
  width: 96px;
  height: 36px;
  justify-content: flex-end;
  align-items: center;
}

#hdr_logo {
  overflow: hidden;
  white-space: nowrap;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: 300px;
  line-height: 2rem;
  height: 42px;
}

#usr_btn {
  min-width: 36px;
  height: 36px;
  background-color: var(--usr);
  color: var(--usrtxt);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
}

#usr_btn.show {
  border-radius: 21px 21px 0px 0px;
}

#usr_menu.show {
  display: flex !important;
}

/*
  .icn {
    display: block;
    background-color: var(--color96);
    width: 32px;
    border-radius: 20%;
    fill: black;
    margin-right: 10px;
  }
  
  ul {
    list-style-type: none;
  }
  */