




/*PANEL============================================================================*/

.panels {
  background: white;
  position: fixed;
  top: 84px;
  left: 0;
  width: 100%;
  height: calc(100% - 84px);
  overflow-y: hidden;
  display: grid;
  grid-template-columns: 20% 20% 20% 40%;
  scrollbar-width: none;
}

.panel {
  overflow-y: auto;
  height: 100%;
  padding: 10px;
  position: static;
  max-width: 100%;
  width: 100%;
  scrollbar-width: none;
}

@media (max-width: 1400px) {
  .panels {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    overflow-y: auto;
  }
  
  .panel {height: auto; overflow-y: visible;}
  .panel:nth-child(1) {grid-column: 1; grid-row: 1;}
  .panel:nth-child(2) {grid-column: 2; grid-row: 1;}
  .panel:nth-child(3) {grid-column: 3; grid-row: 1;}
  .panel:nth-child(4) {grid-column: 1 / 4; grid-row: 2;}
}

@media (max-width: 900px) {
  .panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    overflow-y: auto;
  }
  
  .panel {height: auto; overflow-y: visible;}
  .panel:nth-child(1) {grid-column: 1 / 2; grid-row: 1;}
  .panel:nth-child(2) {grid-column: 2 / 3; grid-row: 1;}
  .panel:nth-child(3) {grid-column: 1 / 2; grid-row: 2;}
  .panel:nth-child(4) {grid-column: 1 / 3; grid-row: 3;}
}

@media (max-width: 400px) {
  .panels {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    overflow-y: auto;
  }
  
  .panel {height: auto; overflow-y: visible;}
  .panel:nth-child(1) {grid-column: 1; grid-row: 1;}
  .panel:nth-child(2) {grid-column: 1; grid-row: 2;}
  .panel:nth-child(3) {grid-column: 1; grid-row: 3;}
  .panel:nth-child(4) {grid-column: 1; grid-row: 4;}
}

.panel_input input, .panel_input select {
  height: 24px;
  line-height: 24px;
}

.panel_input label {
  height: 24px;
}



/*ICONS============================================================================*/

.icon.blank {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="48" height="48" viewBox="0 0 48 48"><path fill="black" d=""></path></svg>');
}




