/home/blackyak/www/wordpress/wp-content/themes/travivu/assets/sass/template/elements/_cart.scss
.gsc-cart-box{
   .mini-cart-header{
      position: relative;
      z-index: 1;
      top: 4px;
      .mini-cart{
        text-align: center;
        display: inline-block;
        position: relative;
        line-height: 1;
        font-size: 20px;
        .icon-cart{
         transition: all 0.35s;
          position: relative;
          top: 1px;
        }
        .mini-cart-items{
          position: absolute;
          font-size: 11px;
          background: $theme-color;
          color: $white;
          @include border-radius(50%);
          top: -5px;
          right: -9px;
          width: 16px;
          height: 16px;
          border-radius: 50%;
          line-height: 16px;
          text-align: center;
        }
        .mini-cart-items-title{
          display: none;
        }
        .amount{
          display: none;
        }
        &:hover{
          color: $theme-color-2;
        }
      }
      .total{
        color: $black;
      }
   }
}