/****** FILE: themes/martijnmtb/css/form.css *****/
/** ----------------------------------------------------------
 *
 * This stylesheet includes both generic form styles and 
 *    additional form styles for the User Defined Form Module.
 *
 ** ------------------------------------------------------- */


/* GENERIC FORMS
----------------------------------------------- */

div.field {
    margin: 10px 0 15px;
}
fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}
form label {
    margin-bottom: 5px;
}
    form label.left {
        display: block;
        font-weight: bold;
    }
    form label.right {
        font-size: 12px;
        color: #888;
    }

form input.text,
form textarea,
form .textajaxuniquetext,   /* Not sure if this is used? */
form select {
    width: 100%;
    padding: 6px 5px;
    font-size: 15px;
    background-color: #fff;
    border: 1px solid #dad9d9;
}
    .ie7 form select { width: 400px; } /* fix for ie7's rendering of max-width property on select input */

form input.text:focus,
form textarea:focus,
form .textajaxuniquetext:focus,
form select:focus {
    outline:none;
}
form input[disabled], form textarea[disabled] {
    background-color: #f7f7f7;
    border: 1px solid #dad9d9;
}
textarea {
    resize: vertical; /* forces text area to be resized vertically only */
}


/* Radio and Checkbox */
.field .checkbox, .field .radio {
    float: left; 
    width: 13px; 
    height: 13px; 
    margin-right: 6px; 
    margin-top: 3px;
    padding: 0;
}
    .checkbox label.right,
    .radio label.right {
        float: left;
    }


/* Messages */
form .message {
    background-color: #fef4ba;
    padding: 5px 10px;
    border: 1px solid #e8c805;
    border-radius: 3px;
}
    form .good {
        background-color: #ecf9d0;
        border-color: #8fbe00;
    }
    form .bad, form .required {
        background-color: #f9d0d0;
        border-color: #cf0000;
        color: #b80000;
    }


/* ACTIONS */
.Actions {
    margin-bottom: 20px;
}
    input[type="submit"], .Actions .action {
        background: #b80000;
        color: #fff;
        display: inline-block;
        border-radius: 4px;
        padding: 6px 15px;
        margin-top: 10px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        border: none;
        font-size: 13px;
        margin-right: 10px;
        float: left;
    }
    input[type="submit"]:hover, .Actions .action:hover {
        background: #C80000;
        color: #fff;
    }
    a.btn {
        line-height: 18px;
        margin-bottom: 10px;
    }
    .ie7 input.action {
        width: 0;                     /* IE table-cell margin fix */
        overflow: visible;
    }
    input.action[class] {             /* IE ignores [class] */
        width: auto;                  /* cancel margin fix for other browsers */
    }

    .ie7 .Actions .action {
        float: left;
    }
    .Actions:after {
        color: #B94A48;
        display: inline-block;
        font-weight: normal;
        margin-top: 9px;
    }
    #MemberLoginForm_LoginForm .Actions:after {
        display: none;
    }


/* AREA SPECIFIC */
    /* LOGIN and FORGOT PASSWORD */
    #Remember {
        min-height: 20px;
    }
    #ForgotPassword {
        clear: left;
    }
    #MemberLoginForm_LostPasswordForm .Actions:after {
        display: none;
    }

    /* Search / Login */
    .header form .middleColumn {
        /* float: none;
        width: 100% !important; */
    }




/* USER DEFINED USER FORM MODULE STYLES
----------------------------------------------- */

/*Generic and mixed*/
.FormHeading {
    clear: both;
    padding-top: 15px;
}
form .date .middleColumn input {
    /*background: transparent url(../images/icons/your_icon_here.png) no-repeat scroll 90px 5px;*/
    width: 114px;
}
.Actions input.resetformaction,
.Actions input.action-minor {                  /* Clear button */
    float: left;
    background-color: #888;
}
.Actions input.resetformaction:hover,
.Actions input.action-minor:hover {            /* Clear button */
    background-color: #aaa;
}

/* Labels */
.checkbox label.right {
    font-size: 13px;                            /* reset to default */
    color: #333;                                /* reset to default */
}
form .requiredField label.left:after { /* pseudo element adds an asterisk to a required fields label */
    color: #B94A48;
    content: "*";
    font-size: 14px;
    font-weight: normal;
    padding-left: 3px;
}

/* Radio / Checkbox */
form .checkboxset ul,
form .optionset ul {
    margin: 0;
}
    form .checkboxset li,
    form .optionset li {
        margin-bottom: 5px;
        list-style-type:none;
    }
    form div.checkbox:after { /* clearfix */
        content: ".";
        display: block;
        height: 0;
        clear: both;
        visibility: hidden;
    }
    form .checkbox .checkbox { clear: both; }

/* Messages */
span.message {
    margin: 10px 0;
    display: block;
    max-width: 390px;
    clear: left;
}
div.holder-required {               /* This class needs to be changed - is used for both input and div */
    /* background-color: #f9d0d0;
    border: 1px solid #cf0000;
    padding: 10px;
    margin-left: -11px; */
}


/* Error messages */
input:invalid,
textarea:invalid {
    border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red;
    -webkit-box-shadow: 0px 0px 5px red;
    box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid,
.no-boxshadow textarea:invalid {
    background-color: #f0dddd
}

/* To test - potentially not needed? */
.ss-uploadfield-item-info button{
    margin-top: 4px !important;
    float: left;
}
form .creditCardField input,
form input.currency,
form input.numeric {
    width: 50px;
}
form #DMYDate-month,
form #DMYDate-day {
    width: 25px
}




/* Responsive form styles
----------------------------------------------- */

@media only screen and (max-width: 700px) { 

    /* To test - potentially not needed? */
	.header form .middleColumn {
	    float: none;
	    width: 100% !important;
	}
	form label.left,
	#MemberLoginForm_LoginForm label {
	    margin-bottom: 8px
	}
}

@media only screen and (max-width: 900px) { 
    form {
        max-width: 100%;
    }
}

@media only screen and (min-width: 700px) { 

}


/****** FILE: themes/martijnmtb/css/style.min.css *****/
@import url(https://fonts.googleapis.com/css?family=Ubuntu:400,700);.theme-dropdown .dropdown-menu{display:block;position:static;margin-bottom:20px}body{font-family:Ubuntu,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}.bgheader{background:#fff;width:100%}.bggray{background:#f8f3f0}.bgblue{background:#42da49}.bgaction{background:#f44}.bgblok{background:#5bc0de;min-height:378px}.bgblokken{background:url(images/bg_blokblur.jpg) no-repeat center center;background-size:100% 100%;min-height:450px}h1{color:#222;font-size:30px;margin-bottom:25px;font-family:Ubuntu,sans-serif}h2{font-size:25px}h3{font-size:20px}p{margin:0 0 15px;line-height:1.6;font-family:Ubuntu,sans-serif}a{color:#003b67}a:hover{color:#e30613;text-decoration:none}.btn,.panel{border-radius:0}.calltoaction{text-align:center}.calltoaction h2{margin-top:0}.socialicon{float:right}h1#logo{margin-bottom:0!important;margin:0 auto;display:none}h1#logosmall{display:block;margin-bottom:0;width:255px}h1#logosmallbottom{display:block;margin-bottom:-135px;margin-top:0;position:relative;z-index:10;width:255px}h1#logosmallbottom img{width:255px}h1#logo a,h1#logosmall a{width:100%;display:block;z-index:10;margin-bottom:0}h1#logo a img,h1#logosmall a img{max-width:100%;height:auto}@media screen and (max-width:1199px){h1#logo{display:block}h1#logosmall,h1#logosmallbottom{display:none}}.navbar{background:#fff;border-radius:0;-webkit-box-shadow:none;box-shadow:none;border:none;margin-bottom:0;font-family:Ubuntu,sans-serif;margin-top:15px}.navbar-toggle{color:#fff}.navbar-default .navbar-toggle{border-color:#002d59}.navbar-default .navbar-toggle .icon-bar{background:#002d59}.navbar-default .navbar-nav>li>a{color:#2e2e2e;font-size:15px}.navbar-default .navbar-nav>li>a:hover{color:#e30613}.nav>li>a{position:relative;display:block;padding:28px 8px}.dropdown-menu .sub-menu{left:100%;position:absolute;top:0;visibility:hidden;margin-top:-1px}.dropdown-menu li:hover .sub-menu{visibility:visible}.dropdown:hover .dropdown-menu{display:block}.nav-pills .dropdown-menu,.nav-tabs .dropdown-menu,.navbar .dropdown-menu{margin-top:0}.navbar .sub-menu:before{border-bottom:7px solid transparent;border-left:none;border-right:7px solid rgba(0,0,0,.2);border-top:7px solid transparent;left:-7px;top:10px}.navbar .sub-menu:after{border-top:6px solid transparent;border-left:none;border-right:6px solid #fff;border-bottom:6px solid transparent;left:10px;top:11px;left:-6px}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#e30613;background:0 0}.carousel-caption{top:25%;right:-25%}@media screen and (max-width:768px){.carousel-caption{top:0;right:-25%}.call-slider{background:#00a771;padding:5px;font-size:15px;display:inline-block;border-top:#ccdc33 solid 1px}}.CallAction{color:#fff}.CallAction .btn{margin-top:35px}.content{padding:0 15px 35px 15px}.hpblok{background:#fff;margin:65px 0 50px 0;text-align:center}.hpblok img{text-align:center;margin:25px 0 5px 0}.hpblok h2{color:#003b67;text-align:center}.subcontent{color:#222;padding:30px 0}.subcontent h2,.subcontent h3{color:#002d59;font-family:Ubuntu,sans-serif;font-weight:400;font-size:20px;margin-bottom:25px}.subcontent ul{padding-left:17px}.subcontent ul li{color:#51c0e5;margin-bottom:10px}.subcontent ul li a{color:#003b67}.subcontent p strong{color:#222}.bgblok{padding:15px 20px}.bgblok .btn{border-radius:0;margin-top:50px}.news{-webkit-box-shadow:0 0 5px 1px #cfcfcf;box-shadow:0 0 5px 1px #cfcfcf;padding:10px 15px;margin-bottom:15px}.news h2{font-size:20px;margin-bottom:10px}.news img{margin-bottom:10px}.news span{text-align:right;color:#e30613;display:block}.productcat{text-align:center;-webkit-box-shadow:0 0 5px 1px #cfcfcf;box-shadow:0 0 5px 1px #cfcfcf}.productcat img{width:100%;vertical-align:middle}.brands{text-align:left;-webkit-box-shadow:0 0 5px 1px #cfcfcf;box-shadow:0 0 5px 1px #cfcfcf;margin-bottom:10px}.brands img{width:100%;margin-top:55px;margin-bottom:55px}.product-gallery{display:flex;flex-wrap:wrap;margin-bottom:15px}.product-gallery img{margin-top:2px;margin-bottom:2px;width:100%;height:130px;object-fit:cover}.thumbnail_container{position:relative;width:100%;padding-bottom:100%;margin-bottom:20px}.thumbnail{position:absolute;width:100%;height:100%}.thumbnail img{position:absolute;top:0;bottom:0;left:0;right:0;margin:auto}.logos{margin:20px auto}.footer{color:#fff}.footer h3{color:#fff;font-family:Ubuntu,sans-serif;font-weight:400;font-size:18px;padding-bottom:10px;margin-bottom:15px;border-bottom:solid 1px #fff}.footer ul{padding-left:0;list-style:none}.footer ul li{color:#fff}.footer ul li a{color:#fff}.footer img{text-align:right;float:right}

