a.proceed-to-checkout {
    background-color: #343740;
    border-radius: 5px;
    box-sizing: border-box;
    color: #ededed;
    clear: both;
    display: block;
    float: right;
    font-size: 17px;
    margin-bottom: 1em;
    min-width: 200px;
    padding: 10px;
    text-align: center;
}

a.proceed-to-checkout:hover {
    color: #ededed;
    background-color: #093156;
}

a.proceed-to-checkout:active {
    background-color: #5da2bf;
}

table.basket {
    background: #fff;
    border-collapse: collapse;
    font-size: 16px;
    margin-bottom: 15px;
}

table.basket a {
    text-decoration: none;
}


table.total {
    float: right;
    width: 800px;
}

table.basket tr:nth-child(even) {
  background: #f9f9f9;
}

th {
    font-weight: normal;
    width: 100px;
}

.title th {
    background: #000;
    font-weight: bold;
}

tr.basket-total {
    background: #393740 !important;
    color: #fff;
    font-weight: bold;
}

tr.basket-line.unavailable {
    background-color: #ffcfcf;
}

th {
    border: 1px solid #fff;
}



td {
  text-align: center;
}

td.product {
  text-align: center;
  width: 450px;
}

td.product img {
    float: left;
    height: 150px;
    margin-right: 10px;
    padding: 5px;
    width: 150px;
}

td.product p {
    display: block;
    font-size: 18px;
}

td.product p.add-sleeves {
    font-size: 14px;
}

td.quantity {
    width: 5em;
    text-align: center;
}

td.quantity input {
    border: 1px solid #ccc;
    width: 2.5em;
    font-size: 18px;
    padding:.5em;
    text-align: center;
}

td.quantity p {
    font-size: 13px;
    white-space: nowrap;
}

td.quantity a {
    background: #343740;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    margin: 0 1px;
    padding: 5px 10px;
}

td.quantity a:hover {
    background: #093156;
}

td.unit-price {
    font-weight: bold;
    text-align: center;
}

td.line-total {
    font-weight: bold;
    text-align: center;
}

table.basket small {
    font-size: 12px;
}
span#shipping-method {
    margin-right: 2em;
}

.view-profile {
  background: #343740;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  padding: 13px;
  text-align: center;
}

.view-profile:hover {
  background: #5da2bf;
  color: #fff;
}

/*
 *
 * Card sleeve button overrides
 *
 */

div.cardsleeve-boxes {
  display: flow-root;
  padding-top: 0;
  background-color: #0b4d84;
  color: white;

}

div.sleeve {
  height: 45px;
  margin: 0 5px 10px 5px;
  padding-top: 10px;
  width: 45px;
}


@media only screen and (max-width: 700px) {
  table.total {
    float: none;
    width: 100%;
  }

  table.total td:first-child {
    display: none;
  }

  table.total td:last-child:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    padding-left: 10px;
    text-transform: uppercase;
  }

  table.basket td:before{
    content: attr(data-label);
    float: left;
    font-weight: bold;
    padding-left: 10px;
    text-transform: uppercase;
  }

  th {
    display: none;
  }

  td {
    border: none;
    border-bottom: 1px solid #ccc;
    display: block;
    padding: 10px;
    text-align: right;
  }

  td.product {
    padding: 0;
    width: 100%
  }

  td.product:before {
    display: none;
  }

  td.product img {
    display: block;
    float: left;
    clear: both;
    margin: 0;
  }

  td.product a {
    display: block;
    padding: 20px;
  }

  td.product br {
    clear: both;
  }

  td.quantity {
    box-sizing: border-box;
    text-align: right;
    width: 100%;
  }

  td.quantity p {
    display: inline-block;
  }

  td.unit-price {
    text-align: right;
  }

  td.line-total {
    text-align: right;
  }
}


@media only screen and (min-width: 701px) and (max-width: 969px) {
  table.total {
    float: none;
    width: 100%;
  }

  td.product p.add-sleeves {
    margin-top: 5em;
  }
}
