.home-page-container {
  width: 100%;
  height: 100%;
  padding: 3% 0px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 700px;
  min-width: 1250px;
}

.overflow-auto{
  height: 100%;
  overflow-y: scroll;
}

.left-container {
  padding-left: 3%;
  width: 25%;
}

.middle-container {
  width: 50%;
  padding: 0px 3%;
}

.right-container {
  width: 25%;
  padding-right: 3%;
}

.connection-status .outer-circle {
  align-items: center;
  background-color: var(--color-ti-border-red);
  border-radius: 50%;
  display: inline-flex;
  height: 25px;
  justify-content: center;
  margin-right: 10px;
  width: 25px;
}

.connection-status.green .outer-circle {
  background-color: var(--color-ti-border-grey-dark);
}

.connection-status .inner-circle {
  background-color: var(--color-ti-primary-red);
  border-radius: 50%;
  height: 15px;
  width: 15px;
}

.connection-status.green .inner-circle {
  background-color: var(--color-ti-indicator-green);
}

.device-details > div {
  margin-bottom: 20px;
}

.device-name {
  font-size: 26px;
}

.device-description {
  line-height: 18px;
  width: 100%;
  text-align: justify;
  text-justify: inter-word;
}

.mode-selection {
  margin-bottom: 20px;
  width: calc(100% - 50px);
  max-width: 250px;
}

.features-container .btn {
  display: flex;
  height: 36px;
  justify-content: space-between;
  background-color: var(--color-ti-primary-red);
  color: var(--color-ti-white);
  margin-bottom: 15px;
  padding-left: 24px;
  padding-right: 18px;
  width: calc(100% - 50px);
  max-width: 250px;
}

.video-container {
  height: 160px;
  width: 100%;
  max-width: 260px;
  margin-top: 30px;
}

.image-container {
  height: 80%;
  min-height: 400px;
  margin-bottom: 30px;
  width: 100%;
}

.image-container img {
  max-height: 100%;
  max-width: 100%;
}

.placeholder {
  background-color: var(--color-ti-bg-grey-02);
  border: 1px dashed var(--color-ti-text-grey);
  border-radius: 3px;
  color: var(--color-ti-secondary-grey);
}

.collaterals-container {
  gap: 20px;
}

.collateral {
  align-items: center;
  border-radius: 4px;
  box-shadow: 0px 0px 5px 3px var(--color-ti-bg-grey-dark);
  color: var(--color-ti-primary-blue);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 110px;
  padding: 32px 25px 20px 25px;
  width: 110px;
}

.collateral .icon {
  width: 22px;
}

.collateral.disabled {
  color: var(--color-ti-secondary-grey);
}

.quick-links {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.quick-links-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.quick-link {
  margin-bottom: 5px;
}

.quick-link .title {
  color: var(--color-ti-primary-blue);
  margin-bottom: 5px;
}

.quick-link .desc {
  font-size: 10px;
  color: var(--color-ti-secondary-grey);
}

.quick-link .icon iron-icon {
  width: 30px;
}

.uppercase {
  text-transform: uppercase;
}
