/*******************  COLORS ********************/
/*
blue #0091b3        #a9cad8
aqua #00a98f        #a4ddce
green #77bc1f       #c6ddac
orange #f38b00      #f9caa0
purple #430098      #b899d6

offwhite #e3e3df

grey #908f88        #c9c7c5
*/
/* styling */
div.structure {
  padding: 0pt;
  margin: 0pt;
}

div.banner {
  background-color: #ddd;
}

div.logo {
  background-color: #ddd;
  padding: 8px;
}

div.logo img {
  width: 112px;
  height: auto;
}

div.menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background-color: #ddd;
}

div.menu > div {
  display: inline-block;
  border-left: 0.5pt solid #ddd;
  border-bottom: 2pt solid;
  cursor: pointer;
  text-align: center;
  width: 80pt;
  margin: 2px 4px;
  margin-bottom: 0px;
  background-color: #eee;
  color: #888;
  font-family: Lato, sans-serif;
  /* flex: auto; */
}

div.menu > div.selected {
  border-bottom-width: 5px;
  font-weight: bold;
  color: black;
  background-color: white;
}

div.menu > div:hover {
  color: black;
  background-color: white;
}

div.structure {
  display: grid;
  grid-gap: 0px;
  grid-template-areas: "logo pagetitle" "menu menu" "content content" "footer footer";
  grid-template-columns: 128px 1fr;
  background-color: #fff;
  color: #444;
}

div.structure > .logo {
  grid-area: logo;
}

div.structure > .menuicon {
  grid-area: pagetitle;
  display: block;
  text-align: left;
}

div.banner.title {
  display: inline-block;
  font-family: "Ubuntu", sans-serif;
  font-weight: normal;
  font-size: 16pt;
  margin-top: 12px;
}

div#menuiconicon {
  width: 40px;
  height: 40px;
  background: url(hamburger.svg);
  background-size: 24px 24px;
  background-position: center;
  /* background-position: middle; */
  background-repeat: no-repeat;
  float: right;
  display: none;
}

div.structure > .menu {
  grid-area: menu;
}

div.content {
  grid-area: content;
  border-left: 5px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 1em;
}

div#QRfooter {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  background-color: #ddd;
  grid-area: footer;
}

div#QRfooter div.footeritem.left {
  flex: 0 0 auto;
  text-align: left;
}

div#QRfooter div.footeritem.center {
  flex: 1 1 auto;
  text-align: center;
}

div#QRfooter div.footeritem.right {
  flex: 0 0 auto;
  text-align: right;
}

div#QRfooter div.footeritem {
  padding: 0.5em;
  font-size: 10pt;
  color: #908f88;
}

div#QRfooter div.footeritem a,
div#QRfooter div.footeritem a:link,
div#QRfooter div.footeritem a:visited {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

div#QRfooter div.footeritem a:hover {
  text-decoration: underline;
  color: black;
  font-weight: bold;
}

div#QRfooter div.footeritem a:active {
  text-decoration: none;
  color: #444;
  font-weight: bold;
}

/******** COLOR ASSIGNMENTS *************/
div.structure.sql div.content {
  border-left-color: #0091b3;
}

div.structure.ddl div.content {
  border-left-color: #f38b00;
}

div.structure.functions div.content {
  border-left-color: #00a98f;
}

div.structure.cli div.content {
  border-left-color: #430098;
}

div.structure.sysprocs div.content {
  border-left-color: #77bc1f;
}

div.menu > div#sql {
  border-bottom-color: #0091b3;
}

div.menu > div#ddl {
  border-bottom-color: #f38b00;
}

div.menu > div#functions {
  border-bottom-color: #00a98f;
}

div.menu > div#cli {
  border-bottom-color: #430098;
}

div.menu > div#sysprocs {
  border-bottom-color: #77bc1f;
}

div.menu > div#sql.selected {
  background-color: #a9cad8;
}

div.menu > div#ddl.selected {
  background-color: #f9caa0;
}

div.menu > div#functions.selected {
  background-color: #a4ddce;
}

div.menu > div#cli.selected {
  background-color: #b899d6;
}

div.menu > div#sysprocs.selected {
  background-color: #c6ddac;
}

div.structure.sql h2.title {
  background-color: #a9cad8;
}

div.structure.ddl h2.title {
  background-color: #f9caa0;
}

div.structure.functions h2.title {
  background-color: #a4ddce;
}

div.structure.cli h2.title {
  background-color: #b899d6;
}

div.structure.sysprocs h2.title {
  background-color: #c6ddac;
}

/* Responsive small device UI */
@media only screen and (max-width: 768px) {
  /* For mobile phones: */
  div.menu > div#sql {
    border-left-color: #0091b3;
  }

  div.menu > div#ddl {
    border-left-color: #f38b00;
  }

  div.menu > div#functions {
    border-left-color: #00a98f;
  }

  div.menu > div#cli {
    border-left-color: #430098;
  }

  div.menu > div#sysprocs {
    border-left-color: #77bc1f;
  }

  div.menu > div {
    border-bottom-color: #908f88 !important;
  }
}

/*# sourceMappingURL=quickref.css.map */
