@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons&display=swap");


/*
 * Main styles
 */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Overpass", -apple-system, system-ui, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    font-weight: 400;
    color: #374151;
}

body.offcanvas-active {
    overflow: hidden;
}

#content {
    display: block; 
}

h1 {
    font-weight: 800;
    font-size: 48px;
    color: #111823;
}

h1.smaller {
    font-size: 38px;
}

@media (max-width: 576px) {
    h1 {
        font-size: 32px;
    }
    h1.smaller {
        font-size: 28px;
    }
}

h2 {
    font-weight: 800;
    font-size: 38px;
    color: #111823;
}

@media (max-width: 576px) {
    h2 {
        font-size: 22px;
    }
}

h3 {
    font-weight: 800;
    font-size: 26px;
    color: #111823;
}

@media (max-width: 576px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-weight: 700;
    font-size: 20px;
    color: #111823;
}

@media (max-width: 576px) {
    h4 {
        font-size: 18px;
    }
}

time {
    color: #A0AEC0;
    font-size: 12px;
}

ol.list,
ul.list,
ul.list-icon {
    margin-top: 40px;
    list-style-type: none;
}

@media (max-width: 576px) {
    ol.list,
    ul.list,
    ul.list-icon {
        padding-left: 10px;
    }
}

ol.list li,
ul.list li,
ul.list-icon li {
    font-weight: 700;
    margin-bottom: 10px;
}

ol.list li {
    counter-increment: step;
}

ol.list li:before {
    display: inline-block;
    content: counter(step) ".";
    color: #3c78f0;
    font-weight: 800;
    min-width: 30px;
    font-variant-numeric: tabular-nums;
}

ul.list li:before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #3c78f0;
    border-radius: 8px;
    margin-right: 17px;
}

ul.list-icon {
    margin-top: 40px;
    margin-bottom: 0;
    list-style: none;
}

ul.list-icon li {
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

ul.list-icon li:before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 16px;
    background-image: url("../img/icon.png");
    background-size: cover;
    margin-right: 15px;
}

.backdrop {
    height: 100%;
    z-index: 15;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.6);
    -webkit-transition: opacity .2s linear, visibility .2s;
    transition: opacity .2s linear, visibility .2s;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.backdrop.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 991px) {
    .backdrop {
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
}

.material-icons {
    color: #718096;
}

.btn-outline {
    border: 3px solid #3c78f0;
    font-weight: 700;
    width: 200px;
    color: #111823;
    font-size: 18px;
    font-weight: 700;
}

.btn-outline:hover {
    background-color: #3c78f0;
    color: #ffffff;
}

.btn-large {
    width: 100%;
    max-width: 380px;
    border-radius: 45px;
}

.ribbon {
    position: absolute;
    left: -15px;
    top: 15px;
    background-color: #34dea4;
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    padding: 5px 15px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.product-detail .product-image.ribbon-border .ribbon  {
    top: 10px;
}

@media (max-width: 768px) {
    .ribbon, .product-detail .product-image.ribbon-border .ribbon {
        top: -18px;
    }
}

.ribbon:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    border-left: solid 15px transparent;
    border-top: solid 12px #2ec592;
}

.tag-container {
    display: block;
    text-align: left;
}

.masthead.with-content .tag-container {
    text-align: center;
}

.tag-container.merk {
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .tag-container {
        text-align: center;
    }
}

.product.-small .tag-container {
    text-align: center;
}

.tag-container .tag {
    border-radius: 4px;
    background-color: #EDF2F7;
    padding: 5px 8px;
    color: #718096;
    font-size: 13px;
    line-height: 1;
    margin-top: 5px;
    margin-right: 5px;
    display: inline-block;
}

.tag-container .tag a {
    color: #718096;
}
.tag-container .tag a:hover {
    color: #718096;
    text-decoration: none;
}

.tag-container.large .tag {
    font-size: 15px;
    padding: 7px 10px 5px 10px;
}

.review {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #718096;
}

.-small .review {
    margin-top: 0px;
}

.review .stars-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 5px;
}

.review .stars-container img {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.review .stars-container img:last-child {
    margin-right: 0;
}

.review .review-number {
    font-weight: 800;
    font-size: 20px;
    color: #718096;
    line-height: 1;
}

.review .review-number img {
    width: 15px;
    margin-right: 3px;
}

.availability-container {
    font-size: 15px;
    padding: 0;
    color: #26b182;
    margin-top: 15px;
    font-weight: bold;
}

.btn {
    display: inline;
}
.btn-bol,
.btn-aanraden {
    margin: auto;
    font-size: 16px;
    line-height: 18px;
    border-radius: 5px;
    border: none;
    padding: 11px 20px 10px 20px;
    display: inline-block;
}

.btn-bol {
    background-color: #3c78f0;
    color: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 600;
    width: 100%;
}

.btn-bol:hover {
    background-color: #111df7;
    color: #ffffff;
}

.btn-aanraden {
    background-color: #34dea4;
    color: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 600;
    width: 100%;
}

@media (max-width: 767px) {
    .btn-aanraden, .btn-bol {
        width: 100%;
    }
}

.btn-aanraden img {
    width: 15px !important;
    margin-right: 5px;
    -webkit-transition: .15s;
    transition: .15s;
}

.btn-aanraden:hover  {
    color: rgba(255,255,255,0.9);
}

.btn-aanraden:hover img {
    -webkit-transform: rotate(-10deg) scale(1.2);
    transform: rotate(-10deg) scale(1.2);
}

.-small .btn-aanraden {
        margin-top: 15px;
}
.-small .btn-bol {
        margin-top: 5px;
}

@media (max-width: 767px) {
    .btn-aanraden {
        margin-top: 15px;
    }
    .btn-bol {
        margin-top: 5px;
    }
}

ol.breadcrumb {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
}

ol.breadcrumb li.breadcrumb-item {
    font-size: 13px;
    color: #718096;
}

ol.breadcrumb li.breadcrumb-item:before {
    content: '•';
    color: #D1D5DB;
}

ol.breadcrumb li.breadcrumb-item:first-child:before {
    display: none;
}

/*
 * Header styles
 */
header {
    position: relative;
    z-index: 20;
    background-color: #ffffff;
}

@media (max-width: 991px) {
    header {
        z-index: auto;
    }
}

.navbar-light .navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-light button.navbar-toggler img {
    height: 28px;
}

header nav.navbar {
    height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    position: static;
}

header nav.navbar a.navbar-brand {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

header nav.navbar a.navbar-brand .logo {
    width: 240px;
}

header nav.navbar .collapse {
    height: 100%;
}

@media (max-width: 991px) {
    header nav.navbar {
        height: 70px;
    }
    header nav.navbar .mobile-offcanvas {
        visibility: hidden;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
        border-radius: 0;
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 20%;
        bottom: 0;
        z-index: 20;
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
        transition: visibility .2s ease-in-out, -webkit-transform .2s ease-in-out;
        transition: visibility .2s ease-in-out, transform .2s ease-in-out;
        transition: visibility .2s ease-in-out, transform .2s ease-in-out, -webkit-transform .2s ease-in-out;
        background-color: #ffffff;
    }
    header nav.navbar .mobile-offcanvas.show {
        visibility: visible;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    header nav.navbar .mobile-offcanvas ul.navbar-nav {
        margin-top: 40px;
        border-top: 1px solid #D1D5DB;
        border-bottom: 1px solid #D1D5DB;
    }
    header nav.navbar .mobile-offcanvas ul.navbar-nav li.nav-item {
        border: none;
        border-top: 1px solid #D1D5DB;
        padding: 0 15px;
    }
    header nav.navbar .mobile-offcanvas ul.navbar-nav li.nav-item:first-child {
        border: none;
    }
    header nav.navbar .mobile-offcanvas ul.navbar-nav li.nav-item.dropdown:hover {
        border: none;
    }
    header nav.navbar .mobile-offcanvas ul.navbar-nav li.nav-item.dropdown a:after {
        display: none;
    }
    header nav.navbar .mobile-offcanvas ul.navbar-nav li.nav-item > a {
        display: block;
        padding: 10px 0;
        font-size: 18px;
        color: #3c78f0;
    }
    header nav.navbar .mobile-offcanvas ul.navbar-nav li.nav-item .megamenu-dropdown {
        opacity: 1;
        visibility: visible;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        min-height: 0;
    }
    header nav.navbar .mobile-offcanvas .navbar-right {
        margin-top: 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        padding: 10px 15px;
    }
    header nav.navbar .mobile-offcanvas .navbar-right form {
        width: 100%;
    }
    header nav.navbar .mobile-offcanvas .navbar-right form .input-container input {
        width: 100%;
    }
    header nav.navbar .mobile-offcanvas .navbar-right > a {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    header nav.navbar .mobile-offcanvas {
        right: 0;
    }
}

header nav.navbar .btn-close {
    display: none;
    border: none;
    background-color: transparent;
    padding: 5px;
    position: absolute;
    top: 5px;
    right: 10px;
}

@media (max-width: 991px) {
    header nav.navbar .btn-close {
        display: block;
    }
}

header nav.navbar ul.navbar-nav {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

header nav.navbar ul.navbar-nav li.nav-item {
    height: 100%;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

header nav.navbar ul.navbar-nav li.nav-item.dropdown {
    position: static;
}

header nav.navbar ul.navbar-nav li.nav-item.dropdown:hover {
    border-bottom: 4px solid #3c78f0;
}

header nav.navbar ul.navbar-nav li.nav-item.dropdown:hover:before {
    opacity: 1;
    visibility: visible;
}

header nav.navbar ul.navbar-nav li.nav-item.dropdown:hover .megamenu-dropdown {
    opacity: 1;
    visibility: visible;
}

header nav.navbar ul.navbar-nav li.nav-item.dropdown > a:after {
    border-right: solid 6px transparent;
    border-left: solid 6px transparent;
    border-top: solid 6px #3c78f0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute;
    z-index: -1;
    content: '';
    bottom: 20px;
    left: 50%;
}

header nav.navbar ul.navbar-nav li.nav-item > a {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    color: #111823;
    font-weight: 700;
    font-size: 18px;
    padding: 0 30px;
    letter-spacing: 0.5px;
}

header nav.navbar ul.navbar-nav li.nav-item .megamenu-dropdown {
    display: block;
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
}

header nav.navbar .navbar-right {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

header nav.navbar .navbar-right form .input-container {
    position: relative;
}

header nav.navbar .navbar-right form .input-container span.material-icons {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 12px;
    z-index: 1;
}

header nav.navbar .navbar-right form .input-container input {
    border-width: 2px;
    border-color: #A0AEC0;
    border-radius: 38px;
    width: 120px;
    padding-left: 40px;
    padding-right: 10px;
}

header nav.navbar .navbar-right form .input-container input::-webkit-input-placeholder {
    color: #A0AEC0;
    font-weight: 700;
}

header nav.navbar .navbar-right form .input-container input::-moz-placeholder {
    color: #A0AEC0;
    font-weight: 700;
}

header nav.navbar .navbar-right form .input-container input:-ms-input-placeholder {
    color: #A0AEC0;
    font-weight: 700;
}

header nav.navbar .navbar-right form .input-container input::-ms-input-placeholder {
    color: #A0AEC0;
    font-weight: 700;
}

header nav.navbar .navbar-right form .input-container input::placeholder {
    color: #A0AEC0;
    font-weight: 700;
}

header nav.navbar .navbar-right > a {
    line-height: 1;
    margin-left: 20px;
}

header nav.navbar .navbar-right > a:hover .material-icons {
    color: #3c78f0;
}

header .subnav {
    background-color: #3c78f0;
}

header .subnav.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index:10;
}

header .subnav .navbar {
    color: #ffffff;
    padding-top: 0;
    padding-bottom: 0;
}

header .subnav .navbar .navbar-toggler {
    color: #fff;
    font-size: 18px;
    line-height: 18px;
}

header .subnav .navbar .product-category-title {
    font-size: 19px;
    font-weight: 700;
}

header .subnav .navbar ul.navbar-nav {
    margin-left: 50px;
}

header .subnav .navbar ul.navbar-nav li.nav-item.dropdown:before {
    z-index: 5;
    top: 152px;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

header .subnav .navbar ul.navbar-nav li.nav-item.dropdown:hover:before {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    header .subnav .navbar ul.navbar-nav li.nav-item.dropdown:hover > a {
        border-bottom: 4px solid rgba(255, 255, 255, 0.8);
    }
}

header .subnav .navbar ul.navbar-nav li.nav-item.dropdown:hover > a span.material-icons {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

header .subnav .navbar ul.navbar-nav li.nav-item.dropdown:hover .dropdown-merken {
    opacity: 1;
    visibility: visible;
}

header .subnav .navbar ul.navbar-nav li.nav-item.dropdown .dropdown-merken {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    display: block;
    opacity: 0;
    visibility: hidden;
}

header .subnav .navbar ul.navbar-nav li.nav-item > a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px 20px;
    color: #ffffff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
}

header .subnav .navbar ul.navbar-nav li.nav-item > a.dropdown-toggle {
    padding-right: 10px;
}

header .subnav .navbar ul.navbar-nav li.nav-item > a:hover, header .subnav .navbar ul.navbar-nav li.nav-item > a.active {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 992px) {
    header .subnav .navbar ul.navbar-nav li.nav-item > a:hover, header .subnav .navbar ul.navbar-nav li.nav-item > a.active {
        border-bottom: 4px solid rgba(255, 255, 255, 0.8);
    }
}

header .subnav .navbar ul.navbar-nav li.nav-item > a.active {
    font-weight: 600;
}

header .subnav .navbar ul.navbar-nav li.nav-item > a span.material-icons {
    color: #ffffff;
    font-size: 18px;
    margin-left: 3px;
    -webkit-transform: none;
    transform: none;
}

header .subnav .navbar ul.navbar-nav li.nav-item > a.dropdown-toggle:after {
    display: none;
}

@media (max-width: 991px) {
    header .subnav .navbar ul.navbar-nav {
        margin-left: 0;
        padding-bottom: 20px;
    }
    header .subnav .navbar ul.navbar-nav li.nav-item.dropdown:hover > a {
        border: none;
    }
    header .subnav .navbar ul.navbar-nav li.nav-item.dropdown:hover > a span.material-icons {
        -webkit-transform: none;
        transform: none;
    }
    header .subnav .navbar ul.navbar-nav li.nav-item.dropdown.show > a span.material-icons {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    header .subnav .navbar ul.navbar-nav li.nav-item.dropdown .dropdown-merken {
        display: none;
    }
    header .subnav .navbar ul.navbar-nav li.nav-item.dropdown .dropdown-merken.show {
        display: block;
        opacity: 1;
        visibility: visible;
    }
    header .subnav .navbar ul.navbar-nav li.nav-item > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 10px 0;
        border: none;
    }
    header .subnav .navbar ul.navbar-nav li.nav-item > a:hover, header .subnav .navbar ul.navbar-nav li.nav-item > a.active {
        border: none;
    }
}


@media (max-width: 991px) {
    header .subnav .navbar .navbar-toggler {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        padding: 13px 0 13px 20px;
    }
}

header .subnav .navbar .navbar-toggler[aria-expanded="true"] span.material-icons {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

header .subnav .navbar .navbar-toggler span.material-icons {
    color: #ffffff;
    font-size: 18px;
    margin-left: 3px;
}

header .navbar {
    padding-left: 0;
    padding-right: 0;
}

.megamenu-dropdown {
    margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    min-height: 400px;
    z-index: 10;
}

.megamenu-dropdown .divider {
    border-top: 1px solid #D1D5DB;
    width: 100%;
}

.megamenu-dropdown .megamenu-container {
    position: relative;
    padding: 20px 0;
    width: 100%;
}

.megamenu-dropdown .megamenu-container .megamenu-overview-link {
    display: none;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list {
    width: 280px;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item {
    position: static;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:hover .megamenu-content, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:focus .megamenu-content, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item.show .megamenu-content {
    display: block;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:hover a.megamenu-category-link, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:focus a.megamenu-category-link, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item.show a.megamenu-category-link {
    background-color: #F7FAFC;
    text-decoration: none;
    font-weight: 700;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:hover a.megamenu-category-link span.material-icons, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:focus a.megamenu-category-link span.material-icons, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item.show a.megamenu-category-link span.material-icons {
    color: #3c78f0;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item a.megamenu-category-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -10px;
    padding: 10px;
    font-size: 15px;
    line-height: 1;
    border-radius: 4px;
    font-weight: 400;
    color: #000000;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item a.megamenu-category-link span.material-icons {
    color: #D1D5DB;
}

.megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item .megamenu-content-title {
    display: none;
}

.megamenu-dropdown .megamenu-container .megamenu-content {
    display: none;
    position: absolute;
    top: 20px;
    right: 0;
    bottom: 20px;
    left: 320px;
}

.megamenu-dropdown .megamenu-container .megamenu-content .expanded {
    width: 100%;
    max-width: 100%;
    flex: none;
}

.megamenu-dropdown .megamenu-container .megamenu-content .megamenu-back-link {
    display: none;
    width: 100%;
    color: #3c78f0;
    margin-bottom: 15px;
}

.megamenu-dropdown .megamenu-container .megamenu-content .megamenu-back-link:hover {
    text-decoration: none;
}

.megamenu-dropdown .megamenu-container .megamenu-content .megamenu-back-link .material-icons {
    font-size: inherit;
    position: relative;
    top: 3px;
    left: -2px;
    display: inline;
    color: #3c78f0;
}

.megamenu-dropdown .megamenu-container .megamenu-content .megamenu-back-link.show {
    display: block;
}

.megamenu-dropdown .megamenu-container .megamenu-content ul.list-group {
    margin-bottom: 20px;
}

.megamenu-dropdown .megamenu-container .megamenu-content .expanded ul.list-group {
    display: block;
}

@media (max-width: 991px) {
    .megamenu-dropdown .megamenu-container .megamenu-content ul.list-group {
        margin-bottom: 20px;
    }
}

.megamenu-dropdown .megamenu-container .megamenu-content ul.list-group.hide {
    display: none;
}

.megamenu-dropdown .megamenu-container .megamenu-content .expanded li.list-group-item {
    display: inline-block;
    float: left;
    width: 250px;
}
.megamenu-dropdown .megamenu-container .megamenu-content .expanded li.list-group-item:first-child {
    display: block;
    float: none;
    width: 100%;
}
.megamenu-dropdown .megamenu-container .megamenu-content .expanded li.list-group-item:last-child {
    display: none;
}

.megamenu-dropdown .megamenu-container .megamenu-content li.list-group-item.only-on-expand {
    display: none;
}

.megamenu-dropdown .megamenu-container .megamenu-content .expanded li.list-group-item.only-on-expand {
    display: inline-block;
}

.megamenu-dropdown .megamenu-container .megamenu-content a {
    display: block;
    padding: 4px;
    color: #333;
    font-size: 15px;
}

.megamenu-dropdown .megamenu-container .megamenu-content a.title {
    font-weight: 700;
    margin-bottom: 5px;
    color: #000000;
}

.megamenu-dropdown .megamenu-container .megamenu-content a.menu-more {
    margin-bottom: 0px;
    color: #3c78f0;
}

.megamenu-dropdown .megamenu-container .megamenu-content a.menu-more:hover {
    text-decoration: none;
}

.megamenu-dropdown .megamenu-container .megamenu-content a.menu-more .material-icons {
    font-size: inherit;
    position: relative;
    top: 3px;
    left: -2px;
    display: inline;
    color: #3c78f0;
}

@media (max-width: 991px) {
    .megamenu-dropdown {
        min-height: 0;
        margin-bottom: 20px;
    }
    .megamenu-dropdown .divider {
        display: none;
    }
    .megamenu-dropdown .container {
        padding: 0;
        max-width: none;
        position: static;
    }
    .megamenu-dropdown .megamenu-container {
        padding: 0;
    }
    .megamenu-dropdown .megamenu-container .megamenu-overview-link {
        margin-top: 10px;
        font-size: 15px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        color: #3c78f0;
    }
    .megamenu-dropdown .megamenu-container .megamenu-overview-link:hover {
        text-decoration: none;
    }
    .megamenu-dropdown .megamenu-container .megamenu-overview-link span.material-icons {
        font-size: 20px;
        margin-left: -5px;
        color: #3c78f0;
    }
    .megamenu-dropdown .megamenu-container .megamenu-overview-link.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list {
        width: auto;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:hover .megamenu-content, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:focus .megamenu-content, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item.show .megamenu-content {
        display: none;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:hover a.megamenu-category-link, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item:focus a.megamenu-category-link, .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item.show a.megamenu-category-link {
        font-weight: 400;
        background-color: #ffffff;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item a.megamenu-category-link span.material-icons {
        color: #3c78f0;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item .megamenu-content-title {
        font-weight: 700;
        margin-bottom: 20px;
        margin-top: 24px;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item .megamenu-content {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        background-color: #ffffff;
        padding-left: 10px;
        border-left: 2px solid #D1D5DB;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item .megamenu-content.show {
        display: block;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item .megamenu-content .col-12 {
        margin-top: 0;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item .megamenu-content .col-12:first-child {
        margin-top: 0;
    }
    .megamenu-dropdown .megamenu-container ul.megamenu-list li.list-group-item .megamenu-content a {
        padding: 6px 0;
    }
}

.dropdown-merken {
    border-radius: 8px;
    padding: 30px 45px;
    left: -100px;
    z-index: 5;
    border: none;
    margin-top: 0;
}

.dropdown-merken .dropdown-header {
    padding-left: 0;
    font-size: 15px;
    font-weight: 700;
    color: #000000;
}

.dropdown-merken ul {
    width: 800px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.dropdown-merken ul li {
    width: 33%;
    border: none;
    padding: 0;
}

.dropdown-merken ul li > a {
    display: block;
    padding: 4px;
    color: #111823;
    font-size: 15px;
    padding-left: 0;
}

@media (max-width: 1200px) {
    .dropdown-merken {
        left: -200px;
    }
}

@media (max-width: 991px) {
    .dropdown-merken {
        left: auto;
        padding: 20px;
        margin-bottom: 15px;
    }
    .dropdown-merken ul {
        width: auto;
    }
    .dropdown-merken ul li {
        width: 50%;
    }
}

footer {
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #EDF2F7;
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0;
    }
}

footer a .logo {
    width: 100%;
    max-width: 240px;
}

footer .copyright {
    text-align: center;
    font-size: 14px;
    margin-top: 10px;
    color: #718096;
}

footer .copyright a {
    color: #718096;
}

.masthead {
    background-color: #F7FAFC;
    padding: 80px 0;
    padding-bottom: 0;
    text-align: center;
    border-bottom: 1px solid rgb(233 245 255);
}

.masthead.with-content {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.masthead.homepage {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    border-bottom: none;
}

.masthead.product-scroll {
    text-align: center;
    padding-top: 0px;
    padding-bottom: 30px;
    border-bottom: none;
}

.masthead .relative {
    position: relative;
}

@media (max-width: 576px) {
    .masthead {
        padding: 40px 0;
    }
    .masthead.with-content {
        padding-bottom: 25px;
    }
    .masthead.with-content .review {
        margin-top: 25px;
    }
}

.masthead h1 {
    margin-bottom: 30px; 
}

@media (max-width: 767px) {
    .masthead h1 {
        line-height: 1.4;
    }
    .masthead h1 span {
        line-height: 1.4;
        z-index: 1;
    }
    .masthead h1 span:after, .masthead h1 span:before {
        z-index: 0;
    }
}

.masthead h1 span {
    position: relative;
    display: inline-block;
}

.masthead h1 span:before, .masthead h1 span:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -5px;
    right: -2px;
    height: 4px;
    border-radius: 2px;
    background-color: #3c78f0;
    z-index: 2;
}

.masthead h1 span:after {
    left: -10px;
    bottom: 1px;
    right: 2px;
    background-color: #92edb7;
    z-index: 1;
}

.masthead p {
    margin-top: 30px;
    margin-bottom: 0;
}

.masthead .subtitle {
    color: #718096;
    font-size: 20px;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .masthead .subtitle {
        font-size: 18px;
    }
}

.masthead .numbers {
    margin-top: 40px;
    margin-bottom: -50px;
    border-radius: 16px;
    border: none;
    -webkit-box-shadow: 0 4px 8px 2px #EDF2F7;
    box-shadow: 0 4px 8px 2px #EDF2F7;
}

.masthead .numbers .stat {
    border-right: 1px solid #EDF2F7;
    padding: 25px;
}

@media (max-width: 767px) {
    .masthead .numbers .stat {
        border-right: none;
        border-bottom: 1px solid #EDF2F7;
    }
    .masthead .numbers {
        margin-top: 20px;
    }
}

.masthead .numbers .stat:last-child {
    border-right: 0;
    border-bottom: 0;
}

.masthead .numbers .stat .number {
    font-size: 24px;
    font-weight: 800;
    color: #3c78f0;
    line-height: 1;
}

.masthead .numbers .stat .label {
    font-size: 20px;
    margin-top: 5px;
    color: #718096;
}

.masthead ol.breadcrumb {
    margin-top: -20px;
}

.masthead .product-detail {
    
}

@media (max-width: 991px) {
    .masthead .product-detail {
        margin-bottom: 0;
    }
}

.masthead .product-detail .product-image {
    width: 100%;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 4px 8px 2px #EDF2F7;
    box-shadow: 0 4px 8px 2px #EDF2F7;
    border: none;
    padding: 40px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .masthead .product-detail .product-image {
        height: auto;
        width: auto;
        max-width: 100%;
    }
}

.masthead .product-detail .product-image img {
    vertical-align: middle;
    border-style: none;
    height: auto;
    width: auto;
    transition: 0.5s;
    max-height: 260px;
    max-width: 80%;
    margin: auto;
}

.masthead .product-detail h1 {
    margin-bottom: 15px;
    font-size: 32px;
}

@media (max-width: 991px) {
    .masthead .product-detail h1 {
        margin-top: 30px;
    }
}

.masthead .product-detail .bottom {
    margin-top: 40px;
}

.masthead-spacer {
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .masthead-spacer {
        margin-bottom: 100px;
    }
}

.masthead-spacer.small {
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .masthead-spacer.small {
        margin-bottom: 25px;
    }
}

.product {
    border-radius: 10px;
    padding: 25px 20px 20px 20px;
    position: relative;
    border-color: #edf2f7;
    border-width: 2px;
    margin-bottom: 30px;
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 3px 8px 1px #edf2f7;
}

.product:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .product {
        margin-bottom: 20px;
    }
}

.product.-aanrader {
    border: 4px solid #d8e4fc;
    -webkit-box-shadow: 0 4px 8px 2px #edf2f7;
    box-shadow: 0 4px 8px 2px #edf2f7;
    margin-top: 40px;
    margin-bottom: -150px;
    background-color: #ffffff;
    overflow: visible;
    border-radius: 16px;
}

.product .product-image {
    position: static;
    text-align: center;
}

.product .product-image img {
    vertical-align: middle;
    border-style: none;
    height: auto;
    transition: 0.5s;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 3px !important;
    max-height: 200px;
    width: auto;
    max-width: 100%;
    margin: 0 auto 10% auto;
}

@media (max-width: 768px) {
    .product .product-image img {
        margin: 5% auto 10% auto;
    }
}

.product.-small .product-image img {
    margin: 5% auto 10% auto;
}

.product .product-image .ribbon-number, .product.-small .product-image .ribbon-number {
    position: absolute;
    top: 0;
    left: 0;
    color: #718096;
    font-size: 32px;
    font-weight: 900;
    overflow: hidden;
    width: 80px;
    height: 80px;
    text-align: left;
    padding-top: 5px;
    padding-left: 13px;
    background-color: #edf2f7;
    -webkit-clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
    clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
}
.product.-small .product-image .ribbon-number {
    left: -1px;
}

.product img {
    max-width: 200px;
}

.product .product-content {
    text-align: left;
}

.product .product-content h3.title {
    font-weight: 800;
    font-size: 26px;
    color: #111823;
}

@media (max-width: 767px) {
    .product .product-content h3.title {
        font-size: 20px; 
    }
    .product .product-content {
        text-align: center;
    }
}

.product.-small .product-content h3.title {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
}

@media (max-width: 600px) {
    .product.-small .product-content h3.title {
        height: 24px;
    }
}

.product .product-content .description {
    color: #718096;
    font-size: 15px;
    line-height: 22px;
    margin-top: 15px;
}

.product .product-content .description a.read-more {
    color: #aebde0;
}

.product .product-content .description a.read-more:hover {
    text-decoration: none;
}

.product .product-content .description a.read-more .material-icons {
    font-size: inherit;
    position: relative;
    top: 3px;
    left: -3px;
    display: inline;
    color: #aebde0;
}

.product .product-content .buttons-container {
    margin-top: 20px;
    border: none !important;
}

.product .product-content .buttons-container > div {
    text-align: center;
}

.product .product-content .buttons-container > div:last-child {
    margin-right: 0;
}

.product.-small {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 768px) {
    .product.-small {
        margin-bottom: 30px;
    }
}

.product.-small .product-image {
    padding: 20px;
    padding-bottom: 0;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product.-small .product-content {
    padding: 20px;
    padding-top: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center;
}

.product.-small .product-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding: 12px 0 10px 0;
}

.product.-small .product-footer > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.products, .blog-post {
    padding-top: 60px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .products, .blog-post {
        padding-top: 40px;
    }
}

.more-products a {
    padding: 10px 20px;
    background-color: #eef2f7;
    font-weight: 600;
    margin-top: 10px;
    border-radius: 8px;
    display: inline-block;
    color: #738298;
}

.more-products a:hover {
    background-color: #738298;
    color: #fff;
    text-decoration: none; 
}

.products aside, .blog-post aside {
    padding-left: 40px;
}

@media (max-width: 991px) {
    .products aside, .blog-post aside {
        padding-left: 1rem;
        margin-top: 50px;
    }
}

@media (max-width: 1200px) {
    .products aside, .blog-post aside {
        padding-left: 20px;
    }
}

.products aside .filter, .blog-post aside .filter {
    padding-bottom: 20px;
    border-bottom: 1px solid #edf2f7;
    margin-bottom: 40px;
}

@media (min-width: 991px) {
    .products aside .filter:last-child, .blog-post aside .filter:last-child {
        margin-bottom: 0;
    }
}

.products aside h4 {
    font-size: 20px;
}

.products aside h4 button {
    border: none;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 700;
    padding: 0;
    text-align: left;
}

.products aside h4 button:hover {
    opacity: .8;
}

.products aside h4 button.collapsed span.material-icons {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.products aside ul.list-group li.list-group-item {
    border: none;
    padding: 6px 0;
}

.products aside ul.list-group li.list-group-item:first-child {
    margin-top: 10px;
}

.products aside ul.list-group li.list-group-item a {
    font-weight: 700;
    font-size: 15px;
    color: #111823;
    display: block;
}

.products aside ul.list-group li.list-group-item a span {
    color: #718096;
    font-size: 14px;
    margin-left: 5px;
}

.products aside ul.list-group li.list-group-item a:hover {
    opacity: .8;
    text-decoration: none;
}

.products aside ul.list-group li.list-group-item a.show-all, .products aside ul.list-group li.list-group-item a.reset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
}

.products aside ul.list-group li.list-group-item a.show-all span, .products aside ul.list-group li.list-group-item a.reset span {
    color: #3c78f0;
}

.products aside ul.list-group li.list-group-item a.show-all span.material-icons, .products aside ul.list-group li.list-group-item a.reset span.material-icons {
    font-size: 22px;
    margin-left: -3px;
}

.products aside ul.list-group li.list-group-item a.show-all span.text-collapsed, .products aside ul.list-group li.list-group-item a.reset span.text-collapsed {
    display: none;
}

.products aside ul.list-group li.list-group-item a.show-all span.text, .products aside ul.list-group li.list-group-item a.reset span.text {
    display: block;
}

.products aside ul.list-group li.list-group-item a.collapsed span.material-icons {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.products aside ul.list-group li.list-group-item a.collapsed span.text-collapsed {
    display: block;
}

.products aside ul.list-group li.list-group-item a.collapsed span.text {
    display: none;
}

.product-category-content {
    background-color: #F7FAFC;
    padding: 120px 0;
    margin-top: 60px;
}

@media (max-width: 768px) {
    .product-category-content {
        padding: 40px 0;
    }
}

.product-category-content .card {
    -webkit-box-shadow: 0 4px 8px 2px #EDF2F7;
    box-shadow: 0 4px 8px 2px #EDF2F7;
    border: none;
    padding: 60px 20px;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .product-category-content .card {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .product-category-content .card {
        padding: 20px 10px;
        border-radius: 8px;
    }
}

.product-category-content .card h2 {
    font-size: 32px;
    font-weight: 800;
}

@media (max-width: 768px) {
    .product-category-content .card h2 {
        font-size: 24px;
    }
}

.product-category-content .card h5 {
    font-weight: 600;
    font-size: 18px;
    color: #3c78f0;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #D1D5DB;
}

.product-category-content .card h5 img {
    width: 15px;
    margin-right: 5px;
}

.infobox-container {
    background-color: #F7FAFC;
    padding: 80px 0;
    margin-bottom: 80px;
    border-bottom: 1px solid rgb(233 245 255);
    border-top: 1px solid rgb(233 245 255);
}

@media (max-width: 768px) {
    .infobox-container {
        padding: 40px 0;
    }
}

.infobox-container .infobox {
    -webkit-box-shadow: 0 4px 8px 2px #EDF2F7;
    box-shadow: 0 4px 8px 2px #EDF2F7;
    border: none;
    padding: 40px 80px;
    border-radius: 16px;
}

@media (max-width: 768px) {
    .infobox-container .infobox {
        padding: 40px 30px;
        border: 4px solid #ffffff;
    }
}

@media (max-width: 576px) {
    .infobox-container .infobox {
        padding: 30px 10px;
        border-radius: 8px;
    }
}

.infobox-container .infobox .ribbon {
    top: 35px;
}

@media (max-width: 768px) {
    .infobox-container .infobox .ribbon {
        top: -20px;
    }
    .product-detail .product-image.ribbon-border  {
        border: 4px solid #fff;
    }
    .infobox-container .infobox .ribbon:before, .product-detail .ribbon:before  {
        border-left: solid 11px transparent;
    }
}

.infobox-container .infobox h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .infobox-container .infobox h2 {
        font-size: 24px;
    }
}

.infobox-container .infobox p:last-child {
    margin-bottom: 0;
}

nav.pagination-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
}

nav.pagination-container ul.pagination li.page-item:first-child a.page-link {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

nav.pagination-container ul.pagination li.page-item:last-child a.page-link {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

nav.pagination-container ul.pagination li.page-item a.page-link {
    border-color: #DDE2E8;
    font-weight: 600;
    font-size: 18px;
    color: #A0AEC0;
    padding: 10px 16px 7px 16px;
    min-width: 50px;
    text-align: center;
}

@media (max-width: 550px) {
    nav.pagination-container ul.pagination li.page-item a.page-link {
        padding: 9px 14px 6px 14px;
        font-size: 16px;
        min-width: 40px;
    }
}

@media (max-width: 374px) {
    nav.pagination-container ul.pagination li.page-item a.page-link {
        padding: 7px 12px 4px 12px;
        font-size: 16px;
        min-width: 30px;
    }
}

nav.pagination-container ul.pagination li.page-item a.page-link.active {
    background-color: #3c78f0;
    color: #ffffff;
    border-color: #3c78f0;
}

nav.pagination-container ul.pagination li.page-item a.page-link.text {
    font-weight: 500;
}

.content {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .content {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.content h2 {
    margin-bottom: 60px;
}

.content h3 {
    margin-bottom: 30px;
}

.content .col-image-right {
    text-align: right;
}

.content .col-image-right img {
    width: 100%;
}

@media (max-width: 768px) {
    .content .col-image-right {
        text-align: center;
    }
}

.content .divider {
    margin: 50px 0;
    border-top: 1px solid #EDF2F7;
}

.content table {
    width: 90%;
}

@media (max-width: 991px) {
    .content table {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .content table {
        margin-bottom: 20px;
    }
}

.content table tr {
    border-bottom: 1px solid #DDE2E8;
}

.content table tr td {
    padding: 8px 10px;
    width: 50%;
    font-size: 15px;
}

@media (max-width: 576px) {
    .content table tr td {
        padding-left: 0;
        padding-right: 0;
    }
}

.content table tr td.label {
    color: #718096;
    font-weight: 600;
}

.content .image-full img {
    width: 100%;
    border-radius: 8px;
}

.content .image-full .caption {
    text-align: center;
    font-style: italic;
    font-size: 15px;
    color: #A0AEC0;
    margin-top: 10px;
}

.accordion {
    margin-bottom: 80px;
}

.accordion .card {
    border-color: #DDE2E8;
}

.accordion .card-header {
    background-color: transparent;
}

.accordion .card-header h2 {
    margin-bottom: 0;
}

.accordion .card-header .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding-left: 0;
    padding-right: 0;
    font-weight: 700;
}

.accordion .card-header .btn span.material-icons {
    margin-right: 25px;
    font-size: 32px;
    color: #3c78f0;
}

@media (max-width: 576px) {
    .accordion .card-header .btn span.material-icons {
        font-size: 28px;
        margin-right: 15px;
    }
}

.accordion .card-body {
    border-top: 1px solid #DDE2E8;
    background-color: #F7FAFC;
}

.article-preview {
    padding: 6px;
    height: 306px;
    background: #ffffff;
    box-shadow: 0 1px 5px 1px rgb(237 242 247 / 88%);
    margin-bottom: 30px;
    border-radius: 10px;
    border: none;
}

@media (max-width: 991px) {
    .article-preview {
        height: auto; 
    } 
}

.article-preview .article-wrapper {
    height: 100%;
    display: flex;
    position: relative;
    padding-right: 0;
    border-radius: 10px;
    background-color: rgb(247 250 252 / 60%);
    overflow: hidden;
}

@media (max-width: 767px) {
    .article-preview .article-wrapper {
        padding-right: 0;
        flex-direction: column; 
    } 
}

.article-preview .article-wrapper .article-wrapper-left {
    margin: 30px 40px;
    flex-basis: 50%;
    position: relative;
}

@media (max-width: 767px) {
    .article-preview .article-wrapper .article-wrapper-left {
        flex-basis: 100%;
    } 
}

@media (max-width: 767px) {
    .article-preview .article-wrapper .article-wrapper-left {
        margin: 20px 30px 30px 30px; 
    } 
}

@media (max-width: 374px) {
    .article-preview .article-wrapper .article-wrapper-left {
        margin: 20px 20px 30px 20px; 
    } 
}

.article-preview .article-wrapper .article-wrapper-left h2 {
    color: #111824;
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.article-preview .article-wrapper .article-wrapper-left .article-tags .article-category {
    border-radius: 4px;
    background-color: #EDF2F7;
    font-size: 14px;
    padding: 6px 10px 5px 10px;
    color: #718096;
    line-height: 1;
    display: inline-block;
}

.article-preview .article-wrapper .article-wrapper-left p {
    font-size: 15px;
    line-height: 24px;
    margin: 20px 0 0;
}

.article-preview .article-wrapper .article-wrapper-right {
    display: flex;
    justify-content: center;
    flex-basis: 50%;
    text-align: center;
    background-size: cover;
    background-position: center center;
}

@media (max-width: 767px) {
    .article-preview .article-wrapper .article-wrapper-right {
        flex-basis: 100%;
        display: block; 
        min-height: 200px;
    } 
}
      
@media (max-width: 575px) {
    .article-preview .article-wrapper .article-wrapper-right {
        padding: 0; 
    } 
}

.article-preview .article-wrapper .article-wrapper-right img {
    align-self: center;
    border-radius: 10px;
}

@media (max-width: 767px) {
    .article-preview .article-wrapper .article-wrapper-right img {
        margin-bottom: 20px;
    }
}

.article-preview .article-preview-image a img {
    max-width: 220px;
}

@media (max-width: 991px) {
    .article-preview .article-preview-image a img {
        max-width: 180px;
        margin-bottom: 20px;
    }
}

.article-preview h3 {
    margin-bottom: 10px;
}

.article-preview .btn {
    display: inline-block;
    border: 1px solid #d0d3d9;
    margin-top: 20px;
    font-weight: 600;
    width: auto;
    font-size: 17px;
    padding: 6px 30px 4px 30px;
    max-width: 270px;
    color: #111823;
    border-radius: 10px;
}

.article-preview .btn:hover {
    background-color: #eaecf038;
    color: #111823;
}

.product-buy-card {
    position: -webkit-sticky;
    position: sticky;
    top: 82px;
    border-radius: 5px;
    border: none;
    text-align: center;
    margin-left: 20px;
    -webkit-box-shadow: 0 4px 8px 2px #edf2f7;
    box-shadow: 0 4px 8px 2px #edf2f7;
}

.product-buy-card-mobile {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 15px;
    background-color: #ffffff;
    border-top: 2px solid #eef2f7;
    display: none;
}

.product-buy-card-mobile .availability-container {
    margin-top: 0;
    text-align: center;
    color: #295878;
}

.product-buy-card-mobile .btn-bol {
    margin-top: 10px;
    display: inline-block;
    width: auto;
    padding: 11px 20px 10px 20px;
}

@media (max-width: 991px) {
    .product-buy-card {
        display: none;
    }
}

.product-buy-card .card-content {
    padding: 30px 20px;
    padding-bottom: 20px;
}

.product-buy-card .card-content h4 {
    margin-bottom: 30px;
}

.product-buy-card .card-content img {
    height: auto;
    width: auto;
    max-height: 200px;
    max-width: 80%;
    display: block;
    margin: auto;
}

.product-buy-card .card-content .price {
    display: inline-block;
    border-radius: 4px;
    background-color: #EDF2F7;
    font-size: 18px;
    font-weight: 700;
    padding: 3px 15px;
    margin-top: 25px;
}

.product-buy-card .card-footer {
    background-color: transparent;
    border-top: 1px solid #DDE2E8;
    padding: 20px;
}

.blog-nav {
    background-color: #F7FAFC;
    padding: 120px 0;
}

@media (max-width: 991px) {
    .blog-nav {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .blog-nav .item:last-child {
        margin-top: 40px;
    }
}

.blog-nav .prevnext {
    font-size: 13px;
    color: #718096;
    margin-bottom: 15px;
}

.blog-nav a {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    max-width: 350px;
}

@media (max-width: 767px) {
    .no-padding-mobile {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.owl-carousel .owl-item img, .owl-carousel-home .owl-item img {
    display: inline-block;
}

.product-item-description {
    margin-bottom: 50px;
}
.product-item-description .newline {
    display: block;
    margin: 0 0 10px 0;
}
.product-item-description h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.blog-post .container, .blog-post .container-fluid {
    padding-left: 0;
    padding-right: 0;
}
.blog-post .stroke {
    margin-bottom: 30px;
    font-size: 16px;
}
.blog-post h2 {
    font-size: 26px; 
    margin: 0;
}
.blog-post .stroke .blog-img {
    width: 100%;
}

@media (max-width: 767px) {
    .blog-post .stroke .mobile-margin {
        margin-bottom: 20px;
    }
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
.mb-0 {
    margin-bottom: 0px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.mb-30 {
    margin-bottom: 30px !important;
}
.mb-40 {
    margin-bottom: 40px !important;
}
.mb-50 {
    margin-bottom: 50px !important;
}
.mb-60 {
    margin-bottom: 60px !important;
}
.mb-70 {
    margin-bottom: 70px !important;
}
.mb-80 {
    margin-bottom: 80px !important;
}
.mb-90 {
    margin-bottom: 90px !important;
}
.mb-100 {
    margin-bottom: 100px !important;
}
.mt-0 {
    margin-top: 0px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mt-30 {
    margin-top: 30px !important;
}
.mt-40 {
    margin-top: 40px !important;
}
.mt-50 {
    margin-top: 50px !important;
}
.mt-60 {
    margin-top: 60px !important;
}
.mt-70 {
    margin-top: 70px !important;
}
.mt-80 {
    margin-top: 80px !important;
}
.mt-90 {
    margin-top: 90px !important;
}
.mt-100 {
    margin-top: 100px !important;
}