:host {
  box-sizing: border-box;
  display: block;
  height: 100%;
  width: 100%;
}

.board-header {
  color: var(--color-ti-text-grey-darker);
  font-size: 20px;
  font-weight: 500;
  height: 32px;
  padding: 2%;
  text-transform: uppercase;
}

.board-header > span {
  color: #327ea6;
  font-size: 18px;
  font-weight: bold;
}

.board-description {
  padding: 2%;
  color: #9c9c9c;
  font-size: 11px;
  font-weight: 500;
}

.board-img {
  position: absolute;
  bottom: 2%;
  right: 2%;
  width: 35%;
}

.device-selection {
  background-color: var(--color-ti-white);
  background-image: url(../../images/bg-tile.svg);
  background-position-y: -19%;
  border-radius: 2px;
  box-shadow: 0 0 4px 0.5px rgba(176, 176, 176, 0.5);
  cursor: pointer;
  padding: 2% 2% 0 2%;
  position: relative;
  transition: all 0.2s;
}

.chip-container {
  height: 100%;
  display: grid;
  grid-template-columns: 2fr 2fr;
  grid-template-rows: 45% 45%;
  grid-gap: 4%;
}

.selection-ctr {
  height: 250px;
  overflow: hidden;
}

.card-unselected {
  height: 19.8px;
  width: 19.8px;
  border: 1px solid var(--color-ti-border-grey-dark);
  border-radius: 9.9px;
}

.checked-green {
  --iron-icon-fill-color: var(--color-ti-secondary-green);
}
