@media screen and (max-width: 640px) {
  .complect-item__header {
    height: auto;

    border-bottom: none;

    padding: 20px;

    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .complect-item__desc {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  .complect-item__content {
    padding-block: 20px;
  }

  .complect-item__arrow-prev,
  .complect-item__arrow-next {
    z-index: 2;
  }

  .complect-item__cell,
  .complect-item__item {
    width: calc(100vw - 160px);
    min-width: unset;
  }
}

@media screen and (max-width: 390px) {
  .complect-item__cell,
  .complect-item__item {
    width: calc(100vw - 120px);
    min-width: unset;
  }
}

.complect-item__arrow-next:before,
.complect-item__arrow-prev:before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: -32px;
  right: -32px;
}
