/****************************** HEADER ******************************/
.header {
    display: flex;
    flex-direction: column;
    margin: 0 auto 0 auto;
    padding-top: 16px;
    max-width: 1584px;
    width: 100%;
}

.header .header-outer {
    display: flex;
    padding: 0 16px;
    align-items: center;
    flex-wrap: wrap;
}

.header.header-admin {
    padding-top: 0
}

.header-admin .header-outer {
    background: #f6f9fc;
    border-radius: 0 0 4px 4px;
    justify-content: space-between;
    padding: 16px
}

.header-admin .header-alert {
    color: #ff6400;
    font-weight: 700
}


/****************************** LOGO ******************************/
.logo {
    background-image: url(/assets/logo-full.png);
    background-size: 185px;
    background-repeat: no-repeat;
    width: 185px;
    height: 63px;
}

/****************************** SEARCH ******************************/
.header .search {
    flex: 1;
    display: flex;
    margin-left: 32px;
    margin-right: 24px;
    position: relative;
}

/********* search input ***************/
[type="search"] {
    outline: 0;
    -webkit-appearance: none;
    appearance: none;
}

.search input,
.suggest-search-input {
    border-radius: 4px;
    width: 100%;
    min-width: 100%;
    height: 48px;
    padding: 0 24px 0 48px;
    background: #fff url(/assets/icons/icon-search-darkgrey-24.svg) 12px center no-repeat;
    border: 2px solid #c7d2d9;
    transition: 150ms ease all;
    text-overflow: ellipsis;
    overflow: hidden;
    font-size: 14px;
    position: relative;
}

.search input::-webkit-input-placeholder,
.search input:-ms-input-placeholder {
    color: #9aabb3;
}

.search input::-moz-placeholder,
.search input:-moz-placeholder {
    opacity: 1;
    color: #9aabb3;
}


.search input:hover {
    border-color: #9aabb3;
    box-shadow: 0 6px 12px 0 rgba(22, 60, 92, 0.1);
}

.search input:focus,
.search input:active,
.search input:focus-visible {
    color: #003247;
    border-color: #0092d2 !important;
    outline: none;
    background-image: url(/assets/icons/icon-search-blue-24.svg);
    box-shadow: 0 6px 18px 0 rgba(22, 60, 92, 0.14);
}



/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}

/* clears the 'X' from Chrome */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

/* custom clear 'X' button */
.search button.clear-icon {
    visibility: hidden;
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent url(/assets/icons/icon-cancel-blue-16.svg) center center no-repeat;
    position: absolute;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.search input:not(:placeholder-shown)~button.clear-icon {
    visibility: visible;
}


/****************** search suggestions ********************/

.suggest-items {
    position: absolute;
    z-index: 500;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 6px 0 rgba(38, 82, 104, .1), 0 8px 24px 0 rgba(22, 60, 92, .26);
    border-radius: 4px;
    min-width: 288px
}

.suggest-items .suggest-group-title {
    font-size: 16px;
    letter-spacing: -.45px;
    line-height: 24px;
    font-weight: 700;
    margin: 16px 16px 12px 16px
}

.suggest-items .suggest-group {
    margin: 12px 0 16px 0
}

.suggest-items .suggest-item-button {
    margin: 16px
}

.suggest-items .suggest-item:not(.suggest-item-product) {
    background: url(/assets/icons/icon-arrowsubcat-grey-16.svg) 16px 6px no-repeat;
    padding: 4px 16px 4px 44px
}

.suggest-items .breadcrumb {
    padding: 0;
    margin-bottom: 0
}

.suggest-items .breadcrumb .breadcrumb-item strong {
    font-weight: 600
}

.suggest-items .suggest-item.suggest-item-product {
    position: relative;
    padding: 0 16px
}

.suggest-items .suggest-item.suggest-item-product a {
    display: flex;
    align-items: flex-start;
    color: #003247;
    border-bottom: 1px solid #c7d2d9;
    padding-bottom: 8px;
    padding-top: 8px
}

.suggest-item-product-image {
    width: 72px;
    height: 72px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 8px;
    flex: 0 0 auto
}

.suggest-item-product-brand,
.suggest-item-product-properties,
.suggest-item-product-price-moq {
    font-size: 12px;
    letter-spacing: -.15px;
    line-height: 16px
}

.suggest-item-product-title,
.suggest-item-product-price {
    line-height: 18px;
    font-weight: 700
}

.suggest-item-count {
    position: absolute;
    top: 0;
    right: 16px;
    background: #f6f9fc;
    color: #0092d2;
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 11px;
    line-height: 16px
}

.suggest-loader {
    z-index: 100;
    animation: spin 1s infinite linear;
    border: 3px solid #0092d2;
    border-left: 3px solid transparent;
    border-radius: 50%;
    height: 20px;
    width: 20px;
    position: absolute;
    right: 40px;
    top: 14px
}

.suggest-items .suggest-item.suggest-active {
    background-color: #d2f1ff
}



/****************************** HEADER BUTTONS ******************************/
.header-buttons {
    display: flex;
}

.header-button {
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    width: 100px;
    background-position: center 10px;
    background-repeat: no-repeat;
    display: block;
    padding: 36px 0 10px 0;
}

.header-button:hover {
    text-decoration: none;
    background-color: #f6f9fc;
}

.header-favorites {
    background-image: url(/assets/icons/icon-star-blue-24.svg);
}

.header-company-carts {
    background-image: url(/assets/icons/icon-cart-full-blue-24.svg)
}

.header-overview {
    position: relative;
    background-image: url(/assets/icons/icon-user-blue-24.svg);
}

.header-shopping-cart {
    position: relative;
    background-image: url(/assets/icons/icon-cart-full-blue-24.svg);
}

.header-button-text {
    color: #003247;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: -0.25px;
    text-transform: uppercase;
    line-height: 16px;
}

.header-shopping-cart-quantity {
    position: absolute;
    background-color: #003247;
    min-width: 24px;
    height: 24px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.1px;
    color: #fff;
    padding: 0 4px;
    border-radius: 12px;
    top: -4px;
    right: 22px;
}


/******************** HEADER OVERVIEW DROPDOWN (MIJN ACCOUNT) *******************/
div#header-overview {
    position: relative;
}

div#header-overview .header-overview-dropdown {
    display: none;
    background: #FFFFFF;
    box-shadow: 0 2px 6px 0 rgba(38, 82, 104, 0.10), 0 8px 24px 0 rgba(22, 60, 92, 0.26);
    border-radius: 4px;
    border-top: 4px solid #003247;
    min-width: 230px;
    max-width: 280px;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 8px;
    z-index: 999;
}

div#header-overview .header-overview-dropdown.visible {
    display: block;
}

div#header-overview .header-overview-dropdown:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 8px 7px;
    border-color: transparent transparent #003247 transparent;
    position: absolute;
    top: -12px;
    right: 43px;
}

div#header-overview .header-overview-dropdown .overview-dropdown-header {
    padding: 16px 16px 16px 60px;
    background: transparent url(/assets/icons/icon-user-blue-24.svg) 24px center no-repeat;
}

p.text-medium {
    font-size: 16px;
}

div#header-overview .header-overview-dropdown .overview-dropdown-header p.username {
    font-size: 13.6px;
    letter-spacing: -0.3px;
    line-height: normal;
    text-overflow: ellipsis;
    overflow: hidden;
}

div#header-overview .header-overview-dropdown .overview-dropdown-links {
    margin-bottom: 16px;
}

div#header-overview .header-overview-dropdown a.dropdown-item {
    display: block;
    padding: 12px 12px 12px 20px;
    font-size: 13.6px;
    letter-spacing: -0.3px;
    line-height: 16px;
    border-left: 4px solid transparent;
}

div#header-overview .header-overview-dropdown a.dropdown-item:hover {
    background: #F6F9FC;
    border-color: #003247;
}

div#header-overview .header-overview-dropdown .overview-dropdown-footer {
    padding: 16px 16px 16px 24px;
    background: #F6F9FC;
    border-radius: 0 0 4px 4px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
}

div#header-overview .header-overview-dropdown .overview-dropdown-footer .primary-button {
    margin-right: 16px;
}

div#header-overview .header-overview-dropdown .register-container {
    white-space: nowrap;
}




/****************************** NAVIGATION ******************************/
.header-nav-container {
    height: 52px;
    margin: 20px 0 0 0;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    justify-content: start !important;
    padding-top: 4px;
    padding-left: 16px;
    padding-right: 16px;
}

.nav-dropdown-button {
    display: block;
    box-sizing: content-box;
    margin: 0;
    height: 16px;
    line-height: 16px;
    padding: 16px 32px 16px 12px;
    background: #fff url(/assets/icons/icon-arrowdown-darkgrey-12.svg) right 12px top 18px no-repeat;
    color: #003247;
    font-size: 13.6px;
    letter-spacing: -0.2px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.nav-dropdown-button:hover {
    color: #0092D2;
}

.nav-dropdown-button.selected {
    background-image: url(/assets/icons/icon-arrowup-darkgrey-12.svg);
    box-shadow: 0 2px 6px 0 rgba(22, 60, 92, 0.20), 0 4px 16px 0 rgba(22, 60, 92, 0.24);
    z-index: 400;
}

.nav-dropdown-button.selected:before {
    content: '';
    position: absolute;
    top: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #003247;
    border-radius: 4px 4px 0 0;
}

/* first button */
.nav-dropdown:first-child {
    margin-right: 8px;
}

.nav-dropdown:first-child .nav-dropdown-button {
    height: 20px;
    line-height: 20px;
    padding: 14px 44px 14px 16px;
    background: url(/assets/icons/icon-arrowdown-white-16.svg) right 16px top 16px no-repeat, linear-gradient(180deg, #009DE0 0%, #0081C7 100%);
    border-radius: 4px 4px 0 0;
    color: #fff;
    font-size: 15px;
}

.nav-dropdown:first-child .nav-dropdown-button:hover {
    color: #fff;
    background-color: #007BB8;
    background-image: url(/assets/icons/icon-arrowdown-white-16.svg);
}

.nav-dropdown:first-child .nav-dropdown-button.selected {
    background-color: #fff;
    background-image: url(/assets/icons/icon-arrowup-darkgrey-16.svg);
    color: #003247;
}



/* nav dropdown content */
.nav-dropdown-content {
    display: none;
    background-color: #fff;
    box-shadow: 0 12px 16px 0 rgba(22, 60, 92, .16), inset 0 4px 0 0 #003247;
    margin: 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 300;
    margin-top: -4px
}

.nav-dropdown-content.visible {
    display: block
}

ul.nav-dropdown-categories {
    list-style: none
}

ul.nav-dropdown-categories.level-one {
    display: flex;
    flex-wrap: wrap;
    margin: 20px auto 20px auto;
    padding: 0 4px;
    max-width: 1584px;
    width: 100%;
}

ul.nav-dropdown-categories.level-one>li {
    margin: 12px;
    min-width: 200px;
    width: calc(20% - 24px);
    position: relative;
}

ul.nav-dropdown-categories li a {
    display: flex;
    font-size: 15px;
    color: #003247;
    letter-spacing: -.3px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

ul.nav-dropdown-categories.level-two li a {
    font-size: 13.6px;
    line-height: 16px;
    font-weight: 400;
    text-transform: none;
    margin: 0;
    padding: 4px 0 4px 18px;
    background: url(/assets/icons/icon-arrowforward-blue-10.svg) left 8px no-repeat
}

ul.nav-dropdown-categories.level-two li.category-viewall a {
    color: #0092d2;
    background-image: none;
}

ul.nav-dropdown-categories li a:hover {
    color: #007bb8 !important
}

ul.nav-dropdown-categories.level-two>li:not(.category-viewall) {
    display: none;
    position: relative
}

ul.nav-dropdown-categories.level-two>li:nth-child(-n+5) {
    display: block
}

ul.nav-dropdown-categories .category-arrow {
    display: none;
    width: 52px;
    height: 52px;
    position: absolute;
    right: 0;
    top: 0
}

ul.nav-dropdown-categories .category-arrow:after {
    content: '';
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    right: 16px;
    top: 18px;
    background: transparent url(/assets/icons/icon-arrowdown-darkgrey-16.svg) center center no-repeat;
    transition: all .35s ease
}

ul.nav-dropdown-categories.level-two .category-arrow:after {
    background-image: url(/assets/icons/icon-arrowdown-blue-16.svg)
}

ul.nav-dropdown-categories.level-three {
    display: none
}




.separator {
    width: 100%;
    position: absolute;
    left: 0;
    margin: 0 0 -2px 0;
    align-self: end;
    z-index: -1;
    border: 0;
    border-bottom: 2px solid #c7d2d9;
}






/************************************ SERVICE *******************************/

.service-container {
    background: #F6F9FC;
    margin: 0 16px 24px 16px;
    padding: 8px;
    display: flex;
}

.service-container>div {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    margin: 4px 8px;
    flex: 1 1 auto;
}

.service-item img {
    margin-right: 8px;
}

.service-item.phone,
.service-item.email {
    white-space: nowrap;
}



/************************************ BREADCRUMB *******************************/

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 16px;
    margin-bottom: 24px;
    list-style: none;
}

.breadcrumb-item {
    display: flex;
    font-size: 14px;
    letter-spacing: -0.2px;
    line-height: 24px;
}

.breadcrumb-item:not(.active):after {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 16px;
    color: #74838A;
    content: "/";
}
.breadcrumb-item.current:after {
    content: ""!important;
}

.breadcrumb-item.active {
    color: #003247;
}

.breadcrumb-item.active a {
    color: #003247 !important;
    pointer-events: none;
}
