.wrapper_order {
  animation-fill-mode: both;
  background-color: #fff;
  border-left: 1px solid var(--color-background-gray);
  border-top: none;
  border: 1px solid var(--color-background-gray);
  bottom: 0;
  box-shadow: var(--box-shadow-md);
  height: calc(100vh - 80px);
  left: 210px;
  overflow-y: auto;
  padding: 10px 10px 10px 0;
  position: fixed;
  right: 0;
  transition: all 350ms cubic-bezier(.32, 1.25, .32, 1);
  visibility: hidden;
  width: 40%;
  z-index: var(--z-index-99999);
  opacity: 0;
}


.slideIn {
  opacity: 1;
  visibility: visible;
  animation: slideInAnimation 0.5s ease-out;
}

.button_cancel {
  background-color: var(--color-base-transparent);
  border: none;
  color: var(--color-text-gray-light);
  font-family: PFont-Light;
  font-size: 1em;
  padding: 0;
  text-align: end;
  width: 100%;
}

.button_cancel button {
  background-color: var(--color-base-transparent);
  cursor: pointer;
}

@keyframes slideInAnimation {
  0% {
    transform: translate3d(-120%, 0, 0);
  }

  80% {
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}