#workshopRoomHolder {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height:100vh;
    width: 100%;
    overflow: hidden;
}

#workshopHeaderDiv {
    position: relative;
    display: flex;
    height: 7%;
    width: 100%;
    background:none;
    z-index: 3;
}

#workshopHeaderContentHolder {
    position: absolute;
    display: flex;
    flex-direction: row;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

/* fits in workshopHeaderDiv */
#workshopHeaderOptionsHolder {
    position: absolute;
    display: flex;
    flex-direction: row;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    z-index: 2;
}

.workshopTitle {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 7%;
    font-size: 1.5rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.workshopMainButtons {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: auto;
    cursor: pointer;
    user-select: none;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 101;
}
/* Dragging/Resizing feedback */
.workshopMainButtons.dragging,
.workshopMainButtons.resizing {
    box-shadow: 1px 1px 10px 1px rgba(229, 253, 70, 0.25) !important;
    border: 1px dashed #ede858 !important;
    cursor: move;
}

.workshopItemsResizeHandle {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: rgb(255 255 255 / 0%);
    cursor: se-resize;
    transform: rotateZ(45deg);
}

.exitRoom {
    padding: 15px;
    background-color: rgb(4, 148, 4);
    color: #ffffff;
    letter-spacing: 2px;
    border-radius: 7px;
    box-shadow: 1px 1px 70px 1px rgb(8 9 10 / 45%);
}
.exitRoom:hover {
    background-color: rgb(9, 181, 9);
}

.workshopMainButtonStyle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    min-height: 20px;
    font-size: 0.8rem;
    border-radius: 5px;
    background: none; /* or similar */
    background-image: linear-gradient(to right bottom, #8e8fff, #5760e1, #3a45bd);
    box-shadow: 10px 1px 50px 1px rgb(24 24 33 /20%);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    color: #ffffff;
    transition: all 0.2s ease-in-out;
    letter-spacing: 1px;
}
.workshopMainButtonStyle:hover {
  scale: 1.05;
  letter-spacing: 2px;
}

#workshopCustomizationDiv {
  position: absolute;
  top: 90px;
  /* - 200 is half of this div but room list div takes 40px so half of that is 20
  so - 180px 
  */
  left: calc(50% - 180px);
  height: auto;
  width: 400px;
  z-index: 103;
  border-radius: 10px;
  visibility: hidden;
}

.WScustomizeDeleteCurrentBCKbutton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.deleteRoomButton {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin-left: 20%;
    width: 60%;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.constructionButtonIcon {
    position: relative;
    display: block;
    font-size: 1.2rem;
    color: #28d366;
}

.leftStrobe {
    position: absolute;
    top: -20px;
    left: 0px;
    width: 50%;
    height: 101%;
    z-index: -1;
}

.rightStrobe {
    position: absolute;
    top: -20px;
    right: 5px;
    width: 50%;
    height: 101%;
    z-index: -1;
}

.strobeBlinks {
    animation: strobeLightsBlink 2s infinite;
}
@keyframes strobeLightsBlink {
  0% {
    box-shadow: none;
  }
  5% {
     box-shadow: 0px 0px 40px 10px rgb(249, 255, 129);
  }
  7% {
    box-shadow: none;
  }
  9% {
     box-shadow: 0px 0px 40px 10px rgb(249, 255, 129);
  }
  11% {
    box-shadow: none;
  }
  13% {
     box-shadow: 0px 0px 40px 10px rgb(249, 255, 129);
  }
  15% {
     box-shadow: inherit;
  }
  100% {
     box-shadow: inherit;
  }
}

.editingObjectMark {
    border-width: 1px;
    animation: colorfullBorderChange 5s infinite;
    cursor: move;
    z-index: 99;
}
@keyframes colorfullBorderChange {
  0% {
     background-color: inherit;
  }
  2% {
     background-color: #f4fb62;
  }
  12% {
     background-color: inherit;
  }
  13% {
     background-color: inherit;
  }
  100% {
     background-color: inherit;
  }
}

.createNewWorkshopRoomHolder {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 4%;
    left: 25%;
    height: 90%;
    width: 50%;
    padding-bottom: 20px;
    border-radius: 10px;
    transition: all 0.5s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    visibility: hidden;
    border-style: solid;
    border-width: 1px;
    z-index: 102;
}

.newWorkshopRoomNameInput {
    position: relative;
    display: block;
    width: 94%;
    height: auto;
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    transition: all 0.2s ease-in-out;
}
.newWorkshopRoomNameInput:focus {
    font-size: 1.2rem;
}

.workshopRoomTypeSelectionCardHolder {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 2%;
    height: auto;
    width: 100%;
}

.roomTypeSelectionCard {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 30%;
    border-radius: 10px;
    padding-bottom: 15px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.roomTypeSelectionCard:hover {
    animation: changingColorsGlow 1s infinite;
    cursor: pointer;
}

.roomTypeSelectedCard {
    animation: changingMultiColorsGlow 1s infinite !important;
}

.roomSelectionCardIconHolder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    width: 80px;
    opacity: 0.8;
}

.roomTypeSelectionDescription {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 5%;
    height: auto;
    margin-left: 5%;
    width: 90%;
    font-size: 0.8rem;
    white-space: break-spaces;
}

.newRoomCurrencyInput {
    position: relative;
    display: flex;
    height: 40px;
    width: 80%;
    padding-left: 10px;
    font-family: 'Exo', sans-serif;
    font-size: 0.8rem;
    outline: none !important;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-radius: 5px;
}

.saveWorkshopButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  height: 40px;
  width: 150px;
  font-size: 0.8rem;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.saveWorkshopButton:hover {
  letter-spacing: 1px;
}

#workshopSettingsButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: rgb(255 255 255 / 20%);
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    box-shadow: 1px 1px 20px 1px rgb(41 92 132 / 25%);
}
#workshopSettingsButton:hover {
    background-color: rgb(0 128 255);
    transform: rotateZ(360deg);
}

/* ROOMS */
#workshopRoomsHolder {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    perspective: 1500px;
    transform-style: preserve-3d;
    background-color: rgb(0 0 0 / 10%);
}

/* entire room */
.singleWorkshopRoomHolder {
    display: flex;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease-in-out !important;
    perspective: 1000px;
    transform-style: preserve-3d;
    /* defaults */
    scale: 0.5;
    opacity: 0.2;
    z-index: -1;
    visibility: hidden;
}

.roomFocused {
  visibility: visible !important;
  scale: 1 !important;
  opacity: 1 !important;
  z-index: 1 !important;
}

.roomHideStepBack {
    scale: 0.5;
    opacity: 0.2;
    z-index: -1;
    visibility: hidden;
}

.roomHideStepIn {
  scale: 1.2;
  opacity: 0.5;
  z-index: -1;
  visibility: hidden;
}



.workshopCustomImageHolder {
    position: absolute;
    display: flex;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all 0.7s ease-in-out;
}
/* image element */
.workshopBackgroundImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* to separate from background image holder */
.singleWorkshopRoomBody {
    position: absolute;
    display: block;
    top: 0px;
    left: 0px;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

.singleWorkshopRoomContentHolder {
    position: absolute;
    display: block;
    transform-style: preserve-3d;
    perspective: 1000px; /* Enable 3D depth */
    top: 7%;
    left: 0;
    width: 100%;
    height: 93%;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.roomContentHideForward {
    transform: scaleX(1.5);
    opacity: 0;
    animation: roomContentOutForward 0.5s forwards;
}

@keyframes roomContentOutForward {
  0% {
    margin-top: 10px;
  }
  20% {
     margin-top: -10px;
  }
  40% {
    margin-top: 20px;
  }
  60% {
     margin-top: -20px;
  }
  80% {
    margin-top: 10px;
  }
  100% {
    margin-top: 0px;
  }
}

.roomContentHideBackward {
    transform: scaleX(0.2);
    opacity: 0;
    animation: roomContentOutForward 0.5s forwards;
}


#workshopRoomSectionsHolder {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: end;
    top: 7%;
    right: 0px;
    height: 93%;
    width: 0px;
    border: none;
    background: none;
    transition: all 0.3s ease-in-out;
    overflow: visible;
    z-index: 999;
}
#workshopRoomSectionsHolder:hover {
    width: 10%;
}
/* when parent is hovered, affect all children */
#workshopRoomSectionsHolder:hover .thisRoomIdentifier {
    opacity: 1;
}

.thisRoomIdentifier {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    height: 100%;
    margin-bottom: 3px;
    padding-top: 15px;
    padding-left: 5px;
    padding-right: 5px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: all 0.2s ease-in-out;
    font-size: 0.8rem;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.2;
    border-style: solid;
    border-width: 1px;
}
.thisRoomIdentifier.dragging {
    opacity: 0.5;
}

.scrollerRoomFocused {
    width: 120%;
    opacity: 0.9;
    z-index: 2;
}


.createNewWorkshopItemHolder {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 10%;
    left: 20%;
    height: auto;
    width: 60%;
    border-radius: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    visibility: hidden;
    border-style: solid;
    border-width: 1px;
    z-index: 102;
}

.newWorkshopItemTypeSelectionHolder {
    position: relative;
    display: grid;
    margin-left: 2%;
    width: 95%;
    height: 97%;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 15px;
    row-gap: 25px;
    transition: all 0.5s ease-in-out;
}
.shrinkedNewWorkshopItemTypeSelectionHolder {
    width: 10% !important;
    grid-template-columns: 1fr !important;
    row-gap: 10px !important;
}

.workshopFormSelectionCard {
    position: relative;
    display: flex;
    flex-direction: column;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
    overflow: hidden;
}

.workshopSelectionTitle {
    position: relative;
    display: flex;
    margin-top: 5%;
    margin-left: 5%;
    width: 90%;
    height: auto;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    overflow: hidden;
}

.widgetIconHolder {
    position: relative;
    display: block;
    margin-top: 5%;
    margin-bottom: 5%;
    height: 70px;
    width: 70px;
    opacity: 0.7;
}


.contentForWorkshopItemTypeSelected {
    position: relative;
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 0%;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
.contentForWorkshopItemTypeExpand {
    width: 90% !important;
    opacity: 1  !important;
}

.newWorkshopItemInput {
    position: relative;
    display: block;
    width: 85%;
    height: auto;
    font-family: 'Exo', sans-serif;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: none;
    outline: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    transition: all 0.2s ease-in-out;
}

.boxSetReflectionButtons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 120px;
    font-size: 0.8rem;
    border-radius: 20px;
    cursor: pointer;
}

.workshopSaveButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 120px;
    font-size: 0.8rem;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.workshopDeleteBoxButton {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 140px;
    font-size: 0.8rem;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
    cursor: pointer;
}

.workshopBoxObject {
    position: absolute;
    display: flex;
    flex-direction: column;
    top: 450px;
    left: 450px;
    height: 180px;
    width: 140px;
    border-top-left-radius: 7px;
    border-top-right-radius: 25px;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 7px;
    color: #ffffff;
    background-image: linear-gradient(to right bottom, rgb(148 78 231 / 41%), rgb(60 75 161 / 67%), rgb(1 88 137 / 74%));
    -webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.5));
    box-shadow: 1px 1px 20px 1px rgb(24 24 33 /20%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    overflow: hidden;
}
.workshopBoxObject:hover {
    box-shadow: 1px 1px 20px 1px rgb(255 255 255 /70%) !important;
}

.workshopBoxObject,
.workshopBoxObject * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.bringBoxInAnimation {
    animation: bringInBox 0.5s forwards;
}
@keyframes bringInBox {
  0% {
    opacity: 0;
    margin-top: 10px;
  }
  20% {
    box-shadow: 1px 1px 20px 1px rgba(235, 239, 210, 0.7);
    margin-top: -10px;
  }
  40% {
    opacity: 1;
    margin-top: 20px;
  }
  60% {
     margin-top: -20px;
  }
  80% {
    margin-top: 10px;
  }
  95% {
    margin-top: 0px;
  }
  100% {
    box-shadow: none;
    margin-top: 0px;
  }
}

.workshopBoxTitle {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-left: 5%;
    width: 90%;
    height: 20%;
    font-size: 1.5em;
    white-space: break-spaces;
}

.workshopBoxImageHolder {
  position: relative;
    margin-top: 5%;
    width: 100%;
    height: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.workshopBoxImage {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    overflow: hidden;
}
.workshopBoxImage img {
  pointer-events: none; /* prevent moving image */
}

.workshopBoxInfo {
    position: relative;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 1.3em;
    text-align: center;
}

.workshopOpenBoxDiv {
    position: absolute;
    height: 0%;
    width: 0%;
    z-index: 101; /* to be on the top of the main closed boxes */
    border-radius: 10px;
    overflow: hidden;
    animation: openBoxAnim 0.5s forwards;
    resize: both;
    user-select: none;
}
@keyframes openBoxAnim {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.7;
    scale: 1.05;
  }
  80% {
    opacity: 0.5;
    scale: 1;
  }
  100% {
    opacity: 1;
    scale: 1;
  }
}

.alreadyFocusedAnimation {
  animation: alreadyFocused 0.2s forwards;
}
@keyframes alreadyFocused {
  0% {
    opacity: 1;
  }
    100% {
      opacity: 0.7;
  }
}

.openBoxHeader {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 50px;
    width: 100%;
    cursor: move;
}

.boxIconHolderInHeader {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90%;
    width: 70px;
}

.openBoxTitle {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 10px;
    height: 100%;
    width: auto;
    font-size: 0.9rem;
    white-space: nowrap;
}

.closeBoxHolder {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 100%;
    width: 50px;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
}
.closeBoxHolder:hover {
  transform: rotateZ(180deg);
}

.workshopObjectContentBody {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: calc(100% - 50px);
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    transform-style: preserve-3d;
    perspective: 1000px; /* Enable 3D depth */
}

.openBoxBCKholder {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0%;
  height: 25%;
  width: 100%;
  transition: all 0.5s ease-in-out;
}

.openBoxICONBCKholder {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20%;
  left: 25%;
  height: 50%;
  width: 50%;
  transition: all 0.3s ease-in-out;
  opacity: 0.1;
  animation: dropDownTo50PERCKeys 1s forwards ease-in-out;
}
@keyframes dropDownTo50PERCKeys {
  0% {
    top: -50%;
    transform: rotateY(-180deg);
    opacity: 0;
  }
  100% {
    top: 20%;
    transform: rotateY(0deg);
    opacity: 0.1;
    -webkit-box-reflect: below 20% linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  }
}

.boxBCKiconToBack {
  animation: pushIMGToBackgroundKeys 0.9s forwards ease-in-out;
}
@keyframes pushIMGToBackgroundKeys {
  0% {
    top: 20%;
    -webkit-box-reflect: below 20% linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  }
  100% {
    top: 30%;
    scale: 0.4;
  }
}

.bringBoxBCKiconToSteady {
  animation: bringIMGToSteadyKeys 1s forwards ease-in-out;
}
@keyframes bringIMGToSteadyKeys {
  0% {
    top: 30%;
    scale: 0.4;
  }
  100% {
    top: 20%;
    scale: 1;
    -webkit-box-reflect: below 20% linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5));
  }
}

.workshopBoxItemsHolder {
  position: absolute;
  display: block;
  background: rgb(255 255 255 / 1%);
  top: 70px;
  width: 99%;
  min-height: 200px;
  height: calc(100% - 70px);
  background: none;
  overflow-y: auto;
  transition: all 0.3s ease-in-out;
}

.boxTypeSelectionCard {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    width: 45%;
    padding-top: 20px;
    padding-bottom: 100px;
    border-radius: 10px;
    border-style: solid;
    border-width: 1px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}
.boxTypeSelectionCard:hover {
    animation: changingColorsGlow 1s infinite;
    cursor: pointer;
}

.boxTypeIconHolder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  height: 30px;
  width: 30px;
  opacity: 0.8;
}

.swirlInAnimation {
  animation: screwInKeyframes 0.7s forwards ease-in-out;
}

.fromLetterSpacing5Anim {
  animation: fromLetterSpacing5px 0.7s forwards ease-in-out;
}

.openCloseNewBoxItemFormButton {
  position: relative;
  display: flex;
  margin-left: 20px;
  font-size: 2.5rem;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  user-select: none;
}
.openCloseNewBoxItemFormButton:hover {
   transform: rotateZ(90deg) !important;
}

.boxNewItemContainer {
  position: absolute;
  display: flex;
  flex-direction: column;
  top: 50px;
  height: 0%;
  width: 70%;
  margin-left: 15%;
  transition: all 0.5s ease-in-out;
  z-index: 2;
}

.showNewItemForm {
  animation: openNewBoxItemForm 0.5s forwards ease-in-out;
}

@keyframes openNewBoxItemForm {
  0% {
    height: 0%;
    top: 0px;
  }
  100% {
    height: 80%;
    top: 50px;
  }
}

.newBoxItemFormRow {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 3%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.showFormFieldAnimation {
  animation: showFormFieldKeys 0.3s forwards ease-in-out;
}
@keyframes showFormFieldKeys {
  0% {
    opacity: 0;
  }
  50% {
    height: auto;
    margin-top: -5px;
  }
  100% {
    opacity: 1;
    margin-top: 0px;
  }
}

.hideFormFieldAnimation {
  animation: hideFormFieldKeys 0.5s forwards ease-in-out;
}
@keyframes hideFormFieldKeys {
  0% {
    opacity: 1;
    margin-top: 0px;
  }
  50% {
    height: auto;
    margin-top: -5px;
  }
  100% {
    height: 0px;
    opacity: 0;
    margin-top: -10px;
  }
}

.savedItemFormFieldAnimation {
  animation: savedFormFieldKeys 0.3s forwards ease-in-out;
}
@keyframes savedFormFieldKeys {
  0% {
    opacity: 1;
    scale: 1;
    margin-top: 0px;
  }
  50% {
    opacity: 0.5;
    scale: 0.9;
    margin-top: 0px;
  }
  100% {
    opacity: 1;
    scale: 1;
    margin-top: 0px;
  }
}

.newBoxItemInputFields {
  position: relative;
  display: flex;
  background: none;
  width: 90%;
  padding: 10px;
  font-family: 'Exo', sans-serif;
  font-size: 0.9rem;
  border-radius: 5px;
  border: none;
  outline: none;
}

.newBoxItemText {
  position: relative;
  display: flex;
  font-family: 'Exo', sans-serif;
  font-size: 0.9rem;
}

.boxItemImagePreviewHolder {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 100px;
  width: 150px;
  border-radius: 5px;
  overflow: hidden;
}

.itemStateSelectionButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 70px;
  margin-right: 10px;
  font-size: 0.8rem;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  font-weight: normal;
  cursor: pointer;
}
.solidDark .itemStateSelectionSelectedButton {
  font-weight: bold;  
  cursor: default !important;
}

.saveNewBoxItemButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 70px;
  font-size: 0.8rem;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
}
.saveNewBoxItemButton:hover {
  letter-spacing: 1px;
}

.boxProjectSelectorDiv {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 3;
}

.openBoxAssignmentAnim {
  animation: openBoxAssignmentKeys 0.3s forwards ease-in-out;
}
@keyframes openBoxAssignmentKeys {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.assignBoxToProjectTitle {
  position: absolute;
  display: flex;
  top: 25px;
  left: 0px;
  height: auto;
  width: 100%;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  animation: blurTextAndBackKeys 0.4s forwards ease-in-out;
}

.assignBoxToProjectCloseRow {
  position: absolute;
  display: flex;
  top: 20px;
  left: 0px;
  height: auto;
  width: 100%;
  justify-content: end;
  z-index: 2;
}

.closeBoxAssignFormButton {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 0.8rem;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  user-select: none;
}
.closeBoxAssignFormButton:hover {
  letter-spacing: 1px;
}

.boxToProjectinfoDiv {
  position: relative;
  display: block;
  margin-top: 80px;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 0.8rem;
  animation: showTextFromBlurNletterSpacing 0.5s forwards ease-in-out;
}
@keyframes showTextFromBlurNletterSpacing {
  0% {
    letter-spacing: 10px;
    filter: blur(3px);
    opacity: 0;
  }
  100% {
    letter-spacing: 0px;
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes showTextFromBlur {
  0% {
    filter: blur(3px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

.boxProjectSelectorProjectsHolder {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-left: 2%;
  height: auto;
  width: 96%;
  transition: all 0.3s ease-in-out;
  animation: fade-in 0.3s forwards ease-in-out;
}

.projectRelationTitle {
  position: relative;
  display: flex;
  padding-top: 10px;
  padding-bottom: 10px;
  height: auto;
  padding-left: 2%;
  width: 98%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.boxAssigmentProjectsListHolder {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 15px;
  min-height: 50px;
  width: 100%;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.singleProjectCardOnBoxAssigment {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 50px;
  border-radius: 10px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.projectForBoxSelName {
  position: relative;
  display: block;
  margin-top: 10px;
  height: auto;
  margin-left: 5%;
  width: 90%;
  font-size: 0.8rem;
  user-select: none;
}

.projectForBoxSelImageHolder {
  position: relative;
  display: flex;
  margin-top: 10px;
  margin-left: 10px;
  margin-bottom: 10px;
  width: 100%;
  height: 70px;
}

.blinkingAnim {
  animation: blinkingAnimation 1s infinite;
}

.warehouseInfoContainer {
  position: absolute;
  display: flex;
  flex-direction: row;
  top: 10%; /* initialy*/
  left: 2%;
  height: 70%; /* initialy*/
  width: 92%;
  padding-top: 4%;
  padding-left: 1%;
  padding-right: 1%;
  padding-bottom: 20px;
  border-radius: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.9rem;
  animation: warehouseInfoAppear 0.4s forwards ease-in-out;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  z-index: 102;
}
@keyframes warehouseInfoAppear {
  0% {
    top: 10%;
    height: 70%;
    opacity: 0;
    filter: blur(15px);
    -webkit-filter: blur(15px);
  }
  50% {
    top: 10%;
    height: 70%;
    opacity: 1;
  }
  100% {
    top: 7%;
    height: 80%;
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

.closeInventoryInfoAnim {
  animation: warehouseInfoDissappear 0.2s forwards ease-in-out;
}
@keyframes warehouseInfoDissappear {
  0% {
    scale: 1;
    opacity: 1;
  }
  100% {
    opacity: 0;
    scale: 0.9;
  }
}

.openCloseButton {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  right: 10px;
  height: 35px;
  width: 35px;
  font-size: 1rem;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  background-color: rgb(255 255 255 / 5%);
  color: #ffffff;
  user-select: none;
  z-index: 3;
}
.openCloseButton:hover {
   transform: rotateZ(180deg) !important;
}

.warehouseInfoToolsPart {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  width: 49%;
  border-radius: 5px;
  padding: 10px;
  /*background-color: rgb(0 0 0 / 5%);*/
}

.toolboxItemboxIcon {
  position: relative;
  display: block;
  height: 40px;
  width: 40px;
  object-fit: cover;     /* scales and crops like background-size: cover */
  object-position: center; /* center the crop */
}
.toolsItemsIcon {
  position: relative;
  display: block;
  height: 25px;
  width: 25px;
  object-fit: cover;     /* scales and crops like background-size: cover */
  object-position: center; /* center the crop */
}

.warehouseInfoPieChart {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgb(0 0 0 / 20%);
  transition: all 0.3s ease-in-out;
}

.warehouseTIchartLegendText {
  position: relative;
  display: flex;
  height: auto;
  letter-spacing: 2px;
  font-size: 0.8rem;
  transition: all 0.2s ease-in-out;
  animation: showTextFromBlur 0.2s forwards ease-in-out;
}

.filterBlur5Scale09opacity05 {
  filter: blur(5px);
  -webkit-filter: blur(5px);
  scale: 0.9;
  opacity: 0.5;
}

.echoTotalWarehouseValue {
  position: absolute;
  display: flex;
  top: 20px;
  left: 0px;
  height: auto;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}