* {
  box-sizing: border-box;
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
}

.logo {
	height: 40px;
	line-height: 40px;
	font-size: 28px;
	font-weight: bold;
	float: left;
	color: #000;
}

.logout {
	float: right;
	padding: 20px 15px 0 0;
	color: #000;
}

a {
	color: #000;
	text-decoration: none;
}

.dialog-button {
	padding: 5px 22px 5px 0;
}

.header {
  background-color: #2c3441;
  height: 40px;
  width: 100%;
}
.header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  width: 1000px;
  height: 100%;
}
.header .wrapper h1, .header .wrapper a, .header .wrapper label {
  display: inline-flex;
  align-items: center;
}
.header .wrapper h1 {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: #fff;
  font-weight: normal;
}
.header .wrapper label, .header .wrapper input[type=checkbox] {
  display: none;
}
.header .wrapper label {
  cursor: pointer;
  position: relative;
  height: 40px;
  width: 50px;
  text-decoration: none;
  margin-right: 5px;
  border-radius: 5px;
}
.header .wrapper label::before, .header .wrapper label::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 20px;
  height: 2px;
  background-color: #616b78;
}
.header .wrapper label::after {
  top: 26px;
}
.header .wrapper label:hover, .header .wrapper label:active, .header .wrapper input[type=checkbox]:checked ~ label {
  background-color: #242a35;
}
.header .wrapper label:hover::before, .header .wrapper label:hover::after, .header .wrapper label:active::before, .header .wrapper label:active::after, .header .wrapper input[type=checkbox]:checked ~ label::before, .header .wrapper input[type=checkbox]:checked ~ label::after {
  background-color: #798493;
}
.header .wrapper .menu {
  display: flex;
  position: fixed; 
  right: 16px;   /* distance from right edge */ 
  align-items: center;
}
.menu a {
  display: inline;
  align-items: center;
  justify-content: center;
  height: 32px;
  border-radius: 15px;
  padding: 0 14px;
  margin: 0 3px;
  text-decoration: none;
  color: #87919e;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
}
.header .wrapper .menu a svg {
  fill: #87919e;
  margin: 2px 8px 0 0;
}
.header .wrapper .menu a.alt {
  color: #cdd4df;
}
.header .wrapper .menu a.alt svg {
  fill: #cdd4df;
}
.header .wrapper .menu a:hover, .header .wrapper .menu a:active, .header .wrapper .menu a.active {
  color: #eaebec;
  background-color: #242a35;
}
.header .wrapper .menu a:hover svg, .header .wrapper .menu a:active svg, .header .wrapper .menu a.active svg {
  fill: #eaebec;
}
.header .wrapper .menu a:last-child {
  margin-right: 0;
}
.logo-fixed-top-left { 
  position: fixed; 
  left: 5px;   /* distance from right edge */ 
  top: 3px;  /* distance from bottom edge */ 
  z-index: 1000; /* optional, keep on top */ 
} 
.profile-detail {
  display: flex;
  flex-flow: column;
  font-size: 18px;
  padding: 5px 0;
}
.profile-detail strong {
  display: block;
  color: #92979e;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
main .dashboard {
  display: flex;
  justify-content: space-between;
  padding-bottom: 30px;
}
main .dashboard .stat {
  width: 24%;
  padding: 0;
  display: flex;
  flex-flow: wrap;
  border-left: 4px solid #2d8eee;
}
main .dashboard .stat > .icon {
  display: inline-flex;
  justify-content: center;
  padding: 15px;
  margin: 30px 25px 0 0;
  align-items: center;
  font-size: 18px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #d6eaff;
  color: #8eb3d8;
}
main .dashboard .stat > .icon svg {
  fill: #8eb3d8;
}
main .dashboard .stat .data {
  padding: 7px;
  flex: 1;
}
main .dashboard .stat .data h3 {
  color: #9298a0;
  color: #2d8eee;
  font-size: 14px;
  font-weight: 500;
  padding: 15px 15px 0 15px;
}
main .dashboard .stat .data h3 span {
  font-size: 12px;
  font-weight: 500;
  color: #97a0ba;
  background-color: #eaecf1;
  padding: 2px 5px;
  border-radius: 5px;
  margin-left: 5px;
  white-space: nowrap;
}
main .dashboard .stat .data p {
  margin: 0;
  padding: 10px 15px 15px 15px;
  font-size: 24px;
  font-weight: 700;
  color: #6b788c;
}
main .dashboard .stat .footer {
  display: flex;
  align-items: center;
  width: 100%;
  border-top: 1px solid #f0f1f5;
  background-color: #fcfcfd;
  color: #929294;
  font-size: 14px;
  padding: 10px;
}
main .dashboard .stat .footer svg {
  fill: #929294;
  margin-right: 5px;
}
main .dashboard .stat.green {
  border-left: 4px solid #1ecc8c;
}
main .dashboard .stat.green .data h3 {
  color: #1ecc8c;
}
main .dashboard .stat.green > .icon {
  background-color: #d5f7e3;
}
main .dashboard .stat.green > .icon svg {
  fill: #60c99d;
}
main .dashboard .stat.cyan {
  border-left: 4px solid #1eccc3;
}
main .dashboard .stat.cyan .data h3 {
  color: #1eccc3;
}
main .dashboard .stat.cyan > .icon {
  background-color: #d1f1f0;
}
main .dashboard .stat.cyan > .icon svg {
  fill: #68c7c5;
}
main .dashboard .stat.red {
  border-left: 4px solid #e98484;
}
main .dashboard .stat.red .data h3 {
  color: #e98484;
}
main .dashboard .stat.red > .icon {
  background-color: #f7e2e2;
}
main .dashboard .stat.red > .icon svg {
  fill: #df8787;
}
