@charset "UTF-8";
/****** WEBSITE FONT ***/
/****** CREATE COLOUR PALETTES ***/
/****** SET SITE THEME COLOURS ***/
/****** SET SITE SPECIFIC COLOURS ***/
/* @include transition (all, 0.5s); 

	USE THE ABOVE FOR ANIMATION TO INCLUDE THE BELOW CODE
*/
:root{
  --orange: #d7bb4c;
  --blue:#002765;
  --white: #ffff;
  --gray: #EEEEEE;
  --green: #009933;
  --red: #C01613;
  --black: #000;
  --primary: rgb(148, 20, 20);
  --secondary: #002765;
  --text-color: #666666;
  --body-color: #F2F2F2;
}

body {
  background: var(--body-color);
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  padding-top: 115px; 
}
  
body.imitating {
    padding-top: 155px; 
}
body.offline {
  background: var(--body-color);
  padding-top: 140px;
}

.container { 
  position: relative; 
}

.container-fluid {
  position: relative;
  max-width: 1400px; 
}

.clear {
  clear: both; 
}

.btn {
  border-radius: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
a.active{
  color: var(--primary);
}

.btn:focus,.btn:hover,.btn.active:focus,.btn.active:hover {
  outline: 0; 
}

.pointer {
  cursor: pointer; 
}

.underline {
  text-decoration: underline; 
}

.glyphicon-star {
  color: var(--orange)
}

.table-striped {
  margin: 0;
 }

.table-striped > tbody > tr > td,
.table-striped > tbody > tr > th,
.table-striped > tfoot > tr > td,
.table-striped > tfoot > tr > th,
.table-striped > thead > tr > td,
.table-striped > thead > tr > th {
  border: 1px solid var(--text-color); 
}

.table-striped > tbody > tr:first-child {
  background: var(--text-color);
  color: var(--white); 
}

.table-striped > tbody > tr:first-child th:first-child {
  border-right-color:  var(--white);
}

.table-striped > tbody > tr:nth-of-type(odd):not(:first-child) {
  background: transparent; 
}

.table .option {
  width: 25%; 
}

.table .rating {
  text-align: center;
  width: 15%; 
}

#bulkPrices .table {
  margin-bottom: 0; 
}

#reviews .table > tbody > tr > td,
#reviews .table > tbody > tr > th,
#reviews .table > tfoot > tr > td,
#reviews .table > tfoot > tr > th,
#reviews .table > thead > tr > td,
#reviews .table > thead > tr > th,
#bulkPrices .table > tbody > tr > td,
#bulkPrices .table > tbody > tr > th,
#bulkPrices .table > tfoot > tr > td,
#bulkPrices .table > tfoot > tr > th,
#bulkPrices .table > thead > tr > td,
#bulkPrices .table > thead > tr > th {
  border: 1px solid var(--gray); 
}

#bulkPrices .table > tbody > tr > td,
#bulkPrices .table > tbody > tr > th {
  text-align: center;
  width: 50%; 
}

#reviews .table > tbody > tr > td > p,
#reviews .table > tbody > tr > td > input[type=radio] {
  margin: 0; 
}

.asterisk,p.error {
  color: var(--red); 
}
p.success {
  color: var(--green); 
}  

p.marginZero {
  margin: 0; }

p strong.instock {
  color: var(--green); 
}

p strong.outofstock {
  color: var(--red); 
}

em.error {
  color: var(--red); 
  font-size: 13px; 
}

#summary {
  margin-bottom: 10px; 
}

.reviewTextarea {
  margin-bottom: 10px;
  height: 112px !important;
  resize: none; 
}

.searchWebsite p.overlayHeading {
  font-size: 24px !important;
  font-weight: bold;
  margin: 0 0 10px 0; 
}
  
.searchWebsite p.overlayHeading span {
    color: var(--black); 
  }

.searchWebsite .form-control {
  float: left;
  font-size: 18px !important;
  height: 50px;
  padding: 5px 15px;
  width: 85%; 
}
  
  .searchWebsite .form-control::-webkit-input-placeholder {
    color: var(--text-color); 
  }
  .searchWebsite .form-control::-moz-placeholder {
    color: var(--text-color); 
  }
  .searchWebsite .form-control:-ms-input-placeholder {
    color: var(--text-color); 
  }
  .searchWebsite .form-control:-moz-placeholder {
    color: var(--text-color); 
  }

.searchWebsite .btn {
  float: left;
  font-size: 18px;
  height: 50px;
  padding: 5px 15px;
  width: 15%; 
}
  
.loginRegister label.overlayHeading,
.loginRegister p.overlayHeading {
  font-size: 24px !important;
  font-weight: bold;
  margin: 0 0 10px 0; 
}

.loginRegister label.overlayHeading span,.loginRegister p.overlayHeading span {
    color: var(--black); 
  }

.loginRegister .form-control {
  font-size: 18px;
  height: 40px;
  padding: 5px 15px; 
}

.loginRegister hr {
  border-color: var(--white); 
}

#loginBtn, #resetBtn {
  font-size: 18px;
  height: 40px;
  width: 100%; 
}
  

#forgotPasswordSection {
  display: none; 
}

.overlayHeading {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 10px 0; 
}

.overlayHeading span {
    color: var(--text-color); 
  }

.siteNavigation .navigation {
  margin: 0;
  padding: 0;
  text-align: center; 
}
.siteNavigation .navigation li {
  font-size: 26px;
  font-weight: bold;
  list-style: none;
  margin-bottom: 10px; 
}
 
.siteNavigation .navigation li a {
  color: var(--text-color);
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
  .siteNavigation .navigation li a:hover {
    border-bottom-width: 5px;
    border-bottom-style: solid;
    border-bottom-color: var(--text-color);
   }

.closeOverlay {
  color: var(--text-color);
  cursor: pointer;
  font-size: 32px;
  position: absolute;
  right: -50px;
  top: 10px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.closeOverlay.show {
    right: 10px; 
  }

.siteOverlay {
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1000; 
}

.screenPush {
  overflow-x: hidden;
  position: relative;
  left: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.screenPush.pushToLeft {
  left: -305px; 
}
.screenPush.pushToRight {
  left: 305px; 
}

.sideNav {
  background: var(--white);
  position: fixed;
  height: 100%;
  top: 0;
  width: 305px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1001; 
}
.sideNav.left {
  left: -305px; 
}
  .sideNav.left.open {
    box-shadow: 2px 0 2px var(--white);
    left: 0; 
  }
.sideNav.right {
  right: -305px; 
}
  .sideNav.right.open {
    box-shadow: -2px 0 2px var(--white);
    right: 0; 
  }

.sideNavHeading {
  border-bottom: 1px solid var(--white);
  font-size: 18px;
  margin: 0;
  padding: 10px 15px; 
}
  .sideNavHeading i {
    color: var(--text-color);
    cursor: pointer;
    font-size: 24px;
    float: right; 
  }

#categoriesSidebar,#filterSidebar {
  display: none;
  height: 100%;
  overflow-y: scroll; 
}

#categoriesSidebar::-webkit-scrollbar,#filterSidebar::-webkit-scrollbar {
    width: 15px; 
  }

#categoriesSidebar::-webkit-scrollbar-track,#filterSidebar::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2);
    border-left: 5px solid var(--white);
    border-right: 5px solid var(--white); 
}
 
#categoriesSidebar::-webkit-scrollbar-thumb,
#filterSidebar::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  min-height: 20px;
  outline: 1px solid var(--text-color); 
}

#basketContents,
#filterContents {
  padding: 10px 15px; 
}
  #basketContents .filterHeading,
  #filterContents .filterHeading {
    font-weight: bold;
    margin: 10px 0 5px 0; 
  }
  #basketContents .pretty,
  #filterContents .pretty {
    margin-bottom: 10px;
    width: 100%; 
  }
  #basketContents .clearFilter,
  #basketContents .viewBasket,
  #filterContents .clearFilter,
  #filterContents .viewBasket {
    float: left;
    padding: 0 5px 0 0;
    width: 50%; 
  }
  #basketContents .applyFilter,
  #basketContents .proceedToCheckout,
  #filterContents .applyFilter,
  #filterContents .proceedToCheckout {
    float: left;
    padding: 0 0 0 5px;
    width: 50%; 
  }
  #basketContents .clearFilter .btn,
  #basketContents .applyFilter .btn,
  #basketContents .viewBasket .btn,
  #basketContents .proceedToCheckout .btn,
  #filterContents .clearFilter .btn,
  #filterContents .applyFilter .btn,
  #filterContents .viewBasket .btn,
  #filterContents .proceedToCheckout .btn {
    width: 100%; 
  }
    
  #basketContents hr,
  #filterContents hr {
    margin: 10px 0; 
  }
  #basketContents #basketItemsHolder,
  #filterContents #basketItemsHolder {
    max-height: 315px;
    margin: -10px -15px 0 -15px;
    overflow-y: scroll;
    padding: 10px 15px 0 15px; 
  }
  #basketContents .basketItem .basketImage,
  #filterContents .basketItem .basketImage {
    border: 1px solid var(--gray);
    padding: 7.5px 5px;
    height: 80px;
    text-align: center;
    width: 80px; }
  #basketContents .basketDetails,
  #filterContents .basketDetails {
    padding-left: 5px;
    vertical-align: top;
    width: 178px; 
  }
  #basketContents .basketDetails p,
  #filterContents .basketDetails p {
    line-height: 125%;
    margin: 0; 
  }
      
  #basketContents .basketDetails p.basketProductName,
  #filterContents .basketDetails p.basketProductName {
        height: 58px;
        margin-bottom: 5px;
        overflow: hidden; 
    }

  #basketContents .basketTotals,
  #filterContents .basketTotals {
    padding-right: 15px; 
  }

  #basketContents .basketTotals table,
  #filterContents .basketTotals table {
    width: 100%; 
  }

  #basketContents .basketTotals table p:last-child,
  #filterContents .basketTotals table p:last-child {
    font-size: 18px;
    margin-bottom: 0; 
  }

  #basketContents .basketTotals table .values,
  #filterContents .basketTotals table .values {
    width: 100px;
  }

.viewAsCustomer {
  background: var(--text-color);
  position: fixed;
  top: 0;
  left: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 100%;
  z-index: 1030;
 }

.viewAsCustomer p {
    color: var(--orange);
    margin: 0; 
}
.viewAsCustomer p a {
    color: var(--white); 
}
     
    
.cookies {
  background: var(--text-color);
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}

.cookies p {
  color: var(--white);
  float: left;
  margin: 5px 0 0 0; 
}

.cookies .cookieButton {
  float: left;
  margin-left: 10px; 
}
.cookies p a {
  color: var(--white); 
}
.cookies #cookieActions {
  margin-left: 10px; 
}
.cookies .cookieButton .btn {
  color: var(--white); 
  padding: 4px 20px; 
}
.cookies .btn-accept {
  background: var(--green); 
}
  .cookies .btn-accept:hover {
    background: var(--green); 
  }
.cookies .btn-moreinfo {
  border: 1px solid var(--gray); 
}
.cookies .btn-leave {
  background: var(--red); 
}
.cookies .btn-leave:hover {
  background: var(--red); 
}
.cookies.smaller {
  padding: 5px 20px; 
}

.smallModal {
  display: none;
  width: 300px; 
}

.largeModal {
  display: none;
  width: 660px; 
}

.animated-modal {
  background: var(--white); 
  overflow: hidden;
  transform: translateY(-80px);
  transition: all .5s; 
}
  .animated-modal h4 {
    font-size: 21px; 
  }
  .animated-modal h5 {
    font-size: 16px;
    text-align: right; 
  }
  .animated-modal hr {
    margin: 10px 0; 
  }
  .animated-modal h4,
  .animated-modal h5,
  .animated-modal p,
  .animated-modal table,
  .animated-modal hr,
  .animated-modal .form-group,
  .animated-modal .btn {
    opacity: 0;
    transform: translateY(-40px);
    transition-property: transform, opacity;
    transition-duration: .3s; 
  }
  .animated-modal #loading {
    display: none;
    margin: 20px auto 0 auto;
    width: 32px; 
  }

.fancybox-slide--current .animated-modal {
  opacity: 1;
  transform: translateY(0);
  transition-duration: .3s; 
}

  .fancybox-slide--current .animated-modal h4,
  .fancybox-slide--current .animated-modal h5,
  .fancybox-slide--current .animated-modal p,
  .fancybox-slide--current .animated-modal table,
  .fancybox-slide--current .animated-modal hr,
  .fancybox-slide--current .animated-modal .form-group,
  .fancybox-slide--current .animated-modal .btn {
    opacity: 1;
    transform: translateY(0);
    transition-duration: .3s; 
  }
  .fancybox-slide--current .animated-modal h4,
  .fancybox-slide--current .animated-modal h5 {
    transition-delay: .1s; 
  }
  .fancybox-slide--current .animated-modal p {
    line-height: 125%;
    margin: 0 0 10px 0;
    transition-delay: .2s; 
  }
  .fancybox-slide--current .animated-modal table,
  .fancybox-slide--current .animated-modal hr,
  .fancybox-slide--current .animated-modal .form-group {
    transition-delay: .2s; 
  }
  .fancybox-slide--current .animated-modal .btn {
    transition-delay: .3s; 
  }

#newsletter .form-group {
  margin-bottom: 5px; 
}

#newsletter .newsletterIcon {
  padding-right: 10px; 
}
  #newsletter .newsletterIcon i {
    font-size: 32px; 
  }

#newsletter .newsletterText p {
  margin: 0; 
}

#newsletter .btn-subscribe {
  background: var(--text-color);
  color: var(--white);
  font-weight: bold;
  margin: 5px 0 10px 0;
  width: 100%; 
}
  
  #newsletter .btn-subscribe:hover {
    color: var(--white);
   }

#welcome_signup .btn-myaccount {
  background: var(--text-color);
  color: var(--white);
  font-weight: bold;
  margin: 0;
  width: 100%; }
  
  #welcome_signup .btn-myaccount:hover {
    color: var(--white);
  }

.basketImage,
.basketDetails,
.basketOverviewImage,
.basketOverviewDetails {
  padding: 0; 
}

.basketOverviewProductName h5 {
  font-size: 18px;
  margin: 0 0 20px 0; 
}
.basketOverviewRight {
  text-align: right; 
}
.overviewSpacer {
  clear: both;
  height: 20px; 
}

.addressDetailsLeft {
  padding-left: 0;
  text-align: left; 
}

.addressDetailsRight {
  padding-right: 0; 
}
 
.btn-primary:hover {
  background: var(--text-color);
  border-color: var(--text-color);
}

.btn-continue,
.btn-previous,
.btn-enquiry,
.btn-cancel {
  background: transparent;
  border: 1px solid var(--text-color);
  color: var(--text-color);
  font-weight: bold;
  float: left; 
}
  
.btn-continue:hover,
.btn-previous:hover,
.btn-enquiry:hover,
.btn-cancel:hover {
    background: var(--text-color);
    color: var(--white)
}

.btn-enquiry {
  float: right;
  margin-right: 10px; 
}

.btn-checkout {
  float: right; 
}

[v-cloak] > * {
  display: none; 
}

[v-cloak]::before {
  content: "loading…"; 
}

.btn-login,
.btn-delete {
  background: var(--text-color);
  color: var(--white);
  font-weight: bold;
  float: right; 
}
  
.btn-login:hover,
.btn-delete:hover {
    color: var(--white);
  }

.btn-delete {
  background: var(--red);
}
.btn-delete:hover {
  background: var(--red);
  }

.btn-more {
  background: var(--text-color);
  color: var(--white);
 }
  
.btn-more:focus, .btn-more:hover {
  color: var(--white);
}

#savedOrder .deleteOrder,
#savedQuote .deleteQuote {
  margin-left: 10px; 
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder {
  color: var(--white);
}

.form-control {
  border-radius: 0;
  border: 1px solid var(--gray);
  padding: 5px 10px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
  
.form-control:focus {
  border-color: var(--text-color);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(141, 141, 141, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(141, 141, 141, 0.6); 
}
.form-control.inputError {
  border: 1px solid  var(--red);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(255, 0, 0, 0.6); 
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0; 
}

.has-error .form-control,
.has-error .form-control:focus {
  border-color:  var(--red);
 }

.has-success .form-control,
.has-success .form-control:focus {
  border-color:  var(--green);
}

.navbar-nav > li > a {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}

.headerNav {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.headerNav.imitating {
  top: 40px; 
}
.headerNav.smaller {
  min-height: 42px;
}
.headerNav.smaller .navbar-nav > li > a {
  padding: 10px 10px; 
}
.headerNav.smaller .navbar-social li a {
  padding: 6px 5px; 
}
.headerNav.smaller .sh-top--vat a {
  line-height: 40px; 
}
.headerNav.smaller #languagePicker {
  height: 40px; 
}
.headerNav.smaller #languagePicker select {
  height: 22px;
 }
  
.navbar-default {
  margin: 0; 
}

.headerNav .navbar-nav > li > a,
.headerNav .navbar-nav > li > a:focus,
.headerNav .navbar-nav > li > a:hover,
.headerNav .navbar-nav > .open > a,
.headerNav .navbar-nav > .open > a:focus,
.headerNav .navbar-nav > .open > a:hover {
  color: var(--white);
}

.headerNav .navbar-nav > li > a:focus,
.headerNav .navbar-nav > li > a:hover {
  background: var(--white);
}

#mainMenu {
  padding: 0; 
}

.mainMenuNav {
  min-height: 40px; 
}
.mainMenuNav .navbar-toggle {
  margin-top: 3px;
  margin-bottom: 3px; 
}
.mainMenuNav .navbar-header p {
  margin: 11px 5px 0 0; 
}

.mainMenuNav .navbar-nav > li > a,
.mainMenuNav .navbar-nav > li > a:focus,
.mainMenuNav .navbar-nav > li > a:hover,
.mainMenuNav .navbar-nav > .open > a,
.mainMenuNav .navbar-nav > .open > a:focus,
.mainMenuNav .navbar-nav > .open > a:hover {
  color: var(--white);
}

.mainMenuNav .navbar-nav > li > a:focus,
.mainMenuNav .navbar-nav > li > a:hover,
.mainMenuNav .navbar-nav > li > a.active {
  background: var(--white);
}

.mainMenuNav .navbar-nav > li > a.ecommerce {
  background: var(--text-color);
}

.mainMenuNav .navbar-nav > li > a.home {
  font-size: 20px; padding-bottom: 9.5px; 
}

.navbar {
  border-radius: 0;
  border: 0; 
}

.navbar-default .navbar-nav > li > a:focus {
  outline: 0; 
}

.navbar-right {
  margin-right: 0; 
}

.dropdown-menu {
  border-radius: 0;
  padding: 0; 
}

.nav .open > a:focus,
.nav .open > a:hover {
  background: var(--white);
}

.dropdown-menu > li > a {
  color: var(--text-color);
  padding: 5px 15px; 
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background: var(--white);
}

.navbar-default .navbar-text {
  color: var(--white);
  font-weight: bold; 
}

.sh-top--vat {
  float: left;
  padding-left: 10px; 
}
.sh-top--vat a {
  color: var(--white);
  line-height: 50px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
 
.sh-top--vat a:hover {
  color: var(--white)
}

.vattoggle {
  display: inline-block;
  background-color: var(--white);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.5);
  border-radius: 11px;
  margin-top: 0px;
  width: 40px;
  height: 20px;
  vertical-align: text-top;
  position: relative; 
}
.vattoggle:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 11px;
  position: absolute;
  top: 4px;
  left: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5); 
}

.vatexc:after {
  right: 5px;
  left: inherit; 
}

#languagePicker {
  height: 50px;
  padding: 9px 0;
  float: right;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}

#languagePicker select {
    color: var(--white);
    background: transparent;
    border: 0;
    height: 32px;
    outline: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; 
}
#languagePicker select option {
  color: var(--text-color); 
}

.navbar-social {
  margin: 0;
  padding: 0; }
  .navbar-social li a {
    padding: 11px 5px; }
  .navbar-social li img {
    height: 28px; }

/****** START OF HEADER STYLES ***/
header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
  header.overlayStyle {
    border-bottom-width: 5px;
    border-bottom-style: solid;
    padding: 5px 0 10px 0; }
  header.overlayStyle.vatBorder {
    border-bottom-width: 35px; }

  header.imitating {
    top: 40px; }
    
  header.smaller {
    border-bottom: 1px solid var(--white);
    padding: 10px 0;
  }
  header.smaller.imitating {
    top: 40px; }
  header.smaller #siteLogo {
    padding-top: 0;
    padding-bottom: 0;
    width: 17%; }
  header.smaller #siteContact {
    padding-top: 0;
    width: 28%; }
  header.smaller #siteSearch {
    padding-top: 0;
    width: 30%;
  }
  header.smaller #siteActions {
    padding-top: 0;
    width: 30%; 
  }

#siteActions #actionIconsHolder .actionIcon span {
  font-size: 13px; }
#newProductsTicker {
  background: var(--black);
  position: fixed;
  top: 0;
  left: 0;
  height: 40px;
  width: 100%;
  z-index: 999;
}
#newProductsTickerDemo {
  background: var(--black);
  height: 34px;
  width: 100%;
}
#tickerTitle {
  float: left;
  text-align: center;
  width: 20%; 
}
#tickerTitleDemo {
  float: left;
  width: 100%; 
}
#tickerTitleText, #tickerTitleTextDemo {
  border: 2px solid var(--white);
  border-radius: 2px;
  color: var(--white);
  display: inline-block;
  margin: 6px 0;
  padding: 2px 5px;
}
#tickerTitleTextDemo {
   margin: 3.5px 0; }
.tickercontainer {
  height: 40px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 80%;
}
.tickercontainer .mask {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#tickerSlider {
  float: left;
  line-height: 40px;
  margin: 0;
  padding: 0;
  position: relative;
}
#tickerSlider li {
  float: left;
  list-style: none;
  margin: 0 30px 0 0;
}
#tickerSlider li a { 
  color: var(--white); 
}
#tickerSlider li a:hover { 
  text-decoration: underline;
 }

#siteLogo {
  padding-top: 4px;
  padding-bottom: 4px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

#siteLogo img {
  display: inline-block;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}

  #siteContact {
    padding-top: 22.5px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; 
  }
  #siteContact p {
    font-weight: bold;
    margin: 0 0 5px 0; 
  }
  #siteContact p.phoneNumber { 
    font-size: 24px; 
  }
  #siteContact p.emailAddress { 
    font-size: 16px; 
  }

  #siteContact p.last {
    margin: 0; }
  #siteContact p a {
      text-decoration: none; 
  }

  #siteSearch {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
  }
  
  
  #siteSearch p {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
  }
  .searchWebsite, .loginRegister, .siteNavigation {
    background: rgba(255, 255, 255, 0.9);
    display: none;
    padding: 40px 0 0 0;
    position: fixed;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1001; 
  }
  
  #searchbox {
      background: transparent;
      border: 1px solid var(--black);
      border-radius: 17px;
      position: relative;
      height: 34px;
      width: 100%;
  }
  #searchbox .form-control {
      background: transparent;
      border: 0;
      border-radius: 17px;
      color: var(--black);
      padding-left: 38px;
      padding-right: 30px;
      height: 32px;
      width: 100%;
      -webkit-transition: all 1s;
      -moz-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      transition: all 1s;
  }


#searchbox .form-control::-webkit-input-placeholder { 
  color: var(--black);
}
#searchbox .form-control::-moz-placeholder { 
  color: var(--black);
}
#searchbox .form-control:-ms-input-placeholder { 
  color: var(--black);
}
#searchbox .form-control:-moz-placeholder { 
  color: var(--black);
 }
#searchbox .btn {
    border: 0;
    border-radius: 17px;
    color: var(--white);
    font-size: 16px;
    padding: 6px 6px;
    position: absolute;
    left: 0;
    top: 0;
    height: 32px;
    width: 32px;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}
#searchbox .btn.focused { 
  background: var(--black);
  left: 100%; 
  margin-left: -32px; 
  transform: rotate(360deg); 
}
#searchbox .form-control.focused { 
  padding-left: 10px;
 }

#searchbox em.error { 
  position: absolute; 
  bottom: -18px; 
}

#siteActions {
  padding-top: 22.5px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}

#siteActions #actionIconsHolder {
  float: right;
  margin: 0;
  padding: 0; 
}

#siteActions #actionIconsHolder .actionIcon {
  background-repeat: no-repeat;
  background-size: 36px 36px;
  background-position: top;
  cursor: pointer;
  float: left;
  list-style: none;
  margin: 0;
  padding: 40px 0 0 0;
  text-align: center;
  height: 60px;
  width: 65px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
  
#siteActions #actionIconsHolder .actionIcon:hover {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15); 
}

.headerVatToggle {
  position: absolute;
  bottom: -32px;
  right: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; }
.headerVatToggle .vattext { 
  color: var(--black);
  font-weight: normal; 
}

#websiteHotlinks {
  background: var(--white);
  padding: 10px 0;
  text-align: center; 
}
#websiteHotlinks #hotLinkSlider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease; 
}
  
#websiteHotlinks #hotLinkSlider.slick-initialized {
  visibility: visible;
  opacity: 1; 
}
#websiteHotlinks #hotLinkSlider .hotlinks {
  outline: 0;
  padding: 0 5px; 
}
#websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem img {
  display: inline;
  height: 40px;
  margin-right: 5px;
  vertical-align: top; 
}
      
#websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem p {
  display: inline-block;
  line-height: 125%;
  margin: 0;
  padding-top: 2.5px;
  text-align: left; 
}      

/****** END OF HEADER STYLES ***/
/****** START OF HOMEPAGE STYLES ***/
#homepageBanner {
  padding: 0px; 
}

#homepageBanner #homepageBannerSlider {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease;
 }
#homepageBanner #homepageBannerSlider.slick-initialized {
  visibility: visible;
  opacity: 1; 
}
#homepageBanner #homepageBannerSlider img {
  width: 100%; 
}

#homepageOption2 #homepageBanner {
padding: 0; 
}

#specialLinks {
  margin: 40px 0 0 0; 
}

#websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem p span {
  font-size: 16px;
  font-weight: bold;
 }

#specialLinks img {
  border: 1px solid var(--gray);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}

.slick-dots li button:before {
  opacity: .25;
  color: var(--text-color) !important; 
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: var(--text-color) !important; 
}

#homepageOption2 {
  padding: 15px 0; 
}

#homepageOption2 #homepageContent { margin-top: 20px; }
#homepageOption2 #featuredCategories,
#homepageOption2 #featuredProducts,
#homepageOption2 #homepageBrands { margin: 20px 0 0 0; }

#homepageOption2 #homepageContent h1,
#homepageOption2 #featuredCategories h2,
#homepageOption2 #featuredProducts h3,
#homepageOption2 #homepageBrands h4 {
  color: var(--white);
  float: left;
  font-size: 24px;
  font-weight: bold;
  padding: 5px 10px;
  margin-top: 0;
  text-align: unset; 
}

.sliderNav {
  float: right;
  margin-left: 5px; 
}

.sliderNav .btn {
  border: 0;
  color: var(--white);
  height: 36px;
  padding: 0;
  width: 36px; 
}

.sliderNav .btn:focus,
.sliderNav .btn:hover {
  background: var(--text-color);
  color: var(--white);
}

.sliderNav .btn i {
  font-size: 24px; 
}

#homepageOption2 .pageContent {
  background: var(--white);
  border-color: var(--white);
  padding: 30px;
}
#homepageOption2 .pageContent .btn-more {
 float: right;
 margin: 0 -10px -10px 0; }


.categoryFeatured {
  background-color: var(--white);
  border: 1px solid var(--gray);
  float: left;
  margin-bottom: 20px;
  padding: 0;
  position: relative;
  transition: all 0.5s;
  width: 100%;
  display: flex;
 }
.categoryFeatured img {
  transition: all 0.5s; 
}
.categoryFeatured:hover img {
  transform: scale(1.15); 
}

.categoryFeatured.odd .categoryImage,
.categoryFeatured.even .categoryDetails {
  float: left; 
}
.categoryFeatured.even .categoryImage,
.categoryFeatured.odd .categoryDetails {
  float: right;
  text-align: right; 
}

.categoryFeatured .categoryImage {
  height: 180px;
  overflow: hidden;
 }
  .categoryFeatured .categoryImage img {
    height: 180px; 
  }

.categoryFeatured .categoryDetails {
  padding: 15px; }
.categoryFeatured .categoryDetails p {
  color: var(--text-color);
  transition: all 0.5s;
  margin: 0; 
}
.categoryName {
  font-size: 21px;
  height: 120px;
  line-height: 125%;
  width: 150px; 
}

#featuredProducts,
#newProducts,
#homepageBrands {
  margin: 20px 0; 
}

#featuredProducts .pageContent h2,
#featuredProducts .pageContent h3,
#featuredProducts .pageContent h4,
#newProducts .pageContent h2,
#newProducts .pageContent h3,
#newProducts .pageContent h4,
#homepageContent h1,
#homepageBrands .pageContent h2,
#homepageBrands .pageContent h3,
#homepageBrands .pageContent h4 {
  font-size: 26px;
  text-align: center; 
}

#featuredProducts .homepageProductSliders,
#featuredProducts #topBrands,
#newProducts .homepageProductSliders,
#newProducts #topBrands,
#homepageBrands .homepageProductSliders,
#homepageBrands #topBrands {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease;
  -webkit-transition: opacity 1s ease; 
}

#featuredProducts .homepageProductSliders.slick-initialized,
#featuredProducts #topBrands.slick-initialized,
#newProducts .homepageProductSliders.slick-initialized,
#newProducts #topBrands.slick-initialized,
#homepageBrands .homepageProductSliders.slick-initialized,
#homepageBrands #topBrands.slick-initialized {
    visibility: visible;
    opacity: 1; 
}

.homepageCard {
  background: var(--white);
  border-width: 1px;
  border-style: solid;
  border-bottom-width: 10px;
  border-bottom-style: solid;
  margin-bottom: 30px;
  padding: 30px; 
}
.homepageCard h3 {
  border-bottom-style: solid;
  border-bottom-width: 5px;
  display: inline-block;
  font-weight: bold;
  margin: 0 0 20px 0;
  padding: 0 0 5px 0; 
}
.homepageCard p {
  margin-bottom: 20px; 
}
.homepageCard .socialIcons {
  margin-bottom: 32px;
  padding: 0; 
}
.homepageCard .socialIcons img {
  width: 48px; 
}

#topBrands {
  border: 1px solid var(--gray);
  background: var(--white);
  margin-bottom: 20px;
  padding: 10px 15px; 
}
#topBrands img {
  height: 60px;
  margin: 0 10px;
  max-width: 100%; 
}

/****** END OF HOMEPAGE STYLES ***/
/****** START OF PAGES STYLES ***/

#contactPage {
  margin: 10px 0 0 0; 
}

#sitePages,
#checkoutSection {
  padding: 10px 15px 15px 25px;
}

#sitePages .eventHolder .eventDetails .eventName span {
  float: right; }
.breadcrumb {
  border-radius: 0;
  background: transparent;
  border: 0;
  margin-bottom: 10px;
  padding: 0; 
}
  
.breadcrumb .active {
    color: var(--text-color); 
}
.breadcrumb a {
  color: var(--text-color); 
}

#sitePages .pageHeader,
#contactPage .pageHeader {
  margin: 0 0 10px 0; 
}
#sitePages .pageHeader h1,
#sitePages .pageHeader h2,
#contactPage .pageHeader h1,
#contactPage .pageHeader h2 {
  font-weight: bold;
  float: left;
  margin: 0;
}

#sitePages .pageHeader p,
#contactPage .pageHeader p {
  float: right;
  margin: 0;
  text-transform: capitalize; 
}
#sitePages .pageHeader p.filterByText,
#contactPage .pageHeader p.filterByText {
  margin: 6.5px 3px 0 0;
}

#sitePages .pageHeader p a,
#contactPage .pageHeader p a {
  color: var(--text-color); 
}
#sitePages .pageHeader h3,
#contactPage .pageHeader h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0; 
}
#sitePages .pageHeader .bootstrap-select,
#contactPage .pageHeader .bootstrap-select {
  float: right;
  width: 50%; 
}

#storeContactSlider h2,
#storeContactSlide h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 20px 0; 
}

#errorPage {
  margin: 40px 0;
  text-align: center; 
}
#errorPage h1 {
  font-weight: bold;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
#errorPage .btn-next {
  float: none; }

#sitePages .eventHolder {
  background: var(--white);
  border: 1px solid var(--gray);
  height: 160px;
  margin-bottom: 30px; 
}
#sitePages .eventHolder p {
  margin: 0; 
}
#sitePages .eventHolder .eventDates {
  float: left;
  text-align: center;
  width: 79px; 
}

#sitePages .eventHolder .eventDates p {
  color: var(--white);
  font-size: 16px;
  height: 79px;
  line-height: 18px;
  padding-top: 8px; 
}


#sitePages .eventHolder .eventDates p strong {
  display: block;
  margin-bottom: 6px; 
}
#sitePages .eventHolder .eventDates p span {
  display: block;
  margin-bottom: 4px;
  font-size: 26px;
  font-weight: bold; 
}
#sitePages .eventHolder .eventDates p.endDate {
  background: var(--text-color); 
}
#sitePages .eventHolder .eventDetails {
  float: left;
  line-height: 125%;
  padding: 10px 15px;
  width: 474px; 
}

#sitePages .eventHolder .eventDetails .eventName {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px; 
}
  
#sitePages .eventHolder .eventDetails .eventVenue {
  margin-bottom: 10px; 
}

.pageContent h1,
.pageContent h2,
.pageContent h3,
.pageContent h4,
.pageContent h5,
.pageContent h6 {
  font-weight: bold;
  margin: 0 0 20px 0; 
}

.pageContent p {
  line-height: 140%;
  margin: 0 0 20px -15px; 
}
.pageContent p:nth-last-child(1) {
  margin: 0; 
}

.pageContent p a { 
  color: var(--text-color); 
}

.pageContent ul {
  margin: 0;
  padding: 0 0 0 20px; 
}

.pageContent .newsArticle {
  float: left;
  border-bottom: 1px solid var(--white);
  clear: both;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0; 
}

.pageContent .newsArticle .newsItemDetails p {
  float: left;
  margin: 8px 0 0 10px; 
}

.pageContent .newsImage {
  float: right;
  margin-bottom: 15px;
  margin-left: 15px; 
}
  

.pageContent ul.newsListItems {
  margin: 0;
  padding: 0; 
}
.pageContent ul.newsListItems li {
  font-size: 16px !important;
  list-style: none;
  margin: 0 0 5px 0;
  padding: 0; 
}
.pageContent .knowledgeBaseItems {
  background-size: cover;
  background-repeat: no-repeat;
  height: 200px;
  margin-bottom: 30px; 
}
.pageContent .knowledgeBaseItems .knowledgeBaseOverlay {
  background: rgba(0, 0, 0, 0.4);
  height: 100%; 
}
.pageContent .knowledgeBaseItems .knowledgeBaseOverlay:hover {
  background: rgba(169, 12, 37, 0.5); 
}
.pageContent .knowledgeBaseItems .knowledgeBaseOverlay .knowledgeBaseDetail {
    color: var(--white);
    font-weight: bold;
    font-size: 21px;
    position: absolute;
    top: 35%;
    left: 15px;
    right: 15px;
    text-align: center; 
  }

.pageContent .pdfDocuments {
  margin-bottom: 20px; 
}
  .pageContent .pdfDocuments img {
    margin-right: 5px;
    width: 40px; 
  }
  .pageContent .pdfDocuments a {
    font-weight: bold;
    text-decoration: none; 
  }

.pageContent .knowledgeBaseVideos {
  margin-bottom: 20px; 
}

.pageContent .faqHeadingBlock {
  clear: both;
  height: 40px;
  line-height: 40px;
  margin: 20px 0 20px 0;
  padding: 0; 
}
.pageContent .faqHeadingBlock .faqHeadingBlockTitle {
  float: left;
  font-size: 14px;
  font-weight: bold;
  line-height: 40px;
  margin: 0 0 0 20px;
  }
.pageContent .faqHeadingBlock .faqHeadingBlockExpand {
  border: 0;
  background: transparent;
  display: inline-block;
  font-size: 21px;
  text-decoration: none;
  height: 40px;
  padding: 0 15px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.pageContent .faqHeadingBlock .faqHeadingBlockExpand:focus {
  outline: 0; 
}
.pageContent .faqHeadingBlock.active .faqHeadingBlockTitle {
  color: var(--white); 
}
.pageContent .faqHeadingBlock.active .faqHeadingBlockExpand i {
  color: var(--white); 
}

.pageContent .faqContentBlock h6 {
  margin: 0; 
}
 
.pageContent .brands {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 10px 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.pageContent .brands img {
  height: 60px;
  margin: 0 auto;
  /*
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    */
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
#allProducts {
  margin-top: 20px; 
}
#testimonialsSection .clientTestimonial .table {
  margin-bottom: 0; 
}
#testimonialsSection .clientTestimonial .table tr td {
  border-top: 0; 
}
#testimonialsSection .clientTestimonial .table tr td i {
  font-size: 21px; 
}
#testimonialsSection .clientTestimonial .table tr td p {
  font-style: italic; 
}

    #testimonialsSection .clientTestimonial .table tr td.quotes {
      width: 40px; }
    #testimonialsSection .clientTestimonial .table tr td.endquote {
      vertical-align: bottom; }

#testimonialsSection hr {
  margin: 10px 0; }
#testimonialsSection .clientTestimonial .table tr td p:last-child {
    margin-bottom: 0; }

.teamMemberCard {
  background: var(--white);
  border: 1px solid var(--gray);
  border-bottom: 10px solid var(--black);
  margin-bottom: 30px;
  padding: 15px; 
}

.teamMemberCard img {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}

.teamMemberCard:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05); 
}

#accountSection .btn-newAddress {
  background: var(--text-color);
  color: var(--white);
  font-weight: bold;
  float: left;
  margin: 0 0 10px 0; 
}

#accountSection .editAddress {
  cursor: pointer;
  float: left; }

#accountSection .deleteAddress {
  color: var(--red);
  cursor: pointer;
  clear: left;
  float: left; 
}

.showPasswordInput input,
.defaultOptions input,
.gdprOptions input {
  float: left; }

.showPasswordInput label,
.defaultOptions label,
.gdprOptions label {
  float: left;
  display: inline;
  margin: 0 0 0 5px;
  width: 90%; 
}

.panel {
  border: 1px solid var(--gray);
  background: transparent;
  border-radius: 0;
  box-shadow: unset; 
}
.panel.checkoutPanel {
  background: var(--white);
  padding: 20px;
  position: relative; 
}
.panel.checkoutPanel p {
  margin: 0 0 5px 0; 
}
.panel.checkoutPanel .bootstrap-select {
  width: 100% !important; 
}
.panel.checkoutPanel .bootstrap-select .dropdown-header {
  color: #CECECE;
  padding: 5px 20px; 
}
.panel.checkoutPanel .dropdown-menu .divider {
  margin: 9px 0 4px 0;
  }
.panel.checkoutPanel h4 span{
  background: var(--red);
}    

.panel.checkoutPanel .btn.btn-block {
  margin-top: 5px !important; 
}
.panel h4 {
  font-weight: bold;
  margin: 0 0 20px 0; 
}
.panel h4 span {
  border-radius: 50%;
  color: var(--white);
  display: block;
  float: left;
  margin: -6px 10px 0 0;
  padding-top: 5px;
  height: 30px;
  text-align: center;
  width: 30px; 
}
.panel p.requiredText {
  margin: 10px 0 0 0; 
}

.panel .loginTypeOptions,
.panel .deliveryAddressOptions {
  margin: 0 0 10px 0; 
}
.panel .loginTypeOptions input {
  float: left; 
}
.panel .loginTypeOptions label {
  font-weight: normal;
  margin-left: 5px; 
}
.panel .alreadyRegistered {
  float: right;
  margin: 7px 10px 0 0 !important; }
.panel hr.smallRule {
  margin: 0 0 10px 0;
 }
.panel hr.overviewRule {
  margin: 0 0 5px 0;
 }
.panel .ifisCompanyShow,
.panel .ifisNewCustomer,
.panel .ifHasCouponShow {
  display: none; 
}
.panel .ifisNewCustomer {
  margin-top: 10px; 
}
.panel .fakeInput {
  height: 34px;
  width: 100%;
 }
 
.panel .completeOrder {
  opacity: 0.2; 
}
.panel .securedPaymentImage {
  float: right;
  width: 140px; 
}

.panel-default > .panel-heading {
  color: var(--white);
  border: 0;
  border-radius: 0;
  font-size: 14px;
  font-weight: bold; 
}
  .panel-default > .panel-heading i {
    float: right;
    font-size: 18px; 
  }

.panel-default > .panel-body {
  background: var(--white);
}

.formLeft {
  clear: left;
  padding-left: 0; 
}
.formRight {
  padding-right: 0; 
}

.formFull {
  padding: 0; 
}

.formLeft .input-group-btn .btn,
.formRight .input-group-btn .btn,
.formFull .input-group-btn .btn {
  border-radius: 0;
  border-top: 1px solid var(--white);
  border-left: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  cursor: unset; 
}

.formLeft .input-group-btn .btn.active,
.formRight .input-group-btn .btn.active,
.formFull .input-group-btn .btn.active,
.formLeft .input-group-btn .btn:active,
.formRight .input-group-btn .btn:active,
.formFull .input-group-btn .btn:active {
  box-shadow: unset; 
}

label {
  margin-bottom: 0; 
}

.denotesText {
  margin: 5px 0 0 0; 
}

.descriptionOverview {
  padding-left: 0; 
}

.quantityOverview {
  padding: 0;
  text-align: center; 
}

.subtotalOverview,
.subtotalFinal,
.vattotalFinal,
.vattotalValueFinal,
.subtotalValueFinal,
.deliveryFinal,
.deliveryValueFinal,
.grandtotalFinal,
.grandtotalValueFinal {
  padding-left: 0;
  padding-right: 0;
  text-align: right; 
}

.grandtotalFinal p,
.grandtotalValueFinal p {
  margin: 0 !important; 
}

.btn-submit,
.btn-next,
.btn-search {
  background: var(--primary);
  color: var(--white);
  cursor: pointer !important;
  font-weight: bold;
  float: right; 
}
.paybtn{  
  width: 93%;
  margin-right: 3%;
}
.btn-submit:focus, .btn-submit:hover,
  .btn-next:focus,
  .btn-next:hover,
  .btn-search:focus,
  .btn-search:hover {
    color: var(--white); 
  }

.btn-submit.btn.disabled, .btn-submit.btn[disabled],
.btn-next.btn.disabled,
.btn-next.btn[disabled],
.btn-search.btn.disabled,
.btn-search.btn[disabled] {
    cursor: not-allowed !important; 
  }

.btn-search {
  border: 0 !important;
  height: 34px; 
}

.accountBlocks {
  background: var(--white);
  border: 1px solid var(--gray);
  height: 200px;
  margin-bottom: 10px;
  padding: 20px;
  text-align: center; 
}
.accountBlocks i {
  font-size: 36px; 
}
.accountBlocks h3 {
  font-weight: bold; 
}

.accountBlocks .btn-view {
  border: 1px solid var(--text-color);
  background: transparent;
  color: var(--text-color);
  width: 80px; 
}
.accountBlocks .btn-view:focus, .accountBlocks .btn-view:hover {
  color: var(--white); 
  background: var(--primary);
}
.forgotPassword,
.createAccountText {
  margin: 8px 0 0 0 !important; 
}


.forgotPassword a {
  color: var(--text-color);
}

#accountContactDetails {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 20px; 
}
#accountContactDetails .input-group-addon {
  color: var(--white);
}
#accountContactDetails .securedPaymentImage {
  float: left;
  width: 140px;
  }
   
#basketItems,
#basketReview {
  background: var(--white);
  border: 1px solid var(--gray);
  margin-bottom: 10px;
  padding: 20px; 
}
#basketItems h3,
#basketReview h3 {
  font-weight: bold;
  margin: 0 0 10px 0;
}
#basketItems h4,
#basketReview h4 {
  font-weight: bold;
  margin: 0 0 5px 0; 
}
#basketItems h5,
#basketReview h5 {
  font-weight: bold;
  text-align: right; 
}
        
#basketItems h5:last-child,
#basketReview h5:last-child {
  font-size: 18px; 
}
#basketItems h6,
#basketReview h6 {
  font-weight: bold;
  margin: 0; 
}
#basketItems p,
#basketReview p {
  font-size: 13px;
  line-height: 125%;
  margin: 0 0 10px 0; 
}
#basketItems .btn-estimate,
#basketReview .btn-estimate {
  background:  var(--text-color); 
  color:  var(--white); 
  font-weight: bold;
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
#basketItems .btn-estimate:hover,
#basketReview .btn-estimate:hover {
  color: var(--white); 
}
#basketItems .btn-group,
#basketReview .btn-group {
  width: 100%; 
}

#basketItems .basketImage {
  text-align: center; 
}

  
#basketItems .form-control {
  height: 40px;
  text-align: center; }
.basketActions .btn.btn-enquiry {
  float: left; 
}

textarea.form-control.messageBox,
textarea.form-control.commentBox {
  height: 140px;
  resize: none;
 }

.contactBlocks {
  margin-bottom: 10px; 
}

.contactBlocks h3 {
  font-weight: bold;
  margin: 0 0 5px 0; 
}
.contactBlocks p {
  line-height: 150%;
  margin: 0; 
}
.contactBlocks p a {
  color: var(--text-color); 
}
.contactBlocks hr {
  margin: 10px 0;
 }

#moreStoreAddresses p {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  text-align: center; 
}
#moreStoreAddresses p span {
cursor: pointer; }
#moreStoreAddresses p span:hover {
  color: var(--text-color); 
}
#moreStoreAddresses p #previousStore {
  float: left; 
}
#moreStoreAddresses p #nextStore {
  float: right; 
}

.googleMap {
  border-top: 1px solid var(--white); 
  border-bottom: 1px solid var(--white); 
  margin-top: 40px; 
}

.lessPadding {
  padding: 0 10px; 
}

#categoryProducts {
  margin: 0 -10px; 
}
.categoryThumbnail {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.categoryThumbnail.listDisplay {
  width: 100% !important; 
}
.categoryThumbnail.listDisplay .thumbnail {
  margin-bottom: 10px;
 }

#basketItems p {
  font-size: 16px;
  margin: 0; 
}
 
#basketItems p span {
  font-size: 14px; 
}

#basketItemPrice {
  padding-right: 0;
  text-align: right; 
}

.googleMap iframe {
border: 0;
width: 100%; }
.categoryThumbnail.listDisplay .productImage {
  border-right: 1px solid var(--white);
  height: 115px;
  float: left;
  margin: 0 10px 0 0;
  padding: 10px;
  width: 140px; }   
.categoryThumbnail.listDisplay .productImage img { 
  width: auto;
 }
.categoryThumbnail.listDisplay .productImage .tag {
  right: 0; 
}
.categoryThumbnail.listDisplay .productImage i.viewProduct {
  left: 8px; 
}
.categoryThumbnail.listDisplay .thumbnailProductName {
  float: left;
  margin-bottom: 0;
  padding: 0;
  width: 480px; 
}


.categoryThumbnail.listDisplay .thumbnailProductName .thumbnailTable {
  height: 60px; }
.categoryThumbnail.listDisplay .thumbnailProductName p {
  text-align: left; 
}
.categoryThumbnail.listDisplay .thumbnailProductPrice {
float: right;
height: 60px;
margin: 10px 10px 0 0;
text-align: right;
width: 200px; 
}
.categoryThumbnail.listDisplay .stockUnitOptions {
margin: 5px 0 0 0;
padding: 0; 
}
.categoryThumbnail.listDisplay .thumbnailProductPurchase {
clear: right;
margin: 0;
display: flex;
padding: 5px;
}
.categoryThumbnail.listDisplay .thumbnailProductPurchase p {
  float: left !important;
  text-align: left;
  width: 45%;
}
.categoryThumbnail.listDisplay .thumbnailProductPurchase .input-group,
.categoryThumbnail.listDisplay .thumbnailProductPurchase .btn-viewmore,
.categoryThumbnail.listDisplay .thumbnailProductPurchase .btn-loginforprices {
  float: left !important;
  width: 180px; 
}
.categoryThumbnail.listDisplay .thumbnailProductPurchase .btn-buynow {
  float: right;
  margin-top: 0; 
  width: auto; 
}

.thumbnail {
  border-color: var(--white);
  border-radius: 0;
  padding: 0;
  position: relative;
}
.thumbnail a:focus {
  outline: unset; 
}
.thumbnail .productImage {
  height: 220px;
  margin: 10px 0 0 0;
  overflow: hidden;
  position: relative;
  text-align: center; 
}
.thumbnail .productImage img {
  height: 100%;
  margin: 0 auto;
  /* position: absolute; */
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.thumbnail .productImage .tag {
  color: var(--white);
  padding: 2px 8px;
  position: absolute;
  right: 8px;
  top: 0; 
}
.thumbnail .productImage .tag.onSale {
  background: var(--green);
}
.thumbnail .productImage .tag.new {
  background: var(--blue);
}
.thumbnail .productImage i {
  color: var(--text-color);
  font-size: 21px;
  position: absolute;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
.thumbnail .productImage i.viewProduct {
  left: -30px;
  bottom: 10px; 
}
.thumbnail .productImage .featured {
  background-image: url("../images/icons/featured-icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  height: 21px;
  width: 21px;
  position: absolute;
  right: 8px;
  top: 0; 
}

.thumbnail:hover img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15); 
}
.thumbnail:hover i.viewProduct {
  left: 8px; 
}

a:hover.thumbnail,
a:focus.thumbnail {
  text-decoration: none; 
}

a.thumbnail.active .thumbnailCatName,
a.thumbnail:focus .thumbnailCatName,
a.thumbnail:hover .thumbnailCatName,
a.thumbnail.active .thumbnailProductName,
a.thumbnail:focus .thumbnailProductName,
a.thumbnail:hover .thumbnailProductName {
  background: transparent;
 }

.thumbnailCatName {
  margin: 0;
  padding: 5px 10px; 
}
.thumbnailCatName .thumbnailTable {
  height: 40px;
  width: 100%; 
}
.thumbnailCatName .thumbnailTable p {
  color: var(--text-color);
  font-size: 16px;
  line-height: 125%;
  margin: 0;
  height: 60px;
  text-align: center; 
}
.thumbnailCatName .thumbnailTable p span {
  font-size: 14px; 
}

.thumbnailProductName {
  margin: 10px 0;
  padding: 0 10px; 
  height: 80px;
}
.thumbnailProductName .thumbnailTable {
  height: 100px;
  width: 100%; }
.thumbnailProductName .thumbnailTable td {
  vertical-align: top; }
.thumbnailProductName .thumbnailTable td p {
  color:  var(--text-color);
  font-size: 16px;
  line-height: 125%;
  margin: 0;
  text-align: center; 
}
.thumbnailProductName .thumbnailTable td p span {
  font-size: 14px; 
}

.thumbnailProductPrice {
  color:  var(--text-color);
  font-size: 16px;
  font-weight: bold;
  /*line-height: 110%;*/
  margin: 0;
  text-align: center; 
}
  
.thumbnailProductPrice p {
  margin: 0; 
}
.thumbnailProductPrice p span.small {
  font-size: 14px;
  font-weight: normal; 
}
.thumbnailProductPrice p span.rrp {
  color: var(--red); 
}

.priceUnitOptions { padding: 0 10px 15px; }
.categoryThumbnail.listDisplay .priceUnitOptions { padding: 0; }
.priceUnitOptions span.small {
  display: inline;
  font-size: 14px;
  font-weight: normal; 
}
.categoryThumbnail .stockUnitDropDown {
  display: inline-block;
  height: 20px;
  width: 60%; 
}
.productSections .stockUnitDropDown {
  display: inline-block;
  width: 140px; 
}
.productSections #units {
  display: inline-block;
  width: 100%; 
}
.categoryThumbnail .stockUnitDropDown .bootstrap-select > .dropdown-toggle {
  border: 0;
  color: var(--text-color);
  line-height: 1;
  margin-top: -2px;
  padding: 0 12px; 
}
.categoryThumbnail .priceByStockUnit { font-size: 14px; }
.categoryThumbnail .priceByStockUnit img { width: 14px; }

.stockUnitOptions, .thumbnailProductPurchase {
  margin: 10px 0;
  padding: 0 10px; 
}
.thumbnailProductPurchase p {
  margin: 0;
  height: 34px;
  text-align: center;
  line-height: 34px; 
}
.thumbnailProductPurchase .input-group,
.thumbnailProductPurchase p {
  float: left;
  width: 45%; 
}
.thumbnailProductPurchase .input-group .input-group-addon {
  background: transparent;
  border: 0;
  padding: 0; 
}
.thumbnailProductPurchase .input-group .form-control {
  border: 1px solid var(--gray);
  padding: 5px;
  text-align: center; 
}
.thumbnailProductPurchase .input-group .btn {
  background: transparent;
  color: var(--text-color);
  padding: 6px 5px; 
}
.thumbnailProductPurchase .input-group .btn:hover {
  background: transparent;
  }
.thumbnailProductPurchase .btn-addtobasket {
  color: var(--white);
  float: right; 
}
.thumbnailProductPurchase .btn-addtobasket:hover {
  background: var(--text-color);
}
    
.thumbnailProductPurchase .btn-loginforprices,
.thumbnailProductPurchase .btn-viewmore,
.thumbnailProductPurchase .btn-remove {
  background: transparent;
  width: 100%; 
}
.thumbnailProductPurchase .btn-loginforprices:hover,
.thumbnailProductPurchase .btn-viewmore:hover,
.thumbnailProductPurchase .btn-remove:hover {
  color: var(--white);
}

#basketQuantity {
  margin-top: 40px;
  padding-left: 15px; 
}
.basketDetails .input-group {
  float: left;
  width: 70%; 
}
.basketDetails .input-group .input-group-addon {
  background: transparent;
  border: 0;
  padding: 0; }
.basketDetails .input-group .btn {
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--text-color);
  padding: 12px 5px; 
}
.basketDetails .input-group .btn:hover {
  background: transparent;
 }
.basketDetails .input-group .input-number {
padding: 5px;
 }

.productSections .input-group {
  width: 200px; 
}

.productSections .input-group .input-group-addon {
  background: transparent;
  border: 0;
  padding: 0; 
}
.productSections .input-group .btn {
  background: transparent;
  border-radius: 0;
  color: var(--text-color);
  padding: 6px 5px; 
}
.productSections .input-group .btn:hover {
  background: transparent; 
}
.productSections .input-group .form-control {
  border: 1px solid var(--gray);
  text-align: center; 
}
.basketDetails .btn-update {
  background: var(--text-color);
  color: var(--white);
  font-weight: bold;
  float: right; 
}

.deleteBasketItem {
  color: var(--red);
  clear: both;
  cursor: pointer;
  display: inline-block;
  margin: 10px 0 0 0 !important; 
}

.deleteBasketItem:hover {
  color: var(--red); 
}

.basketSubtotal {
margin-top: 40px;
text-align: right; 
}
.basketSubtotal p {
  margin-bottom: 0 !important; 
}

.thumbnailProductPurchase .btn-buynow,
.productSections .btn-buynow {
  color: var(--white);
  font-weight: bold;
  float: right; 
}
.thumbnailProductPurchase .btn-buynow:hover,
.productSections .btn-buynow:hover {
  background: var(--text-color); 
}

#quickCategorySidebar {
  padding-right: 0;
 }
  
#quickCategorySidebar #quickCategoryContent #quickCategoryHeader {
  font-size: 18px;
  font-weight: bold;
  padding: 6px 15px 0 15px; 
}
  #quickCategorySidebar #quickCategoryContent {
    border-left: 1px solid var(--white);
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    background: var(--white); 
  }

#quickCategorySidebar #quickCategoryContent ul,
#categoriesSidebar ul {
  margin: 0;
  padding: 0; 
}
#quickCategorySidebar #quickCategoryContent ul li,
#categoriesSidebar ul li {
  margin: 0;
  padding: 5px 15px;
  list-style: none; 
}

#quickCategorySidebar #quickCategoryContent ul li.divider,
#categoriesSidebar ul li.divider {
  height: 1px;
  margin: 0;
  overflow: hidden;
  background-color: var(--white);
  padding: 0; 
}
#quickCategorySidebar #quickCategoryContent ul li a,
#categoriesSidebar ul li a {
  color: var(--text-color); 
}
#quickCategorySidebar #quickCategoryContent ul li ul,
#categoriesSidebar ul li ul {
  border-left: 1px solid var(--white); 
}
#quickCategorySidebar #quickCategoryContent ul li ul li,
#categoriesSidebar ul li ul li {
  list-style: url("../images/bullet.png");
  margin-left: 15px;
  padding: 2.5px 0; 
}
#quickCategorySidebar #quickCategoryContent ul li ul li:last-child,
#categoriesSidebar ul li ul li:last-child {
  padding-bottom: 0; 
}

  

#quickCategorySidebar #quickCategoryContent .parentFilter,
#categoriesSidebar .parentFilter {
display: block;
font-weight: bold;
margin: 0;
padding: 0; 
}
#quickCategorySidebar #quickCategoryContent .parentFilter i,
#categoriesSidebar .parentFilter i {
color: var(--text-color);
cursor: pointer;
float: right;
font-size: 14px;
margin-top: 2px; 
}
#quickCategorySidebar #quickCategoryContent .parentFilter i:hover,
#categoriesSidebar .parentFilter i:hover {
  color: var(--text-color); }

.sidebarSpacer {
  height: 20px; }


#sizeOptions, #colourOptions, 
#armOptions, #woodOptions,
#frameOptions, #lengthOptions {
    border: 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
#dynamicColours, #dynamicWoods,
#dynamicFrames { float: left; margin-top: 10px; }

#armOptions input[type=radio],
#lengthOptions input[type=radio],
#packOptions input[type=radio] {
  position: absolute;
  left: -10000px;
}
#armOptions input[type=radio] + label,
#lengthOptions input[type=radio] + label,
#packOptions input[type=radio] + label {
  background-color: var(--text-color);
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
  display: block;
  font-weight: normal;
  float: left;
  flex-grow: 1;
  margin: 0 10px 10px 0;
  padding: 8px 15px;
  text-align: center;
  text-indent: -10000;
}

#dynamicArms,
#dynamicLengths,
#dynamicPacks {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  margin-top: 10px;
}

#colourOptions input[type=radio],
#woodOptions input[type=radio],
#frameOptions input[type=radio] {
  position: absolute;
  left: -10000px;
}
#colourOptions input[type=radio] + label,
#woodOptions input[type=radio] + label,
#frameOptions input[type=radio] + label {
  background-size: cover;
  background-repeat: no-repeat;
  border: 1px solid var(--text-color);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: block;
  font-weight: normal;
  float: left;
  height: 42px;
  margin: 0 10px 10px 0;
  text-indent: -10000;
  width: 42px;
}


#colourOptions input[type=radio] + label:last-child,
#woodOptions input[type=radio] + label:last-child,
#frameOptions input[type=radio] + label:last-child { margin-right: 0; }
#colourOptions input[type=radio] + label i,
#woodOptions input[type=radio] + label i,
#frameOptions input[type=radio] + label i { font-size: 21px; }
#colourOptions input[type=radio]:checked + label span,
#woodOptions input[type=radio]:checked + label span,
#frameOptions input[type=radio]:checked + label span {
  background-image: url('../images/radio-image-checked.png');
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
  height: 40px;
  width: 40px;
}

.sizeOptionsItem {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  background-color: #eee;
  box-shadow: 0 1px 2px rgba(35,31,32,.2);
  min-height: 42px;
}
.sizeOptionsItem:hover {
  background-color: var(--white);
}

.sizeOptionName {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 42px;
    padding: 0 10px;
}
.sizeOptionName p { 
  margin-top: 2px !important; 
  line-height: 125% !important; 
}
.sizeOptionPrice { 
  text-align: right; 
}
.sizeOptionPrice p { 
  margin-top: 4px !important; 
  line-height: 105% !important; 
}
.sizeOptionPrice p strong { 
  font-size: 18px; 
}
.sizeOptionQty {
  display: flex;
  flex-shrink: 0;
}
.sizeOptionQty .input-group { 
  width: 160px; 
}
  
#productSection p.totalCosts { 
  font-size: 18px !important; 
}
#productSection p.totalPerItem { 
  font-size: 16px !important; 
}

.variantProducts {
  padding: 0; 
}
.productSections {
  margin: 10px 0 20px 0;
  padding: 0; 
}
.productSectionsAlt {
   margin: 10px 0 0 0;
   padding: 0; 
  }
  .productSections h2,
  .productSections h3,
  .productSections h4,
  .productSectionsAlt h2,
  .productSectionsAlt h3,
  .productSectionsAlt h4 {
    font-weight: bold;
    font-size: 16px;
    margin: 0; 
  }
  .productSections p,
  .productSectionsAlt p {
    margin-bottom: 0 !important; 
  }
  .productSections .btn-group {
    margin-top: 5px; 
  }
  

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%; 
}

#units { 
  width: 50%; 
}

#qb_table { 
  margin-top: 10px; 
}
.qtyBreaks{
  display: flex;
  gap: 150px;
  background-color: var(--gray);
}
.qtyPriceBlocks {
  display: inline-block;
  margin: 10px 15px 20px 0;
  text-align: center;
}
.qtyPriceBlocks span {
  display: block;
  font-weight: bold;
  font-size: 16px;
  margin: 0;
  padding: 3px 10px;
}

.qtyPriceBlocks .qtyBlock { 
  color: var(--white); 
  padding: 10px;
}
.qtyPriceBlocks .priceBlock { 
  background: var(--gray); 
  padding: 10px;
}

#productPageImageHolder {
  margin-top: 10px; 
}
#productPageImageHolder .productPageImage {
  border: 1px solid var(--gray);
  padding: 10px;
  position: relative;
  margin-bottom: 10px;
  text-align: center; 
}
#productPageImageHolder .productPageImage .tag {
  color: var(--white);
  padding: 2px 8px;
  position: absolute;
  right: 8px;
  top: 10px;
  }
  #productPageImageHolder .productPageImage .tag.onSale {
    background: var(--green); 
  }
  #productPageImageHolder .productPageImage .tag.new {
    background: var(--blue); 
  }
#productPageImageHolder .productPageImage a {
  outline: 0; 
}
#productPageImageHolder .productPageImage img {
  max-width: 100%;
  margin: auto; 
}

#mainCategoryDetails {
  margin-bottom: 10px; 
}
#mainCategoryDetails h1 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 10px 0; 
}
  #mainCategoryDetails p {
    margin-bottom: 0; 
  }
  
#subCategoriesHeading {
padding: 0 10px;
text-align: center;
}
#subCategoriesHeading h2 {
  font-size: 26px;
  font-weight: bold;
  margin: 0 0 10px 0; 
}

#productSection {
  background: var(--white);
  border: 1px solid var(--gray);
  padding: 15px 20px; 
}
#productSection #productName h1 {
  font-weight: bold;
  font-size: 26px;
  margin: 0; 
}

#productSection #productName p {
  margin: 0; 
}
#productSection .productBrandImage img {
  float: right;
  height: 57px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  }
#productSection .productBrandImage img:hover {
  transform: scale(1.1); 
}
  
.productPageVat { 
  margin-top: 5px; 
}

#productSection p {
  margin: 0 0 10px 0;
  line-height: 140%;
 }

#productSection p.bulkPricing {
  line-height: 125%; 
}
#productSection p span.rrp {
  color: var(--red); 
}
#productSection p.bulkPricing {
  margin-top: 3px; 
}
/*
.gapFiller { height: 39px; width: 100%; }
*/
#filterSortViewOptions {
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  margin-bottom: 10px;
  height: 34px;
  line-height: 34px; 
}

#filterCategoriesOption {
  padding: 0; 
}


#displayPricesVat {
  padding: 0;
  text-align: right;
  }
#displayPricesVat .pretty {
  font-size: 18px; 
}
#displayPricesVat .pretty .state label {
  font-size: 18px !important; 
}

#displayAsOption {
  padding: 4px; 
}

#filterCategories {
  cursor: pointer;
  font-size: 18px;
  margin: 0; 
}
#filterCategories i {
    font-size: 18px; 
}

#sortByOption #sortByOptions {
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: right;
  border: 0;
  font-size: 14px;
  padding: 0 0 7px 2px;
  width: 60%;
}

      
#sortByOption #sortByOptions:focus {
outline: unset; 
}

#displayAsList,
#displayAsGrid {
cursor: pointer;
font-size: 24px;
float: right;
margin: 0 0 0 10px;
 }

.bootstrap-select > .dropdown-toggle {
border: 1px solid var(--gray);
border-radius: 0;
 }
.bootstrap-select > .dropdown-toggle:hover {
background: transparent; 
}
.bootstrap-select.btn-group .dropdown-menu.inner {
  padding: 0; 
}

.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover,
.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default,
.btn-default.focus,
.btn-default:focus,
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background: transparent;
  outline: 0; 
}

.bootstrap-select .dropdown-toggle:focus {
  outline: 0 !important; 
}

.nav-tabs > li > a {
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 0;
  font-weight: bold;
  margin: 0;
  padding: 10px 15px; 
}
.nav-tabs > li > a:focus, .nav-tabs > li > a:hover {
  border-color: var(--text-color);
  background: var(--white);
  color: var(--white);
  outline: 0; 
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
  color: var(--white); 
}

.tab-content {
  background: var(--white);
  border-left: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  border-right: 1px solid var(--white);
  padding: 15px; 
}
.tab-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 10px 0; 
}

.tab-content p:nth-last-child(1) {
  margin: 0; 
}
.tab-content p a {
  color: var(--text-color);
  font-weight: bold; 
}
.tab-content p {
  margin: 0 0 10px 0;
  line-height: 140%; }
.tab-content .reviewRating {
  margin: 0 0 10px 0; 
}
.tab-content .reviewRating p {
  float: left;
  margin: 0 !important;
  width: 80px; 
}
.tab-content li {
  margin: 0;
  line-height: 140%; 
}
.tab-content .pdfSpecSheets {
  margin: 0 0 10px 0;
  padding: 0; 
}
.tab-content .pdfSpecSheets li {
  margin: 0 0 10px 0;
  list-style: none; 
}
  .tab-content .pdfSpecSheets li img {
    margin-right: 5px; width: 80px; 
  }
  .tab-content .pdfSpecSheets li a {
    font-weight: bold;
    text-decoration: none; 
  }

.pagination {
  float: right;
  margin: 0; 
}

.pagination > li {
  float: left; 
}
  
.pagination > li > a,
.pagination > li > span {
  border: 1px solid var(--gray);
  color: var(--text-color);
  font-weight: bold;
  padding: 6px 12px;
  text-align: center; 
}

.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-radius: 0; 
}

.pagination > li > a:focus,
.pagination > li > a:hover,
.pagination > li > span:focus,
.pagination > li > span:hover {
  background: var(--text-color);
  border-color: var(--text-color);
  color: var(--white); 
}

.pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
  color: var(--white); 
}

.spacer {
  clear: both; 
}

/****** END OF CATEGORY / PRODUCTS STYLES ***/
/****** START OF REVIEW / RATINGS STYLES ***/
.submitReview .heading {
  font-weight: bold;
  margin: 0 0 20px 0; }
  

.submitReview img {
  border: 1px solid #E7E7E7;
  margin-bottom: 10px; }

.ratings {
  text-align: center; }
  .ratings h4 {
    font-weight: bold;
    margin: 0 0 10px 0; }


.br-theme-bootstrap-stars .br-widget {
  height: 28px;
  white-space: nowrap; }

.br-theme-bootstrap-stars .br-widget a {
  font: normal normal normal 24px/1 'Glyphicons Halflings';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  text-decoration: none;
  margin-right: 4px; }

.br-theme-bootstrap-stars .br-widget a:after {
  content: '\e006';
  color: #d2d2d2; 
}

.br-theme-bootstrap-stars .br-widget a.br-active:after {
  color: var(--orange); 
}

.br-theme-bootstrap-stars .br-widget a.br-selected:after {
  color: var(--orange); 
}

.br-theme-bootstrap-stars .br-widget .br-current-rating {
  display: none; }

.br-theme-bootstrap-stars .br-readonly a {
  cursor: default; }

/****** END OF REVIEW RATINGS STYLES ***/
/****** START OF FOOTER STYLES ***/
footer {
  background: var(--white);
  border-top: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  padding: 30px 0;
  margin-top: 40px; 
}
footer .footerHeading a:focus, footer .footerHeading a:hover {
  color: var(--text-color); 
}

#footerContact .icons { padding-right: 10px; vertical-align: top; }
#footerContact .icons img { height: 32px; }
#footerContact ul { 
   list-style: none;
   margin-left: -40px;
}
 #footerContact ul li{ 
  font-size: 15px;
  line-height: 2.5em;
 }
 #footerContact ul li a{ 
    color: var(--text-color);
    text-decoration: none;
 }
 #footerContact ul li a:hover {
  color: var(--primary);
}
#footerContact p {
  color: var(--text-color); }

.footerLinks ul {
  margin: 0;
  padding: 0; }
.footerLinks ul li { list-style: none; }
.footerLinks ul li a {
  color: var(--text-color); 
  text-decoration: none;
  font-weight: 600;
}
.footerLinks ul li a:hover {
  color: var(--primary);
}

#footerSocial ul {
  margin: 0 0 15px;
  padding: 0; 
}
#footerSocial ul li {
  display: inline-block;
  list-style: none; 
}
#footerSocial ul li.last {
  margin-right: 0; 
}
  
#trustpilotLogo { margin-left: 20px; }
  
#siteFooter {
  height: 40px;
  line-height: 40px; 
}
#siteFooter p {
  color: var(--white);
  margin: 0; 
}
#siteFooter p a {
  color: var(--white); 
}

.footerCopyright a {
  color: var(--text-color); 
}

.footerDesignBy {
  text-align: right; 
}

#backToTop {
  cursor: pointer;
  height: 40px;
  position: fixed;
  bottom: 50px;
  text-align: center;
  right: -50px;
  width: 40px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s; 
}
#backToTop.show {
  right: 50px; 
}
#backToTop i {
  color: var(--white);
  font-size: 32px;
  margin-top: 2px; 
}
#backToTop:hover {
  background: var(--text-color); }

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-bottom: 16px solid blue;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite; 
}
   
.displaynone{
  display: none;
}
.displayblock{
  display: block;
}
.cookie{
  color:var(--red);
  text-decoration:underline;
}    

.thumbnailCatName .thumbnailTable h3 {
  color: var(--text-color);
  font-size: 16px;
  line-height: 125%;
  margin: 0;
  text-align: center; 
}
.thumbnailCatName .thumbnailTable h3 span {
  font-size: 14px; 
}

.brandItems img:hover{
    transform: scale(0.8);
    transition: 10ms;
}      

.pageContent .brands{
  width: 150px;
  height: 120px;
  margin: 5px;
  padding: 5px;
}
.pageContent .brands p{
  font-weight: 600;
  color: var(--text-color);
  padding: 10px 0px 0px 0px;
}
.pageContent .brands img{
  width: 100%;
}
.pageContent .brands img:hover{
  transform: scale(0.8);
  transition: 10ms;
} 

.contact a span{
  color: var(--text-color);
}
.logout a {
  color: var(--text-color);
}

.payment_type{
  border: 1px solid #ccc;
  text-align: center;
  margin-top: -10px;
  padding: 10px;
}
.payment_type img{
  height: 50px;
}

.payment-list{
  margin-top: 10px;
}
.addressForm{
  cursor: pointer;
}

.confirm{
  margin-top: 5px;
}

.validationMessage{
  padding-left: 14px;
  color: var(--red);
  font-weight: 600;
}

.testimonial {
  border: 2px solid #ccc;
  background-color: var(--gray);
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0
}

.testimonial::after {
  content: "";
  clear: both;
  display: table;
}

.testimonial img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

.testimonial span {
  font-size: 20px;
  margin-right: 15px;
}

/* start media query */
@media (min-width: 1200px) {
      .table-striped > tbody > tr > td,
      .table-striped > tbody > tr > th,
      .table-striped > tfoot > tr > td,
      .table-striped > tfoot > tr > th,
      .table-striped > thead > tr > td,
      .table-striped > thead > tr > th {
        font-size: 14px !important; 
      } 
      .searchWebsite p {
        font-size: 14px !important; 
      } 
      .loginRegister label,
      .loginRegister p {
        font-size: 14px !important; 
      } 
      .cookies .cookieButton .btn {
        font-size: 14px !important; 
      } 
      .navbar-nav > li,
      .dropdown-menu > li {
        font-size: 14px !important; 
      } 
      #basketContents .clearFilter .btn,
      #basketContents .applyFilter .btn,
      #basketContents .viewBasket .btn,
      #basketContents .proceedToCheckout .btn,
      #filterContents .clearFilter .btn,
      #filterContents .applyFilter .btn,
      #filterContents .viewBasket .btn,
      #filterContents .proceedToCheckout .btn {
        font-size: 14px !important; 
      } 
      #siteSearch { 
        padding: 15px 0 0 15px; 
        width: 30%; 
      } 
      #newsletter .btn-subscribe {
        font-size: 14px !important; 
      } 
      #welcome_signup .btn-myaccount {
        font-size: 14px !important; 
      }
      #basketContents .basketDetails p,
      #filterContents .basketDetails p {
        font-size: 14px !important; 
      } 
      .cookies p {
        font-size: 14px !important; 
      }
      .breadcrumb li {
        font-size: 14px !important; 
      } 
      #sitePages .pageHeader h1,
      #sitePages .pageHeader h2,
      #contactPage .pageHeader h1,
      #contactPage .pageHeader h2 {
        font-size: 26px; 
      } 
      #sitePages .pageHeader p,
    #contactPage .pageHeader p {
      font-size: 14px !important; 
    } 
    .defaultOptions {
      font-size: 14px !important; 
    } 
    .btn-continue,
    .btn-previous,
    .btn-enquiry,
    .btn-cancel {
      font-size: 14px !important; 
    } 
    .btn-checkout {
      font-size: 14px !important; 
    } 
    .btn-login,
    .btn-delete {
      font-size: 14px !important; 
    }
    .btn-more {
      font-size: 14px !important; 
    } 
    .form-control {
      font-size: 14px !important;
     }
    .sh-top--vat a {
      font-size: 14px !important; 
    } 
    #siteLogo img {
      max-height: 105px; 
    } 
    #errorPage p {
      font-size: 16px !important; 
    } 
    .pageContent h1,
    .pageContent h2,
    .pageContent h3,
    .pageContent h4,
    .pageContent h5,
    .pageContent h6 {
      font-size: 21px; 
    } 
    .pageContent p {
      font-size: 14px !important; 
      line-height: 2em;
    }
    .pageContent ul li {
      font-size: 14px !important; 
    } 
    .pageContent .newsArticle p.newsHeading {
      font-size: 18px !important; 
    }
    .pageContent .faqContentBlock h6 {
      font-size: 14px !important; 
    } 
    #testimonialsSection .clientTestimonial .table tr td p {
      font-size: 14px !important; 
    } 
    #testimonialsSection .clientTestimonial .table tr td strong {
      font-size: 14px !important; 
    }
    #accountSection .btn-newAddress {
      font-size: 14px !important; 
    }
    .panel.checkoutPanel .btn {
      font-size: 14px !important; 
    }
    .panel p {
      font-size: 14px !important; 
    } 
    .panel .mailingOptions,
    .panel .loginTypeOptions,
    .panel .deliveryAddressOptions {
      font-size: 14px !important; 
    } 
    .formLeft.formFullDesktop,
    .formRight.formFullDesktop {
      clear: none;
      padding: 0 15px; 
    }
    label {
      font-size: 14px !important; 
    } 
    .denotesText {
      font-size: 14px !important; 
    } 
    .grandtotalFinal p,
    .grandtotalValueFinal p {
      font-size: 18px !important; 
    }
    .btn-submit,
    .btn-next,
    .btn-search {
      font-size: 14px !important; 
    }
    .accountBlocks h3 {
      font-size: 14px !important; 
    }
    .accountBlocks p {
      font-size: 14px !important; 
    }
    .accountBlocks .btn-view {
      font-size: 14px !important; } 
.forgotPassword,
.createAccountText {
  font-size: 14px !important; } 
    .normalText {
      font-size: 14px !important; }
  #basketItems h3,
  #basketReview h3 {
    font-size: 18px; } 
  #basketItems h4,
  #basketReview h4 {
    font-size: 15px; } 
  #basketItems h5,
  #basketReview h5 {
    font-size: 15px; } 
  #basketItems h6,
  #basketReview h6 {
    font-size: 18px; } 
  #basketItems .btn-estimate,
  #basketReview .btn-estimate {
    font-size: 14px !important; }
  #basketItems .form-control {
    height: 40px; 
  } 
  .contactBlocks h3 {
    font-size: 16px; 
  } 
  .contactBlocks p {
    font-size: 14px !important; 
  } 
  .googleMap iframe {
    height: 400px; 
  } 
  .basketDetails .input-group .btn {
    font-size: 14px !important; 
  } 
  .basketDetails .btn-update {
    font-size: 14px !important;
    } 
    .deleteBasketItem {
      font-size: 14px !important; 
    }
    .productSections .btn-buynow {
      font-size: 14px !important; 
    } 
    #quickCategorySidebar #quickCategoryContent ul li,
    #categoriesSidebar ul li {
      font-size: 14px !important; 
    } 
    #mainCategoryDetails p {
    font-size: 14px !important; 
  } 
    #productSection p {
      font-size: 14px !important; 
    } 
    #productSection p .priceLarge {
      font-size: 21px !important; 
    }
    .bootstrap-select > .dropdown-toggle {
      font-size: 14px !important;
    } 
      .nav-tabs > li {
      font-size: 14px !important; 
    } 
    .tab-content p {
      font-size: 14px !important; } 
    .tab-content li {
      font-size: 14px !important; 
    } 
    .pagination > li > a,
    .pagination > li > span {
      font-size: 14px !important; } 
    .spacer {
      height: 30px; } 
    .submitReview .heading {
      font-size: 18px; } 
    .ratings h4 {
      font-size: 18px; } 
    #footerContact p {
      font-size: 14px !important; 
    } 
    #footerContact { 
      width: 30%; 
    }
    .footerLinks { 
      width: 18%; 
    }
    .footerLinks ul li { 
      font-size: 14px !important; 
      margin: 0 0 15px 0; 
    }
    #footerSocial { 
      width: 34%;
    }
    #footerSocial ul li { 
      margin-right: 10px; 
    }
    #footerSocial ul li img { 
      height: 36px; 
    }
    #footerSocial .securedPaymentImage { 
      height: 40px;
      margin: 0 20px 15px 0; 
    }
    #siteFooter p {
      font-size: 14px !important; 
    } 

}


@media (max-width: 991px) {
    .table-striped > tbody > tr > td,
    .table-striped > tbody > tr > th,
    .table-striped > tfoot > tr > td,
    .table-striped > tfoot > tr > th,
    .table-striped > thead > tr > td,
    .table-striped > thead > tr > th {
      font-size: 13px !important; 
    } 
    .searchWebsite #searchForm {
      margin: 0 15px; 
    } 
    .searchWebsite p {
      margin: 0 15px !important; 
    } 
    .searchWebsite p {
      font-size: 13px !important; 
    } 
    .searchWebsite .btn {
      font-size: 14px;
      height: 40px; 
    } 
    .cookies .cookieButton .btn {
      font-size: 13px !important; 
    }      
  .navbar-nav > li,
  .dropdown-menu > li {
      font-size: 13px !important; 
  } 
  .container {
    width: auto; 
  }
  .navbar-header {
    float: none; 
  }
  .navbar-header p {
    float: right;
    margin: 16px 5px 0 0; 
  } 
  .navbar-header p {
    font-size: 13px !important; 
  } 
  .headerNav p {
    color: var(--white); 
    }
    .headerNav .navbar-toggle {
    border-color: var(--white); 
    }
    .headerNav .navbar-toggle .icon-bar {
      background-color: var(--white); 
    }
    .mainMenuNav p {
      color: var(--white); 
    }
    .mainMenuNav .navbar-toggle {
      border-color: var(--white);
      margin-top: 5px;
      margin-bottom: 5px;
      padding: 7px 8px; 
    }
    .mainMenuNav .navbar-toggle .icon-bar {
      background-color: var(--white);
    }
    .navbar-left,
    .navbar-right {
      float: none !important; 
    }
    .navbar-toggle {
      display: block; 
    }
    .navbar-toggle:focus, .navbar-toggle:hover {
      background: transparent !important; 
    }
    .navbar-collapse {
      border-top: 1px solid transparent;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
      padding: 0; 
    }
    #mainMenu.navbar-collapse {
      padding: 0; 
    }
    .navbar-fixed-top {
      top: 0;
      border-width: 0 0 1px; 
    }
    .navbar-collapse.collapse {
      display: none !important; 
    }
    .navbar-nav {
      float: none !important;
      margin: 0 !important; 
    }
    .navbar-nav > li {
      float: none; 
    }
    .navbar-nav > li > a {
      padding-top: 10px;
      padding-bottom: 10px; 
    }
    .collapse.in {
      display: block !important; 
    }
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .navbar-default .navbar-nav .open .dropdown-menu > li > a {
        color: var(--text-color); }
    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu > li {
        font-size: 13px;
    }
    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 20px;
        padding: 5px 15px 5px 25px; 
    }
    .navbar-nav .open .dropdown-menu > li .dropdown-menu > li > a {
      padding: 5px 15px 5px 35px; 
    }
    .navbar-nav .open .dropdown-menu > li .dropdown-menu > li .dropdown-menu > li > a {
        padding: 5px 15px 5px 45px; }
    .navbar-nav.navbar-contact,
    .navbar-nav.navbar-contact > li {
      font-size: 18px !important;
      float: left !important;
      padding: 2.5px 0; }
    .navbar-nav.navbar-contact a span,
    .navbar-nav.navbar-contact > li a span {
        display: none; }
    .navbar-social,
    .navbar-social > li {
        float: left !important; 
    }
    #categorySection,
    #productSection,
    .guestCheckout,
    .contactBlocksSection {
        margin-top: 20px; 
    }
    .contactBlocksSection {
      margin-top: 20px !important; }
    #mainMenuNav {
      padding: 0; }
    #basketReview {
      clear: both;
      margin-top: 20px;
     } 
     #categorySection,
    #productSection,
    .guestCheckout,
    .contactBlocksSection {
      margin-top: 0px; 
    }
    #basketContents .clearFilter .btn,
    #basketContents .applyFilter .btn,
    #basketContents .viewBasket .btn,
    #basketContents .proceedToCheckout .btn,
    #filterContents .clearFilter .btn,
    #filterContents .applyFilter .btn,
    #filterContents .viewBasket .btn,
    #filterContents .proceedToCheckout .btn {
      font-size: 13px !important; }
    #newsletter .btn-subscribe {
      font-size: 13px !important; } 
    #welcome_signup .btn-myaccount {
      font-size: 13px !important; } 
    #basketContents .basketDetails p,
    #filterContents .basketDetails p {
      font-size: 13px !important; } 
    .cookies p {
      font-size: 13px !important; } 
    #topBrands img {
      height: 50px; }
    .breadcrumb {
      display: none; } 
    .breadcrumb {
      margin-bottom: 10px; } 
    .breadcrumb li {
      font-size: 13px !important; } 
    #sitePages .pageHeader p,
    #contactPage .pageHeader p {
      font-size: 13px !important; } 
    .defaultOptions {
      font-size: 13px !important; } 
    .btn-continue,
    .btn-previous,
    .btn-enquiry,
    .btn-cancel {
      font-size: 13px !important; } 
    .btn-checkout {
      font-size: 13px !important; } 
    .btn-login,
    .btn-delete {
      font-size: 13px !important; } 

    .headerVatToggle { right: 20px; } 
    .btn-more {
      font-size: 13px !important; } 
    .form-control {
      font-size: 13px !important; } 
    .headerNav {
      min-height: 42px; }
    .headerNav .navbar-nav.navbar-contact,
    .headerNav .navbar-nav.navbar-contact > li {
      padding: 0; }
    .headerNav .navbar-nav > li > a {
      padding: 10px 10px; }
    .headerNav .navbar-social li a {
      padding: 6px 5px; }
    .headerNav .sh-top--vat a {
      line-height: 40px; }
    .headerNav .navbar-header p {
      margin: 11px 5px 0 0; }
    .headerNav .navbar-toggle {
        margin-top: 3px;
        margin-bottom: 3px; } 
    .sh-top--vat a {
        font-size: 13px !important; } 
        
    header {
      padding: 10px 0; }
    #websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem img {
      height: 32px;
      margin-right: 4px; } 
    #websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem p {
      font-size: 13px;
      padding-top: 0; } 
      #websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem p span {
        font-size: 13px; } 
    #featuredProducts,
    #newProducts,
    #homepageBrands {
      margin: 20px 0 10px 0; } 
      #featuredProducts .pageContent h2,
      #featuredProducts .pageContent h3,
      #featuredProducts .pageContent h4,
      #newProducts .pageContent h2,
      #newProducts .pageContent h3,
      #newProducts .pageContent h4,
      #homepageBrands .pageContent h2,
      #homepageBrands .pageContent h3,
      #homepageBrands .pageContent h4 {
        font-size: 21px; } 
    .pageContent p {
      font-size: 13px !important; } 
    .pageContent ul li {
      font-size: 13px !important; } 
      
      .pageContent .faqContentBlock h6 {
        font-size: 13px !important; } 
      #allProducts {
          margin-top: 10px; }
      #testimonialsSection .clientTestimonial .table tr td p {
        font-size: 13px !important; }
      #testimonialsSection .clientTestimonial .table tr td strong {
        font-size: 13px !important; } 
      #accountSection .btn-newAddress {
        font-size: 13px !important; } 
      .panel.checkoutPanel .btn {
        font-size: 13px !important; }
      .panel p {
        font-size: 13px !important; } 
      .panel .mailingOptions,
      .panel .loginTypeOptions,
      .panel .deliveryAddressOptions {
        font-size: 13px !important; } 
      label {
        font-size: 13px !important; } 
      .denotesText {
        font-size: 13px !important; } 
    
      .btn-submit,
      .btn-next,
      .btn-search {
        font-size: 13px !important; } 
      #basketItems h4,
      #basketReview h4 {
        font-size: 13px; } 
      #basketItems h5,
      #basketReview h5 {
        font-size: 13px; } 
        #basketItems h5:last-child,
        #basketReview h5:last-child {
          font-size: 15px; } 
      #basketItems h6,
      #basketReview h6 {
        font-size: 13px; } 
      #basketItems p {
          font-size: 14px; } 
      #basketItems .btn-estimate,
      #basketReview .btn-estimate {
        font-size: 13px !important; }
        .contactBlocks p {
          font-size: 13px !important; } 
      .googleMap {
        margin-top: 20px; } 
      .googleMap iframe {
        height: 280px; }
        .thumbnailCatName .thumbnailTable p {
          font-size: 14px; }
        .thumbnailCatName .thumbnailTable p span {
          font-size: 13px; } 
        .thumbnailProductName .thumbnailTable td p {
          font-size: 14px; }
        .thumbnailProductName .thumbnailTable td p span {
          font-size: 13px; } 
        .thumbnailProductPrice {
          font-size: 14px; } 
        .categoryThumbnail .stockUnitDropDown .bootstrap-select > .dropdown-toggle { 
          margin-top: -4px; }
        .basketDetails .input-group .btn {
          font-size: 13px !important; } 
        .basketDetails .btn-update {
          font-size: 13px !important; } 
        .deleteBasketItem {
          font-size: 13px !important; }
        .productSections .btn-buynow {
            font-size: 13px !important; }
        #quickCategorySidebar {
          padding-right: 15px; }
        #quickCategorySidebar #quickCategoryContent #quickCategoryHeader {
          cursor: pointer;
          font-size: 14px; 
          padding-bottom: 6px; }
        #quickCategorySidebar #quickCategoryContent #quickCategoryHeader i {
          float: left;
          font-size: 21px;
          margin-right: 5px; } 
        #quickCategorySidebar #quickCategoryContent ul li,
        #categoriesSidebar ul li {
          font-size: 13px !important; } 
        #quickCategorySidebar #quickCategoryContent ul.treeview {
          display: none; } 
          
      #mainCategoryDetails h1 {
        font-size: 21px; } 
      #mainCategoryDetails p {
        font-size: 13px !important; } 
      #productSection p {
        font-size: 13px !important; } 
      #sortByOption {
        padding-right: 0; } 
      .bootstrap-select > .dropdown-toggle {
          font-size: 13px !important; } 
      .nav-tabs > li {
        font-size: 13px !important; } 
      .tab-content p {
        font-size: 13px !important; } 
      .tab-content li {
        font-size: 13px !important; }
      .pagination > li > a,
      .pagination > li > span {
        font-size: 13px !important; }
      footer {
        padding: 20px 0;
        margin-top: 20px; } 
      #footerContact p {
        font-size: 13px !important; } 
      .footerLinks ul li {
        font-size: 13px !important; } 
      #siteFooter p {
        font-size: 13px !important; }
      .thumbnailCatName .thumbnailTable h3 {
        font-size: 14px; }
      .thumbnailCatName .thumbnailTable h3 span {
          font-size: 13px; } 

}


@media (max-width: 767px) {
  .viewAsCustomer {
    height: 60px;
    line-height: 15px;
    padding: 5px 10px 0 10px; } 
    .viewAsCustomer p {
    float: none !important; }
    .viewAsCustomer p.pull-right {
      margin-top: 5px; }  
    header.imitating {
    top: 60px; } 
    #searchbox .form-control { padding-right: 0; } 
    #searchbox em.error { display: none !important; } 

    .categoryFeatured .categoryImage,
    .categoryFeatured .categoryDetails {
        float: none; }
    .productPageVat {
      float: none;
      margin: 5px 0;
      text-align: center; } 
}

@media (max-width: 500px) {
  .container {
      text-align: center;
  }
  .testimonial img {
      margin: auto;
      float: none;
      display: block;
  }
}


@media (max-width: 479px) {
  .col-xxs-12 {
    float: none;
    width: 100%; 
  } 
  body {
    padding-top: 212px; }
  body.imitating {
    padding-top: 240px; 
  } 

  .searchWebsite p {
    margin-bottom: 10px;
    text-align: center; 
  } 
  .searchWebsite p.overlayHeading {
    font-size: 18px !important; 
  } 
  .searchWebsite .btn {
    float: none;
    font-size: 14px;
    height: 34px;
    width: 100%; 
  } 

  .loginRegister img {
    width: 48px; 
  } 
  .searchWebsite .form-control {
    font-size: 13px !important;
    margin-bottom: 10px;
    padding: 5px 10px;
    text-align: center;
    width: 100%; 
  } 

  .loginRegister label.overlayHeading,
  .loginRegister p.overlayHeading {
    font-size: 18px !important;
  } 
  
  #loginBtn, #resetBtn {
      font-size: 14px;
      height: 34px; 
    }
    .siteNavigation .navigation li {
      font-size: 21px; 
    } 
    
    #siteSearch { width: 100%; } 
    .basketOverviewImage,
    .basketOverviewDetails {
      width: 100%; } 
    .backSave {
      width: 100%; }
    .backSave .btn {
        width: 100%; } 
    .nextPrevious {
      margin-top: 10px;
      width: 100%; }
    .nextPrevious .btn {
        width: 100%; } 
    .basketOverviewProductName {
      margin: 20px 0 0 0; } 
    .basketOverviewProductName h5 {
      font-size: 15px;
      margin: 0 0 10px 0; } 
    .basketOverviewRight {
      text-align: left; } 
    .viewAsCustomer p { font-size: 13px; } 
    .cookies #cookieActions {
      clear: both;
      margin: 0 !important; }
    .cookies .cookieButton {
      margin: 0 10px 0 0 !important; } 
    .homepageCard .socialIcons img {
      width: 32px; } 
    #sitePages .pageHeader h1,
    #sitePages .pageHeader h2,
    #contactPage .pageHeader h1,
    #contactPage .pageHeader h2 {
      font-size: 15px; } 
    #sitePages .pageHeader p,
    #contactPage .pageHeader p {
      clear: left;
      float: none;
      margin: 10px 0 0 0; }
    .addressDetailsRight {
      padding-left: 0;
      margin-top: 20px; } 
    .basketProductName {
      padding-right: 0;
      margin-bottom: 10px; } 
    .basketQuanity {
          margin-bottom: 10px; }       

    #siteActions #actionIconsHolder .actionIcon.fiveIcons {
      width: 20%; }
    #siteActions #actionIconsHolder .actionIcon {
      width: 25%; } 
    #siteActions #actionIconsHolder .actionIcon span {
      font-size: 12px; } 
    #siteLogo {
      text-align: center;
      width: 100%; }
    #siteLogo img {
      height: 60px; } 
    #siteContact {
      display: none; } 
    #siteActions {
        padding-top: 35px; }
    .mainMenuNav {
          margin-top: -14px !important;
      }
    #siteActions #actionIconsHolder {
      float: none; } 
    #siteActions #actionIconsHolder.loggedInActions .actionIcon {
        width: 20%; } 
    #homepageBanner {
            padding: 0; } 
    #specialLinks {
      margin: 20px 0; } 
    #homepageOption2 #homepageContent h1,
    #homepageOption2 #featuredCategories h2,
    #homepageOption2 #featuredProducts h3,
    #homepageOption2 #homepageBrands h4 {
      font-size: 16px; }

    .sliderNav .btn {
      height: 27px;
      width: 27px;
      padding-top: 2px; }
    .sliderNav .btn i {
      font-size: 16px; }
      #storeContactSlider h2,
    #storeContactSlide h2 {
      font-size: 16px; }
    #errorPage p {
      font-size: 13px !important; } 
    #sitePages .eventHolder {
      height: auto;
      margin-bottom: 20px; } 
    #sitePages .eventHolder .eventDates {
      width: 100%; } 
    #sitePages .eventHolder .eventDates p {
      font-size: 14px;
      font-weight: bold;
      height: 32px;
      line-height: 16px; } 
      #sitePages .eventHolder .eventDates p strong {
        display: inline; } 
      #sitePages .eventHolder .eventDates p span {
        font-size: 14px;
        display: inline; } 
      #sitePages .eventHolder .eventDetails {
        font-size: 13px;
        text-align: center;
        width: 100%; } 
    #sitePages .eventHolder .eventDetails .eventName {
      font-size: 14px;
      margin-bottom: 10px; } 
      #sitePages .eventHolder .eventDetails .eventName strong {
        display: block; } 
      #sitePages .eventHolder .eventDetails .eventName span {
        display: block;
        float: none; } 
    .pageContent h1,
    .pageContent h2,
    .pageContent h3,
    .pageContent h4,
    .pageContent h5,
    .pageContent h6 {
                  font-size: 15px; }
    .pageContent .newsArticle p.newsHeading {
            font-size: 15px !important; } 
    .pageContent .newsImage {
        float: none;
        margin: 0 auto 10px auto;
        max-width: 100%; } 
      
    .pageContent .brands {
      width: 50%; } 
    .pageContent .brands img {
          height: 40px; } 
    #accountSection .btn-newAddress {
              margin-bottom: 20px; }
    #accountSection .delAddress {
      margin-bottom: 20px;
      width: 100%; } 
    .panel.checkoutPanel .btn {
        margin-top: 10px; } 
    .panel h4 {
        font-size: 14px; }
    .panel h4 span {
            height: 26px;
            margin: -6px 5px 0 0;
            width: 26px; } 
    .panel .fakeFromField {
      display: none; } 
    .panel .deliveryAddressMethods {
      margin-top: 20px; } 
    .panel .agreeToTerms input[type=checkbox] {
      float: left;
      margin: 2px 5px 0 0; }
    .panel .agreeToTerms label {
      width: 90%; } 
    .panel .securedPaymentImage {
      width: 70px; } 
    
    .formLeft {
      padding: 0; } 
    .formRight {
        padding: 0; } 
    .manualAddress {
      margin-top: 10px; }
    .manualAddress .btn {
      width: 100%; } 
    .denotesText {
      margin: 0 0 10px 0; } 
    .grandtotalFinal p,
    .grandtotalValueFinal p {
      font-size: 14px !important; } 
    .btn-submit {
        clear: left; } 
    .accountBlocks h3 {
        font-size: 13px !important; } 
    .accountBlocks p {
      font-size: 13px !important; } 
      .accountBlocks .btn-view {
        font-size: 13px !important; } 
    .forgotPassword,
    .createAccountText {
      font-size: 13px !important; } 
    .normalText {
      font-size: 13px !important; } 
    
    #accountContactDetails .securedPaymentImage {
      width: 70px; } 
    
    #basketItems h3,
    #basketReview h3 {
      font-size: 13px; } 
    #basketItems p,
    #basketReview p {
      font-size: 11px; } 
    #basketItems .basketDetails > div {
      padding: 0; } 
    #basketItems .col-xs-6 {
      padding-right: 10px !important; } 
    #basketReview .form-control {
      height: 29px; } 
    #basketItemPrice {
      margin-top: 20px; }
    .basketActions .btn {
          float: none;
          margin-bottom: 20px;
              width: 100%; } 
    .contactBlocks h3 {
      font-size: 13px; } 
    #categoryProducts .categoryThumbnail {
      width: 50% !important; } 
      .categoryThumbnail {
        width: 100%; } 
        .thumbnail .productImage {
          height: 220px; } 
          .thumbnailProductPurchase .btn-addtobasket {
            font-size: 12px;
            height: 34px;
            padding-left: 10px;
            padding-right: 10px;
            width: 45%; } 
        #basketQuantity {
          margin-top: 20px; } 
          .basketDetails .input-group {
            width: 65%; } 
      .productSections .input-group {
        width: 100%; } 
      .basketSubtotal {
        margin-top: 20px; } 
      #colourOptions input[type=radio] + label,
      #woodOptions input[type=radio] + label,
      #frameOptions input[type=radio] + label { margin-right: 7px; } 
      .sizeOptionsItem {
        display: block; } 
      .sizeOptionName {
        display: block;
        float: left;
        flex: unset;
        width: 60%; } 
      .sizeOptionName p { margin-top: 5px !important; } 
      .sizeOptionPrice {
        float: right;
        min-height: 42px;
        width: 40%; }
      .sizeOptionPrice p { margin-top: 8px !important; margin-right: 10px !important; } 
      .sizeOptionQty {
        clear: both;
        display: block;
        flex: unset;
        width:  100%; } 
        .variantProducts .formLeft,
        .variantProducts .formRight {
          margin-bottom: 20px; } 
        .productSections .btn {
            margin-bottom: 10px;
            width: 100%; } 
        #productPageImageHolder .productPageImage {
          width: 100%; }
        #productPageImageHolder .productPageImage img {
            padding: 20px; } 
        #subCategoriesHeading h2 {
            font-size: 18px; } 
        #productSection {
          padding: 10px 15px; } 
        #productSection #productName h1 {
            font-size: 21px; } 
        #productSection #productName {
          text-align: center; } 
        #productSection .productBrandImage {
          margin: 10px 0 0 0;
          text-align: center; } 
        #productSection .productBrandImage img {
            float: none; } 
        #productSection .btn-primary {
          font-size: 13px; } 
        #filterSortViewOptions {
          height: 68px; } 
        #filterCategoriesOption {
          padding-right: 0;
          width: 100%; } 
        #displayPricesVat {
           text-align: left;
           width: 100%; } 
        #displayPricesVat .pretty .state label { text-indent: 0.9em; }
        #displayPricesVat .pretty .state label span { display: inline-block !important; } 
        #filterCategories {
          font-size: 14px; }
        #filterCategories i {
            font-size: 14px; } 
      #sortByOption {
        border-top: 1px solid var(--white);
        padding-left: 0;
        width: 100%; } 
      #sortByOption #sortByOptions {
          font-size: 14px; } 
      .nav-tabs > li {
        width: 100%; } 
      .tab-content h3 {
        font-size: 13px; }
      .tab-content .reviewRating p {
              margin: 3px 0 0 0 !important; }
      .tab-content ul {
        margin-left: 18px;
        padding: 0; }
        .tab-content ul.nav-tabs {
          margin-left: 0; } 
      .pagination {
        margin: 20px 0; } 
      .spacer {
          height: 20px; } 
      #basket .spacer {
        height: 0; } 
      .submitReview .heading {
              font-size: 14px; } 
        .ratings h4 {
          font-size: 14px; } 
        footer .footerHeading {
            font-size: 13px; text-align: center; } 
        #footerContact .icons { display: none; } 
       .footerLinks {
         text-align: center;
         width: 100%; } 
       #footerSocial {
         text-align: center;
         width: 100%; } 
       #footerContact {
         text-align: center;
         width: 100%; }
       .footerLinks ul li { font-size: 13px !important; margin: 0 0 12px 0; }
       #footerSocial ul li { margin-right: 10px; }
       #footerSocial ul li img { height: 32px; }
       #footerSocial .securedPaymentImage { height: 30px; margin: 0 12px 15px 0; }
       #getAstra { clear: left; }
       #getAstra, #trustpilotLogo { height: 52px; }
       #trustpilotLogo { margin-left: 10px; }
     
      #siteFooter {
        height: 50px;
        line-height: 25px; } 
      #siteFooter p {
            text-align: center; } 
      .footerCopyright {
        padding: 0 5px; } 
      .footerDesignBy {
          padding: 0 5px;
          text-align: center; } 
      #backToTop.show {
          right: 10px;
          bottom: 50px;
          height: 30px;
          width: 30px; }
      #backToTop i {
        font-size: 18px;
        margin-top: 5px; } 
}


@media (min-width: 992px) {
  .navbar-nav.navbar-contact > li {
    font-size: 18px !important; }
  .mainMenuNav .collapse ul li {
    position: relative; }
  .mainMenuNav .collapse ul li:hover > ul {
    display: block; }
  .mainMenuNav .collapse ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    display: none; }
  /*******/
  .mainMenuNav .collapse ul ul li {
    position: relative; }
  .mainMenuNav .collapse ul ul li:hover > ul {
    display: block; }
  .mainMenuNav .collapse ul ul ul {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 250px;
    display: none; }
  /*******/
  .nav > li > a {
    padding: 15px 10px; }
  .mainMenuNav .nav > li > a {
    padding: 10px 15px; } 
  #websiteHotlinks #hotLinkSlider {
    visibility: visible;
    opacity: 1; } 
  footer .footerHeading {
    font-size: 18px; } 
  }

/*min to max width*/

@media (min-width: 992px) and (max-width: 1199px) {
        .table-striped > tbody > tr > td,
        .table-striped > tbody > tr > th,
        .table-striped > tfoot > tr > td,
        .table-striped > tfoot > tr > th,
        .table-striped > thead > tr > td,
        .table-striped > thead > tr > th {
          font-size: 13px !important; 
        } 
        .loginRegister label,
        .loginRegister p {
          font-size: 13px !important; 
        }
        body {
          padding-top: 78px; 
        }
        body.imitating {
          padding-top: 149px;
        } 
        .searchWebsite p {
          font-size: 13px !important; 
        } 
      .cookies .cookieButton .btn {
        font-size: 13px !important; 
      }
      .navbar-nav > li,
      .dropdown-menu > li {
        font-size: 13px !important; 
      } 
      .navbar-header p {
        font-size: 14px !important; 
      } 
      #basketContents .clearFilter .btn,
      #basketContents .applyFilter .btn,
      #basketContents .viewBasket .btn,
      #basketContents .proceedToCheckout .btn,
      #filterContents .clearFilter .btn,
      #filterContents .applyFilter .btn,
      #filterContents .viewBasket .btn,
      #filterContents .proceedToCheckout .btn {
        font-size: 13px !important; 
      }
      #siteSearch { 
        width: 33%;
        }
        #newsletter .btn-subscribe {
        font-size: 13px !important; 
      }
      #welcome_signup .btn-myaccount {
        font-size: 13px !important; 
      }

      #basketContents .basketDetails p,
      #filterContents .basketDetails p {
        font-size: 13px !important; 
      } 

      
    .cookies p {
      font-size: 13px !important; 
    } 
    .breadcrumb li {
      font-size: 13px !important; 
    } 
    #sitePages .pageHeader h1,
    #sitePages .pageHeader h2,
    #contactPage .pageHeader h1,
    #contactPage .pageHeader h2 {
      font-size: 21px; 
    } 
    #sitePages .pageHeader p,
    #contactPage .pageHeader p {
      font-size: 13px !important; 
    } 
    .defaultOptions {
      font-size: 13px !important; 
    }
    .btn-continue,
    .btn-previous,
    .btn-enquiry,
    .btn-cancel {
      font-size: 13px !important; 
    } 
    .btn-checkout {
      font-size: 13px !important; 
    } 
    .btn-login,
    .btn-delete {
      font-size: 13px !important; 
    } 

    #siteActions #actionIconsHolder .actionIcon,
      header.smaller #siteActions #actionIconsHolder .actionIcon { 
        width: 58px; 
      } 
      .btn-more {
        font-size: 13px !important; 
      }
      .form-control {
        font-size: 13px !important; 
      } 
      .sh-top--vat a {
        font-size: 13px !important; 
      } 
      header.smaller #siteLogo { width: 20%; }
      header.smaller #siteContact { width: 20%; }
      header.smaller #siteContact p.phoneNumber { font-size: 21px; }
      header.smaller #siteContact p.emailAddress { font-size: 14px; }
      header.smaller #siteSearch { width: 33%; }
      header.smaller #siteActions { padding-left: 0; width: 27%; }
      header.smaller #siteActions #actionIconsHolder .actionIcon { width: 60px; }
      #siteLogo { width: 20%; }

      
    #siteContact { padding: 5px 0 0 15px; width: 20%; } 
    #siteContact p.phoneNumber { font-size: 21px; }
    #siteContact p.emailAddress { font-size: 14px; } 
    #siteActions { padding: 5px 15px 0 0; width: 27%; } 
    #websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem img {
      height: 32px;
      margin-right: 4px; } 
    #websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem p {
      font-size: 13px;
      padding-top: 0; }
    #websiteHotlinks #hotLinkSlider .hotlinks .hotlinkItem p span {
      font-size: 13px; } 
    .categoryName {
        font-size: 18px;
        height: 100px;
        width: 120px; 
      }
    .categoryFeatured .categoryImage,
    .categoryFeatured .categoryImage img {
      height: 150px; }
    #featuredProducts .pageContent h2,
    #featuredProducts .pageContent h3,
    #featuredProducts .pageContent h4,
    #newProducts .pageContent h2,
    #newProducts .pageContent h3,
    #newProducts .pageContent h4,
    #homepageBrands .pageContent h2,
    #homepageBrands .pageContent h3,
    #homepageBrands .pageContent h4 {
      font-size: 26px; } 
    #errorPage p {
      font-size: 16px !important; } 
    #sitePages .eventHolder {
      height: 170px; }
    #sitePages .eventHolder .eventDates {
      width: 69px; }
    #sitePages .eventHolder .eventDates p {
      font-size: 14px;
      height: 84px;
      line-height: 16px;
      padding-top: 12px; 
    } 

     
    #sitePages .eventHolder .eventDates p span {
      font-size: 24px; } 
    #sitePages .eventHolder .eventDetails {
      width: 384px; }
      #sitePages .eventHolder .eventDetails .eventName {
        font-size: 14px;
        margin-bottom: 10px; }
    .pageContent h1,
    .pageContent h2,
    .pageContent h3,
    .pageContent h4,
    .pageContent h5,
    .pageContent h6 {
      font-size: 18px; } 
    .pageContent p {
      font-size: 13px !important; } 
    .pageContent ul li {
      font-size: 13px !important; }
      .pageContent .newsArticle p.newsHeading {
        font-size: 18px !important; } 
    .pageContent .faqContentBlock h6 {
      font-size: 13px !important; }
    #testimonialsSection .clientTestimonial .table tr td p {
          font-size: 13px !important; } 
    #testimonialsSection .clientTestimonial .table tr td strong {
      font-size: 13px !important; } 
    #accountSection .btn-newAddress {
      font-size: 13px !important; }
    .panel.checkoutPanel .btn {
      font-size: 13px !important; }

      
    .panel p {
      font-size: 13px !important; } 
    .panel .mailingOptions,
    .panel .loginTypeOptions,
    .panel .deliveryAddressOptions {
      font-size: 13px !important; } 
    .formLeft.formFullDesktop,
    .formRight.formFullDesktop {
      clear: none;
      padding: 0 15px; } 
    label {
      font-size: 13px !important; } 
    .denotesText {
      font-size: 13px !important; }
    .grandtotalFinal p,
    .grandtotalValueFinal p {
      font-size: 16px !important; }
    .btn-submit,
    .btn-next,
    .btn-search {
      font-size: 13px !important; } 
    .accountBlocks h3 {
      font-size: 13px !important; }
    .accountBlocks p {
      font-size: 13px !important; } 
    .accountBlocks .btn-view {
      font-size: 13px !important; }
      .forgotPassword,
    .createAccountText {
      font-size: 13px !important; }
    .normalText {
      font-size: 13px !important; }

    #basketItems h3,
    #basketReview h3 {
      font-size: 15px; }

    #basketItems h4,
    #basketReview h4 {
      font-size: 13px; }
    #basketItems h5,
    #basketReview h5 {
      font-size: 13px; }
    #basketItems h6,
    #basketReview h6 {
      font-size: 15px; }
    #basketItems p {
          font-size: 14px; }
    #basketItems .btn-estimate,
    #basketReview .btn-estimate {
      font-size: 13px !important; } 
    #basketReview .form-control {
      height: 32px; }
      
    .contactBlocks h3 {
      font-size: 16px; }
    .contactBlocks p {
      font-size: 13px !important; }
    .googleMap iframe {
      height: 320px; }
    .categoryThumbnail.listDisplay .thumbnailProductName {
      width: 335px; }
    .thumbnailProductName .thumbnailTable td p {
        font-size: 14px; }
    .thumbnailProductName .thumbnailTable td p span {
          font-size: 13px; }
    .thumbnailProductPurchase .btn-addtobasket {
      font-size: 13px;
      height: 34px;
      padding-left: 6px;
      padding-right: 6px; }
    .basketDetails .input-group .btn {
      font-size: 13px !important; } 
    .basketDetails .btn-update {
      font-size: 13px !important; }
    .deleteBasketItem {
      font-size: 13px !important; } 
    .productSections .btn-buynow {
      font-size: 13px !important; } 
    .thumbnailProductPurchase .btn-buynow {
      float: none;
      margin-top: 10px;
      width: 100%; 
    } 
      #quickCategorySidebar #quickCategoryContent ul li,
      #categoriesSidebar ul li {
        font-size: 13px !important; }       
      #mainCategoryDetails h1 {
        font-size: 26px; }
      #mainCategoryDetails p {
        font-size: 13px !important; } 
      #productSection #productName h1 {
        font-size: 26px; } 
      #productSection .productBrandImage img {
        height: 46px; } 
      #productSection p {
        font-size: 13px !important; }
      .bootstrap-select > .dropdown-toggle {
        font-size: 13px !important; } 
      .nav-tabs > li {
        font-size: 13px !important; } 
      .tab-content p {
        font-size: 13px !important; }
      .tab-content li {
        font-size: 13px !important; }
      .pagination > li > a,
      .pagination > li > span {
        font-size: 13px !important; }
      .spacer {
        height: 30px; } 
      .submitReview .heading {
        font-size: 16px; }
      .ratings h4 {
        font-size: 16px; } 
      #footerContact p {
        font-size: 13px !important; } 
      #footerContact { padding-right: 0; width: 34%; }
      .footerLinks { padding-right: 0; width: 17%; }
      .footerLinks ul li { font-size: 13px !important; margin: 0 0 12px 0; }
      #footerSocial { width: 32%; }
      #footerSocial ul li { margin-right: 10px; }
      #footerSocial ul li img { height: 32px; }
      #footerSocial .securedPaymentImage { height: 30px; margin: 0 12px 15px 0; }
      #getAstra, #trustpilotLogo { height: 60px; }
      #siteFooter p {
        font-size: 13px !important; }
  
}

@media (min-width: 768px) and (max-width: 991px) {
    body {
      padding-top: 84px; 
    }
    body.imitating {
      padding-top: 116px;
    } 
    .loginRegister label,
    .loginRegister p {
      font-size: 13px !important; 
    } 
      .searchWebsite .form-control {
        font-size: 14px !important;
        height: 40px; 
      } 
      header.smaller #siteLogo { width: 25%; }
      header.smaller #siteSearch { width: 41.66666667%; }
      header.smaller #siteActions { width: 33.33333333%; }

      #siteLogo img {
        max-height: 55px; } 
      #siteContact {
        padding-top: 2.5px;
        padding-right: 0; } 
      #siteContact p {
        font-size: 14px; } 
      #siteActions {
        padding-top: 0;
        padding-left: 0; } 
        #errorPage p {
          font-size: 14px !important; } 
      #sitePages .eventHolder {
        height: 140px;
        margin-bottom: 10px; } 
      #sitePages .eventHolder .eventDates {
        width: 15%; } 
      #sitePages .eventHolder .eventDates p {
        font-size: 14px;
        height: 69px;
        line-height: 16px;
        padding-top: 5px; }
      #sitePages .eventHolder .eventDetails {
        width: 85%; } 
      .pageContent h1,
      .pageContent h2,
      .pageContent h3,
      .pageContent h4,
      .pageContent h5,
      .pageContent h6 {
        font-size: 15px; } 
      .pageContent .newsArticle p.newsHeading {
        font-size: 15px !important; } 
      .pageContent .newsImage {
        max-width: 75%; } 
      .pageContent ul.newsListItems li {
        font-size: 14px !important; }
      .grandtotalFinal p,
      .grandtotalValueFinal p {
        font-size: 16px !important; }
      #basketItems h3,
      #basketReview h3 {
        font-size: 15px; } 
      #basketItems .basketImage img {
        max-width: 100%;
        height: auto; } 
      #basketReview .form-control {
        height: 32px; } 
      .contactBlocks h3 {
        font-size: 14px; } 
      .categoryThumbnail.listDisplay .thumbnailProductName {
        width: 375px; } 
      .thumbnailProductPurchase .btn-addtobasket {
          font-size: 13px;
          height: 34px;
          padding-left: 6px;
          padding-right: 6px; } 
      .basketDetails .input-group {
        width: 65%; } 
      .productSections .input-group {
        width: 160px; } 
      .thumbnailProductPurchase .btn-buynow {
          float: none;
          margin-top: 10px;
          width: 100%; } 
      #sitePages .pageHeader h1,
      #sitePages .pageHeader h2,
      #contactPage .pageHeader h1,
      #contactPage .pageHeader h2 {
        font-size: 18px; } 
        #siteActions #actionIconsHolder .actionIcon {
          height: 56px;
          padding-top: 38px;
          width: 58px; } 
      
      #productSection #productName h1 {
        font-size: 21px; } 
      #productSection p .priceLarge {
        font-size: 21px !important; } 
      .tab-content h3 {
          font-size: 15px; } 
      .spacer {
        height: 20px; } 
      .submitReview .heading {
        font-size: 14px; } 
      .ratings h4 {
          font-size: 15px; } 
      footer .footerHeading {
        font-size: 15px; } 
      #footerContact p { width: 280px; }
      .footerLinks ul li { font-size: 13px !important; margin: 0 0 12px 0; }
      #footerSocial { clear: left; }
      #footerSocial ul { float: left; width: 40%; }
      #footerSocial ul li { margin-right: 10px; }
      #footerSocial ul li img { height: 32px; }
      #footerSocial .securedPaymentImage { height: 30px; margin: 0 12px 15px 0; }
      #getAstra, #trustpilotLogo { height: 32px; }
      #trustpilotLogo { margin-left: 10px; }
      
    .categoryThumbnail.listDisplay .productImage {
      border-right: 1px solid var(--white);
      height: 115px;
      float: left;
      margin: 0 10px 0 0;
      padding: 10px;
      width: 140px; }   
}

@media (min-width: 480px) and (max-width: 767px) {
    body {
      padding-top: 153px; 
    }
    body.imitating {
      padding-top: 180px; 
    } 
    .searchWebsite .btn {
      font-size: 13px;
      padding: 5px 10px;
      width: 18%; 
    } 
    .searchWebsite .form-control {
      font-size: 13px !important;
      padding: 5px 10px;
      width: 82%; 
    } 
    .cookies .cookieButton .btn {
      padding: 4px 8px; 
    } 
    #siteSearch { padding-left: 0; width: 60%; } 
    .basketOverviewProductName {
      padding-right: 0; } 
    .basketOverviewProductName h5 {
      font-size: 15px;
      margin: 0 0 10px 0; } 
    .basketOverviewRight {
      text-align: left; } 

      #sitePages .pageHeader h1,
      #sitePages .pageHeader h2,
      #contactPage .pageHeader h1,
      #contactPage .pageHeader h2 {
        font-size: 16px; } 
      .addressDetailsRight {
        padding-left: 0;
        margin-top: 20px; } 
      .basketProductName {
        padding-right: 0;
        margin-bottom: 20px; } 
      .basketQuanity {
        margin-bottom: 20px; } 
      #siteActions #actionIconsHolder .actionIcon.fiveIcons {
          width: 20%; }
      #siteActions #actionIconsHolder .actionIcon {
          width: 25%; } 
      #siteLogo { padding-right: 0; width: 40%; } 
      #siteLogo img {
          height: 55px; } 
      #siteContact {
        padding-top: 2.5px;
        text-align: right; } 
      #siteContact p {
        font-size: 14px;
        margin-bottom: 5px; } 
      #siteActions {
        padding-top: 10px; } 
      #siteActions #actionIconsHolder {
        float: none; } 
      #siteActions #actionIconsHolder.loggedInActions .actionIcon {
        width: 20%; } 
      #specialLinks {
        margin: 20px 0; } 
        #errorPage p {
          font-size: 14px !important; }
        #sitePages .eventHolder {
          height: 140px;
          margin-bottom: 10px; } 
        #sitePages .eventHolder .eventDates {
          width: 15%; } 
        #sitePages .eventHolder .eventDates p {
          font-size: 14px;
          height: 69px;
          line-height: 16px; } 
        #sitePages .eventHolder .eventDates p span {
            font-size: 21px; } 
        #sitePages .eventHolder .eventDetails {
          font-size: 13px;
          width: 85%; } 
        #sitePages .eventHolder .eventDetails .eventName {
          font-size: 14px;
          margin-bottom: 10px; } 
        .pageContent h1,
        .pageContent h2,
        .pageContent h3,
        .pageContent h4,
        .pageContent h5,
        .pageContent h6 {
              font-size: 15px; } 
        .pageContent .newsArticle p.newsHeading {
          font-size: 15px !important; } 
        .pageContent .newsImage {
            max-width: 50%; } 
            
        .pageContent .brands img {
          height: 50px; } 
        #accountSection .btn-newAddress {
          margin-bottom: 20px; } 
        #accountSection .delAddress {
          margin-bottom: 20px; } 
          .panel.checkoutPanel .btn {
            margin-top: 10px; } 
        .panel .fakeFromField {
          display: none; } 
        .panel .deliveryAddressMethods {
          margin-top: 20px; } 
        .formLeft {
          padding: 0; } 
        .formRight {
          padding: 0; } 
        .grandtotalFinal p,
        .grandtotalValueFinal p {
          font-size: 15px !important; } 
        #basketItems h3,
        #basketReview h3 {
          font-size: 15px; }
        #basketItems p,
        #basketReview p {
          font-size: 12px; }
        #basketItems .basketDetails > div {
          padding: 0; } 
        #basketReview .form-control {
          height: 31px; } 
        #basketItemPrice {
            margin-top: 20px; } 
        .basketActions {
          margin-bottom: 20px; } 
        .contactBlocks h3 {
          font-size: 13px; } 

        .thumbnailProductPurchase .btn-addtobasket {
          font-size: 12px;
          height: 34px;
          padding-left: 6px;
          padding-right: 6px; } 
        #basketQuantity {
          margin-top: 20px; } 
        .basketDetails .input-group {
            width: 80%; }
        .basketSubtotal {
          margin-top: 20px; }
        .thumbnailProductPurchase .btn-buynow {
            float: none;
            margin-top: 10px;
            width: 100%; }
        .variantProducts .formLeft,
        .variantProducts .formRight {
          margin-bottom: 20px; }
      
        #productSection #productName h1 {
          font-size: 18px; } 
        #productSection #productName {
          text-align: center; }
        #productSection .productBrandImage {
          margin: 10px 0 0 0;
          text-align: center; }
        #productSection .productBrandImage img {
          float: none; }
  
        .tab-content h3 {
            font-size: 15px; } 
        .spacer {
        height: 20px; } 
        .submitReview .heading {
        font-size: 14px; } 
        .ratings h4 {
        font-size: 14px; }
        footer .footerHeading {
          font-size: 13px; } 
        #footerContact p { width: 280px; }
        .footerLinks ul li { font-size: 13px !important; margin: 0 0 12px 0; }
        #footerSocial { clear: left; }
        #footerSocial ul li { margin-right: 10px; }
        #footerSocial ul li img { height: 32px; }
        #footerSocial .securedPaymentImage { height: 30px; margin: 0 12px 15px 0; }
        #getAstra, #trustpilotLogo { height: 32px; }
        #trustpilotLogo { margin-left: 10px; }
        #siteFooter {
          height: 50px;
          line-height: 25px; } 
        #siteFooter p {
            text-align: center; } 
        .footerDesignBy {
            text-align: center; }
        #backToTop.show {
          height: 30px;
          width: 30px; } 
        #backToTop i {
          font-size: 18px;
          margin-top: 5px; } 

}
@media (max-width: 991px) and (min-width: 992px) and (max-width: 1199px) {
  .navbar-header p {
    font-size: 13px !important; 
  } 
}    

@media (max-width: 419px) {

  .categoryFeatured .categoryImage {
    float: none !important;
    height: auto; }
  .categoryFeatured .categoryImage img {
    margin: 0 auto; }
  .categoryFeatured .categoryDetails {
    float: none !important;
    text-align: center !important; }
  .categoryName { 
    height: 60px !important;
    width: auto !important; }

}
 
@media (max-width: 768px) {
  .newsSidebar { padding: 0 30px; }
  .pageContent ul.newsListItems li {
    font-size: 13px !important; }
}
   

  @media (min-width: 480px) and (max-width: 1199px) {
    .thumbnailProductPurchase .input-group,
  .thumbnailProductPurchase p {
    float: none;
    width: 100%; } }

      
 @media (min-width: 480px) {
  .block { display: none; } 
}

@media (max-width: 1199px) {
  #displayPricesVat .pretty {
  font-size: 16px; }
  #displayPricesVat .pretty .state label {
  font-size: 15px !important; } 
  #filterCategories {
    font-size: 16px; }
  #filterCategories i {
    font-size: 16px; } 
  #sortByOption { padding-right: 0; }
  #sortByOption #sortByOptions {
    font-size: 16px; } 
}

@media print {
  .br-theme-bootstrap-stars .br-widget a:after {
    content: '\e007';
    color: black; }
  .br-theme-bootstrap-stars .br-widget a.br-active:after,
  .br-theme-bootstrap-stars .br-widget a.br-selected:after {
    content: '\e006';
    color: black; } }

  footer .footerHeading, .footerHeadingAlt {
    font-weight: bold;
    margin: 0 0 10px 0; }


@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg); }
100% {
-webkit-transform: rotate(360deg); } }

@keyframes spin {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
