:host {
  box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%;
}

.carousel-nav-bar {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 3%;
  width: 100%;
}

.carousel-nav-dot {
  background-color: var(--color-ti-indicator-grey);
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  margin: 5px;
  padding: 5px;
  width: 10px;
}

.carousel-nav-dot.selected-red {
  background-color: var(--color-ti-primary-red);
}

.carousel-nav-dot.selected-grey {
  background-color: var(--color-ti-secondary-grey-dark);
}

.feature-card {
  align-items: center;
  display: flex;
  height: 92%;
  justify-content: center;
  padding: 1%;
  width: 100%;
}

.feature-graphic-ctr {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 50%;
}

.feature-img {
  height: 100%;
  object-fit: scale-down;
  width: 100%;
}

.feature-text {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  padding: 0 4% 4% 0;
  width: 50%;
}

.feature-title {
  color: var(--color-ti-text-grey-dark);
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  padding: 2% 0;
}

.feature-description {
  color: var(--color-ti-text-grey);
  font-size: 15px;
  line-height: 35px;
  padding: 1% 0;
}

.label {
  color: var(--color-ti-secondary-grey-dark);
  margin-right: 15px;
}

.fault-card {
  height: 100%;
  padding: 4%;
  width: 100%;
}

.fault-diagram {
  height: 65%;
  width: 80%;
  overflow: hidden;
}

.fault-info {
  color: var(--color-ti-secondary-grey-dark);
}

.fault-state {
  align-self: flex-start;
  background-color: var(--color-ti-bg-grey-04);
  border-radius: 6px;
  color: var(--color-ti-secondary-grey-dark);
  font-weight: lighter;
  min-width: 140px;
}

.fault-state-row {
  padding: 10px 20px 10px 10px;
  white-space: pre;
  width: max-content;
}

.main-card {
  height: 90%;
  width: 100%;
  overflow: hidden;
}

.fault-card {
  animation: slide-slow 0.3s;
}

.timing-diagram {
  height: 100%;
  width: 100%;
}

.lp-main-card {
  height: 90%;
  width: 100%;
  overflow: hidden;
}

.lp-image-card {
  height: 100%;
  padding: 2% 1% 2% 2%;
  width: 100%;
  animation: slide-slow 0.3s;
}

@keyframes slide-slow {
  from {
    margin-left: 100%;
  }

  to {
    margin-left: 0%;
  }
}

.edge-name {
  color: var(--color-ti-text-grey-dark);
  font-weight: bold;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
}
