.device-show-container {
  color: var(--color-text-light);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.description-card {
  color: var(--color-text-light);
  background: var(--color-light-gray-background);
  padding: 10px;
  width: 500px;
  margin-bottom: 20px;
  border-radius: 4px;
  border-style: solid;
  border-color: var(--color-gray-background);
  border-width: 1px;
}

@media screen and (min-width: 850px) {
  .description-card {
    max-width: 450px;
  }
}
@media screen and (max-width: 850px) {
  .device-show-container {
    flex-direction: column;
  }
  .device-show-container img {
    width: 90vw !important;
    padding-left: 0px !important;
  }
  .description-card {
    width: 90vw;
    margin-bottom: 20px;
  }
}
.link-out-button {
  border-radius: 3px;
  color: white;
  margin-left: auto;
  margin-right: auto;
  background: var(--color-accent);
}

.device-info-text {
  color: var(--color-text-light);
  background: var(--color-light-gray-background);
  padding: 10px;
  border-radius: 4px;
  border-style: solid;
  border-color: var(--color-gray-background);
  border-width: 1px;
}

.geofenced-details p {
  margin-bottom: 0.5rem;
}
.geofenced-details i {
  margin-right: 1rem;
  color: var(--color-text-dark);
}

.horizontal-scroll {
  margin-bottom: 20px;
  overflow-x: scroll;
  display: flex;
  align-items: flex-end;
}

.tesla-semi {
  height: 160px;
}

@media screen and (min-width: 1100px) {
  .horizontal-scroll {
    overflow-x: hidden;
  }
}
@media screen and (max-width: 876px) {
  .device-info-text {
    width: 70vw;
  }
}
@media screen and (max-width: 576px) {
  .device-info-text {
    width: 95vw;
  }
}
.device-types-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-text-dark);
  background: white;
  border-radius: 4px;
  border-style: solid;
  border-color: var(--color-accent);
  border-width: 1px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  align-items: center;
}
.device-types-container h1 {
  margin-top: 0px;
  letter-spacing: -0.02em;
  font-size: 28px;
}
.device-types-container p {
  line-height: 1.5;
}
.device-types-container img {
  width: 100%;
}

@media (min-width: 768px) {
  .device-types-container img {
    height: 150px;
    width: auto;
    justify-self: center;
  }
}
.no-underline a {
  text-decoration: none !important;
}

.device-types-container:hover {
  box-shadow:
    0px 1px 3px var(--box-shadow-color-1) inset,
    0px 0px 2px var(--color-accent);
}

.text-banner {
  background: var(--color-accent);
  height: 48px;
  width: 100%;
  text-align: center;
  color: var(--color-text-dark);
  padding-top: 10px;
  font-size: 10px;
}

.section-text-center {
  font-size: 1.5rem;
}

.device-card-header {
  font-size: 1.5rem;
}

.dt-light-small-font {
  color: var(--color-text-light);
  font-size: 1rem;
  font-weight: 100;
  font-family: 'Gotham-Light';
}

.dt-light-smaller-font {
  font-size: 14px;
}
