/* =========================================================== */
/* Main CSS */
/* =========================================================== */

/* https://cdn.dribbble.com/users/427857/screenshots/15717213/media/f9a3ac8f85be233a4cf09836b623a347.png */
/* https://cdn.dribbble.com/users/1908417/screenshots/6456667/core_design_system_-_01_-_dark_theme.png */

#siteLogo {
  padding: 0px;
  image-rendering: auto;
  max-height: 100%;
  background-color: transparent;
}

#siteLogo a { filter: invert(0); }

/*
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  -moz-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
*/


#headMenu, #siteLogo, #headCtrl {
  height: 40px;
  display: flex;
  align-content: center;
}


#headMenu {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: white;
  font-size: 0.8rem;

  width: calc(100% - 1rem);
  background-color: transparent;

  font-size: 0.9rem;
  padding: 0.5rem;

  top: 0;
  z-index: 1;
  position: sticky;
}

#headLinks a img {
  width:  30px;
  height: 30px;

  max-width: 100%;
  max-height: 100%;

  padding: 5px;
  margin-right: 0.5rem;
}

#headLinks a { 
  padding: 10px;
}

/*
#headMenu button {
  background-color: gray;
  border-radius: 100px;
  height: 40px;
  width: 40px;
}

#headMenu button:active {
  background-color: #443f6d;
}
*/

#headCtrl {
  padding-bottom: 10px;
  padding-top: 10px;
}

#headMenu button img {
  max-width: 100%;
  max-height: 100%;
}

#headCtrl button {
  height: 100%;
  border-radius: 50px;
  background-color: transparent;
  filter: invert(50%) brightness(50%) hue-rotate(335deg) saturate(300%) contrast(80%);
}

#headCtrl button:hover {
  background-color: #4e4e4e;
  filter: invert(0%);
}

#headCtrl button:active {
  background-color: crimson;
  filter: invert(0%);
}

/* =========================================================== */
/* Mobile & Tablet Design */
/* =========================================================== */

/* 320px — 480px: Mobile devices */
/* 481px — 768px: iPads, Tablets */
/* 769px — 1024px: Small screens, laptops */
/* 1025px — 1200px: Desktops, large screens */
/* 1201px and more —  Extra large screens, TV */

@media only screen and (max-width: 1050px) {
  #headLinks { display: none; }
}




/* =========================================================== */
/* Lateral Menu Design */
/* =========================================================== */

.sidenav {
  height: 100%;
  width: 0;
  max-width: calc(100% - 2rem);
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  transition: 0.25s;

  overflow-x: hidden;
  overflow-y: auto;

  color: white;
  text-align: center;
  background-color: #313131;
}

.sidenav a {
  color: white;
}

.sidenav a:hover {
  text-decoration: underline;
}

.sidenav .closebtn {
  position: absolute;
  top: 0.75rem;
  right: 2rem;
  font-size: 36px;
  margin-left: 1rem;
  background-color: transparent;
}

.sidenav ul {
  list-style: none;
  padding: 0px;
  text-align: justify;
}

.sidenav img {
  max-width:  30px;
  max-height: 30px;
  margin-right: 1rem;
  vertical-align: middle;
}

.sidenav ul li {
  padding: 1rem;
  margin-top: 5px;
  margin-bottom: 5px;

  transition: 0.15s;
  border-radius: 1rem;
  width: calc(100% - 2rem);
}

.sidenav ul li:hover {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.25);
}

.sidenav button {
  color: white;
  text-align: center;
  border-radius: 1.5rem;
  background-color: #344e76;
}

.sidenav button:hover {
  background-color: crimson;
}

.sidenav button:active {
  background-color: purple;
}


/* =========================================================== */
/* Mobile & Tablet Design */
/* =========================================================== */

/* 320px — 480px: Mobile devices */
/* 481px — 768px: iPads, Tablets */
/* 769px — 1024px: Small screens, laptops */
/* 1025px — 1200px: Desktops, large screens */
/* 1201px and more —  Extra large screens, TV */

@media only screen and (max-width: 1050px) {

}