/* HIDE DURING PAGE LOAD (show via JS)
-------------------------------------------------- */



/* CUSTOMIZE THE GLOBAL STYLES
-------------------------------------------------- */

* {
    box-sizing: border-box; 
}
:root {
    --text-shadow-base: 1px 1px 3px rgba(0,0,0,.25);
    --box-shadow-base: 1px 1px 10px rgba(0,0,0,.25);
    --form-shadow-base: 0 3px 10px rgba(0,0,0,.2);
    --color-base-darker: #000000;
    --color-base-dark: #4a4a49;
    --color-base-medium: #9d9d9c;
    --color-base-light: #d0d0d0;
    --color-base-lighter: #f7f7f7;
    --color-contrast-dark: #0d2044;
    --color-contrast-medium: #193770;
    --color-contrast-light: #8b8cad;
    --color-contrast-green: #00e11a;
    --duration: 2s;
    --outer-delay: 0.2s;
    --main-delay: 0.3s;
}
html {
    -webkit-text-size-adjust: 100%;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}
body {
    font-family: "roboto", Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
	color: var(--color-base-dark);
    background-color: #fff;
    scroll-behavior: smooth;
}    
html, body {
    margin: 0;
    padding: 0;
    max-width: 100vw;
}
a {
    text-decoration: none;
    color: var(--color-base-darker);
    transition: all ease .5s;
}
a i {
	color: var(--color-contrast-medium);
}
a:hover {
    color: var(--color-contrast-medium);
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 400;
    font-style: normal;
}
h1, .h1 {  
    font-size: 1.8rem;
}
h2, .h2 {
    font-size: 1.4rem;
	padding-top: 1em;
    color: var(--color-contrast-medium);
}
h3, .h3 {
    font-size: 1.2rem;
	padding-top: 1em;
    color: var(--color-contrast-medium);
}
h4, .h4 { 
    font-size: 1rem;
}
figure {
	margin: 0;
}
img {
    max-width: 100%;
    width: auto;
    max-height: 100%;
    height: auto;
}
.fullBg {
	position: fixed;
	z-index: -2;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-position: center center;
	background-size: cover;
}
.archive .fullBg {
    display: none;
}
.overFullBg {
    background-color: rgba(255,255,255,0);
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    transition: all ease 1s;
}
.persistent .overFullBg {
    background-color: rgba(255,255,255,.65);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
@media (min-width: 400px){
	h1, .h1 {
	    font-size: 2rem;
	}
	h2, .h2 {
	    font-size: 1.6rem;
	}
	h3, .h3 {
	    font-size: 1.4rem;
	}
	h4, .h4 {
	    font-size: 1.1rem;
	}
}
@media (min-width: 760px){
	h1, .h1 {
	    font-size: 2.2rem;
	}
	h2, .h2 {
	    font-size: 1.8rem;
	}
	h3, .h3 {
	    font-size: 1.6rem;
	}
	h4, .h4 {
	    font-size: 1.2rem;
	}
}
@media (min-width: 1020px){
	h1, .h1 {
	    font-size: 2.4rem;
	}
	h2, .h2 {
	    font-size: 2rem;
	}
}

.squareTitle {
    color: var(--color-base-darker);
    text-transform: uppercase;
    padding: 0;
    margin: 0 0 1em 0;
    position: relative;
    z-index: 1;
}
.squareSubTitle {
    width: 60px;
    height: 60px;
    background-image: url("../img/blockSubTitle_bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: transparent;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 0;
    top: -20px;
    left: 50px;
    opacity: 0;
    transition: all ease 2s;
}
.mutate.is-inViewport .squareSubTitle {
    width: 100px;
    height: 100px;
    left: -30px;
    top: 0;
    opacity: .1;
}

/* HEADER
-------------------------------------------------- */

.siteHeader {
    position: absolute;
    z-index: 4;
    width: 100vw;
    height: 60px;
	top: 0;
	left: 0;
    transition: all ease 0s;
}
.persistent .siteHeader {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    box-shadow: var(--box-shadow-base);
}
@media (min-width: 800px) {
}
a#top {
    position: absolute;
    margin-top: -1px;
}

/* Logo */
.siteLogo {
    position: absolute;
    z-index: 10;
    left: 60px;
    top: 0;
    width: 140px;
    background-color: #fff;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    transition: all ease 1.5s;
}
.persistent .siteLogo {
    top: -200px;
    opacity: 0;
}
@media (orientation: portrait) {
    .siteLogo {
        left: 0;
    }
}
.persistentSiteLogo {
    position: fixed;
    z-index: 10;
    left: -100px;
    top: 5px;
    width: 50px;
    background-color: transparent;
    opacity: 0;
    transition: all ease 1s;
}
.persistent .persistentSiteLogo {
    left: 20px;
    opacity: 1;
}
.siteLogo a {
    display: block;
    height: 140px;
    background-image: url("../img/logo-QPower.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all ease .5s;
}
.persistentSiteLogo a {
    display: block;
    height: 50px;
    background-image: url("../img/logo-QPower.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all ease .5s;
}
.siteLogo span,
.persistentSiteLogo span {
	display: none;
}

/* Menus Container */
.compactMenu {
    position: absolute;
    top: 0;
    right: 20px;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
    transition: all ease .5s;
}
@media (min-width: 800px) {
}

/* Top Bar Menu */
.topBarMenu {
    height: 60px;
    padding-left: 220px;
    padding-right: 80px;
    display: none;
}
@media (min-width: 800px) {
    .topBarMenu {
        display: block;
        opacity: 1;
        transition: all ease 1s;
    }
    .persistent .topBarMenu {
        padding-left: 100px;
    }
}
.topBarMenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.topBarMenu ul li {
    display: inline;
}
.topBarMenu ul li a {
    line-height: 60px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    font-size: .7rem;
    font-weight: 600;
}
.topBarMenu ul li a:hover,
.topBarMenu ul li.current-menu-item a {
    color: var(--color-contrast-medium);
}
.topBarMenu ul li a span {
    padding: 0 10px;
    border-left: 1px solid var(--color-contrast-medium);
    line-height: 2.6rem;
    display: inline-block;
}
.topBarMenu ul li:first-of-type a span {
    border-left: none;
}
.topBarMenu ul li.current-menu-item a:after {
    position: absolute;
    left: 50%;
    bottom: 10px;
    content: "";
    margin-left: -3px;
    width: 6px;
    height: 6px;
    border-left: 2px solid var(--color-base-darker);
    border-bottom: 2px solid var(--color-base-darker);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}



/* navbar*/
.mobileMenu {
    cursor: pointer;
	color: var(--color-base-darker);
    height: 60px;
    line-height: 60px;
    width: 80px;
    text-align: center;
	transition: all .7s ease;
}
@media (max-width: 750px){ 
    .mobileMenu {
	    padding: 0 20px;
    }
}
.mobileMenu span {
    border: 2px solid var(--color-contrast-dark);
    border-radius: 50%;
    padding: .5rem .25rem .5rem .75rem;
    transition: all ease .5s;
}
.mobileMenu:hover span {
    border: 5px solid var(--color-contrast-medium);
}
.mobileMenu i {
	color: var(--color-base-darker);
    margin-right: 5px;
	transition: all .7s ease;
}

.mobileMenu:hover,
.mobileMenu:hover i {
	color: var(--color-contrast-medium);
}
nav#mainNav {
    position: fixed;
    z-index: 11;
    width: 0;
	height: 100vh;
    top: 0;
	right: -10vw;
    background-color: rgba(255,255,255,0);
    transition: all ease 2s;
}
nav#mainNav.fullWidth {
    width: 100vw;
	right: 0;
    background-color: rgba(13,32,68,.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.mobileMenuContainer {
	position: absolute;
	z-index: 12;
	top: 0;
	right: -10vw;
	background-color: #fff;
	height: 100vh;
	min-height: 100vh;
	min-width: 0;
	max-width: 0;
	margin-right: 0;
	width: 0;
	display: inline-block;
	overflow-y: auto;
    transition: all ease 1s;
    border-right: 1px solid var(--color-base-lighter);
}
.mobileMenuContainer.fullWidth {
	right: 0;
	min-width: 40vw;
	max-width: 92vw;
	width: auto;
}
.mainMenuClose {
	display: block;
	position: absolute;
	z-index: auto;
	right: 1.5rem;
	font-size: 2rem;
	color: var(--color-contrast-medium);
	top: 1.5rem;
	cursor: pointer;
    transition: all ease 1s;
}
.mainMenuClose:hover {
	color: var(--color-contrast-dark);
}
.mobileMenuContainer .scrollableMenu {
	padding: 40px;
    opacity: 0;
    transition: all ease 1s;
}
.mobileMenuContainer.fullWidth .scrollableMenu {
    opacity: 1;
}
.logoMenu {
    display: inline-block;
    height: 150px;
    width: 150px;
    margin-bottom: 20px;
    background-image: url("../img/logo-QPower.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.mainMenuContainer {
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
nav#mainNav li.menu-item-has-children {
}
nav#mainNav li a {
    display: block;
    text-decoration: none;
    font-size: 1.4rem;
	border-top: 1px solid var(--color-base-light);
    color: var(--color-base-darker);
    padding: 10px 20px;
    transition: all ease-in-out .5s;
}
nav#mainNav li a .menuDesc {
    display: block;
    font-style: italic;
}
nav#mainNav li:first-of-type a {
    border-top: none;
}
nav#mainNav li li a {
    font-size: 1.2rem;
    padding: 5px 10px 5px 30px;
	text-shadow: none;
	border-top: none;
    color: var(--color-base-medium);
}
nav#mainNav li li:last-child {
	padding-bottom: 20px;
}
nav#mainNav a:hover {
	color: var(--color-contrast-dark);
}
nav#mainNav .current_page_item a, header nav .current_page_item a:hover {
    color: var(--color-base-medium);
    font-style: italic;
    background-color: transparent;
    cursor: default;
}
nav#mainNav .current_page_item a:before {
    margin-left: -1rem;
    padding-right: 0.5em;
    content: ">>>";
    color: var(--color-contrast-medium);
}


/* Social Menu */
.socialMenu {
	margin-top: 20px;
}
.socialMenu a {
    display: block;
    text-decoration: none;
    color: var(--color-base-dark);
    padding: 10px 20px;
    transition: all ease-in-out .5s;
}
.socialMenu a i {
    color: var(--color-contrast-medium);
}
.socialMenu a:hover {
	color: var(--color-contrast-medium);
}
.socialMenu a:hover i {
    color: var(--color-base-darker);
}


/* CONTENT
-------------------------------------------------- */

.thinLine {
    display: block;
    width: 1px;
    height: 30vh;
    background-color: var(--color-contrast-medium);
    position: fixed;
    z-index: 5;
    top: 70px;
    left: 40px;
    opacity: 0;
    transition: opacity .7s ease, height 2s linear;
}
.persistent .thinLine {
    opacity: .5;
    height: calc(100vh - 130px);
}
@media (orientation: portrait) {
    .thinLine {
        display: none;
    }
}

/* Blocks hacks */
.wp-block-media-text img {
    border-radius: 12px;
}

/* Lists Hack */
ul.wp-block-list {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}
ul.wp-block-list li {
    padding-left: 1.7em;
    padding-bottom: 0.8em;
    line-height: 1.4em;
    text-indent: -1.6em;
}
ul.wp-block-list li:before {
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    content: "\f00c";
    color: var(--color-contrast-green);
    padding-right: 0.5em;
    font-size: 1.2em;
    position: relative;
}
ol.wp-block-list {
  list-style: none;
  counter-reset: my-counter;
  padding: 0;
}

ol.wp-block-list li {
  counter-increment: my-counter;
  margin-bottom: 10px;
}

ol.wp-block-list li::before {
  content: counter(my-counter) "-";
  font-weight: bold;
  color: var(--color-contrast-medium);
  margin-right: 10px;
  text-align: right;
  display: inline-block;
}


.page .fullBg {
    position: fixed;
    z-index: -2;
    top: 60px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 60px);
    background-size: cover;
}
@media (min-width: 800px){ 
    .page .fullBg {
        background-attachment: fixed;
    }
}
.siteMain {
    min-height: calc(100vh - 30px);
}
.container {
	padding: 70vh 0 40px 0;
    margin: 0;
    transition: all ease 1s;
    position: relative;
    min-height: 0;
}
@media (min-width: 650px){ 
    .container {
        padding: 60vh 0 60px 0;
    }
}
.container.noBg {
    padding: 120px 0 60px 0;
    min-height: calc(100vh - 99px);
}
#breadcrumbs {
    padding: 10px 40px 10px 60px;
    color: var(--color-base-medium);
    background-color: #fff;
}
#breadcrumbs a {
    color: var(--color-base-darker);
    font-weight: 500;
    font-size: .8rem;
    border-bottom: 1px solid var(--color-contrast-medium);
    transition: all ease .5s;
}
#breadcrumbs a:hover {
    color: var(--color-contrast-medium);
    border-bottom: 1px solid var(--color-base-dark);
}
.sharing {
    padding-left: 60px;
    margin: 0 auto;
}
.page .sharing {
    padding-left: 140px;
}
@media (max-width: 800px) {
    .sharing,
    .page .sharing {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.sharing strong {
    display: block;
    font-size: 10px;
    padding: 20px 0 10px 0;
}
article {
}
article a, .content_block a {
    color: var(--color-base-darker);
    border-bottom: 1px solid var(--color-contrast-light);
}
article a:hover, .content_block a:hover {
    border-bottom: 1px solid var(--color-contrast-medium);
}
article .wp-block-button a, 
.content_block .wp-block-button a,
article .wp-block-button a:hover, 
.content_block .wp-block-button a:hover {
    border-bottom: none;
}
article #cff a, article #cff a:hover {
    border-bottom: none;
}
figure img {
    max-width: 100%;
    width: auto;
    height: auto;
}
article figure a, article figure a:hover {
    border-bottom: none;
}
.pageContent {
    padding: 0 0 60px 0;
    margin: 0 auto;
    transition: all ease 1s;
}
.page .pageContent h2,
.page .homeContent h2 {
    position: relative;
}
.mainTitle {
    padding: 20px 60px;
    margin: 0;
    color: #fff;
    background-color: rgba(13,32,68,.25);
}
.mainTitle span {
    display: block;
    font-size: 1.4em;
}
/* Complianz */
#cmplz-document {
    max-width: 100%;
    font-size: 1rem;
}
#cmplz-cookies-overview .cmplz-dropdown a,
#cmplz-cookies-overview .cmplz-dropdown p,
#cmplz-document .cmplz-dropdown a,
#cmplz-document .cmplz-dropdown p,
#cmplz-document li,
#cmplz-document p,
#cmplz-document td {
    font-size: 18px;
}

/* Albums tweaks */
.wp-block-image,
.wp-block-media-text__media {
    /*overflow: hidden;*/
    position: relative;
}
.wp-block-image a .overAlbumImg,
.wp-block-media-text__media a .overAlbumImg {
    position: absolute;
    z-index: 1;
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    height: 30px;
    width: 30px;
    text-align: center;
    border: 1px solid var(--color-contrast-medium);
    border-radius: 50%;
    opacity: 0;
    background-color: rgba(0,0,0,0);
    transition: all ease .75s;
}
.wp-block-image a:hover .overAlbumImg,
.wp-block-media-text__media a:hover .overAlbumImg {
    left: calc(50% - 30px);
    top: calc(50% - 30px);
    height: 60px;
    width: 60px;
    border: 1px solid #fff;
    opacity: 1;
    background-color: rgba(13,32,68,.25);
}
.wp-block-image a .overAlbumImg span,
.wp-block-media-text__media a .overAlbumImg span {
    opacity: 0;
    line-height: 30px;
    transition: all ease .75s;
}
.wp-block-image a .overAlbumImg span i,
.wp-block-media-text__media a .overAlbumImg span i {
    color: var(--color-base-darker);
}
.wp-block-image a:hover .overAlbumImg span,
.wp-block-media-text__media a:hover .overAlbumImg span {
    opacity: 1;
    line-height: 60px;
}
/* WP blocks tweaks */
.wp-block-quote {
    border-left: 1px solid var(--color-contrast-medium);
}


/* FORMS
-------------------------------------------------- */
input, button, select, textarea {
    border: 1px solid var(--color-contrast-medium);
    border-radius: 0;
    padding: 10px 20px;
}
input[type=text], input[type=email], select, textarea {
    width: 100%;
}
input[type="radio"]{
    padding: inherit;
    border-radius: 0;
}
input[type=checkbox]:focus, 
input[type=color]:focus, 
input[type=date]:focus, 
input[type=datetime-local]:focus, 
input[type=datetime]:focus, 
input[type=email]:focus, 
input[type=month]:focus, 
input[type=number]:focus, 
input[type=password]:focus, 
input[type=radio]:focus, 
input[type=search]:focus, 
input[type=tel]:focus, 
input[type=text]:focus, 
input[type=time]:focus, 
input[type=url]:focus, 
input[type=week]:focus, 
select:focus, 
textarea:focus {
    border-color: transparent !important;
    box-shadow: var(--form-shadow-base) !important;
}
/* no focus style for non-keyboard-inputs elements */
body:not(.user-is-tabbing) button:focus,
body:not(.user-is-tabbing) input:focus,
body:not(.user-is-tabbing) select:focus,
body:not(.user-is-tabbing) textarea:focus {
  outline: none;
}

/* and for keyboard users, override everything with
   a Big Blue Border when focused on any element */
body.user-is-tabbing *:focus {
  outline: 2px solid #7AACFE !important; /* for non-webkit browsers */
  outline: 5px auto -webkit-focus-ring-color !important;
}
label {
    display: inline-block;
}

/* CF7 */
.wpcf7-list-item {
    margin: 0;
    display: block;
}
.wpcf7-list-item label {
    font-weight: 300;
    padding: inherit;
    font-size: 1rem;
}
.buttForm,
#searchsubmit {
    display: block;
    background-color: var(--color-base-darker);
    padding: 10px;
    color: #fff !important;
    border: none;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-align: center;
    margin: 1em auto;
    transition: all ease .5s;
    width: 100%;
}
#searchsubmit {
    display: inline;
    margin: auto;
    width: auto;
}
.buttForm:hover,
#searchsubmit:hover {
    background-color: var(--color-contrast-medium);
    color: var(--color-base-darker);
}

/* SINGLE
-------------------------------------------------- */

.single .siteLogo {
    background-color: #fff;
}
.single.persistent .siteLogo {
    background-color: transparent;
}
.single .siteHeader {
    background-color: rgba(255,255,255,1);
     -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.single.persistent .siteHeader {
    background-color: rgba(255,255,255,1);
}
.single article {
    background-color: #fff;
}
.single .pageContent {
    padding: 80px 0 60px 80px;
    margin-left: 0;
    transition: all ease 1s;
}
@media (max-width: 800px){
    .single .pageContent {
        padding: 80px 0 60px 0;
    }
}
.single .pageTitle {
    top: calc(70vh - 2rem);
}
.single .pageSubTitle {
    top: calc(70vh - 6rem);
}
/*See also*/
.otherPosts {
    padding: 0 60px;
    position: relative;
}
.otherPosts .otherPostsTitle {
    color: var(--color-base-darker);
    font-size: 2rem;
    text-transform: uppercase;
    padding: 0;
    margin: 1.5em 0;
    position: relative;
    z-index: 1;
    transition: all ease .5s;
}
.otherPosts.mutate .otherPostsSubTitle {
    color: rgba(255,255,255,0);
    font-size: 4rem;
    font-weight: 900;
    word-break: break-all;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
    position: absolute;
    z-index: 0;
    top: -.5em;
    left: -2.5em;
    transition: all ease 2s;
}
.otherPosts.mutate.is-inViewport .otherPostsSubTitle {
    color: rgba(255,255,255,.35);
    left: .5em;
}
.gridSinglePosts {
    display: grid;
    grid-gap: 1%;
    grid-template-columns: repeat(auto-fill, minmax(98%,1fr));
    grid-template-rows: auto;
}
.gridSingleItem {
    border: 1px solid #fff;
}
.gridSingleItem a {
    height: 25vh;
    min-height: 140px;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;      /* TWEENER - IE 10 */
	display: -webkit-flex;     /* NEW - Chrome */
	display: flex;    
    position: relative;
    box-sizing: border-box;
    align-items: flex-end;
    justify-content: center;
    transition: all .5s ease;
    border: none !important;
}
.gridSingleItem a span.gridCatInnerTitle {
    position: absolute;
    z-index: 1;
    background: linear-gradient(rgba(0,0,0,0) 10%, rgba(0,0,0,.5));
    width: 100%;
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
	text-shadow: 0 0 3px rgba(0,0,0,0.75);
    padding: 5px;
}
.gridSingleItem a span.gridCatOverFigure {
    position: absolute;
    z-index: 2;
    text-align: center;
    left: 40%;
    top: 40%;
    right: 40%;
    bottom: 40%;
    border: 1px solid #fff;
    opacity: 0;
    background-color: rgba(210,47,32,0);
    transition: all ease .75s;
}
.gridSingleItem a span.gridCatOverFigure i {
    position: relative;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
    color: #fff;
    font-size: 2em;
    opacity: 0;
    transition: all ease .75s;
}
.gridSingleItem a:hover span.gridCatOverFigure {
    left: -15px;
    top: -15px;
    right: 15px;
    bottom: 15px;
    opacity: 1;
    background-color: rgba(210,47,32,.5);
}
.gridSingleItem a:hover span.gridCatOverFigure i {
    opacity: 1;
}
.gridSingleItem a figure {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-position: center center;
    background-size: cover;
    transition: all .5s ease-in-out;
}
@media (min-width: 800px){ 
    .gridSinglePosts {
        grid-template-columns: repeat(auto-fill, minmax(48%,1fr));
    }
}
@media (min-width: 1000px){ 
    .gridSinglePosts {
        grid-template-columns: repeat(auto-fill, minmax(23%,1fr));
    }
}

 
/* ARCHIVES
-------------------------------------------------- */

.archive .container {
    padding: 240px 0 60px 0;
}
.archive .pageTitle {
    top: 140px;
    padding: 0 10vw;
}
.archive .pageContent {
    padding: 60px 10vw;
    margin-left: 0;
}
.gridView {
  display: grid;
  grid-gap: 40px;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
}
@media (min-width: 1050px){
    .gridView {
        grid-gap: 80px;
        grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
        grid-auto-rows: 20px;
    }
}
.gridItem .content {
    position: relative;
}
.gridItem img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.gridItem h2, 
.gridItem h4 {
  font-size: 16px;
  margin-bottom: 0;
  padding: 0;
  position: relative;
}
.gridItem h2::before {
    content: '';
    background-image: url("../img/blockSubTitle_bg.png");
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    z-index: auto;
    width: 60px;
    height: 60px;
    top: -40px;
    left: -30px;
}
article .gridItem a, 
article .gridItem h2 a, 
article .gridItem h4 a {
  text-decoration: none;
  border-bottom: none;
  color: var(--color-base-dark);
  transition: all ease .5s;
}
article .gridItem a:hover, 
article .gridItem h2 a:hover, 
article .gridItem h4 a:hover {
  color: var(--color-contrast-medium);
  border-bottom: none;
}
article .gridItem h2 a .gridH2::after, 
article .gridItem h4 a .gridH2::after {
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    content: "|";
    padding: 0 .5em;
    color: var(--color-contrast-medium);
}
.gridItem a span.gridOverImg {
    position: absolute;
    z-index: 1;
    left: 40%;
    top: 40%;
    right: 40%;
    bottom: 40%;
    border: 1px solid var(--color-contrast-medium);
    opacity: 0;
    background-color: rgba(0,0,0,0);
    transition: all ease .75s;
}
.gridItem a span.gridOverImg i {
    position: absolute;
    top: calc(50% - .5em);
    left: calc(50% - .5em);
    color: var(--color-base-darker);
    font-size: 1.6rem;
    opacity: 0;
    transition: all ease .75s;
}
.gridItem a:hover span.gridOverImg {
    left: 10px;
    top: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 1;
    background-color: rgba(255,255,255,.25);
}
.gridItem a:hover span.gridOverImg i {
    opacity: 1;
}


/*  Archives Nav */
.archiveNav {
	clear: both;
	text-align: center;
	display: block;
	padding: 3rem 0;
}
.archiveNav li {
	display: inline;
}
.archiveNav a,
.archiveNav a:hover,
.archiveNav .active a,
.archiveNav .disabled {
    display: inline-block;
	background-color: var(--color-base-darker);
    border: 1px solid var(--color-base-darker);
	cursor: pointer;
	color: #fff;
	text-decoration:none;
    font-weight: 600;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    padding: 0;
    margin-right: 5px;
    transition: all ease .5s;
}
.archiveNav .current {
	padding: 10px;
	padding: 0.7rem;
}

.archiveNav a:hover {
    background-color: var(--color-contrast-medium);
    border: 1px solid var(--color-contrast-medium);
    color: #fff;
}
.archiveNav .active a,
.archiveNav .current {
	color: var(--color-base-darker);
    border: 1px solid var(--color-contrast-medium);
	background-color: #fff;
}


/* HOME PAGE
-------------------------------------------------- */


.home .siteHeader {
    background-color: rgba(13,32,68,.25);
    transition: all ease .5s;
}
.home.persistent .siteHeader {
    background-color: #fff;;
}
.home .siteLogo {
    width: 20%;
    left: 40%;
    top: calc(50vh - 150px);
    background-color: transparent;
    
}
.home .siteLogo a {
    height: 300px;
    background-image: url("../img/logo-QPower-blanc.png");
}
.home .topBarMenu {
    padding-left: 20px;
}
.home.persistent .topBarMenu {
    padding-left: 100px;
}
.home .topBarMenu ul li a {
    color: #fff;
    transition: all ease 1s;
}
.home.persistent .topBarMenu ul li a {
	color: var(--color-base-darker);
}
.home .topBarMenu ul li a span {
    border-left-color: #fff;
    transition: all ease 1s;
}
.home.persistent .topBarMenu ul li a span {
    border-left-color: var(--color-contrast-medium);
}
.home .mobileMenu span {
    border: 2px solid #fff;
    transition: all ease .5s;
}
.home .mobileMenu:hover span {
    border: 5px solid #fff;
}
.home.persistent .mobileMenu span {
    border: 2px solid var(--color-contrast-dark);
}
.home .mobileMenu i {
	color: #fff;
}
.home.persistent .mobileMenu i {
	color: var(--color-base-darker);
}
.home.persistent .mobileMenu:hover span {
    border: 5px solid var(--color-contrast-medium);
}


/* Other home styles */ 

.home article {
    box-shadow: none;
}
.home img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.homeWrapper .siteTitle {
    height: 0;
}
.homeWrapper .siteTitle .mainSiteTitle {
    position: fixed;
    z-index: -5;
    top: -100vh;
    left: -100vw;
    opacity: 0;
}
.homeWrapper .homeContent {
    background-color: #fff;
    padding-bottom: 60px;
}
.page .homeContent .container {
	background-color: transparent;
	padding: 0;
    margin: 0 auto;
    border-left: none;
    min-height: 0;
    width: 100%;
}
.homeContent .sharing  {
    padding-right: 30px;
}
.homeContent .sharing strong {
    color: #3c3c3b;
}
@media (min-width: 1000px){
    .page .homeContent .container {
        max-width: 940px;
		margin: 0 auto;
    }
}
@media (min-width: 1200px){
    .page .homeContent .container {
        max-width: 1000px;
		margin: 0 auto;
    }
    .homeContent .sharing {
        padding-left: 0;
        padding-right: 0;
    }
}

.home footer,
.home .fullBg,
.home .overFullBg {
    display: none;
}
.home.page .bottomNav {
    border-right: none;
}

.home .scrollContainer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    transition: all ease 1s;
}
.home.persistent .scrollContainer {
    height: 10%;
}
.home .scrollContainer .field {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 300px;
}
.home .scrollContainer .arrow {
  width: 0;
  height: 40px;
  border: 1px solid #fff;
  position: relative;
  animation: scroll 1.5s infinite;
  -webkit-animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}
@-webkit-keyframes scroll {
  0% {
    height: 40px;
  }
  30% {
    height: 70px;
  }
  60% {
    height: 40px;
  }
}

/* Slider Home */

.homeCarousel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #eee;
}
.homeCarousel .scene {
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  border-radius:0;
  overflow: hidden;
  position: absolute;
  cursor: pointer;
}
.homeCarousel .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeCarousel .text {
    position: absolute;
    z-index: 1;
    top: calc(50% + 200px);
    max-width: 40vw;
    color: #fff;
    font-size: 2em;
    text-align: center;
    opacity: 0;
}
.homeCarousel .text a,
.homeCarousel .text a:hover {
    color: #fff;
}
.homeCarousel .slide[data-current="true"] .text {
    animation: pulse 20s linear infinite;
}
@-webkit-keyframes "pulse" {
0% {
    letter-spacing: 1px;
    opacity: 0;
}
50% {
    letter-spacing: 10px;
    opacity: 1;
}
100% {
    letter-spacing: 1px;
    opacity: 0;
}
}
.homeCarousel .image {
  width: 100vw;
  height: 100vw;
  position: absolute;
  overflow: hidden;
}
.homeCarousel .background, 
.homeCarousel .-clip {
  height: 100%;
  width: 100%;
  position: absolute;
}
.homeCarousel .background::before {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  content: '';
  height: 100%;
  width: 100%;
  display: block;
}
.homeCarousel .-rounded {
  border-radius: 100%;
  overflow: hidden;
}
.homeCarousel .-outer {
  transform: scale(0.4);
}
.homeCarousel .-outer .background {
  transform: scale(2.5);
}
.homeCarousel .-outer::after {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: '';
  background: rgba(255, 255, 255, 0.2);
}
.homeCarousel .-inner {
  transform: scale(0.2);
}
.homeCarousel .-inner .background {
  transform: scale(5.05);
}
.homeCarousel .scene .image .background::before {
  animation-duration: var(--duration);
  animation-delay: var(--main-delay);
}
.homeCarousel .scene .image:nth-child(2) .background::before {
  animation-delay: var(--outer-delay);
}
.homeCarousel .scene .image:last-child .background::before {
  animation-delay: 0s;
}
@media (orientation: portrait) {
/* Styles for portrait orientation */
    .homeCarousel .scene .image {
        display: none;
    }
    .homeCarousel .scene .image:first-of-type {
        height: 100vh;
        display: flex;
    }
    .homeCarousel .text {
        max-width: 80vw;
    }
    .home .siteLogo {
        width: 70%;
        left: 15%;
    }

}
.homeCarousel .slide {
  transition: opacity var(--duration);
}
.homeCarousel .slide[data-current="true"] {
  opacity: 1;
  --main-delay: 0.5s;
}
.homeCarousel .slide[data-current="true"] .image .background::before {
  animation-name: animate-in;
}
.homeCarousel .slide:not([data-current="true"]) {
  opacity: 0;
}
.homeCarousel .slide:not([data-current="true"]) .image .background::before {
  animation-name: animate-out;
}
@keyframes animate-out {
  from {
    transform: rotateZ(0deg) scale(1);
 }
  to {
    transform: rotateZ(360deg) scale(3);
 }
}
@keyframes animate-in {
  from {
    transform: rotateZ(0deg) scale(3);
 }
  to {
    transform: rotateZ(360deg) scale(1);
 }
}
/* 1. On cache tous les slides par défaut */
.slide {
    display: none; 
}

/* 2. On affiche le slide actif */
.slide[data-current="true"] {
    display: flex !important; /* Le !important sécurise le conflit avec le .hide() de jQuery */
}

/* 3. Sécurité : On force l'affichage du TOUT PREMIER slide au chargement de la page */
.scene .slide:first-of-type {
    display: flex;
}

/* Page Grid */
.pageLeft {
    grid-area: pageleft;
}
.sameCat {
    grid-area: samecat;
}
.pageGrid {
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
    "pageleft"
    "samecat";
}
@media (min-width: 800px) {
  .pageGrid {
      grid-template-columns: 5fr 2fr;
      grid-template-areas:
      "pageleft  samecat";
      align-content: start;
  }
}
@media (min-width: 1200px) {
  .pageGrid {
      grid-template-columns: 8fr 3fr;
      grid-template-areas:
      "pageleft  samecat";
      align-content: start;
  }
}
.halfLeft {
    grid-area: halfleft;
}
.halfRight {
    grid-area: halfright;
}
.halfGrid {
    display: grid;
    grid-gap: 20px;
    grid-template-areas:
    "halfleft"
    "halfright";
}
@media (min-width: 750px) {
  .halfGrid {
      grid-template-columns: 1fr 1fr;
      grid-template-areas:
      "halfleft  halfright";
      align-content: start;
  }
}
/* Same Cat */

.sameCatContainer {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}
.sameCat h2 {
    font-size: 1.4rem;
}
.sameCat .gridCatPosts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2px;
}
@media (min-width: 750px){ 
    .sameCat .gridCatPosts {
        grid-template-columns: 1fr;
        grid-gap: 2px;
    }
}
@media (min-width: 1000px){ 
    .sameCat .gridCatPosts {
        grid-template-columns: 1fr 1fr;
    }
}
.sameCat .gridCatItem {
    background-size: cover;
    position: relative;
    overflow: hidden;
    border: 2px solid #fff;
}
.sameCat .gridCatItem a {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    color: #fff;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    padding: 5px;
    background: linear-gradient(rgba(0,0,0,0) 50%, rgba(0,0,0,.75));
    transition: all .5s ease;
}
.sameCat .gridCatItem a:before {
    content: "";
    display: block;
    padding-bottom: 75%;
}
.sameCat .gridCatItem a:hover {
}
.sameCat .gridCatItem a aside {
    position: absolute;
    height: 0px;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    background-color: #c8d400;
    opacity: 0;
    transition: all ease 2s;
}
.sameCat .gridCatItem a span,
.sameCat .gridCatItem a:hover span {
    position: absolute;
    bottom: 0;
    padding: 10px;
    z-index: 3;
    width: 100%;
    text-align: center;
    opacity: 1;
    line-height: 1;
    color: #fff;
}
.sameCat .gridCatItem a:hover aside {
    opacity: 1;
    height: 100%;
}


/* FOOTER
-------------------------------------------------- */

footer {
    background-color: var(--color-base-lighter);
    color: var(--color-base-dark);
    position: relative;
}
.footerContainer {
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0 auto;
    max-width: calc(85vw - 80px);
}
footer a {
    color: var(--color-base-darker);
    border-bottom: 1px solid var(--color-contrast-medium);
    transition: all ease .5s;
}
footer a:hover {
    color: #fff;
    border-bottom: 1px solid var(--color-contrast-light);
}
footer h2 {
    color: var(--color-base-darker);
    margin-top: 40px;
    padding-top: 0;
}
footer ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
footer .widget ul, footer .widget li {
	margin: 0 !important;
	padding: 0 !important;
}
footer ul.menu {
	position: relative;
}
footer ul.menu li {
	list-style-type: none;
	padding-bottom: 1px !important;
}
footer ul.menu li a {
	display: block;
	padding: 10px 20px;
	color: #211b1b;
	background-color: #fff;
    border: none;
	transition: 1s background-color ease;
}
footer ul.menu li a:hover {
	background-color: var(--color-contrast-medium);
    color: #fff;
}
footer h4 {
	margin-top: 0;
}
footer #cff > p {
    display: none;
}
footer #cff .cff-item.cff-box, 
footer #cff .cff-item.cff-box:first-child {
    margin-top: 0!important;
}
.gridWidgets:before, .gridWidgets:after {
    clear: both;
    content: "";
    display: block;
}
.footerGridView {
	display: grid;
    position: relative;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 40px;
	grid-template-areas: "footer1 footer2 footer3";
}
.footerItem01 {
	grid-area: footer1;
}
.footerItem02 {
	grid-area: footer2;
}
.footerItem03 {
	grid-area: footer3;
}
@media (max-width: 800px){
    .footerContainer {
        max-width: calc(100vw - 40px);
    }
	.footerGridView {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "footer1" "footer2" "footer3";
    }
}
@media (min-width: 1480px){
    .footerContainer {
        max-width: 1400px;
    }
}
/* Back to top */

.totop {
	position: fixed;
	bottom: 5px;
	left: 20px;
	z-index: 104400;
}

.totop a, .totop a:visited{
	background-color: #fff;
	display: block;
    width: 40px;
	height: 40px;
	color: var(--color-contrast-medium);
    border: 2px solid var(--color-contrast-medium);
    border-radius: 50%;
	text-align: center;
	line-height: 40px;
    transition: all ease .5s;
}
.totop a:hover {
    border: 5px solid var(--color-contrast-medium);
	text-decoration: none;
}
.totop a i {
	color: var(--color-contrast-dark);
}

/* Bottom Nav */

.bottomNav {
    font-size: .7rem;
    background-color: #fff;
    padding: 0 100px;
    line-height: 40px;
    height: 40px;
}
.bottomNav nav {
    display: inline-block;
    padding-right: 20px;
}
.bottomNav nav li {
    display: inline-block;
}
.bottomNav nav li a {
    margin-right: 10px;
}
.bottomNav nav li:last-child a {
    margin-right: 0;
}
@media (max-width: 800px) {
    .bottomNav nav {
        display: none;
    }
}

/* Google ReCaptcha */
.grecaptcha-badge { 
    visibility: hidden;
}

/* Copyright */
.refDYD,
.copyright {
    font-size: .5rem;
}


/* Facebook Flow
-------------------------------------------------- */

#cff .cff-item {
    border: 1px solid var(--color-contrast-medium) !important;
}

/* 404
-------------------------------------------------- */
.error404 .container {
    padding: 50vh 0 60px 0;
}
.error404 .overFullBg {
    background-color: rgba(0,0,0,.15);
}
.error404.persistent .overFullBg {
    background-color: rgba(255,255,255,.65);
}
.error-404 {
    padding: 0 40px 40px 140px;
    color: #fff;
    transition: all ease .5s;
}
.persistent .error-404 {
    color: var(--color-base-dark);
}
.error-404 h1 {
    color: #fff;
    transition: all ease 1s;
}
.persistent .error-404 h1 {
    color: var(--color-base-dark);
}
.error-404 .pageSubTitle.mutate.is-inViewport {
    color: rgba(255,255,255,.25);
}
.persistent .error-404 .pageSubTitle.mutate.is-inViewport {
    color: rgba(0,0,0,.05);
}

/* WOOCOMMERCE
-------------------------------------------------- */

.woocommerce .fullBg,
.woocommerce .overFullBg {
    display: none;
}
.woocommerce .container,
.woocommerce .pageContainer,
.single.logged-in .pageContainer{
    padding: 60px 20px;
}
.woocommerce .pageContainer {
    max-width: 1200px;
    margin: 0 auto;
}
.wooContent #breadcrumbs {
    padding-left: 0;
}
.single-product .wooContent #breadcrumbs {
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #e5e5e5;
}
.woocommerce-page #content .single_wrap {
    float: none;
    width: 100%;
}
.woocommerce-page #sidebar {
    display: none;
}
.woocommerce .woocommerce-ordering {
    display: none;
}
.woocommerce .products ul, 
.woocommerce ul.products {
    margin: 1em 0;
}

/* Convert the standard WooCommerce products list into a modern responsive grid. */
ul.products {
  --grid-gap: 20px;
  --auto-grid-min-size: 180px;
  grid-template-columns: repeat(auto-fill, minmax(var(--auto-grid-min-size), 1fr));
  grid-gap: var(--grid-gap);
  display: grid;
}
ul.products:before{
  content:unset!important;
}
ul.products li.product {
  width: 100%!important;
  display:flex;
  flex-direction:column;
}
ul.products li.product a.woocommerce-loop-product__link {
  flex-grow: 1;
}

.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
    /*box-shadow: 0 0 10px rgba(0,0,0,.25);*/
    background-color: #fff;
}
.woocommerce .isFiltered {
    color: #fff;
}
.woocommerce ul.products li.product h2 {
    font-family: 'Bricolage Grotesque', sans-serif;
}
.woocommerce ul.products li.product h2 mark {
    background-color: transparent;
    color: #888;
}
.woocommerce ul.products li.product a {
    padding: 10px;
    display: block;
    border: 1px solid #e9e9e9;
}
.woocommerce nav.woocommerce-pagination ul {
    border: 3px solid #fff;
    border-right: 0;
}
.woocommerce nav.woocommerce-pagination ul li {
    border-right: 3px solid #fff
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    color: #fff;
    background-color: #91c46d;
}
@media (min-width: 992px){
    .woocommerce nav.woocommerce-pagination ul li a,
    .woocommerce nav.woocommerce-pagination ul li span {
        font-size: 1.4rem;
    }
}
.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-color: #00534d;
    color: #fff;
}
.woocommerce .page-title {
    font-size: 2.6rem;
	padding: 0;
    margin: 0 0 20px 0;
}
@media (min-width: 767px){
    .woocommerce .page-title {
        font-size: 4rem;
    }
}

.woocommerce .woocommerce-result-count {
    font-weight: 600;
    margin: 1em 0;
}
.woocommerce ul.products li.product .price {
    color: #111;
}
ul.products .in_stock_color {
    color: #636363!important;
}
.woocommerce ul.products li.product .button {
    text-align: center;
    display: block;
}
.woocommerce button {
    width: auto;
}
.woocommerce .quantity .qty {
    width: 6em;
    padding: 10px 5px;
}
.woocommerce table.variations label {
    padding-top: 0;
}
.woocommerce table.variations select {
    width: auto;
    min-width: 50% !important;
}
.woocommerce a.button {
    transition: all ease .5s;
}
.woocommerce a.button:hover {
    background-color: var(--color-contrast-medium)!important;
    color: #fff!important;
}
.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 {
    border-radius: 0!important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled], .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:disabled[disabled]:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt.disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled], :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:disabled[disabled]:hover {
    background-color: var(--color-contrast-light);
}


a.add_to_cart_button:before,
.single_add_to_cart_button:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f217";
    padding-right: 5px;
}
a.product_type_variable.add_to_cart_button:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0cb";
    padding-right: 5px;
}
.woocommerce a.added_to_cart {
    background-color: #ffda00;
    color: #000;
    text-align: center;
}
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background-color: var(--color-base-medium);
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 10px;
    text-align: center;
    display: block;
    position: relative;
    z-index: 1;
    transition: all ease .5s;
}
.woocommerce #respond input#submit.alt:hover, 
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover,
.woocommerce a.added_to_cart:hover {
    background-image: none;
    background-color: var(--color-contrast-medium)!important;
}
.woocommerce form .form-row label, .woocommerce-page form .form-row label {
    width: 100%;
}
.woocommerce-input-wrapper {
    width: 100%;
}
.woocommerce div.product div.images img {
    background-color: #fff;
    padding: 1px;
}
.woocommerce div.product div.images .flex-control-thumbs li {
    width: auto;
}
.woocommerce div.product div.images .flex-control-thumbs li img {
    max-width: 50px;
}
.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2) {
    width: auto;
}
.woocommerce-MyAccount-navigation ul {
    text-align: left !important;
}
.woocommerce-MyAccount-navigation li, .woocommerce-MyAccount-navigation li a {
    display: block !important;
}
.woocommerce-MyAccount-navigation li a {
    padding: .4em 0;
}
.single-product .heateorSssClear {
    margin-top: 40px;
}
.single-product .product_title {
    margin: 0;
    padding: 0 0 17px 0 !important;
    font-style: normal;
    font-size: 3rem;
    overflow: hidden;
    line-height: 1;
    transition: all ease 1s;
}
.single-product.withBg .product_title {
    color: #fff;
}
.single-product.withBg.persistent .product_title {
    color: rgba(255,255,255,.5);
}
.single-product .transpWrap {
    margin-bottom: 40px;
}
.single-product .transpWrap:first-of-type {
    margin-bottom: 80px;
}
.single-product .solidWrap {
}
.single-product section.upsells,
.single-product section.related {
}
.single-product .solidWrap .related h2,
.single-product .solidWrap .upsells h2 {
    padding: 0 0 1em 0;
    margin: 0;
}
.single-product .solidWrap .related li.product h2,
.single-product .solidWrap .upsells li.product h2{
    color: #000;
}
.single-product .hrClear {
    clear: both;
    border: none;
    margin: 0;
}
.single-product .productCustom {
    border-top: 1px solid #e6f1de;
    text-align: center;
}
.single-product .productDisclaimer {
    padding: 0 20px;
    margin-bottom: 20px;
    border: 5px solid #ffda00;
}
.woocommerce span.onsale {
    z-index: 2;
}
.single-product .productMoreInfo {
    border-top: 1px solid #e6f1de;
    padding-top: 1rem;
}
.single-product .productMoreInfo a {
    border-bottom: 1px solid #e6f1de;
    transition: all ease .5s;
}
.single-product .productMoreInfo a:hover {
    border-bottom-color: transparent;
    color: #259b64;
}

/* price Container */
.single-product .priceContainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
    border-bottom: 1px dotted #e5e5e5;
    border-top: 1px dotted #e5e5e5;
    padding: 20px 0;
}
.single-product .priceContainer .cart,
.single-product .priceContainer p {
    margin: 0 !important;
    padding: 0 !important;
}

/* Attributes */
.woocommerce table.shop_attributes {
    border-collapse: collapse;
    border-style: solid;
}
.woocommerce table.shop_attributes th,
.woocommerce table.shop_attributes td {
    border-bottom-style: solid;
    text-align: left;
}
.reset_variations {
    background-color: #e27b60;
    font-weight: 600;
    color: #fff;
    padding: 4px 10px;
}
.reset_variations:hover {
    background-color: #f00;
    color: #fff;
}
.reset_variations::before {
    content: 'x';
    margin: 3px 10px 3px 0;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    text-align: center;
}

/* Meta */
.single-product .product_meta .sku_wrapper,
.single-product .product_meta .posted_in,
.single-product .product_meta .tagged_as {
    display: block;
    padding: 3px 0;
    font-weight: 600;
}
.single-product .product_meta .sku_wrapper a,
.single-product .product_meta .posted_in a,
.single-product .product_meta .tagged_as a {
    font-weight: 400;
    border-bottom: 1px solid #e6f1de;
    transition: all ease .5s;
} 
.single-product .product_meta .sku_wrapper a:hover,
.single-product .product_meta .posted_in a:hover,
.single-product .product_meta .tagged_as a:hover {
    color: #259b64;
    border-bottom: none;
} 
.single-product .product_meta .sku_wrapper .sku {
    font-weight: 400;
}
.single-product .product_meta .tagged_as {
    display: none;
}

@media (max-width: 769px){
    footer .woocommerce ul.products[class*=columns-] li.product, 
    footer .woocommerce-page ul.products[class*=columns-] li.product {
		width: auto;
		float: none;
	}
}

/* Woocommerce content blocks gutenberg */

.wc-block-grid__products .wc-block-grid__product-image img {
    height: auto;
}
article .wc-block-grid__products a {
    border-bottom: none;
}

/* Woocommerce shop widgets */

.shopWidgets {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    padding: 20px;
}
.shopWidgets h3 {
    padding: .5em 0;
    margin: 0;
    border-top: 2px solid var(--color-base-light);
}
.shopWidgets ol {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.shopWidgets .widget ul.menu, 
.shopWidgets .widget ul.menu li {
	margin: 0;
	padding: 0 !important;
}
.shopWidgets ul.menu {
	position: relative;
}
.shopWidgets ul.menu li {
	list-style-type: none;
	margin-bottom: 1px !important;
}
.shopWidgets ul.menu li a {
	display: block;
	padding: 10px 20px;
	color:  var(--color-contrast-dark);
    font-weight: 400;
	background-color: var(--color-base-lighter);
    border: none;
	transition: 1s background-color ease;
}
.shopWidgets ul.menu li a:hover {
	color: #fff;
	background-color: var(--color-contrast-medium);
}
.shopWidgets h4 {
	margin-top: 0;
}
.loginFormContainer {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    background-color: #fff;
    padding: 20px;
}

/* Side Cart */
.xoo-wsc-cart-active .xoo-wsc-opac {
    opacity: 0.5;
}
.xoo-wsc-opac {
    background-color: #991b5e;
}

/* Composer un coffret  */

.product_cat-composer-un-coffret div.images {
    display: none;
}
.product_cat-composer-un-coffret div.summary {
    float: none !important;
    width: auto !important;
}
.product_cat-composer-un-coffret .product_meta {
    display: none;
}

/* Bundle plugin */
.woosb-before-text {
    font-weight: 600;
    font-size: 1.2em;
    color: #991b5e;
}
.woosb-products[class*="woosb-products-layout-grid"] .woosb-product {
    border: 1px solid #e9e9e9;
    transition: all ease .5s;
}
.woosb-products[class*="woosb-products-layout-grid"] .woosb-product:hover {
    border-color: #991b5e;
}


/* Product popup plugin */
.mfp-bg {
    background: #991b5e;
    opacity: .5;
}

