@import '../../core/src/style/variables';

:host {
  text-align: left;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;

  .qty-wrapper {
    display: flex;
    max-width: 100px;
    width: 100px;
    input {
      height: 35px;
      text-align: center;
      border: 1px solid $middarkgrey;
      width: 100px;
      max-width: 100px;
    }
    &.no-selected{
      input{
        color: $middarkgrey;
        opacity: 0.6;

      }
      button{
        background: $middarkgrey;
        opacity: 0.6;
        pointer-events: none;
      }
    }
  }

  .ListItem-rowTotalCost{
    &.no-selected{
      color: $middarkgrey;
      opacity: 0.6;
    }
    &-priceForNotice {
      font-size: 12px;
      color: $blue;
      display: block;
    }
    &-price {
      font-size: 14px;
      font-weight: bold;
      margin-top: 5px;
    }
  }
  .add-more-sign {
    font-size: 0.8em;
    font-weight: $font-bold;
  }

  .add-button {
    margin: 0;
    font-size: 1.28em;
    min-width: 30px;
    width: 30px;
    padding: 0;
    min-height: 35px;
    height: 35px;

    &:hover {
      background-color: $button-hover-blue;
    }

    &.disabled {
      background-color: $grey;
    }
  }

  .bom-part-user-uploaded-quantity {
    position: absolute;
    bottom: 0;
    padding: 10px 0px 0px 0px;
    color: $darkgrey;
    display: block;
    label {
      font-size: 1.2rem;
      p {
        font-size: 1.4rem;
        margin: 0;
        font-weight: bold;
        overflow: hidden;
        max-height: 70px;
        line-height: normal;
      }
    }
  }
}
