.exercise-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 68rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 2rem;
}

.content-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.left-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 68rem;
}

.audio-container {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.audio-container .audio-player {
  position: relative;
  left: auto !important;
  top: auto !important;
}

.answers-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.drag_element {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  user-select: none;
  position: relative;
  z-index: 2;
  padding: 0.25rem;
  background-color: #fff;
  border: 0.2rem solid #00699F;
  border-radius: 0.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.drag_element:hover {
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
}

.drag_element .sort-image {
  width: 10rem;
  height: auto;
  max-height: 10rem;
  object-fit: contain;
  border-radius: 0.4rem;
  display: block;
}

.drag_element.dragging {
  opacity: 0.5;
  cursor: grabbing;
}

.drag_element.correct {
  border-color: #258174;
}

.drag_element.incorrect {
  border-color: #FF0000;
}

.ghost {
  pointer-events: none;
}

.ghost .sort-image {
  width: 10rem;
  height: auto;
  max-height: 10rem;
  object-fit: contain;
}

@media (hover: none) {
  .drag_element {
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
}
