/*
Theme name: Van Kooy Tweewielers 2016
Author: B den Hollander | InToto
Author URI: www.intoto.nl
*/
html,body{
    width: 100%;
    height: 100%;
}
body{
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    overflow-x: hidden;

}
body *{
    margin: 0;
    padding: 0;
    line-height: 1.5;
}
h1,h3{
    text-transform: uppercase;
    margin-bottom: 1em;
    font-size: 32px;
    color: #293a66;
}
h2{
    margin: 15px 0 30px;
    font-size: 32px;
    border-bottom: 1px solid #000;
}
h3{
    font-size: 20px;
    line-height: 1.5em;
    overflow: hidden;
}
p{
    margin-bottom: 1em;
}
a{
    color: #333;
    text-decoration: underline;
}
h2 > span{
    position: relative;
    display: inline-block;
}
h2 > span:after{
    content: '';
    position: absolute;
    display: block;
    top: 100%;
    left: 30px;
    width: 0;
    height: 0;
    border-top: 10px solid #333;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
}
.align-left{ float: left; margin: 0 15px 15px 0;}
.align-right{ float: right; margin: 0 0 15px 15px;}
a.more{
    position: relative;
    text-decoration: none;
    color: #999;
    margin: -20px 0 20px 0;
}
a.more:after,
.footer .menu a:after{
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #999;
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
a.more:hover:after,
.footer .menu a:hover:after{
    visibility: visible;
    transform: scaleX(1);
}
.btn-primary,
.btn-secondary,
.btn-default{
    background: #000;
    color: #fff;
    border-radius: 0;
    border: 0;
    text-decoration: none;
    height: 50px;
    line-height: 50px;
    padding: 0 30px;
    text-transform: uppercase;
    font-size: 1em;
    font-weight: bold;
    transition: all .2s;
}
.btn-sm.btn-primary,
.btn-sm.btn-secondary,
.btn-sm.btn-default{
    height: 40px;
    line-height: 40px;
    font-size: .8em;
}
.btn-primary:hover,
.btn-secondary:hover,
.btn-default:hover{
    background-color: #999;
    -webkit-transform:translateY(10%);
    -ms-transform:translateY(10%);
    transform:translateY(10%)
}
.btn-secondary{
    background: #cc9933;
    color: #000;
}
.btn-default{
    background: #ccc;
    color: #000;
}
.vert-center{
    display: -webkit-flex;
    display:         flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
p.not-found{
    line-height: 200px;
    color: #999;
}

/* Top bar */
.topbar{
    height: 100px;
}
.topbar .address-data{
    text-transform: uppercase;
    padding-top: 30px;
    line-height: 20px;
    color: #999;
}
.topbar .mainlogo{

}
.topbar .mainlogo img{
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Navigation */
.mainmenu{
    float: right;
}
.mainmenu > li{
    display: inline-block;
    position: relative;
}
.mainmenu > li > a{
    display: block;
    line-height: 100px;
    text-align: center;
    padding: 0 15px;
    text-decoration: none;
    color: #999;
    transition: all .4s;
}
.mainmenu > li.current-menu-item > a{
    font-weight: bold;
    background-color: #eee;
}
.mainmenu > li:not(.current-menu-item):hover > a{
    background-color: #000;
    color: #fff;
}
ul.sub-menu{
    display: none;
    position: absolute;
    z-index: 1000;
    top: 100%;
    left: 0;
    width: auto;
    background: #000;
}
ul.sub-menu > li{
    display: block;
    width: auto;
    white-space: nowrap;
}
ul.sub-menu > li > a{
    display: block;
    line-height: 60px;
    text-align: left;
    padding: 0 15px;
    text-decoration: none;
    color: #999;
    transition: all .4s;
}
.mainmenu > li:hover > ul.sub-menu{
    display: block;
}
.mainmenu > li:hover > ul.sub-menu > li:hover > a{
    background-color: #6388d3;
    color: #000;
}

/*
Mobile navigation
*/
#mobilenav{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    list-style-type: none;
    background: #111;
}
body.admin-bar #mobilenav{
    padding-top: 60px;
}
#mobilenav > li{
    text-align: right;
    border-top: 1px solid #111;
    border-bottom: 1px solid #000;
}
#mobilenav > li > a {
    /* non-critical appearance styles */
    display: block;
    padding: 0 1em;
    background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%);
    color: white;
    font-size: 1.2em;
    line-height: 40px;
    text-decoration: none;
    transition: color 0.2s, background 0.5s;
}

#mobilenav > li > a:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(0,0,0,0) 0%,rgba(255,255,255,0.15) 100%);
}
#mobilenav li > ul.sub-menu{
    display: block;
    position: relative;
    top: auto;
    left: auto;
}
#mobilenav > li > ul.sub-menu > li > a{
    text-align: right;
    width: 100%;
    line-height: 40px;

}
.site-wrap{
    min-height: 100%;
    min-width: 100%;
    background-color: #fff;
    position: relative;
    top: 0;
    bottom: 100%;
    left: 0;
    /*left: 200px;*/
    z-index: 1;
}
.nav-trigger{
    display: none;
}
label[for="nav-trigger"]{
    display: none;
    position: relative;
    float: right;
    z-index: 2;
    height: 50px;
    width: 30px;
    cursor: pointer;
    line-height: 50px;
    font-size: 20px;
    color: #000;
}
.nav-trigger + label, .site-wrap{
    transition: left 0.2s;
}
.nav-trigger:checked + label{
    left: -215px;
}
.nav-trigger:checked ~ .site-wrap {
    left: -200px;
    box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
}
.toggle-menu{
    display: block;
    text-align: right;
    line-height: 100px;
}

/*
Slideshow
*/
.slick{
    width: 100%;
}
.slick-slider{
    margin-bottom: 0!important;
}
.slick-track, .slick-list{
}
.slick .slide{
    display: none;
    position: relative;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}
.slick .slide img{
    width: 100%;
    height: auto;
}
.slick .slide > div.caption{
    position: absolute;
    transition: all .3s;
    top: 100%;
    min-height: 80px;
    left: 0;
    width: 100%;
    z-index: 2;
    background: rgba(0,0,0,.8);
    color: #fff;
}
.slick .slide .caption.animated{
    transform: translateY(-80px);
}
.slick .slide .caption p{
    line-height: 80px;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}
.slick .slide > div.caption img{
    max-width: 200px;
}

/*
Homepage
*/
.content-home{
    padding-top: 30px;
}

/*
Contact page
*/
#map_canvas{
    height: 600px;
}


/*
Logos
*/
.logo{
    display: table;
    margin-bottom: 30px;
}
.logo a{
    display: table-cell;
    padding: 0 15px;
    border: 1px solid #eee;
    vertical-align: middle;
    height: 170px;
}
.logo a img{
    width: 100%;
    height: auto;
    transition: all .2s;
}
.logo:hover a img{
    transform: scale(1.1);
}

/*
Banners
*/
.banner{
    display: table;
    margin-bottom: 15px;
}
.banner a{
    padding: 15px;
    position: relative;
    display: table-cell;
    height: auto;
    vertical-align: middle;
    border: 1px solid #eee;
    text-decoration: none;
}
.banner a .title{
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 1em;
}
.banner a img{
    margin: 0 auto;
    transition: all .2s;
}
.banner:hover img{
    transform: scale(1.05);
}
.banner:hover{
    box-shadow: 1px 1px 5px #999;
}

/*
Producten
*/
.product{
    display: block;
    height: 300px;
    margin-bottom: 30px;
}
.product a{
    display: block;
    padding: 0 15px;
    border: 1px solid #eee;
    height: 300px;
}
.product a .title{
    background: #293a66;
    color: #fff;
    margin: 0 -15px 15px;
    padding: 0 15px;
    line-height: 30px;
}
.product a img{
    width: 100%;
    height: auto;
    transition: all .2s;
}
.product:hover a img{
    transform: scale(1.05);
}
.product:hover a{
    box-shadow: 1px 1px 5px #999;
}
.single-producten .price{
    display: inline-block;
    background: #293a66;
    padding: 10px 20px;
    color: #fff;
}

/*
Sidebar footer
*/
.sidebar-footer{
    margin-top: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    background: #eee;
}
.sidebar-footer .table td{
    border: none;
}

/*
Widgets
*/
.widget-title{
    font-weight: bold;
}

/*
404
*/
.content-404{
    background: url(images/404.png);
    padding-top: 200px;
    min-height: 500px;
}

/*
Breadcrumbs
*/
#breadcrumbs{
    margin-bottom: 1em;
    font-size: .8em;
    color: #999;
}

/*
Footer
*/
.footer{
    padding: 20px 0;
    background: #273A62;
    color: #fff;
}
.footer ul.parents{
    display: table;
}
.footer ul.parents > li{
    display: table-cell;
    min-height: 200px;
    width: 16.666%;
}
.footer ul.parents > li > ul{
    margin-top: 20px;
}
.footer a{
    position: relative;
    display: inline-block;
    padding: 4px 0;
    color: #fff;
    text-decoration: none;
}

/* Filter form */
.form{
    padding-top: 15px;
    padding-bottom: 15px;
    background: #f1f1f1;
}
.form-control{
    border: 1px solid #000;
    border-radius: 0;
    outline: hidden;
}
.form input[type=checkbox] + label:before{
    display: block;
    float: left;
    margin-right: 10px;
    font-family: "FontAwesome", sans-serif;
    content: "\f096";
}
.form input[type=checkbox]:checked + label:before{
    content: "\f046";
}

/*
============================================
*/
@media screen and (max-width:1200px){
    .slick .slide > div{ top: 100px; }
    .slick .slide h4{ font-size: 40px; }
    .content-artikelen .product .prijs{ padding: 0 30px; }
}


@media screen and (max-width:1024px){
    .slick .slide h4{font-size: 32px;}
    .footer,.content-contact{ font-size:14px; }
}


@media screen and (max-width:767px){
    .topbar{ height: auto; }
    .slick .slide img{ height: 300px;width: auto; }
    .slick .slide > div{top: 20px;}
    .slick .slide h4{font-size: 24px;}
    .slick .btn-primary{font-size: 12px;height:40px;line-height:40px;}
    .content-contact{ font-size: 16px; }
    .content-contact h3{ font-size: 24px; }
    .footer ul.parents{ display:block; }
    .footer ul.parents > li{ display: block; width:50%;float:left;}
    .footer ul.parents > li:nth-child(2n+1){clear:left;}
    .logo a{height:100px;}
}