/* ---------- Panel Dispositivos & City Selector ---------- */
:root{
  --sidebar-w:  340px;
  --sidebar-pad: 20px;
  --icon-bar-w: 60px;
}

#deviceListContainer,
#city-selector{
  position: fixed;
  top: 0;
  left: var(--icon-bar-w);      /* 60 px */
  width: var(--sidebar-w);      /* 340 px */
  height: 100%;
  padding: var(--sidebar-pad);  /* 20 px  */
  background: #fff;
  border-left: 1px solid #ccc;
  box-shadow: 2px 0 5px rgba(0,0,0,.2);
  overflow-y: auto;
  display: none;
  z-index: 1001;

  /* scrollbar Firefox */
  scrollbar-width: thin;
  scrollbar-color: #ccc #f9f9f9;
}
#deviceListContainer.visible,
#city-selector.visible{ display: block; }

#deviceListContainer h2,
#city-selector h2{
  font-size: 18px;
  text-align: center;
  margin-bottom: 15px;
}

/* scrollbar WebKit */
#deviceListContainer::-webkit-scrollbar,
#city-selector::-webkit-scrollbar{
  width: 6px;
  background: #f9f9f9;
}
#deviceListContainer::-webkit-scrollbar-thumb,
#city-selector::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 6px;
}

