

/* -------------------------------------------------------------------------- */
/* BASKET STEP 1 - BASKET TABLE
/* -------------------------------------------------------------------------- */

        #basket-items-box
        {
          margin: 40px 0px;
        }


      /* table */
        #product-basket-table
        {
          border-collapse: collapse;
          width: 880px;
        }

      /* table header */
        #product-basket-table th
        {
          border-bottom: 1px solid #D1232A;
          border-collapse: collapse;
          text-align: left;
          font-weight: 200;
          padding:  5px 5px;
        }


        /* #product-basket-table th:first-child { padding-left: 0px; } */
        /* #product-basket-table th:last-child  { padding-right: 0px; } */


      /* table TD cell */
        #product-basket-table td
        {
          border-collapse: collapse;
          font-weight: normal;
          padding:  10px 5px 10px 5px;
          vertical-align: middle;

          border-bottom: 1px solid #FFEFF0;
        }

         #product-basket-table tr:hover td
         {
            background: #F8F8F8;
         }

         /* #product-basket-table td:last-child  { padding-right: 0px; } */

      /* img */

        #product-basket-table td.td-image
        {
          padding-left: 10px;
          padding-right: 10px;
          width: 100px;
        }

        .td-image .img-box
        {
          padding:  5px 10px;
          background: #FFFFFF;
        }

        .td-image img
        {
          float: left;
        }

    /* prices */
      #basket-frame .price-current
      {
        margin-top: 10px;
        font-size: 1.5em;
        font-weight: 200;
        color: #D1232A;
      }

      #basket-frame .price-common
      {
         font-weight: 200;
         font-size: 100%;
      }

      #basket-frame .price-discount
      {
          margin-top: 10px;
          color: #D1232A;
          font-weight: 200;
      }

    /* PCS BUTTONS */
      .change-pcs-button
      {
        cursor: pointer;
        float: left;
      }

      .basket-pcs
      {
        padding:  0px 10px;
        border:  1px solid #CE9D9F;
        background: #FFFFFF;
        width: 50px;
        height: 38px;
        line-height: 38px;
        text-align: center;
        color: #666666;
        font-weight: normal;
        float: left;
      }

    /* news */
      #basket-frame .new-product
      {
        padding-top: 1.1em;
        font-weight: 200;
        font-size: 100%;
        line-height: 115%;
        color: #0082C9;
      }


      /* table cells - TH */
        #product-basket-table th.th-num
        {

        }

        #product-basket-table th.th-price
        {
          text-align: right;
          padding-right: 15px;
        }

        #product-basket-table th.th-pcs
        {
          text-align: center;
        }

        #product-basket-table .td-price
        {
          text-align: right;
          white-space: nowrap;
          padding-right: 15px;
        }

      /* table cells - TD */
        .td-pcs
        {
          width: 122px;
          text-align: center;
        }

        .td-cart
        {
          text-align: right;
          width: 35px;
        }

        .td-cart input
        {
          position: relative;
          top: 2px;
        }

        .td-delete
        {
          text-align: right;
          width: 30px;
        }

        .td-delete img
        {
          position: relative;
          top: 2px;
        }


  /* price total */

    #product-basket-table .tr-price-total td
    {
      /*border-top: 2px solid #CE9D9F;*/
      border-bottom: 0px;
      background: #D1232A;
      color: #FFFFFF;
      padding-top:    15px;
      padding-bottom:  15px;

    }

    #product-basket-table .tr-price-total:hover td
    {
      background: #D1232A;
    }


    #product-basket-table td.td-price-total
    {
     font-size: 180%;
    }

    #product-basket-table td.td-price-total-caption
    {
      text-align: right;
    }


