:host {
  height: 100%;
}

.home-cont {
  height: 100%;
  width: 100%;
  overflow: auto;
}

.top-container {
  display: flex;
  height: 85%;
}

.top-left-container {
  width: 350px;
  padding-left: 25px;
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 25px;
}

.device-connection-status {
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #6d6d6d;
}

.device-name-and-connection-icon {
  display: flex;
  align-items: center;
  margin-top: 5px;
}

.device-connection-icon {
  color: #6bb644;
  padding: 3px;
  border: 2px solid #6bb644;
  border-radius: 50%;
  box-sizing: content-box;
}

.device-connection-icon.disconnect {
  color: #dd0000;
  border: 2px solid #dd0000;
}

.device-name {
  margin-left: 10px;
  font-family: Roboto;
  font-size: 30px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #5d5d5d;
}

.device-desc {
  margin-top: 15px;
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.4;
  text-align: justify;
  letter-spacing: 1px;
  color: #63666a;
}

.quick-start-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #dd0000;
  color: #fff;
  margin-top: 10px;
  position: relative;
}

.quick-start-button:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

.quick-start-title {
  font-size: 16px;
  width: 250px;
}

.registermap-button {
  color: #dd0000;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: #e5e5e5 transparent;
  cursor: pointer;
  position: relative;
}

.registermap-button:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.registermap-icon {
  margin-right: 15px;
}

.registermap-title {
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #dd0000;
}

.right-direction-arrow {
  float: right;
}

.file-icon {
  width: 20px;
  height: 20px;
  margin-right: 3px;
}

.open-window-icon {
  width: 15px;
  height: 15px;
  margin-left: 10px;
}

.top-middle-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 750px);
  padding-top: 50px;
}

.illustration {
  width: 100%;
  height: 100%;
  padding: 30px;
  object-fit: contain;
}

.top-right-container {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 400px;
  text-align: right;
  padding-top: 50px;
}

.features-list-title {
  color: #dd0000;
  padding: 25px 50px;
  border: 1px solid #dd0000;
  border-right-color: transparent;
  border-radius: 35px 0px 0px 35px;
  background-color: #fafafa;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
}

.features-list {
  display: flex;
  flex-direction: column;
}

.feature-title {
  margin: 9px;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.feature-title:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
}

.feature-icon {
  height: 40px;
  width: 30px;
}

.feature-title-txt {
  font-family: Roboto;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #63666a;
  text-align: left;
}

.bottom-container {
  display: flex;
  height: 15%;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

.collateral {
  display: inline-flex;
  width: 110px;
  height: 110px;
  border-radius: 4px;
  flex-direction: column;
  justify-content: space-evenly;
  text-align: center;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
  background-color: #fefefe;
  color: #196db4;
  border: solid 0.2px #d4dde1;
  margin-right: 10px;
  margin-left: 10px;
  padding: 20px;
  cursor: pointer;
  position: relative;
}

.un-available {
  background-color: #9f9f9f;
  opacity: 0.3;
  pointer-events: none;
}

.collateral-not-available {
  color: #dd0000;
  font-size: 13px;
  font-weight: bold;
  pointer-events: none;
  position: absolute;
  top: 47%;
  left: 10%;
  text-align: center;
  text-transform: uppercase;
}

.collateral:hover {
  background-color: #196db4;
  color: #fefefe;
  text-decoration: none;
}

.collateral:hover .collateral-icon-hr {
  display: block;
}

.collateral:hover .collateral-icon {
  display: none;
}

.collateral-text {
  font-family: Roboto;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
}

.quick-links-divider {
  margin: 5px 0px;
}

.collateral-icon {
  height: 30px;
}

.collateral-icon-hr {
  height: 30px;
  display: none;
}

.collateral-container {
  position: relative;
}

.collateral::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 3;
  cursor: pointer;
}

.collateral.un-available {
  opacity: 0.3;
}

.steps-wrapper.not-allowed {
  opacity: 0.5;
}

.quick-links-container {
  margin-top: 10px;
}

.quick-links-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.quick-link-name {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 60%;
  color: #148C9C;
}

.quick-links-title {
  font-weight: 500;
  font-size: 15px;
  color: #6d6d6d;
}

@media screen and (max-height: 800px) {
  .bottom-container {
    height: 12%;
  }

  .features-list-title {
    padding: 20px 40px;
  }

  .feature-title {
    margin: 5px;
    gap: 10px;
  }

  .feature-icon {
    width: 25px;
    height: 35px;
  }
}


@media screen and (min-height: 700px) and (max-height: 800px){
  .quick-links-list {
    gap: 10px;
    padding: 5px 0px;
  }

}

@media screen and (min-height: 800px){
  .quick-links-list {
    gap: 20px;
    padding: 10px 0px;
  }

  .quick-links-container {
    margin-top: 20px;
  }
}