* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
}

h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 44px;
    margin: 0;
}

header {
    background-image: url("../images/header.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 40px 0;
}

header h2 {
    color: #fff;
    text-align: left;
}

main {
    margin: 70px 0 25px 0;
}

main h4 {
    font-weight: 700;
    margin-bottom: 15px;
}
.form-error{
	color: #FF0000;
}
.verbruiksartikelen h4 {
    color: #0D6FA3;
}

.zoek-onderdelen h4 {
    color: #A57527;
}

main .btn-block,
.fomr-card .order-table .btn-block {
    text-align: left;
    background-color: #fff;
}

.fomr-card .order-table .btn-block {
    height: 40px;
    border: 1px solid #ced4da;
}
.order-table .qty {
     width: 56px !important;
}
main .btn {
    padding: 12px 10px;
}

button {
    position: relative;
}

main .btn:focus,
button.p-btn:focus,
form .btn:focus,
form button.p-btn:focus {
    outline: none;
    box-shadow: none;
}

main ins,
form ins,
.fomr-card .order-table ins {
    text-decoration: none;
}

main .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 22px;
}

form .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 18px;
}
.order-table .fa-times-circle {
    margin: 0 15px 0 0;
    font-size: 17px;
    line-height: 28px;
}
main #box {
    padding: 24px 35px;
    border-radius: 5px;
    position: relative;
    height: 100%;
    min-height:181px
}

#box input,
#box select{
    border:0;
    -webkit-border-top-right-radius: 0px;
-webkit-border-bottom-right-radius: 0px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 0px;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
}

.verbruiksartikelen {
    background-color: #EDF8FD;
}
.order-table select {
    width:50px;
}
.zoek-onderdelen {
    background-color: #FFF2DA;
}

.verbruiksartikelen:after {
    content: '';
    position: absolute;
    top: 12px;
    right: 35px;
    background-image: url("../images/parts.png");
    width: 84px;
    height: 81px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.zoek-onderdelen:after {
    content: '';
    position: absolute;
    top: 12px;
    right: 35px;
    background-image: url("../images/supplies.png");
    width: 110px;
    height: 81px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

button.p-btn {
    color: #fff;
    border-radius: 0px 4px 4px 0;
    padding: 13px 18px;
    cursor: pointer;
    border: 0;
}

.verbruiksartikelen button.p-btn {
    background-color: #2B9AD3;
}

.zoek-onderdelen button.p-btn {
    background-color: #FAAC20;
}

main .help {
    padding: 20px 35px;
    background-color: #F4F4F4;
    border-radius: 4px;
    margin-top: 16px;
}

main .help p {
    color: #2B9AD3;
    margin: 0;
    font-size: 14px;
}

main .help p i {
    font-size: 22px;
    margin-right: 8px;
    vertical-align: bottom;
}


/*cutome radio button*/

.rdio {
    position: relative;
    margin-right: 22px;
}

.rdio:last-child {
    margin: 0;
}

.radiobuttons {
    display: inline-flex;
    margin-bottom: 16px;
}

.rdio input[type="radio"] {
    opacity: 0;
}

.rdio label {
    padding-left: 10px;
    cursor: pointer;
    margin-bottom: 7px !important;
    font-size: 14px;
    vertical-align: middle;
}

.rdio label:before {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 1px;
    left: 0;
    content: '';
    display: inline-block;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    border: 1px solid #C8C9CC;
    background: #fff;
}

.rdio input[type="radio"] {
    margin: 0px;
}

.rdio input[type="radio"]:disabled + label {
    color: #999;
}

.rdio input[type="radio"]:disabled + label:before {
    background-color: #0072FF;
}

.rdio input[type="radio"]:checked + label::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 4px;
    display: inline-block;
    font-size: 11px;
    width: 10px;
    height: 10px;
    background-color: #0072FF;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.rdio-default input[type="radio"]:checked + label:before {
    border-color: #0072FF;
}

.rdio-primary input[type="radio"]:checked + label:before {
    border-color: #0072FF;
}

.rdio-primary input[type="radio"]:checked + label::after {
    background-color: #0072FF;
}


/*dropdown select css*/

.dropdown-menu.radio .dropdown-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    padding: 12px 10px;
    margin: 0;
}

.dropdown-menu.radio .dropdown-item:hover {
    background-color: #EBF4FF;
    color: #171D29;
}

.dropdown-menu.radio input {
    visibility: hidden;
    position: absolute;
    left: -30px;
}

.dropdown-menu.radio i {
    font-weight: normal;
    font-style: normal;
    display: block;
}

.dropdown-item.active {
    background-color: #EBF4FF;
    color: #171D29;
}

.dropdown-menu.show {
    box-shadow: transparent;
    border: 0px;
    box-shadow: 0px 12px 30px rgba(23, 29, 41, 0.08);
}

#productlijnen {
    margin-bottom: 96px;
}

#productlijnen h2,
#zoekresultaten h2,
#offerte-aanvragen h2,
#thanks h2 {
    color: #0D6FA3;
    margin:40px 0 40px 0 !important;
}
#productlijnen h2 {
    margin-bottom:0 !important; 
    }
#productlijnen .row {
    padding: 0px 15px;
}

#productlijnen .box {
    border: 1px solid #E6E6E6;
    text-align: center;
    border-radius: 4px;
    margin-top: 16px;
}
.feature-img {
    margin:35px 0;
}
.feature-img img {
    height: 100px;
    margin:0 auto;
}

#productlijnen .col-lg-3:first-child {
    padding-left: 0;
}

#productlijnen .col-lg-3:last-child {
    padding-right: 0;
}

#productlijnen .title {
    background-color: #F2F2F2;
    text-transform: uppercase;
    color: #0D6FA3;
    font-weight: 700;
    padding: 12px;
    font-size: 14px;
    letter-spacing: 5px;
    border-radius: 0 0 4px 4px;
}

#zoekresultaten .resultaten {
    color: #3C763D;
    font-size: 15px;
    background-color: #E3F0D9;
    padding: 20px 30px;
    border-radius: 4px;
    margin-top: 16px;
}

.table {
    margin: 30px 0 96px 0;
    padding: 0 15px;
}

.table .col-lg-8,
.table .col-lg-2 {
    padding: 0;
}

.table .table-header {
    font-weight: 700;
    color: #4F5F6F;
    padding-bottom: 12px;
    border-bottom: 2px solid #D8D8D8;
}

.table .table-row {
    padding: 15px;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #DEDEDE;
}

.table .table-row .col-lg-2 p {
    margin: 0;
    font-weight: 700;
}

.table .table-row .col-lg-8 p {
    margin: 0;
    font-weight: 400;
    line-height: 22px;
}

.table .table-row .col-lg-2 span {
    background-color: #EDF8FD;
    color: #2B9AD3;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 700;
    margin-top: 5px;
    display: inline-block;
}

.table .s-btn {
    padding: 12px 15px;
    background-color: #5CB85C;
    border-bottom: 2px solid #009900;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: #fff;
    font-size:16px;
    border-radius: 4px;
    cursor: pointer;
}

.table .s-btn:hover {
    background-color: #009900;
}

.table .s-btn i {
    font-size: 22px;
    vertical-align: bottom;
    margin-right: 8px;
}

#offerte-aanvragen {
    margin-bottom: 82px;
}

#offerte-aanvragen h2 {
    margin-bottom: 16px;
}

.fomr-card {
    border: 1px solid #E8E8E8;
    border-radius: 4px;
}
.thanks-icon {
    width: 10.2rem;
}

form .form-header {
    padding: 25px 35px 20px 35px;
    border-bottom: 1px solid #E8E8E8;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

form .form-header .steps {
    font-size: 14px;
    font-weight: 700;
}

.form-header .wip span {
    margin: 0 auto 5px auto;
    color: #fff;
    background-color: #3A87F7;
}


.form-header .wip {
    position: relative;
    left: -31px;
}
.form-header .pending,
.form-header .completed {
    color: #D2D7DF;
}

.form-header .wip {
    position: relative;
}

.form-header .wip:after {
    content: '';
    width: 260px;
    height: 1px;
    background-color: #D2D7DF;
    position: absolute;
    top: 15px;
    left: 50px;
    z-index: -1;
}

.form-header .wip:before {
    content: '';
    width: 300px;
    height: 1px;
    background: rgb(58, 135, 247);
    background: -moz-linear-gradient(266deg, rgba(58, 135, 247, 1) 0%, rgba(86, 183, 103, 1) 100%);
    background: -webkit-linear-gradient(266deg, rgba(58, 135, 247, 1) 0%, rgba(86, 183, 103, 1) 100%);
    background: linear-gradient(266deg, rgba(58, 135, 247, 1) 0%, rgba(86, 183, 103, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#3a87f7", endColorstr="#56b767", GradientType=1);
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: -1;
}

.form-header .pending span {
    margin: 0 0 5px auto;
    color: #D2D7DF;
    display: block;
    background-color: #fff;
}

.form-header .completed span {
    margin: auto 0 5px 0;
    color: #fff;
    display: block;
    background-color: #56B767;
}

form .form-header .steps span {
    width: 30px;
    height: 30px;
    border-radius: 20px;
    display: block;
    text-align: center;
    line-height: 30px;
    border: 1px solid #E5E7EB;
}

form .form {
    padding: 25px 35px 20px 35px;
}

form .form .form-control {
    height: 40px;
    border: 1px solid #E5E5E5;
}

form .form span {
    color: #FF0000;
}

form .from-footer {
    font-size: 12px;
    padding: 44px 20px;
    text-align: center;
    margin: 0;
    color: #4F5F6F;
}

.fomr-card {
    padding: 30px 20px;
}

.fomr-card p {
    font-size: 16px;
    font-weight: 700;
    color: #0D6FA3;
    margin: 0 0 15px 0;
}

.fomr-card .order-table {
    display: inline-flex;
    justify-content: space-between;
    padding: 15px 0;
    width: 100%;
    align-items: end;
}

.fomr-card .order-table .discription {
    padding: 0 15px;
    width:269px;
}

.fomr-card .order-table .discription .title {
    margin-bottom: 0px;
    font-size: 14px;
    color: #4F5F6F;
    font-weight: 600;
}

.fomr-card .order-table .discription span {
    font-size: 12px;
    display: block;
}

.fomr-card .order-table .pills {
    text-align: center;
    padding: 8px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    width: 110px;
}

.fomr-card .order-table .pills.onderdeel {
    background-color: #FEF1DB;
    color: #A57527;
}

.fomr-card .order-table .pills.verbruiksartikel {
    background-color: #EDF8FD;
    color: #2B9AD3;
}

button.btn.dropdown-toggle {
    background: transparent;
    border: 1px solid #C8C9CC;
    color: #81858B;
}

.fomr-card .product {
    padding: 10px 15px;
    background-color: #F5F5F5;
    border-radius: 4px;
    color: #4F5F6F;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    font-size: 14px;
    margin-top: 15px;
    text-decoration: none;
    display: block;
    text-align:center
}
.fomr-card .product:hover {
   background:#f0f0f0;
}
.fomrcard-footer {
    margin: 100px 0 30px 0;
    font-size: 14px;
    color: #4F5F6F;
    font-size: 14px;
    text-align: center;
}

.fomrcard-footer i {
    font-size: 24px;
    vertical-align: middle;
}

.form-btn {
    padding: 25px;
    background-color: #5CB85C;
    border-bottom: 2px solid #009900;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 26px;
}

.form-btn i {
    font-size: 30px;
    vertical-align: bottom;
    margin-right: 8px;
}

.form-btn:hover {
    background-color: #009900;
}

.from-bottom-span {
    font-size: 14px;
    color: #4F5F6F;
    font-weight: 700;
    display: block;
    text-align: center;
}

.from-bottom-span i {
    color: #FAAC20;
    font-size: 20px;
    vertical-align: bottom;
    margin-right: 4px;
}

#thanks {
    margin-bottom: 100px;
    margin-top:40px
}

#thanks .row {
    padding: 0 15px;
}
#thanks p {
    font-size:16px;
    margin:25px 0;
}
#thanks .thanks-request {
    border: 1px solid #E8E8E8;
    padding: 50px;
}

#thanks h2 {
    margin: 20px 0;
}


#thanks .s-btn {
    padding: 8px 24px;
    background-color: #5CB85C;
    border-bottom: 2px solid #009900;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    margin: 0 8px;
    font-size:16px;
    text-decoration:none
}

#thanks .s-btn:hover {
    background-color: #009900;
}


.alert {
    font-size: 15px;
    padding: 20px 30px;
    border-radius: 4px;
    margin-top: 16px
}