.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;
}

.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;
  transition: all 0.4s ease-in;
  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);
  transition: all 0.3s ease-in;
}
.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;
  transition: opacity 0.3s ease;
  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);
}

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

.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;
}
.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;
  transition: opacity 1s;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  right: -80px;
  top: 50px;
  z-index: 50000;
}
.price-badge__body:hover .price-badge__text {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}

.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);
  transition: opacity 0.2s ease;
  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;
}

.fa-pencil-alt:before {
  position: absolute;
  top: 7px;
  right: 63px;
}

.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__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);
}

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

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

.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;
  transition: opacity 0.3s ease;
  width: 180px;
  height: 30px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease-in;
  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 {
  transition: all 0.3s ease-in;
  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;
}

#InfoModal button.close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.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;
  transition: all 0.8s ease;
  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 {
  transition: all 0.3s ease;
  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-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;
  transition: opacity 10s ease-out;
  transition-delay: 6s;
  transition-timing-function: cubic-bezier(0.1, 0.1, 0.1, 1.4);
}
.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 .fas {
  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 .fas.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));
  transition: all 0.4s ease;
}
.thermostat-status .btn.btn-link.clicked svg {
  transform: scale(1.2);
  color: var(--color-accent);
}
.thermostat-status .btn.btn-link.clicked.up svg {
  transition: all 0.4s;
  filter: drop-shadow(0px -2px 2px var(--color-text-light));
}
.thermostat-status .btn.btn-link.clicked.down svg {
  transition: all 0.4s;
  filter: drop-shadow(0px 2px 2px var(--color-text-light));
}
.thermostat-status .btn.btn-link:hover {
  transition: all 0.25s;
  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;
}
