.container {
  height: 300px;
  max-width: 900px;
  border: solid black 2px;
}

.item {
  padding: 10px;
  color: white;
  background-color: hsla(0, 100%, 30%, 0.5);
  border: solid hsla(0, 0%, 0%, 0.25) 2px;
}

.wrapper {
  position: relative;
  left: 10px;
  top: 25px;
}

.wrapper-tab {
  position: relative;
}

.sample-arrow {
  bottom: 10px;
  left: 0;
  height: 100px;
  transform: rotate(90deg);
}

.arrow {
  position: absolute;
  transform-origin: bottom center;
}

.arrow::before {
  position: absolute;
  height: 0;
  width: 0;
  content: "";
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.red-arrow {
  border: 4px dashed hsla(120, 100%, 40%, 0.7);
}

.red-arrow::before {
  border: 12px solid transparent;
  border-bottom: 16px solid hsla(120, 100%, 40%, 0.7);
}

.green-arrow {
  border: 2px dashed hsla(0, 50%, 50%, 0.7);
}

.green-arrow::before {
  border: 6px solid transparent;
  border-bottom: 8px solid hsla(0, 50%, 50%, 0.7);
}

.top-bar {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}

.margin-left {
  margin-left: 50px;
}

td {
  padding: 5px;
}

.invisible {
  display: none;
}

@media (max-width: 1250px) {
  .top-bar {
    flex-direction: column-reverse;
    gap: 0;
  }
}

/*# sourceMappingURL=flexbox-trainer.css.map */
