.wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  width: 100%;
  padding: 24px 0;
  border-bottom: 1px solid var(--grey);
  @media (max-width: 576px) {
    flex-direction: column;
    row-gap: 20px;
    padding: 16px;
    margin-bottom: 10px;
    border: 1px solid var(--grey);
    border-radius: 10px;
  }
  .flex {
    flex: 0 0 60%;
    display: flex;
    align-items: center;
    column-gap: 8px;
    @media (max-width: 576px) {
      width: 100%;
      column-gap: 5px;
    }
    .badge {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 10px;
      background-color: var(--primary-bg);
      svg {
        width: 20px;
        height: 20px;
        fill: var(--black);
      }
      &.active {
        background-color: var(--primary);
        svg {
          fill: #232b2f;
        }
      }
      @media (max-width: 576px) {
        width: 36px;
        height: 36px;
      }
    }
    .naming {
      margin-left: 8px;
      @media (max-width: 576px) {
        margin-left: 5px;
      }
      .title {
        margin: 0;
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 21px;
        color: var(--dark-blue);
        @media (max-width: 576px) {
          font-size: 16px;
          line-height: 19px;
          margin-bottom: 2px;
        }
      }
      .text {
        margin: 0;
        font-size: 14px;
        line-height: 17px;
        letter-spacing: -0.02em;
        color: var(--black);
        max-height: 34px;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }
  }
  .actions {
    display: flex;
    align-items: center;
    flex: 0 0 20%;
    @media (max-width: 576px) {
      justify-content: space-between;
      width: 100%;
    }
    .orderInfo {
      flex: 1 0 70%;
      .price {
        margin: 0;
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 21px;
        font-weight: 600;
        color: var(--dark-blue);
        @media (max-width: 576px) {
          font-size: 16px;
          line-height: 19px;
          margin-bottom: 2px;
        }
      }
      .text {
        margin: 0;
        font-size: 14px;
        line-height: 17px;
        letter-spacing: -0.02em;
        color: var(--black);
      }
    }
    .arrowBtn {
      @media (max-width: 576px) {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--primary-bg);
      }
      svg {
        width: 20px;
        height: 20px;
        fill: var(--black);
      }
    }
  }
}
