/* Custom Font Faces */
@font-face {
    font-family: 'montserrat';
    src: url('/fonts/montserrat/montserrat-regular-webfont.woff2') format('woff2'),
    url('/fonts/montserrat/montserrat-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat-hairline';
    src: url('/fonts/montserrat/montserrat-hairline-webfont.woff2') format('woff2'),
    url('/fontsmontserrat/montserrat-hairline-webfont.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat-ultralight';
    src: url('/fonts/montserrat/montserrat-ultralight-webfont.woff2') format('woff2'),
    url('/fonts/montserrat/montserrat-ultralight-webfont.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat-light';
    src: url('/fonts/montserrat/montserrat-light-webfont.woff2') format('woff2'),
    url('/fonts/montserrat/montserrat-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat-semibold';
    src: url('/fonts/montserrat/montserrat-semibold-webfont.woff2') format('woff2'),
    url('/fonts/montserrat/montserrat-semibold-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat-bold';
    src: url('/fonts/montserrat/montserrat-bold-webfont.woff2') format('woff2'),
    url('/fonts/montserrat/montserrat-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'montserrat-extrabold';
    src: url('/fonts/montserrat/montserrat-extrabold-webfont.woff2') format('woff2'),
    url('/fonts/montserrat/montserrat-extrabold-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* Core */
p, li{
    font-size:14px;
}
a:not(.btn):hover{
    text-decoration: none;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    opacity:0.7;
}

/*label{*/
/*font-size:12px;*/
/*}*/

body {
    font-family: "montserrat-light", verdana;
    background-color: #fff;
    font-size: 14px;
    color: #686868;
    margin-bottom: 60px;
}

.font-light-black{
    color:#646464;
}
.font-medium-black{
    color:#343434;
}
.font-black{
    color:black;
}

.title-large {
    font-size: 25px;
    font-weight: 300;
    color: #343434;
}

.title-medium {
    font-size: 20px;
    font-weight: 300;
    color: #343434;
}

.title-small {
    font-size: 12px;
    font-weight: 300;
    color: #343434;
}


.btn{
    -webkit-border-radius:0;
    -moz-border-radius:0;
    border-radius:0;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
ul.dashed {
    list-style-type: none;
}
ul.dashed > li:before {
    content: "-\00a0\00a0";
}
.btn:hover, .btn:focus, .btn.focus {
    color: white;
}



@media (min-width: 1200px){
    .container {
        width: 1220px;
    }
}
/* Header */

body.scrolled header::before {
    transform: translateY(0%);
}

body .border {
    background: #ffffff none repeat scroll 0 0;
    height: 100%;
    position: fixed;
    top: 0;
    transition: transform 600ms cubic-bezier(0.57, 0, 0.08, 1) 0s;
}

body .border.left {
    left: 0;
    transform: translateX(-100%);
}

body .border.right {
    right: 0;
    transform: translateX(100%);
}

body.scrolled .border.left, body.scrolled .border.right {
    transform: translateX(0%);
    z-index: 9999999999;
}

header {
    position: fixed;
    width: 100%;
    padding: 20px 40px;
    z-index: 99;
    background:rgba(0,0,0, 0.4);
    transition: background 1.0s;
}

body.scrolled header {
    background:rgba(255,255,255, 1.0);
}

header .box-logo {
    display: none;
    height: 45px;
    position: relative;
    top: 0px;
}

body.scrolled header .box-logo img {
    height: 100%;
}

header #topmenu {
    border: 0px solid #fff;
    margin-top: 8px;
    margin-right: 5px;
    padding-top: 9px;
    padding-bottom: 10px;
    padding-right: 10px;
}

header #topuser {
    border: 2px solid #fff;
    padding: 12px 12px 10px;
    margin-top: 9px;
    margin-left: 6px;
    margin-right: 9px;
}

body.scrolled header #topmenu {
    border: 0px solid #5b5b5b;
}

body.scrolled header #topmenu .fa-bars {
    color: #000000 !important;
}

body.scrolled header #topuser {
    border: 2px solid #5b5b5b;
}

header hr {
    border-color: rgba(255, 255, 255, 0.4);
}

body.scrolled header hr {
    border-color: #ddd;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}

header nav ul li {
    font-weight: 500;
    display: inline-block;
    padding: 5px 7px;
    color: #fff;
    font-size: 14px;
}

body.scrolled header nav ul li, body.scrolled header nav ul li a {
    color: #5b5b5b !important;
}

body.scrolled #logout {
    color: #686868 !important;
}

header nav ul li a {
    color: #fff !important;
    font-weight: 300;
    text-decoration: none !important;
    opacity: 0.8;
}

header nav ul li.border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    margin-right: 15px;
    padding-right: 25px;
}

body.scrolled header nav ul li.border-right {
    border-right: 1px solid #ddd;
}

header nav ul li a:hover {
    text-decoration: none;
    color: #fff;
}

header nav ul li a:active {
    color: #fff;
}

header nav ul li.open a {
    opacity: 1;
}

body.scrolled header nav ul li.open a {
    opacity: 1;
    color: #000 !important;
}

header nav > ul > li > ul.dropdown-menu {
    margin: 0;
    padding: 0;
    max-height: 500px;
    overflow: auto;
}

header nav > ul > li > ul.dropdown-menu > li {
    width: 100%;
    padding: 0;
}

header nav > ul > li > ul.dropdown-menu > li > a {
    color: #686868 !important;
    width: 100%;
    background: transparent;
    padding: 10px 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
}

header #logo {
    background-image: url('/image/logo-white.png');
    background-repeat: no-repeat;
}

body.scrolled header #logo {
    background-image: url('/image/logo-color.png');
}

header #logo a {
    width: 231px;
    height: 70px;
    display: block;
}

header a#login {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    top: -2px;
}

header a#logout {
    color: #fff;
    padding-right: 10px;
    font-weight: 500;
    padding: 5px 5px 5px 5px;
    text-decoration: none;
    position: relative;
    top: -2px;
}

body.scrolled header a#login {
    color: #5b5b5b;
    border-color: #5b5b5b;
}

header #cart {
    margin-left: 2px;
    margin-right: 0px;
    max-width: 49px;
    margin-top: 0px;
}
header #cart {
    position: relative;
}
header #cart a span{
    color: white;
    position: absolute;
    left: 0;
    right: 0;
    top: 23px;
    font-size: 14px;
    text-align: center;
}

.scrolled header #cart a span{
    color: #686868;
}

body.scrolled header #cart .cart-white {
    display: none;
}

body header #cart .cart-color {
    display: none;
}

body.scrolled header #cart .cart-color {
    display: block;
}

header .hamburger, header .hamburger-login {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 14px;
    margin-right: 2px;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    margin-left: 15px;
    margin-top: 25px;
}

header .hamburger:before {
    content: "";
    position: absolute;
    top: 0.25em;
    left: 0px;
    width: 100%;
    border-top: 2px solid #fff;
}

body.scrolled header .hamburger {
    color: #5b5b5b;
    border-color: #5b5b5b;
}

body.scrolled header .hamburger:before {
    color: #5b5b5b;
    border-color: #5b5b5b;
}
.scrolled header::before{
    border-bottom: 1px solid #ddd;
}
#topmenu .add-menu{
    display: inline-block;
}
#topmenu .add-menu ul.dropdown-menu > li > a {
    color: #686868 !important;
    width: 100%;
    background: transparent;
    padding: 10px 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
}
#topmenu .add-menu ul.dropdown-menu > li > a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}
#topmenu .add-menu ul.dropdown-menu{
    right: -18px;
    top: 43px;
    left: auto;
    padding: 0;
}
#topmenu .add-menu ul.dropdown-menu > li{
    width:100%;
    padding: 0;
}

.mobile-menu-hamburger-login, .mobile-menu-hamburger {
    display: inline-block;
}

/* Slider */

.hero {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

#slides, #slides .slick-list, #slides .slick-track {
    height: 100%;
    position: relative;
    overflow: hidden;
}

#slides .slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

#slides .slide img {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    display: block;

    position: absolute;
    top: -9999px;
    bottom: -9999px;
    left: -9999px;
    right: -9999px;
    margin: auto;

}

#slides .slide img.darker {
    -webkit-filter: brightness(85%);
    -moz-filter: brightness(85%);
    filter: brightness(85%);
}

#slides .slide .slide-text {
    position: absolute;
    top: 250px;
    left: 100px;
    z-index: 99;
    color: #fff;
    width: 350px;
}

#slides .slide .slide-text h2 {
    margin-bottom: 30px;
    padding: 0px;
}

#slides .slide .slide-text p {
    font-weight: normal;
    padding-right: 10px;
}

#slides .slide .slide-text a.ghost {
    color: #fff;
    border-color: #fff;
    padding: 15px 30px;
}

#slides .slide .slide-text.dark {
    color: #686868;
}

#slides .slide .slide-text.dark a.ghost {
    color: #686868;
    border-color: #686868;
}

#slide-nav {
    display: none;
    width: 100%;
    position: absolute;
    bottom: 40px;
    height: 15px;
    padding: 0;
    margin: 0;
}

#slide-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

#slide-nav ul li {
    display: inline-block;
    margin: 0 5px;
}

#slide-nav ul li button {
    width: 15px;
    height: 15px;
    background-color: rgba(0, 0, 0, 0);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 0px;
}

#slide-nav ul li.slick-active button {
    background-color: #fff;
    border: 1px solid #fff;
}

/* Index */

h3 {
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 40px;
}

section {
    padding: 40px 0px;
    min-height: 100vh;
    overflow: hidden;
}

section#product-blurb {
    color: #686868;
    background-color: #f6f6f6;
}

.text-center {
    text-align: center;
}

.products-grid {
    padding-top: 40px;
}

.products-grid > div {
    padding: 0px 10px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    cursor: pointer;
}

.products-grid > div img {
    display: block;
    padding: 0;
}

.products-grid > div .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 10px;
    right: 10px;
    background-image: url('/image/grid/backing.png');
    background-size: cover;
    height: 100%;
}

.products-grid > div .details {
    position: absolute;
    top: 220px;
    left: 10px;
    right: 10px;
    transition: all 0.5s linear;
    /*background-image: url('/image/grid/backing.png');*/
    height: 100%;
}

.products-grid > div:hover .details {
    top: 0px;
    background-image: url('/image/grid/full.png');
}

.products-grid > div .details h5 {
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: #fff;
    width: 100%;
    font-weight: 300;
    padding-top: 80px;
    padding-bottom: 30px;
    font-size: 16px;
}

.products-grid > div .details p {
    color: #fff;
    width: 100%;
    text-align: center;
    font-weight: 200;
    padding: 20px 20px;
}

img.products-grid-image {
    width: 100%;
    padding-bottom: 20px;
}

/* Services section */

#service-blurb {
    /*background-image: url("../image/section-services.jpg");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    color: #fff;
    position: relative;
    padding-top: 200px;
}

/*#service-blurb h3 {*/
    /*font-size: 28px;*/
    /*font-weight: 300;*/
    /*letter-spacing: 0.05em;*/
/*}*/

.services-wrap {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    bottom: 40px;
    left: 50%;
}

.service-circles {
    width: 100%;
    padding: 40px;
    position: relative;
    left: -50%;
}

.service-circles .service-circle {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 33.3%;
    height: auto;
    padding-top: 33.3%;
    transition: all 1s linear;
}

.service-circles .service-circle .service-circle-inner {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.service-circles .service-circle .service-circle-inner .circle-content {
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0px 20px;
}

.service-circles .service-circle .service-circle-inner .circle-content img {
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
}

.service-circles .service-circle .service-circle-inner .circle-content .test {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.service-circles .service-circle.displayed .service-circle-inner {

}

.service-circles .service-circle h4 {
    padding-bottom: 1px;
    margin-bottom: 0px;
    display: inline-block;
    margin: auto;
}

.service-circles .service-circle p {
    display: none;
}

.service-circles .service-circle hr {
    width: 20px;
    margin-top: 5px;
    border-color: #7a7879;
}

.service-circles .service-circle.displayed {
    background-image: url("../image/40.png");
}

.service-circles .service-circle.displayed p {
    display: block;
}

.service-circles .service-circle.displayed hr {
    width: 100%;
}

/* Enviro Section */

section#enviro-blurb {
    color: #686868;
    position: relative;
    padding: 0;
    background-color: #ccc;
    overflow: hidden;
    min-height: initial;
    height: 100vh;
}

section#enviro-blurb h3 {
    padding-bottom: 20px;
}

.triangle.left {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 400px 100vh 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    left: -399px;
    bottom: 0;
}

.triangle.right {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100vh 400px 0 0;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    top: 0;
    right: -400px;
}

.vid-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: 0;
    z-index: 1;
}

.vid-logo {
    max-height: 60px;
    position: absolute;
    left: 80px;
    bottom: 20px;
}

.vid-logo.right {
    right: 80px;
    left: initial;
}

.content-front {
    background-color: #fff;
}

.enviro-content {
    background-color: #fff;
    min-height: 100vh;
    padding-top: 25vh;
    position: relative;
    z-index: 2;
}

.customisation-content {
    background-color: #fff;
    min-height: 100vh;
    padding-top: 25vh;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

a.ghost {
    color: #696969;
    margin: 30px 0px;
    display: inline-block;
    padding: 0;
    border: 2px solid #696969;
    border-radius: none;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: normal;
    opacity: 0.7;
}

a.ghost:hover {
    opacity: 1;
}

a.btn:hover {
    text-decoration: none;
}

.video-background {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
}

iframe.left {
    position: absolute;
    top: 0;
    left: -20vw;
    width: 100%;
    height: 100%;
}

iframe.right {
    position: absolute;
    top: 0;
    right: -20vw;
    width: 100%;
    height: 100%;
}

.panel-vid {
    display: block;
    height: auto;
    min-height: 100vh;
    min-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

/* Customise section */

section#customise-blurb {
    color: #686868;
    position: relative;
    padding: 0;
    background-color: #ccc;
    overflow: hidden;
    min-height: initial;
    height: 100vh;
}

section#customise-blurb h3 {
    padding-bottom: 20px;
}

/* Delivery Section */

#delivery-blurb {
    /*background-image: url("/image/section-bike.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    color: #fff;
    position: relative;
}

.delivery-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.delivery-nav ul li {
    float: left;
    text-align: center;
    padding: 10px;
}

.delivery-nav ul li a {
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
}

.delivery-nav ul li a.active {
    border-bottom: 2px solid;
}

.delivery-circle {
    width: 80%;
    height: 0;
    padding-top: 80%;
    border-radius: 50%;
    background-image: url('/image/white-80.png');
    position: relative;
    margin: auto;
    margin-top: 80px;
}

.delivery-circle > div {
    position: absolute;
    top: 0;
    color: #686868;
    text-align: center;
    padding: 80px;
    height: 100%;
    display: none;
}

.delivery-circle > div.display {
    display: table;
}

.delivery-circle > div > div {
    display: table-cell;
    vertical-align: middle;
}

section#news-section {
    /*background-image: url('../image/section-news.jpg');*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    position: relative;
    top: -40px;
}

#news-section h3 {
    color: #ffffff;
    text-align: center;
    margin-top: 160px;
    margin-bottom: 80px;
}

.news-wrap {
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
}

.news-circles {
    width: 100%;
    padding: 40px;
}

.news-circles .news-circle {
    text-align: center;
    position: relative;
    border-radius: 50%;
    width: 30%;
    height: auto;
    padding-top: 30%;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 1.165%;
    margin-right: 1.165%;
    float: left;
}

.news-circles .news-circle .news-circle-inner {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.news-circles .news-circle .news-circle-inner .circle-content {
    display: table;
    position: absolute;
    top: 55px;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0px 30px;
}

.news-circles .news-circle .news-circle-inner .circle-content img {
    display: block;
    margin: 0 auto;
    padding-bottom: 10px;
}

.news-circles .news-circle .news-circle-inner .circle-content .test {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.news-circles .news-circle h4 {
    width: 90%;
    padding-bottom: 30px;
    margin-bottom: 0px;
    display: inline-block;
    margin: auto;
    color: #fff;
}

.news-circles .news-circle p {
    color: #fff;
}

.news-circles .news-circle hr {
    width: 20px;
    margin-top: 5px;
    border-color: #7a7879;
}

.news-circles .news-circle {
    background-image: url("../image/40.png");
}

.news-circles .news-circle a.ghost {
    color: #fff;
    border-color: #fff;
}

/* Instagram Feed */

section#instagram {
    padding-bottom: 80px;
    min-height: initial;
}

/*section#instagram h3 {*/
    /*font-size: 32px;*/
    /*font-weight: normal;*/
    /*color: #6c6c6c;*/
/*}*/

#instafeed {
    width: 100%;
    padding: 15px;
}

.instagram-photo {
    width: 20%;
    float: left;
    padding: 7.5px;
}

.instagram-photo a, .instagram-photo a img {
    width: 100%;
}

.instagram-photo:nth-child(5n+1) {
    clear:both;
}

/* footer */

footer {
    background-image: url('/image/footer.png');
    background-size: cover;
    padding: 40px;
}

footer ul {
    list-style: none;
}

footer ul li {
    color: #fff;
    font-weight: 400;
}

#newsletter-signup input, #newsletter-signup button {
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    border-radius: 0px;
    height: 30px;
    margin-bottom: 10px;
}

#newsletter-signup button {
    background-color: #d6d6d6;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: 200;
}

footer a:hover {
    color: #fff;
    text-decoration: none;
}

footer .footer-line {
    padding-top: 2.0vh;
    color: #fff;
}

footer .footer-line a {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    padding: 0px 10px;
}

.subfoot {
    padding: 20px 40px 0;
}

.subfoot .copy {
    font-size: 14px;
    padding-left: 20px;
    padding-top: 20px;
}

.subfoot .copy a {
    text-decoration: none;
    color: inherit;
}

.subfoot img {
    float: right;
    margin-right: 40px;
}

.table#subfoot {
    margin-top: -10px;
    padding-top: -10px;
}

.table-borderless#subfoot td,
.table-borderless#subfoot th {
    border: 0;
}
/* video BGs */

.videobg {
    position: relative;
    width: 100%; /* Set video container element width here */
    height: 100%; /* Set video container element height here */
    overflow: hidden;
    background: #111; /* bg color, if video is not high enough */
}

/* horizontally center the video */
.videobg-width {
    position: absolute;
    width: 100%; /* Change width value to cover more area*/
    height: 100%;
    left: -9999px;
    right: -9999px;
    margin: auto;
}

/* set video aspect ratio and vertically center */
.videobg-aspect {
    position: absolute;
    width: 100%;
    height: 0;
    top: -9999px;
    bottom: -9999px;
    margin: auto;
    padding-bottom: 56.25%; /* 16:9 ratio */
    overflow: hidden;

}

.videobg-make-height {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.videobg-hide-controls {
    box-sizing: content-box;
    position: relative;
    height: 100%;
    width: 100%;
    /* Vimeo timeline and play button are ~55px high */
    padding: 55px 97.7777px; /* 16:9 ratio */
    top: -55px;
    left: -97.7777px; /* 16:9 ratio */
}

.videobg iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border: 0 none;
}

.hero.short{
    max-height: 400px;
}

.user-form{
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    margin-bottom: 10px;
    max-width: 420px;
}

#login {
    margin-top: 2.0vh;
}

#login .user-form {
    margin-top: 1.0vh;
}

/**
Collection page
 */
.hero.short .slide-text{
    left: 0;
    right: 0;
    margin: 0 auto;
}
.collapse-heading p{
    border-bottom: 1px solid #dfdfdf;
    cursor: pointer;
    margin:0;
}
.collapse-heading span{
    float: right;
    margin-right: 10px;
}

.collapse-menu{
    margin-bottom: 0px;
}
.collapse-inner ul{
    list-style: none;
    padding:0;
    margin:0;
    margin-top: 10px;
}
.collapse-inner ul .checkbox{
    margin:5px 0;
}
.col-filters{
    margin-top:60px;
    margin-bottom: 50px;
}
.collapse-menu .collapse-inner{
    display: none;
}
.collapse-menu.open > .collapse-inner{
    display: block;
}
.collapse-heading .fa{
    font-size:10px;
}
.col-products{
    margin-top:40px;
}
.col-products .product-img{
    overflow: hidden;
    height:250px;
    width:198px;
    border: 1px solid #DFDFDF;
    position: relative;
}
.product-info p{
    margin-top: 10px;
    font-weight: 400;
    width: 198px;
}
.product-price{
    width: 198px;
    text-align: center;
}
.product-item{
    margin-bottom:30px;
}
.product-price .compare{
    text-decoration: line-through;
    font-size: 14px;
    color: #a3a3a3;
}
.product-price .price{
    color: #da0000;
    font-size: 12px;
}

.product-img {
    border: 1px solid #DFDFDF;
}

.product-img .slide-container{
    position: absolute;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.3);
    top:100%;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    transition-delay: .25s;
}
.product-item .product-img:hover .slide-container{
    top:0;
}
.product-img .slide-up{
    display: table;
    position: absolute;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.3);
    top:0;
}
.product-img .slide-info{
    text-align: center;
    color: white;
    display: table-cell;
    vertical-align: middle;
    padding: 0 5px;
    font-size: 12px;
}
.slide-btn{
    position: absolute;
    bottom: 7px;
    width: 100%;
}
.btn-red{
    background: #a51c23;
    color: white !important;
    padding: 7px 10px;
    font-size:14px;
}
.btn-white{
    background: white;
    color: #a51c23;
    padding: 7px 10px;
    font-size:14px;
}

.btn-enquiry {
    background: white;
    border: 1px solid #a51c23;
    padding: 7px 10px;
    font-size:14px;
    color: #686868;
}


.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    color: #fff;
    cursor: default;
    background-color: #a51c23;
    border-color: #a51c23;
}

.pagination>li>a,.pagination>li>a:hover, .pagination>li>span {
    color: #a51c23;
    background-color: #fff;
}

.slide-container .btn-con{
    float: left;
    width: 50%;
}
.slide-container .btn-deco{
    text-align: center;
    width:100%;
    display: inline-block;
    font-size: 12px;
    -webkit-transition: background .3s linear;
    -moz-transition: background .3s linear;
    -o-transition: background .3s linear;
    transition: background .3s linear;
}
.slide-container .btn-deco:hover{
    text-decoration: none;
}
.btn-con-left{
    padding: 0 2.5px 0 5px;
}
.btn-con-right{
    padding: 0 5px 0 2.5px;
}
.btn-red:hover{
    background: #ac0000;
    color: white;
}
.btn-white:hover {
    background: #cccccc;
    color: #da0000;
}
.btn-enquiry:hover {
    background: #ffffff;
    color: #000000;
}


.stock .in-stock{
    background: white;
}
.product-item .stock{
    position: absolute;
    top: 0;
    background: white;
    z-index: 98;
    left: 5px;
    top: 5px;
    padding: 5px;
    font-size: 12px;
}
.out-stock{
    color: #a51c23;
}
.breadcrumb{
    margin:0;
    background: transparent;
    position: absolute;
    top: -5.0vh;
}
.breadcrumb a{
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}
.breadcrumb .breadcrumb-item{
    font-size: 14px;
    color: #ffffff;
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
}
.breadcrumb-container{
    position: relative;
}
.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #f4f2f3;
}
.product-info a{
    color: inherit;
    font-size: 12px;
    text-decoration: none;
}
.hero.short #slides .slide-text{
    font-family: montserrat-semibold, Verdana;
    width:auto;
    left: 0;
    text-align: center;
    top: 196px;
}
.hero.short h1{
    font-size:54px;
}
/*
Product single page
 */
.col-product{
    margin-top: 40px;
    margin-bottom: 40px;
}

.product-img-small {
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.product-img-small img {
    border: 0px solid #DFDFDF;
}

.product-img-order-form {
    width: 70px;
    height: 70px;
    margin: 0 auto;
}

.product-img-order-form img {
    border: 0px solid #DFDFDF;
}

.product-img-inner {
    width: 4.0vh;
    height: 4.0vh;
}

.product-img-inner img {
    border: 1px solid #DFDFDF;
}

.product-img-for .product-img-inner{
    height: 500px;
    overflow: hidden;
}
.product-img-nav{
    margin-top:10px;
}
.product-img-slider{
    padding: 10px;
    border: 1px solid #e6e6e6;
}
.product-nav-inner{
    border:1px solid #ebebeb;
    overflow: hidden;
    height:100px;
    width:100px;
    margin:5px;
}
.product-nav-inner.slick-current{
    border:1px solid #b4b4b4;
}
.col-product .product-name{
    font-family: 'montserrat-light', verdana;
    margin-top:0;
}
.col-product .product-code{
    font-family: 'montserrat-light', verdana;
    font-size: 16px;
    margin-top:20px;
}
.col-product .quantity{
    font-family: 'montserrat-light', verdana;
    font-size: 16px;
    margin-top:20px;
}
.col-product .quantity .option{
    margin:10px 0;
    font-weight:400;
    height: 26px;
}

.col-product .quantity .option .number span{
    font-weight:bold;
}
.col-product .quantity .option input{
    float: right;
}
.col-product .quantity .option .input-group{
    width: 110px;
    float: right;
}
.col-product .quantity .option .input-group input{
    text-align: center;
    width: 80px;
    color: inherit;
}
.col-product .quantity .option .input-group .glyphicon {
    font-size: 10px;
}
.col-product .quantity .option .number{
    display: inline-block;
}
.col-product .quantity .input-group .btn{
    padding: 2px 7px;
    border-radius: 0;
}
.col-product .quantity .input-group input{
    height: 26px;
}

.quality-btn, .quantity-btn-plus {
    color: #a2a2a2;
    background-color: #ffffff;
    border-color: #a2a2a2;
}
.quantity-btn-minus {
    color: #a2a2a2;
    background-color: #fff;
    border-color: #a2a2a2;
}

.quality-btn:hover, .quality-btn:focus {
    color: #a2a2a2;
}
.quantity-btn-plus:hover, .quantity-btn-plus:focus {
    color: #a2a2a2;
}
.quantity-btn-minus:hover, .quantity-btn-minus:focus {
    color: #a2a2a2;
}

.product-form-container{
    padding-left: 20px;
}
.product-form-container .btn-cart, .product-form-container .btn-enquiry{
    width: 48%;
    margin-top: 20px;
    color: #686868;
}

.product-description {
    font-family: 'montserrat-light', verdana;
    padding-top: 20px;
    margin-bottom: 20px;
    min-height: 200px;
}

.product-description ul{
    padding:0;
}

.product-description li {
    font-size: 14px;
}

.product-description .description-heading{
    font-family: 'montserrat-light', verdana;
    font-size: 20px !important;
    margin-top:20px;
    font-size: 16px;
}
.product-features{
    margin-top: 3.0vh;
}

.tab-content>.tab-pane {
    font-size: 14px;
}

.product-tabs .tabs-left li {
    font-size: 16px;
}

.product-feature-item span{
    margin-left:20px;
    font-size: 14px;
}
.product-feature-item{
    font-family: 'montserrat-light', verdana;
    margin-bottom: 1.2vh;
    text-align: left;
    font-size: 16px;
}
.product-tabs{
    margin-top: 1.5vh;
}

.product-tabs .nav-tabs li {
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
}

.product-tabs .nav-tabs li a{
    font-family: 'montserrat-light', verdana;
    color: inherit;
    font-size: 14px;
}
.product-tabs .nav-tabs li.active a{
    color: #a51c23;
}
.product-tabs .tab-content .tab-heading{
    margin-top: 15px;
    color: #a51c23;
    font-weight: 400;
    font-size: 16px;
}

.product-tabs .tab-content p {
    font-size: 14px;
}

.col-product .product-features img{
    width:50px;
    height:auto;
}

.tab-content {
    font-family: 'montserrat-light', verdana;
}

.col-table {
    min-height: 6vh;
    font-size: 14px;
    overflow:auto;
}

.customer-menu {
    margin-top: 3.0vh;
}

footer {
    font-family: 'montserrat-light', verdana;
}

/**
Page styles
 */
.page-container{
    margin-top:40px;
    margin-bottom:40px;
}
.page-container h1{

}
.page-container h2{

}
.page-container h3{
    padding:0;
}

.menu-dropdown {
    display: inline;
}

#nav-desktop {
    display: block;
    margin-top: 10px;
    margin-bottom: -8px;
}
#desktop-menu {
    display: inline;
}

#mobile-menu {
    display: none;
}

a.disabled {
    opacity: 0.5;
    pointer-events: none;
    cursor: default;
}

.login-form {
    margin-left: 20px;
}

.user-form input {
    margin-left: 20px;
    margin-top: 0px;
}

.user-form input.btn {
    margin-left: 10px;
}

.reset-password-form input {
    margin-left: 0px;
}

#change-password-form {
    margin-top: 0.5vh;
}

#change-password-form input {
    margin-left: 0px;
}

span.change-password-form {
    font-size: 16px;
}

.btn-password {
    font-size: 16px;
    margin-bottom: 1.0vh;
}

.user-form .btn-primary {
    background-color: #a51c23;
    border-color: #a51c23;
    border-radius: 5px;
    width: 100%;
}

.user-form label, .resetting-form label{
    font-size:16px;
    font-weight: 300;
    margin-top: 8px;
}

.resetting-form {
    margin: 50px auto;
    max-width: 420px;
}

.resetting-form .btn-primary {
    background-color: #a51c23;
    border-color: #a51c23;
    border-radius: 5px;
    width: 100%;
}

.resetting-form input {
    margin-top: 0px;
}

.resetting-form label {
    margin-bottom: 0px;
}

.form-errors li {
    color: red;
}

#collection_pagination {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
 }

.category-menu label {
    font-weight: normal;
    font-size: 12px;
}

.list-group-submenu {
    margin-left: 20px;
}

.list-group-item, .list-group-item label {
    font-size: 16px;
    font-weight: 200;
}

.list-group-item .checkbox {
    margin-top: 0px;
    margin-bottom: 0px;
}

.list-group .accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings';  /* essential for enabling glyphicon */
    content: "\e114";    /* adjust as needed, taken from bootstrap.css */
    float: right;        /* adjust as needed */
    color: grey;         /* adjust as needed */
}
.panel-heading .accordion-toggle.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\e080";    /* adjust as needed, taken from bootstrap.css */
}

input.category {
    margin-left: 10px;
}

.list-group-submenu .checkbox {
    margin-top: 0px !important;
    padding-left: 35px;
}
.accordion-toggle:after {
    /* symbol for "opening" panels */
    font-family: 'Glyphicons Halflings';  /* essential for enabling glyphicon */
    content: "\e114";    /* adjust as needed, taken from bootstrap.css */
    float: right;        /* adjust as needed */
    color: grey;         /* adjust as needed */
}

.accordion-toggle.collapsed:after {
    /* symbol for "collapsed" panels */
    content: "\e080";    /* adjust as needed, taken from bootstrap.css */
}

#forget_password {
    margin-left: 20px;
    color: inherit;
    display: block;
    text-decoration: underline;
}

#password {
    margin-bottom: 5px;
}

.customer-profile {
    margin-top: 40px;
}

.customer-menu a {
    color: inherit;
}

.product-info {
    font-family: 'montserrat', verdana;
    height: 58px;
    text-align: center;
}

#check_email {
    margin-top: 30px;
    font-size: 16px;
}

#order_title, #profile_title, #search_title {
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}

#order_content {
    font-size: 14px;
    margin-top: 0.1vh;
}

.btn-checkout {
    color: #686868;
    font-size: 12px;
    margin-bottom: 1.0vh;
}

hr {
    margin-top: 5px;
    margin-bottom: 5px;
}

#login .row {
    margin-right: -6px;
    margin-left: -20px;
}

#login .form-group {
    margin-bottom: 1.0vh;
}

span.login-form, span#login_remember_me, a#forget_password {
    font-size: 16px;
    font-weight: 200;
}

#login input.btn-password {
    font-weight: 200;
}

#login-error {
    font-size: 16px;
    color: red;
    margin-top: 6px;
    margin-left: 10px;
}

.pagination {
    margin: 0;
}

.pagination>li {
    text-align: center;
    font-size: 12px;
  }

#order_pagination {
    text-align: center;
}

.breadcrumb > li + li:before {
    color: #ffffff;
    content: " | ";
    padding: 0 5px;
}

.list-group-item.active, .list-group-item.active:hover {
    background-color: #a51c23;
    border-color: #a51c23;
}

#nav-search {
    display: block;
}

#nav-search-form {
    display: none;
}

#nav-search-icon, #nav-search-icon-login {
    display: none;
    font-size: 25px;
    color: #fff;
    float: right;
    padding-right: 8px;
    margin-top: 21px;
}

#nav-search .form-control {
    height: 48px;
}

#nav-search .btn {
    padding: 13px;
}

#btn-search {
    border-radius: 4px;
    color: #fff;
    background-color: transparent;
    border-color: #fff;
    border-width: 2px;
}

#search_title {
    margin-top: 20px;
    margin-bottom: 10px;
}



.add-on .input-group-btn > .btn {
    border-left-width:0;left:-2px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
/* stop the glowing blue shadow */
.add-on .form-control:focus {
    box-shadow:none;
    -webkit-box-shadow:none;
    border-color:#cccccc;
}
/*.form-control{width:20%}*/
.navbar-nav > li > a {
    border-right: 1px solid #ddd;
    padding-bottom: 15px;
    padding-top: 15px;
}
.navbar-nav:last-child{ border-right:0}

.food-search {
    margin-left: 2px;
    margin-top: 4px;
    font-weight: 400;
    width: 155px;
}

.food-search-filter {
    margin-left: 2px;
    margin-top: 4px;
    font-weight: 400;
    width: 13.0vh;
}

#change-password-form.form-control {
    border-radius: 0px;
    height: 4.5vh;
    font-size: 16px;
}

.navbar-form {
    width: auto;
    padding: 0;
    margin-right: 0;
    margin-left: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#environment {
    margin-top: 3.0vh;
    margin-bottom: 3.0vh;


}
.environment_header {
    text-align: center !important;
    font-size: 16px;
    font-weight: 500;
    color: #686868;
}

.environment_subheader {
    text-align: center !important;
    font-size: 16px;
    font-weight: 500;
    color: #686868;
    /*width: 550px;*/
}

.environment_sub_header {
    text-align: center;
    font-weight: 400;
    color: #686868;
}

.environment_product {
    float: left;
    width: 225px;
    height: 225px;
    margin-top: 10px;
    margin-right: 10px;
    color: #ffffff;
    text-align: center;
}

.environment_product .header {
    padding-top: 32px;
    padding-bottom: 5px;
    padding-left: 5px;
    font-size: 20px;
    font-weight: 400;
}

.environment_product .content {
    padding-top: 3px;
    padding-left: 2px;
    font-size: 14px;
    font-weight: 300;
    padding-left: 5px;
    padding-right: 5px;
    word-wrap: normal;
}

.environment_column {
    margin-top: 2.0vh;
    margin-bottom: 2.0vh;
    font-size: 16px;
}


.environment_column-left {
    margin-top: 2.0vh;
    margin-bottom: 2.0vh;
    font-size: 14px;
    margin-right: 40px;
}

.environment_column-right {
    margin-top: 2.0vh;
    margin-bottom: 2.0vh;
    font-size: 14px;
    margin-right: 40px;
}


.service_header {
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

.news_quote {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #686868;
    margin-bottom: 1.6vh;
}

.news_image {
    width: 450px;
    height: 450px;
    float: right;
    margin-left: 2.0vh;
    margin-bottom: 2.0vh;
}

.news-content img {
    border: 0;
    max-width: 100%;
    height: auto;
}

#order-form {
    padding-top: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}


#order-form td {
    vertical-align: middle;
}

#order-form tr.item {
    height: 89px;
}

.order-form-qty {
    width: 200px;
    padding: 0px !important;
}

.table_quantity {
    margin-bottom: 0px;
    background-color: transparent !important;
}

.table_quantity tbody tr td {
    border: none;
}

.sleeve-price, .carton-price {
    display: none;
}

#customisation_purpose {
    width: 500px;
    margin: 0 auto;
}

#customisation_content {
    width: 2002px;
    margin: 0 auto;
    margin-top: 5.0vh;
    height: 432px;
}

.customisation_content_cell {
    width: 1001px;
    height: 432px;
}

.customisation_content_text_left_cell {
    width: 1001px;
    height: 432px;
    float: left;
    color: #ffffff;
    background-color: #344251;
}

.customisation_content_text_left_cell div {
    padding-top: 5.0vh;
    padding-right: 5.0vh;
    padding-left: 30.0vh;
}

.customisation_content_text_right_cell {
    width: 1001px;
    height: 432px;
    float: left;
    color: #ffffff;
    background-color: #344251;
}

.customisation_content_text_right_cell div {
    padding-top: 5.0vh;
    padding-left: 5.0vh;
    padding-right: 30.0vh;
}

#form_product_enquiry {
    margin-top: 40px;
    margin-bottom: 40px;
}
#form_product_enquiry button {
    width: 100%;
    background-color: #a51c23;
    color: #ffffff;
}

span.enquiry-form label{
    font-size: 14px;
    font-weight: 300;
}

img.collection, img.product {
    border: 0px solid #DFDFDF;
}

.nav-tabs>li>a {
    border-radius: 0px;
}

.form-control {
    border-radius: 0px !important;
}

#range-loading-spinning {
    position: absolute;
    z-index: 1;
    display: none;
    font-size:100px;
    color: #ddd;
    margin-top: 150px;
}

table#orderlist th {
    text-align: center !important;
    color: #343434;
}

table#orderdetails th {
    text-align: center !important;
    color: #343434;
}

table#cart-table th {
    text-align: center;
    vertical-align: middle;
    color: #343434;
}

table#cart-table td {
    text-align: center;
    vertical-align: middle;
    color: #686868;
}

table#orderdetails th, table#orderdetails td {
    text-align: center;
    vertical-align: middle;
}

.order-form-image-printable {
    display: none;
}

.order-form-quantity-printable {
    display: none;
}

.order-form-product-name-printable {
    display: none;
}

.btn-print {
    font-family: montserrat-light, Verdana;
    font-size: 12px;
}

.text-shadow {
    text-shadow: 2px 2px 4px #000000;
}

.pagination>.disabled>a, .pagination>.disabled>a:focus, .pagination>.disabled>a:hover, .pagination>.disabled>span, .pagination>.disabled>span:focus, .pagination>.disabled>span:hover {
    color: #686868;
}

.category-industries-list, .category-foods-list {
    max-height: 300px;
    overflow:auto;
}

.foods-industries-list {
    max-height: 500px;
    overflow:auto;
}

.social-media:link, .social-media:visited, .social-media:hover, .social-media:active  {
    color: #FFFFFF;
    text-decoration: none;
}

#orderform-desktop {
    display: block;
}

#orderform-mobile {
    display: none;
}

#orderform_note {
    width: 100%;
    margin-top: 12px;
    margin-bottom: 10px;
    padding-left: 8px;
    padding-right: 8px;
    border: solid 1px #dddddd;
}

#newsletter-signup-form .form-group {
    max-width: 200px;
}

#top-menu {
    display: none;
}

.product-accordion {
    display: none;
}

.product-container .product-img {
    margin-bottom: 10px !important;
}

#sticky-footer {
    background-image: url(/image/footer.png);
    background-size: 100%;
    position: fixed;
    bottom: 0;
    z-index: 999;
    width: 100%;
    height: 55px;
    padding-top: 15px;
    padding-right: 65px;
    text-align: right;
}

#sticky-footer-call-link {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

#sticky-footer-enquire-link {
    margin-left: 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    background-color: #ac3321;
    border: none;
    margin-left: 20px;
    margin-top: -4px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 8px;
}

@media (max-width: 600px) {
    .product-accordion {
        display: block;
    }

    .product-tabs {
        display: none;
    }

    #sticky-footer {
        width: 100%;
        height: 36px;
        padding-top: 4px;
        padding-right: 10px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }

    #sticky-footer-call-link {
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
    }

    #sticky-footer-enquire-link {
        margin-left: 20px;
        color: #ffffff;
        font-size: 12px;
        font-weight: 400;
        background-color: #ac3321;
        border: none;
        margin-left: 10px;
        margin-top: -4px;
        padding-left: 10px;
        padding-right: 10px;
        padding-top: 10px;
        padding-bottom: 8px;
    }

}

@media (max-width: 500px) {
    #customisation_purpose {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .news_image {
        width: 100%;
    }
}

@media (max-width: 1000px) {
    #customisation_content {
        width: 100%;
        margin: 0 auto;
        margin-top: 5.0vh;
    }
    .customisation_content_cell {
        width: 100%;
        height: auto;
    }
    .customisation_content_text_left_cell {
        width: 100%;
        height: 300px;
    }
    .customisation_content_text_left_cell div {
        padding-top: 2.0vh;
        padding-right: 1.0vh;
        padding-left: 1.0vh;
    }
    .customisation_content_text_right_cell {
        width: 100%;
        height: auto;
    }
    .customisation_content_text_right_cell div {
        padding-top: 2.0vh;
        padding-left: 1.0vh;
        padding-right: 1.0vh;
    }
}

.related-product-item {
    text-align: center;
}

.related-product-img {
    display: inline-block;
    width: 152px;
    height: 152px;
    border: 1px solid #DFDFDF;
    margin: 0 auto;
}

#subfoot-desktop {
    display: block;
}
#subfoot-mobile {
    display: none;
}

#subfoot-logo-mobile {
    max-width: 455px;
    width: 100%;
    margin: 0 auto;
}

.products-results {
    margin-top: 0px;
    margin-bottom: 30px;
    text-align: left;
}

.products-results-none {
    margin-top: 50px;
    text-align: center;
}

.products-banner {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.products-text {
    margin-top: 10px;
    margin-bottom: 0px;
    text-align: center;
}

.collection-banner-image {
    width: 100%;
    max-width: 915px;
}

.pdf_downloads {
    text-align: right;
    margin-top: 0px;
    margin-bottom: 20px;
}

.pdf_file {
    background-color: #F1F1F1;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
    padding-bottom: 5px;
    margin-left: 10px;

}

.pdf_icon {
    margin-right: 5px;
}

.pdf_file_title {
    font-family: 'montserrat-light', verdana;
    font-weight: normal;
    font-size: 12px;
    color: #343434;
}

.mm-page{
    background: white;
}
@media (min-width: 1001px) and (max-width: 2003px) {
    #customisation_content {
        width: 1001px;
        margin: 0 auto;
        margin-top: 5.0vh;
    }
    .customisation_content_cell {
        width: 100%;
        height: 432px;
    }
    .customisation_content_text_left_cell {
        width: 100%;
        height: 245px;
    }
    .customisation_content_text_left_cell div {
        padding-top: 5.0vh;
        padding-right: 5.0vh;
        padding-left: 5.0vh;
    }
    .customisation_content_text_right_cell {
        width: 100%;
        height: auto;
    }
    .customisation_content_text_right_cell div {
        padding-top: 5.0vh;
        padding-left: 5.0vh;
        padding-right: 5.0vh;
    }
}

table#product_specification th {
    width: 120px;
    font-weight: 400;
}

table#product_specification_small {
    margin-top: 80px;
    width: 150px;
    font-family: montserrat-light, Verdana;
    font-size: 12px;
    color: #ffffff;
}
table#product_specification_small th {
    padding-right: 5px;
}

.panel-default>.panel-heading {
    background-color: #fff;
}

.panel-group .panel {
    border-radius: 0;
}

@media (max-width: 320px) {
    #slides .slide .slide-text {
        left: 10px;
        width: 90%;
    }
}

@media (max-width: 320px) {
    #slides .slide .slide-text {
        left: 20px;
    }
    .products-grid > div .details {
        top: 150px;
    }
}
@media (min-width: 321px) and (max-width: 375px) {
    #slides .slide .slide-text {
        left: 20px;
    }
    .products-grid > div .details {
        top: 180px;
    }
    .news-circles {
        padding: 0px;
    }
    .news-circles .news-circle .news-circle-inner .circle-content {
        top: 18px;
    }
    a.ghost {
        margin: 1px 0px;
        padding: 3px 25px;
    }

}

@media (min-width: 376px) and (max-width: 500px) {
    #slides .slide .slide-text {
        left: 20px;
    }
    .products-grid > div .details {
        top: 200px;
    }
    .news-circles {
        padding: 0px;
    }

}

@media (min-width: 501px) and (max-width: 600px) {
    #slides .slide .slide-text {
        left: 20px;
    }
    .products-grid > div .details {
        top: 320px;
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    #slides .slide .slide-text {
        left: 20px;
    }
    .products-grid > div .details {
        top: 180px;
    }
}


/*@media (min-width: 376px) and (max-width: 1024px) {*/
    /*#slides .slide .slide-text {*/
        /*left: 20px;*/
    /*}*/
    /*.products-grid > div .details {*/
        /*top: 180px;*/
    /*}*/
/*}*/

@media (max-width: 400px) {
    #slides .slide .slide-text {
        left: 20px;
    }
}

@media (min-width: 401px) and (max-width: 1024px) {
    #slides .slide .slide-text {
        left: 40px;
    }
}


@media (max-width: 480px) {
    .product-container .product-img {
        width: 270px;
        height: 270px;
        margin: 0 auto;
    }
    header .hamburger {
        margin-left: 3px;
    }
    .product-info p {
        margin-left: auto;
        margin-right: auto;
    }
    .product-price .price {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 481px) and (max-width: 600px) {

    .container {
        width: 100%;
    }
}

@media (min-width: 601px) and (max-width: 767px) {

    .container {
        width: 100%;
    }

    .product-container .product-img {
        width: 450px;
        height: 450px;
        margin: 0 auto;
        float: left;
    }

    .product-info {
        width: 200px;
        margin: 0 auto;
    }

    .product-info p {
        margin: 0 auto;
    }

    .product-price {
        width: auto;
        margin: 0 auto;
    }

    #change-password-form {
        margin: 0 auto;
    }

    #foot-menu-industry {
        height: 220px;
    }

    #foot-menu-range {
        height: 120px;
    }

    #foot-menu-service {
        height: 100px;
    }

    #foot-menu-sustainability {
        height: 170px;
    }

}

@media (min-width: 768px) and  (max-width: 779px) {

    .container {
        width: 690px;
    }
    .checkout-container .row {
        margin-right: 0;
    }
}

@media (min-width: 767px) and  (max-width: 990px) {

    .product-container .product-img {
        width: 450px;
        height: 450px;
        margin: 0 auto;
        float: left;
    }

    #foot-menu-industry {
        height: 200px;
    }

    #foot-menu-range {
        height: 200px;
    }

    #foot-menu-service {
        height: 200px;
    }

    #foot-menu-sustainability {
        height: 200px;
    }

}

@media (min-width: 991px) {

    .product-container .product-img {
        width: 450px;
        height: 450px;
        margin: 0 auto;
        float: left;
    }

    #foot-menu-industry {
        height: 200px;
    }

    #foot-menu-range {
        height: 200px;
    }

    #foot-menu-service {
        height: 200px;
    }

    #foot-menu-sustainability {
        height: 200px;
    }

}

@media (max-width: 1312px) {
    #desktop-menu {
        display: none;
    }

    #nav-desktop {
        display: none;
    }

    #mobile-menu {
        display: inline;
        float: right;
    }
}

@media only screen and (max-width: 900px) {
    .hero.short h1 {
        font-size: 32px;
    }
}

@media (width: 375px) {
    #sticky-footer {
        height: 56px;
        padding-top: 11px;
        padding-right: 5px;
        padding-bottom: 20px;
        font-size: 14px;
        font-weight: 600;
        text-align: center;
    }
}
