.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}

.box {
  max-width: 160px;
  min-width: 75px;
  max-height: 160px;
  min-height: 75px;
  position: relative;
  border-radius: 15px;
  user-select: none;
}

.box-active {
  transition:  box-shadow 1s;
  user-select: none;
}
.box-inactive {
  /*transition:  transform .5s,  box-shadow 1s;*/
  user-select: none;
  pointer-events: none;
}


.moveable {
  position: relative;
  z-index: 99;
  overflow: visible !important;
  pointer-events: all;;
}

/* https://getcssscan.com/css-box-shadow-examples */
.box-active:hover {
  /* transform: scale(1.02) perspective(0px); */
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.boxsolid {
  border: thin solid grey;
}

.picbox {
  border: thin dashed grey;
  border-radius: 15px;
}

.redbox {
  border: medium solid red;
  border-radius: 15px;
}

.box:active {
  background: #e5e5e5;
  -webkit-box-shadow: inset 0px 0px 35px #c1c1c1;
  -moz-box-shadow: inset 0px 0px 35px #c1c1c1;
  box-shadow: inset 0px 0px 35px #c1c1c1;
  outline: none;
  user-select: none;
}

.raised {
  background: #e5e5e5;
  -webkit-box-shadow: inset 0px 0px 35px #c1c1c1;
  -moz-box-shadow: inset 0px 0px 35px #c1c1c1;
  box-shadow: inset 0px 0px 35px #c1c1c1;
  outline: none;
  user-select: none;
}

.outerdiv {
  display: flex;
  align-items: flex-end;
}

.innerdiv {
  width: 100%;
}

.ui-effects-transfer {
  border: 1px dotted black;
}

.finalSlide {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -50px;
  margin-left: -50px;
  width: 100px;
  height: 100px;
}
.moveOnArrow {
  background: url(/static/icons/arrowLeft.svg); 
  border: none;
  height:60px; 
  width:60px;
  background-repeat: no-repeat;
} 
.reset {
  background: url(/static/icons/reset.svg); 
  border: none;
  height:40px; 
  width:40px;
  background-repeat: no-repeat;
}