.product-image-holder {
    position: relative;
    height: 350px;
    width: 100%;
    border: 1px solid #eee;
}
.product-thumbnail-holder {
    padding-top: 0.5em;
}
.product-thumbnail-holder a {
    cursor: pointer;
}
.product-thumbnail-holder div.thumbnail {
    box-sizing: border-box;
    width: 130px;
    height: 130px;
    border: 1px solid #eee;
    float: left;
    margin-right: 20px;
    margin-bottom: 10px;
}
.product-thumbnail-holder div.thumbnail:nth-child(3n+3) {
    margin-right: 0;
}
.product-image-holder .product-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s linear;
    pointer-events: none;
}
.product-image-holder .product-image.active {
    opacity: 1;
    pointer-events: auto;
}

.basket, .basket table, .basket td, .basket th {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
}

.shopping-basket-items, .order-items {
    border-collapse: collapse;    
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
}
.order-items {
    width: 100%;
}
.order-items th, .order-items td {
    padding: 0.5em;
}
.order-items thead th {
    text-align: left;
}
.order-items tfoot td {
    text-align: right;
    font-weight: bold;
}
.order-items tfoot th {
    text-align: right;
}
.shopping-basket-items thead th, .order-items thead th {
    color: #2A346F;
    border-bottom: 1px solid #2A346F;
}
.shopping-basket-items tfoot td, .order-items tfoot td {
    color: #2a346f;
}
.shopping-basket-items .col-image {
    width: 90px;
}
.shopping-basket-items tbody a {
    color: #333;
    font-weight: bold;
    text-decoration: none;
}
.shopping-basket-items tbody a:hover {
    text-decoration: underline;
}
.shopping-basket-items td.unit-price, .shopping-basket-items td.line-total {
	padding-right: 1em;
}
#product-detail {
    margin-bottom: 1em;
}

#product-detail img.product {
    
}

#product-detail p {
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 0.9em;
    line-height: 1.5em;
    color: #666;
    margin: 0 0 1em 0.3em;
    padding: 0;
}

#product-detail p.price {
    font-family: 'PT Sans', sans-serif;
    font-weight: 700;
    font-size: 1.3em;
    line-height: 1.5em;
    color: #97012c;
    margin: 0 0 1em 0.3em;
    padding: 0;
}

#product-detail p.price span {
    font-weight: 400;
    font-size: 0.75em;
    color: #777;
}

#product-detail a.btn {
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5em;
    color: #fff;
    background: #2a346f;
    text-decoration: none;
    margin: 0 0 1.5em 0.3em;
    padding: 0.5em 1em;
    float:left;
    transition: background-color 0.3s ease-in-out;
}

#product-detail a.btn:hover {
    background: #97012c;
}

#product-detail dl {
    font-family: 'PT Sans', sans-serif;
    font-size: 0.8125em;
    color: #2a346f;
    font-weight: bold;
    margin-left: 0.3em;
}

#product-detail dt {
    width: 70px;
    float: left;
    clear: left;
}

.btn-shop, .download-btn {
    display: inline-block;
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 1em;
    line-height: 1.5em;
    color: #fff;
    background: #2a346f;
    text-decoration: none;
    margin: 0 0 2em 1em;
    padding: 0.5em 1em;
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.btn-shop:hover, .download-btn:hover {
    background: #97012c;
}

.download-btn {
	cursor: pointer;
	border-radius: 5px;
	margin: 0 0 0 0;
}
.download-btn:hover {
	text-decoration: none;
}

.checkout-continue {
    display: block;
    margin-top: 1em;
    margin-right: 1em;
	padding-bottom: 2em;
    clear: both;
    text-align: right;
}

.checkout-continue .btn-shop {
	margin-bottom: 1em;
}

.checkout-continue p {
    clear: both;
	margin-bottom: 0;
}

.a2b-adding {
    font-family: 'PT Sans', sans-serif; 
    display: none; 
    font-size: 1em;
    font-weight: 400;
    padding: 0.5em 1em; 
    line-height: 1.5em;
}

#basketUpdateSuccess {
    background-color: #2a346f;
    color: rgb(255, 255, 255);    
    border-radius: 5px;
    margin-top: 0.5em;
    margin-bottom: 1em;
    display: none;
    clear: both;
}

#basketUpdateSuccess a {
    padding: 1em;
    background-color: #2a346f;
    margin: 0px;
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    color: #fff;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
}
#basketUpdateSuccess a:hover {
    background-color: #97012c;
}

/* table */

#product-detail .table {
    font-family: 'PT Sans', sans-serif;
    font-weight: 400;
    font-size: 0.7em;
    width: 100%;
    border-collapse: collapse;
}

#product-detail .table td {
    padding: 0.3em 0.5em 0.3em 0;
    color: #666;
    vertical-align: top;
}

.form-horizontal .form-group {
    margin-bottom: 0.5em;
}
.form-horizontal .control-label {
    font-family: 'PT Sans', sans-serif;
    width: 35%;
    font-size: 0.9em;
}
.control-label.required {
	font-weight: bold;
}
.control-label.required:before {
	content: '*';
	display: inline-block;
	padding-right: 4px;
}
.form-horizontal .form-control {
    width: 65%;
}
#s2b-container {
    float: right;
    margin-top: 0;
    margin-bottom: 0;
    font-family: 'PT Sans', sans-serif;
}

#recently-viewed {
    padding-top: 1em;
}
#recently-viewed > h2:first-child {
    clear: both;
    margin-top: 2em;
    padding-top: 1em;
    border-top: 1px solid #f0f0f0;
}
#recently-viewed > div {
}
#recently-viewed a {
    text-decoration: none;
    color: #2a346f;
}
#recently-viewed a:hover {
    text-decoration: underline;
}
#recently-viewed .details {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    display: block;
    padding-top: 0.8em;
    text-decoration: none;
    color: #2a346f;
    font-weight: 400;
}

#price-range {
    font-size: 14px;
    padding-bottom: 0.5em;
}

#price-range-slider {
    margin: 0.5em;
}

#price-range p {
    
}

#price-range .ui-slider-handle {
    outline: none !important;
}

#leftcol #filters {
    font-family: 'PT Sans', sans-serif;
    font-size: 1em;
    color: #2a346f;
    margin-bottom: 2em;
}
#leftcol #filters div {
    font-size: 0.9em;
    margin-bottom: 0.4em;
}

.lb-data .lb-caption {
    font-family: 'PT Sans', sans-serif !important;
    font-size: 1em !important;
    color: #fff !important;
}
.lb-data .lb-number {
    font-family: 'PT Sans', sans-serif !important;
    font-size: 1em !important;
    color: #fff !important;
}

.paypal-alert {
	padding: 1em;
	border: 1px solid #a00;
	background-color: #fee;
	margin-bottom: 1em;
}
.paypal-alert h1, .paypal-alert p {
	color: #a00;
	text-align: center;
}