@font-face {
    font-family: 'lato-bold';
    src: url('../../fonts/Lato-Bold.ttf');
}

@font-face {
    font-family: 'lato-light';
    src: url('../../fonts/Lato-Light.ttf');
}

@font-face {
    font-family: 'lato-regular';
    src: url('../../fonts/Lato-Regular.ttf');
}

@font-face {
    font-family: 'lato-black';
    src: url('../../fonts/Lato-Black.ttf');
}

@font-face {
    font-family: 'futura-pt';
    src: url('../../fonts/FuturaPT-ExtraBold.woff2');
}

* {
    outline: none;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

html, body, div, span, p, td, th, li {
    font-size: 14px;
}

body {
    background-color: #FFFFFF;
}

p, div, span, li, td, th, a {
    font-family: 'lato-regular';
    font-size: 1rem;
    font-weight: 400;
}

p, div, span, li, td, th {
    /*color: #121010;*/
}

a, button {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    font-family: inherit;
}

.wrapper .content a {
    color: #7C9CBF;
}

h1 {
    font-family: 'futura-pt', sans-serif;
    text-transform: uppercase;
    font-size: 52px;
    margin-top: 0;
    color: #323232;
}

h2 {
    font-family: 'lato-bold';
    font-size: 1.4rem;
    font-weight: 200;
    margin-bottom: 30px;
}

h3 {
    font-family: 'lato-bold';
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
}

h4 {
    font-family: 'lato-bold';
    font-size: 1rem;
    font-weight: 400;
}

h5 {
    font-family: 'lato';
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.input-group input {
    font-family: 'lato-regular';
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.top-content {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.content {
    width: 1100px;
    margin: 0 auto;
}

.container-padding {
    padding: 75px;
}

.wrapper .content {
    width: 1100px;
    /*padding: 50px 50px 50px 50px;*/
    -webkit-box-shadow: 0px 5px 50px 0px rgba(0,0,0,0.25);
    box-shadow: 0px 5px 50px 0px rgba(0,0,0,0.25);
    background: white;
    min-height: calc(100vh - 400px);
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    background-color: #ffffff;
    z-index: 9998;
}

header .navigation .content {
    background: #444444;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 0 50px;
}

@media (max-width: 744px) {
    header .navigation .content {
        background: white;
    }

    header .navigation nav a {
        color: #121010;
    }

    .main-menu-item.active .small-icon i {
        padding-left: 8px;
        transform: rotate(180deg) !important;
    }

    .mobile-bottom-menu.main-menu-item.no-submenu {
        margin-top: auto;
    }
}

header .navigation nav {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

header .navigation nav > div {
    position: relative;
}

header nav > div > a {
    display: block;
    padding: 15px 20px;
    color: #EBF4F8;
}

header nav > div {
    transition: ease .2s;
}

.mobile-action-container {
    position: absolute;
    width: 100%;
}

@media (min-width: 744px) {
    header nav > div:hover {
        transition: ease .2s;
        background: #D8D3CD;
        color: black;
    }

    .mobile-action-container {
        display: none;
    }

    header nav > div:hover i {
        transform: rotate(180deg);
        transform-origin: center;
        transition: .2s ease;
    }

    header .navigation nav > div:hover .submenu {
        width: 180px;
        position: absolute;
        display: block;
    }

    header .navigation nav .submenu {
        background-color: #EBF4F8;
        border-radius: 6px;
        margin-top: 10px;
        position: absolute;
        left: 0;
        list-style-type: none;
        width: 100%;
        display: none;
        padding: 10px 0;
        z-index: 900 !important;
        -webkit-animation-name: animate-submenu;
        -webkit-animation-duration: 0.2s;
        animation-name: animate-submenu;
        animation-duration: 0.2s;
    }

    /* Driehoek vorm boven de dropdown style */
    header .navigation nav .submenu::before {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 20px solid #EBF4F8;
        position: absolute;
        left: 12px;
        top: -20px;
    }

    header .navigation nav .submenu-col-grid-item {
        justify-content: space-between;
    }

    header .navigation nav .submenu-col-grid-item:hover {
        background: #444444;
        transition: .2s ease;
    }

    header .navigation nav .submenu-col-grid-item:hover {
        color: white;
    }

    .submenu-col-grid:hover .sub-sub-menu {
        display: block;
    }
}

header nav > div:hover > a {
    color: black;
}

.col-span-full {
    grid-column: span 3;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.col-span-full hr {
    border: none;
    height: 1px;
    background-color: #A09F9F;
}

@-webkit-keyframes animate-submenu {
    from {opacity:0}
    to {opacity:1}
}

@keyframes animate-submenu {
    from {opacity:0}
    to {opacity:1}
}

header .navigation nav .submenu {
    margin-top: 0;
    list-style-type: none;
    width: 100%;
    display: none;
    padding:  0;
    z-index: 900 !important;
    -webkit-animation-name: animate-submenu;
    -webkit-animation-duration: 0.2s;
    animation-name: animate-submenu;
    animation-duration: 0.2s;
}

header .navigation nav .submenu-col-grid-item {
    padding: 15px 20px;
    display: flex;
    z-index: 2;
    min-height: 59px;
    align-items: center;
}

header nav .submenu a {
    text-transform: lowercase;
    display: block;
    color: #121010;
}

header nav .submenu h2 {
    font-family: 'lato-regular';
    margin-top: 10px;
    margin-bottom: 0;
    transition: .2s ease;
    color: #121010;
}

header nav .submenu a {
    text-transform: inherit;
}

header nav .main-menu-item a span {
    font-size: 15px;
}

.sub-sub-menu {
    display: none;
    position: absolute;
    top: -10px;
    left: 80%;
    background: #7C9CBF;
    width: 180px;
    border-radius: 6px;
    z-index: 99;
}

.sub-sub-menu::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-bottom: 20px solid #7C9CBF;
    position: absolute;
    left: -31px;
    top: 14px;
    transform: rotate(-90deg);
}

.sub-sub-menu a {
    padding: 15px 20px;
}

.sub-sub-menu a span {
    color: white;
    font-size: 14px;
}

.submenu-col-grid {
    position: relative;
}

@media (max-width: 744px) {
    .di.acc::before {
        color: black;
    }
    .account-name {
        color: black;
    }
}

header .brand {
    padding: 30px 0;
}

header .brand .content > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .brand .logo img {
    width: 109px;
}

header .nav-toggle {
    display: none;
    z-index: 1001;
}

header .nav-toggle > div {
    background-color: #444444;
    width: 23px;
    height: 25px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    outline: 16px solid #444444;
}

header .nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

header .nav-toggle span:nth-child(1) {
    top: 0;
}

header .nav-toggle span:nth-child(2), header .nav-toggle span:nth-child(3) {
    top: 10px;
}

header .nav-toggle span:nth-child(4) {
    top: 20px;
}

header .nav-toggle.open span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%;
}

header .nav-toggle.open span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

header .nav-toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

header .nav-toggle.open span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%;
}

header .header-links a {
    color: #7C9CBF;
    padding: 0 8px;
    transition: .15s ease;
}

header .main-header-container {
    display: flex;
    flex-direction: column;
}

header .header-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 15px;
}

.action-container {
    display: flex;
    align-items: center;
}

.search-mobile {
    display: none;
}

header nav .mobile-bottom-menu {
    display: none;
}

.mobile-menu-cart, .mobile-menu-wishlist {
    display: none;
}

.mobile-menu-wishlist, .mobile-menu-globe {
    margin-right: 14px;
}

.mobile-menu-globe {
    display: none;
}

.mobile-menu-contact {
    display: none;
    position: fixed !important;
    bottom: 20px;
    width: 100%;
}

.view-all {
    display: none !important;
    margin-bottom: 20px;
}

@media (max-width: 744px) {
    .mobile-menu-contact {
        display: block;
    }
    .mobile-menu-globe {
        display: block;
    }
    .view-all {
        display: flex !important;
        margin-bottom: 20px;
    }
}

.socials-mobile {
    color: white;
    /*display: none;*/
}

header nav > div i {
    transition: .2s ease;
}

.logo {
    display: block;
}

.logo-mobile {
    display: none;
}

@media (max-width: 744px) {
    header {
        background: #EEEEEE;
    }

    header nav .submenu a {
        font-family: 'lato-regular';
        font-size: 16px;
    }

    header nav .submenu {
        border-top: 1px solid #e0e0e0;
    }

    header nav > div > a:hover {
        font-family: 'lato-regular';
    }

    header .nav-toggle {
        display: block;
        padding-left: 20px;
    }

    header .nav-toggle.open {
        position: absolute;
        right: 20px;
        top: 16px;
    }

    header .nav-toggle.open span {
        background-color: white;
    }

    header .navigation nav {
        justify-content: flex-start;
    }

    .mobile-nav-container {
        display: flex;
    }

    header.open .navigation {
        position: fixed;
        z-index: 1000;
        display: block;
        top: 0;
        height: 100%;
        left: 0;
        right: 0;
        overflow-y: auto;
        background-color: #FFFFFF;
    }

    header.open .navigation nav {
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
    }

    header nav > div > a > span {
        font-size: 20px;
    }

    header nav > div > a:hover > span {
        padding-bottom: 0px;
        border-bottom: 0px solid #FF8400;
        font-family: 'lato-bold';
    }

    header.open .navigation nav > div > .small-icon {
        margin-left: 0;
        font-family: 'lato-regular';
        font-size: 16px;
        min-height: 59px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #D8D3CD;
    }

    header.open .navigation nav > div > .small-icon:last-child {
        justify-content: flex-start;
    }

    .show-xs.small-icon {
        display: none;
    }

    header.open .navigation .content {
        padding-top: 20px;
    }

    header.open nav .mobile-bottom-menu {
        display: block;
    }

    header.open nav .mobile-bottom-menu a {
        font-size: 16px;
        background-color: #EBF4F8;
        border-bottom: 1px solid #D8D3CD;
    }

    .mobile-bottom-menu .actions {
        padding: 15px 20px;
        background-color: #EBF4F8;
    }

    .mobile-bottom-menu .show-xs.small-icon {
        display: none !important;
    }

    header .brand {
        padding: 0;
    }

    .search-mobile {
        display: block;
        margin-bottom: 10px;
        margin-top: 30px;
    }

    .mobile-menu-cart, .mobile-menu-wishlist {
        display: block;
    }

    .navigation, .header-links, .top-content, .header-container .search {
        display: none;
    }

    .header-container .actions, .header-container, .header-container .formprocessor {
        display: block;
    }

    .content {
        height: 100%;
    }

    .content nav {
        height: 100%;
        /*max-height: calc(100% - 170px);*/
    }

    /*.mobile-menu-contact {*/
    /*   display: flex;*/
    /*   flex-wrap: wrap;*/
    /*   position: fixed !important;*/
    /*   bottom: 20px;*/
    /*   width: 100%;*/
    /*}*/
    .logged-in-user {
        width: 100%;
        display: flex;
        align-items: center;
        padding: 15px 20px;
    }

    .small-icon i {
        line-height: 28px !important;
    }

    .main-menu-item {
        font-family: 'lato-regular' !important;
    }

    .main-menu-item.active a {
        flex-direction: row-reverse;
        justify-content: flex-end !important;
    }

    .main-menu-item.active .small-icon {
        font-family: 'lato-bold' !important;
    }

    .main-menu-item.active .small-icon i {
        padding-left: 8px;
        transform: rotate(180deg);
    }

    .products-overview.collapsed {
        grid-template-columns: 1fr !important;
    }

    .product-overview .filters .filter-row .filter.price input {
        width: 32% !important;
    }

    table.table th {
        width: 200px !important;
    }

    .view-all {
        display: block;
    }

    .show-xs, .actions > .cart {
        display: none;
    }

    .mobile-menu-contact .actions {
        position: relative !important;
        right: 0 !important;
        text-align: center;
    }

    .mobile-icon {
        display: none !important;
    }

    .container-padding {
        padding: 15px;
    }

    .submenu .view-all {
        padding: 15px 20px;
        margin-bottom: 0;
        display: flex;
        align-items: center;
        min-height: 59px;
    }

    .sub-sub-menu {
        position: relative;
        left: 0;
        display: block;
        background: white;
        top: 0;
    }

    .sub-sub-menu a span {
        color: black;
    }

    .submenu div {
        border-bottom: 1px solid #D8D3CD;
    }

    .submenu div .fa-angle-left {
        display: none;
    }

    .navigation .formprocessor {
        display: none;
    }

    .main-menu-item.active .small-icon {
        background-color: #444444;
        color: white;
    }

    .main-menu-item.first-item.active .small-icon {
        color: white;
    }

    .main-menu-item.first-item .small-icon {
        background-color: #444444;
        color: white;
    }

    .sub-sub-menu a {
        background-color: white !important;
    }

    .logo-mobile {
        display: block;
    }

    .logo {
        display: none;
    }
}

.actions {
    position: relative;
}

.actions-container {
    display: none;
    position: absolute;
    right: 0;
    top: 28px;
    z-index: 10000;
}

.actions-container .actions-content {
    border-radius: 6px;
    background-color: #EBF4F8;
    width: 360px;
    padding: 15px;
}

.actions-container .actions-content h1,
.actions-container .actions-content p {
    margin: 0;
}

.actions-container .actions-content p {
    margin-bottom: 10px;
}

.actions-container .actions-content .center-text {
    text-align: center;
}

.actions-container .actions-content .form-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.actions-container .actions-content .login-container {
    margin-top: 25px;
    background-color: #EBEAEA;
    border-radius: 5px;
}

.actions-container .actions-content .login-container p {
    padding: 10px 0;
    font-size: 14px;
}

.actions-container .actions-content a {
    color: #5CB0DE;
    font-size: 14px;
}

.actions-content .search .input-group input {
    min-width: 100px;
}

.input-group {
    position: relative;
}

.input-group input {
    border: 2px solid #D8D3CD;
    border-radius: 6px;
    padding: 10px 20px;
    min-width: 420px;
    width: 100%;
    min-height: 50px;
}

.input-group button {
    background: transparent;
    position: absolute;
    right: 5px;
    top: 5px;
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 2px 6px;
}

.input-group button i {
    font-size: 32px;
    color: #323232;
}

button.btn {
    background-color: #7C9CBF;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 6px 15px;
}

button.mobile-btn {
    background-color: #7C9CBF;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 5px;
    padding: 8px 15px;
    width: 100%;
    margin-bottom: 10px;
}

.form-errors {
    padding-left: 15px;
}

.form-errors li {
    color: red;
}

.form .field {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
}

.form .field input[type='text'],
.form .field input[type='email'],
.form .field input[type='date'],
.form .field input[type='password'],
.form .field select,
.form .field textarea {
    display: block;
    clear: both;
    width: 100%;
    max-width: 870px;
    margin-top: 10px;
    border: 1px solid #D8D3CD;
    border-radius: 5px;
    padding: 10px 15px;
    font-family: 'lato-regular';
    background-color: white;
}

.form .field select {
    font-family: 'lato-regular';
    background-color: inherit;
}

.form .field-group {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 870px;
}

.form .field.half {
    max-width: 430px;
}

.form button {
    background-color: #7C9CBF;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 3px;
    padding: 10px 15px;
}

.customer-account h2 {
    margin-top: 0;
}

div.account {
    display: flex;
    flex-direction: row;
    margin: 0 -25px;
}

div.account > div {
    padding: 0 25px;
}

div.account .account-menu > div {
    background-color: #EBF4F8;
    padding: 15px;
    min-width: 225px;
    max-width: 100%;
    border-radius: 5px;
}

div.account .account-menu ul {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
}

div.account .account-menu ul:last-child {
    border-top: 1px solid #D9D9D9;
}

div.account .account-menu ul:last-child::after {
    display: none;
}

div.account .account-menu li {
    margin: 3px 0 0;
}

div.account .account-menu li a {
    padding: 15px;
    display: block;
    border-left: 3px solid transparent;
    color: #000000;
}

div.account .account-menu li a:hover,
div.account .account-menu li.active a {
    background: #7C9CBF;
    color: white;
    border-radius: 5px;
}

div.account .account-data {
    flex: 2;
}

.account-data .field label {
    font-weight: 700;
}

.account-data .field-group {
    gap: 16px;
}

.wrapper {
    margin-top: 190px;
}

body {
    background-image: url("../../images/aquahot_background.png");
    background-size: cover;
}

@media (max-width: 744px) {
    .wrapper {
        margin-top: 57px;
    }
}

.row {
    display: flex;
    flex-direction: row;
    margin: 0 -15px;
}

.row.space-between {
    justify-content: space-between;
}

.row > div {
    padding: 0 15px;
}

.row.space-between > div {
    flex: 1;
}

table.table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

table.table th, table.table td {
    padding: 10px 0px;
}

table.table th {
    font-family: 'lato-regular';
    width: 350px;
    color: #7C9CBF;
}

.table td {
    font-family: 'lato-regular';
}

table.table tr {
    border-top: 1px solid #EBEAEA;
}

table.table tr:first-child {
    border-top: 1px solid #00000040 !important;
}


@media (max-width: 940px) {
    .row {
        flex-wrap: wrap;
    }

    .product-list .product {
        align-items: center;
    }
}

@media (max-width: 640px) {
    .product-view .product-image img {
        max-width: 100%;
    }
}

h1.product-title {
    font-family: 'lato-bold';
    text-transform: none;
    position: relative;
    padding-right: 45px;
    margin-top: 0;
    font-size: 22px;
    font-weight: 400;
}

h1.product-title .wishlist {

    position: absolute;
    right: 0;
    top: 25%;
}

.product-description {
    font-family: 'lato-regular';
    line-height: 22px;
}

.wishlist .di {
    cursor: pointer;
    font-size: 18px;
    color: #A09F9F;
    font-weight: bold;
}

.di.pin {
    color: white;
    font-size: 18px;
    margin-right: 5px;
    margin-top: 100px;
}

.wishlist .di.heart-full {
    color: #FF8400;
}

.product-view {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

@media (max-width: 940px) {
    .product-view {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
}

.product-view figure {
    margin: 0;
    border: 2px solid #EEEDED;
    position: relative;
}

.product-view > * {
    flex: 1;
}

.product-view .field select {
    font-family: 'lato-regular';
    border-color: #121010;
}

.image-list {
    margin-top: 25px;
}

.image-list, .product-list {
    display: flex;
    flex-direction: row;
    gap: 25px;
}

.product-list .product .product-data {
    border-left: none;
}

.image-list div, .product-list .image {
    width: 220px;
    height: 220px;
    cursor: pointer;
    position: relative;
}

.image-list div img, .product-list .image img, .product-view figure img {
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.product-list-container h2 {
    font-family: 'lato-regular';
    font-size: 18px;
    margin-bottom: 30px;
}

.product-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-inline-btn {
    margin-top: 20px;
    background: #0088CD;
    border-radius: 5px;
    padding: 10px 15px;
    max-width: fit-content;
    color: white;
}

.product-inline-btn.cart-add:before {
    font-family: "DekkerIcons", Helvetica, Arial, sans-serif;
    content: '\026E';
}

.product-inline-btn.dealer-find:before {
    font-family: "DekkerIcons", Helvetica, Arial, sans-serif;
    content: '\0269';
}

@media (max-width: 940px) {
    .product-list {
        grid-template-columns: 1fr;
    }

    .image-list div, .product-list .image {
        width: 150px;
        height: 150px;
    }
}

.product-list .product {
    cursor: pointer;
}

.product .product-data {
    flex: 2;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product .product-data .details div {
    flex: 1;
}

.product .product-data .details .description {
    flex: 3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'lato-regular';
    line-height: 22px;
}

.product .product-data div {
    font-size: 14px;
    font-family: 'lato-regular';
}

.product .product-data .price {
    font-family: 'lato-bold';
    font-size: 18px;
}

.product .product-data .tax, .product .product-data .tax span {
    font-family: 'lato-regular';
    font-size: 12px;
}

.product .product-data .tax {
    padding: 10px 0 5px 0;
}

.product-list .product {
    display: flex;
    flex-direction: row;
}

.product-list .product .name {
    font-family: 'lato-bold';
}

.cart-row-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 744px) {
    .cart-row-container {
        grid-template-columns: 1fr;
    }
}

.cart-row {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-right: 30px;
    justify-content: flex-end;
}

.cart-row .price {
    font-family: 'lato-bold';
    font-size: 22px;
    color: #121010;
    white-space: nowrap;
    margin-bottom: 15px;
}

.cart-row .article-number {
    font-family: 'lato-bold';
    margin-top: 8px;
}

.cart-row p {
    font-family: 'lato-bold';
}

.cart-row .incl-tax {
    margin-top: 5px;
    font-family: 'lato-regular';
    font-size: 12px;
}

#coupon_code {
    min-width: 10px;
}

.cart .cart-count {
    top: -14px;
    left: -6px;
    color: #FFF;
    display: inline-block;
    text-align: center;
    position: relative;
    background-color: #D8D3CD;
    min-width: 20px;
    max-height: 40px;
    max-width: 50px;
    border-radius: 100%;
    padding: 2px;
}

button.cart-add, button.dealer-find {
    color: #ffffff;
    background-color: #7C9CBF;
    border: none;
    padding: 15px 15px;
    border-radius: 5px;
    margin-top: 10px;
    width: 100%;
}

button.cart-add .di {
    color: inherit;
    font-size: 18px;
    margin-right: 10px;
}

button.select-language {
    color: #ffffff;
    background-color: #0088CD;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    margin-top: 15px;
}

hr.hr {
    border: none;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #7C9CBF;
    margin: 20px 0;
}

.cart-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.cart-item-container {
    border-bottom: 1px solid #00000040;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.cart-item img {
    width: 88px;
    border: 1px solid #D8D3CD;
    border-radius: 5px;
}

.cart-item > div {
    flex: 2;
    margin-left: 22px;
}

.cart-item > div:first-child, .cart-item > div:last-child span { flex: 1; margin: 0; }

.cart-item p, .cart-item span, .cart-item > div:last-child table tr td {
    font-size: .8em;
}

.cart-item p {
    font-family: 'lato-bold';
    font-size: 14px;
}

.product-inline-price {
    white-space: nowrap;
    font-weight: bold;
    text-align: right;
}

.cart-item > div:last-child table {
    width: 100%;
}

.cart-item > div > span {
    display: block;
}

.cart-item > div:last-child {
    /*font-family: 'lato-bold';*/
    text-align: right;
}

.spinner {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    width: 88px;
    border: 1px solid #D8D3CD;
    border-radius: 5px;
    margin-top: 5px;
}

.spinner span.fa {
    flex: 1;
    cursor: pointer;
    color: #7C9CBF;
    background-color: transparent;
}

.spinner span.fa:first-child {
    padding: 12px 4px 5px 8px;
}

.spinner span.fa:last-child {
    padding: 12px 8px 5px 4px;
}

.spinner input {
    background-color: transparent;
    border-color: white;
    border-width: 0px;
    flex: 2;
    text-align: center;
    width: 50px;
    padding: 10px 20px;
}

.cart-header {
    margin-bottom: 35px;
}

.cart hr {
    border: none;
    height: 1px;
    background-color: #444444;
    margin: 10px 0;
}

.cart-footer {
    margin-top: 20px;
}

.cart-footer table {
    width: 100%;
    margin-bottom: 20px;
}

.cart-footer table th {
    font-family: 'lato-bold';
}

.cart-footer table th {
    text-align: right;
}

.cart-product-details {
    padding-left: 112px;
    padding-top: 13px;
}

@media (max-width: 744px) {
    .cart-product-details {
        padding-left: 112px;
    }
}

.cart-product-details .detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.product-overview {
    width: 100%;
    margin-top: 25px;
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding: 15px;
}

.filters hr {
    background: #EBEAEA;
}

.filters {
    margin-top: -60px;
    z-index: 1000;
    background: white;
}

.product-overview .filters {
    flex: 1;
    display: none;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
}

.product-overview .filters.show {
    display: block;
    position: absolute;
    min-width: 300px;
    min-height: 500px;
    padding: 20px;
}

.product-overview .filters .filter-header, .product-overview .filters .filter-footer {
    display: none;
}

.product-overview .filters .filter-row {
    border-bottom: 1px solid #00000040;
    padding: 20px 0;
}

.product-overview .filters .filter-row:last-child {
    margin-bottom: 0;
}

.product-overview .filters .filter-row .name {
    font-family: 'lato-bold';
    font-size: 16px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #7C9CBF;
}

.product-overview .filters .filter-row .filter.price {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.product-overview .filters .filter-row .filter.price input {
    width: 40%;
    border: 1px solid #D8D3CD;
    border-radius: 5px;
    padding: 10px 10px;
    font-family: 'lato-regular';
}

.checkbox, .radio {
    display: block;
    position: relative;
    cursor: pointer;
    line-height: 21px;
    padding-left: 32px;
    margin-bottom: 8px;
    height: 24px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: 'lato-regular';
}

.checkbox input, .radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox {
    position: relative;
    display: inline-block;
    padding-left: 30px;
}

.checkbox input {
    display: none;
}

.checkbox span {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border: 1px solid #D8D3CD;
    border-radius: 5px;
    padding: 2px;
    background-color: white;
    transition: background-color 0.2s;
    color: white;
}

.checkbox input:checked + span {
    background-color: #7C9CBF;
    border-color: #7C9CBF;
    color: #FFFFFF;
}


.radio span {
    border-radius: 25px;
position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  border: 1px solid #A09F9F;
  padding: 2px;
}

.checkbox span::after, .radio span::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked ~ span::after, .radio input:checked ~ span::after {
    display: block;
}

.radio span::after {
    content: '';
    background-color: #707070;
    border-radius: 25px;
    height: 16px;
    width: 16px;
}

.checkbox span::after {
    left: 1px;
    top: 0px;
    font-family: 'DekkerIcons';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    position: relative;
    content: '\026A';
    color: white;
}

.media-form-field {
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    flex-wrap: wrap;
}

.media-form-field label {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .12);
    border-radius: 15px;
    padding: 25px;
    margin: 0 25px 10px 0;
    height: 195px;
    width: 195px;
    text-align: center;
    position: relative !important;
    cursor: pointer;
}

.media-form-field img {
    width: 100%;
    height: 100%;
}

.media-form-field .checkbox span, .media-form-field .radio span {
    background-color: #ffffff;
    position: absolute;
    top: 10px;
    right: 10px;
    left: unset;
}

.product-overview .products {
    flex: 3;
    position: relative;
}

.product-overview .products .products-overlay {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    background: rgba(255, 255, 255, .7);
}

.product-overview .product-row {
    display: flex;
    flex-direction: row;
    cursor: pointer;
    height: auto;
    padding: 15px;
}

.product-overview .product-row:hover .configs {
    opacity: 1;
}

.product-overview .product-row > figure {
    flex: 1;
    margin: 0;
    position: relative;
}

.product-overview .product-row > figure img {
    max-width: 95%;
    max-height: 95%;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*.product-overview .product-row > figure .configs {*/
/*    opacity: 0;*/
/*    width: 100%;*/
/*    padding: 5px 10px;*/
/*    background-color: #EEEDED;*/
/*    transition: opacity 0.2s ease-in-out;*/

/*    left: 0;*/
/*    bottom: 0;*/
/*    position: absolute;*/

/*    gap: 5px;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*}*/


/*.product-overview .product-row > figure .configs div.linked,*/
/*.product-overview .product-row > figure .configs div.main,*/
/*.product-overview .product-row > figure .configs div.sub {*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    gap: 5px;*/
/*}*/

/*.product-overview .product-row > figure .configs div.sub {*/
/*    display: none;*/
/*}*/

/*.product-overview .product-row > figure .configs div a {*/
/*    text-decoration: none;*/
/*    font-size: 0.7rem;*/
/*    overflow-x: hidden;*/
/*    white-space: nowrap;*/
/*    text-overflow: ellipsis;*/
/*    border: 1px solid #C3C3C3;*/
/*    background-color: #ffffff;*/
/*    border-radius: 5px;*/
/*    padding: 4px 5px;*/
/*    color: #707070;*/
/*}*/

/*.product-overview .product-row > figure .configs div a:hover {*/
/*    color: #078BCE;*/
/*}*/

.configs, .linked {
    display: flex;
    flex-wrap: wrap;
}

.configs .main, .configs .sub {
    width: 100%;
    display: none;
}

#config-1 .linked a.config-item {
    border: 1px solid #A09F9F;
    padding: 13px 13px;
    border-radius: 30px;
    margin: 10px 15px 0px 0px;
    color: #A09F9F !important;
    transition: .15s ease;
    line-height: 18px;
    outline: 1px solid transparent;
    outline-offset: 5px;
}

#config-1 .main a.config-item, #config-1 .sub a.config-item {
    border: 1px solid #A09F9F;
    padding: 13px 13px;
    border-radius: 30px;
    margin: 10px 10px 0px 0px;
    color: #A09F9F;
    transition: .15s ease;
    line-height: 18px;
    transition: .15s ease;
}

#config-1 .sub a.config-item:hover, #config-1 .main a.config-item:hover {
    color: black;
    border: 1px solid black;
    transition: .15s ease;
}

#config-1 .linked a.config-item:hover {
    outline: 1px solid gray;
    outline-offset: 5px;
    background-color: lightgray;
    color: white !important;
    transition: .15s ease;
}

#config-1 .linked a.config-active {
    outline: 1px solid #7C9CBF !important;
    outline-offset: 5px;
    color: white !important;
}

a.config-active:hover {
    color: white !important;
}
.product-view #config-2 {
    padding: 20px 0px;
    border-bottom: 1px solid #7C9CBF;
    border-top: 1px solid #7C9CBF;
}

#config-2 .linked a.config-item {
    border: 1px solid #A09F9F;
    padding: 13px 13px;
    border-radius: 5px;
    margin: 10px 10px 0 0;
    color: #A09F9F !important;
    transition: .15s ease;
    line-height: 18px;
}

#config-2 .linked a.config-item:hover {
    border: 1px solid black;
    color: black !important;
}

#config-2 .linked a.config-active {
    border: 1px solid #7C9CBF;
    color: #7C9CBF !important;
}

.pricing .product-inline-btn {
    margin-top: 0px;
}

.product-overview .product-row > div {
    flex: 3;
    display: flex;
    flex-direction: column;
    padding: 5px 10px;
}

.order-summary .product-row .name, .product-overview .product-row .name {
    font-family: 'lato-bold';
    padding: 10px 20px 10px 0;
    font-size: 16px;
    color: #121010;
    position: relative;
}

.order-summary .order-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

@media only screen and (max-width: 450px) {
    .order-summary .order-product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.product-overview .product-row .name span {
    font-family: 'lato-bold';
    font-weight: normal;
    color: #EEEDED;
    position: absolute;
    right: 0;
}

.product-overview .product-row .name span.di.heart-full {
    color: #FF8400;
    font-family: 'DekkerIcons';
}

.product-overview .product-row .details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-overview .product-row .details p.short {
    display: none;
}

.product-overview .product-row .details p {
    margin: 0 0 5px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: 'lato-regular';
    line-height: 22px;
}

.product-overview.collapsed .product-row .details p {
    margin: 0 0 15px 0;
}

/*.product-overview .product-row .details div {*/
/*    margin: auto 0 10px 0;*/
/*}*/

.product-overview .product-row .details .product-inline-btn.dealer-find {
    margin: 0px;
}

.product-overview .product-row .details div > span {
    font-family: 'lato-bold';
    color: #A09F9F;
    font-size: 19px;
}

.product-overview .product-row .details div a.cart-add {
    background-color: #EEEDED;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 20px;
    margin-left: 10px;
}

.product-overview .product-row .details div a.cart-add span {
    font-size: 20px;
}

.product-overview .product-row .pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    font-size: 19px;
}

.order-summary {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.order-summary .products {
    flex: 3;
}

.order-summary .customer-data {
    flex: 1;
    background-color: #EBEAEA;
    padding: 30px;
    margin: -120px 0 0 30px;
    height: fit-content;
    min-width: 313px;
}

.order-summary .customer-data h2 {
    margin-top: 0;
}

.order-summary .product-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.order-summary .product-row figure, .order-summary .product-row figure img {
    width: 120px;
    height: 120px;
    margin-left: 0;
}

.order-summary .product-row > div {
    flex: 4;
}

.order-summary .pricing .price-item {
    display: flex;
    margin-bottom: 10px;
}

.order-summary .price-item-bold {
    font-family: 'lato-regular' !important;
    color: black !important;
}

.order-summary .pricing .price-item .label, .order-summary .pricing .price-item .value {
    font-family: 'lato-regular';
    color: #7C9CBF;
}

.order-summary .pricing .price-item .label {
    width: 100%;
}

.order-summary .total-row .pricing span, .order-summary .product-row .pricing span, .order-summary .total-row .discount_row span {
    display: inline-block;
    width: 125px;
    font-family: 'lato-bold';
    text-align: right;
}

.order-summary .total-row .pricing, .order-summary .total-row .discount_row {
    display: inline-block;
    text-align: right;
    width: auto;
}

.order-summary .total-row {
    display: flex;
    flex-direction: row-reverse;
}

.pricing tbody tr td {
    width: 150px;
}

.pricing tbody tr .price-type {
    color: #7C9CBF;
    padding-bottom: 5px;
}

#delivery_charge, #vat, #price {
    color: #7C9CBF;
    padding-bottom: 5px;
}

.order-summary .form-footer {
    margin-top: 25px;
}

.order-summary .form-footer button:first-child {
    background-color: #EBF4F8;
    color: #323232;
}

.order-summary address {
    font-style: normal;
    margin-bottom: 25px;
}

.order-summary address span {
    display: block;
    margin-bottom: 5px;
}

.form-block {
    flex: 1;
}

.form-block .form-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.form-block .body p {
    margin-top: 0;
}

.form-block > div {
    border: 1px solid #e4e7ed;
}

.form-block .header {
    background-color: #323232;
    color: #ffffff;
    font-family: 'lato-bold';
    text-align: center;
}

.form-block .header, .form-block .body {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.hardness-display {
    border-radius: 22px;
    color: #fff;
    font-weight: 200;
    padding: 10px 30px;
    width: 100%;
}

.hardness-low {
    background-color: #003da5;
}

.hardness-high {
    background-color: #da291c;
}

.blog-row {
    display: flex;
    flex-direction: row;
    cursor: pointer;
}

.blog-overview .blog-row > figure {
    /*flex: 1;*/
}

.blog-overview .blog-row figure img {
    max-width: 220px;
}

.blog-overview .blog-row > div {
    /*flex: 4;*/
    display: flex;
    flex-direction: column;
}

.blog-overview .blog-row .details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-overview .blog-row .details div {
    margin-top: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


@media (min-width: 641px) {
    .filters {
        display: none;
    }

    .logged-in-user-small {
        display: none;
    }
}

@media (max-width: 640px) {
    .brand .logged-in-user-small {
        display: none;
    }
    .filters {
        position: fixed;
        top: 67px;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: -1;
        background-color: #ffffff;
        padding: 20px 25px;
        opacity: 0;
        transition: opacity .2s linear;
    }

    .filters.fadein {
        opacity: 1;
        z-index: 10000;
    }

    .filter {
        padding-bottom: 15px;
        border-bottom: 1px solid #E4E4E4;
    }

    .products-filter-form {
        border-top: none !important;
    }

    .products-filter-form {
        border-top: 1px solid #C3C3C3;
        padding-top: 15px;
    }

    .products-filter-form .filter-row .filter {
        display: none;
    }

    .products-filter-form > hr {
        display: none;
    }

    .logged-in-user-small {
        flex-grow: 10;
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
    }

    .socials-mobile a {
        color: white;
    }
}

.products-filter-form .filter-row .name span {
    display: block;
    cursor: pointer;
    font-size: 22px;
}

.products-filter-form .filter-row .name span {
    position: relative;
    width: 30px;
}

@media (max-width: 640px) {
    .products-filter-form .filter-row .name span {
        position: absolute;
        right: 0;
        top: 0;
    }
}

.filter-header {
    position: relative;
    text-align: right;
    padding-bottom: 10px;
}

.filter-header span {
    cursor: pointer;
    font-size: 22px;
    margin-right: 2px;
}

.filter-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 15px;
}

.filter-footer .btn {
    width: 100%;
    font-size: 15px;
    border-radius: 5px;
    padding: 10px 20px;
}

.products-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    box-shadow: 0 4px 4px 0 #00000040;
    /* -webkit-box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.25);
     box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.25);*/
}

.products-header div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.products-header button {
    border: none;
    background-color: #ffffff;
    color: #A09F9F;
    padding: 5px 0;
}

.products-header a span {
    color: #A09F9F;
}

.products-header button span {
    color: #444444;
    font-size: 18px;
    margin-right: 10px;
}

.products-header > div > div {
    position: relative;
    padding: 5px 15px;
}

@media (max-width: 744px) {
    .products-header > div > div {
        border: 0px;
    }
}

.products-header label {
    color: #A09F9F;
    cursor: pointer;
    padding: 8px 0;
}

.products-header label span:first-of-type {
    margin-left: 10px;
}

.products-header label span.fa {
    font-size: 12px;
    margin-left: 10px;
}

.products-header div div ul {
    position: absolute;
    top: 40px;
    left: 0;
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    z-index: 100;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, .12);
    width: 100%;
    display: none;
}

.products-header div div ul li {
    cursor: pointer;
    display: block;
    padding: 5px 15px;
}

.products-overview {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px;
}

.products-overview.collapsed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
}

.products-overview.collapsed.filters-active {
    grid-template-columns: repeat(3, 1fr);
}

.products-overview.collapsed .product-row {
    flex-direction: column;
    height: auto;
    transition: ease .2s;
}

.products-overview .product-row:hover {
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, .2);
    transition: ease .2s;
}

.products-overview.collapsed .product-row > figure img {
    position: relative;
}

.sorting label, .sorting .sort-text {
    font-family: 'lato-regular';
}

.sorting {
    border: 1px solid #444444;
    border-radius: 5px;
}

.sorting label {
    color: #444444;
}

@media (max-width: 744px) {
    .sorting label, .sorting .sort-text {
        color: #121010;
    }

    .products-header h1 {
        display: none;
    }
}

footer .main {
    overflow-x: hidden;
}

footer .main .content {
    background: #444444;
    padding: 40px;
}

footer .main .content > div, footer .navigation {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

footer .main .socials {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 186px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

footer .main .socials .di {
    color: white;
    font-size: 27px;
}

footer .brand {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

footer .brand figure {
    margin: 0;
}

footer .brand figure img {
    width: 150px;
}

footer .brand figcaption {
    color: white;
    margin-top: 5px;
    text-transform: uppercase;
    font-size: 10px;
}

footer .brand .address {
    color: white;
    line-height: 22px;
    margin: 25px 0 0 0;
}

footer nav {
    display: flex;
    flex-direction: column;
    width: 210px;
}

footer nav span {
    color: #ffffff;
    font-family: 'lato-bold';
    margin-bottom: 20px;
}

footer .subtitle {
    color: #D8D3CD;
    font-size: 24px;
}

footer .subitems {
    display: flex;
    flex-direction: column;
    color: white;
    line-height: 22px;
    margin: 15px 0 0 0;
}

footer .subitems a {
    font-family: 'lato-regular';
    padding-bottom: 6px;
    color: #EBF4F8;
    font-size: 15px;
}

footer .actions {
    display: flex;
    flex-direction: column;
    align-items: baseline;
}

footer nav a {
    color: white;
    padding: 5px 0;
}

footer .newsletter {
    margin-top: auto;
    width: 100%;
}

footer iframe {
    box-sizing: border-box;
    border: none;
    width: 310px;
    height: 60px;
    overflow: hidden;
}

footer .sub {
    background-color: #EBF4F8;
    padding: 15px 0;
    display: flex;
    justify-content: center;
}

footer .sub span {
    color: #5E5E5E;
}

.show-xs {
    visibility: hidden;
}

.storelocator-parent {
    width: 100%;
    border-radius: 1em;
    background-color: #f7f7f7;
    padding: 0.6em 1.2em;
}

.rating-mobile {
    display: none;
}

.footer-disclaimer {
    background: #EBF4F8;
    text-align: center;
    padding: 25px;
}

@media (max-width: 1020px) {
    footer .main .content > div, footer .navigation {
        grid-template-columns: 50% 50%;
        flex-wrap: wrap;
    }

    footer .brand {
        width: 100%;
        display: none;
    }

    .socials-mobile {
        color: white;
        display: block;
    }

    .products-overview.collapsed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1020px) and (min-width: 640px) {
    footer .brand.tablet {
        display: block !important;
        padding: 30px 15px;
        background: #444444;
    }

    .footer-menu-item .rating-container {
        display: none;
    }

}

@media (max-width: 1200px) {
    .storelocator-header {
        display: block;
    }

    .storelocator-map {
        display: block;
    }

    .storelocator-map .map {
        display: block;
        width: 100%;
        height: 600px;
    }

    .storelocator-map .side {
        display: none;
        flex-basis: 0;
        background-color: #FFFFFF;
        overflow-y: scroll;
        flex-direction: column;
        height: 300px;
    }

    .storelocator-header .item {
        display: block;
        position: relative;
        margin: 4px 12px;
        height: 5em;
    }
}

@media (min-width: 1200px) {
    .storelocator-header {
        display: flex;
        flex: 1;
    }

    .storelocator-map {
        display: flex;
    }

    .storelocator-map .map {
        flex-grow: 7;
        flex-basis: 0;
    }

    .storelocator-map .side {
        flex-basis: 0;
        background-color: #FFFFFF;
        overflow-y: scroll;
        flex-direction: column;
        height: 600px;
    }

    .storelocator-header .item {
        flex-grow: 1;
        display: block;
        position: relative;
        margin: 4px 12px;
    }
}

.storelocator-header-text {
    font-size: 1.25em;
    font-weight: 500;
    color: #252629;
    margin: 4px;
}

.storelocator-header-button {
    height: 3rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    border: none;
    border-radius: 5px;
    background-color: #252629;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
}

.storelocator-header-select {
    position: relative;
}

.storelocator-header-input input {
    border-radius: 5px;
    border: 1px solid #252629;
    height: 3rem;
    padding: 0px 12px;
    width: 100%;
}

.storelocator-header-select:after {
    content: '\f107';
    font: normal normal bold 17px/1 FontAwesome;
    position: absolute;
    right: 0;
    margin: 1rem;
}

.storelocator-header-select select {
    appearance: none;
    display: block;
    width: 100%;
    height: 3rem;
    float: right;
    background-color: #FFFFFF;
    border: 1px solid #252629;
    border-radius: 5px;
    font-size: 14px;
    padding: 12px 10px;
}

.storelocator-map.parent {
    margin: 12px;
}

.storelocator-map .map iframe {
    width: 100%;
    height: 600px;
}

.storelocator-map .side h1 {
    width: 100%;
}

.storelocator-map .side .item {
    border-bottom: 1px solid #e4e4e4;
    padding: 2rem;

    text-decoration: none;
    color: #8a8e92;
}

.storelocator-map .side .item .name {
    color: #252629;
    font-size: 1.25rem;
}

.leaflet-popup-content .name {
    color: #252629;
    font-size: 1.1rem;
}

.storelocator-map .side .item .distance {
    color: #252629;
    font-weight: 700;
    font-size: 1rem;
}

.leaflet-popup-content .distance {
    color: #252629;
    font-weight: 700;
    font-size: 1rem;
}

.full-overlay {
    display: none;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255, 255, 255, .6);
    z-index: 9999;
}

.table-flat {
    width: 100%;
}

.table-flat thead tr th {
    background-color: #323232;
    color: white;
}

.table-flat th {
    font-family: 'lato-regular';
}

.table-flat th, .table-flat td {
    text-align: left;
    padding: 15px 10px;
}

.table-flat tbody tr:nth-of-type(2n+ 2) {
    background-color: #EBF4F8;
}

@media (max-width: 1400px) {
    .wrapper .content {
        width: 1100px;
    }
}

@media (max-width: 1300px) {
    .content {
        max-width: 100% !important;
        width: 1100px !important;
    }

    .brand .content, .navigation .content {
        padding: 0 !important;
    }

    .content > div {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .wrapper .content {
        margin: 0 0 !important;
        /*padding: 50px 25px;*/
    }

    header .navigation nav a {
        color: #121010;
    }

    header .brand .logo {
        flex: 2;
    }

    header .brand .logo img {
        width: 130px;
    }

    .header-links {
        display: none;
    }

    .top-content {
        display: none;
    }

    .brand .actions .di {
        font-size: 24px;
    }

    .brand .actions a {
        margin: 0 4px;
    }

    .brand .actions a:first-child {
        margin-left: 0;
    }

    .brand .actions a:last-child {
        margin-right: 0;
    }

    .show-xs {
        visibility: visible;
    }

    .product-overview .product-row > figure {
        margin-right: 15px;
        margin-left: 15px;
        flex: 2;
    }

    .product-overview .product-row .details p.short {
        display: block;
    }

    .product-row .details p.long {
        display: none;
    }

    .product-overview .filters .filter-header, .product-overview .filters .filter-footer {
        display: block;
    }

    .products-header .do-filter {
        display: inline;
    }

    @media (max-width: 744px) {
        .products-header .do-filter, .products-header .di.settings {
            color: #121010;
        }

        .di.acc.account {
            display: none;
        }
    }

    .products-header {
        justify-content: space-between;
    }

    footer {
        position: relative;
        z-index: 0;
    }

    footer .main .content > div {
        justify-content: space-around;
    }

    footer .brand figure img {
        width: 150px;
    }

    footer .brand figcaption {
        font-size: .7em;
    }

    footer .brand {
        margin-top: 10px;
    }

    footer .main .rating {
        margin: 25px 0 25px 0;
    }

    footer .main .newsletter {
        margin: 0 0 65px 0;
    }

    footer .main .content > div {
        position: relative;
    }

    footer .navigation {
        justify-content: space-evenly;
        width: 100%;
        margin-top: 25px;
    }

    footer nav {
        width: 100px;
    }

    footer .main .content > div, footer .navigation {
        grid-template-columns: 100%;
    }

    .footer-menu-item a {
        color: white !important;
    }

    .rating-mobile {
        display: block;
    }

    footer .brand {
        display: block;
    }

    .products-filter-form .filter-row .name {
        position: relative;
        cursor: pointer;
        font-size: 20px;
        font-family: 'lato-regular' !important;
        margin-bottom: 25px !important;
    }
}

.active-filter {
    color: #7C9CBF;
    font-family: 'lato-bold';
}

.active-filter > .filter-row {
    border-bottom: 1px solid #E4E4E4;
}

input[type="file"] {
    display: none;
}

.custom-file-upload {
    border: 1px solid transparent;
    border-right: 13px;
    display: block;
    width: fit-content;
    max-width: 100%;
    color: white;
    background-color: #2973A2;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 100vh;
    padding: 0.7rem 1.5rem;
}

.upload-icon {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: white;
}

#ar-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.error-row {
    margin-bottom: 52px;
}

.language-header {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.language-header a, .language-header img {
    width: 150px;
    margin-bottom: 10px;
}

.language-selector {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    padding: 20px;
    background-color: #EBEAEA;
}

.language-selector hr {
    margin-top: 0;
    margin-bottom: 0;
}

.language-button {
    display: flex;
    padding: 0px 0 5px 10px;
    list-style: none;
    cursor: pointer;
}

.language-option {
    display: flex;
    margin-top: 10px;
}

.language-item {
    padding-left: 5px;
    padding-bottom: 5px;
}

.language-button:hover .language-item {
    font-family: 'lato-bold';
}

.language-button:hover .language-underline {
    width: 100%;
}

/*.language-button:hover .di-small {*/
/*    font-family: 'lato-bold';*/
/*}*/

.language-underline {
    transition: width 0.5s;
    width: 10px;
    margin-inline-start: 0;
}

.language-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 744px) {
    .language-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.language-header h1 {
    font-family: 'lato-bold';
    text-transform: inherit;
    font-size: 22px;
    text-align: start;
}

.language-selector span {
    font-family: 'lato-bold';
    font-size: 18px;
}

.language-selector .subtext {
    font-family: 'lato-regular';
    font-size: 12px;
}

.di-small {
    font-size: 21px;
}

.support-img img {
    max-width: 100%;
    height: auto;
    width: auto;
}

.support-img .no-image {
    max-width: 100%;
    height: 200px;
    width: 200px;
}

.no-image {
    max-width: 500px;
    max-height: 500px;
}

.toggle-show {
    display: block;
    padding: 10px;
    position: absolute;
    font-size: 1.5rem;
    cursor: pointer;
    right: 2px;
}

.input-icons {
    position: relative;
    width: 100%;
}

.error-message {
    max-width: 100%;
    overflow: hidden;
    z-index: 1000;
    display: none;
    position: absolute;
    color: #fff;
    background-color: #e74c3c;
    border-radius: 5px;
    padding: 8px;
    margin-top: 2px;
}

.submenu-items {
    display: none;
}

.submenu-items.expanded {
    display: block;
}

.dealer-website {
    font-weight: 600;
    text-decoration: underline;
}

.logged-in-user {
    /*padding-top: 4px;*/
    text-decoration: none;
    background: #EBF4F8;
}

.top-content .header-container .actions {
    display: flex;
}

.actions-mobile {
    position: relative;
}

.flash-message {
    position: fixed;
    z-index: 10000;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);

    cursor: pointer;
    user-select: none;

    padding: 10px 15px;
    color: #ffffff;
    box-shadow: 0 0.46875rem 2.1875rem rgba(4, 9, 20, 0.03), 0 0.9375rem 1.40625rem rgba(4, 9, 20, 0.03), 0 0.25rem 0.53125rem rgba(4, 9, 20, 0.05), 0 0.125rem 0.1875rem rgba(4, 9, 20, 0.03);
}

.flash-message.info {
    background-color: #48aee2;
}

.flash-message.success {
    background-color: #61bc46;
}

.flash-message.warning {
    background-color: #f7901e;
}

.flash-message.alert {
    background-color: #ee2424;
}

.flash-message > div {
    display: flex;
    align-items: center;
}

.flash-message div span {
    font-size: 24px;
}

.flash-message div div {
    padding: 15px 15px;
}

#discount-price #discount {
    display: inline;
    width: 100%;
    font-weight: 400;
    font-size: 10px;
}

.pricing .price {
    color: #121010 !important;
}

.discount_percentage {
    font-size: 10px;
    font-weight: 400;
}

.account-name {
    padding-left: 8px;
}

.small-icon i {
    font-size: 15px;
    line-height: 0;
}

@media (max-width: 744px) {
    .small-icon i {
        font-size: 18px;
    }
}

footer .brand.tablet {
    display: none;
}

.tabs {
    margin: 50px 0;
}

.accordion-header {
    font-family: 'lato-bold';
    font-size: 16px;
    color: #A09F9F;
    background: #EBF4F8;
    border: none;
    padding: 10px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header.active {
    color: #121010;
}

.tab {
    display: none;
    padding: 10px 0;
    font-family: 'lato-regular';
    line-height: 22px;
    animation: fadeIn 0.3s ease;
}

.tab.open {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.accordion-container {
    margin-top: 50px;
    display: none;
}

@media (max-width: 744px) {
    .accordion-container {
        margin-top: 10px;
    }
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-family: 'lato-bold';
    font-size: 16px;
    margin: 10px 0;
    color: #121010;
    border-radius: 5px;
}

.accordion-header .small-icon {
    transform: rotate(-90deg);
}

/*.accordion-header.active {*/
/*    color: #121010;*/
/*}*/

.accordion-content {
    display: none;
    margin-bottom: 20px;
}

.accordion-content > * {
    font-family: 'lato-regular';
    line-height: 22px;
}

@media (max-width: 744px) {
    .accordion-container {
        display: block;
    }

    .actions-container, .actions-content {
        width: 100% !important;
    }

    .mobile-action-container,
    .mobile-action-container .actions-container {
        display: none !important;
    }

    .mobile-action-container.open,
    .mobile-action-container.open .actions-container {
        display: block !important;
    }
}

/* Read more styles */

.clamp {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    line-height: 1.2em;
    max-height: 4.4em;
    margin-bottom: 20px;
}

.clamp.expanded {
    display: -webkit-box;
    -webkit-line-clamp: none;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: none;
}

.read-more {
    display: block;
    font-family: 'lato-regular';
    text-align: end;
    cursor: pointer;
    margin-top: -10px;
    color: #A09F9F;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

/* Slider styles */
.slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #D8D3CD;
}

.slides {
    display: flex;
}

.slides img {
    width: 100%;
    height: 537px;
    display: none;
    object-fit: contain;
}

.slider .navigation-dots {
    text-align: center;
    margin-top: 10px;
}

.slider .arrow {
    transform: scale(2.5);
    cursor: pointer;
    color: #e0dede;
    border-radius: 100px;
    line-height: 11px;
    transition: .2s ease;
}

.arrow.next.fa.fa-angle-right {
    margin-right: 10px;
    padding: 2px 4px 2px 5px;
}

.arrow.prev.fa.fa-angle-left {
    margin-left: 10px;
    padding: 2px 5px 2px 4px;
}

.slider .arrow:hover {
    transform: scale(2.5);
    cursor: pointer;
    color: #969696;
    background: #eeeeee;
    transition: .2s ease;
}

.slider .dots {
    margin-top: -40px;
    padding-bottom: 10px;
}

.slider .dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.slider .dot.active {
    background-color: #717171;
}

.slider .slider-arrows {
    display: flex;
    justify-content: space-between;
    margin: 250px 0 0 0;
    z-index: 999;
    position: absolute;
    width: 100%;
    padding: 0 10px;
}

.slider .slides div .video-frame iframe {
    width: 537px;
    height: 537px;
}

.slider .slides .model-container .model-viewer {
    width: 537px;
}

@media only screen and (max-width: 650px) {
    .slider .slides div .video-frame iframe {
        width: 90vw;
        height: 537px;
    }

    .slider .slides .model-container .model-viewer {
        width: 90vw;
    }
}

.slider .slides .model-container {
    width: 100%;
}

.return {
    /*margin-top: 65% !important;*/
}

.cart-item > div:last-child .di {
    font-size: 10px;
    cursor: pointer;
}

.order-discount-delete {
    font-size: 0.8rem;
}

#remove-discount {
    cursor: pointer;
}

.fullscreen-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    z-index: 9999;
    padding: 50px 0;
}

.fullscreen-image img {
    background: white;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 10000;
}

.close-button:after {
    font-family: 'DekkerIcons';
    content: '\026A';
}

.cart-footer-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.button.empty-btn, .button.order-btn {
    border-radius: 5px;
    font-family: 'lato-bold';
}

.button.empty-btn {
    color: #121010;
    background-color: transparent;
    font-family: 'lato-bold';
}

.button.empty-btn:hover {
    color: white;
    background-color: #7C9CBF;
}

.overlay {
    position: absolute;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 999;
}

.has-children > div {
    width: 100%;
}

@media (max-width: 744px) {
    .has-children > div {
        display: none;
    }
}

@media (min-width: 745px) {
    .actions {
        display: flex;
    }

    .filters {
        max-width: 300px;
    }

    .actions .logged-in-user {
        background: transparent;
    }

    .first-item {
        display: none;
    }
}

.has-children > .di.angle-right {
    font-size: 18px;
    position: absolute;
    right: 8px;
    margin-top: -39px;
}

.has-children.active > i {
    transform: rotate(90deg);
}

.product-tab-title {
    font-size: 16px;
    font-family: 'lato-bold' !important;
    margin-top: 0;
}

.config-colors {
    margin-bottom: 20px;
}

.config-label {
    display: flex;
}

.config-label span:first-child {
    font-family: 'lato-bold';
}

.config-active-label {
    font-family: 'lato-regular';
    margin-left: 3px;
}

.rating-container {
    transform-origin: left;
    transform: scale(0.6);
    margin-top: -10px;
}
.cart-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ci {
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    position: relative;
    font-size: 25px;
    max-height: 22px;
    width: 22px;
}

.language-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.language-close:hover {
    cursor: pointer;
}

.ci.en:before {
    content:url('../../images/flag_International.svg');
}

.ci.nl:before {
    content:url('../../images/flag_Netherlands.svg');
}

.ci.de:before {
    content:url('../../images/flag_Germany.svg');
}

.ci.be:before {
    content:url('../../images/flag_Belgium.svg');
}

.model-container {
    width: 100%;
    height: auto;
    position: relative;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.download-tile {
    padding: 15px;
    text-align: center;
    border: 1px solid #12101020;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.download-tile span {
    color: #121010;
}

.download-tile img {
    width: 50px;
    margin-bottom: 10px;
}

/* full_screen_slider styles */
#main_fullscreen_div {
    display: none;
    height: 0;
}

.fullscreen-image .slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.fullscreen-image .slides {
    display: flex;
}

.fullscreen-image .slides img {
    width: 100%;
    height: 537px;
    display: none;
    object-fit: contain;
}

.fullscreen-image .slider .navigation-dots {
    text-align: center;
    margin-top: 10px;
}

.fullscreen-image .slider .arrow {
    transform: scale(2.5);
    cursor: pointer;
    color: #e0dede;
    border-radius: 100px;
    line-height: 11px;
    transition: .2s ease;
}

.fullscreen-image .arrow.next.fa.fa-angle-right {
    margin-right: 10px;
    padding: 2px 4px 2px 5px;
}

.fullscreen-image .arrow.prev.fa.fa-angle-left {
    margin-left: 10px;
    padding: 2px 5px 2px 4px;
}

.fullscreen-image .slider .arrow:hover {
    transform: scale(2.5);
    cursor: pointer;
    color: #969696;
    background: #eeeeee;
    transition: .2s ease;
}

.fullscreen-image .slider .dots {
    margin-top: -40px;
    padding-bottom: 10px;
}

.fullscreen-image .slider .dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.fullscreen-image .slider .dot.active {
    background-color: #717171;
}

.fullscreen-image .slider .slider-arrows {
    display: flex;
    justify-content: space-between;
    margin: 250px 0 0 0;
    z-index: 999;
    position: absolute;
    width: 100%;
    padding: 0 10px;
}

#fullscreen_slider {
    max-width: 100%;
}

#fullscreen_slider .slider-arrows {
    margin: 40vh 0 0 0;
}

#fullscreen_slider .slides {
    display: flex;
    justify-content: center;
}

#fullscreen_slider .slides img {
    height: 90vh;
}

#fullscreen_slider .slides .full_slide img {
    border: 5vw solid white;
}

@media only screen and (max-width: 800px) {
    #fullscreen_slider .slides img {
        height: auto;
    }
    #fullscreen_slider {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    #fullscreen_slider .slider-arrows {
        margin: 0;
    }
}

@media only screen and (max-width: 845px) {
    .order-summary .products {
        order: 2;
    }
    .order-summary .customer-data {
        order: 1;
        margin: 15px 0 30px 0;
    }
}

#order h2 {
    margin-top: 0;
    font-size: 35px;
    font-weight: 400;
}

.customer-data div h2 {
    font-family: 'lato-bold';
    font-size: 16px !important;
    margin-bottom: 10px;
}

.order-summary button {
    border-radius: 6px;
    padding: 15px 20px;
    font-family: 'lato-bold';
}

.selsiuz_select {
    display: block;
    clear: both;
    width: 100%;
    max-width: 870px;
    margin-top: 10px;
    border: 2px solid #D8D3CD;
    border-radius: 5px;
    padding: 15px 20px;
    font-family: 'lato-regular';
    background-color: inherit;
}

.products-header .do-filter {
    color: #444444;
    border: 1px solid #444444;
    border-radius: 5px;
    padding: 10px 15px;
}

.actions-content {
    overflow-y: auto!important;
    max-height: 80vh!important;
}