

/**, *:after, *:before {*/
  /*-webkit-box-sizing: border-box;*/
  /*-moz-box-sizing: border-box;*/
  /*box-sizing: border-box;*/
/*}*/

body.overflow-hidden {
  overflow: hidden;
}
.green{
	color: green;
}
.grey{
	color: grey;
}
.total-red{
	color:#d02222;
	font-weight:600;
}
.product-table{
	width: 100%;
}
.summary-table{
	width: 100%;
    border: 1px solid #ddd;
    padding: 4px 16px 16px 16px;
    margin-top: 63px;
    margin-left: 30px;
	margin-right: 30px;
	display:none;
}
.summary-buttons{

    margin-left: 30px;
	margin-right: 0px;
}
.summary-table table{
	width: 100%;
}
.table>tbody>tr>td, 
.table>tbody>tr>th, 
.table>tfoot>tr>td, 
.table>tfoot>tr>th, 
.table>thead>tr>td, 
.table>thead>tr>th{
	
	border-top: none;
	padding-top: 5px;
	padding-bottom: 5px;
}

.table-underline{
	border-bottom:  1px solid #ddd; 
}
.change-quantity{
	cursor: pointer;
}
.cd-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

.cd-img-replace {
  /* replace text with a background-image */
  display: inline-block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}
/* sc-checkout */
.sc-radio>li{
	list-style: none;
    margin-bottom: 10px;
}
.sc-radio>li>span{
	margin-top: -35px;
    margin-left: 100px;
    font-size: 1.2em;
    float: left;
    margin-bottom: 21px;
}
#main-nav, #cd-cart {
  position: fixed;
  top: 0;
  height: 100%;
  width: 260px;
  /* header height */
  padding-top: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1050;
}
@media (max-width: 767px){

	.xs-mt-10{
		margin-top:10px;
	}
	.xs-mt-15{
		margin-top:15px;
	}
}
@media only screen and (min-width: 768px) {
  #main-nav, #cd-cart {
    width: 350px;
  }
}
@media only screen and (min-width: 1200px) {
  #main-nav, #cd-cart {
    width: 30%;
    /* header height has changed */
    /*padding-top: 80px;*/
  }
}

#main-nav {
  left: -100%;
  background: #FFF;
  -webkit-transition: left 0.3s;
  -moz-transition: left 0.3s;
  transition: left 0.3s;
}
#main-nav.speed-in {
  left: 0;
}
#main-nav ul a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 1em;
  border-bottom: 1px solid #e0e6ef;
}
#main-nav ul .current {
  box-shadow: inset 3px 0 #435779;
}
@media only screen and (min-width: 1200px) {
  #main-nav {
    /* reset main nav style */
    position: absolute;
    height: auto;
    width: auto;
    left: auto;
    right: 8em;
    padding-top: 0;
    top: 0;
    background: transparent;
    box-shadow: none;
    /* header height */
    line-height: 80px;
    z-index: 4;
  }
  #main-nav li {
    display: inline-block;
    margin-left: 1em;
  }
  #main-nav ul a {
    display: inline-block;
    height: auto;
    line-height: 1;
    padding: 1em 1.4em;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.8);
    border-radius: 0.25em;
  }
  #main-nav ul a.current {
    box-shadow: none;
    background: #435779;
    color: #FFF;
  }
  .no-touch #main-nav ul a:hover {
    background: #435779;
    color: #FFF;
  }
}
.no-js #main-nav {
  position: fixed;
}

#cd-cart {
  right: -100%;
  background: #FFF;
  -webkit-transition: right 1s ease-out;
  -moz-transition: right 1s ease-out;
  transition: right 1s ease-out;
}
#cd-cart.speed-in {
  right: 0;
}
#cd-cart > * {
  /*padding: 0 1em;*/
}
#cd-cart h2 {
  padding: 0 1em;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 1em 0;
}
#cd-cart .cd-cart-items {
  padding: 0;
}
#cd-cart .cd-cart-items li {
  position: relative;
  padding: 1em;
  border-top: 1px solid #e0e6ef;
}
#cd-cart .cd-cart-items li:last-child {
  border-bottom: 1px solid #e0e6ef;
}
#cd-cart .cd-qty, #cd-cart .cd-price {
  color: #a5aebc;
}
#cd-cart .cd-price {
  margin-top: .4em;
}
/*#cd-cart .cd-item-remove {*/
  /*position: absolute;*/
  /*right: 1em;*/
  /*top: 50%;*/
  /*bottom: auto;*/
  /*-webkit-transform: translateY(-50%);*/
  /*-moz-transform: translateY(-50%);*/
  /*-ms-transform: translateY(-50%);*/
  /*-o-transform: translateY(-50%);*/
  /*transform: translateY(-50%);*/
  /*width: 32px;*/
  /*height: 32px;*/
  /*border-radius: 50%;*/
  /*background: url("../img/cd-remove-item.svg") no-repeat center center;*/
/*}*/

#cd-cart .cd-item-remove {
    background: rgba(0, 0, 0, 0) url("../img/cd-remove-item.svg") no-repeat scroll center center;
    border-radius: 50%;
    float: right;
    height: 32px;
    width: 32px;

    position: relative;
    right: -0.5em;
    top: -0.3em;
}

.no-touch #cd-cart .cd-item-remove:hover {
  background-color: #e0e6ef;
}
#cd-cart .cd-cart-total {
    font-size: 1.4em;
    padding: 0.7em;
}
#cd-cart .cd-cart-total span {
  float: right;
}
#cd-cart .cd-cart-total::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}
#cd-cart .checkout-btn {
  display: block;
  /*width: 100%;*/
  /*height: 60px;*/
  line-height: 1.4em;
  padding: 1.4em;
  background: #B05C11;
  color: #FFF;
  text-align: center;
  border-radius: 0px;
  font-weight:700;
}
#cd-cart .continue-shopping-btn {
  display: block;
  /*width: 100%;*/
  height: 60px;
  line-height: 1.4em;
  padding: 1.4em !important;
  background: #00040b;
  color: #FFF;
  text-align: center;
  border-radius: 0px;
}
#cd-cart .continue-shopping-btn:hover {
    background: #4B5D80;
}
.no-touch #cd-cart .checkout-btn:hover {
  background: #FF8F00;
}
#cd-cart .list-group-item-heading a {
    color: #1c2331;
	font-weight:400;
    text-decoration: none;
}
#cd-cart .list-group-item-heading a:hover {
    text-decoration: underline;
}
#cd-cart .cd-close-cart {
	text-align: center;
	margin: 1em 0;
	padding: 0 1em;
	font-weight: 700;
}
#cd-cart .line-item {
  text-align: center;
  margin: 1em 0;
    padding: 0 1em;
}
#cd-cart .cd-close-cart a {
  text-decoration: underline;
}
@media only screen and (min-width: 1200px) {
  #cd-cart > * {
    /*padding: 0 2em;*/
  }
  #cd-cart .cd-cart-items li {
    padding: 1em 2em;
  }
  #cd-cart h2 {
    padding: 0 2em;
  }
  #cd-cart .cd-cart-total {
    padding: 0 1.3em;
  }
  #cd-cart .cd-item-remove {
    position: relative;
    right: -0.5em;
    top: -0.3em;
  }
}


#cd-shadow-layer {
  position: fixed;
  min-height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(67, 87, 121, 0.6);
  cursor: pointer;
  z-index: 1002;
  display: none;
}
#cd-shadow-layer.is-visible {
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

@-webkit-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes cd-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cart-isbn {
    float: right;
    /*font-size: 0.8em;*/
    /*padding-top: 0.2em;*/
}
#promocode-form {
    display: none;
}
input.basket-input {
    color: #003f72;
    padding: 0.75em;
	background: #f3f5f3;
	border: 1px solid #cbcbcb;
    vertical-align: middle;
    width: 9em;
}
#promocode-form .big.button.pointy.highlight-alt {
    vertical-align: middle;
    background-color: #e0f3e7;
	border: 1px solid #cbcbcb;
    min-width: 6em;
    min-height: 3.25em;
}
#promocode-form .big.button.pointy.highlight-alt:hover{
	background-color: #b2c7ba;
}
#promocode-applied-container {
    text-align: left;
}

#cd-cart .sc-cart-item-price.strikethrough {
    margin-right: 1em;
}
#promocode-input{
	text-transform: uppercase;
}
.list-group-item-text{
	font-size:0.5em;
}