:root {
  --drag-padding: 0.3rem;
}

button:disabled {
  opacity: 0.6;
}

button:disabled:hover {
  cursor: not-allowed;
}

.sr-only {
  position: absolute;
  left: 100%;
}

.txt-centred {
  width: 100%;
  text-align: center;
  margin: 0.4rem 0;
}

.full-width {
  width: 100%;
}

.regular {
  font-weight: 300;
}

.clear-fix {
  clear: both;
}

.img-responsive {
  width: 100%;
  max-width: 100%;
}

.bgGrey {
  background-color: #EDEDF5;
  color: #343438 !important;
}

.main-container {
  max-width: 850px;
  width: 100%;
  margin: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-contents {
  width: 100%;
  margin: auto;
  /* overflow: hidden; */
}

.header, .lower-panel {
  width: 100%;
  max-width: 800px;
  color: var(--non-black);
  background-color: white;
  margin: 1rem 0;
}

.head-sub--container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 3rem;
}

.diagram__image {
  position: relative;
}

.grid-container {
  height: 400px;
  width: 100%;
  max-width: 800px;
  margin: auto;
  display: grid;
  display: none;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 22%);
  grid-auto-rows: 1fr;
  grid-auto-columns: 4em;
  grid-auto-flow: row;
  grid-gap: 1rem;
  flex-grow: 1;
  gap: 0.25em;
  margin-top: 1em;
  margin-bottom: 1em;
  justify-content: space-between;
  align-content: space-between;
}

.inner-shadow {
  border-radius: 14px;
  box-shadow: inset gray 2px 2px 8px -1px;
}

.drop-item {
  height: auto;
  min-height: 4rem;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 12rem;
  position: absolute;
}

.drop-item[data-category="1"] {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.drop-item[data-category="2"] {
  border: 3px solid #6753ac;
  top: 30px;
  left: 318px;
}

.drop-item[data-category="3"] {
  border: 3px solid var(--qm-brightPink);
  top: 346px;
  left: 66px;
}

.drop-item[data-category="4"] {
  border: 3px solid var(--qm-brightOrange);
  top: 346px;
  left: 318px;
}

.clear-before::before {
  content: "";
  padding: 0;
}

.drag-items {
  width: 98%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
  flex-wrap: wrap;
  padding-left: 0;
  margin-left: 7px;
}
@media (min-width: 701px) {
  .drag-items {
    flex-direction: row;
  }
}

.drag-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26%;
  height: 2em;
  border: 1px solid grey;
  border-radius: 7px;
  font-size: 14px;
  line-height: 13px;
  margin: 0.3rem;
  padding: var(--drag-padding);
  text-align: center;
  overflow: hidden;
  background-color: #F5F5F5;
  cursor: move;
  transition: all 1s ease-in-out;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 701px) {
  .drag-item {
    width: 26%;
    height: 2em;
    line-height: 12px;
  }
}

.drop-item .drag-item {
  margin: 0;
  position: absolute;
  font-size: 10px;
  box-shadow: none;
}

.btn-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.button {
  margin: 1rem;
  padding: 1rem;
  border-radius: 10px !important;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.button:hover {
  cursor: pointer;
}

.btn-grey {
  background-color: lightgrey;
  color: #343438;
  border: 1px solid #343438;
}

.draggable.dragging {
  opacity: 0.5;
}

.draggable.dragging:active {
  cursor: grabbing !important;
}

.textInput {
  padding: 5px;
  border-radius: 7px;
  border: 1px solid gray;
}

.createBtn {
  padding: 5px;
  border-radius: 7px;
  border: 1px solid gray;
}

.btn-score {
  visibility: hidden;
}/*# sourceMappingURL=app.css.map */