.trash-can i {
  font-size: 18px !important;
  color: var(--color-text-light) !important;
}

/* -------------------------------------
 * Your CSS code for flash notices and alerts
* ------------------------------------- */
.alert-container-sticky-navbar {
  position: relative;
}
.alert-container-sticky-navbar .alert {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 1005;
}

.alert {
  margin: 0;
  text-align: center;
  color: white;
  z-index: 300;
}

#flashes {
  position: fixed;
  top: 6rem;
  right: 1rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: min(28rem, calc(100vw - 2rem));
  pointer-events: none;
}

#flashes .flash-message {
  position: static;
  border: 0;
  box-shadow: 0 0.5rem 1rem var(--box-shadow-color-1);
  pointer-events: auto;
  text-align: left;
}

@media screen and (max-width: 575px) {
  #flashes {
    top: 5rem;
    right: 0.75rem;
    width: calc(100vw - 1.5rem);
  }
}

.alert-info {
  background: var(--light-green);
  z-index: 300;
}

.alert-warning {
  background: var(--light-red);
  z-index: 300;
}

.alert-primary {
  color: var(--color-text-dark);
  background-color: var(--color-menu-background);
}

.alert--impersonate {
  font-size: 0.75rem;
}

.alert-device {
  background-color: var(--color-text-black);
  width: 20%;
  opacity: 0.95;
  position: fixed;
  right: 1rem;
  text-align: left;
  padding: 2rem;
  padding-right: 3rem;
  display: flex;
  align-items: center;
}
.alert-device p {
  margin: 0 0 0 1rem;
  padding: 0;
}
.alert-device i {
  font-size: 1.5rem;
}
.alert-device.alert-success i {
  color: var(--green);
}
.alert-device.alert-danger i {
  color: var(--red);
}

.banner {
  min-height: 100vh;
  background-size: cover !important;
  display: flex;
  align-items: center;
}

.banner h1 {
  color: white;
  font-size: 50px;
  font-weight: bold;
}

.banner p {
  font-family: 'Gotham-Light';
}

.banner-powerplant {
  background-image: url("/assets/powerplant-f92778ca.webp");
  background-position: bottom;
}

.banner-windmill {
  background-image: url("/assets/windmill-6b0ffe6f.webp");
}

.new-registration-form {
  color: var(--color-text-dark);
  background: var(--color-light-gray-background);
  margin-top: 100px;
}
.new-registration-form label {
  font-family: 'Gotham-Light';
}
.new-registration-form select {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .new-registration-form {
    margin-top: 10rem;
  }
}
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--color-text-black);
  text-decoration: none;
}
.btn:hover {
  color: var(--color-text-black);
  background-color: var(--color-accent);
  border: 1px solid var(--color-text-light);
  box-shadow: 2px 2px 2px var(--color-text-light);
}
.btn--lg {
  min-width: 180px;
}
.btn--danger {
  color: var(--color-text-black);
  border: 1px solid var(--light-red);
  box-shadow: 2px 2px 2px var(--light-red);
}
.btn--danger:hover {
  background-color: var(--light-red);
  text-decoration: none;
}
.btn--primary {
  background-color: var(--color-accent);
}
.btn--primary:hover {
  box-shadow: 1px 2px 2px var(--color-text-light);
  border: 1px solid var(--color-text-light);
}
.btn--toggle-visibility {
  color: var(--color-text-dark);
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.btn--toggle-visibility:hover {
  color: var(--color-text-dark);
  background-color: transparent;
  border: none;
  box-shadow: none;
}

.btn--secondary {
  color: var(--color-text-dark);
  border: 1px solid var(--color-text-dark);
  box-shadow: none;
  text-decoration: none;
}
.btn--secondary--active {
  background-color: var(--color-accent);
  border: 1px solid var(--color-text-light);
  box-shadow: none;
}
.btn--secondary:hover,
.btn--secondary--active:hover {
  background-color: var(--color-accent);
  box-shadow: none;
  border: 1px solid var(--color-text-light);
}
.btn--secondary--sm {
  padding: 0.25rem 0.25rem;
  font-family: var(--font-body-light);
  font-size: 12px;
}

.container-btns-device {
  display: flex;
  position: relative;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.container-btns-device p {
  width: 300px;
  font-size: 14px;
  position: absolute;
  bottom: -32px;
}

.btn-device {
  background-color: var(--green);
  padding: 0.25rem 1.25rem;
  color: white;
  width: 180px;
  height: 30px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  opacity: 1;
}
.btn-device:hover {
  opacity: 0.6;
}
.btn-device--disabled {
  opacity: 0.6;
}
.btn-device--gray {
  background-color: var(--color-gray-background);
}

.chart-toggle__radio {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.chart-toggle__button {
  cursor: pointer;
}

#daily:checked ~ .chart-toggle__controls label[for='daily'],
#monthly:checked ~ .chart-toggle__controls label[for='monthly'],
#this-week-hourly:checked ~ .chart-toggle__controls label[for='this-week-hourly'],
#all-time-hourly:checked ~ .chart-toggle__controls label[for='all-time-hourly'] {
  background-color: var(--color-accent);
  border-color: var(--color-text-light);
  color: var(--color-text-black);
}

#daily:focus-visible ~ .chart-toggle__controls label[for='daily'],
#monthly:focus-visible ~ .chart-toggle__controls label[for='monthly'],
#this-week-hourly:focus-visible ~ .chart-toggle__controls label[for='this-week-hourly'],
#all-time-hourly:focus-visible ~ .chart-toggle__controls label[for='all-time-hourly'] {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.chart-toggle__pane {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;
}

#daily:checked ~ .chart-toggle__panes #daily-chart-container,
#monthly:checked ~ .chart-toggle__panes #monthly-chart-container,
#this-week-hourly:checked ~ .chart-toggle__panes #this-week-hourly-chart-container,
#all-time-hourly:checked ~ .chart-toggle__panes #all-time-hourly-chart-container {
  position: relative;
  visibility: visible;
  pointer-events: auto;
}

.chart-description-show {
  color: var(--color-text-light);
}

.chart-tooltip {
  padding: 1rem;
}
.chart-tooltip__date {
  white-space: nowrap;
  margin-bottom: 0.5rem;
}
.chart-tooltip__price {
  color: var(--color-text-black);
  font-size: 1.25rem;
  margin-bottom: 0;
}
.chart-tooltip__tou-fee {
  color: var(--color-text-black);
  margin-bottom: 0;
  white-space: nowrap;
}
.chart-tooltip__substituted {
  color: var(--blue);
}

.price-badge {
  box-shadow:
    0 3px 4px 0 var(--box-shadow-color-1),
    0 4px 0 0 var(--box-shadow-color-2);
  border-style: solid;
  font-weight: bold;
  border-width: 1px;
  border-color: var(--color-accent);
  background-color: white;
  color: var(--color-text-dark);
  font-size: 16px;
  font-weight: bold;
  border-radius: 50%;
}
.price-badge__wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.price-badge__body {
  position: relative;
  width: 100%;
  margin: 0;
}
.price-badge__title {
  font-weight: 900;
  position: relative;
  top: 10px;
  white-space: nowrap;
}
.price-badge__title--higher {
  top: 4px;
}
.price-badge__value {
  color: var(--color-accent);
  font-family: 'Gotham-Medium';
  font-size: 1.9rem;
  margin: 0;
  word-wrap: break-word;
  text-align: center;
  padding: 0 1rem;
}
.price-badge__value--smaller {
  font-size: 1.5rem;
}
.price-badge__item {
  display: inline-block;
  margin-right: -4px;
}
.price-badge__link {
  margin-right: -4px;
}
.price-badge__body .price-badge__tooltip::after {
  content: ' ';
  position: absolute;
  bottom: 100%; /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent var(--color-accent) transparent;
}
.price-badge__body .price-badge__text {
  visibility: hidden;
  width: 250px;
  font-size: 0.9rem;
  background-color: var(--color-body-background);
  color: var(--color-text-dark);
  padding: 10px;
  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);
  opacity: 0;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  z-index: 50000;
}
.price-badge:hover .price-badge__text {
  visibility: visible;
  opacity: 1;
}

.switch-inner {
  height: auto;
  color: var(--color-dark-accent);
  position: relative;
  border-style: solid;
  border-color: var(--color-light-gray-background);
  border-width: 1px;
  border-radius: 5px;
  background-color: white;
  margin: 5vh 30px;
}

.row-one::-webkit-scrollbar {
  display: none;
}

.row-one {
  height: 300px;
  overflow: scroll;
}

.row-two {
  min-height: 150px;
  max-height: 150px;
  overflow: scroll;
}

.device-img {
  display: flex;
  justify-content: center;
  width: 100px;
  border-radius: 50%;
}

.device-name {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 15px;
  text-transform: uppercase;
}

.device-description__buttons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.device-description__buttons div {
  flex-grow: 1;
}
.device-description h2 {
  font-size: 32px;
}
.device-description h4 {
  height: 23px;
}
.device-description h3 {
  font-size: 20px;
  margin: 0px;
}
.device-description p {
  opacity: 0.7;
  font-weight: lighter;
}
.device-description__btn {
  padding: 0.5rem 1rem;
  box-shadow: 2px 2px 4px var(--color-text-light);
  color: var(--color-light-gray-background);
  margin-top: 1rem;
}
.device-description__btn:hover {
  text-decoration: none;
  color: var(--color-light-gray-background);
  opacity: 0.8;
}
.device-description__active {
  background: var(--red);
}
.device-description__disabled {
  background: var(--green);
}

.bid-amount {
  font-size: 25px;
  color: var(--color-accent);
  font-weight: bold;
}

.symbol-holder-show {
  margin-bottom: 0px;
  padding: 0px;
}

.list-demo {
  height: 50px;
  padding-right: 20px;
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.list-demo li {
  margin-left: 20px;
  font-size: 20px;
}

.device-link {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 2;
  background: black;
  opacity: 0;
}

.device-link:hover {
  opacity: 0.1;
}

footer {
  background-color: var(--color-text-black);
  color: white;
  font-family: 'Gotham-Light';
  padding: 3rem;
}
footer ul {
  list-style: none;
  padding-left: 0;
}
footer ul li {
  margin-bottom: 0.5rem;
}
footer a {
  color: white;
  font-family: 'Gotham-Light';
  text-decoration: none;
}
footer a:hover {
  color: var(--color-accent);
}
footer .footer-text {
  font-size: 12px;
  font-weight: lighter;
}
footer .signature {
  margin-top: 1rem;
  text-align: center;
}
footer .signature p {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  footer ul {
    padding-left: 0;
  }
}
.menu {
  position: fixed;
  bottom: 0;
  top: 83px;
  right: 0;
  width: 300px;
  background-color: var(--color-light-gray-background);
  z-index: 1005;
  overflow: scroll;
  padding: 1rem 1.5rem;
}
.menu--yellow {
  background-color: var(--color-menu-background);
}
.menu--yellow__section {
  border-bottom: 1px solid var(--color-text-dark);
}
.menu--yellow .menu__item a,
.menu--yellow .menu__item i {
  color: var(--color-text-black);
}
.menu--yellow .menu__item a:hover,
.menu--yellow .menu__item a:hover i {
  color: var(--color-text-black);
}
.menu--admin {
  background-color: var(--color-light-gray-background);
}
.menu__section {
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-accent);
}
.menu__section__title {
  font-weight: 600;
}
.menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.menu__item {
  padding: 3px 0;
}
.menu__item a,
.menu__item button {
  margin-left: 5px;
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  font-size: 1rem;
  text-decoration: none;
}
.menu__item button {
  background: none;
  border: none;
  padding: 0;
}
.menu a,
.menu i {
  line-height: 1.25;
  color: var(--color-text-light);
}
.menu a:hover,
.menu a:hover i {
  color: var(--color-accent);
}
.menu .menu__link--active {
  background-color: var(--color-accent);
  border-radius: 0.25rem;
  box-shadow: 0 0 0 0.25rem var(--color-accent);
  color: var(--color-text-black);
}
.menu .menu__link--active:hover,
.menu .menu__link--active:hover i {
  color: var(--color-text-black);
}
.menu__item svg {
  margin-right: 1rem;
  min-width: 24px;
}

.menu--mobile {
  overflow: scroll;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.menu--mobile .container--menu-mobile {
  margin: 0 auto;
  width: 70%;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.menu--mobile ul.navbar-nav {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-accent);
}
.menu--mobile .navbar-nav {
  justify-content: center;
  line-height: 2;
  margin-bottom: 2rem;
  height: unset;
}
.menu--mobile .menu__section__title {
  font-size: 1.25rem;
}
.menu--mobile a.nav-link,
.menu--mobile button.nav-link {
  color: var(--color-text-dark);
  font-size: 1rem;
}
.menu--mobile .navbar-nav.navbar__menu-mobile__sign-in-section {
  display: flex;
  flex-direction: column;
  align-items: center !important;
  border-bottom: none;
}
.menu--mobile .login-link {
  font-size: 1.25rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.menu--mobile__btn-close {
  font-size: 1.25rem;
  color: var(--color-text-dark);
  opacity: 1;
  float: unset;
}

.menu--user {
  padding-top: 4rem;
  background-color: var(--color-accent);
}

.command-palette {
  margin-left: auto;
  margin-right: 0.5rem;
}

.navbar-actions {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.command-palette-open {
  overflow: hidden;
}

.command-palette__trigger {
  display: none;
  align-items: center;
  gap: 0.5rem;
  min-width: 190px;
  height: 40px;
  padding: 0 0.75rem;
  color: var(--color-text-light);
  background-color: var(--color-light-gray-background);
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: var(--font-body-light);
  text-align: left;
}

.command-palette__trigger:hover,
.command-palette__trigger:focus {
  color: var(--color-text-black);
  border-color: var(--color-accent);
  outline: none;
}

.command-palette__trigger svg {
  flex-shrink: 0;
}

.command-palette__trigger span {
  flex-grow: 1;
}

.command-palette__trigger kbd {
  color: var(--color-text-light);
  background-color: var(--white);
  border: 1px solid var(--box-shadow-color-1);
  border-radius: 4px;
  box-shadow: none;
  font-family: var(--font-body-light);
  font-size: 0.75rem;
  white-space: nowrap;
}

.navbar--transparent .command-palette__trigger {
  color: rgba(255, 255, 255, 0.88);
  background-color: rgba(0, 0, 0, 0.22);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
}

.navbar--transparent .command-palette__trigger:hover,
.navbar--transparent .command-palette__trigger:focus {
  color: var(--white);
  background-color: rgba(0, 0, 0, 0.34);
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar--transparent .command-palette__trigger kbd {
  color: rgba(255, 255, 255, 0.9);
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.command-palette__mobile-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.command-palette__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background-color: rgba(41, 40, 57, 0.45);
  padding: 5rem 1rem 1rem;
}

.command-palette__dialog {
  width: min(680px, 100%);
  max-height: min(680px, calc(100vh - 6rem));
  margin: 0 auto;
  overflow: hidden;
  background-color: var(--white);
  border: 1px solid var(--color-accent);
  border-radius: 8px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2);
}

.command-palette__search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 1px solid var(--color-light-gray-background);
}

.command-palette__search svg {
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 1.25rem;
}

.command-palette__input {
  width: 100%;
  min-width: 0;
  color: var(--color-text-black);
  background-color: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-body);
  font-size: 1.1rem;
}

.command-palette__spinner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  visibility: hidden;
}

.command-palette__spinner--visible {
  visibility: visible;
  animation: command-palette-spin 0.8s linear infinite;
}

.command-palette__list {
  max-height: min(560px, calc(100vh - 13rem));
  overflow-y: auto;
  padding: 0.5rem;
}

.command-palette__item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  min-height: 58px;
  padding: 0.6rem 0.75rem;
  color: var(--color-text-dark);
  border-radius: 6px;
  text-decoration: none;
}

.command-palette__item:hover,
.command-palette__item--active {
  color: var(--color-text-black);
  background-color: var(--color-menu-background);
  text-decoration: none;
}

.command-palette__item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--color-text-black);
  background-color: var(--color-accent);
  border-radius: 6px;
}

.command-palette__item-icon svg {
  font-size: 1.1rem;
}

.command-palette__item-icon--admin {
  color: var(--color-text-black);
  background-color: var(--white);
  border: 2px solid var(--color-accent);
}

.command-palette__item-copy {
  min-width: 0;
}

.command-palette__item-title,
.command-palette__item-subtitle {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.command-palette__item-title {
  color: var(--color-text-black);
}

.command-palette__item-subtitle,
.command-palette__item-category,
.command-palette__empty {
  color: var(--color-text-light);
  font-family: var(--font-body-light);
  font-size: 0.8rem;
}

.command-palette__item-category {
  padding-left: 0.5rem;
  text-align: right;
  white-space: nowrap;
}

.command-palette__empty {
  margin: 0;
  text-align: center;
}

.command-palette__empty {
  padding: 2rem;
}

@keyframes command-palette-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media screen and (min-width: 992px) {
  .navbar > .container-fluid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px minmax(0, 1fr);
    gap: 0.75rem;
    align-items: center;
  }

  .navbar-brand {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .command-palette {
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    width: clamp(18rem, 22vw, 28rem);
    margin: 0 1.75rem 0 0;
  }

  .command-palette__trigger {
    display: inline-flex;
    width: 100%;
  }

  .command-palette__mobile-trigger {
    display: none;
  }

  #desktop-navs {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
    white-space: nowrap;
  }

  #desktop-navs .nav-link,
  #desktop-navs .login-link {
    white-space: nowrap;
  }

  .navbar--anonymous > .container-fluid {
    display: flex;
    gap: clamp(0.5rem, 1vw, 1rem);
  }

  .navbar--anonymous .navbar-brand {
    flex: 0 0 auto;
  }

  .navbar--anonymous .navbar-actions {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    margin-left: clamp(0.5rem, 1.5vw, 1.5rem);
  }

  .navbar--anonymous .command-palette {
    width: min(100%, clamp(11rem, 18vw, 22rem));
    margin: 0;
  }

  .navbar--anonymous .command-palette__trigger {
    min-width: 0;
  }

  .navbar--anonymous #desktop-navs {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 992px) and (max-width: 1399.98px) {
  .navbar--anonymous #desktop-navs .nav-item {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
    font-size: 1rem;
  }

  .navbar--anonymous #desktop-navs .nav-link {
    padding-right: 0.35rem;
    padding-left: 0.35rem;
  }

  .navbar--anonymous .login-link {
    font-size: 1rem;
  }

  .navbar--anonymous .login-link--sign-up,
  .navbar--anonymous .login-link--sign-in {
    margin-left: 0.35rem;
    margin-right: 0.2rem;
  }
}

@media screen and (min-width: 992px) and (max-width: 1099.98px) {
  .navbar--anonymous .command-palette__trigger kbd {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .command-palette {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
  }

  .command-palette__backdrop {
    padding: 4.5rem 0.75rem 0.75rem;
  }

  .command-palette__item {
    grid-template-columns: 2.25rem minmax(0, 1fr);
  }

  .command-palette__item-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .command-palette__item-category {
    display: none;
  }
}

@media screen and (max-width: 991.98px) {
  .navbar-actions .command-palette {
    margin: 0;
  }
}

.marker {
  background-image: url("/assets/marker-44023167.png");
  width: 27px;
  height: 41px;
}

.modal-title {
  font-family: 'Gotham-Medium';
  text-align: center;
  margin: 20px 0;
}

.modal {
  --bs-modal-margin: 0.75rem;
}

.modal.fade,
.modal-backdrop.fade {
  transition: opacity 0.12s linear;
}

.modal-dialog {
  display: flex;
  align-items: flex-end;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal.fade .modal-dialog {
  transform: translateY(1.25rem);
  transition: transform 0.16s ease-out;
}

.modal.show .modal-dialog {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade,
  .modal-backdrop.fade,
  .modal.fade .modal-dialog {
    transition: none;
  }
}

@media (min-width: 768px) {
  .modal {
    --bs-modal-margin: 1.75rem;
  }

  .modal-dialog {
    align-items: center;
  }
}

.yellow-white {
  border: 4px solid var(--color-accent);
  background: white;
}

.inner-modal-top,
.inner-modal-bottom {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.modal-body-separator {
  border-top: 4px solid var(--color-accent);
}

.inner-modal-bottom {
  font-size: 14px;
  background-color: var(--color-menu-background);
  padding: 20px 0;
  margin-bottom: 0;
}

#signUpToAddModal .inner-modal-top {
  padding: 50px 0;
}

@media (min-width: 768px) {
  .modal-content {
    box-shadow: 0 5px 15px var(--box-shadow-color-1);
  }
}
.modal-body-delete {
  background-color: white;
  border: 4px solid var(--color-accent);
  border-radius: 6px;
}

.dot-status-modal {
  border-collapse: separate;
  height: 50px;
  width: 50px;
  border-color: white;
  border-width: 2px;
  border-radius: 50%;
  display: inline-block;
  border-style: solid;
  box-shadow: 0 0 0 1px gray;
}

.trash-modal {
  position: relative;
  right: 0;
  bottom: 0;
}

#addSwitchModal .trash-modal {
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--light-red);
}

.edit-modal .modal-dialog {
  max-width: 650px;
}
.edit-modal .modal-content {
  background-color: var(--color-light-gray-background);
  border: 4px solid var(--color-accent);
}
.edit-modal .modal-content label {
  display: block;
}
.edit-modal .modal-content section header {
  display: flex;
  justify-content: space-around;
}
.edit-modal .modal-content section header .current {
  border-bottom: 2px solid var(--green);
}
.edit-modal .modal-content form .modal-body {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 2rem;
}
.edit-modal .modal-header {
  justify-content: center;
}
.edit-modal .modal-footer {
  display: flex;
  justify-content: end;
  flex-direction: row-reverse;
}

.modal-home-address .modal-content {
  background-color: var(--color-light-gray-background);
  border: 4px solid var(--color-accent);
}
.modal-home-address .modal-content input:not([type='submit']) {
  box-shadow: none;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-accent);
  color: var(--color-text-black);
}
.modal-home-address .modal-content input:not([type='submit']):focus {
  outline: var(--color-accent) auto 2px;
}
.modal-home-address .modal-content input[type='submit'] {
  padding: 0.25rem 1.25rem;
  color: white;
  width: 180px;
  height: 30px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  background: var(--color-accent);
  margin-top: 0.25rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
.modal-home-address .modal-content input[type='submit']:hover {
  background: var(--color-accent);
}
.modal-home-address .validation {
  color: var(--red);
  margin-left: 16px;
  margin-top: 10px;
}
.modal-home-address .modal-header {
  justify-content: center;
}
.modal-home-address .modal-footer {
  display: flex;
  justify-content: center;
}

.modal-show .modal-dialog {
  max-width: 650px;
}
.modal-show .modal-content {
  background-color: var(--color-light-gray-background);
  border: 4px solid var(--color-accent);
  color: var(--color-text-black);
}
.modal-show .modal-content label {
  display: block;
}
.modal-show .modal-content section header {
  display: flex;
  justify-content: space-around;
}
.modal-show .modal-content section header .current {
  border-bottom: 2px solid green;
}
.modal-show .modal-content form .modal-body {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin: 2rem;
}
.modal-show .modal-content input.btn {
  background: var(--color-light-gray-background);
  margin-top: 1.5rem;
  width: 100%;
}
.modal-show .modal-content input.btn:hover {
  background: var(--color-accent);
}
.modal-show .modal-header {
  justify-content: center;
}
.modal-show .modal-footer {
  display: flex;
  justify-content: end;
  flex-direction: row-reverse;
}

.modal__device__info .modal-content {
  background: white;
  border: 4px solid var(--color-accent);
}
.modal__device__info .modal-content label {
  display: block;
}
.modal__device__info .modal-content section header {
  display: flex;
  justify-content: space-around;
}
.modal__device__info .modal-content section header .current {
  border-bottom: 2px solid green;
}
.modal__device__info .modal-header {
  justify-content: center;
}

.modal__device__info img {
  width: 33%;
  flex-grow: 0 0 auto;
  margin: 0 auto;
}

.omnimeter_log_modal h3.modal-title {
  text-align: center;
  color: black;
}
.omnimeter_log_modal button.btn-close {
  position: absolute;
  right: 4px;
  top: 4px;
  z-index: 10;
}

.navbar {
  background: white;
  font-family: 'Gotham-Light';
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1004;
}
.navbar--fixed {
  position: fixed;
  width: 100%;
}
.navbar--sticky {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
}
.navbar--transparent {
  background-color: transparent;
}
.navbar--transparent h1,
.navbar--transparent .nav-link {
  color: white;
  text-decoration: none;
}
.navbar--shadow {
  box-shadow:
    0 1px 5px 0 var(--box-shadow-color-1),
    0 1px 0 0 var(--box-shadow-color-2);
}

@media screen and (min-width: 992px) {
  .navbar {
    padding: 1rem 2rem;
  }

  .navbar-actions {
    display: contents;
    margin-left: 0;
  }
}
.navbar-brand img {
  height: 50px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0px;
  margin-right: 0.5rem;
  color: var(--color-accent);
  text-decoration: none;
}

.priicer-name {
  opacity: 1;
}
.priicer-name h1 {
  margin: 0;
}

@media screen and (max-width: 450px) {
  .priicer-name {
    display: none;
  }
}
.navbar-middle {
  left: 50%;
  position: absolute;
  top: -42px;
  margin-left: -65px;
  height: 130px;
  width: 130px;
}

.navbar-toggler {
  box-shadow: none;
  border: none;
  background: transparent;
  color: var(--color-text-light);
}

#desktop-navs {
  display: none;
}
#desktop-navs .nav-item {
  font-size: 1.25rem;
}
#desktop-navs .nav-link:hover {
  color: var(--color-accent);
}

@media screen and (min-width: 992px) {
  #desktop-navs {
    display: flex;
  }
  .navbar--transparent .navbar-toggler {
    color: white;
  }
}
.nav-item:hover {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.nav-link {
  color: var(--color-text-dark);
  text-decoration: none;
}

button.nav-link {
  background: none;
  border: none;
  padding: 0;
}

.login-link {
  color: var(--color-accent);
  font-size: 18px;
  font-weight: 600;
}
.login-link:hover {
  color: var(--color-accent);
}

@media screen and (min-width: 992px) {
  .login-link--sign-up,
  .login-link--sign-in {
    margin-left: 1rem;
    margin-right: 0.5rem;
  }
}
.login-link-black-hover:hover,
.navbar-white .login-link:hover {
  color: var(--color-text-black);
}

/* User Avatar */
.navbar .avatar {
  height: 35px;
  width: 35px;
  border-radius: 50%;
}

.form-style {
  max-width: 500px;
  padding: 20px 12px 10px 20px;
  font-family: 'Gotham-Medium';
  font-size: 14px;
  display: flex-item;
  border-radius: 10px;
  background-color: var(--color-light-gray-background);
}

.container-simpleform {
  display: flex;
  justify-items: center;
}

.form-control {
  background-color: white;
  opacity: 0.9;
  border-radius: 2px;
}
.form-control:hover {
  opacity: 0.8;
}

.simple_form.new_device {
  margin: 30px;
}

.edit-banner {
  margin-top: 436px;
}

.text-muted {
  color: white;
}

.black-bar {
  height: 300px;
  background-color: black;
}

.sorting .active i {
  color: var(--color-accent);
}
.sorting .arrow {
  height: 10px;
}
.sorting p {
  margin-bottom: 0px;
}

.tesla__form-bids {
  opacity: 0;
  height: 0;
  overflow: auto;
  margin-bottom: 3rem;
  transition: all 1s ease;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-light-gray-background);
}
.tesla__form .iconify-icon {
  transition: all 1s ease;
}
.tesla__form legend {
  cursor: pointer;
  font-size: 2rem;
  margin-top: 1.5rem;
}
.tesla__form-bids.form-active {
  height: 25rem;
  opacity: 1;
}
.tesla__form-bid__type {
  border: none;
  transition: all 0.2s;
  border-bottom: 1px solid var(--green);
  width: 100px;
  text-align: center;
}
.tesla__form-bid__type:hover {
  border-bottom: 1px solid var(--color-accent);
  transform: scale(1.1);
  cursor: pointer;
}
.tesla__form .iconify-icon.circle-active {
  color: var(--green);
  transform: rotate(45deg);
}
.tesla__form .form-group {
  margin: 2rem 0;
}
.tesla__form-bid__input {
  display: none;
}
.tesla__form-bid__input.current-input {
  display: block;
}

.target-temperatures-bids-form {
  margin: 8px 24px;
  padding: 1rem;
}
.target-temperatures-bids-form__help,
.target-temperatures-bids-form .target-temperature-mode__hint {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
}
.target-temperatures-bids-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.target-temperatures-bids-form label {
  font-size: inherit;
}
.target-temperatures-bids-form .yellow-underline {
  border-bottom: 1px solid var(--color-accent);
}
.target-temperatures-bids-form span.yellow-underline {
  line-height: 23px;
}
.target-temperatures-bids-form button.gray-link {
  display: inline-block;
  margin-right: 16px;
}
.target-temperatures-bids-form #turnOff-price,
.target-temperatures-bids-form #turnOff-price + span {
  background-color: var(--color-light-gray-background);
}
.target-temperatures-bids-form #turnOff-price:focus,
.target-temperatures-bids-form #turnOff-price + span:focus {
  outline: none;
}
.target-temperatures-bids-form #turnOff {
  color: var(--color-accent);
  font-size: 1.5rem;
  font-family: 'Gotham-Light';
  border: none;
  font-weight: bold;
  width: '16px';
}

.target-temperature-mode {
  margin: 0 0 2rem;
}
.target-temperature-mode__legend {
  color: var(--color-text-dark);
  font-family: var(--font-headers);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.target-temperature-row {
  align-items: baseline;
  color: var(--color-text-light);
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-body-light);
  font-size: 1rem;
  gap: 0.25rem 0.45rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.target-temperature-row .form-label {
  margin: 0;
}
.target-temperature-row .yellow-input {
  font-family: var(--font-body);
  font-size: 1rem;
}
.target-temperature-row__unit,
.target-temperature-row__off,
.target-temperature-row__currency {
  color: var(--color-text-dark);
  font-family: var(--font-body);
}
.target-temperature-row__currency {
  white-space: nowrap;
}
.target-temperature-row__off {
  font-size: 1rem;
}
.target-temperature-row--turn-off {
  margin-top: 1rem;
}

.target-temperature-add-button {
  margin: 0.25rem 0 0.75rem;
}

.target-temp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.target-temp-grid h2 {
  font-size: 16px;
  margin: 0;
}
.target-temp-grid .target-temp-grid--current-bid p {
  color: var(--color-accent);
  font-family: var(--font-body);
}

.edit-variables-bids,
.target-temperature-display {
  margin: 0 4rem;
}

.target-temperature-display .target-temp-grid > h2 {
  margin: 0;
  color: var(--color-accent);
}
.target-temperature-display > div {
  border-bottom: 2px solid var(--color-light-gray-background);
  margin-bottom: 1rem;
}
.target-temperature-display > div.target-temp-grid {
  border-bottom: 1px solid var(--color-light-gray-background);
}

.variable-bids {
  margin-bottom: 0.5rem;
}
.variable-bids .bullet-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.variable-bids .bullet-tab {
  height: 20px;
  width: 20px;
  background-color: lightgray;
  margin: 0 8px;
  border-radius: 50%;
  cursor: pointer;
}
.variable-bids .bullet-tab.active {
  background-color: var(--color-text-dark);
}
.variable-bids .bullet-tab.passive:hover {
  background-color: grey;
}
.variable-bids .bullet-titles {
  display: flex;
  align-items: center;
  justify-content: center;
}
.variable-bids h3.bullet-title {
  padding: 8px 10px;
  margin-bottom: 0px;
  font-family: 'Gotham-Medium';
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
}
.variable-bids h3.bullet-title.active {
  color: var(--color-text-dark);
  font-size: 36px;
}
.variable-bids h3.bullet-title.passive {
  color: lightgray;
}
.variable-bids h3.bullet-title.passive:hover {
  color: grey;
}

.thermostat-status {
  display: grid;
  gap: 1rem;
  grid-template-columns: 3fr 3fr 4fr;
  width: 70%;
  align-items: center;
}
.thermostat-status h4,
.thermostat-status p {
  margin: 0;
}
.thermostat-status .btn.btn-link {
  font-size: 1.5rem;
  color: var(--color-text-light);
}
.thermostat-status .btn.btn-link svg {
  filter: drop-shadow(0px 0px 0px var(--color-text-light));
}
.thermostat-status .btn.btn-link.clicked svg {
  transform: scale(1.2);
  color: var(--color-accent);
}
.thermostat-status .btn.btn-link.clicked.up svg {
  filter: drop-shadow(0px -2px 2px var(--color-text-light));
}
.thermostat-status .btn.btn-link.clicked.down svg {
  filter: drop-shadow(0px 2px 2px var(--color-text-light));
}
.thermostat-status .btn.btn-link:hover {
  color: var(--color-accent);
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.thermostat-status .mode-icons {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.thermostat-status .mode-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-light-gray-background);
}
.thermostat-status .mode-selector.active {
  border-color: var(--color-text-light);
}
.thermostat-status .mode-selector.active .mode-icon {
  font-size: 2rem;
  opacity: 1;
  transition: all 0.3s ease;
}
.thermostat-status .mode-selector.active.active.heat .mode-icon {
  color: var(--red);
}
.thermostat-status .mode-selector.active.active.cool .mode-icon {
  color: var(--blue);
}
.thermostat-status .mode-selector.active.active.fan .mode-icon {
  color: var(--green);
}
.thermostat-status .mode-selector.inactive {
  border-color: transparent;
}
.thermostat-status .mode-selector.inactive .mode-icon {
  font-size: 1.25rem;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.thermostat-status .mode-selector.inactive:hover {
  border-color: var(--color-text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--box-shadow-color-2);
}
.thermostat-status .mode-selector.inactive:hover .mode-icon {
  font-size: 2rem;
  transition: all 0.3s ease;
  opacity: 0.8;
}
.thermostat-status .mode-selector.inactive:hover.inactive.heat .mode-icon {
  color: var(--red);
}
.thermostat-status .mode-selector.inactive:hover.inactive.cool .mode-icon {
  color: var(--blue);
}
.thermostat-status .mode-selector.inactive:hover.inactive.fan .mode-icon {
  color: var(--green);
}
.thermostat-status .mode-selector:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  pointer-events: none;
}
.thermostat-status .mode-selector:disabled .mode-icon {
  color: var(--color-text-light);
  opacity: 0.5;
}
