@use '../abstract/_all';

.box3 {
  /* no se usa */
  position: relative;
  width: 100%;
  min-height: 58px;
  box-sizing: border-box;
  display: flex;

  .box3-middle {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
  }

  .box3-price {
    display: flex;
    flex-direction: column;
    min-width: 60px;

    img {
      max-width: 60px;
    }
  }

  .box3-right {
    display: flex;
    flex-direction: column;
    min-width: 60px;
  }

  .box3-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-content: flex-start;
    word-break: break-word;
  }

  .box3-img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
  }

  .box3-top {
    padding-top: 2px;
    padding-left: 16px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    align-content: flex-end;
    justify-content: flex-start;
  }

  &:hover {
    cursor: pointer;
  }
}
