.footer-inventory {
  margin-top: auto;
  padding: 8px 25px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;

  border-top: 1px solid #D4D4D4;
}

@media screen and (max-width: 450px) {
  .footer-inventory {
    flex-direction: column;
  }
}

.footer-inventory > .footer-inventory__inventory {
  width: 100%;

  position: relative;

  display: flex;
  align-items: center;
  gap: 4px;

  overflow-x: auto;
}

.footer-inventory > .footer-inventory__inventory::-webkit-scrollbar {
  display: none;
}

.footer-inventory .footer-inventory__inventory__item {
  min-width: 36px;
  height: 36px;

  overflow: hidden;

  border: 1px solid #D4D4D4;
  border-radius: 5px;

  background: #51C0FF;
}

.footer-inventory .footer-inventory__inventory__item > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.footer-inventory > .footer-inventory__inventory__more {
  width: 580px;

  padding: 10px;

  position: absolute;
  left: 15px;
  bottom: 53px;

  display: flex;
  flex-wrap: wrap;
  gap: 4px;

  opacity: 0;
  visibility: hidden;

  transition: .3s ease;

  border: 1px solid #D4D4D4;
  border-radius: 5px;

  background: #ffffff;
}

@media screen and (max-width: 600px) {
  .footer-inventory > .footer-inventory__inventory__more {
    width: calc(100% - 15px * 2);

    margin: 0 15px;

    left: 0;

    justify-content: center;
  }
}

@media screen and (max-width: 450px) {
  .footer-inventory > .footer-inventory__inventory__more {
    bottom: 62px;
  }
}

.footer-inventory > .footer-inventory__inventory:hover .footer-inventory__inventory__more {
  opacity: 1;
  visibility: visible;
}

.footer-inventory > .footer-inventory__inventory__actions {
  display: flex;
  gap: 6px;
}

@media screen and (max-width: 450px) {
  .footer-inventory > .footer-inventory__inventory__actions {
    width: 100%;
  }
}

.footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__bundle,
.footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__cancel {
  height: 35px;

  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;

  cursor: pointer;
  transition: .3s ease;

  border: 1px solid transparent;
  outline: none;
  border-radius: 5px;
}

@media screen and (max-width: 450px) {
  .footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__bundle,
  .footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__cancel {
    flex: 1;
  }
}

.footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__bundle:hover,
.footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__cancel:hover {
  opacity: .7;
}

.footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__bundle {
  color: #ffffff;
  background: #197FF8;
}

.footer-inventory > .footer-inventory__inventory__actions > .footer-inventory__inventory__actions__cancel {
  border: 1px solid #D4D4D4;

  background: #ffffff;
}

