/* Styles to discover content wider than container
body { margin: 30px; }
body * { border: 1px solid red; }
body * { outline: 1px solid red; }   **/

/* Variables */

:root {
    --primary-red: #DF1825;
    --dark-red: #c61821;
    --dark-text: #000000;
    --grey-text: #5E6271;
    --light-text: #FFFFFF;
    --white: #FFFFFF;
    --black: #000000;
    --lightgrey: #F6F6F6;
    --mediumgrey: #D5D6DB;
    --darkgrey: #969696;
    --purple: #7b0095;
    --skyblue: #0090ff;
    --lightgreen: #8ad01c;
    --base-font: 'Play', sans-serif;
}

html, body {
    overflow-x: hidden !important;
    width:100%;
}

/* General Elements */
body {
    font-size: 12px;
    background-color: #FFFFFF;
    color: #000000;
    font-family: 'Play', sans-serif;
    /*width: 100vw;*/ 
}

p 
{
    margin: 0px;
}

a:hover {
    color: #FFFFFF;
    text-decoration: none;
}
ul {
    padding: 0;
    list-style: none;
}
.img-responsive {
    width: 100%;
}
.clear {
    clear:both;
}
input::placeholder {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    opacity: 1; /* Firefox */
}
input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
}
input::-ms-input-placeholder { /* Microsoft Edge */
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
}
.dark-placeholder::placeholder {
    color: #000000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: normal;
}
.dark-placeholder:-ms-input-placeholder { /* Internet Explorer 10-11 */ 
    color: #000000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: normal;
}
.dark-placeholder::-ms-input-placeholder { /* Microsoft Edge */
    color: #000000;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: normal;
}

.notbold::placeholder {
    font-weight: normal;
}
.not-bold:-ms-input-placeholder {
    font-weight: normal;
}
.not-bold::-ms-input-placeholder {
    font-weight: normal;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    appearance: none;
    margin: 0; 
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Checkboxes and Radio Buttons */

.checkbox label,
.radio-button label,
.product-check-radios span span:nth-child(2n) label {
    display: flex;
    align-items: center;
    /*color: #FFFFFF;*/
    font-size: 16px;
    margin-bottom: 0;
}

.checkbox input[type="checkbox"] {
    display: none;
}

/*.filter-options .checkbox input[type="checkbox"] {
    display: inline-block;
}
*/
.radio-button input[type="radio"],
.product-check-radios span span:nth-child(2n)   input[type="radio"]{
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 50%;
    left:50%;

    z-index:   99999;
}

.product-check-radios span span:nth-child(2n)   input[type="radio"]:first-child {
left:0;
}

.attributeFilter input,
.brandFilter input,
.priceFilter input  {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.priceFilter label:before,
.attributeFilter label:before,
.brandFilter label:before,
.checkbox label:before,
.radio-button label:before,
.product-check-radios span span:nth-child(2n) label:before {
    content: "\f45c";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    margin-left:10px;
}

.attributeFilter input[type="checkbox"]:checked + label:before,
.priceFilter input[type="checkbox"]:checked + label:before,
.brandFilter input[type="checkbox"]:checked + label:before,
.checkbox input[type="checkbox"]:checked + label:before,
.radio-button input[type="radio"]:checked + label:before,
.product-check-radios span span:nth-child(2n) input[type="radio"]:checked + label:before 
 {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900;
}
.radio-button input[type="radio"]:checked + label:before,
.checkbox input[type="checkbox"]:checked + label:before,
.product-check-radios span span:nth-child(2n)  input[type="radio"]:checked + label:before
 { 
    /*color: #DF1825;*/
}
.radio-button {
   /* margin-left: 10px;*/
    position: relative;
}
.radio-button label,
.checkbox label,
.product-check-radios span span:nth-child(2n) label
 {
    /*color: #000000;*/
}
.radio-button label:before,
.product-check-radios span span:nth-child(2n) label:before {
    margin-right: 10px;
}

/* Select Dropdowns */

select {    
    background: url(images/selectbox-arrow-black.png) right bottom no-repeat;
    font-size: 14px;
    font-weight: bold;    padding: 10px;
    width: 100%;
    border:2px solid #e1e1e1;
    -webkit-appearance: none;
    -moz-appearance: none;
    /*color: #FFFFFF;*/
    -webkit-border-radius: 0!important;
    -moz-border-radius: 0!important;
    border-radius: 0!important;
    background-color: transparent;
    margin-bottom:10px;
}
.dnnEditState select {
    padding:5px;
    width:auto;
    border:1px solid #ccc;
    color:#000;
    font-weight: normal;
}

input:focus,
select:focus,
button:focus {
    outline: none;
}

.form-control {
    border-radius: 0;
}

.cta-full-width {
    background-color: #DF1825;
    display: flex;
    align-items: center;
    color: #FFFFFF;
    justify-content: center;
    text-transform: uppercase;
    padding: 40px 0;
    /*margin-bottom: 20px;*/
}

.cta-full-width .Normal {
    display: flex;
    align-items: center;
    color: #FFFFFF;
    justify-content: center;
}

.cta-full-width h4 {
    margin-bottom: 0;
}
.cta-full-width h4 span {
    font-weight: bold;
}
.cta-full-width a,
.Normal .cta-full-width a{
    display: inline-block;
    color: #FFFFFF !important;
    text-align: center;
    border: 1px solid #fff;
    padding: 15px 30px;
    margin-left: 30px;
    letter-spacing: 2px;
    transition: all 0.25s ease;
}
.cta-full-width a:hover {
    background-color: #FFFFFF;
    color: #DF1825 !important;
}
.cta-full-width.mobile-only {
    display: none;
    padding: 40px;
    text-align: center;
}
.cta-full-width.mobile-only h4 {
    font-size: 30px;
}
.cta-full-width.mobile-only a {
    margin-left: 0px;
    margin-top: 15px;
}

/* END */

/* === Header Styling === */

/* Top Bar */

.top-bar {
    background-color: #F6F6F6;
    color: #000000;
    font-weight: bold;
}

.top-bar .delivery-msg {
    text-transform: uppercase;    
    padding: 10px 0;
}

.top-bar .delivery-msg span {
    color: #DF1825;
}

.top-bar .top-menu-container {    
    padding: 0;
}

ul.top-menu {
    list-style: none;
    float: right;
    margin-bottom: 0px;
}

ul.top-menu li {
    float: left;
}

ul.top-menu li a {
    color: #000000;
    padding: 10px;
    display: block;
}

ul.top-menu li.header-call {
    background-color: #DF1825;
    color: #FFFFFF;
}

ul.top-menu li.header-call a {
    color: #FFFFFF;
    display: inline-block;
    padding: 10px;
}

ul.top-menu li.header-call i.fas.fa-phone {
    transform: rotate(90deg);
}

.search-top i.fal.fa-search {
    position: absolute;
    top: 20%;
    right: -10px;
    font-size: 20px;
}

/* Logo Bar */

.logo-bar {
    padding: 15px 0;
    background-color: #FFFFFF;
}

.row.inner-wrapper {
    align-items: center;
}

.search-top input {
    color: #000000;
    text-transform: uppercase;
    border: none;
    border-bottom: 2px solid #000000;
    padding: 10px 0;
    float: left;
    width: 100%;
}

.search-top input:focus {
    outline: none;
}

.search-top a {
    color:#000;
    top: 10px;
    position: relative;
    right: 15px;
}
.logo-bar a.logo-link {
    text-align: center;
    display: block;
}

.logo-bar a.logo-link img {
    max-width: 200px;
}

.login-top ul {
    list-style: none;
    float: right;
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.login-top ul a {
    color: #000000;
    padding: 10px 0px;
    font-size: 25px;
}

.wishlist-header {
    padding-left:50px;
}

.login-top li {
    position: relative;
    padding:10px 50px;
}

.wishlist-count {
    position: absolute;
    font-family: 'Play', sans-serif;
    font-weight: normal;
 
    right:0;
    width:25px;
    text-align:center;
    top:10px;
    color:#df1825;
    font-size: 12px
}

.wishlist-heart {
    position: relative;
    display: block;
}

/* Menu Bar */

#menu-bar {
    border-top: 1px solid #E0E0E0;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ebebeb+100 */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #ebebeb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%,#ebebeb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%,#ebebeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebebeb',GradientType=0 ); /* IE6-9 */
}
.fixedMenu {
    position: fixed;
    top: 0;
    z-index: 9999;
    width: 100vw;
}

.topLevelCat {
    display: block;
    padding: 10px;
    color: #000000;
    text-transform: uppercase;
    transition: background-color 0.25s ease;
}

#menu-bar ul.top-level {
    list-style: none;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
    margin-bottom: 0;
}
#menu-bar ul.top-level > li {
    flex: 1;
    text-align: center;
}

.menu-cat a,
.menu-cat a:hover,
.menu-cat a:visited,
.menu-cat a:active,
.menu-cat a:focus,
.topLevelCat,
.topLevelCat:hover,
.topLevelCat:visited,
.topLevelCat:focus,
.topLevelCat:active {
    color: #333;
}

.topLevelCat:hover {
    background-color: #DF1825;
    color:#fff !important;
}

ul.top-level .active {
    background-color: #DF1825 !important;
}

ul.top-level .fixed-logo {
    background: linear-gradient(to bottom, #ffffff 0%,#ebebeb 100%);
}

ul.top-level .active .topLevelCat {
    color:#fff !important;
}

#menu-bar ul.top-level > li > div.menu-cat {
    display: block;
    padding: 10px;
    color: #000000;
    text-transform: uppercase;
    transition: background-color 0.25s ease;
}
#menu-bar ul.top-level > li > div.menu-cat:hover,
#menu-bar ul.top-level > li.active > div.menu-cat {
    background-color: #DF1825;
    color: #FFFFFF;
}
#menu-bar ul.top-level li.fixed-logo,
#menu-bar ul.top-level li.fixed-cart {
    visibility: hidden;
    opacity: 0;
    flex: 0;
    transition: all 0.5s ease;
}
#menu-bar.fixedMenu ul.top-level li.fixed-logo,
#menu-bar.fixedMenu ul.top-level li.fixed-cart {
    flex: 1;
    visibility: visible;
    opacity: 1;
}
#menu-bar ul.top-level li.fixed-logo a img {
    max-width: 100px;
}
#menu-bar.fixedMenu ul.top-level li.fixed-logo a:hover {
    background-color: transparent;
}
#menu-bar ul.top-level li.fixed-cart {
    height: 0;
}
#menu-bar.fixedMenu ul.top-level li.fixed-cart {
    display: flex;
    align-items: center;
}
#menu-bar.fixedMenu ul.top-level li.fixed-cart a {
    font-size: 16px;
    padding: 0 15px;
    color: #000000;
}
#menu-bar.fixedMenu ul.top-level li.fixed-cart.active > a {
    background: transparent;
    color: #000000;
}
#menu-bar.fixedMenu ul.top-level li.fixed-cart.active > a:hover {
    color: #DF1825;
    font-weight:bold;
}
/*#menu-bar.fixedMenu ul.top-level li.fixed-cart a:last-child {
    margin-left: 10px;
}*/

/* Sub Menu Content */

.menu-content-wrapper-inner {
    overflow-x: hidden;
    max-height: 85vh;
}
div.sub-menu-content-wrapper {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.5s ease;
    background-color: #FFFFFF;
    position: absolute;
    width: 100%;
    z-index: 999999;
    left: 0;
}
ul.top-level li.active:hover div.sub-menu-content-wrapper {
    visibility: visible;
    opacity: 1;
transition-delay: .25s; 
}
.cat-header {
    color: #fff;
    background-color: #DF1825;
    padding: 20px;
    margin-bottom: 15px;
}
.cat-header h4 {
    margin-bottom: 0;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
}
.cat-header a {
    color: #FFFFFF;
    text-transform: uppercase;
    border: 1px solid #FFFFFF;
    padding: 10px 20px;
    display: block;
    position: absolute;
    right: 90px;
    top: 14px;
}

.cat-header a:hover {
    color:#DF1825 !important;
    background-color: #fff !important;
}

.sub-cat-column {
    width: 25%;
    margin-right: 1%;
    float: left;
}

.menu-column-wrapper,
.navUl2:not(.mobile-sub-menu) {
    column-count: 4;
    padding-bottom: 30px;
    padding-top: 10px;
}

.sub-cat-listing,
.navLi2:not(.mobile-item) {
    text-align: left;
    padding: 10px 20px;
    /*min-height: 235px;*/
}
.sub-cat-listing h5,
.navLi2:not(.mobile-item) > a {
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #DF1825;
    padding-bottom: 5px;
    font-size:1.25rem;
    color:#000;
    margin-bottom:.5rem;
    line-height: 1.2;
    display: block;

}
.sub-cat-listing ul,
.navLi2:not(.mobile-item) ul {
    list-style: none;
    padding-left: 0;

}
.sub-cat-listing ul a,
.navLi2:not(.mobile-item) ul a {
    color: #000000;
    padding: 2px 0;
    display: block;
    font-size: 14px;

}
.sub-cat-listing ul li:last-child a,
.navLi2:not(.mobile-item) ul li:last-child a {
    color: #DF1825;
}
.shop-brand {
    display: inline-block;
    align-items: center;
    text-align: left;
    background-color: #D5D6DB;
}
.brand-title {
    width: 25%;
    padding: 30px;
}
.brand-title h4 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 18px;
    margin-bottom: 0px;
}
.brand-title a {
    font-weight: bold;
    color: #DF1825;
}
.brand-title h3 {
    font-size:18px;
    color: #DF1825;
    margin:0 !important;
}
.brand-logos {
    width: 75%;
    padding: 30px;
}

.brand-logos ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    min-height:50px;
}
.brand-logos ul a {
    display: block;
    text-align: center;
}
.brand-logos ul img {
    width: 70%;
    opacity: 0.3;
}
.brand-logos ul a:hover img {
    opacity: 1;
}

/* Mobile Header */

.mobile-header .logo-bar .inner-wrapper > * {
    flex: 1;
}
.mobile-header .logo-bar .inner-wrapper .logo-link {
    flex: 3;
}
.mobile-header .logo-bar .inner-wrapper {
    text-align: center;    
    padding: 0 20px;
}
.mobile-header .logo-bar a.logo-link {
    padding: 0 20px;
}
.mobile-header .mobile-links {
    font-size: 25px;
    color: #000000;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    /* text-align: center; */
    width: 25%;
}

/* Category Nav Brand Section */

.catBrandSection {
    padding:10px 0;
    background-color: #d5d6db;
}

.catBrandSection h2 {
    font-size:18px;
    margin-top: 30px;
}

.catBrandSection h3 {
    font-size:14px;
    color:#df1522;
}

.catBrandSection a,
.catBrandSection a:hover,
.catBrandSection a:visited,
.catBrandSection a:active,
.catBrandSection a:focus {
    text-decoration: none !important;
}

/* Icon */

.mobile-header #nav-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0 0 0 auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    background: transparent !important;
    box-shadow: 0 0;
}

.mobile-header #nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 70%;
    background: #000000;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.mobile-header #nav-icon span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
}

.mobile-header #nav-icon span:nth-child(2) {
    top: 9px;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
}

.mobile-header #nav-icon span:nth-child(3) {
    top: 18px;
    -webkit-transform-origin: right center;
    -moz-transform-origin: right center;
    -o-transform-origin: right center;
    transform-origin: right center;
}

.mobile-header #nav-icon.nav-open span:nth-child(1) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -1px;
}

.mobile-header #nav-icon.nav-open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.mobile-header #nav-icon.nav-open span:nth-child(3) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 20px;
}

.nav-open > i.fal.fa-search {
    color:#DF1825;
}

.mobile-header .menu-wrapper,
.mobile-header .search-wrapper {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.5s ease;
    position: absolute;
    width: 100%;
}
.mobile-header .menu-wrapper.nav-open,
.mobile-header .search-wrapper.nav-open {
    visibility: visible;
    opacity: 1;
    height: 100vh;
    overflow: auto;
    background-color: #F6F6F6;
    z-index: 9999;
    margin-top: 15px;
}
.mobile-header .menu-wrapper ul,
.mobile-header .search-wrapper ul {
    list-style: none;
    padding: 0;
}

li.mobile-close span {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 18px;
    background-color: #DF1825;
    color: #FFFFFF;
}

/* Mobile Search Styling */

.mobile-header .search-wrapper.nav-open {
    height: auto;
}
.mobile-header .search-wrapper ul {
    margin-bottom: 0px;
}
.mobile-header .search-wrapper ul li.mobile-search {
    position: relative;
}
.mobile-header .search-wrapper ul li.mobile-search input[type="text"] {
    width: 100%;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 30px;
    color: #000000;
    font-size: 15px;
}

#dnn_mobileSearch_txtSearch {
    color:#000 !important;
}

.mobile-header .search-wrapper ul li.mobile-search input[type="text"]:focus {
    outline: none;
}
.mobile-header .search-wrapper ul li.mobile-search i.fal.fa-search {
    position: absolute;
    top: 35%;
    right: 30px;
    font-size: 20px;
    color: #000;
}

/* Mobile Menu Styling */

.mobile-header .menu-wrapper ul.mobile-top-menu > li > div,
.mobile-header .menu-wrapper ul.mobile-top-menu > li > a.mobile-account,
.mobile-header .menu-wrapper ul.mobile-top-menu li.mobile-pages a {
    display: block;
    padding: 20px 30px;
    font-size: 15px;
    border-top: 1px solid #D5D6DB;
    color: #000000;
    text-transform: uppercase;
}

.mobile-header .menu-wrapper ul.mobile-top-menu > li > div:after,
.mobile-header .menu-wrapper ul.mobile-top-menu > li > a.mobile-account:after {
    content: '\f055';
    font-family: 'Font Awesome 5 Pro';
    float: right;
    font-weight: 300;
    color: #DF1825;
    font-size: 20px;
    line-height: 21px;
    transition: all 0.5s ease;
}

.mobile-header .menu-wrapper ul.mobile-top-menu > li.sub-open > div:after {
    transform: rotate(45deg);
}

.mobile-header .menu-wrapper ul.mobile-top-menu > li > a.mobile-account {
    background-color: #DF1825;
    color: #FFFFFF;
}
.mobile-header .menu-wrapper ul.mobile-top-menu > li > a.mobile-account:after {
    content: '\f007';
    color: #FFFFFF;
}
.mobile-header .menu-wrapper ul.mobile-top-menu li.mobile-pages {
    display: flex;
    align-items: center;
}

.mobile-header .menu-wrapper ul.mobile-top-menu li.mobile-pages a {
    background-color: #000000;
    color: #FFFFFF;
    border: 1px solid #D5D6DB;
    width: 100%;
    padding: 20px 0;
    text-align: center;
}

.mobile-header .menu-wrapper ul.mobile-top-menu li.mobile-pages a:after {
    content: none;
}

.mobile-header .menu-wrapper ul.mobile-top-menu ul.mobile-sub-menu {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    transition: max-height 0.5s ease, opacity 1s ease;
}

.mobile-header .menu-wrapper ul.mobile-top-menu > li.sub-open > ul.mobile-sub-menu {    
    visibility: visible;
    opacity: 1;
    max-height: 500px;
    padding: 10px 0;
    background-color: #dcdde1;
    overflow-x: scroll;
}

.mobile-header .menu-wrapper ul.mobile-top-menu ul.mobile-sub-menu > li > a {
    display: block;
    padding: 7px 40px 7px 50px;
    font-size: 14px;
    color: #969696;
}
.mobile-header .menu-wrapper ul.mobile-top-menu ul.mobile-sub-menu li:first-child a {
    color: #DF1825;
    font-weight: bold;
    text-transform: uppercase;
}

/* === Homepage === */

.home-banner-cta-wrapper {
    background-color: #000000;
}

.dnnEditState .home-banner-cta-wrapper {
    background-color: #fff
}

.not-prod .bx-wrapper, 
.not-prod .bx-viewport,
.not-prod ul.bxslider,
.not-prod ul.bxslider li
{
    height: 81vh !important;

}

.not-prod ul.bxslider li img {
    display: none;
}
.not-prod ul.bxslider li {
    background-size: cover;
    background-position: center;
}

/* Banner */
.bx-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0;
    *zoom: 1;
}
.bxslider {
    margin:0;
    padding: 0;
    list-style: none;
}
.slide-content {
    /*position: absolute;*/
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    left: 10%;
    text-align: left;
}
.slide-content span,
.slide-content a {
    display: block;
    color: #fff;
}
span.slide-header {
    color: #FFFFFF;
    background-color: #DF1825;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}
span.slide-main {
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}
span.slide-sub {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #D5D6DB;
}
a.slide-link {
    font-size: 14px;
    border: 1px solid #D5D6DB;
    display: inline-block;
    padding: 10px 50px;
    font-weight: bold;
    text-transform: uppercase;
    /*transition: all 0.5s ease;*/
}
a.slide-link:hover {
    background-color: #D5D6DB !important;
    color: #000000;
}
.bx-controls-direction {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 20px;
}
.bx-controls-direction a {
    color: grey;
    font-size: 30px;
    padding-right:20px;
}
a.bx-next {
    float: right;
}
.ls-slide:hover a.slide-link {
    background-color: #D5D6DB !important;
    color: #000000 !important;
} 

/* Call to Actions */

.cta-col,.cta-left-col {
    float: left;
    width: 33.33%;
    color: #FFFFFF;
    display: block;
    font-size: 14px;
    position: relative;
    background-color: #DF1825;
    overflow: hidden;
}

.cta-col-white {
    float: left;
    width: 25%;
    color: #FFFFFF;
    display: block;
    font-size: 14px;    
    position: relative;
    background-color: #fff;    
    overflow: hidden;
    min-height:150px;
    /*margin:5px;*/
}


/*.catNoImage img {
    border:solid 1px grey;
    border-radius:4px;
}*/


.cta-full-col {
    position: relative;
    overflow: hidden;
     display: block;
    font-size: 14px;    
     background-color: #DF1825;    
}
.cta-col img,
.cta-left-col img,
.cta-full-col  img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    /*position: relative;*/
    z-index:1;
}

.cta-col-white img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: relative;
    z-index:1;
    display: inline-block;
    /*margin-left: 25%;*/
    padding:10px;
}

.cta-col:hover img,
.cta-col-white:hover img,
.cta-left-col:hover img,
.cta-full-col:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.cta-left-col {
   /* height:700px;*/
}

span.category {
    position: absolute;
    top: 11%;
    left: 8%;
    background-color: #DF1825;
    padding: 5px 20px;
    text-transform: uppercase;
    font-weight: bold;
}
span.cta-info {
    position: absolute;
    bottom: 12%;
    left: 8%;
    z-index: 2;
}
span.cta-title {
    font-size: 38px;
    line-height: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    display: block;
    color:#fff;
}
span.cta-title.title-red {
    color: #DF1825;
}
span.cta-sub {
    text-transform: uppercase;
    font-weight: bold;
    color: #DF1825;
}
span.cta-sub.sub-dark {
    color: #000000;
}
.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    /*background-color: rgba(0,0,0,0.5);*/
}
/*.homepage-cta-upper .cta-overlay,
.landing-cta-upper .cta-overlay {
    display: none;
}*/

/* CTA Lower */

.lower-cta-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 100%;
    text-align: left;
    font-size: 34px;
    line-height: 40px;
    font-weight: bold;
    z-index: 1;
    text-transform: uppercase;
    padding: 0 15%;
    /*color: #DF1825;*/
}

/* END */

/* === Featured & Recent Carousels === */

.featured-product-wrapper,
.recent-product-wrapper {
    background-color: #F6F6F6;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
}
.featured-product-wrapper h3,
.recent-product-inner h3 {
    font-weight: bold;
    margin-bottom: 30px;
}
.featured-carousel .owl-stage-outer,
.recent-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
}
.featured-carousel,
.recent-carousel {
    position: relative;
}
.owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.owl-prev,
.owl-next {
    font-size: 30px;
    color: #DF1825;
    cursor: pointer;
}
.owl-prev {
    float: left;
    margin-left: -40px;
}
.owl-next {    
    float: right;
    margin-right: -40px;
}
.owl-item {
    float: left;
}
.product-wrapper {
    background-color: #fff;
}
.product-wrapper a {
    display: block;
    position: relative;
}
.productStatus span.top-left-info,
.productStatus span.top-right-info {
    position: static;
}
span.top-left-info,
span.top-right-info {
    position: absolute;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}
span.top-left-info {
    top: 2%;
    left: 4%;
}
span.top-left-info.red {
    color: #DF1825;
}
span.top-left-info.orange {
    color: #ff5a00;
}
span.top-left-info.purple {
    color: #7b0095;
}
span.top-right-info {
    top: 2%;
    right: 4%;
}
span.top-right-info.skyblue {
    color: #0090ff;
}
span.junior-title {
    position: absolute;
    bottom: -3%;
    width: 100%;
    font-size: 18px;
    text-transform: uppercase;
    color: #8ad01c;
    display: block;
    /*position: relative;*/
    text-align: center;
    /*padding: 5% 0;*/
}
span.details-price {
    display: block;
    text-align: center;
    padding: 10px 30px;
}
span.product-name {
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: #969696;
}
span.price {
    font-weight: bold;
    color: #000000;
    font-size: 25px;
}
span.prod-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
}
span.reg-ret-price,
span.saving {
    color: #969696;
}
span.reg-ret-price span {
    /*text-decoration: line-through;*/
}
span.saving span {
    font-weight: bold;
    color: #8ad01c;
}

/* END */

/* === Page Styling === */

.page-title {
    text-align: center;
    padding: 8vh;
    background-size: cover;
    color: #000000;
    position: relative;
}
.page-title.dark-header {
    color: #FFFFFF;
    background-color:#000;
}

.category-header {
    display: none;
}

.dnnEditState .category-header {
    display: block;
}

.buyers-guide {
    position: absolute;
    right:50px;
    top:70px;

    background: #df1825;
    color:#fff;
    font-size:14px;
    padding:10px 15px;
    text-transform: uppercase;
}


.page-title h1 {
    text-transform: uppercase;
}
.breadcrumbs ul li {
    display: inline-block;
}
.breadcrumbs ul li a {
    color: #D5D6DB;
    font-size: 16px;
}
.breadcrumbs ul li a:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    float: right;
    font-weight: 300;
    color: var(--pmediumgrey);    
    margin: 0 10px;
    font-size: 12px;
    line-height: 25px;
}
.breadcrumbs ul li:last-child a {
    color: #DF1825;
}
.breadcrumbs ul li:last-child a:after {
    content: none;
}

/* END */

/* === Landing Page Styling === */

.brand-wrapper {
    border-top: 1px solid #E0E0E0;
    text-align: left;
    background: linear-gradient(90deg, #F6F6F6 75%, #DF1825 75%);
    display: none;
}
.brand-wrapper ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.brand-wrapper ul a {
    background-color: #F6F6F6;
    display: flex;
    height: 100%;
    align-items: center;
    flex-grow: 1;
    padding: 15px 0px;
    text-align: center;
}
li.view-brands a {
    background-color: #DF1825;
    color: #FFFFFF;    
    padding-left: 20px;
    padding-right: 20px;
}
.brand-wrapper ul a img {
    width: 60%;
    opacity: 0.3;
    margin-left: auto;
    margin-right: auto;
    transition: opacity 0.5s ease;
}
.brand-wrapper ul a:hover img {
    opacity: 0.8;
}
.landing-cta-upper {
    display: flex;
    align-items: center;
}

.landing-left-panel,
.landing-right-panel {
    align-self: stretch;
}
.landing-left-panel {
    flex: 1;    
}
.landing-left-panel a {
    height: 100%;
    color: #FFFFFF;
    display: block;
    font-size: 14px;    
    position: relative;
    background-color: #DF1825;    
    background-size: cover;
    background-position: center;
}
.landing-left-panel a:hover {
    background-size: 120% 110%;
}
.landing-left-panel a img {
    max-width: 100%;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.landing-left-panel a:hover img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.landing-right-panel {
    flex: 2;
}
.landing-right-panel .cta-col {
    width: 50%;
}

.landing-lower-banner {
    position: relative;
    width: 100%;
    height: 50vh;
    background-size: cover;
    background-position: center;
}
.landing-banner-content {
    position: absolute;
    width: 45%;
    top: 50%;
    transform: translateY(-50%);
    right: 7%;
}
.landing-banner-upper,
a.landing-banner-link {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
.landing-banner-content span, 
.landing-banner-content a {
    display: block;
    color: #fff;
}
span.landing-banner-main {
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}
span.landing-banner-sub {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: normal;
    color: #D5D6DB;
}
a.landing-banner-link {
    border: 1px solid #D5D6DB;
    padding: 10px 50px;
    display: inline-block;
    transition: all 0.5s ease;
}
a.landing-banner-link:after {
    content: '\f04b';
    font-family: 'Font Awesome 5 Pro';
    float: right;
    font-weight: 900;
    margin: 0 10px;
    font-size: 12px;
    line-height: 25px;
    margin-top: -2px;
}

/* END */

/* === Category Styling === */

/* Filters Header */

.product-filter-row {
    background-color: #DF1825;
}
.product-filter-inner {
    display:flex;
    align-items: center;
    width: 100%;
}
.product-filter-inner p {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 16px;
}
.product-filter-inner > ul {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
}
.product-filter-inner > ul > li {
    display: inline-block;
}
.product-filter-inner ul li span {
    color: #FFFFFF;    
    padding: 20px 10px 20px 20px;
    display: inline-block;;
    font-size: 20px;
    width: 100%;
    text-align: center;
}
.product-filter-inner ul li span:hover {
    cursor:pointer;
}
.product-filter-inner ul li span.filter-header:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    float: right;
    font-weight: 300;
    margin: 0 10px;
    transform: rotate(0deg);
    transition:  transform 0.5s ease;
}

.product-filter-inner ul li span.filter-open {
    background-color: #c61821;
}
.product-filter-inner ul li span.filter-open:after {
    transform: rotate(180deg);
}
.product-filter-inner ul li span.filter-close {
    text-align: center;
    display: block;
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #FFFFFF;
    padding: 5px;
    transition: all 0.5s ease;
}
.product-filter-inner ul li span.filter-close.filter-footer {
    margin-top: 40px;
}
.product-filter-inner ul li span.filter-close:hover {
    background-color: #FFFFFF;
    color: #DF1825;
    cursor: pointer;
}
.filters-wrapper {
    background-color: #c61821;
    position: absolute;
    width: 100%;
    z-index: 1;
    padding: 50px;    
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s, opacity 0.5s ease;
    margin-left: 0 !important;
}

/*.attributeFilter .filter-options label.checkbox.checked span, .attributeFilter .filter-options li:hover label.checkbox span {
    background-image: url(img/checkbox-active.png);
}*/

.attributeFilter .filter-options label.checkbox span:before {
    content: "\f45c";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    margin-left: 10px;
}

.attributeFilter li.filtered label:before {
    color:#fff !important;
}

.attributeFilter .filtered .checked:before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900 !important;
}

.brandFilter .filtered label::before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900 !important;
}


.attributeFilter label {
    font-size: 16px;
    color:#fff;
}

span.filter-open + .filters-wrapper {
    visibility: visible;
    opacity: 1;
}

.stockFilter input::before {
    content: "\f45c";
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    display: inline-block;
    font-size: 14px;
    margin-right: 10px;
    margin-left: 10px;
}

.stockFilter input[type="checkbox"]:checked + ::before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900 !important;
}

.stockFilter input {
    -webkit-appearance: none;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.stockFilter input[type=checkbox]:checked ~ input::before {
    font-family: 'Font Awesome 5 Pro';
    font-weight: 900 !important;
}

#toggle


/*.filter-list {
    width: 80vw;
    margin: 0 auto;
}*/
/*.filter-list {
    width: 23%;
    margin: 0 auto;
    float: left;
    margin-right: 1%;
    margin-left: 1%;
}*/

.filter-list span.filter-title {
    padding-left: 0;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #FFFFFF;
}
span..filter-list {
    text-transform: uppercase;
}

.filters-wrapper span {
    padding:7px 0px !important;
    border-bottom: 1px solid #FFFFFF;
    margin-bottom: 20px;
}

.filter-options {
    padding-left: 10px !important;
}

.filter-options li label,
.filter-options li label:hover,
.filter-options li label:active,
.filter-options li label:visited,
.filter-options li label:focus,
.filter-list a,
.filter-list a:hover,
.filter-list a:active,
.filter-list a:visited,
.filter-list a:focus {
    color:#fff;
    font-size:16px;
    text-decoration: none;
    cursor:pointer;
}

.breadcrumbs ul li a,
.breadcrumbs ul li a:hover,
.breadcrumbs ul li a:visited,
.breadcrumbs ul li a:focus,
.breadcrumbs ul li a:active {
    text-decoration: none;
}

#dnn_ctr747_ViewProductListing_ctl00_hypBuyersGuide,
#dnn_ctr747_ViewProductListing_ctl00_hypBuyersGuide:hover,
#dnn_ctr747_ViewProductListing_ctl00_hypBuyersGuide:visited,
#dnn_ctr747_ViewProductListing_ctl00_hypBuyersGuide:active,
#dnn_ctr747_ViewProductListing_ctl00_hypBuyersGuide:focus {
    text-decoration: none;
    color:#fff;
}

a, a:visited {
    text-decoration: none !important;
}

.subCategories ul {
    max-height:100% !important;
}

.filter-list ul {
    margin: 0 auto;
    float: left;
    margin-right: 1vw;
    margin-left: 1vw;
    max-height: 200px;
    overflow: hidden;
    overflow-y: auto;
    width: 95%;
}
.filter-list h6 {
    color: #FFFFFF;
    text-transform: uppercase;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 25px;
    display: inline-block;
    border-bottom: 1px solid;
}

/* Product Section */

.category-listing-wrapper {
    padding: 8vh 0;    
    background-color: #F6F6F6;
}

.category-listing-wrapper article {
    font-size: 14px;
    margin-top:15px;
}

.category-listing-wrapper article p {
    margin: 0 0 1rem 0;
}

.category-listing-wrapper a {
    color:red;
}

.category-listing-wrapper  .products-section {
    width:100%;
}

.products-section .product-wrapper {
    width: 23.5%;
    margin: 0 0.5% 1%;
    display: inline-block;
}

span.image-cta-wrap {
    display: block;
    position: relative;
    text-align: center;
    padding: 5% 0;
    max-height: 425px;    
}

span.image-cta-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; /* Adjusts for spacing */
}

span.image-cta-wrap img {
    max-width: 90%;
    width:auto;
    max-height:320px;
    /*min-height:320px;*/
}

.products-section .pagination-row:last-child {
    margin-top: 40px;
}

/* Pagination Row */

.pagination-row,
.sorter-dropdowns {
    display: flex;
    align-items: center;
}
.pagination-row {
    padding: 0 0.5% 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.sorter-dropdowns {
    border: 1px solid #D5D6DB;
    flex: 1;
    padding-left: 20px;
    margin-right: 20px;
}
.pagination-row select {
    background: url(images/selectbox-arrow-black.png) right center no-repeat;
    color: #000000;
    border: none;
    opacity: 0.4;
    position: relative;
    top: 5px;
}
.category-pagination {
    flex: 3;
}
.category-pagination ul {
    margin-bottom: 0;
    text-align: right;
    margin-right: 2.5%;
}
.category-pagination ul li {
    display: inline-block;
}
.category-pagination ul li a {
    color: #000000;
    padding: 10px 14px;
}
.category-pagination ul li a.active,
.category-pagination ul li a:hover {
    color: #FFFFFF;
    background-color: #DF1825;
}


.wishlist-prodlist {
    font-size: 22px;
    color:#000;
}

a.wishlist-active {
    color:#df1825;
    padding:0;      
}

/* END */

/* === Single Product Styling === */

.product-breadcrumbs-row {
    padding: 20px;
    border-bottom: 1px solid #D5D6DB;
}
.product-breadcrumbs-row .breadcrumbs ul {
    margin-bottom: 0;
}
.product-breadcrumbs-row .breadcrumbs ul li a {
    color: #000000;
    font-size: 14px;
}
.product-breadcrumbs-row .breadcrumbs ul li:last-child a {
    color: #DF1825;
}

/* Main Content */

.product-title {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
}

.product-title h1 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0;
}

.product-title a.wishlist {
    margin-left: auto;
    font-size: 18px;
    color: #000000;
}
.product-title a.wishlist i {
    margin-right: 5px;
}

.product-content {
    padding-bottom: 80px;
}

/* Image Section */

/*.main-image-wrapper {
    border: 1px solid #D5D6DB;
}*/

.main-image-wrapper {
    text-align: center;
}

.product-image {
    max-height:550px;
    width:auto;
    max-width: 100%;
    margin:0 auto;
}

.product-thumbnails a {
    border-left: 1px solid #D5D6DB;
    border-bottom: 1px solid #D5D6DB;
}

.product-thumbnails img {
    display: inline-block;
    float: left;
    /*width: 20%;*/

}

.product-thumbnails .alternateImages li {
    float: left;
    list-style: outside none none;
    position: relative;
    /*width: 76px;*/
}

.product-thumbnails .alternateImages li a.video img {
    /*z-index: 99999 !important;*/
    /*position: absolute;*/
    max-height: 95%;
    max-width: 95%;
}

.product-thumbnails a:last-child {
    border-right: 0.5px solid #D5D6DB;
}
.product-thumbnails .active {
    z-index:1;
    outline: 2px solid #DF1825;
    outline-offset: -2px;
}
ul.social-share li {
    display: inline-block;
}
ul.social-share li a {
    display: block;
    color: #D5D6DB;
    font-size: 25px;
    padding: 10px 15px;
}
ul.social-share li a:hover {
    color: #DF1825;
}

/* Info Section */

.price-row,
.savings-row {
    display: flex;
    align-items: center;
}

span.main-price {
    display: inline-block;
    font-size: 40px;
    font-weight: bold;
    margin-right: 20px;
}
span.main-price.old-price {
    color: #D5D6DB;
    text-decoration: line-through;
    font-weight: normal;
}

.price-row img {
    width: 15%;
    margin-left: auto;
}

.savings-row span {
    font-size: 14px;
    font-weight: bold;
    color: #000000;
    margin-right: 15px;
}
.savings-row span.product-code {
    margin-left: auto;
    margin-right: 0;
}

.product-dropdowns {
    margin-top: 30px;
}
.product-dropdowns select,
.product-check-radios select,
.styled-select {
    background: url(images/selectbox-arrow-black.png) right center no-repeat;
    text-transform: uppercase;
    color: #000000;
    border: 1px solid #D5D6DB;
    padding: 20px 30px;
    margin-bottom: 30px;
}

.product-dropdowns table {
    width:100%;
}

.product-dropdowns th {
    display: none;
}

.styled-select {
    padding:5px;
    margin-bottom:10px;
}

.product-check-radios > span,
.product-check-radios-knock  {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0;
    border-top: 1px solid #D5D6DB;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}
/*.product-information .product-check-radios:last-child {
    border-bottom: 1px solid #D5D6DB;
}*/
.product-check-radios span span span,
.product-check-radios-knock span {
    color: #DF1825;
}
.product-check-radios .input-wrapper,
.product-check-radios span span:nth-child(2n) {
    margin-left: auto;
    display: flex;
    align-items: center;
    position: relative;
}

.product-check-radios table,
.product-check-radios tbody  {
    width:100%;
}

.product-check-radios table tr {
    width:50%;
    float: left;
}

.additional-fields {
    visibility: hidden;
    opacity: 0;
    height: 0;
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
}
.additional-fields.additional-open {
    visibility: visible;
    opacity: 1;
    height: 80px;
}
.additional-fields .product-dropdowns {
    margin-top: 15px;
    flex: 1;
}
.additional-fields .product-dropdowns select {
    margin-bottom: 0px;
}
.additional-fields input[type="text"],
.product-check-radios input[type="text"] {
    flex: 2;
    /*margin-left: 20px;*/
    font-size: 14px;
    color: #000000;
    font-weight: bold;
    text-transform: uppercase;
    padding: 19px;
    /*margin-top: 15px;*/
    border: 1px solid #D5D6DB;
}


    .multi-save-wrapper {
        margin-top: 30px;
        text-align: center;
        text-transform: uppercase;
        font-size: 16px;
        color: #DD1825;
    }
    .multi-saving {
        display: flex;
        align-items: center;
    }
    .multi-col {
        flex: 1;
        align-self: stretch;
        padding: 15px;
        border: 1px solid #DD1825;
    }
    .multi-col.multi-text {
        font-weight: bold;
    }
    .multi-col.multi-price {
        border-top: none;
    }
    .multi-save-wrapper .multi-saving:first-child .multi-col.multi-price {
        border-top: 1px solid #DD1825;
        border-left: none;
        padding-left: 17px;
    }
    .multi-save-wrapper .multi-saving:not(:first-of-type) {    
        justify-content: flex-end;
    }
    .multi-save-wrapper .multi-saving:not(:first-of-type) .multi-col.multi-price {
        flex: unset;
        width: 50.2%;
    }


/* Stock Status */

.stock-status {    
    font-weight: bold;
    font-size: 14px;
    padding: 25px 0;
    border-top: 1px solid #D5D6DB;
    border-bottom: 1px solid #D5D6DB;
}
.stock-status span.out-stock {
    color: #DF1825;
}
.stock-status span.in-stock {
    color: #8ad01c;
}

/* Email Button */

a.email-when-instock {
    display: block;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    background-color: #DF1825;
    color: #FFFFFF;
    margin-top: 20px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 2px;
    border: 1px solid #DF1825;
}

a.email-when-instock:hover {
    color: #DF1825;
    background-color: transparent;
}

a.learn-more-btn {
    display: block;
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
    background-color: #FFFFFF;
    color: #DF1825 !important;
    margin-top: 20px;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 5px;
    border: 1px solid #DF1825;
    cursor: pointer;
}
a.learn-more-btn:hover {
    color: #FFFFFF !important;
    background-color: #DF1825;
}

/* Add Cart */

.add-to-cart {
    padding: 30px 0 0;    
    display: flex;
    align-items: center;
}
div#quantity-field {
    display: flex;
    align-items: center;
    font-size: 16px;
}
div#quantity-field button {
    -webkit-appearance: none;
    border: 0;
    font-weight:bold;
    padding: 15px 10px;
    border: 1px solid #D5D6DB;
    cursor: pointer;
}
div#quantity-field input {
    border: 0;
    border-top: 1px solid #D5D6DB;
    border-bottom: 1px solid #D5D6DB;
    text-align: center;
    font-weight: bold;
    padding: 15px 0;
    width: 70%;
}
a.add-to-bag {
    text-align: center;
    display: block;
    width: 100%;
    margin-left: 20px;
    padding: 15px;
    background-color: #DF1825;
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid #DF1825;
}
a.add-to-bag:hover {
    background-color: transparent;
    color: #DF1825;
}

a.exploreVideo {
    text-align: center;
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #FFFFFF;
    color: #DF1825;
    text-transform: uppercase;
    font-size: 16px;
    border: 1px solid #DF1825;
}

a.exploreVideo:hover {
    background-color: transparent;
    color: #FFFFFF;
    background-color: #DF1825;
}


/* Details */

ul.product-details {
    margin-top: 30px;
}
ul.product-details > li {
    border-top: 1px solid #D5D6DB;
}
ul.product-details > li:last-child {
    border-bottom: 1px solid #D5D6DB;
}
.pd-sections {
    padding: 25px 0;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
}
.pd-sections:after {
    content: '\f067';
    font-family: 'Font Awesome 5 Pro';
    float: right;
    font-weight: 300;
    margin: 0 10px;
    transform: rotate(0deg);
    transition:  transform 0.5s ease;
}
.pd-sections.pd-open:after {
    transform: rotate(-45deg);
    color: #DF1825;
}
ul.product-details > li div.pd-sections + div.pd-section-subwrapper {
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.5s ease;
}

ul.product-details > li div.pd-sections.pd-open + div.pd-section-subwrapper {
    visibility: visible;
    opacity: 1;
    height: auto;
    padding-bottom: 25px;
}

div.pd-section-subwrapper ul li {
    font-size: 14px;
    padding: 5px 0;
}

div.pd-section-subwrapper ul li:before {
    content: '\f068';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    margin: 0 10px;
}

div.pd-section-subwrapper p {
    font-size: 14px;
    margin-bottom: 15px;
    /*display: list-item;          
    list-style-type: disc;       
    list-style-position: inside; */
}


div.pd-section-subwrapper h3 {
    font-size: 16px;
    color:#000;
    text-transform: uppercase;
    font-weight: bold;
}

div.pd-section-subwrapper a {
    color:red;
}

/* END */

/* === Footer Styling === */

/* Reviews */

.reviews-wrapper {
    /*padding: 60px 0 80px;*/
    background-color: #FFFFFF;
    text-align: center;
    position: relative;
}
.reviews-wrapper h3 {
    font-weight: bold;
    margin-bottom: 20px;
}
.reviews-wrapper h4 {
    font-size: 16px;
}
.reviews-carousel {
    margin-top: 30px;
}
.reviews-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0,0,0);
    padding-bottom: 60px;
}
.carousel-review {
    background-color: #FFFFFF;
    text-align: left;
    padding: 30px;    
    margin: 20px;
    border: 1px solid #D5D6DB;
    box-shadow: 0px 20px 30px rgba(0,0,0,0.14)!important;
    min-height: 300px;
}
.star-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;    
    margin-bottom: 20px;
}
.star-rating .stars i {
    color: #f1bb16;
}
.carousel-review h6 {
    font-weight: bold;
}
.carousel-review p {
    color: #969696;
}
.reviews-wrapper .owl-nav .disabled {
  display: none;
}
.reviews-lower {
    margin-top: 30px;
}
.reviews-lower p {
    font-size: 14px;
}
.review-logo {
    width: 10%;
}

/* All Footers */

footer ul {
    padding: 0;
    list-style: none;
}
footer .navLi1 a,
footer .navLi1 a:visited,
footer .navLi1 a:hover,
footer .navLi1 a:focus,
footer .navLi1 a:active {
    color: #5E6271 !important;
}
footer a:hover {
    color: #DF1825;
}






/* Footer Top */

.newsletter-col {
    float: left;
    width: 33.33%;
    padding: 60px;
    color: #FFFFFF;
    display: block;
    font-size: 14px;
}

/*.newsletterSignup {
    padding: 40px 60px;
}
*/
.newsletterSignup li,
.newsletterSignup p {
    color:#fff;
    font-weight: bold;
    padding:5px 10px;
    font-size: 16px;
}

.newsletter-col input[type="text"] {
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 10px 15px 10px;
    border: 0;
    border-radius: 0;
    border-bottom: 2px solid #FFFFFF;
    color: #FFFFFF;
    background-color: transparent;
    -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}
.newsletter-col select {    
    background: url(images/selectbox-arrow.png) right center no-repeat;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}
.newsletter-col button {
    width: 100%;
    margin-top: 15px;
    padding: 10px;
    text-transform: uppercase;
    border: 2px solid #FFFFFF;
    background-color: #FFFFFF;
    cursor: pointer;
    font-weight: bold;
}
.newsletter-col button:hover {
    background-color: transparent;
    color: #FFFFFF;
}
.newsletter-info {
    background-color: #DF1825;
}
.newsletter-info ul {
    margin-top: 20px;
}
.newsletter-info ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.newsletter-info ul li i {
    font-size: 25px;
    margin-right: 15px;
}
.newsletter-signup {
    background-image: url('images/newsletter-signup-bg.jpg');
    background-size: cover;
}
.news-form-title.mobile-title {
    display: none;
}
.catalogue-request {
    background-color: #969696;
}

ul.sport-choices {
    column-count: 3;
}

/* Footer Middle */

footer.footer-middle {
    padding: 30px 0;
    background-color: #FFFFFF;
    font-size: 14px;
}
footer.footer-middle h4 {
    color: #DF1825;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-top: 20px;
}
footer.footer-middle p {
    line-height: 26px;
    margin-bottom: 5px;
    color: #5E6271;
}
footer.footer-middle p strong {
    margin-bottom: 5px;
    display: block;
}
footer.footer-middle ul {
    float: left;
    width: 30%;
}
footer.footer-middle ul li a {
    display: block;
    padding: 5px 0;
}
footer.footer-middle ul.footer-social {
    width: 100%;
    display: flex;
    align-items: center;
}
footer.footer-middle ul.footer-social li a {
    font-size: 20px;
    padding: 5px;
    border: 1px solid #DF1825;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    display: block;
    width: 42px;
    height: 42px;
    text-align: center;
    margin-right: 10px;
}

footer.footer-middle ul.footer-social li i {
    position: relative;
    top: 2px;
    font-size: 24px !important;
}

footer.footer-middle ul.footer-social li a:hover {
    background-color: #DF1825;
    color: #FFFFFF;
}
footer.footer-middle .footer-contacts {
    margin-top: 30px;
}
footer.footer-middle .footer-contacts a {
    display: block;
    font-size: 20px;
}
footer.footer-middle .footer-contacts a i.fas.fa-phone {
    transform: rotate(90deg);
}
footer.footer-middle .footer-contacts a i.fal,
footer.footer-middle .footer-contacts a i.fas {
    color: #DF1825;    
    margin-right: 5px;
}

/* Footer Lower */

footer.footer-lower .copyright-left,
footer.footer-lower .copyright-right {
    display: flex;
    align-items: center;
    padding: 30px 0;
    color: #5E6271;
}

footer.footer-lower .copyright-right > div {
    width:100%;
}
footer.footer-lower a.logo-link {
    flex: 1;
    display: block;
    margin-right: 20px;
}
footer.footer-lower ul.copyright-menu {
    flex: 7;
}
footer.footer-lower ul {
    margin-bottom: 0;
}
footer.footer-lower ul li {
    float: left;
}
footer.footer-lower ul li p { 
    padding: 10px 5px;
}
footer.footer-lower ul li a {
    display: block; 
    padding: 10px;
}
footer.footer-lower .copyright-right ul {
    display: flex;
    align-items: center;
}
footer.footer-lower .copyright-right ul li {
    margin-right: 10px;
list-style-type:none;
}
.global-sign {
    width: 80px;
}

/* END */



/*############### cyrane styles ################*/

/* mini basket */

.basket-dropdown {
    display: none;
     position: absolute;
    background-color: #fff;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 11000;
    top:45px;
    right: -15px;
    left: -400px;
  /*  border: 1px solid #1d1d1c;*/
    padding: 20px 30px 30px;
    max-height: 700px;
    text-transform: none;
    text-align: left;
}

.basket-dropdown:before/*,
.basket-dropdown:after*/ {
    content:"\A";
    border-style: solid;
    border-width: 0 15px 15px 15px;
    border-color:   transparent transparent #fff transparent;
    position: absolute;
    top:-13px;
    right: 10px;
}

.basket-dropdown h4 span {
    font-size: 12px;
    font-style: italic;
}

.basket:hover {
    color: #000;
}


#miniBasketData {
    max-height: 390px !important;
    overflow: hidden;
    display: block;
    overflow-y: auto;
    border-top: 1px solid #e3e3e3

}

@media (max-width:1024px) {
    #miniBasketData .img-container {
        max-width:110px;
        min-width:110px;

    }
    #miniBasketData img {
    max-width:110px;
    min-width:110px;
    padding:15px 0px;
}
}

#miniBasketData img {

    max-height:85px;
}


.basket-products .basket-item,  #miniBasketData .row{
    border-bottom: 1px solid #e3e3e3;
    padding: 5px 0;
   /* height: 130px;
    width: 100%;*/
    min-height:112px;
}

 #miniBasketData .img-container {
  text-align: center;

    width:100%;
    /*height:102px;*/
    overflow: hidden;
    position: relative;
 }

.mini-basket-qty {
    position: absolute;
    /*right:-15px;*/
    color: #df1825;
    
    top:0;
    font-size:14px;
}

 .minibasket-product-info {
    padding-left:0;
    padding-top:10px;

}

#miniBasketData .remove {
    position: relative;
}

#miniBasketData .remove a {
   position:absolute;
    top:30px;
    left:15px;
    z-index: 999

}

span.basket-price {
    margin-left: 10px;
    font-size: 18px;
}


#miniBasketData h5 {
  font-size: 14px
  margin-left:5px;
}

.basket-dropdown .basket-totals {

    margin-bottom:15px;
    width:100%;
}

.basket-dropdown .bskttotal {
    float:right;
    padding:5px 0 10px 0;

}

.basket-dropdown .bskttotal p{
    font-size: 14px;
    
}

.basket-dropdown .bskttotal p span {
    margin-left:85px;
}

.basket-dropdown .basket-buttons {
          border-top:1px solid #e3e3e3;  
          padding-top:15px;
}

.basket-dropdown .basket-buttons a {
    font-size: 1rem;
    color:#fff;
    display: block;
}

/* full basket */

.basket-empty {
    padding:20px 0 100px 0;
}

.full-basket,
.basket-bottom {
    font-size: 14px;
  
}

.basket-bottom {
      background-color:#eee;
      margin:0 ;
      padding:15px;
}

.full-basket {
    padding-top:15px;
    position: relative;
}

.full-basket .empty {
    position: relative;
    height:10px;
}

.full-basket .emptyBtn {
    color:#000;
    position: absolute;
    right:0;
    top:0;
}

.full-basket table {
    width:100%;
    margin:15px 0 0 0;
}

#basket-container table td.product {
      text-align: left; }

.full-basket table thead td {

    font-size: 16px;
     text-transform: uppercase;
        line-height: 45px;
        text-align: center; }

#basket-container table tbody td {
      border-bottom: 1px solid #dee2e6;
      padding: 10px 6px 10px 0px;
      text-align: center; }
#basket-container table tbody tr:last-child td {
    border-bottom:1px solid #bbb;
}      

#basket-container .basket-img {
    max-width: 150px;
    width:150px;
    padding-right: 20px;
}

.full-basket .product a {
    color:#333;
}

.remove a:visited,
.remove a:active,
.remove a:focus,
.remove a:hover,
.remove a {
    color: #e3e3e3 !important;
    text-decoration: none;
    font-size: 24px;
}        

/*.basket-qty {
    float: left;
    font-size: 12px;
    height: 25px;
    border-radius:  0;
    border-width:   1px 0;
    text-align:     center;
    padding-left:0;
    padding-right:  0;
    position: relative;
    top: -1px;
}
*/
.miniqty {
      width: 25px;
    text-align: center;
    background-color: #e3e3e3;
    border: none;
    height: 24px;
    padding: 0;
    margin: 0;
    font-size: 12px;
    height: 30px;
    border-radius:  0;
    border-width:   1px 0;
    text-align:     center;
    padding-left:0;
    padding-right:  0;
}

 .qty-container {

    /*margin:5px 0px;*/
    width:  119px;
    text-align:     center;
    float:  left;
    line-height: 28px;
    height:30px;
}

.qty-container a {
    float:left;
    padding:0 9px;
    text-decoration: none;
    border:1px solid #ccc;
    font-size:  16px;
}

.qty-container input[type="number"] {
     -webkit-appearance: none !important;
     -moz-appearance: text !important;
}        

.qty-container a:active,
.qty-container a:focus,
.qty-container a:visited,
.qty-container a:hover,
.qty-container a {
    color: #1c1c1c;
    text-decoration: none;
}

.qty-container a:hover {
    background-color:   #ccc;
}

.qty-container span {
    float: left;
}

input.qtyplus,
input.qtyminus {
    border: 1px solid #d7d7d7;
    background-color: #fff;
    width: 25px;
    height: 25px;
}

.basket-qty:focus,
input.qtyplus,
input.qtyminus {
    outline: none;
}


.basket-bottom h4 {
    font-size:1.3rem;
    margin-bottom: 10px
}


.full-basket-totals {
    font-size:18px;
    width:100%;
 /*   float:right;*/
}

.totals {
    text-transform: uppercase;
    position: relative;
    text-align: left;
}

.totals span {
    float:right;
}

.total {
    font-weight:bold;
    margin-bottom:20px;
}

.delivery-options input {
    position: absolute;

    margin-top: .3rem;

    margin-left: -1.25rem;
}

.delivery-options label {
    
    margin-top:3px;
    margin-bottom: 0px;
}

.custom-select {
    font-weight: normal;
}

.basket-btn {
    width:100%;
    text-align: center;
    margin-bottom:10px;
}

a.basket-btn {
    color:#fff;
}

/*################## cyrane checkout ######################*/
#pleaseWait, #pleaseWaitCheckout {
  position:fixed;
  left:0px;
  top:0px;
  right:0px;
  bottom:0px;
  background-color: rgba(255, 255, 255, 0.4);
  color: rgba(255, 255, 255, 0.4);
  text-align:center; }
#pleaseWait img, #pleaseWaitCheckout img {
  position:absolute;
  top:50%;
  left:50%;
  margin:-66px 0 0 -33px; }
 a.returnToBasket, a.checkout-btn {
        color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;  }
   a.returnToBasket {
    width: 100%;
   }
 .returnToBasket:hover, a.checkout-btn:hover, a.checkout-logout-btn:hover, a.checkout-address-btn:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62;
  -webkit-transition: background-color 200ms linear;
  -moz-transition: background-color 200ms linear;
  -o-transition: background-color 200ms linear;
  -ms-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
  text-decoration: none; }
a.checkout-logout-btn, a.checkout-address-btn {
  background-color: #868686;

  text-transform: uppercase;
  text-align: left;
  font-weight: 300;
  padding: 5px 15px;
  color:#fff;
  font-size:12px;
  float: right; }
a.checkout-address-btn {
  padding: 3px 15px;
  width:60px;
  margin-top:10px; }
.secure-message {
  margin:15px 0 10px 0;
  border:1px solid #E5E5E5;
  padding:10px 10px 10px 30px;
  width:100%;
  font-weight:bold;
  color:#222;
  background:url('images/lock.png') no-repeat 8px 10px;
  font-size: 12px }


/*checkout basket */
.product-information-checkout {
    background-color:#f4f4f4;
    margin-top:10px;
    border:1px solid #dbdbdb;
    padding:5px 15px 25px 15px;
}

.product-information-checkout table {
    margin:0;
}

.product-information-checkout table thead td {
    font-weight: bold;
}

.product-information-checkout .totals {
    width: 100%;
    padding:5px 0px 5px 0px;
    border-bottom:1px solid #bbb;
}

.product-information-checkout .totals  .total {
    margin:0;
}
/*end checkout basket*/

.checkout .stepHeader, .checkout .stepHeaderDisabled, .checkout .stepHeaderCompleted, .checkout .stepHeaderCompletedDisabled {
  overflow: hidden;
  background: #DF1825;
  height: 45px;
  line-height:  45px;
  border: 1px solid #DF1825;
  padding: 0 0 0 20px;
  margin: 0; }
.checkout .stepHeaderDisabled {
  background: #f4f4f4; 
border-color:#f4f4f4;}
.headerText {
  float:right;
  color:#fff;
  text-align: right; }
.checkout .stepHeaderCompleted:hover,
.checkout .stepHeaderCompletedDisabled {
  background-color:#a2111b;
  border-color: #a2111b;
  cursor:pointer; }
.checkout h2.section-title {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  display: block;
  margin:0;
  line-height:  45px;
  float:left; }
.checkout .stepHeaderDisabled h2.section-title, .checkout .stepHeaderCompletedDisabled h2.section-title {
  color:#666; }

.checkout .inlineContent {
  float: right;
  font-style: italic;
  padding: 0px 30px 0 0;
  text-align: right;
  color:#fff;
  font-size:11px;
  width: 50%;
  position: relative; }
.checkout .inlineContent img {
  position:absolute;
  right:10px;
  top:20px; }
.checkout .stepContainer {
  border:1px solid #dbdbdb;
  border-width:0 1px;
  padding: 10px 15px 0 15px; }
.checkout .stepInner {
  margin: 0;
  padding: 10px 15px 10px 15px; }
.checkout .stepContent {
  padding-top: 5px; }

.checkout .stepFooter, .checkout .stepFooterDisabled, .checkout .stepFooterCompleted, .checkout .stepFooterCompletedDisabled {
  border:1px solid #dbdbdb;
  border-width:0 1px 1px 1px;
  height: 11px;
  margin-bottom: 10px;
  padding: 0;
  width: 100%; }
.checkout .stepFooterDisabled {
  background-color:#F7F7F7;
  border-color:#eee;
  height:1px; }
.checkout .stepFooterCompleted, .checkout .stepFooterCompletedDisabled {
  background-color:#dcede5;
  border-color:#dcede5;
  height:1px; }

.checkout .marginTop {
 /* margin-top:7px;*/
 margin-bottom: 10px; }
.checkout .buttons {
  text-align: center;
  margin:10px 0 0 0; }
.checkout table {
  width: 100%; }
.checkout .payment {
  margin-top:15px;}
.checkout .payment .radio input[type="radio"] {
  margin-left:0;
  margin-right:5px; }
.dp_statement {
  font-weight: bold;
  font-size:14px;
  margin: 0 0 15px 0; }
.dp_checkboxes label {
  font-weight: normal;
  font-size: 14px;
  margin:-3px 10px 5px 5px;
  position: relative;
  top:-2px; }

.dp_checkboxes input[type="submit"] {
  cursor:pointer;
}

.checkout .form-group {
  margin-bottom:5px;
  font-size: 14px;
}

#checkout_carriage .form-group {
  margin:0;
}

#checkout_carriage label {
  float: right;
}

#checkout_carriage h3 {
  padding-bottom: 10px;
}

#checkout_carriage select.form-control {
  font-size: 14px;
  padding-left:5px;
}

.delivery-message {
  font-size:12px;
  margin:5px 0;
}

.deliveryTable {
  width: 100%;
  font-size: 14px; }
.checkout_delivery .form-group {
  margin-bottom: 5px; }
.checkout_delivery {
  margin-top: 10px; }
.checkout_delivery .control-label {
  text-align: left;
}

.checkout_delivery .postcode-input {
  padding-right:5px;
}
.checkout_delivery .postcode-btn {
  padding-left:0;
  margin-left:0;
  width: 50%;
}
.checkout_delivery .postcode-btn a {
  display: block;
  background-color: #222;
  color:#fff;
  text-align: center;
  line-height:35px;
}

#dnn_ctr732_ViewCheckout_ctl00_cyrInvoiceAddress_dtvAccount_txtInsPostcode {
    display: inline-block;
}

.checkout_delivery .postcode-btn a:hover {
  text-decoration: none;
  background-color: #DF1825;
}

.selectAddress li:nth-child(even)  {
  background-color:#f1f1f1;
}
/*
.selectAddress ul:nth-child(odd)  {
  background-color:red;
}*/


.selectAddress {
  max-height: 150px;
  background-color: #fff;
  /*padding:20px;*/
  /*margin-left:20%;*/
  overflow-y: auto;
  border:1px solid #d1d1d1;

}

.selectAddress ul {
  padding-left: 0;
  margin-left:0;
}



.selectAddress a:hover {
  background-color:#222;
  color:#fff;
  text-decoration: none;

}

.selectAddress a {
  width:100%;
  display:block;
  color:#222;
  padding-left:10px;
  transition: none;
}

.postcodeLookup ul li {
  list-style-type: none;
}

.postcodeLookup {
  padding:10px 0;
}

.postcodeLookup > a {
  color:#222;
  padding-top: 10px;
}



#checkout_confirm .input-group-addon {
  width:100%;

  margin-top: 15px;
  font-size:14px;
  white-space: normal;
}

#checkout_confirm .input-group-addon span {
  padding:0 2px;
}

#checkout_confirm .input-group-addon a {
  padding:0 3px;
  color:#df1825;
}

.addressLeft {
  display: inline-block;
  line-height: 1;
  margin-top:10px; }
.address-book {
  padding:10px 0; }
.address-book .item {
  background-color: #eeeeee;
  padding:10px;
  margin-bottom:10px;
  min-height:105px; }
.selectedAddressMsg {
  color: #4CB748;
  font-style: italic;
  text-align:right;
  display: block; }
.address-buttons {
  margin:5px 0 0 0;
  text-align:right; }

  .checkout-wrapper {
    margin:20px 0;
  }

.checkout {
  margin: 10px 0;
  font-size:14px; }
#vanguard-body {
  width:90%; }
.card-input {
  width: auto;
  display:inline-block; }

#expirymonth, #expiryyear {
  width:55px;
}

.vg .button input {
  background-color: #df1825;
}

.vg .form-group {
  margin-left:-15px;
}

.payment-pane {
  padding-top: 20px;
}

#csc {
  width:70px;
}
#scheme_logo {
  margin:-3px 0 0 5px; }


.brochure-contact table {
    width:100%;
    font-size:14px;
}

.accountFeatures table tbody > tr > th,
.accountFeatures table tbody > tr > td {
    vertical-align: top;
    
}

.accountFeatures {
    padding-bottom: 10px;
}

.accountFeatures table tbody > tr > td label {
    margin:0 5px 0 0;
    position: relative;
    
}

.accountFeatures table tbody > tr > td input {
    margin-right:3px;
    margin-left:3px;
    position: relative;
    top:1px;
}

.brochure-contact h2,
h2.brochures {
    font-size:1.4rem;
}

h2.brochures {
    
    margin-top:5px;
}

#brochureTypeSelection input {
    position: relative;
    top:2px;
    margin-right:5px;
}

/*######## login page ##############*/

.forgotten-password {
    position: relative;
    top:-10px;
}

.checkout_login .form-group {
    width:50%;
}

/*===== my account =====*/

#account-tabs {
  margin-top: 38px;
  width:100%; }
  #account-tabs h2.tab-accordion a, #account-tabs h2.tab-accordion a:visited {
    background: #16205a url(../img/plus.png) right center no-repeat; }
  #account-tabs h2.tab-accordion.active a, #account-tabs h2.tab-accordion.active a:visited {
    background: #16205a url(../img/minus.png) right center no-repeat; }
  #account-tabs  table.order-history {
    margin-top: 30px;
    width: 100%; }
     #account-tabs  .basket-table table {
        margin-top:15px;
     }
    #account-tabs table.order-details,
    #account-tabs table.basket-totals{
        margin-top:5px;
    }
    #account-tabs table.order-history td {
      padding: 0 15px;
      text-align: center;
      font-family: 'PT Sans', sans-serif;
      font-weight: 400; }
    #account-tabs table.order-history thead {
      border: 1px solid #eeeded; }
      #account-tabs table.order-history thead td {
        background: #f4f4f4;
        text-transform: uppercase;
        line-height: 45px;
        font-size: 16px;
        white-space: nowrap; }
    #account-tabs table.order-history tbody td {
      border-bottom: 1px solid #d1d1d0;
      padding: 20px 15px;
      text-align: center;
      font-size: 14px; }
    #account-tabs table.order-details tbody td {
        border:0;
        padding:0 10px;
        text-align: left;
    }
    #account-tabs table.basket-totals tbody td.grandTotal {
        border:0;    }
    #account-tabs table.order-history tbody td.status {
      /*color: #999;*/
      text-transform: uppercase; }
    #account-tabs table.order-history tbody td.details a, #account-tabs table.order-history tbody td.details a:visited {
      text-decoration: none;
      background: #cd2131;
      display: inline-block;
      padding: 0 12px;
      line-height: 34px;
      text-align: center;
      color: white;
      text-transform: uppercase; }
    #account-tabs table.order-history tbody td.details a:hover {
      text-decoration: none;
      background: #16205a;
      -webkit-transition: background-color 200ms linear;
      -moz-transition: background-color 200ms linear;
      -o-transition: background-color 200ms linear;
      -ms-transition: background-color 200ms linear;
      transition: background-color 200ms linear; }
    @media (max-width: 767px) {
        #account-tabs .basket .container {
            padding:0;
        }
        #account-tabs .breadcrumbs-basket h1 {
            font-size:22px;  }
      #account-tabs table.order-history tbody tr,
      #account-tabs table.confirmation-basket tbody tr {
        display: block;
        overflow: hidden;
        border-bottom: 1px solid #d1d1d0;
        padding: 15px 20px; }
        #account-tabs table.order-history tbody tr td,
        #account-tabs table.confirmation-basket tbody tr td  {
          display: block;
          padding: 0;
          border-bottom: none;
          text-align: left;
          line-height: 2em; }
          #account-tabs table.order-history tbody tr td strong.visible-xs {
            display: inline !important;
            text-transform: uppercase;
            color: #666666; }
        #account-tabs table.order-history tbody tr td.details {
          display: block; } }
  #account-tabs #data-protection-form {
    background: #f4f4f4;
    padding: 15px; }
    #account-tabs #data-protection-form p {
      margin: 0; }
    #account-tabs #data-protection-form .help {
      font-size: 12px; }
    #account-tabs #data-protection-form label {
      color: #666666;
      margin-bottom: 5px;
      text-transform: uppercase; }

.tab-accordion-wrapper ul.main-tabs {
  padding: 0;
  list-style: none;
  margin-bottom: 0px;
  margin-left:0; }
  .tab-accordion-wrapper ul.main-tabs li {
    display: inline-block;
    margin-right: 5px;
    border: 1px solid #cecece;
    border-bottom: none;
    background: #f4f4f4;
    position: relative;
    font-size: 14px;
    top: 1px; }
    .tab-accordion-wrapper ul.main-tabs li a {
      color: #666666;
      display: inline-block;
      padding: 20px 35px;
      border-bottom: 1px solid #f4f4f4;
      font-weight: 600;}
    .tab-accordion-wrapper ul.main-tabs li a:hover {
      text-decoration: none; }
  .tab-accordion-wrapper ul.main-tabs li.active {
    background: #cd2131;
    color:#fff;
    border-bottom: none;
    padding-bottom: 1px;
     border: 1px solid #aa1f2c;
     }
    .tab-accordion-wrapper ul.main-tabs li.active a {
      border-bottom: none;
      color:#fff; }
.tab-accordion-wrapper h2.tab-accordion {
  background: #4CB748;
  margin: 0;
  border-bottom: 1px solid white;
  font-size: 18px;
  text-transform: uppercase; }
  .tab-accordion-wrapper h2.tab-accordion a, .tab-accordion-wrapper h2.tab-accordion a:visited {
    text-decoration: none;
    color: white;
    display: block;
    padding: 14px 16px; }
.tab-accordion-wrapper .tab-content {
  border: 1px solid #cecece;
  background-color:#fff;
  font-size: 14px;
  padding: 30px;
  margin-bottom: 30px; }
  .tab-accordion-wrapper .product-breadcrumbs-row {
    display: none;
  }
  .tab-accordion-wrapper .tab-content .tab {
    display: none; }
    .tab-accordion-wrapper .tab-content .tab .tab-inner h3,  .tab-accordion-wrapper .tab-content #stepHeader h2{
      color: #666666;
      font-size: 16px;
      margin-top: 0;
      font-weight: 400; }
      .tab-accordion-wrapper .tab-content .tab .tab-inner  h3 {
        color:#3d3d3d;
       font-weight: bold;
        margin-top:10px;    }
    .tab-accordion-wrapper .tab-content .tab .tab-inner p {
      font-size: 14px; }
    .tab-accordion-wrapper .tab-content .tab .tab-inner a:not(.btn) {
        color:#cd2131;
    }
  .tab-accordion-wrapper .tab-content .tab.active {
    display: block; }


@media screen and (min-width:992px) {
    .tab-accordion-wrapper .tab-content .tab .tab-inner .form-group {
        width:50%;
    }


}

@media screen and (max-width:991px) {
       .order-details.fixed-layout {
        margin-bottom:15px;
     }
}

@media only screen and (min-width:991px) and (max-width : 1200px) {
    .order-details.fixed-layout {
        table-layout: fixed;
        max-width:100%;
        width:100%;
    }
}

.order-confirmation {
    font-size: 14px;
}

.tab-content .order-confirmation,
.tab-content .full-basket {
    padding:0;
}



.order-details .email-address {
    word-wrap: break-word;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/*########## content pages ########*/


.main-content .Normal {
    font-size:14px;
}

.main-content .Normal p {
    font-size: 14px;
    margin:10px 0;
}

.main-content .Normal ul {
    list-style: disc;
    padding-left:15px;
    font-size: 14px;
}

.main-content .Normal li {
    margin-bottom:5px;
}

.Normal h2 {
    color:#dc3545;
    margin-top:30px;

}

.Normal h3 {
    font-size:1.6rem;
    margin-top:15px;
    margin-bottom: 0px;
}

.Normal a {
    color:#DF1825;
}

.anchor a {
  position: absolute;
  left: 0px;
  top: -80px;
}

.anchor {
  position: relative;
}

/*.table {
    width:auto;
}*/
/*############## responsive.css ###########*/


@media only screen and (min-width : 1200px) {
    .container {     
        max-width: 88vw;
    } 

    
}

@media screen and (min-width: 1025px) {
    .product-wrapper:hover {
        outline: 1px solid #D5D6DB;
        outline-offset: -1px;
    }


}

@media screen and (max-width: 1025px) {

    

    /* Header */

    .top-bar .delivery-msg {
        flex: 0 0 40%;
    }
    .top-bar .top-menu-container {
        flex: 0 0 60%;
        max-width: 60%;
    }

    /* Homepage */

    span.slide-main {
        font-size: 50px;
        line-height: 50px;
    }

    span.cta-title {
        font-size: 18px;
        /*line-height: 10px;*/
        margin-bottom: 10px;        
    }
    span.cta-sub {
        font-size: 10px;
    }
    .owl-prev {
        margin-left: -30px;
    }
    .owl-next {
        margin-right: -30px;
    }

    .lower-cta-title {
        padding: 0;
        font-size: 20px;
        line-height: 22px;
    }

    /* Footer */

    footer.footer-lower a.logo-link {
        margin-right: 5px;
    }
    footer.footer-lower ul li a {
        padding: 10px 5px;
    }

    /* Landing Page */

    .brand-wrapper ul {
        width: 90%;
    }

    /* Cat Page */

    .category-pagination {
        flex: 2;
    }

    span.prod-footer {
        text-align: left;
    }
    span.reg-ret-price, span.saving {
        line-height: 25px;
        display: inline-block;
        width: 80%;
    }
/*    span.saving {
        margin-top: -22px;
    }*/
    a.wishlist-prodlist {
        float: right;
        /*margin-top: 20px;*/
    }

    a span.wishlist {
        color:#000;
    }

    .featured-product-wrapper span.saving,
    .recent-product-inner span.saving,
    .featured-product-wrapper span.wishlist,
    .recent-product-inner span.wishlist {
        margin-top: 0px;
    }

    /* Product Page */

    .product-title h1 {
        font-size: 30px;
    }

    .savings-row span.saving {
        display: block;
    }

} /* END: max-width: 1025px */

@media screen and (min-width: 767px) and (max-width: 1025px) {

    div.sub-menu-content-wrapper {
        border-left: 1px solid #DF1825;
        border-right: 1px solid #DF1825;        
        border-bottom: 1px solid #DF1825;
    }

    ul.top-menu li a {
        padding: 10px 5px;
    }
    ul.top-menu li.header-call a {
        padding: 10px 5px;
    }
     ul.top-menu li.header-call i.fas.fa-phone {
        display: none;
    }
}

@media screen and (max-height:769px) {
    div.sub-menu-content-wrapper {
        border-left: 1px solid #DF1825;
        border-right: 1px solid #DF1825;        
        border-bottom: 1px solid #DF1825;
    }
}


@media screen and (max-width: 991px) {
    .buyers-guide {
    position: absolute;
    right:50%;
    top:auto;
    bottom:15px;
    margin-right:-62px;
}
}

    @media screen and (min-width: 769px) and (max-width: 991px) {
        .multi-saving {
            font-size: 12px;
        }
    }

@media screen and (max-width: 813px) {
    /* Header */

    .top-bar .delivery-msg {
        flex: 0 0 35%;
    }
    .top-bar .top-menu-container {
        flex: 0 0 65%;
        max-width: 65%;
    }
    ul.top-menu li a {
        padding: 10px 5px;
    }
    ul.top-menu li.header-call a {
        padding: 10px 5px;
    }
    ul.top-menu li.header-call i.fas.fa-phone {
        display: none;
    }

    .login-top ul a {
        padding: 10px 20px;
        font-size: 22px;
    }

    .tab-accordion-wrapper ul.main-tabs li a {
        padding: 20px 19px;
    }

    /* Homepage */

    span.slide-header {
        padding: 5px 15px;
        font-size: 11px;
    }
    span.slide-main {
        font-size: 24px;
        line-height: 30px;
    }
    span.slide-sub {
        font-size: 14px;
        margin-bottom: 15px;
    }
    a.slide-link {
        font-size: 12px;
        padding: 10px 40px;
    }
    span.cta-info {
        bottom: 8%;
    }

    /* Footer */

    .newsletter-col {
        width: 50%;
    }
    .newsletter-info {
        display: none;
    }
    .news-form-title.mobile-title {
        display: block;
    }
    .news-form-title.desktop-title {
        display: none;
    }
    h4.news-form-title {
        font-size: 20px;
    }

    footer.footer-middle {
        text-align: center;
    }
    footer.footer-middle ul {       
        width: 33.33%;
    }
    footer.footer-middle ul.footer-social {
        display: block;
        margin-left: auto;
        float: none;
        width: 48%;
        margin-right: auto;
    }
    footer.footer-middle ul.footer-social li {
        float: left;
    }
    footer.footer-lower .copyright-left, 
    footer.footer-lower .copyright-right {
        display: block;
    }
    footer.footer-lower a.logo-link {
        width: 20%;
        margin-bottom: 15px;
        margin-left: auto;
        margin-right: auto;
    }
    footer.footer-lower ul li a {
        padding: 10px 14px;
    }
    footer.footer-lower .copyright-right {
        padding: 0 0 30px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Cat Pages */

    .filter-list {
        width: 100%;
        float: none;
    }

    .filter-list ul {
        column-count: 2;
        margin-bottom: 20px;
    }

    .category-listing-wrapper .product-wrapper {
        width: 32%;
        margin: 0.5%;
    }

    /* Product Page */

    .product-title h1 {
        font-size: 26px;
    }

    .product-title a.wishlist {
        font-size: 20px;
    }
   /* a.wishlist span {
        display: none;
    }*/
    .bx-controls {
        display: none;
    }
    .product-thumbnails img:last-child {
        border-right: 1px solid #D5D6DB;
    }

    span.main-price {
        font-size: 30px;
        margin-right: 10px;
    }

    #dnn_ctr744_ViewProductInfo_ctl00_info_ctl00_pd_cyrCustomAttr_attr0,
    #dnn_ctr744_ViewProductInfo_ctl00_info_ctl00_pd_cyrCustomAttr_attr0 select {
        width:100%;
    }
    .price-row img {
        width: 25%;
        margin-left: auto;
    }
    .savings-row,
    .savings-row span.saving {
        display: inline-block;
    }

    .savings-row span.product-code {
        display: block;
    }
    .socialIcons {
        width: 100% !important;
    }

} /* END: max-width: 813px */

@media screen and (max-width: 769px) {

    .cta-full-width h4 {
        margin-bottom: 0;
        font-size: 18px;
    }

    .tab-accordion-wrapper .tab-content,
    .tab-accordion-wrapper .tab-content .order-confirmation,
    .tab-accordion-wrapper .tab-content .full-basket     {
        padding:0;
    }

    .tab-accordion-wrapper .tab-content .tab-inner {
        padding:15px;
    }

    .discount-code-fields {
        border-top:1px solid #ccc;
        padding:15px 0;
        border-bottom:1px solid #ccc;
    }



} /* END: max-width: 769px */

@media screen and (max-width: 767px) { /*changed from 737 */

    .top-bar .delivery-msg {
        flex: 0 0 100%;
        text-align: center;
        display: flex;
        padding: 10px 20px;
    }
    .top-bar .delivery-msg a {
        display: inline-block;
        text-align: right;
        width: 48%;
        color: #DF1825;
    }
    .top-bar .delivery-msg a i {
        transform: rotate(90deg);
    }
    .col-md-6.top-menu-container,
    #menu-bar {
        display: none;
    }

    /*header.mobile-header {
        border-bottom: 1px solid #D5D6DB;
    }*/
    .checkout_login .form-group {
        width:100%;
    }
    .mobile-header #nav-icon span {
        width: 45%;
    }

    .product-breadcrumbs-row {
        display: none;
    }
    .shop-brand {
        display: none !important;
    }

    /* Footer */

    footer.footer-lower a.logo-link {
        width: 40%;
    }
    footer.footer-lower {
        text-align: center;
    }
    footer.footer-lower .copyright-left ul {
        margin-top: 20px;
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
    footer.footer-lower .copyright-left ul li {
        float: none;
    }
    footer.footer-lower .copyright-left ul li a {
        padding: 5px 10px;
    }
    footer.footer-lower .copyright-right {
        width: 70%;
    }
    footer.footer-middle ul.footer-social {
        width: 65%;
    }

    /* Cat Page */

    .sorter-dropdowns {
        margin-right: 2px;
        margin-left: 2px;
    }
    .sorter-dropdowns {
        flex:100%;
        margin-top: 10px;
    }
    .category-pagination {
        flex: 100%;
        margin-top: 40px;
    }
    .category-pagination ul {
        text-align: center;
    }

    .category-listing-wrapper .product-wrapper {
        width: 48%;
        margin: 0.5%;
    }

    span.top-left-info {
        left: 7%;
    }
    
    .reviews-upper, 
    .reviews-lower {
        padding: 0 15%;
    }

} /* END: max-width: 737px */

@media screen and (max-width: 680px) {

    .top-bar .delivery-msg a {
        width: 33%;
    }

    /* Homepage */

    .featured-product-wrapper,
    .recent-product-inner {
        padding-left: 30px;
        padding-right: 30px;
    }

    .homepage-reviews-upper,
    .homepage-reviews-lower {
        padding: 0 30px;
    }
    .cta-full-width {
        display: none;
    }
    .cta-full-width.mobile-only {
        display: block;
    }
    .homepage-cta-lower .lower-cta-title {
        text-align: left;
        font-size: 16px;
        width: 80%;
        margin-left: 10%;
    }
    .homepage-cta-lower .lower-cta-title:after {
        content: '\f054';
        font-family: 'Font Awesome 5 Pro';
        font-weight: 300;
        font-size: 16px;
        position: absolute;
        right: 0;
    }

    /* Footer */

    .newsletter-col {
        width: 100%;
        padding: 25px;
    }
    footer.footer-middle .popular-pages ul {
        width: 100%;
    }
/*    .popular-pages ul:last-child {
        display: none;
    }*/
    footer.footer-middle ul.footer-social {
        width: 41%;
    }

    /* Cat Pages */

    .category-listing-wrapper .product-wrapper {
        width: 49.5%;
        margin: 0;
        margin-left: 0;
        margin-bottom: 0.8%;
    }

    /* Single Product */

    .product-check-radios p {
        /*width: 100%;*/
        text-align: center;
    }

    

    .additional-fields {
        flex-wrap: wrap;
    }
    .additional-fields .product-dropdowns,
    .additional-fields input[type="text"] {
        flex: 0 0 100%;
    }
    .additional-fields input[type="text"] {
        margin-left: 0px;
        padding: 19px 30px;
    }
    .additional-fields.additional-open {
        height: 150px;
    }

} /* END: max-width: 680px */

@media screen and (max-width: 668px) {

    /* Footer */

    footer.footer-middle ul.footer-social {
        width: 65%;
    }

} /* END: max-width: 668px */

@media screen and (max-width: 415px) {

    .mobile-header #nav-icon span {
        width: 64%;
    }

    /* Homepage */

    .slide-content {
        left: 18%;
    }

    .homepage-call-to-actions {
        padding: 40px 0 80px;
    }
    #dnn_CtaUpperTLPane.full-mobile,
    #dnn_CtaUpperBMPane.full-mobile,
    #dnn_CtaUpperBRPane.full-mobile  {
        height: 100% !important;
    }
    #dnn_CtaUpperTLPane.cta-col,
    #dnn_CtaUpperBRPane.cta-col {
        height: 28vh !important;
    }
    #dnn_CtaUpperTPane.cta-full-col span.cta-info {
        bottom:2vh !important;
    }
/*     #dnn_CtaUpperTPane.cta-full-col img {
        display: none !important;
     }*/
    .cta-col, .cta-left-col {
        /*float: none;*/
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        height: 15vh;
    }
    .cta-col.mobile-col {
        float: left;
        width: 50%;
        height: auto;
    }


    .homepage-cta-upper .cta-overlay,
    .landing-cta-upper .cta-overlay {
        display: block;
    }
    span.cta-info {
        bottom: 4vh;
        width: 85%;
    }
    .cta-overlay {
        background-color: rgba(0,0,0,0.5);
    }
    .full-mobile .cta-overlay {
        background-color: rgba(0,0,0,0.0) !important;
    }
    span.cta-info:after {
        content: '\f054';
        font-family: 'Font Awesome 5 Pro';
        font-weight: 300;
        font-size: 30px;
        position: absolute;
        right: 0;
        top: -1vh;
        color: #fff;
    }
    .mobile-col span.cta-title,
    .mobile-col span.cta-sub {
        color:#fff !important;
    }

    .cta-col span.cta-title {
        color: #DF1825;
    }
    
    span.cta-title.title-red,
    span.cta-sub.sub-dark {
        color: #DF1825;
    }
    span.cta-info::after {
        display: none;
    }
    .new-cta span.cta-info:after {
        color: #000000;
    }
    .new-cta .category {
        display: none;
    }

    .new-cta {
        background-color: #D5D6DB;
    }
    .new-cta .cta-title {
        color: #DF1825;
    }
    /*.new-cta .cta-sub {
        color: #000000;
    }*/

    .cta-full-width.mobile-only h4 {
        font-size: 20px;
    }
    .cta-full-width a {
        padding: 10px 20px;
    }

    /* Footer */

    footer.footer-middle ul.footer-social {
        width: 41%;
    }

    ul.sport-choices {
        column-count: 2;
    }

    /* Landing Page */

    .brand-wrapper {
        display: none;
    }
    .landing-left-panel {
        flex: 2;
    }
    .landing-right-panel .cta-col {
        width: 100%;
        height: 25%;
    }
    .lower-cta-title {
        padding: 0;
    }
    span.landing-banner-main {
        font-size: 30px;
        line-height: 30px;
    }
    .landing-banner-content {
        width: 65%;
    }
    span.landing-banner-sub {
        font-size: 14px;
        line-height: 18px;
    }
    a.landing-banner-link {
        padding: 10px 20px 10px 30px;
    }

    /* Category Page */

    .page-title {
        padding: 2vh;
    }
    /*.breadcrumbs {
        display: none;
    }*/
    .page-title h1 {
        font-size: 30px;
    }
    .product-filter-inner ul li span {
        padding: 15px 10px 15px 20px;
        font-size: 16px;
    }

    .filter-list ul {
        column-count: 1;
        overflow: visible;
        overflow-y: unset;
        max-height: none;
    }

    .category-listing-wrapper {
        padding: 4vh 0;
    }

    span.image-cta-wrap {
        padding: 10% 0;
        min-height: 200px;
    }
    .tab-heading {
        margin-left: 15px;
    }
    span.image-cta-wrap {
        max-width:100%;
        /*height: 343px;*/
    }
    .owl-item span.image-cta-wrap {
        /*max-width:100%;*/
        height: 343px;
    }
    .owl-item span.image-cta-wrap img {
        
        max-height:285px;

    } 
    span.image-cta-wrap img {
        
        max-height:150px;

    }    
    span.top-left-info, 
    span.top-right-info {
        font-size: 12px;
    }
    span.junior-title {
        width: 100%;
        font-size: 14px;
    }
    span.details-price {
        padding: 5px 10px 0px;
    }
    span.product-name {
        font-size: 14px;
        line-height: 16px;
        min-height: 48px !important;
    }
    span.price {
        font-size: 20px;
    }
    span.prod-footer {
        padding: 0px 20px 10px;
        display: inline-block;
        width:100%;
    }

    span.saving {
        margin-top: -12px;
        display: inline-block;
        width:80%;
    }
    a.wishlist-prodlist {
        font-size: 18px;
        margin-top: 15px;
    }

    /* reviews */

    .reviews-wrapper h3 {
        font-size: 20px;
    }
    .reviews-wrapper {
        padding: 20px 0 10px;
    }
    .reviews-lower {
        margin-top: -40px;
        margin-bottom: 40px;
    }
    .review-logo {
        width: 50%;
        margin-top: 0;
        padding-top: 0px;
        margin-left: auto;
        margin-right: auto;
    }

    .buyers-guide {
    background:transparent;
    color:#df1825;
    bottom:-5px;
    }

} /* END: max-width: 415px */

@media screen and (max-width: 376px) {

    .top-bar .delivery-msg a {
        width: 26%;
    }
    
    .mobile-header #nav-icon span {
        width: 70%;
    }

    /* Footer */

    footer.footer-middle ul.footer-social {
        width: 46%;
    }

} /* END: max-width: 367px */

@media screen and (max-width: 361px) {

    .mobile-header #nav-icon span {
        width: 73%;
    }

    .multi-saving {
            font-size: 14px;
        }

    /* Footer */

    footer.footer-middle ul.footer-social {
        width: 48%;
    }

} /* END: max-width: 320px */

@media screen and (max-width: 320px) {
    
    .mobile-header #nav-icon span {
        width: 85%;
    }

    /* Footer */

    footer.footer-middle ul.footer-social {
        width: 54%;
    }

} /* END: max-width: 320px */

.product-overview__description .product-overview__optional-extras {
    border: 1px solid #a4a4a4;
    border-radius: 3px;
    margin-bottom: 20px;
}

.product-overview__description .product-overview__optional-extras h2 {
    border-bottom: 1px solid #a4a4a4;
    padding: 10px 20px;
    margin-bottom: 0;
    font-weight: 700;
    text-align: left;
    font-size: 20px;
    font-size: 2rem;
}

.product-overview__description .product-overview__optional-extras .product-overview__optional-extras-body {
    display: table;
    width: 100%;
    border-collapse: collapse;
}
.product-overview__optional-extras div {
    word-break: normal !important;
}

.product-overview__description .product-overview__optional-extras .product-overview__optional-extras-body .product-overview__optional-extras-row {
    display: table-row;
    width: 100%;
    border-bottom: 1px solid #a4a4a4;
    overflow: hidden;
}
.product-overview__optional-extras div {
    word-break: normal !important;
}

.product-overview__description .product-overview__optional-extras .product-overview__optional-extras-body .product-overview__optional-extras-row .product-overview__optional-extras-col:first-child {
    border-right: 1px solid #a4a4a4;
}
.product-overview__description .product-overview__optional-extras .product-overview__optional-extras-body .product-overview__optional-extras-row .product-overview__optional-extras-col {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
    padding: 10px 20px;
}
.product-overview__optional-extras div {
    word-break: normal !important;
}
/*
#dnn_CtaUpperTLPane {
    height: 700px;
}

#dnn_CtaUpperTMPane,
#dnn_CtaUpperTRPane,
#dnn_CtaUpperBMPane,
#dnn_CtaUpperBRPane {
    height:350px !important;
}*/

/*.bx-controls {
    display: none;
}*/

/*.zoomContainer {
    display: none;
}*/

.mobile-mini-basket-qty {
    position: relative;
    right: 11%;
}

.cat-header-mobile {
    color:white;
    background-color: #DF1825;
    padding:5px 10px;
    border:solid 1px #fff;
}

.cat-title-mobile span{
    width: 25%;
    display: inline-block;
}

.wishlistButtons a {
    color:#fff;
}

.container-fluid .newsletterSignup {
    display: none;
}

#dnn_ctr744_ViewProductInfo_ctl00_info_ctl00_pd_cyrCustomAttr label {
    color:#000 !important;
}

.product-details .text-center {
    text-align: left !important;
}

.product-details img {
    margin-left:5px !important;
    margin-right:5px !important;
}

.xsell-info a,
.xsell-info a:hover {
    color:#000000 !important;
}

#dnn_ctr732_ViewCheckout_ctl00_cyrRegister_butForgottonPassword,
#dnn_ctr732_ViewCheckout_ctl00_cyrRegister_butForgottonPassword:hover,
#dnn_ctr732_ViewCheckout_ctl00_cyrRegister_butForgottonPassword:visited,
#dnn_ctr732_ViewCheckout_ctl00_cyrRegister_butForgottonPassword:active {
    color:  #007bff !important;
}

@media only screen and (min-device-width : 360px) and (max-device-width : 812px) and (orientation: portrait) {
    .wishlist-count {
        position: relative;
        left: -16px;
        top:-5px;
    }
    .mobile-mini-basket-qty {
        right: 20%;
        font-size:11px;
        top: -1px;
    }

}

@media only screen and (min-device-width : 360px) and (max-device-width : 812px) and (orientation: landscape) {
    .wishlist-count {
        
        left: -5px;
        top:-5px;
    }
    .mobile-mini-basket-qty {
        right:32%;
        font-size:11px;
        top: -1px;
    }

}

@media only screen  and (min-device-width: 375px)  and (max-device-width: 812px) and (orientation: portrait) { 
    .videoText {
        bottom:3% !important;
        left:5% !important;
        width:100% !important;
    }
    .videoText p, .videoText span {
        display: none !important;
    }
    .videoText h3 {
        font-size:18px !important;
    }
    .tab-heading a::after {
        content: '\f055' ;
        font-family: 'FontAwesome';
        float: right;
        font-size: 22px;
        margin-top: -5px;
        display: block;
    }
    a.accordian-expanded::after {
        content: '\f056' !important;
        font-family: 'FontAwesome';
        float: right;
        font-size: 22px;
        margin-top: -5px;
        display: block;
    }
    .panel-menu {
        display: none;
    }
    .basketBody {
        width: 100%;
        display: grid;
    }
}

@media only screen  and (min-device-width: 375px)  and (max-device-width: 812px) and (orientation: landscape) { 
    .videoText {
        bottom:15% !important;
        left:5% !important;
        width:100% !important;
    }
    .tab-heading a::after {
        content: '\f055' ;
        font-family: 'FontAwesome';
        float: right;
        font-size: 22px;
        margin-top: -5px;
        display: block;
    }

    a.accordian-expanded::after {
        content: '\f056' !important;
        font-family: 'FontAwesome';
        float: right;
        font-size: 22px;
        margin-top: -5px;
        display: block;
    }
    .panel-menu {
        display: none;
    }
}

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px)  {
    .videoText {
        bottom:10% !important;
        left:45% !important;
        width:50% !important;
    }
    .videoText p, .videoText span {
        display: block !important;
    }
    .videoText h3 {
        font-size:28px !important;
    }
    .tab-heading a::after {
        content: '\f055' ;
        font-family: 'FontAwesome';
        float: right;
        font-size: 22px;
        margin-top: -5px;
        display: block;
        }
    a.accordian-expanded::after {
        content: '\f056' !important;
        font-family: 'FontAwesome';
        float: right;
        font-size: 22px;
        margin-top: -5px;
        display: block;
    }
    .panel-menu {
        display: none;
    }
    .basketBody {
        width: 100%;
        display: contents;
    }
}

.wishlist-active {
    color:#df1825 !important;
}

.wishlist-notactive,
.wishlist-notactive:hover {
    color:#df1825;
}



@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .junior-title {
        left:19px !important;
    }
}

.brandFilter ul {
    height:150px;
    overflow: auto;
    overflow-x: hidden;
}


.attributeFilter ul {
    height:150px;
    overflow: auto;
    overflow-x: hidden;
}

.videoText {
    position: absolute;
    text-align: left;
    width: 50%;
    bottom: 20%;
    left: 45%;
}

.videoText h3, .videoText p, .videoText span    {
    color:#fff !important;
    text-transform: uppercase;
}

.videoText p {
    font-size:22px;
}

.videoText span {
    margin:10px 0;
    display: block;
}

.videoText h3  {
    font-size:36px;
}

.videoText .watchNow {
    padding:5px 15px;
    border:1px #fff solid;
    width:125px;
    color: #fff;
}


.videoText .watchNow:after {
    content: '\f054';
    font-family: 'Font Awesome 5 Pro';
    float: right;
    font-weight: 300;
    color:#fff;
    font-size: 20px;
    line-height: 21px;
    transition: all 0.5s ease;
}

.popular-pages ul li {
    font-size:12px !important;
}

.tab-heading a {
    color: #DF1825;
}

.clearButton {
    margin-top:30px;
    text-align: center;
    width: 100%;
    display: block;
}

.clearBtn {
    padding:7px 20px;
    color:#fff !important;
    border:1px solid #fff;
    text-align: right;
}

.clearBtn:hover {
    padding:7px 20px;
    color:#DF1825 !important;
    background-color: #fff !important;
    border:1px solid #fff;
    text-align: right;
}


.clearBtn:first-child {
    margin-right:15px;
}

.clearBtn:hover {
    cursor:pointer;
}

.magnify {
    width: 100%;
    position: relative;
    cursor: none;
}

.large {
    display: none;
    width: 200px;
    height: 200px;
    position: absolute;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85), 0 0 7px 7px rgba(0, 0, 0, 0.25), inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
}

.imgbox {
    display: block;
    width: 100%;
    position: relative;
}
/*
.filter-options li {
    line-height:15px;
}*/

.filter-options li a {
    color:#fff;
    font-size: 16px;
    text-decoration: none;
}

.checkbox:hover {
    cursor: pointer;
}

.filter-options li span {
    border-bottom:none !important;
    margin-bottom:0px !important;
    width:auto !important;
}

.filter-options label {
    margin-bottom: 0px !important;
}

#dnn_ctr714_CyraneLogin_ctl00_lgnCtl_butPassword:hover {
    color:#007bff;
}
/*
.juniorTitle {
    display: block;
    margin:auto;
}*/

/*ul.custom-filter li a:hover, ul.custom-filter li.filtered a {
    text-decoration: none;
    background: #DF1825 url(images/bg_catFilterAdd.png) no-repeat 95% 45%;
    color: #fff;
    display: block;
    width:100%;
}

ul.filter-options li.filtered a:hover {
    background: #000 url(images/bg_catFilterRemove.png) no-repeat 95% 45%;
}*/

.contact-us-form {
    margin-top: 20px;
}

.alternateImages ul {
    width: 100%;
    display: inline-block;
}

.alternateImages li a {
    border: 1px solid #eee;
    display: inline-block;
    float: left;
    height: 76px;
    list-style-type: none;
    margin: 0px 3px 8px 3px;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    width: 76px;
}

/*.alternateImages li a {
    width: 70px;
    display: inline-block;
    height: 70px;
}*/

.alternateImages li img {
    display: inline-block;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .equipmentGuides {
        display: none !important;
    }
}


@media only screen and (min-device-width: 375px) and (max-device-width: 812px) { 
    #dnn_ctr1206_ContentPane {
        display: none !important;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1600px) { 
    #dnn_ctr1207_ContentPane {
        display: none !important;
    }
}

.DnnModule-Admin .slide-content {
    display: none;
}

.search-inner-wrapper .btn-search {
    position:absolute;
    display: block;
    right:0;
    top:0;
    bottom:0;
    /*background-color:#8d6c2b;*/
    color: #473729;
    border:0;
    padding:0 10px;
    border-left:1px dotted #ccc;
    text-align: center;
    line-height:32px;
}

.product-content .product-images .product-thumbnails .video-overlay {
    background: rgba(0,0,0, 0.5) url('img/video-overlay.png') 50% 50% no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    max-height: 76px;
    max-width: 76px;
}

.socialIcons {
    display: inline-block;
    width: 50%;
    margin:20px 0;
}

.DnnModule-DNN_HTML.DnnModule-794 {
    margin-top: 20px;
}

.moreInfo {
    text-decoration: underline;
    text-decoration-style: dashed;
    z-index: 99999;
}

.extra { 
    display: none;
}

p:hover .extra {
    display: inline-block;
    position: absolute;
    width: 100%;
    border: 1px solid #D5D6DB;
    background-color: #fff;
    top:1%;
    right: 0%;
    padding:5px;
    text-align: center;
    color:#000000;
    font-size: 12px;
}

.moreInfo i {
    font-size: 15px;
    margin-left: 10px;
}

#share a {
    width: 20%;
    float: left;
    font-size: 24px;
    color: #D5D6DB;
    text-align: center;
}

body::-webkit-scrollbar {
    width: 1em;
}
 
body::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
body::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
  border-radius: 3px;
}

.filter-options::-webkit-scrollbar {
    width: 5px;
}
 
.filter-options::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
 
.filter-options::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
  border-radius: 3px;
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) {
    .tabletNotActive {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

@media only screen and (min-device-width: 1366px) {
    .desktop-slider .ls-container {
        height: 81vh !important; 
    }
    .desktop-slider .ls-preloaded, .desktop-slider .ls-nexttile img, .desktop-slider .ls-curtile img {
       height: 81vh !important; 
       width: auto !important; 
       margin-top: 0px !important;
       margin-left: calc((100vw - (2000 * (81vh / 740))) / 2) !important; 
    }
}
    
@media screen and (max-width: 1024px) {

        .login-top li {
            position: relative;
            padding:10px 20px;
        }

        .top-level .navLi2 {
            height: 25%;
        }

}

@media screen and (min-width:768px) and (max-width: 1024px) {

       .product-check-radios .input-wrapper, .product-check-radios span span:nth-child(2n) {
            display: block;
       }

}



@media screen and (min-width:325px) and (max-width:813px) {
    /*.zoomContainer {
        display:none;
    }*/
    .desktopFilter {
        display: none;
    }
    .bx-wrapper img {
        /*max-width: 100% !important;*/
        /*display: block !important;*/
        width: 100% !important;
    }
    
}

@media screen and (min-width:325px) and (max-width:813px) {
    .desktopCatList {
        display:none !important;
    }
    .clearBtn {
        width: 100%;
        display: block;
        text-align: center !important;
        margin-bottom: 10px;
    }
    .clearButton {
        width: auto;
    }
}

@media screen and (min-width:814px) {
    .mobileCatList {
        display: none;
    }
    .clearBtn {
        padding:10px 50px;
    }
    .clearBtn:hover {
        padding:10px 50px;
        color:#DF1825 !important;
        background-color: #fff !important;
        border:1px solid #fff;
        text-align: right;
    }
}

.desktopCatList {
        border-left:#fff solid 1px;
    }

.fixedMenu .wishlist-count {
    display: none;
}

/*Checkout*/


.card-input {
    width: auto;
    display: inline-block;
    border-radius: 0;
}

form input[type="submit"]:not(.CommandButton) {
    font-family: 'Play', sans-serif;
    text-transform: uppercase;
    text-align: center;
    font-weight: 300;
    color: #fff;
    padding: 5px 32px;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
}

.brochure-contact .form-group a {
    color: #fff;
    background-color: #df1825;
    padding: 10px 40px;
    font-family: 'Play', sans-serif;
    top: 10px;
    position: relative;
}

.brochure-contact .form-group a:hover {
    color: #df1825;
    background-color: #fff;
    padding: 10px 40px;
    border: 1px solid #df1825;
    top: 10px;
    position: relative;
}

#dnn_ctr724_BrochureRequest_ctl00_chkBrochures,
#dnn_ctr724_BrochureRequest_ctl00_chkBrochures tbody {
    display: inline-block;
    width: 100%;
    margin:10px 0px;
}


#dnn_ctr724_BrochureRequest_ctl00_chkBrochures tbody tr {
    float: left;
    text-align: center;
    width: 33%;
}

#dnn_ctr724_BrochureRequest_ctl00_chkBrochures tbody tr td {
    text-align: center;
    width:100%;
}

.modal-dialog-scrollable .modal-body {
     overflow-y: none !important; 
}

#checkout h3 {
    font-size:16px;
}

.payment img {
	margin-right: 7px;
}

.payment span {
	font-size:11px;
	font-family: Arial, Verdana;
}

.tab-content .breadcrumbs {
	display: inline-flex;
}

#order-basket-summary table {
	width:100%;
}

#order-basket-summary table tr .product {
	width:40% !important;
}

#order-basket-summary table tr td {
	width:15%;
}

@media screen and (max-width:812px) {
	#order-basket-summary table thead {
		display:none !important;
	}
}