.price-input_field {
  flex: 0 0 40%;
  max-width: 40%;
}

.collection-grid__item {
  transition: all 0.3s ease-in-out;
}

.collection-grid__item.removing {
  opacity: 0;
  transform: scale(0);
}

.collection-grid__item.item-enter {
  opacity: 0;
  transform: scale(0);
  animation: itemEnter 0.3s forwards;
}

@keyframes itemEnter {
  from {
    opacity: 0;
    transform: scale(0);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
