/**
 * Drop List
 */

 .drop {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  position: relative;
 }
.drop-list {
  display: grid;
  gap: 1rem 2rem;
  grid-template-rows: 35px;
  grid-auto-rows: max-content;
  width: calc(50% - 1rem);
  min-height: 450px;
  align-content: center;
}

.drop-element {
  background-color: var(--color-secondary--1);
  padding: 0.5rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  line-height: normal;
}

.drop-zone-arrow {
  display: block;
  margin: 0.5rem auto 0.5rem;
  width: 25px;
  height: 25px;
  background-image: url("../../medias/images/diag/arrow.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 20%;
  transform: translateX(-50%) rotate(-90deg);
}
.drop-zone-number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  width: 35px;
  height: 35px;
  font-size: 1.1rem;
  line-height: normal;
  background-image: url("../../medias/images/header/number-cover.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  font-style: italic;
  font-weight: 700;
  margin-right: 1rem;
}
.drop-zone-container {
  width: calc(50% - 1rem);
}
.drop-zone-item {
  display: flex;
  margin: 2rem 0;
  justify-content: center;
}
.drop-zone-item:first-child {
  margin: 1rem 0 2rem;
}
.drop-zone {
  width: 100%;
  min-height: 35px;
  border: 2px dashed var(--color-secondary--1);
}
.drop-zone.drag--hover {
  background-color: #e7c3843d;
}