
.lighter-text {
    color: #ABB0BE;
  }
  
  .main-color-text {
    color: $main-color;
  }
  
  .container {
    margin: auto;
    width: 80%;
    padding:0;
  }
  
  .badge {
      background-color: #6394F8;
      border-radius: 10px;
      color: white;
      display: inline-block;
      font-size: 12px;
      line-height: 1;
      padding: 3px 7px;
      text-align: center;
      vertical-align: middle;
      white-space: nowrap;
  }
  
  .shopping-cart {
    margin: 20px 0;
    float: right;
    background: white;
    width: 320px;
    position: absolute;
    border-radius: 3px;
    padding: 20px;
    
    
    .shopping-cart-header {
      border-bottom: 1px solid #E8E8E8;
      padding-bottom: 15px;
      
      .shopping-cart-total {
        float: right;
      }
    }
    
    .shopping-cart-items {
      
      padding-top: 20px;
  
        li {
          margin-bottom: 18px!important;
          display:auto!important;
        }
  
      img {
        float: left;
        margin-right: 12px;
      }
      
      .item-name {
        display: block;
        padding-top: 10px;
        font-size: 16px;
      }
      
      .item-price {
        color: $main-color;
        margin-right: 8px;
      }
      
      .item-quantity {
        color: $light-text;
      }
    }
     
  }
  
  .shopping-cart:after {
      bottom: 100%;
      left: 89%;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute;
      pointer-events: none;
      border-bottom-color: white;
      border-width: 8px;
      margin-left: -8px;
  }
  
  
  .button {
    background: $main-color;
    color:white;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    display: block;
    border-radius: 3px;
    font-size: 16px;
    margin: 25px 0 15px 0;
    
    &:hover {
      background: lighten($main-color, 3%);
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }