
.menuBar {
  width: 20px;
  height: 20px;
}

.glow-on-hover {
  font-family: 'Open Sans Condensed', sans-serif;
  width: 150px;
  height: 50px;
  font-size: 20px;
  /*border: none;*/
  /*outline: none;*/
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-width: 1.5px;
  border-color: rgb(59, 58, 58);
  margin: 5px;
}

.glow-on-hover:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
}

.glow-on-hover:active {
  color: #000
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}

/*  Sidebar Navigation*/
.sidebar {
  
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 0px 0px 18px 32px;
  text-decoration: none;
  font-size: 26px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 15px;
  font-size: 36px;
  margin-left: 50px;
}

body {
  /*font-family: 'Play', sans-serif;
  font-family: 'Roboto', sans-serif;*/
  font-family: 'Roboto Mono', monospace; 
  font-size: 23px;
}

#btn_nav {
  transition: margin-left .5s;
}
.openbtn {
  font-size: 3rem;
  cursor: pointer;
  background-color: transparent;
  color: rgb(0, 0, 0);
  border: none;
}

#header {
  display: flex;
  align-items: center;
  margin-top: 20px;
  margin-left: 10px;
  max-height: 50px;
}

.header-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  transition: margin-left .5s;
  padding-left: 5%;
  font-size: 28px;
}

#clock {
  margin-right: 20px;
}

@media (max-width: 768px) {
    .openbtn {
      font-size: 3rem;
    }
    .header-text {
      font-size: 1rem;
    }
}

@font-face {
  font-family: 'power_symbols';
  src: url('Unicode_IEC_symbol.woff2') format('woff2');
  font-weight: lighter;
  font-style: normal;
}

.btn_heizstab_power {
  border: none;
  border-radius: 10%;
  background-color: transparent;
  color: #58e91f;
  font-family: 'power_symbols';
  font-size: 2.5rem;
  cursor: pointer;
  margin-right: 5%;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.container {
  background-color: #d9eaca;
  flex: 1;
  
  margin: 5px;
  padding: 15px;
  box-sizing: border-box;
  min-width: min-content;
}

.heizstab-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Heizstab Infos Dropdown/Button */
.toggle_info_Heizstab, .toggle_info_Solar {
  display: none;
  white-space: nowrap;
}

.toggle_info_Heizstab.show, .toggle_info_Solar.show  {
  display: block;
}

#btn_heizstab_infos, #btn_solar_infos {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  cursor: pointer;
}

#btn_heizstab_infos img, #btn_solar_infos img {
  width: 1.6rem;
  height: 2rem;
  transform: rotate(90deg);
}

