﻿body {
    font-family: 'degular-text', Arial, Helvetica, sans-serif;
}


/* BOOTSTRAP container extra steps */

@media (min-width: 1350px) {
    .container-wider {
        max-width: 1320px;
        width: 1320px;
    }
}

@media (min-width: 1500px) {
    .container-wider {
        max-width: 1470px;
        width: 1470px;
    }
}

@media (min-width: 1625px) {
    .container-wider {
        max-width: 1595px;
        width: 1595px;
    }
}

@media (min-width: 1750px) {
    .container-wider {
        max-width: 1720px;
        width: 1720px;
    }
}




/* MOBILE */

.show-on-mobile { display: none; }



/* HEADER */

header {
    background: #111;
}

header .container-fluid {
    display: flex;
    align-content: flex-end;
}

header ul {
    list-style: none;
    padding: 10px 0;
    margin: 0 20px 0 0;
    color: #fff;
    font-size: 0.9rem;
    text-align: right;
    display: flex;
    align-items: flex-start;
}

header ul li {
    display: inline;
    margin-right: 25px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
}

header ul li a:hover {
    color: #eee;
    text-decoration: underline;
}

/* LOG OFF */

header ul li#logoff a {
    position: relative;
    display: flex;
    align-items: center;
}

header ul li#logoff a i {
    font-size: 1.1rem;
    margin-right: 5px;
}


/* CART LINK */

header ul li a.to-shopping-cart {
    position: relative;
    display: flex;
    align-items: center;
}

    header ul li a.to-shopping-cart i {
        font-size: 1.1rem;
        margin-right: 5px;
    }

header ul li a.to-shopping-cart .nrofitems {
    background: #555;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 500;
    border-radius: 50%;
    text-align: center;
    line-height: 22px;
    width: 22px;
    height: 22px;
    display: inline-block;
    margin-left: 5px;
}

/* PRICE TOGGLE LINK */

header ul li a.toggleprices {
    position: relative;
    display: flex;
    align-items: center;    
}

header ul li a.toggleprices i {
    font-size: 1.2rem;
    margin-right: 5px;
}

/*
SK 07-03-2023 - this is the two icons in html solution - we ended up not using it
    header ul li a.toggleprices i.icon-eye-closed {
        display: none;
    }
*/


header ul li a:hover {
    text-decoration: none !important;
}


/* LANGUAGES */

header .container-fluid {
    padding-right: 0;
}

header ul {
    margin-right: 0;
}

header ul li a#toggle-languages {
    text-transform: uppercase;
}

header ul li {
    display: inline-block;
}

header ul li#language-switch {
    position: relative;
    width: 100px;
    margin-right: unset;
    text-align: center;
}

header ul li#language-switch a {
    position: relative;
}

header ul li#language-switch a:hover, header ul li#language-switch a:focus {
    text-decoration: none;
}

header ul li#language-switch a i.fa {
    position: absolute;
    top: 5px;
    right: -12px;
    font-size: 10px;
}

header ul li#language-switch ul {
    display: none;
    position: absolute;
    right: 0px;
    top: 33px;
    z-index: 1000;
    width: 100px;
    padding: 0;
    margin: 0;
    list-style: none;
}

header ul li#language-switch ul li {
    margin: 0;
    width: 100%;
    display: block;
    text-align: center;
}

header ul li#language-switch ul li a {
    background: #aaa;
    line-height: 2rem;
    display: block;
    border-bottom: 1px solid #999;
    text-decoration: none;
    width: 100%;
}

header ul li#language-switch ul li a:hover, header ul li#language-switch ul li a:focus {
    text-decoration: none;
    background: #777;
}


/* NAVBAR */

nav.navbar {
    background: #f8f0ed;
    border-bottom: 1px solid #888;
    padding: 0;
    height: 100px;
}

nav.navbar .container-fluid {
    padding-right: 0;
}

nav.navbar a.navbar-brand img {
    max-width: 500px;
    margin: 0 0 0 10px;
}

nav.navbar a.navbar-brand img.with-payoff {
    display: block;
}
nav.navbar a.navbar-brand img.without-payoff {
    display: none;
}

nav.navbar #navbarNav ul {
    height: 100px;
    margin: 0;
    padding: 0;
    position: relative;
}

nav.navbar ul li {
    margin: 0 35px 0 0;
    display: flex;
    align-items: center;
}

nav.navbar ul li a.nav-link {
    font-size: 1.1rem;
    padding: 0 !important;
    color: #000 !important;
}

nav.navbar ul li a.nav-link:hover {
    color: #222 !important;
}

nav.navbar ul li.active a.nav-link {
    font-weight: 600;
    position: relative;
    border-bottom: 1px solid #000;
}

nav.navbar ul li a#toggle-search {
    width: 100%;
}


    


/* SEARCH toggle */

nav.navbar ul li.nav-item-search {
    border-left: 1px solid #111;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100px;
}

nav.navbar ul li.nav-item-search i.fa-times {
    display: none;
}

nav.navbar.search-active ul li.nav-item-search i.fa-search {
    display: none;
}

nav.navbar.search-active ul li.nav-item-search i.fa-times {
    display: inline-block;
}

nav.navbar.search-active ul li#searchcontainer {
    display: block;
}

nav.navbar.search-active ul li.nav-item:not(.nav-item-search) a.nav-link {
    opacity: 0;
}

nav.navbar ul li#searchcontainer {
    display: none;
    position: absolute;
    top: 30px;
    right: 90px;
    width: 100%;
    max-width: 400px;
}

/* SEARCH form */

nav.navbar ul li#searchcontainer form {
    position: relative;
}

nav.navbar ul li#searchcontainer form input {
    width: 100%;
    position: relative;
}

nav.navbar ul li#searchcontainer form button#searchButton {
    position: absolute;
    background: unset;
    border: unset;
    top: 7px;
    right: 10px;
}

/* CONTENT WRAPPER */

.padding-top-and-bottom {
    padding: 50px 0 100px 0;
}

.content-wrapper-minimal-height {
    min-height: 600px;
}

.content-wrapper-beige {
    background: #f0e6e1;
}

.content-wrapper-beige-light {
    background: #f7f0ed;
}

.content-wrapper-pink {
    background: #e3c2da;
}

.content-wrapper-yellow {
    background: #efe950;
}

.indent {
    padding-left: 40px;
}

.padding-top {
    padding-top: 35px;
}

.nopadding {
    padding: 0;
}

.row.row-no-margins {
    margin: 0 !important;
    padding: 0 !important;
}

    .row.row-no-margins .col-generic {
        margin: 0 !important;
        padding: 0 !important;
    }


/* SPECIALS */


/* h1 h2 h3 */

h1 { 
    font-size: 4.7rem; 
    font-weight: 300; 
    letter-spacing: -0.1rem; 
    line-height: 5rem; 
    margin-bottom: 25px;
    margin-left: -5px;
}

h1.nomargin {
    margin-bottom: 0;
}

h1 span {
    color: rgba(0,0,0,0.3);
}

h2 {
    font-size: 3rem;
}

/* BUTTONS */

.btn {
    border-radius: unset;
    padding: 7px 30px;
}

.btn.btn-transparent {
    border: 1px solid #000;
}

.btn.btn-dark {
    color: #fff !important;
}

.btn.btn-default {
    border: 1px solid #ccc;
    background: #f7f0ed;
}

.btn.btn-back {
    color: #aaa;
}

.btn-float-right {
    float: right;
}

.btn.btn-with-icon-right i.fa {
    margin-left: 5px;
    font-size: 0.9rem;
}

.btn.btn-with-icon-left i.fa {
    margin-right: 5px;
    font-size: 0.9rem;
}

.btn-stock-notification-mail {
    text-align: center;
    padding: 1px 3px;
}

.btn-stock-notification-mail i {
    display: inline;
    margin: 0 !important;
}


    /* LINKS */

    body .content-wrapper .bodycopy a {
    color: #000;
}


/* ACCOUNT */

#customercode .form-group, #password .form-group  {
    margin-bottom: 5px;
}

#klantnummbervoorbeeld, #passwordminimumsix {
    margin-bottom: 15px;
    opacity: 0.7;
}

#klantnummbervoorbeeld a {
    color: #000;
}

.form-group {
    margin-bottom: 15px;
}

p.wachtwoordvergeten  {
    padding-top: 5px;
}

p.wachtwoordvergeten a {
    color: #000;
}

#accountrequest input#CustomerCode {
    width: 180px;
}

#accountrequest input#Zipcode {
    width: 150px;
}

#accountrequest input#Password, #accountrequest input#PasswordCheck {
    width: 300px;
}


/* HOME shopmessage */
#shopmessage {
    background: #000;
    color: #fff;
}

#shopmessage #icon {
    float: left;
    width: 80px;
    text-align: center;
    padding-top: 15px;
    
}

    #shopmessage #icon span {
        display: inline-block;
        background: #efe950;
        color: #000;
        border-radius: 50%;
        width: 50px;
        font-size: 2.2rem;
        text-align: center;
        line-height: 50px;
        height: 50px;
    }

    #shopmessage #text {
        float: left;
        min-height: 80px;
        border-left: 1px solid #ddd;
        padding: 0 25px;
    }

#shopmessage #text h2   {
    font-size: 1rem;
    margin: 18px 0 0 0;
}

/* HOME banner */

#carouselHomeBanner {
    background: #e3c2da;
}

#carouselHomeBanner .carousel-item.greyblue     { background: #6d8c9f; }
#carouselHomeBanner .carousel-item.yellow       { background: #efe950; }
#carouselHomeBanner .carousel-item.pink         { background: #e3c2da; }
#carouselHomeBanner .carousel-item.orangered    { background: #fc4913; }


#carouselHomeBanner .caption {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 10% 0 10%;
}

#carouselHomeBanner .caption h4 {
    margin-bottom: 25px;
}

#carouselHomeBanner .custom-prev-next {
    position: absolute;
    bottom: 0;
    width: 100%;
    justify-content: center;
    display: flex;
    pointer-events: none;
}

    #carouselHomeBanner .custom-prev-next button {
        width: 45px;
        height: 45px;
        line-height: 45px;
        position: relative;
        opacity: 1;
        color: #000;
        border: 1px solid #444;
        display: inline;
        font-size: 1.3rem;
        pointer-events: all;
    }

#carouselHomeBanner .custom-prev-next button:nth-child(2) {
    background: #fff;
    border-left: none;
}

/* HOME highlights */

#producthighlights {
    padding-bottom: 35px;
    background: #f7f0ed;
    padding-left: 4%;
    padding-right: 4%;
}

#producthighlights .row-heading h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 2.8rem;
}

#producthighlights .row-articles-without-padding {
    padding: 15px;
}

#producthighlights .col-md-3 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#producthighlights article {
    position: relative;
    border: 1px solid #000;
    border-left: unset;
}

    #producthighlights article::after {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: linear-gradient(to top,#000 0,transparent 75%);
        opacity: 0.4;
        z-index: 2;
    }



#producthighlights article img {
    width: 100%;
    height: auto;
}

#producthighlights article .caption {
    position: absolute;
    z-index: 10;
    bottom: 0;
    color: #fff;
    padding: 25px;
}

#producthighlights article .caption h4 {
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
    margin: 0;
}

#producthighlights article .caption h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

#producthighlights article .caption p {
    margin-bottom: 0;
}


/* JUMP BOARD */

#jumpboard {
    background: #f7f0ed;
    border-top: 1px solid #000;
}

#jumpboard .item {
    position: relative;
    width: 50%;
    display: block;
    float: left;
    border-bottom: 1px solid #000;
}

#jumpboard .item:nth-child(even) {
    border-left: 1px solid #000;
}

#jumpboard a {
    display: block;
    font-size: 4rem;
    font-weight: 400;
    text-decoration: none;
    padding: 15px 15px 15px 10%;
    letter-spacing: -0.1rem;
    color: #000;
    position: relative;
}

#jumpboard a:hover {
    background: #111;
    color: #fff;
}

#jumpboard a span {
    font-size: 1.2rem;
    letter-spacing: 0.001rem;
}

#jumpboard a i {
    position: absolute;
    top: 40px;
    font-size: 3rem;
    right: 45px;
}

/* HOME showroom */

#showroom {
    background: #efe950;
    padding: 0;
    margin: 0;
}

#showroom .image-scalable {
    background: url('/Images-Restyle/home-showroom-image-02.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    min-height: 325px;
}

    #showroom .text-vertically-centered {
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

#showroom .caption {
    padding: 25px;
    
}

#showroom .caption h4 {
    font-size: 1.2rem;
    font-weight: 400;
}

#showroom .caption h2 {
    font-size: 3rem;
    font-weight: 400;
    margin: 0 0 20px 0;
}

/* CONTACT */

#schakel {
    background: #efe950;
    border-top: 1px solid #222;
    padding: 0;
    margin: 0;
}

#schakel .caption {
    padding: 10%;
}

#schakel .caption h3 {
    margin-bottom: 15px;    
    font-weight: 400;
    font-size: 2.5rem;
}

#schakel ul.checklist {
    margin: 10px 0 15px 0;
    padding: 0;
    list-style: none;
}

#schakel ul.checklist li {
    margin-bottom: 8px;
}

#schakel ul.checklist li i {
    margin-right: 5px;
}

#schakel .image-scalable {
    background-image: url('/Images-Restyle/contact-image-03.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 100% 0;
    padding: 0;
    min-height: 325px;
}



/* CATALOGUE viewmode */
#numberofresults-and-viewmode {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #777;
}

#numberofresults-and-viewmode.viewmode-list {
    margin-bottom: 0;
}

#numberofresults-and-viewmode #numberofresults {
    color: #aaa;
    padding: 10px 0 0 0;
}

#numberofresults-and-viewmode ul#viewmode {
    list-style: none;
    margin: 0;
    padding: 0;
    display: inline-block;
}

#numberofresults-and-viewmode ul#viewmode li {
    float: left;
    margin: 0 0 0 10px;
}

#numberofresults-and-viewmode ul#viewmode li a {
    background: #eee;
    color: #000;
    padding: 5px 7px;
}

#numberofresults-and-viewmode ul#viewmode li.active a {
    color: #fff;
    background: #222;
} 


/* CATALOGUE intro */

.catalogue-message {
    margin: 0 0 25px 0;
}

/* CATALOGUE filters */

.filter-container {
    padding-top: 20px;
}

.filter-container h2 {
    font-size: 2rem;
    font-weight: 400;
}

.filter-container ul {
    margin: 0 0 25px 0;
    list-style: none;
    padding: 0;
}

.filter-container ul li {
    margin-bottom: 2px;
}

.filter-container ul li a {
    color: #555;
    text-decoration: none;
}

.filter-container ul li.active a {
    font-weight: bold;
    color: #000;
}

.filter-container ul li span.nrofresults {
    color: #aaa;
}


/* CATALOGUE blocks */

article.block {
    margin-bottom: 25px;
    border: 1px solid #aaa;
}

article.block .image a {
    display: block;
}

article.block .image img {
    width: 100%;
    height: auto;
}

article.block.brand-block {
    border-color: #000;
    margin-left: -1px;
}

article.block.brand-block .caption-media {
    display: flex;
    align-items: center;
}

article.block.brand-block .caption {
    background: #fff;
}

article.block.brand-block .caption img {
    height: 60px;
    margin-top: 6px;
    width: auto;
}

article.block.brand-block .caption a.arrow {
    display: block;
    float: right;
    background: #000;
    color: #fff;
    width: 75px;
    text-align: center;
    line-height: 75px;
    text-decoration: none;
    font-size: 2rem;
}

article.block.brand-block .caption h3 {
    float: left;
    margin: 0 0 7px 15px;
    font-weight: 400;
    width: calc(100% - 75px);
}



/* CATALOGUE tiles */

.tiles {
    
}

.tile {
    float: left;
    width: 330px;
    border: 1px solid #000;
    margin: 0 20px 30px 0;
    overflow: hidden;
    position: relative;
}

.tile:hover {
    border: 1px solid #222;
}

.tile.referrer, .tile.referrer .price-and-action {
    border-color: #ea5011;
}
.tile.referrer .price-and-action a.arrow {
    background: #ea5011;
}

.tile .image {
    width: 100%;
    height: 250px;
    text-align: center;
    position: relative;
}

.tile .image a {
    display: block;
    height: 100%;
    padding-top: 10px;
}

.tile .image img {
    height: 100%;
    width: auto;
}

.tile .text {
    padding: 15px 15px 10px 15px;
}

.tile .text h3 {
    font-weight: 500;
    letter-spacing: -0.05rem;
}

.tile .text h3 a {
    color: #000;
}

.tile .text a {
    text-decoration: none;
}

.tile .price-and-action {
    border-top: 1px solid #777;
}

.tile:hover .price-and-action {
    border-color: #ccc;
}

.tile .price-and-action {
    display: flex;
    align-items: center;
}

.tile .price-and-action .price {
    float: left;
    width: calc(100% - 55px);
    padding-left: 20px;
    font-size: 1.2rem;
}

.tile .price-and-action span.vanprijs {
    text-decoration: line-through;
    color: #999;
    font-size: 0.8rem;
}

.tile .price-and-action a.arrow {
    float: left;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: #000;
    font-size: 1.6rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.tile:hover .price-and-action a.arrow {
    background: #222;
}

/* RIBBON */

.ribbon-overlay {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
}

h5.ribbon {
    font-size: 1rem;
    line-height: 1.6rem;
    margin: 0;
    background: rebeccapurple;
    color: white;
    padding: 0;
    position: absolute;
    text-align: center;
    top: 46px;
    left: -6px;
    width: 75px;
    transform: translateX(0%) translateY(0%) rotate(-45deg);
    transform-origin: top left;
    pointer-events: none;
}

.ribbon:before, .ribbon:after {
    content: '';
    position: absolute;
    top: 0;
    margin: 0 -1px; /* tweak */
    width: 100%;
    height: 100%;
    background: rebeccapurple;
}

.ribbon:before {
    right: 100%;
}

.ribbon:after {
    left: 100%;
}

.tile .image h5.ribbon:nth-child(2), #mainimage h5.ribbon:nth-child(2), td.image h5.ribbon:nth-child(2) {
    top: 65px;
    left: 15px;
}

h5.ribbon.actie, h5.ribbon.actie:before, h5.ribbon.actie:after                      { background: #EFE950; color: #000; }
h5.ribbon.new, h5.ribbon.new:before, h5.ribbon.new:after                            { background: #E3C2DA; color: #000; }
h5.ribbon.outlet, h5.ribbon.outlet:before, h5.ribbon.outlet:after                   { background: #e3640a; color: #fff; }
h5.ribbon.presale, h5.ribbon.presale:before, h5.ribbon.presale:after                { background: #6D8C9F; color: #fff; }
h5.ribbon.presale-new, h5.ribbon.presale-new:before, h5.ribbon.presale-new:after    { background: #6D8C9F; color: #fff; }
h5.ribbon.promo, h5.ribbon.promo:before, h5.ribbon.promo:after                      { background: #FC4913; color: #fff; }
h5.ribbon.premium, h5.ribbon.premium:before, h5.ribbon.premium:after                { background: #F7F0ED; color: #000; }

span.ribbonlabel            { padding: 0 5px; font-size: 0.8rem; }
span.ribbonlabel.outlet     { background: #e3640a; color: #fff; } /* oranje */
span.ribbonlabel.presale    { background: #6D8C9f; color: #fff; } /* grijs blauw */
span.ribbonlabel.actie      { background: #EFE950; color: #000; } /* geel */
span.ribbonlabel.premium    { background: #e3c2da; color: #000; } 

/* CATALOGUE list-table mode */

table.products                          { width: 100%; }

table.products tr th                    { font-weight: normal; border-bottom: 1px solid #777; }
table.products tr th.price              { padding-left: 10px; border-left: 1px solid #777; } 

table.products tr td.image              { width: 100px; text-align: center; overflow: hidden; }
table.products tr td.name               { width: calc(45% - 100px); } 
table.products tr td.colors             { width: 30%; } 
table.products tr td.price-and-button   { width: 25%; padding: 10px 0 0 10px; border-left: 1px solid #777; } 

table.products tr td {
    border-top: 1px solid #777;
    vertical-align: top;
    padding: 10px 10px 10px 0;
}

    table.products tr td.referrer a.btn {
        background: #FC4913;
    }

table.products tr td.image {
    position: relative;
}

table.products tr td a {
    text-decoration: none;
    color: #000;
}

table.products tr td h3 {
    font-weight: 600;
}

table.products tr td.price-and-button a.btn {
   float: right;
   padding: 8px 15px;
   text-align: center;
}

table.products tr td a.toggle-productdata { display: flex; align-items: center; }

table.products tr td a.toggle-productdata i { font-size: 1.4rem; margin-right: 5px; }

table.products tr td a.toggle-productdata i.icon-minus-circle         { display: none; }
table.products tr td a.toggle-productdata.open i.icon-minus-circle    { display: inline; }

table.products tr td a.toggle-productdata i.icon-plus-circle         { display: inline; }
table.products tr td a.toggle-productdata.open i.icon-plus-circle    { display: none; }

table.products tr.productdata-container td {
    padding: 0;
    border-top: unset;
}

table.products tr td div.productdata {
    background: #f7f0ed;
    display: none; 
    width: calc(100% - 2px);
}


table.products tr td div.productdata table tr td {
    vertical-align: top;
    border-top: unset;
    padding: 20px 10px 20px 0px;
}

table.products tr td div.productdata table tr td.omschrijving {
    width: 45%;
}

table.products tr td div.productdata table tr td.omschrijving .wrapper {
    padding: 0 20px 0 20px;
}

table.products tr td div.productdata .specs {
    width: 100%;
}

table.products tr td div.productdata .specs .key {
    float: left;
    font-weight: 600;
    width: calc(50% - 25px);
} 

table.products tr td div.productdata .specs .value {
    float: left;
    width: 50%;
    padding-left: 25px;
} 

/* PRODUCT DETAIL */

#productdetail .container-fluid {
    padding: 0;
}

/* LEFT COLUMN */

#productdetail #leftside #mainimage {
    padding: 45px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#productdetail #leftside #mainimage a#zoomlink {
    display: block;
    margin: 0 0 25px 0;
}

#productdetail #leftside #mainimage a#zoomlink:focus {
    border: none;
}

#productdetail #leftside #thumbs {
    text-align: center;
    padding-bottom: 15px;
}

#productdetail #leftside #thumbs a.extra-image  {
    display: none;
    height: 60px;
    width: 60px;
    border: 1px solid #ddd;
    border-radius: 3px;
    padding: 5px;
    margin: 0 0 8px 6px;   
}

#productdetail #leftside #thumbs a.extra-image img {
    width: 100%;
}

#productdetail #leftside #thumbs a.extra-image.active {
    display: inline-block;
}

#productdetail #leftside #productdata {
    padding: 35px;
    background: #f7f0ed;
}

#productdetail #leftside #productdata table tr th {
    padding-right: 25px;
    font-weight: 600;
}

#productdetail #leftside #productdata table tr td a {
    color: #000;
}

#productdetail #leftside #productomschrijving {
    padding: 45px;
}

/* RIGHT COLUMN */

#productdetail #rightside {
    border-left: 1px solid #111;

}

#productdetail #rightside #name-and-colors {
    padding: 45px 45px 0 45px;
}

#productdetail #rightside h1 {
    font-size: 3rem;
    line-height: 3rem;
    text-transform: uppercase;
    font-weight: 500;
}

#productdetail #rightside #colors {
    margin: 0 0 25px 0;
}

#productdetail #rightside h1 span#colorDescription, #productdetail #rightside h1 span#kleurnummer {
    color: #000;
    font-size: 2.5rem;
    font-weight: 300;
}

#productdetail #rightside a.colorSwitcher {
    display: block;
    float: left;
    text-align: center;
    text-decoration: none;
    width: 100px;
    min-height: 160px;
    margin: 0 20px 0px 0;
}

#productdetail #rightside a.colorSwitcher .image {
     border: 1px solid #aaa;
     padding: 25px 20px;
}

#productdetail #rightside a.colorSwitcher .caption {
    padding: 10px 0 0;
    border: 1px solid #fff;
    text-align: center;
}

#productdetail #rightside a.colorSwitcher .caption h3 {
    color: #000;
    text-transform: uppercase;
    font-size: 0.8rem;
}

#productdetail #rightside a.colorSwitcher .caption h4 {
    color: #000;
    font-size: 1rem;
}


#productdetail #rightside table tr td .stocknotificationactive i.fa-envelope {
    color: #ccc;
}

    #productdetail #rightside table tr td .stocknotificationactive i.fa-check {
        color: green
    }



/* PRODUCT detail peetsing */

ul.catalogue-pagination {
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

ul.catalogue-pagination li {
    display: inline-block;
    border: 1px solid #ddd;
    width: 30px;
    text-align: center;
    margin: 0 3px 0 0;
}

ul.catalogue-pagination li.previous, ul.catalogue-pagination li.next {
    border: unset;
}

ul.catalogue-pagination li a {
    color: #111;
    font-size: 0.9rem;
    text-decoration: none;
    display: block;
}

ul.catalogue-pagination li.active a {
    background: #000;
    color: #fff;
}

ul.catalogue-pagination li a:hover {
    background: #f7f0ed;
}


/* PRODUCT DETAIL pakketten */

#productdetail #rightside #pakketten {
    margin: 0 0 25px 0;
}

#productdetail #rightside #pakketten .panel {
   border: 1px solid #ccc;
   border-bottom: unset;
}

#productdetail #rightside #pakketten .panel h3 {
    font-size: 1rem;
    margin: 0;
    background: #f7f0ed;
    padding: 10px;
}

#productdetail #rightside #pakketten .panel .assortment {
    font-size: 1rem;
    padding: 5px 10px;
    border-bottom: 1px solid #ccc;
}

/* PRODUCT DETAIL order row table */

#productdetail #rightside table {
    margin-bottom: 25px;
}

#productdetail #rightside table thead th {
    font-weight: 400;
    border-bottom: 1px solid #000;
}

#productdetail #rightside table tbody {
    border: unset !important;
}

#productdetail #rightside table tr th:first-child, #productdetail #rightside table tr td:first-child {
    padding-left: 45px;
    width: 20%;
}

#productdetail #rightside table tr td {
    vertical-align: middle;
    font-size: 1.1rem;
}

#productdetail #rightside table tr td.stock span {
   margin-right: 3px;
}

#productdetail #rightside table tr td.stock i {
    margin-right: 5px;
}

    #productdetail #rightside table tr td.stock .expexted-date-and-notifier {
        display: flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
        #productdetail #rightside table tr td.stock .expexted-date-and-notifier .expected {
            display: inline-block;
        }
        #productdetail #rightside table tr td.stock .expexted-date-and-notifier .btn-stock-notification-mail {
            display: inline-block;
            flex-shrink: 0;
            margin-right: 10px;
        }
 


#productdetail #rightside p.submitbutton {
    text-align: right;
    padding-right: 45px;
    margin-bottom: 100px;
}




.histock {
    color: green;
}

.lowstock {
    color: #ff6600;
}

.nostock {
    color: #cc0000;
}


/* ORDERS */

ul.nav-tabs {
    border-color: #777;
}

ul.nav-tabs li button.nav-link {
    border-radius: unset;
    border-color: #ccc;
    border-bottom-color: #777;
    color: #999;
}

ul.nav-tabs li button.nav-link.active {
    background: #f7f0ed;
    border-color: #777;
    color: #111;
}

.tab-content table tr th {
    background: #f7f0ed;
    font-weight: normal;
}

.tab-content table tr td a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
}

/* ORDERS table */

table#orders tbody {
    border-top: unset;
}

table#orders tr th.orderdate, table#orders tr td.orderdate  {
    width: 220px;
}
 
table#orders tr td.quantity {
    text-align: right;
    width: 150px;
    padding-right: 100px;
}

table#orders tr td.totalprice {
    text-align: right;
    width: 150px;
    padding-right: 50px;
}

/* ORDERS detail */

#orderdetails {
    background: #f7f0ed;
    padding: 15px;
    margin-bottom: 25px;
}



/* CART */


#cart-details {
    background: #f7f0ed;
    padding: 15px 15px 30px 15px;
    margin-bottom: 25px;
}

#cart-details label {
    font-size: 1.1rem;
}

#cart-details #reference {
    margin-bottom: 20px;
}

#cart-details input, #cart-details textarea {
    border: 1px solid #ddd;
    padding: 5px;
}

#cart-details textarea#Order_CustomerComment {
    width: 90%;
    height: 100px;
}

#message-order-locked {
    background: #f4dada; 
    border: 2px dotted #cc0000; 
    padding: 10px; 
    margin-bottom: 15px;
    color:#cc0000;
}

/* CART table */


table#cart-full tr th {
    font-weight: normal;
    /*border-top: 1px solid #777;*/
}

table#cart-full tr td a {
    color: #000;
}

table#cart-full tr th.amount, table#cart-full tr td.amount, table#cart-full tr td.total {
    text-align: right;
}

table#cart-full tr td div.mobile-orderline {
    display: none;
}

table#cart-full tr td.image {
    width: 80px;
}

table#cart-full tr td .label {
    font-size: 11px; 
    text-transform: uppercase;
}

table#cart-full tr td span.label.outlet {
    color:#f65109;
}
table#cart-full tr td span.label.presale {
    color:#08bde6;
}
table#cart-full tr td span.label.actie {
    color:#c3a022;
}

table#cart-full tr td.action {
    text-align: right;
    width: 50px;
}

table#cart-full tr td button.deleteCartItem {
    padding: 2px 5px;
    line-height: 20px;
}

table#cart-full tr.old-product td {
    background: #fae2e2;
}

table#cart-full tr.old-product td span.warning {
    color: #cc0000;
}


#discount input {
    width: 30px;
    -moz-appearance: textfield; /* Firefox */
}

#discount input::-webkit-outer-spin-button,
#discount input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

/* CART - TERMS */

#termsconditions, #old-items-in-cart {
    text-align: right;
    padding: 0 50px 20px 0;
}

#termsconditions a {
    color: #000;
}

#order-buttons #submitbutton {
    text-align: right;
}

#order-buttons #submitbutton .btn {
    margin-right: 50px;
}

/* CART extras */

table tr#kortingen-zelfdedag td {
    text-align: right;
}


/* QUANTITY input */

input.input-mini {
    width: 50px;
    font-size: 0.9rem;
    font-family: 'degular-text', Arial, Helvetica, sans-serif !important;
    border: unset;
}

input.input-mini:focus  { box-shadow: none !important; outline: 0 none; }

.quantity-picker .ui-spinner {
    border-radius: unset !important;
    border-color: #222;
}

.quantity-picker .ui-spinner .ui-button-icon-only .ui-icon, .quantity .ui-spinner .ui-button-icon-only .ui-icon {
    margin-left: unset;
}

a.ui-spinner-button {
    cursor: pointer;
    border-left: 1px solid #222;
    width: 30px;
    text-align: center;
    text-decoration: none;
    border-radius: unset;
}

span.ui-spinner a.ui-spinner-up {
    background: #ddd;   
}

    span.ui-spinner a.ui-spinner-up::after {
        content: "\e912";
        font-family: 'icomoon';
        display: inline-block;
        margin-top: 3px;
    }

span.ui-spinner a.ui-spinner-down {
    background: #eee;
}

    span.ui-spinner a.ui-spinner-down::after {
        content: "\e903";
        font-family: 'icomoon';
        display: inline-block;
        margin-top: 3px;
    }


/* AUTOCOMPLETE */

ul.ui-autocomplete {
    background: #fff;
    display: none;
}

    ul.ui-autocomplete li.ui-menu-item {
        padding: 0;
        margin: 0;
    }

        ul.ui-autocomplete li.ui-menu-item:hover, ul.ui-autocomplete li.ui-state-focus {
            background: #eee;
            border: none;
        }

        ul.ui-autocomplete li.ui-menu-item a {
            display: block;
            margin-top: 0 !important;
        }

    ul.ui-autocomplete li div.searchResult {
        border-bottom: 1px solid #eee;
        height: 65px;
    }

    ul.ui-autocomplete li div.searchResult:hover {
        background: #eee;
        border: unset;
    }

        ul.ui-autocomplete li div.searchResult .image-small {
            float: left;
            width: 50px;
            height: 50px;
            margin: 4px;
            position: relative;
            background-color: #fff;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: 50% 50%;
        }

            ul.ui-autocomplete li div.searchResult .image-small img {
                display: block;
                height: 50px;
                width: 50px;
            }

        ul.ui-autocomplete li div.searchResult .text {
            float: left;
            font-family: 'degular-text', Arial, Helvetica, sans-serif;
            width: 240px;
            padding-left: 15px;
            padding-top: 10px;
            line-height: 1.1em;
        }

            ul.ui-autocomplete li div.searchResult .text .title {
                margin-right: 10px;
            }

            ul.ui-autocomplete li div.searchResult:hover .text {
                background: #eee;
                color: #000;
            }

        ul.ui-autocomplete li div.searchResult .code {
            color: #888;
            font-size: 0.8em;
        }



/* PAYMENT Methods */

#paymentbanks {
    text-align: right;
    padding-right: 50px;
    margin-bottom: 20px;
}

#paymentbanks h5 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.payment-method {
    background: #fafafa;
   display: inline-block;
   border: 1px solid #ddd;
   border-radius: 4px;
   padding: 15px;
   margin: 0 0 10px 10px;
}

.payment-method img.payment-logo {
    height: 50px;
    margin-left: 5px;
}


/* IDEAL select */

.payment-method-ideal .ideal-select {
    display: none;
    width: 300px;
    height: 40px;
    margin-left: 25px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    cursor: pointer;
    text-align: left;
}

.payment-method-ideal .ideal-select.active {
    border-top-color: transparent;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    position: relative;
}

    .ideal-select ul.banks li {
        text-align: left;
    }

        .ideal-select .bank-logo {
            display: inline-block;
            width: 25px;
            margin: 7.5px;
            margin-top: 5.5px;
        }

        .ideal-select .bank-name {
            display: inline-block;
            line-height: 39px;
            margin: 0;
            width: 200px;
            margin-top: -2px;
            text-align: left;
        }

        .ideal-select .chevron {
            float: right;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            color: #888;
            margin-top: -2px;
        }

        .ideal-select.active .chevron {
            -webkit-transform: rotate(180deg);
            -moz-transform: rotate(180deg);
            transform: rotate(180deg);
        }

    

.ideal-select.active ul.banks {
    display: block;
}

.ideal-select ul.banks {
    position: absolute;
    text-align: left;
    display: none;
    overflow: hidden;
    width: 300px;
    padding-left: 0;
    margin: 0 0 -1px -1px;
    bottom: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

    .ideal-select .banks .bank-entry {
        display: block;
        width: 100%;
        height: 39px;
        border-bottom: 1px solid #ccc;
    }

        .ideal-select .banks .bank-entry:hover {
            background-color: #f5f5f5;
        }

        .ideal-select .banks .bank-entry:last-child {
            border-bottom-color: transparent;
        }




/* CONTACT */

#contact form {
    margin: 0 0 50px 0;
}

#contact form input.form-control, #contact form textarea {
    border: unset;
    border-radius: unset;
}

#form-group-aanhef div label {
    background: #fff; 
    padding: 5px 15px;
    margin-right: 15px;
}


/* FORMS */

.required {
    color: #cc0000;
    margin-left: 5px;
}

.field-validation-, .error { 
    color: #cc0000;
}

.field-validation-error span {
    display: block;
}

.field-validation-valid {
    display: none;
}

.input-validation-error {
    border: 1px solid #cc0000;
    background-color: #ffc9c9;
}

.validation-summary-errors {
    font-weight: bold;
    color: #cc0000;
}

.field-validation-error {
    color: #cc0000;
}

.validation-summary-valid {
    display: none;
}

form input.small {
    width: 100px;
}

form input.medium {
    width: 200px;
}

form input.mediumlarge {
    width: 300px;
}

form .form-group.photos {
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
}

form .form-group.photos .item {
    width: 33%;
    float: left;
    
}

    form .form-group.photos .item input {
        width: 90%;
        overflow: hidden;
    }


input.custom-file-input {
    display: block;
    width: 100%;
    margin: 0 0 5px 0;
    color: #999;
}

    input.custom-file-input.valid {
        color: green;
        font-weight: bold;
    }


/* RETURNs */

#returns form input.input-validation-error {
    background: #f2e1e1;
    border: 1px solid #d99494;
}

#returns form img.preview {
    max-width: 150px;
    margin-top: 8px;
    display: none;
}



/* FOOTER */
footer {
    background: #6d8c9f;
    background-image: url('/Images-Restyle/footer-retro-pattern2.png');
    background-repeat: no-repeat;
    background-position: 100% 0;
    background-size: contain;
    padding: 45px 0;
}

footer .logo-and-credits {
    position: relative;
    padding-left: 15px;
    display: flex;
    align-items: center;
}

footer .logo-and-credits img {
    width: 125px;   
}

footer .logo-and-credits .credits {
    padding-left: 25px;
}

footer a {
    color: #333;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

footer .divider {
   opacity: 0.3;
   padding: 0 5px;
}