@charset "utf-8";

/* Left Panel */
  .left-panel{
    position:fixed; 
    top:20px; 
    left:20px; 
    width:200px; 
    z-index:9999;
  }

/* PHP Mini Cart */

  /* Position / Size / Font */
  #mini-cart{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
  }

  /* Cart box */
  #mini-cart-box,
  #mini-cart-box-empty{
    border: 2px solid #7aa6d8;
    background: #e8ffff;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
  }

  /* Header bar */
  .mini-header{
    background: linear-gradient(
      to bottom,
      #7fb2f0 0%,
      #5e88c7 50%,
      #4a74b6 100%
    );
    color: #fff;
    font-weight: bold;
    padding: 4px 0;
  }

  /* Content lines */
  .mini-line{
    padding-top: 7px;
    font-weight: normal;
  }

  .mini-label{
    margin-right: 4px;
    font-weight:bold;
  }

  .mini-value{
    font-weight:normal;
  }

  .mini-currency{
    font-weight:bold;
    margin-right: 1px;
  }

  /* Links */
  .mini-links{
    padding: 8px 0 10px 0;
  }

  .mini-link{
    display: block;
    color: #4a74b6;
    text-decoration: none;
    padding: 2px 0;
    font-weight: normal;
  }

  .mini-link:hover{
    text-decoration: underline;
      }
  .mini-clear-link{
    font-size: 14px;
    color: #b00000;
    text-decoration: none;
    font-weight: normal;
  }

  .mini-clear-link:hover{
    text-decoration: underline;
    color: #FF0000;
  }

/* Privacy Policy */
  .privacy-policy {
      width:200px
  }

/* 10% Off Dot Sale */
  .ten-percent-off-sale {
	border: 5px dotted red; 
	background-color: rgba(255, 255, 255, 0.8); 
	text-align:center; 
	margin: 0 auto;
  }
	  
  .ten-percent-off-sale-font-image {
    color:red;
    text-align:center;
  }

  .ten-percent-off-sale-dot{
      height:30px;
  }

  .ten-percent-off-sale-text{
    margin-top:-15px
  }

  .dot-graphics{
      width:200px;
  }














