#show-page-main {
  min-height: 90vh;
  font-family: 'Gotham-Medium' !important;
}

@media screen and (min-width: 992px) {
  #show-page-main {
    width: 90vw;
    margin: 5vh auto;
  }
}
.show-top-section {
  padding: 1rem;
}
.show-top-section .tool-bar {
  background-color: var(--color-body-background);
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  position: relative;
}
.show-top-section .tool-bar .device-show-toolbar__icon {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.show-top-section .tool-bar summary {
  list-style: none;
}
.show-top-section .tool-bar summary::-webkit-details-marker {
  display: none;
}
.show-top-section .tool-bar .device-show-settings__panel,
.show-top-section .tool-bar .device-show-info__panel {
  position: absolute;
  right: 0;
  top: 2.5rem;
  z-index: 20;
  width: min(90vw, 520px);
  padding: 1rem;
  background: white;
  border: 1px solid var(--color-accent);
  border-radius: 5px;
  box-shadow: 0 12px 24px 0 rgba(0, 0, 0, 0.09);
}
.show-top-section .tool-bar fieldset {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.75rem;
}
.show-top-section .main {
  display: grid;
  grid-template-columns: 1fr; /* Still 1 column */
  grid-template-rows: repeat(4, 1fr); /* Still 4 rows */
  gap: 1rem;
}
.show-top-section .fa-solid.fa-location-crosshairs {
  position: relative;
}
.show-top-section .fa-solid.fa-location-crosshairs.crossed:after {
  position: absolute;
  content: '\\';
  color: #616668;
  font-weight: 900;
  font-size: 1.7em;
  left: 5px;
  top: -9px;
  transform: rotate(-30deg);
}

@media screen and (min-width: 992px) {
  .show-top-section {
    padding: 0;
    background-color: white;
    border-radius: 5px;
    color: var(--color-text-dark);
  }
  .show-top-section .tool-bar {
    padding: 0 1rem 1rem 1rem;
  }
  .show-top-section .main {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
  }
  .show-top-section #device-description {
    grid-column: 1 / span 3;
  }
  .show-top-section .tooltip-price .tooltiptext-price {
    right: 0;
    left: 0;
    top: 2rem;
    width: 500px;
  }
  .show-top-section .tooltip-price .tooltiptext-price::after {
    left: 1rem;
  }
  .show-top-section #control-events-list {
    grid-column: 4 / span 2;
  }
  .show-top-section #bid-form {
    grid-column: 1 / span 3;
  }
  .show-top-section #bid-list {
    grid-column: 4 / span 2;
  }
}
.yellow-div {
  border-radius: 5px;
  background-color: white;
  padding: 16px 24px;
  border: 1px solid var(--color-accent);
  height: 400px;
  overflow: auto;
}
.yellow-div ul {
  padding: 0;
  list-style: none;
  font-family: 'Gotham-Light';
}
.yellow-div .list-item-bold {
  margin-top: 0.5rem;
  opacity: 0.7;
  font-family: 'Gotham-Medium';
}
.yellow-div .list-item-bigger {
  font-size: 18px;
}
.yellow-div h1 {
  margin: 2rem 0;
  font-family: 'Gotham-Medium';
}
.yellow-div h2,
.yellow-div h4 {
  margin: 1rem 0 1rem 0;
  opacity: 0.7;
  font-family: 'Gotham-Medium';
}
.yellow-div .currentPrice {
  margin: 0;
  color: var(--color-accent);
  font-size: 2rem;
}
.yellow-div p {
  font-weight: lighter;
  font-family: 'Gotham-Light';
}
.yellow-div label {
  font-family: 'Gotham-Light';
}
.yellow-div .buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.yellow-div .buttons button {
  margin: 1rem;
}
.yellow-div .bold {
  font-weight: 900;
}
.yellow-div header {
  display: flex;
  justify-content: flex-start;
}
.yellow-div--no-padding {
  padding: 0;
}
.yellow-div--no-border {
  border: none;
}
.yellow-div--no-margin {
  margin: 0;
}
.yellow-div--no-height {
  height: auto;
}
.yellow-div--height-auto {
  height: auto;
}
.yellow-div--no-scroll {
  overflow: hidden;
}
.yellow-div--grid {
  display: grid;
  grid-column: 1 / span 2;
  grid-row: 2;
}

#bid-form {
  display: flex;
  flex-direction: column;
}

.device-bid-panel {
  flex: 1;
  min-height: 0;
}

.device-bid-panel:not([hidden]) {
  display: flex;
  flex-direction: column;
}

.device-fixed-bid-form {
  flex: 1;
}

.tabs {
  display: flex;
  justify-content: start;
  margin-bottom: 1.5rem;
}
.tabs a {
  border-radius: 5px 5px 0px 0px;
  padding: 8px 10px;
  border-left: 0.5px solid var(--color-light-gray-background);
  border-right: 0.5px solid var(--color-light-gray-background);
  margin-bottom: 0px;
  flex: 1;
  font-family: 'Gotham-Light';
  font-size: 18px;
  text-align: center;
  text-decoration: none;
}
.tabs a.active {
  color: var(--color-text-black);
  background-color: white;
  border-bottom-color: white;
  font-family: 'Gotham-Medium';
}
.tabs a:first-child {
  border-left: none;
}
.tabs a:last-child {
  border-right: none;
}
.tabs a.passive {
  color: var(--color-body-background);
  background-color: var(--color-gray-background);
}
.tabs a.passive:hover {
  background-color: var(--color-accent);
  color: var(--color-text-black);
}

.active-bid-type {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-left: 8px;
}

.device-status {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.device-status .dot {
  justify-self: flex-end;
  height: 50px;
  width: 50px;
  border-width: 2px;
  border-color: white;
  border-radius: 50%;
  display: inline-block;
  border-style: solid;
  box-shadow: 0 0 0 2px;
  background-color: var(--red);
}
.device-status .dot--off {
  box-shadow: 0 0 0 2px var(--color-gray-background);
  background-color: var(--color-gray-background);
}
.device-status .dot--will-turn-green {
  box-shadow: 0 0 0 2px var(--green);
}
.device-status .dot--will-turn-red {
  box-shadow: 0 0 0 2px var(--red);
}
.device-status.dot--charging .dot {
  background-color: var(--green);
}

.demo-status {
  display: flex;
  margin-right: 2rem;
  align-items: center;
}
.demo-status .status {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  border: 2px solid var(--color-light-gray-background);
  box-shadow: 0 0 0 1px var(--color-text-light) !important;
  margin-right: 0.5rem;
}

.status--active {
  background: var(--light-green);
  box-shadow: 0 0 0 1px var(--green) !important;
}

.status--inactive {
  background: var(--light-red);
  box-shadow: 0 0 0 1px var(--red) !important;
}

.status--pending {
  background: var(--color-accent);
  box-shadow: 0 0 0 1px yellow !important;
}

.yellow-input {
  font-family: 'Gotham-Light';
  height: 25px !important;
  box-shadow: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-text-black);
  text-align: right;
}
.yellow-input:focus {
  outline: var(--color-accent) auto 2px;
}
.yellow-input ::placeholder {
  color: var(--color-text-light);
  opacity: 1; /* Firefox */
}
.yellow-input--short {
  width: 4rem !important;
}
.yellow-input--mini {
  width: 3.5rem !important;
}

.pills {
  display: flex;
  justify-content: center;
  flex: 1;
}
.pills p {
  border: 0.5px solid var(--color-gray-background);
  padding: 10px;
}
.pills p:hover {
  text-decoration: underline;
}
.pills p:first-child {
  border-radius: 5px 0px 0px 5px;
}
.pills p:last-child {
  border-radius: 0px 5px 5px 0px;
}
.pills p:only-child {
  border-radius: 5px 5px 5px 5px;
}
.pills p.active {
  background-color: var(--color-light-gray-background);
}

.variable-tesla-bid_header,
.variable-tesla-bid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 2rem;
  margin: 0.5rem 1.5rem;
}

.variable-tesla-bid_header h4 {
  border-bottom: 2px solid var(--color-text-light);
  padding-bottom: 1rem;
  color: var(--color-text-dark);
}

.variable-tesla-bid label {
  font-weight: 900;
  color: var(--color-text-dark);
  font-size: 1.25rem;
  opacity: 0.7;
}
.variable-tesla-bid input {
  text-align: left;
  max-width: 90%;
}
.variable-tesla-bid h4 {
  margin: 0.5rem 0;
}

.variable-tesla-bid--is-current-level label,
.variable-tesla-bid--is-current-level input,
.variable-tesla-bid--is-current-level h4 {
  color: var(--green);
  font-weight: 700;
}
.variable-tesla-bid--is-current-level label,
.variable-tesla-bid--is-current-level h4 {
  font-size: 1.5rem;
}

#show-chart-section-frame {
  display: block;
}

#show-chart-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 3rem;
  gap: 2rem;
}
#show-chart-section .yellow-div {
  height: 600px;
}
#show-chart-section .bid-chart {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 1/-1;
  min-width: 0;
}
#show-chart-section .bid-chart > .device-bid-selector,
#show-chart-section .bid-chart .device-bid-selector > [data-controller='toggle-timezone-chart'] {
  min-width: 0;
  width: 100%;
}
#show-chart-section .device-bid-selector {
  min-width: 0;
  position: relative;
}
#show-chart-section .device-bid-selector__line {
  border-top: 2px dashed var(--color-accent);
  display: none;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}
#show-chart-section .device-bid-selector__marker {
  align-items: center;
  background: white;
  border: 1px solid var(--color-accent);
  border-radius: 3px;
  color: var(--color-text-dark);
  display: none;
  font-family: 'Gotham-Medium';
  font-size: 12px;
  line-height: 1;
  min-width: 42px;
  padding: 4px 6px;
  pointer-events: none;
  position: absolute;
  transform: translate(-100%, -50%);
  white-space: nowrap;
  z-index: 6;
}
#show-chart-section .device-bid-selector__form {
  --device-bid-slider-thumb-size: 28px;
  --device-bid-slider-track-width: 4px;
  display: none;
  margin: 0;
  position: absolute;
  transform: translateX(-50%);
  width: 32px;
  z-index: 5;
}
#show-chart-section .device-bid-selector__form::before {
  background: var(--color-text-light);
  border-radius: 999px;
  bottom: 0;
  content: '';
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: var(--device-bid-slider-track-width);
}
#show-chart-section
  .device-bid-selector
  input.device-bid-selector__range[type='range'][orient='vertical'] {
  -webkit-appearance: none;
  accent-color: var(--color-accent);
  appearance: none;
  background: transparent;
  cursor: pointer;
  left: 50%;
  margin: 0;
  position: absolute;
  top: calc(var(--device-bid-slider-thumb-size) / -2);
  transform: translateX(-50%);
  width: var(--device-bid-slider-track-width);
}
#show-chart-section .device-bid-selector__range::-webkit-slider-runnable-track {
  background: transparent;
  border-radius: 999px;
  width: var(--device-bid-slider-track-width);
}
#show-chart-section .device-bid-selector__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: white;
  border: 1px solid var(--color-light-gray-background);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  height: var(--device-bid-slider-thumb-size);
  margin-left: calc(
    (var(--device-bid-slider-track-width) - var(--device-bid-slider-thumb-size)) / 2
  );
  width: var(--device-bid-slider-thumb-size);
}
#show-chart-section .device-bid-selector__range::-moz-range-track {
  background: transparent;
  border-radius: 999px;
  width: var(--device-bid-slider-track-width);
}
#show-chart-section .device-bid-selector__range::-moz-range-thumb {
  background: white;
  border: 1px solid var(--color-light-gray-background);
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
  height: var(--device-bid-slider-thumb-size);
  width: var(--device-bid-slider-thumb-size);
}
#show-chart-section label {
  width: 100px;
  height: 50px;
  border-radius: 75px;
  background: grey;
  position: relative;
  cursor: pointer;
  display: block;
}
#show-chart-section #bid_type_input {
  height: 0;
  width: 0;
  visibility: hidden;
}
#show-chart-section label:after {
  content: '';
  background: var(--color-accent);
  height: 45px;
  width: 60px;
  border-radius: 30px;
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  transition: 0.3s;
}
#show-chart-section #bid_type_input:checked + label {
  background: var(--light-green);
}
#show-chart-section #bid_type_input:checked + label:after {
  left: calc(100% - 2.5px);
  transform: translateX(-100%);
}

@media screen and (min-width: 992px) {
  #show-chart-section.show-chart-section--with-side-panel {
    grid-template-columns: minmax(0, 2fr) minmax(250px, 1fr);
  }
  #show-chart-section.show-chart-section--with-side-panel .bid-chart {
    grid-column: auto;
  }
}
.big-toggle {
  position: relative;
  font-size: 3rem;
  z-index: 3;
  height: 67%;
  border-style: solid;
  border-color: var(--color-accent);
  border-width: 1px;
  border-radius: 5px;
}
.big-toggle input {
  position: relative;
  top: -2px;
  background: var(--color-gray-background);
}
.big-toggle input::-webkit-scrollbar-thumb,
.big-toggle input::-moz-range-thumb {
  background: var(--color-accent);
  height: 15px;
  width: 15px;
  border: 2px solid var(--color-gray-background);
}
.big-toggle span {
  position: absolute;
  z-index: 4;
  border-top: 2px dashed var(--color-accent);
  right: 0;
}

.device-show-inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media screen and (min-width: 992px) {
  .grid--devices {
    display: grid;
    grid-template-columns: 2fr 3fr;
  }
}
.device-list-frame {
  color: var(--color-text-light);
  border-radius: 3px;
  height: calc(100vh - 83px);
  overflow: scroll;
  padding: 1.5rem;
}

.device-container {
  color: var(--color-text-dark);
  position: relative;
  overflow: scroll;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
}

.device-container::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width: 991px) {
  .links-able-disable a {
    display: block;
  }
}
.symbol-holder {
  height: 35px;
  margin: 0 0 0 0;
  width: 100%;
}

.fas {
  cursor: pointer;
}

.device-list-bar {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
}

.device-list-bar:hover {
  color: var(--color-accent);
}

.card--device {
  text-decoration: none;
  color: var(--color-text-light);
  width: 100%;
  border: 2px solid var(--box-shadow-color-1);
  padding: 16px;
  display: flex;
}
.card--device a.disabled {
  pointer-events: none;
  cursor: default;
}
.card--device-disabled-button {
  align-self: flex-end;
  margin: 0 3rem 1rem 0;
  background: var(--green);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  box-shadow: 1px 1px 3px gray;
  opacity: 1;
  transition: opacity 0.2s ease-in;
  text-decoration: none;
}
.card--device-disabled-button:hover {
  color: white;
  opacity: 0.8;
  text-decoration: none;
}

.card--device:hover {
  text-decoration: none;
  color: var(--color-text-dark);
  border: 1px solid var(--box-shadow-color-1);
  box-shadow:
    0px 1px 5px rgba(0, 0, 0, 0.05) inset,
    0px 0px 8px rgba(82, 168, 236, 0.6);
}

.card-bid-price {
  font-weight: bold;
  font-size: 20px;
  display: block;
}

.card-description span,
.card-description p {
  color: var(--color-text-dark);
  font-family: 'Gotham-Light';
  opacity: 0.7;
  width: 75%;
  font-size: 14px;
}

.card-description p {
  white-space: nowrap; /* forces text to single line */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  margin-bottom: 0;
}

.dot-status {
  border-collapse: separate;
  height: 30px;
  width: 30px;
  border-color: white;
  border-width: 2px;
  border-radius: 50%;
  display: inline-block;
  border-style: solid;
  z-index: 2;
}

.dot-status--red {
  background-color: var(--red);
}

.dot-status--green {
  background-color: var(--green);
}

.dot-status--grey {
  background-color: var(--color-gray-background);
}

.dot-status--main-yellow {
  background-color: var(--color-accent);
}

.legend {
  position: absolute;
  top: -1px;
  bottom: -1px;
  right: -1px;
  width: 7px;
  opacity: 0.4;
  border-radius: 0px 3px 3px 0px;
  z-index: 100;
}

.truncated-name {
  display: block;
  white-space: nowrap; /* forces text to single line */
  overflow: hidden;
  text-overflow: ellipsis;
}

#current-week-chart.chart-index {
  height: calc(100% - 56px);
}

.chart-frame {
  box-shadow: -4px 0px 3px var(--box-shadow-color-2);
  color: gray;
  padding: 2rem 0;
  border-radius: 3px;
  background-color: white;
  height: calc(100vh - 83px);
}
.chart-frame .chart-frame__headline {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.chart-frame .chart-frame__headline > a {
  display: block;
  text-align: center;
}

.chart-frame__chart {
  width: 100%;
}

.chart-frame__chart--devices {
  height: min(800px, 100vh - 220px);
}

.chart-frame__chart--devices > [data-controller],
.chart-frame__chart--devices [data-toggle-timezone-chart-target='chart'] {
  height: 100%;
}

@media screen and (min-width: 992px) {
  .chart-frame {
    padding: 2rem;
  }
  .chart-frame .chart-frame__headline {
    padding-left: 0.5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .chart-frame .chart-frame__headline > a {
    padding-left: 1rem;
  }
}
.time-buttons a {
  font-weight: lighter;
  font-size: 14px;
}

@media screen and (max-width: 991px) {
  .device-list-frame {
    height: auto;
  }
  .chart-frame {
    height: auto;
  }
  .chart-frame__chart--devices {
    height: 50vh;
  }
  .chart-index {
    height: 50vh !important;
  }
}
.tooltip-list {
  display: inline-block;
  z-index: 3;
}

.tooltip-list--red {
  box-shadow: 0 0 0 2px var(--light-red);
}

.tooltip-list--green {
  box-shadow: 0 0 0 2px var(--light-green);
}

.tooltip-list--gray {
  box-shadow: 0 0 0 2px var(--color-gray-background);
}

.tooltip-list .tooltiptext-list::after {
  content: ' ';
  position: absolute;
  top: 50%;
  left: 100%; /* To the right of the tooltip */
  margin-top: -5px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-accent);
}

/* Tooltip text */
.tooltip-list .tooltiptext-list {
  visibility: hidden;
  width: 180px;
  background-color: white;
  color: gray;
  text-align: center;
  padding: 8px;
  padding: 5px 0;
  border-radius: 6px;
  box-shadow:
    0px 1px 3px var(--box-shadow-color-1) inset,
    0px 0px 2px var(--color-accent);
  /* Position the tooltip text - see examples below! */
  position: absolute;
  right: 35px;
  top: -9px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-accent);
  z-index: 3;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.dotcenter {
  position: absolute;
  z-index: 971;
}

.dot-status.tooltip-list.dotcenter:hover .tooltiptext-list {
  visibility: visible;
  opacity: 1;
}

/* Tooltip container for price */
.tooltip-price {
  display: inline-block;
}

.tooltip-price .tooltiptext-price::after {
  content: ' ';
  position: absolute;
  bottom: 100%; /* At the top of the tooltip */
  left: 72%;
  margin-left: -5px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent var(--color-accent) transparent;
}

/* Tooltip text */
.tooltip-price .tooltiptext-price {
  visibility: hidden;
  width: 280px;
  background-color: white;
  color: gray;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-accent);
  box-shadow:
    0px 1px 3px var(--box-shadow-color-1) inset,
    0px 0px 2px var(--color-accent);
  /* Position the tooltip text - see examples below! */
  position: absolute;
  right: 50px;
  top: 45px;
  z-index: 50;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-price:hover .tooltiptext-price {
  visibility: visible;
  opacity: 1;
}

/* Tooltip container for price */
.tooltip-add {
  display: inline-block;
  z-index: 1000;
}

.tooltip-add .tooltiptext-add::after {
  content: ' ';
  position: absolute;
  bottom: 100%; /* At the top of the tooltip */
  left: 78%;
  margin-left: -5px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent var(--color-accent) transparent;
}

#info-icon,
#add-device {
  -webkit-appearance: none !important;
}

/* Tooltip text */
.tooltip-add .tooltiptext-add {
  visibility: hidden;
  width: 240px;
  background-color: white;
  color: gray;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-accent);
  box-shadow:
    0 1px 5px 0 var(--box-shadow-color-1),
    0 1px 0 0 var(--box-shadow-color-2);
  /* Position the tooltip text - see examples below! */
  position: absolute;
  right: 20px;
  top: 35px;
  z-index: 50000;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-add:hover .tooltiptext-add {
  visibility: visible;
  opacity: 1;
}

/* Tooltip container for price */
.tooltip-bid {
  display: inline-block;
  z-index: 1000;
  position: relative;
}

.tooltip-bid .tooltiptext-bid::after {
  content: ' ';
  position: absolute;
  bottom: 100%; /* At the top of the tooltip */
  left: 53%;
  margin-left: -5px;
  border-width: 7px;
  border-style: solid;
  border-color: transparent transparent var(--color-accent) transparent;
}

/* Tooltip text */
.tooltip-bid .tooltiptext-bid {
  visibility: hidden;
  width: 240px;
  background-color: white;
  color: gray;
  text-align: center;
  padding: 8px;
  border-radius: 6px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-accent);
  box-shadow:
    0px 1px 3px var(--box-shadow-color-1) inset,
    0px 0px 2px var(--color-accent);
  /* Position the tooltip text - see examples below! */
  position: absolute;
  left: -120px;
  top: 35px;
  z-index: 50000;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.3s;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-bid:hover .tooltiptext-bid {
  visibility: visible;
  opacity: 1;
}

.device-list {
  display: grid;
  gap: 1rem;
}
