.kindofbody {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.kindofbody .wr {
  margin: 30px;
  padding: 30px;
  background: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.kindofbody .wr-cell {
  display: flex;
  margin-bottom: 30px;
  width: 100% !important;
}

/* Animation */
@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}
.kindofbody .animated-background {
  animation-duration: 1.25s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #F6F6F6;
  background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
  background-size: 800px 104px;
  height: 96px;
  position: relative;
}

/* Page Elements */
.kindofbody .image {
  height: 60px;
  width: 60px;
  /*  background: #F6F6F6; */
  /* @extend .animated-background; */
}

.kindofbody .text {
  margin-left: 20px;
  width: 100% !important;
}

.kindofbody .text-line {
  /*  background: #F6F6F6; */
  margin: 4px 0;
  /* @extend .animated-background; */
}

.kindofbody .text-line:nth-child(1), .kindofbody .text-line:nth-child(3) {
  height: 10px;
  width: 230px;
}

.kindofbody .text-line:nth-child(2), .kindofbody .text-line:nth-child(4) {
  height: 10px;
  width: 100%;
}

.reveal {
  animation: reveal 1s both;
}

@keyframes reveal {
  0% {
    transform: translateY(20%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
form div {
  position: relative !important;
}

.display-list {
  width: 100%;
  left: 0;
  background-color: rgb(245, 245, 245);
  position: absolute;
  z-index: 100 !important;
}

.list-table {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.list-table td {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.list-table td .set-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}

.card-image-x {
  width: 50px !important;
  height: 50px !important;
  display: block;
  background-color: black;
}

.selected-card {
  background-color: rgb(225, 225, 225);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
}

.comesdown {
  animation: getdown 1s ease-in-out both;
  transition: 3s;
}

@keyframes getdown {
  0% {
    margin-bottom: 0;
  }
  100% {
    margin-bottom: -50px;
    opacity: 0;
  }
}/*# sourceMappingURL=design.css.map */