* {
  box-sizing: border-box;
}

body {
  font-family: Roboto, sans-serif;
  background-color: #555454;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
}

.main-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.hexagon-wrapper {
  display: flex;
  flex-direction: column;
  width: 1455px;
  height: 956px;
  padding: 50px 30px;
}

.hexagon-line {
  display: flex;
  flex-direction: row;
}
.hexagon-line--nch {
  margin-left: 81.25px;
}

.hexagon {
  --color: #C4C4C4;
  position: relative;
  width: 158px;
  height: 92px;
  background-color: var(--color);
  margin: 24.5px 2px;
  z-index: 10;
}
.hexagon.hexagon-item-amazon {
  --color: #2F80ED;
}
.hexagon.hexagon-item-sony {
  --color: #9B51E0;
}
.hexagon.hexagon-item-disney {
  --color: #FB6868;
}
.hexagon.hexagon-item-spacex {
  --color: #F2994A;
}
.hexagon.hexagon-item-bostondynamics {
  --color: #F2C94C;
}
.hexagon.hexagon-item-pfizer {
  --color: #219653;
}
.hexagon.hexagon-item-un {
  --color: #292929;
}
.hexagon:before, .hexagon:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 79px solid transparent;
  border-right: 79px solid transparent;
}
.hexagon:before {
  bottom: 100%;
  border-bottom: 46px solid var(--color);
}
.hexagon:after {
  top: 100%;
  width: 0;
  border-top: 46px solid var(--color);
}
.hexagon .hexagon-inner {
  position: relative;
  width: 146px;
  height: 84px;
  background-color: var(--color);
  z-index: 20;
  margin: 4px 6px 24.5px;
  color: #FFFFFF;
}
.hexagon .hexagon-inner:before, .hexagon .hexagon-inner:after {
  content: "";
  position: absolute;
  width: 0;
  border-left: 73px solid transparent;
  border-right: 73px solid transparent;
}
.hexagon .hexagon-inner:before {
  bottom: 100%;
  border-bottom: 42px solid var(--color);
}
.hexagon .hexagon-inner:after {
  top: 100%;
  width: 0;
  border-top: 42px solid var(--color);
}
.hexagon .hexagon-inner .hexagon-inner-content {
  display: flex;
  flex-direction: column;
}
.hexagon .hexagon-inner .hexagon-inner-content .hexagon-inner-number {
  align-self: center;
  margin-bottom: 10px;
  font-size: 38px;
}
.hexagon .hexagon-inner .hexagon-inner-content .hexagon-inner-dices {
  display: flex;
  align-self: center;
  justify-content: center;
  width: 100px;
}
.hexagon .hexagon-inner .hexagon-inner-content .hexagon-inner-dices > * {
  margin-right: 2px;
  margin-left: 2px;
}
.hexagon--bordered-black {
  background-color: black;
}
.hexagon--bordered-black:before {
  border-bottom: 46px solid black;
}
.hexagon--bordered-black:after {
  border-top: 46px solid black;
}
.hexagon--bordered-red {
  background-color: #B20000;
}
.hexagon--bordered-red:before {
  border-bottom: 46px solid #B20000;
}
.hexagon--bordered-red:after {
  border-top: 46px solid #B20000;
}

.main-sidebar {
  width: 473px;
  min-height: 100vh;
  background-color: #444444;
  padding: 40px 36px;
}

.team-item {
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  height: 43px;
  width: 400px;
  margin-bottom: 8px;
  --color: #C4C4C4;
  background-color: var(--color);
}
.team-item.team-item-amazon {
  --color: #2F80ED;
}
.team-item.team-item-sony {
  --color: #9B51E0;
}
.team-item.team-item-disney {
  --color: #FB6868;
}
.team-item.team-item-spacex {
  --color: #F2994A;
}
.team-item.team-item-bostondynamics {
  --color: #F2C94C;
}
.team-item.team-item-pfizer {
  --color: #219653;
}
.team-item.team-item-un {
  --color: #292929;
}
.team-item.team-item-black {
  --color: transparent;
  border: 4px solid black;
}
.team-item.team-item-red {
  --color: transparent;
  border: 4px solid red;
}
.team-item.team-item-no {
  display: none;
}
.team-item .team-item-indicators {
  display: flex;
  justify-content: space-between;
  width: 70px;
}

.influence-diagram {
  margin-top: 32px;
}

.toast-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 1000;
}
.toast-container .toast-item {
  width: 700px;
  padding: 40px;
  font-size: 24px;
  margin: 20px auto;
  background-color: #eee;
  border-radius: 12px;
  opacity: 0.7;
}

/*# sourceMappingURL=style.css.map */
