@charset "UTF-8";
/* https://getbootstrap.com/docs/5.0/getting-started/introduction/ */
:root {
    --bgMainColor: #13416C;
    --bgSecuColor: #1264A3;
    --bgDarkGreyColor: #383838;
    --bgLightGreyColor: #eeeeee;
    --bgColorGreen: #00A100;
    --bgColorGreenHover: #01B401;
    --txtColorWhite: #ffffff;
}
/* 
GLOBAL
*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    line-height: 1;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}
body {
    background-color: #fefefe;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}
.relative{
    position: relative;
}
h1,
h2,
h3,
h4,
h5 {
    /* font-family: "Audiowide",'Open Sans',sans-serif; */
    color: var(--bgMainColor);
    line-height: 1.2;
}
p {
    line-height: 1.5;
}
img {
    width: 100%;
}
ul,
ol {
    list-style-type: none;
}
a {
    text-decoration: none;
    position: relative;
    color: var(--bgMainColor)
}
.effect a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: -2px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: var(--bgMainColor);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.effect a:hover:after {
    width: 100%;
    left: 0;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.fixed {
    position: fixed;
}
.absolute {
    position: absolute;
}
fieldset {
    border: none;
    padding: 0;
}
.hidden{
    display: none;
}
select,
input:not(.quantity input),
textarea {
    border-radius: 5px;
}
button {
    border: none;
    background: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}
button:hover {
    cursor: pointer;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
iframe {
    width: 100%;
}
.w-100-p {
    width: 100%;
}
.ls-1 {
    letter-spacing: 1px;
}
.ls-2 {
    letter-spacing: 2px;
}
.ls-3 {
    letter-spacing: 3px;
}
.borderRadius-5 {
    border-radius: 5px;
}
.padding-3 {
    padding: 3px;
}
.small {
    font-size: 0.75rem;
}
.flex {
    display: flex;
}
/* 
THEME SPECIFIC
*/
/* 
** PRELOADER
*/
.ep-pre-loader {
    background: rgba(255, 255, 255, 1);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}
.circle-two {
    bottom: 0;
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    width: 100px;
}
.circle-two>span,
.circle-two>span:before,
.circle-two>span:after {
    content: '';
    display: block;
    border-radius: 50%;
    border: 2px solid var(--bgMainColor);
    position: absolute;
    top: 50%;
    left: 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%);
}
.circle-two>span {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-left-color: transparent;
    -webkit-animation: effect-2 2s infinite linear;
    -moz-animation: effect-2 2s infinite linear;
    -ms-animation: effect-2 2s infinite linear;
    -o-animation: effect-2 2s infinite linear;
    animation: effect-2 2s infinite linear;
}
.circle-two>span:before {
    width: 75%;
    height: 75%;
    border-right-color: transparent;
}
.circle-two>span:after {
    width: 50%;
    height: 50%;
    border-bottom-color: transparent;
}
@-webkit-keyframes effect-2 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
@keyframes effect-2 {
    from {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}
/* 
** TO TOP
*/
#EPtoTop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 5px;
    z-index: 99;
    border: none;
    outline: none;
    transition: all 300ms;
}
#EPtoTop svg g{
    fill: var(--bgMainColor)
}
#EPtoTop:hover svg g{
    fill: var(--bgSecuColor);
    transition: all 300ms;
}
/* 
** PAGEHOLDER
*/
body #pageHolder {
    filter: 0px;
    transition: all 150ms;
}
body.drawer-open #pageHolder {
    filter: blur(10px);
    transition: all 300ms;
}
body.touchDev.drawer-open #pageHolder{
    filter: none;
    padding-right: 0px !important;
}
/* 
** TOPBAR 
*/
#topBar {
    background: var(--bgMainColor);
}
#topBar .container-xxl{
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
#topBar .container-xxl span {
    /* display: flex !important; */
    align-items: center;
    padding: 7px 0;
    /* width: 17%; */
    font-size: 0.85em;
}
#topBar .container-xxl span#kiyoh{
    width: 30%;
    min-width: 200px;
}
#topBar .container-xxl span#kiyoh iframe{
    height: 50px;
}
#topBar * {
    color: var(--txtColorWhite);
}
#topBar iframe {
    border-radius: 0px;
    border: none;
}
/* 
** LOGO
*/
#logo img {
    max-width: 125px;
    height: auto;
    aspect-ratio: 125 / 102;
}
/* 
** ICONS
*/
#phoneIcon,
#userIcon,
#shoppingCart {
    font-size: 25px;
    margin: 0 5px;
    color: var(--bgMainColor)
}
#phoneIcon {
    transform: rotate(90deg);
    border-radius: 50%;
    border: 1px solid var(--bgSecuColor);
    padding: 18px;
    position: relative;
}
#phone {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
#phonenumber a {
    color: var(--bgMainColor);
    padding-left: 5px
}
#phoneIcon.dashicons-phone:before {
    left: 6px;
    position: absolute;
    top: 5px;
}
#userIcon svg {
    margin: -5px auto 0 auto;
    height: 35px;
    width: 35px;
    display: block;
}
#cookieSettings svg {
    height: 28px;
    width: 28px;
    fill: var(--txtColorWhite);
}
#shoppingCart {
    position: relative;
}
#userIcon:hover,
.wc-block-mini-cart__button:hover:not([disabled]) {
    opacity: 0.6;
}


#icons {
    width: 100%;
}
.wc-block-mini-cart__button svg{
    height: 45px;
    width: 45px;
}
.header-login {
    font-size: 11px;
    font-weight: 600;
    display: block;
    text-align: center;
}


/* 
** MENUS 
*/
.mobile-toggle {
    display: none;
}
#mainMenu {
    background: var(--bgMainColor);
    border-top: 1px solid var(--bgMainColor);
    border-bottom: 1px solid var(--bgMainColor);
    margin-top: 10px
}
body.home #mainMenu,
body.page #mainMenu {
    margin: 10px 0 20px 0;
}
#mainMenu.fixed {
    top: 0;
    left: 0;
    z-index: 88;
    margin: 0px !important;
    -webkit-box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 15px -6px rgba(0, 0, 0, 1);
}
#mainMenu.fixed ul#menu-hoofdmenu {
    z-index: 87;
}
#mainMenu.fixed ul#menu-hoofdmenu ul.sub-menu {
    display: none;
}
#mainMenu.fixed ul#menu-hoofdmenu li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}
.arrow-down {
    display: inline;
    position: relative;
    top: 2px;
    right: 0;
    padding: 10px;
    /* fill: var(--txtColorWhite); */
    stroke: var(--txtColorWhite);
}

.arrow-right {
    position: absolute;
    top: -2px;
    right: 10px;
    /* fill: var(--txtColorWhite); */
    stroke: var(--txtColorWhite);
    padding: 10px;
}

ul#menu-hoofdmenu ul.sub-menu .arrow-right,
ul#menu-hoofdmenu ul.sub-menu li .arrow-right,
ul#menu-hoofdmenu ul.sub-menu li .arrow-right {
    stroke: var(--bgMainColor);
}

ul#menu-hoofdmenu ul.sub-menu li.current-menu-item a .arrow-right,
ul#menu-hoofdmenu ul.sub-menu li a:hover .arrow-right {
    stroke: var(--txtColorWhite);
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
ul#menu-hoofdmenu ul li:has(ul.sub-menu) a:hover:after {
    color: #fff;
}
ul#menu-hoofdmenu ul.sub-menu a:after,
ul#menu-hoofdmenu ul.sub-menu ul.sub-menu a:after {
    content: none
}
#mainmenu.fixed ul#menu-hoofdmenu li.menu-item-has-children:hover ul.sub-menu {
    display: block;
}
#mainmenu .dashicons,
#mainmenu .dashicons-before:before {
    font-size: 1rem;
    width: auto;
    height: auto;
}
ul#menu-hoofdmenu,
ul#menu-informatie,
ul#menu-mijn-account,
ul#menu-hoofdmenu ul.sub-menu,
ul#menu-top-bar-menu {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
ul#menu-top-bar-menu {
    display: flex;
    justify-content: flex-end;
}
ul#menu-hoofdmenu {
    display: flex;
    justify-content: flex-start;
}
ul#menu-hoofdmenu li,
ul#menu-top-bar-menu li {
    display: inline-flex;
    align-items: center;
}
ul#menu-hoofdmenu li.menu-item-has-children {
    position: relative;
}
ul#menu-hoofdmenu ul.sub-menu {
    opacity: 0;
    z-index: -1;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
    position: absolute;
    top: 43px;
    min-width: 300px;
    width: 100%;
    -webkit-box-shadow: 0px 3px 18px -12px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 18px -12px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 18px -12px rgba(0, 0, 0, 0.75);
    font-size: 0.9em;
}
ul#menu-hoofdmenu ul.sub-menu ul {
    left: 300px;
    top: 0;
    border-left: 1px solid var(--bgMainColor)
}
ul#menu-hoofdmenu ul.sub-menu li {
    width: 100%;
}
ul#menu-hoofdmenu ul.sub-menu.active {
    opacity: 1;
    z-index: 10;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
ul#menu-hoofdmenu ul.sub-menu li a {
    width: 100%;
    position: relative;
    background: var(--txtColorWhite);
    color: var(--bgMainColor);
    -webkit-box-shadow: 0px 5px 5px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 5px -7px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 5px -7px rgba(0, 0, 0, 0.75);
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
ul#menu-hoofdmenu ul.sub-menu li.menu-item-has-childeren a {
    box-shadow: none;
}
ul#menu-hoofdmenu ul.sub-menu li.current-menu-item a,
ul#menu-hoofdmenu ul.sub-menu li a:hover {
    width: 100%;
    background: var(--bgSecuColor);
    color: var(--txtColorWhite);
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
ul#menu-hoofdmenu li a,
ul#menu-top-bar-menu li a {
    border-right: 1px solid rgba(255, 255, 255, .3);
    -webkit-background-clip: padding-box;
    /* for Safari */
    background-clip: padding-box;
    /* for IE9+, Firefox 4+, Opera, Chrome */
    padding: 2px 8px;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
ul#menu-hoofdmenu li a {
    color: var(--txtColorWhite);
    padding: 10px;
    /* margin-right: 2px */
}
ul#menu-top-bar-menu li a:after {
    background: rgba(255, 255, 255, .3);
    bottom: -4px
}
ul#menu-hoofdmenu li:has(.sub-menu) a {
    padding: 10px 0px 10px 10px;
}
ul#menu-hoofdmenu li a:hover,
ul#menu-hoofdmenu li.current-menu-item a {
    background: var(--bgSecuColor);
    color: var(--txtColorWhite);
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
ul#menu-hoofdmenu li:last-of-type a,
ul#menu-top-bar-menu li:last-of-type a {
    border-right: 0px;
}
ul#menu-categorieen,
ul#menu-mijn-account,
ul#menu-informatie {
    padding-left: 0.5rem;
}
ul#menu-categorieen li a,
ul#menu-mijn-account li a,
ul#menu-informatie li a {
    display: block;
    padding: 6px 0;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
ul#menu-categorieen li a:hover,
ul#menu-mijn-account li a:hover,
ul#menu-informatie li a:hover {
    color: var(--bgSecuColor);
    font-weight: 600;
    letter-spacing: 0.2;
    text-shadow: 0px 0px 1px var(--bgSecuColor);
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
/* 
** BREADCRUMBS    
*/
#breadcrumbs {
    background: var(--bgLightGreyColor);
}
.woocommerce .woocommerce-breadcrumb {
    padding: 0.8em 10px;
    margin: 0;
    color: #767676;
    font-style: italic;
    font-size: 0.9rem;
}
.woocommerce .woocommerce-breadcrumb a {
    color: var(--bgMainColor);
    font-weight: 600;
    display: inline-block;
}
/* 
** PAGINATION    
*/
.woocommerce nav.woocommerce-pagination ul {
    border:none;
    display: flex;
    white-space: nowrap;
    column-gap: 5px;
    justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li {
    border: 1px solid var(--bgDarkGreyColor);
    border-radius: 5px;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    color: var(--bgMainColor);
}
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: var(--bgMainColor);
    color: var(--txtColorWhite)
}
/* 
** CONTAINERS    
*/
#primary {
    margin: 20px auto;
}
#discountProducts,
#newProducts,
#bestSoldProducts {
    margin: 0px auto 40px auto;
}
.woocommerce div.product {
    overflow: hidden;
    margin-bottom: 40px;
}
/* 
** PRODUCT CAROUSEL STYLING   
*/
#discountProducts h2,
#newProducts h2,
#bestSoldProducts h2 {
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 10px;
}
#discountProducts .swiper-slide,
#bestSoldProducts .swiper-slide,
#relatedProducts .swiper-slide,
#newProducts .swiper-slide {
    border: 1px solid #eee;
}
#discountProducts .woocommerce div.product,
.woocommerce #relatedProducts div.product,
#newProducts .woocommerce div.product,
#bestSoldProducts .woocommerce div.product {
    margin-bottom: 0px;
}
.swiper-slide .epQuantityWrapper {
    display: inline-block;
    margin-right: 0.2em;
    width: 100%;
    text-align: center;
}
.swiper-slide div.quantity {
    display: flex;
}
.quantity,
.swiper-slide .quantity {
    padding: 5px 0px;
}
.ajax_add_to_cart,
#discountProducts .ajax_add_to_cart,
#newProducts .ajax_add_to_cart,
#bestSoldProducts .ajax_add_to_cart {
    border-radius: 0 0 3px 3px;
    width: 100%;
    text-align: center;
}
/* 
** CONTENT 
*/
#defaultContent ol,
#defaultContent ul {
    line-height: 1.5;
}
/* 
** SIDEBAR 
*/
#spb {
    display: none;
}

#sidebar-primary {
    padding-top: 2px;
    /* position: sticky; */
    /* top: 50px; */
    /* left: 0; */
    overflow: hidden;
}

#sidebar-primary h3.filterEpProds {
    background: var(--bgMainColor);
    color: var(--txtColorWhite);
    padding: 10px 5px;
}

#sidebar-primary .widget-woof h3.facet-label {
    background: var(--txtColorWhite);
    color: var(--bgMainColor);
    padding: 10px 5px;
}
/*
** FACETWP FILTER
*/
.facetwp-toggle {
    background-color: var(--bgMainColor);
    color: var(--bgLightGreyColor);
    width: 100%;
    display: block;
    padding: 8px !important;
    font-size: .8rem;
    margin: .6rem 0 !important;
    text-align: center;
}

.facetwp-toggle:hover {
    background-color: var(--bgSecuColor)
}

.noUi-connect {
    background: var(--bgColorGreen) !important
}

.noUi-touch-area {
    background: var(--bgSecuColor);
}

.noUi-touch-area:hover {
    cursor: pointer;
}

.noUi-handle-lower .noUi-touch-area {
    border-radius: 4px 0 0 4px;
}

.noUi-handle-upper .noUi-touch-area {
    border-radius: 0 4px 4px 0;
}

.facetwp-slider-label {
    text-align: center;
    width: 100%;
    position: relative;
    display: block;
    font-size: 12px;
}
#sidebar-primary .facetwp-toggle.facetwp-hidden,
#sidebar-primary .facetwp-hidden,#sidebar-primary .facetwp-hidden.hidden
{
    display: none !important
}

/* 
**  HOME SLIDER AND BLOCKS
*/
#home .swiper-wrapper {
    min-height: 362px;
}
#home .swiper-wrapper .swiper-slide {
    background-repeat: no-repeat !important;
    background-size: cover !important;min-height: 362px;
}
#home .swiper-ios .swiper-wrapper .swiper-slide {
    min-height: 362px;
}
#home .swiper-wrapper .swiper-slide .title h2 {
    color: #fff !important;
    text-shadow: 2px 1px 5px rgba(0, 0, 0, 1);
    position: absolute;
    bottom: 70px;
    left: 150px;
}
#home .swiper-wrapper .swiper-slide .button a {
    position: absolute;
    bottom: 20px;
    left: 38%;
    text-align: center;
    background-color: rgb(1, 153, 13, 0.8);
    padding: 10px 25px;
    color: var(--txtColorWhite);
    font-weight: 600;
}
#home .swiper-wrapper .swiper-slide .button a:hover {
    background-color: rgb(1, 153, 13, 1);
}
#home .bgBlock {
    position: relative;
    background-repeat: no-repeat !important;
}
#home .bgBlock h2 {
    color: #fff;
    text-shadow: 2px 1px 5px rgba(0, 0, 0, 1);
    position: absolute;
    bottom: 70px;
    left: 30px;
}
#home .bgBlock a {
    position: absolute;
    bottom: 20px;
    right: 50px;
    background-color: rgb(1, 153, 13, 0.8);
    padding: 10px 25px;
    color: var(--txtColorWhite);
    border-radius: 5px;
    font-weight: 600;
}
#home .bgBlock a:hover {
    background-color: rgb(1, 153, 13, 1);
}
/* 
**  HTMLBLOCKS
*/
#htmlBlock img {
    object-fit: cover;
    height: 100%;
    max-height: 250px;
}
/* 
**  INFOBLOCKS
*/
#infoBlocks {
    /* background: var(--bgLightGreyColor)*/
    background: var(--bgMainColor);
    color: var(--txtColorWhite);
}
#infoBlocks h4 {
    color: var(--txtColorWhite);
}
#infoBlocks .col-4 {
    border: 1px solid #bbb
}
#infoBlocks img {
    aspect-ratio: 139 / 139;
    height: auto;
}
/* 
**  PRODUCT CATEGORIES & SUBCATEGORIES
 */
#homeCategories {
    margin: 0px auto 30px auto;
}
#subCategories {
    row-gap: 20px;
}
#homeCategories .category,
#subCategories .category {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    --c: var(--bgSecuColor);
    /* the border color */
    --b: 2px;
    /* the border thickness*/
    --g: 5px;
    /* the gap on hover */
    -webkit-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 12px -6px rgba(0, 0, 0, 0.75);
    padding: calc(var(--g) + var(--b));
    --_g: #0000 25%, var(--c) 0;
    background:
        conic-gradient(from 180deg at top var(--b) right var(--b), var(--_g)) var(--_i, 200%) 0 /200% var(--_i, var(--b)) no-repeat,
        conic-gradient(at bottom var(--b) left var(--b), var(--_g)) 0 var(--_i, 200%)/var(--_i, var(--b)) 200% no-repeat;
    transition: .2s, background-position .2s .2s;
    cursor: pointer;
}
#homeCategories .category:hover,
#subCategories .category:hover {
    --_i: 100%;
    transition: .2s, background-size .2s .2s;
    -webkit-box-shadow: 0px 0px 20px -6px rgba(18, 100, 163, 1);
    -moz-box-shadow: 0px 0px 20px -6px rgba(18, 100, 163, 1);
    box-shadow: 0px 0px 20px -6px rgba(18, 100, 163, 1);
}
#homeCategories img,
#subCategories img {
    width: 100%;
    height: 100px;
    margin-bottom: 0.7em;
    object-fit: fill;
    aspect-ratio: 44 / 25;
    /* border: 1px solid var(--bgMainColor); */
    /* border-radius: 5px 5px 0px 0px; */
}
#homeCategories span.categoryName,
#subCategories span.categoryName {
    width: 100%;
    font-weight: 600;
    display: block;
    font-size: 1em;
    color: var(--bgMainColor);
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* color: var(--txtColorWhite); */
}
/*=============
THEME SPECIFIC WOOCOMMERCE
==============*/
.touchHeading,
/* #topsearch #searchsubmit, */
#topsearch .close-search-button {
    display: none;
}
div.search_result {
    display: none;
    position: absolute;
    width: calc(100% - 5px);
    max-width: 100%;
    z-index: 12;
    top: 33px;
    left: 0;
    padding: 0
}
.search_bar {
    padding: 10px 0;
    margin: 0 auto;
    position: relative;
    /* background: #eee; */
}
.search_bar #searchsubmit {
    background: var(--bgColorGreen);
    color: var(--txtColorWhite)
}
.search_bar #searchsubmit:hover{
    background: var(--bgColorGreenHover);
    cursor: pointer;
}
.search_bar form {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: auto;
}
.search_bar form .input_search {
    flex: 0 0 60%;
}
input,
select {
    width: 100%;
    padding: 10px 10px;
    border: 1px solid;
    margin-right: 5px;
    background: none;
}
select:hover {
    cursor: pointer;
}
div#datafetch {
    max-width: 100%;
    margin: auto;
}
div#datafetch ul {
    list-style: none;
    padding: 0;
    background: var(--txtColorWhite);
    -webkit-box-shadow: 0px 3px 15px -7px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 3px 15px -7px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 3px 15px -7px rgba(0, 0, 0, 0.75);
}
div#datafetch li img {
    max-width: 70px;
    height: auto;
}
div#datafetch li {
    padding: 2px;
    background: #3d578891;
    margin-bottom: 1px;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
div#datafetch li:hover {
    background: var(--bgMainColor);
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
div#datafetch ul a {
    align-items: center;
    display: flex;
    color: var(--txtColorWhite);
}
div#datafetch ul a span {
    display: inline-block;
    margin-right: 10px;
}
/* 
** ICONS CART USER DIV WRAPPER
*/
#icons {
    align-items: center !important;
    justify-content: flex-end !important;
}
#icons .wc-block-mini-cart__button {
    color: var(--bgMainColor);
    width: 70px;
    margin: -20px 0px 0px 15px
}
#icons .wc-block-mini-cart__amount {
    display: none;
}
.wc-block-mini-cart__button {
    position: relative;
    display: inline-block;
    width: 50px;
}

/* Voeg de tekst toe onder het icoon */
.wc-block-mini-cart__button::after {
    content: "Winkelwagen";
    display: block;
    position: absolute;
    bottom: -7px;
    right: 0;
    /* Pas de grootte van de tekst aan indien nodig */
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    margin-top: 20px;
    /* Voeg wat ruimte toe tussen het icoon en de tekst */
}
h2.wc-block-mini-cart__title {
    font-size: 1.25rem !important;
}
/* # WooCommerce Cart Icon CSS with FontAwesome 5
---------------------------------------------------------------------------------------------------- */
/* .cart-contents {
    position: relative;
}
.cart-contents-count {
    position: absolute;
    top: 15px;
    right: 1px;
    transform: translateY(-105%) translateX(25%);
    font-family: Arial, Helvetica, sans-serif;
    font-weight: normal;
    font-size: 12px;
    line-height: 22px;
    height: 22px;
    width: 22px;
    vertical-align: middle;
    text-align: center;
    color: var(--txtColorWhite);
    background: #000;
    border-radius: 50%;
    padding: 1px;
} */
/* 
** FOOTER
*/
#footer {
    background: var(--bgLightGreyColor);
    color: var(--bgMainColor);
    padding: 4rem 0;
}
#footer h3 {
    color: var(--bgMainColor)
}
#footer a {
    color: var(--bgMainColor);
}
#footer #addressData {
    line-height: 1.5;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}
#footer .pickupDataRow {
    display: flex;
    width: 100%;
    line-height: 1.5;
}
#footer .pickupDataRow .left,
#footer .pickupDataRow .right {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}
#copyright {
    border-top: 1px dotted #adadad;
    /* background: var(--bgDarkGreyColor); */
    background: var(--bgLightGreyColor);
    color: var(--bgMainColor);
    padding: 30px 0px;
}
#copyright a {
    color: var(--bgMainColor);
    text-decoration: underline;
}
/**
** MAIN WOOCOMMERCE
*/
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
    background: var(--bgColorGreen);
    color: var(--txtColorWhite);
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button:hover {
    background: var(--bgColorGreenHover);
    color: var(--txtColorWhite);
    text-transform: uppercase;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
/* QUANTITYBOX AND PLUS MINUS */
#quantityBox {
    display: inline-block;
    /* margin-right: 0.2em; */
    width: 100%;
}
button.plus,
button.minus {
    border: 1px solid #000;
    display: inline-block;
    height: 40px;
    /* margin-right: 8px; */
    width: 30px;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
button.minus {
    border-radius: 5px 0 0 5px;
    border-right: 0px;
}
button.plus {
    border-radius: 0 5px 5px 0;
    border-left: 0px;
}
button.plus:hover,
button.minus:hover {
    border: 1px solid #000;
    background: var(--bgMainColor);
    color: var(--txtColorWhite);
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.woocommerce .quantity .qty {
    max-height: 40px;
    width: 40px;
    margin-right: 0px;
    margin-top: 0px;
    padding: 10px 0px;
    border-radius: 0px;
}
/* PRODUCT LOOP ACTIONS */
#productLoopActions {
    align-items: center;
}
#productLoopActions span.soldout {
    height: 54px;
    width: 100%;
    justify-content: center;
    align-content: center;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.productLoopItem {
    --c: var(--bgSecuColor);
    /* the border color */
    --b: 2px;
    /* the border thickness*/
    --g: 5px;
    border: 1px solid #dbdbdb;
    transition: .2s, all .2s .2s;
    /* box-shadow: 0px 0px 8px -5px rgba(0, 0, 0, 1); */
    -webkit-box-shadow: 0px 0px 8px -5px rgba(0, 0, 0, 1);
    -moz-box-shadow: 0px 0px 8px -5px rgba(0, 0, 0, 1);
    box-shadow: 0px 0px 8px -5px rgba(0, 0, 0, 1);
    /* transition: .2s, background-position .2s .2s; */
    cursor: pointer;
}
.productLoopItem:hover {
    --_i: 100%;
    border: 1px solid var(--bgMainColor);
    transition: .2s, all .2s .2s;
    -webkit-box-shadow: 0px 0px 20px -6px rgba(18, 100, 163, 1);
    -moz-box-shadow: 0px 0px 20px -6px rgba(18, 100, 163, 1);
    box-shadow: 0px 0px 20px -6px rgba(18, 100, 163, 1);
}
.productLoopItem .image {
    position: relative;
    overflow: hidden;
}
#productLoopActions {
    padding: 5px;
    background: #ecf6ff;
}
#productLoopActions .price {
    text-align: center;
    color: var(--bgMainColor)
}
#productLoopActions .exvat {
    font-size: 1em;
    line-height: 2;
    font-weight: 600;
}
#productLoopActions .incvat {
    font-size: 0.75em;
    font-weight: 400;
}
#productLoopActions .quantity {
    background: transparent;
    display: flex;
    justify-content: center;
}
#productLoopActions .add_to_cart_button {
    width: 60px;
    max-height: 40px;
    padding: 10px 0;
    justify-content: center;
    display: flex;
    align-items: center;
}
#productLoopActions a.added_to_cart.wc-forward {
    padding-top: .5em;
    position: absolute;
    bottom: 0;
    width: calc(100% - 24px);
    z-index: 11;
    background: rgba(255, 255, 255, 0.9);
    height: 100%;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bgColorGreen);
    font-weight: 600;
    border: 2px solid var(--bgColorGreen);
}
.swiper-wrapper #productLoopActions a.added_to_cart.wc-forward {
    left: 0;
}
.swiper-slide #productLoopActions a.added_to_cart.wc-forward {
    width: 100%;
}
/* TITLES */
.woocommerce-loop-product__title {
    color: var(--bgMainColor);
    size: 1.15rem;
    min-height: 70px;
    text-align: center;
    -webkit-transition: color 300ms ease-in;
    -moz-transition: color 300ms ease-in;
    -ms-transition: color 300ms ease-in;
    -o-transition: color 300ms ease-in;
    transition: color 300ms ease-in;
    padding: 2px 10px;
    font-size: 1em;
    line-height: 1.2;
}
.woocommerce-loop-product__title:hover {
    color: var(--bgSecuColor);
    -webkit-transition: color 300ms ease-in;
    -moz-transition: color 300ms ease-in;
    -ms-transition: color 300ms ease-in;
    -o-transition: color 300ms ease-in;
    transition: color 300ms ease-in;
}
/* PRODUCT IMAGE */
.swiper-slide .image,
body.tax-product_cat .image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}
/* PRODUCT BADGES */
.woocommerce span.featured,
.woocommerce span.onsale {
    min-height: auto;
    min-width: auto;
    padding: 0em;
    font-weight: 400;
    position: absolute;
    text-align: center;
    line-height: 2;
    top: -.5em;
    left: -.5em;
    margin: 0;
    border-radius: 0px;
    font-size: 0.9em;
    opacity: 0.7;
    background-color: #4d9c2b;
    color: var(--txtColorWhite);
    font-size: 0.9em;
    z-index: 9
}
.woocommerce span.newProduct {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    font-weight: 600;
    left: 0;
    color: var(--txtColorWhite);
    padding: 5px 0;
    background: rgb(0 161 0);
}
.woocommerce span.onsale {
    top: 15px;
    left: -70px;
    transform: rotate(-30deg);
    width: 100%;
}
.woocommerce span.featured {
    top: 15px;
    background-color: var(--bgSecuColor);
    left: auto;
    right: -70px;
    transform: rotate(30deg);
    width: 100%;
}
body.single-product .product span.onsale:not(#relatedProducts .product span.onsale) {
    width: 20%;
}
body.single-product .product span.featured:not(#relatedProducts .product span.featured) {
    top: 38px;
    background-color: var(--bgSecuColor);
    left: -70px;
    /* right: -70px; */
    transform: rotate(-30deg);
    width: 23%;
}
/**
**  MINI CART
*/
h2.wc-block-mini-cart__title {
    font-size: 1.35em;
}
.wc-block-components-product-name {
    color: var(--bgMainColor)
}
.wc-block-mini-cart__items .wc-block-mini-cart__products-table .wc-block-cart-items__row {
    border-bottom: 1px dotted #888;
}
.wc-block-mini-cart__footer-actions a.components-button.wc-block-components-button.wp-element-button.wp-block-woocommerce-mini-cart-checkout-button-block.wc-block-mini-cart__footer-checkout.contained {
    display: none;
}
.wc-block-mini-cart__footer-actions a {
    background: var(--bgColorGreen) !important;
}
.wc-block-mini-cart__footer-actions a:hover {
    background: var(--bgColorGreenHover) !important;
}
.wc-block-mini-cart__footer {
    background: var(--bgMainColor);
    color: var(--txtColorWhite)
}
.wc-block-mini-cart__badge {
    background: var(--bgSecuColor);
    color: var(--txtColorWhite)
}
.wc-block-components-product-metadata {
    display: none;
}
.wc-block-mini-cart__footer-checkout{
    color: var(--txtColorWhite) !important;
    border:1px solid var(--txtColorWhite) !important;
}

/**
**  CATEGORY PAGE
*/
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    float: none;
}
.woocommerce-result-count {
    width: 100%;
    text-align: right;
}
#rmClick {
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
    text-align: center;
    display: block;
    background: rgb(183 208 233 / 45%);
    padding: 10px;
    color: var(--bgMainColor)
}
#rmClick:hover {
    color: var(--bgDarkGreyColor)
}
#term-description {
    height: auto;
    overflow: auto;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
#term-description.rm {
    height: 100px;
    overflow: hidden;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.added::after,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.added::after {
    content: '';
}
/* 
*   REGISTER & LOGIN
*/
#epLoginFlex {
    display: flex;
    /* flex-wrap: wrap; */
    flex-direction: row;
    column-gap: 2%;
}
#epLoginFlex .col2-set .col-2 {
    flex: 0 0 calc(50% - 2%);
    width: 100% !important;
    float: none !important
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
    float: none;
    width: 100%;
    flex: 0 0 49%
}
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
    float: none;
    width: 100%;
    flex: 0 0 49%
}
.woocommerce .col2-set::after,
.woocommerce .col2-set::before,
.woocommerce-page .col2-set::after,
.woocommerce-page .col2-set::before {
    content: none;
    /* display: table */
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    padding: 0;
}
#customer_login form {
    width: 100%;
    /* min-height: 270px; */
}
#customer_login form.login {
    float: none;
    border: none
}
#customer_register form.register {
    float: none;
    border: none
}
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
    margin: 0.75em 0 3em 0;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    float: right;
    margin-right: 0;
}
.woocommerce .register #btnLogin,
.woocommerce .login #btnLogin {
    float: right;
}
.woocommerce .login .lost_password {
    font-size: 100%;
    margin: 0;
    line-height: 1;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: visible;
    padding: 0.618em 1em;
    font-weight: 700;
    border-radius: 3px;
    left: auto;
    background-color: #ebe9eb;
    border: 0;
    display: inline-block;
    background-image: none;
    box-shadow: none;
    text-shadow: none;
}
.woocommerce .login .lost_password a {
    color: #515151;
}
/* 
*   DASHBOARD & MY ACCOUNT
*/
.woocommerce fieldset {
    margin: 0;
}
.woocommerce form .form-row {
    padding: 3px 8px;
}
form.woocommerce-EditAccountForm.edit-account p:last-child {
    text-align: left;
}
.woocommerce fieldset label[for="password_2"] {
    text-align: left;
}
.woocommerce fieldset legend {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bgMainColor);
    width: 100%;
    padding: 0 0 15px;
    line-height: normal;
    margin: 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #d6d4d4;
}
[name="save_address"],
[name="save_account_details"] {
    width: 100%;
}
[name="save_address"] .dashicons-yes,
[name="save_account_details"] .dashicons-yes {
    font-size: 30px;
    width: 40px;
    position: relative;
    top: -6px;
}
.my-account-tabs {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--bgSecuColor);
}
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-right: 1px solid rgba(0, 0, 0, .1);
}
.woocommerce table.my_account_orders th {
    background: var(--bgSecuColor);
    color: var(--txtColorWhite)
}
.woocommerce table.shop_table th:last-child,
.woocommerce table.shop_table td:last-child {
    border-right: 0px;
}
.woocommerce table.shop_table td:first-child a::after {
    background: none repeat scroll 0 0 transparent;
    bottom: -2px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: var(--bgMainColor);
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}
.woocommerce table.shop_table td:first-child a:hover:after {
    width: 100%;
    left: 0;
}
.woocommerce table.shop_table td:first-child a {
    width: 100%;
    color: var(--bgMainColor) !important;
    position: relative;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.woocommerce table.shop_table td:first-child a:hover {
    width: 100%;
    -webkit-transition: all 300ms ease-in;
    -moz-transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    transition: all 300ms ease-in;
}
.woocommerce-orders-table__cell-order-actions a.button {
    margin: 0 0.5rem
}
.my-account-tabs ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.my-account-tabs li {
    display: inline-block;
    margin-right: 0px;
}
.my-account-tabs li a .dashicons::before {
    line-height: 1.2;
}
.my-account-tabs a {
    display: block;
    padding: 10px 20px;
    background-color: var(--bgLightGreyColor);
    color: var(--bgMainColor);
    border: 1px solid var(--bgSecuColor);
    border-bottom: 0px;
    text-decoration: none;
    border-radius: 0px;
    transition: all 500ms;
}
.my-account-tabs li.is-active a,
.my-account-tabs a:hover {
    background-color: var(--bgSecuColor);
    color: var(--txtColorWhite);
    transition: all 100ms;
}
.my-account-content {
    background-color: #f9f9f9;
    padding: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: none;
    width: 100%;
}
.woocommerce-account .woocommerce::after,
.woocommerce-account .woocommerce::before,
.woocommerce-columns--addresses.col2-set.addresses::after,
.woocommerce-columns--addresses.col2-set.addresses::before {
    content: none;
    /* display: table */
}
.woocommerce-columns--addresses.col2-set.addresses {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    column-gap: 2%;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}
.woocommerce-column--shipping-address address,
.woocommerce .woocommerce-customer-details address {
    border: none
}
.woocommerce-column--shipping-address,
.woocommerce-column--billing-address {
    width: 100%;
    flex: 0 0 calc(50% - 2%);
    background: #fbfbfb;
    border: 1px solid #d6d4d4;
    padding: 14px 18px 13px;
    line-height: 23px;
}
.woocommerce-order-details__title,
.woocommerce-column--shipping-address h2,
.woocommerce-column--billing-address h2 {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bgMainColor);
    font-size: 18px;
    padding: 0 0 15px;
    line-height: normal;
    margin-bottom: 12px;
    border-bottom: 1px solid #d6d4d4;
}
.box {
    background: #fbfbfb;
    border: 1px solid #d6d4d4;
    padding: 14px 18px 13px;
    padding-bottom: 13px;
    margin: 0 0 30px 0;
}
.epEditaddress h3,
.woocommerce-account .addresses .title h3 {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bgMainColor);
    width: 100%;
    padding: 0 0 15px;
    line-height: normal;
    margin: 0;
    margin-bottom: 12px;
    border-bottom: 1px solid #d6d4d4;
}
.woocommerce-account .addresses address {
    line-height: 1.5;
    font-style: normal;
}
.woocommerce-MyAccount-content .woocommerce-Address a {
    margin: 10px 0;
}
.u-columns.woocommerce-Addresses.col2-set.addresses {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}
   body .is-layout-flex {
       flex-wrap: wrap;
       align-items: unset;
   }
/* DEBUG PURPOSES */
#wphf-action img,
#wphf-filter img {
    max-width: 20px
}

/* banner */
.banner, .banner a{
    position: relative;
    top:0;
    left:0;
    /* text-align: center; */
    width: 100%;
    padding:5px;
    /* background: rgb(22, 148, 22);
    color: #fff; */
    z-index: 2;
  
}
.banner a{
    text-decoration: underline;
}

.grecaptcha-badge {
    display: none;
}

/* 
    SWIPER STYLING EP
*/
.ep-swiper-prev-button,
.ep-swiper-next-button {
    position: absolute;
    z-index: 12;
    height: 40px;
    top: calc(50% - 20px);
    background: rgba(255, 255, 255, 0.3);
    stroke: var(--txtColorWhite) !important;
    transition: background 250ms ease-in-out;
}

.ep-swiper-prev-button {
    left: 5px;
}

.ep-swiper-next-button {
    right: 5px;
}

.ep-swiper-prev-button svg path,
.ep-swiper-next-button svg path {
    stroke: var(--txtColorWhite) !important;
}

.ep-swiper-prev-button:hover,
.ep-swiper-next-button:hover {
    stroke: var(--bgSecuColor) !important;
    cursor: pointer;
    background: rgba(18, 100, 163, 0.4);
    transition: background 250ms ease-in-out;
}

/* 
    SWIPER CARROUSEL STYLING EP
*/
.ep-carrousel-swiper-prev-button,
.ep-carrousel-swiper-next-button {
    position: absolute;
    z-index: 12;
    top: calc(50% - 12px);
    right: 15px;
    height: 24px;
    background: rgba(18, 100, 163, 0.4);
    stroke: var(--bgMainColor) !important;
    transition: background 250ms ease-in-out;
}

.ep-carrousel-swiper-prev-button {
    right: 40px
}

.ep-carrousel-swiper-prev-button svg path,
.ep-carrousel-swiper-next-button svg path {
    stroke: var(--txtColorWhite) !important;
}

.ep-carrousel-swiper-prev-button:hover,
.ep-carrousel-swiper-next-button:hover {
    stroke: var(--bgSecuColor) !important;
    cursor: pointer;
    background: rgba(18, 100, 163, 0.8);
    transition: background 250ms ease-in-out;
}

.woof_info_popup {
    position: fixed;
    opacity: 0.7;
    width: 100%;
    left: 0 !important;
    padding: 50vh 0 0 0 !important;
    text-align: center;
    height: 100%;
    top: 0 !important;
    align-items: center;
    justify-content: center;
   
}

div.woof_info_popup { 
z-index: 9999999;
}