body::-webkit-scrollbar {
  width: 10px;
  background-color: none;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(72.47deg, #7367f0 22.16%, rgba(115, 103, 240, 0.7) 76.47%) !important;  
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px blue;
}
.good::-webkit-scrollbar {
  width: 3px;
  background-color: yellow;
}

.good::-webkit-scrollbar-thumb {
  background: red;
}
.good::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 3px blue; */
}

.inputDropContainer {
  max-height: calc(100vh - 350px);
  /* background-color: red; */
  overflow-y: auto;
  border: dashed 2px #d7d7d7;
}

.good {
  position: relative;
  /* border: 3px dashed white; */
  min-height: calc(100vh - 254px);
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.2);
  transition: ease-in 2s;
}
li {
  cursor: move;
}
.margin {
  margin-bottom: 150px;
}

.droppedInput {
  margin: 15px;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
  color: black !important;
  padding: 20px;
}

.labelChangeContainer {
  display: flex;
  flex-direction: column;
}

.btnContainer {
  float: right;
  display: flex;
  gap: 10px;
}

.btnContainer i {
  font-size: 25px;
}

.slide-out-top {
  -webkit-animation: slide-out-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53)
    both;
  animation: slide-out-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2023-6-13 11:31:12
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation slide-out-top
 * ----------------------------------------
 */
@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    opacity: 0;
  }
}

.file-up {
  padding: 4px;
  border-radius: 5px;
  border: 1px solid grey;
  margin-left: 10px;
  cursor: pointer;
}

.nd-file-format {
  font-size: 13px;
  color: rgb(114, 114, 114);
}
.sendMBtn {
  background-color: rgb(87, 19, 133);
  width: auto;
  margin-top: 10px;
  color: white;
  outline: none;
  border: none;
}
