/* .product-lines {
  display: flex;
  margin: 20px 0;
  justify-content: center;
  padding: 0; 
  @media only screen and (max-width: 768px) {
  flex-direction: column;
  } 
  &__title {
    text-transform: capitalize;
    color: #0d4371;
    font-size: 26px;
    margin: 30px 0 30px 0;
    font-weight: bold;
  } 

  &__product {
    cursor: pointer;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 30px;
    @media only screen and (max-width: 768px) {
      display: flex;
      padding: 10px 10px;
      margin: 0;
      flex-direction: row;
      padding: 6px;
    } 
    img {
      @media only screen and (max-width: 768px) {
      width: 30px;
      height: 30px;
      }
    } 
    &--selected {
      box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
      @media only screen and (max-width: 768px) {
        border-bottom: 1px #ccdbe8 solid;
      }
    }

    &--more-info {
      font-size: 13px;
      margin-top: 5px;
      &-text{
      @media only screen and (max-width: 768px) {
      display: none;
      }
      }
    }

    &--text {
      font-weight: bold;
      margin-top: 10px;
      text-transform: capitalize;
      color: #606060;
      @media only screen and (max-width: 768px) {margin-left: 10px;}
      font-size: 16px;
    } 
  }

  &__info {
    display: flex;
    text-align: center;
    justify-content: center;

    &--section {
      flex-direction: column;
      margin: 0 60px;
      display: flex;
      justify-content: center;
      @media only screen and (max-width: 768px) {
        margin: 0;
        img {
          display: none;
        }
      }
    }

    &--title {

      text-transform: capitalize;
      color: #0d4371;
      font-size: 26px;
      margin: 30px 0 30px 0;
      font-weight: bold;
    }

    &--subtitle {
      text-transform: capitalize;
      color: #606060;
      font-size: 20px;
      font-weight: bold;
    }

    &--line {
      height: 3px;
      background-color: #0d4371;
      width: 150px;
    }

    &--text {
      width: 300px;
      color: #606060;
      font-size: 16px;
      font-weight: bold;
    }

    &--button {
      background: #0d4371;
      padding: 5px 10px;
      border-radius: 4px;
      border: none;
      width: 40%;
      align-self: center;
      a {
        color: white;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: bold;
        font-size: 11px;
      }
    }
  } 
}  */
