/*------------------------------------*\
    # - RESET
\*------------------------------------*/

/**
* Eric Meyer's CSS Reset
* https://github.com/reefat/css-reset
*/
 
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
table.interactive {
    margin: 30px 0;
}
button {
    background: none;
    border: 0;
    cursor: pointer;
    margin: 0;
    outline: 0;
    padding: 0;
}
main, section, article, footer, header {
    display: block;
}




/*------------------------------------*\
    # - CRITICAL V4
\*------------------------------------*/

html {
  font-size: min(18px, 1vw);
  line-height: 1.5;
}

#site-header {
  /* vars */
  --v3-primary-color: #82B338;
  --v3-secondary-color: #4E8028;
  --v3-secondary-color-hover: #4E8028;
  --v3-highlight-color: #00b4ff;
  --v3-cta-color: #f49919;
  --v3-cta-color-hover: color-mix(in srgb, var(--v3-cta-color) 90%, white);
  --v3-cta-text-color: #fff;
  --v3-cta-passive-color: #f6f6f6;
  --v3-cta-passive-text-color: #767676;
  --v3-benefitbar-bg-color: #f6f6f6;
  --v3-text-color: #767676;
  --v3-text-color-dark: #4d4d4d;
  --v3-divider-color: #ddd;
  --v3-promo-color: #4E8028;

  --v4-neutral-color-1: #4d4d4d;
  --v4-neutral-color-2: #767676;
  --v4-neutral-color-3: #ddd;
  --v4-neutral-color-4: #f6f6f6;

  --v3-container-max-w: 1200px;
  --v3-container-min-w: 340px;
  --v3-font-family: 'Open Sans New', serif;
  --v3-vw-tablet: 550px;
  --v3-vw-desktop: 960px;
  --v3-border-radius-box: 10px;

  --filter-v3-text-color: brightness(0) saturate(100%) invert(56%) sepia(0%) saturate(373%) hue-rotate(174deg) brightness(81%) contrast(83%);

  @font-face {
    font-family: 'Open Sans New';
    src: url('https://xxlpix-all.b-cdn.net/fonts/opensans-variable.woff2') format('woff2');
    font-display: swap;
  }

  @font-face {
    font-family: 'playfair';
    src: url('https://xxlpix-all.b-cdn.net/fonts/playfair-variable.woff2') format('woff2');
    font-display: swap;
  }

  body {
    @media (width <=768px) {
      & {
        font-size: max(0.8rem, 16px);
      }
    }

    *~p:last-child {
      margin-bottom: 0;
    }
  }

  p {
    font-size: inherit;
    line-height: inherit;

    &:not(.info-text p, #footer p) {
      max-width: 768px;
    }

    &:is(.t-center p, .t-center) {
      margin-inline: auto;
    }

    &.no-margin {
      margin-bottom: 0;
    }
  }

  .t-center p {
    margin-inline: auto;
  }

  hr {
    border: 0;

    &.divider {
      border-top: 1px solid var(--divider-color);
    }

    &.size-5 {
      margin-block: max(5px, 0.3rem);
    }

    &.size-10 {
      margin-block: max(10px, 0.5rem);
    }

    &.size-15 {
      margin-block: max(10px, 0.83rem);
    }

    &.size-20 {
      margin-block: max(15px, 1.1rem);
    }

    &.size-25 {
      margin-top: 25px;
      margin-bottom: 25px;
    }

    &.size-30 {
      margin-top: 30px;
      margin-bottom: 30px;
    }

    &.size-35 {
      margin-top: 35px;
      margin-bottom: 35px;
    }

    &.size-40 {
      margin-top: 40px;
      margin-bottom: 40px;
    }

    &.size-45 {
      margin-top: 45px;
      margin-bottom: 45px;
    }

    &.size-50 {
      margin-block: max(30px, 2.8rem);
    }

    &.size-55 {
      margin-block: max(30px, 3rem);
    }

    &.size-60 {
      margin-block: max(35px, 3.3rem);
    }

    &.size-65 {
      margin-block: max(35px, 3.6rem);
    }

    &.size-70 {
      margin-block: max(40px, 3.9rem);
    }

    &.size-75 {
      margin-block: max(40px, 4.1rem);
    }

    &.size-80 {
      margin-block: max(45px, 4.4rem);
    }

    &.size-85 {
      margin-block: max(45px, 4.7rem);
    }

    &.size-90 {
      margin-block: max(50px, 5rem);
    }

    &.size-95 {
      margin-block: max(50px, 5.3rem);
    }

    &.size-100 {
      margin-block: max(55px, 5.6rem);
    }
  }

  .semi-bold {
    font-weight: 600;
  }

  img {
    vertical-align: top;
  }

  .wrap-full-grid {
    width: clamp(340px, calc(100% - 1rem), 1200px);
    max-width: 100%;
  }

  .entry-content ul {
    li {
      margin-top: 0;
    }
  }

  h1 {
    color: var(--v3-text-color);
    /*font-size: max(28px, 2.25rem);*/
    font-size: 48px;
    line-height: 1.3;

    &+.subheadline {
      margin-top: 20px;
    }

    &+.divider {
      margin-top: 25px;
    }
  }

  h2 {
    color: var(--v3-text-color);
    font-size: max(26px, 2rem);
    line-height: 1.3;
    font-weight: normal;
    text-wrap: balance;
  }

  h3 {
    font-size: max(18px, 1.3rem);
    font-weight: 500;
  }

  h2:has(+ p) {
    margin-bottom: max(15px, 1rem);
  }

  .col-2 {
    column-count: 2;
    column-gap: 2rem;
  }

  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    &.gap-l {
      gap: max(30px, 10%);
    }
  }

  .flex-row {
    display: flex;
    flex-flow: row;
    align-items: center;

    &.gap-s {
      gap: 20px;
    }
  }

  .margin-block-xs {
    margin-block: 10px;
  }

  .margin-block-s {
    margin-block: 20px;
  }

  .bubble:has(.cicon) {
    background-color: #F3F8EC;
    width: max-content;
    border-radius: 9000px;
    padding: 10px;
    margin-inline: auto;
    position: relative;

    .cicon {
      --icon-color: var(--v3-primary-color);
    }

    &.size-l {
      padding: 15px;

      .cicon {
        width: 50px;
      }
    }

    .bubble {
      --height: 26px;
      background-color: var(--v3-primary-color);
      height: var(--height);
      position: absolute;
      top: 0;
      right: -20px;
      color: #fff;
      padding: 5px 10px;
      line-height: 1;

      .cicon {
        position: static;
        width: auto;
        background-color: #fff;
        box-sizing: content-box;
        height: calc(var(--height) / 1.5);
        padding: 0;
      }
    }
  }

  .stars-v4 {
    --stars: 5;
    font-family: unset;
    width: calc(1em * var(--stars));
    display: inline-block;
    background-color: #ffd200;
    mask: url(https://xxlpix-all.b-cdn.net/icons-huge/star-filled.svg) repeat left/contain;
    margin: 0;
    vertical-align: top;
    aspect-ratio: var(--stars);
  }

  .hide-mobile {
    @media (width <=768px) {
      & {
        display: none;
      }
    }
  }

  .hide-desktop {
    @media (width >768px) {
      & {
        display: none;
      }
    }
  }

  .btn {
    all: unset;
    cursor: pointer;
  }

  .btn {
    border-radius: var(--v3-border-radius-box);
    display: inline-flex;
    align-items: center;
    gap: max(5px, 0.5rem);
    text-decoration: none !important;

    background-color: var(--v3-cta-color);
    color: var(--v3-cta-text-color);
    padding: max(10px, 1rem);
    font-size: max(18px, 1.1rem);
    line-height: 1;
    font-family: var(--v3-font-family);
    font-weight: 700;

    &:not(.hero .btn) {
      white-space: nowrap;

    }

    &.btn-small {
      font-size: 16px;
      line-height: max(1.5em, 24px);
      padding: 5px 10px;

    }

    &.btn-orange .cicon {
      --icon-color: #fff;
    }

    &.passive {
      background-color: var(--v3-cta-passive-color);
      color: var(--v3-cta-passive-text-color);

      &.ghost {
        background: transparent;
        outline: 1px solid var(--v3-cta-passive-text-color);
        color: var(--v3-cta-passive-text-color) !important;
      }
    }

    &.js-upload-btn {
      padding-block: max(5px, 0.5rem);

      &::after {
        content: "";
        mask: url('https://xxlpix-all.b-cdn.net/icons-huge/arrow-up-02.svg') no-repeat center / contain;
        aspect-ratio: 1;
        height: 1.8em;
        margin: 0 auto;
        display: block;
        background-color: #fff;
      }

      &.btn-large {
        font-size: max(16px, 1.3rem);
        line-height: 1;
      }

    }

    /*
    span[class*="icon-"] {
      display: none;
    }
    */

    @media (width <=768px) {
      & {
        line-height: 1.3;
        white-space: wrap;
      }
    }

  }

  /* hide components */
  print-size-preview-selector,
  light-switch {
    visibility: hidden;
  }
}

/*------------------------------------*\
    # - FANCYBOX
\*------------------------------------*/

.fancybox-slide > * {
    padding: 0;
}
.fb-wrap {
    padding: 25px;
}
.fancybox-inner {
    color: #7b7b7b;
}
    .fancybox-inner h2 {
        color: #7b7b7b;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.3em;
    }
    .fancybox-inner h3 {
        color: #7b7b7b;
        font-size: 16px;
        font-weight: bold;
        line-height: 1.3em;
        margin-bottom: 10px;
    }

.error-box .fancybox-slide .btn-close {
    margin-top: 25px;
}

.fb-help-box .js-response {
    display: none;
}
    .fb-help-box p strong {
        font-size: 28px;
        line-height: 1.3em;
    }
    .fb-help-box textarea {
        font-family: 'Open Sans', Arial, Helvetica, sans-serif;
        font-size: 16px;
        height: 170px;
        line-height: 1.3em;
        padding: 10px;
        resize: none;
        width: 100%;
        margin: 20px 0;
    }
    
.fb-order {
    max-width: 960px;
}
    .fb-order h2 {
        font-size: 32px;
        line-height: 1em;
        margin: 0;
        padding: 30px;
    }
    .fb-order .wrap {
        background-image: url('/fme_checkout/images/wrb-order-bg.jpg');
        background-repeat: no-repeat;
        background-size: contain;
        height: auto;
        min-height: 400px;
        max-width: 960px;
    }
        .step-6 .fb-order .preview {
            display: table;
            width: 280px;
            height: 245px;
            text-align: center;
            margin-left: 10px;
            margin-top: 10px;
        }
            .step-6 .fb-order .preview div {
                display: table-cell;
                vertical-align: bottom;
            }
                .step-6 .fb-order .preview img {
                    vertical-align: top;
                    margin: 0;
                    max-height: 250px;
                    box-shadow: -2px 2px 5px 0 #606060;
                }
    .fb-order .trustbar {
        padding: 0 10px;
    }
        .fb-order .trustbar img {
            vertical-align: top;
        }
    .fb-order .table-selector {
        /*margin-top: 60px;*/
        margin-top: 90px;
        position: relative;
        right: 0;
        width: 460px;
    }
    .lang-it .fb-order .table-selector {
		margin-top: 70px;
    }
        .fb-order .table-selector td {
            background-color: #f7f7f7;
        }
        .fb-order .table-selector td:first-child + td {
            width: 240px;
        }
        .fb-order .table-selector small {
            margin-left: 7px;
        }
        .fb-order .tip {
            background-color: #82b338;
            padding: 0 5px;
            line-height: 1em;
            font-weight: bold;
            color: #fff;
            border-radius: 5px;
            margin-left: 7px;
        }
    .fb-order .table-selector + div {
        margin-top: 20px;
        position: relative;
        right: 0;
    }
    .fb-order .preview + div {
      margin-right: 10px;
    }
    
/*******************/

.preview-popup .fancybox-slide > * {
    padding: 0;
}

.preview-popup .js-zoom {
    overflow: visible;
}
.preview-popup .fancybox-toolbar {
    visibility: visible;
    opacity: 1;
}





/*------------------------------------*\
    # - GENERAL
\*------------------------------------*/

html {
  font-size: min(18px, 1vw);
}

.cicon {
  --icon-color: var(--v3-text-color);
}

body {
	background-color: #fff;
    color: #7b7b7b;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
}
body.no-scroll {
	overflow: hidden;
}

h1 {
    color: #82b338;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}
h2 {
    color: #666666;
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 30px;
}

p {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 10px;
}

a,
.link {
    color: #bc3e1e;
    cursor: pointer;
    text-decoration: none;
}
a.btn {
    display: inline-block;
}
a:hover,
a:focus,
.link:hover,
.link:focus {
    text-decoration: underline;
}
a.btn:hover,
a.btn:focus,
a.no-hover {
    text-decoration: none;
}
a.passive {
    color: #7b7b7b;
    text-decoration: underline;
}

strong {
    font-weight: bold;
}
small {
    font-size: smaller;
}

ol.standard {
    display: block;
    list-style-type: decimal;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
    padding-left: 25px;
}
ol.bubbles {
    counter-reset: section;
    display: block;
    list-style-type: none;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}
    ol.bubbles li {
        position: relative;
    }
    ol.bubbles li:before {
        background-color: #82b338;
        border-radius: 50%;
        color: #fff;
        content: counters(section, ".", decimal) " ";
        counter-increment: section;
        display: block;
        font-size: 1em;
        height: 30px;
        line-height: 30px;
        margin-left: -40px;
        position: absolute;
        text-align: center;
        top: -5px;
        width: 30px;
    }
ul.standard { 
    display: block;
    list-style-type: disc;
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    padding-left: 40px;
}
.t-center > ol,
.t-center > ul {
    display: inline-block !important;
    list-style-position: inside;
}
ol li,
ul li,
ol.standard li,
ul.standard li {
    font-size: 1em;
    line-height: 1.4em;
    margin-top: 5px;
}
ul.standard li:first-child {
    margin-top: 0;
}
    
ul li:first-child,
ol li:first-child {
    margin-top: 0 !important;
}
    
ul.space-5 li,
ol.space-5 li {
    margin: 5px 0;
}
    ul.space-20 li,
    ol.space-20 li {
        margin: 20px 0;
    }
    ul.space-30 li,
    ol.space-30 li {
        margin: 30px 0;
    }

footer {
    color: #666666;
    margin-top: 50px;
    text-align: center;
}
    .trustbar {
        background-color: #fff;
        border-top: 1px solid #dcdcdc;
        border-bottom: 1px solid #dcdcdc;
        padding: 0;
        width: 100%;
        text-align: center;
    }
    footer p {
        padding: 20px;
    }
    footer img {
        vertical-align: middle;
    }
    footer .glide {
    	text-align: left;
    	margin-top: 50px;
    	margin-bottom: 50px;
	}
	    footer .glide p {
			padding: 0;
	    }
	    footer .glide .glide__bullets {
			display: none !important;
	    }

.wrap-full-grid {
    margin: 0 auto;
    width: 960px;
}

.red {
    color: #f00 !important;
}
.green {
    color: #82b338 !important;
}
.darkgreen {
	color: #4e8028 !important;
}

.bg-green {
    background-color: #82b338;
    color: #fff;
}


.t-left {
    text-align: left !important;
}
.t-right {
    text-align: right !important;
}
.t-center {
    text-align: center !important;
}

.f-left {
    float: left;
}
.f-right {
    float: right;
}

.btn {
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    transition: background-color 0.3s ease;
}
    .btn-small {
        font-size: 14px;
        padding: 5px 10px;
    }
    .btn-medium {
        font-size: 16px;
        line-height: 1.3em;
        padding: 10px 20px;
    }
    .btn-large {
        font-size: 24px;
        padding: 13px 22px;
    }
    .btn-orange {
        background-color: #ff9b00;
        color: #fff !important;
    }
    .btn-orange:hover {
        background-color: #ff6b00;
    }
    .btn-green {
        background-color: #82b338;
        color: #fff !important;
    }
    .btn-green:hover {
        background-color: #629318;
    }
    .btn-grey {
        background-color: #eee;
        color: #7b7b7b !important;
    }
    .btn-grey:hover {
        background-color: #ddd;
    }
    .btn .icon:before {
        margin-right: -0.2em;
    }

.b-bottom {
    border-bottom: 1px solid #dcdcdc;
}
.b-top {
    border-top: 1px solid #dcdcdc;
}

input[type="text"] {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    color: #7b7b7b;
    font-size: 16px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.5em;
    padding: 5px 8px 6px;
}
input[type="text"]:focus,
input[type="password"]:focus,
textarea:focus {
    border: 1px solid #ff9b00 !important;
    outline: 0 none;
}
    input.error,
    textarea.error {
        background-color: #ffe0e0;
        border-color: #f00;
    }

.underline {
    text-decoration: underline;
}

.c-pointer {
    cursor: pointer;
}
.c-help {
    cursor: help;
}
.c-move-hori {
    cursor: e-resize;
}
.c-move-vert {
    cursor: n-resize;
}

.hidden {
    display: none;
}

hr {
    background-color: #dddddd;
    border: 0 none;
    clear: both;
    display: block;
    font-size: 0;
    height: 1px;
    margin: 20px auto;
}
hr.spacer {
    background-color: transparent;
    margin: 20px auto;
}
    hr.divider-5,
    hr.spacer-5 {
        margin: 5px auto;
    }
    hr.divider-10,
    hr.spacer-10 {
        margin: 10px auto;
    }
    hr.divider-20,
    hr.spacer-20 {
        margin: 20px auto;
    }
    hr.divider-30,
    hr.spacer-30 {
        margin: 30px auto;
    }
    hr.divider-40,
    hr.spacer-40 {
        margin: 40px auto;
    }
    hr.divider-50,
    hr.spacer-50 {
        margin: 50px auto;
    }
    hr.divider-60,
    hr.spacer-60 {
        margin: 60px auto;
    }
    hr.divider-70,
    hr.spacer-70 {
        margin: 70px auto;
    }

* + .row {
    margin-top: 15px;
}
.row {
    margin-bottom: 15px;
}
* .row:last-child {
    margin-bottom: 0;
}
.row.v-middle {
    display: table;
}
.row.v-middle > .col {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
.col > img {
    max-width: 100%;
    height: auto;
}
.col > *:first-child {
    margin-top: 0;
}

.fancybox-wrap img {
    max-width: 100%;
    max-height: 100%;
}

.pos-relative {
    position: relative;
}
.pos-absolute {
    position: absolute;
}

table {
    margin: 20px 0;
}
table th,
table td {
    vertical-align: top;
}
table tr.v-middle th,
table tr.v-middle td {
    vertical-align: middle;
}
table tr.v-bottom th,
table tr.v-bottom td {
    vertical-align: bottom;
}
table.full {
    width: 100%;
}
    table.padding th,
    table.padding td {
        padding: 10px;
    }
    table.padding-15 th,
    table.padding-15 td {
        padding: 15px;
    }
    table.padding-20 th,
    table.padding-20 td {
        padding: 20px;
    }
table tr.b-bottom {
    border: 0;
}
    table tr.b-top td {
        border-top: 1px solid #eee;
    }
    table tr.b-bottom td {
        border-bottom: 1px solid #eee;
    }
    table tr.b-bottom td.bg-green,
    table tr.b-bottom td.bg-grey {
        border-color: #fff;
    }
    
img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    vertical-align: top;
}
img.sharpen {
    image-rendering: auto;
    image-rendering: -o-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
    ms-interpolation-mode: nearest-neighbor;
}
img.full {
    max-width: none;
    max-height: none;
}





/*------------------------------------*\
    # - HEADER
\*------------------------------------*/

.top-header {
    background-image: url('/wp-content/themes/FME/images/fme-header-1-bg.jpg');
    background-repeat: no-repeat;
    background-position: center 0;
    min-height: 528px;
}
    .top-header .wrap {
        margin: 0 auto;
        height: auto;
        position: relative;
        padding-top: 60px;
        width: 1050px;
    }
        .top-header img {
            max-width: none;
        }
        .top-header .col + .col {
            padding-left: 50px;
        }
        .top-header .wrap .headline {
            color: #6b6a65;
            font-size: 44px;
            font-weight: bold;
            line-height: 1em;
            margin-bottom: 13px;
            margin-top: 15px;
            text-align: left;
        }
        .top-header .subheadline {
            color: #4e8028;
            font-size: 25px;
        }
        .top-header .btn {
            margin-bottom: 10px;
            margin-top: 30px;
        }

#site-header {
  background-color: #fff;
  border-bottom: 1px solid var(--v4-neutral-color-3);

  >.wrap {
    display: flex;
    flex-flow: row;
    gap: 0.6rem;
    align-items: center;
    max-width: var(--v3-container-max-w);
    margin-inline: auto;
    padding-block: 1rem;

    @media (width < 1200px) {
      & {
        padding-inline: 1rem;
      }
    }
  }
}

#logo {
  padding: 0.6rem;
  flex-grow: 1;

  img {
    height: 40px;
  }

  @media (width <=768px) {
    & {
      padding-inline: 0;

      img {
        max-width: 80%;
      }
    }
  }
}

.mobile-menu .icon {
  font-size: 24px;
}

@media (width >=1200px) {
  .mobile-menu {
    display: none;
  }
}


.top-nav {
  .close {
    display: none;
  }

  >ul {
    display: flex;
    flex-flow: row;
    align-content: center;
    gap: max(1.5rem, 10px);

    >li {
      margin: 0;
      color: inherit;

      a {
        margin: 0;
        color: inherit;
      }
    }
  }
}

#page:has(#main-nav.active)::after {
  content: "";
  width: 100vw;
  height: 100vh;
  z-index: 999998;
  background: rgb(0, 0, 0, 0.5);
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

#main-nav {
  @media (width < 1200px) {
    &:not(.active) {
      /*display: none;*/
      visibility: hidden;
      pointer-events: none;
    }

    &.active {
      left: 0;
    }

    & {
      position: fixed;
      top: 0;
      left: -100%;
      z-index: 999999;
      width: clamp(200px, 300px, 80%);
      height: 100%;
      background: #fff;
      padding: max(1rem, 15px);
      transition: all 0.3s ease;

      .close {
        display: block;
        text-align: right;
        font-size: max(2rem, 24px);
        margin-bottom: max(1rem, 10px);
      }

      >ul {
        display: flex;
        flex-flow: column;
        gap: 0;

        li {
          border-top: 1px solid var(--v4-neutral-color-3);

          a {
            padding-block: max(0.5rem, 10px);
            display: block;
            text-decoration: none;
          }
        }
      }
    }
  }
}

#meta-nav {
  ul {
    justify-content: right;
    gap: 1.5rem;
    padding: 0;
    display: flex;
    flex-flow: row;

    @media (width < 1200px) {
      margin-right: 0;
    }

    li {
      margin: 0;
      position: relative;

      &:not(:last-child)::after {
        background: var(--v4-neutral-color-3);
        content: "";
        height: 0.75rem;
        width: 2px;
        position: absolute;
        right: -0.8rem;
        top: 0.4rem;
      }

      @media (width < 1200px) {
        &:not(:last-child)::after {
          height: 22px;
        }
      }

      a {
        @media (width < 1200px) {
          & {
            font-size: 0;
          }
        }

        &::before {
          aspect-ratio: 1;
          font-family: unset;
          content: "";
          width: 1.5em;
          display: inline-block;
          background-size: contain;
          background-repeat: no-repeat;
          background-color: #7b7b7b;
          margin: 0;
          vertical-align: top;
        }

        @media (width < 1200px) {
          &::before {
            width: 22px;
            margin-inline: 3px;
          }
        }
      }

      &:nth-child(1) a::before {
        mask: url("https://xxlpix-all.b-cdn.net/icons-huge/delivery-truck.svg") no-repeat center / contain;
        margin-right: 5px;
      }

      &:nth-child(2) a::before {
        mask: url("https://xxlpix-all.b-cdn.net/icons-huge/chatting.svg") no-repeat center / contain;
      }

      &:nth-child(3) a::before {
        mask: url("https://xxlpix-all.b-cdn.net/icons-huge/shopping-cart-02.svg") no-repeat center / contain;
      }
    }

    .js-count-cart {
      font-size: 12px;
      line-height: 20px;
      position: absolute;
      top: -10px;
      right: -10px;
      width: 20px;
      height: 20px;
      background: #e13333;
      color: #fff;
      text-align: center;
      font-weight: bold;
      border-radius: 100%;
    }

    .js-count-cart:empty {
      display: none;
    }

    span:not(.js-count-cart) {
      display: none;
    }
  }
}



/*------------------------------------*\
    # - CONTENT
\*------------------------------------*/
    
.process-street {
    width: 100%;
    text-align: center;
    position: relative;
    margin: -10px 0 40px 0;
}
    .process-street li {
        color: #c0c0c0;
        display: inline-block;
        position: relative;
        padding: 0 10px;
        font-size: 14px;
    }
    .process-street li.passed {
        color: #8f8f8f;
        cursor: pointer;
    }
    .process-street .dot {
        color: #efefef;
        display: inline-block;
        font-size: 42px;
        height: 20px;
        left: 0;
        line-height: 0;
        vertical-align: top;
    }
    .process-street .active,
    .process-street .active .dot {
        color: #82b338;
    }
    .process-street .passed .dot {
        color: #cbcbcb;
    }
    .process-street .line {
        background-color: #efefef;
        height: 1px;
        position: absolute;
        top: 37px;
    }
        .process-street .line .passed {
            background-color: #cbcbcb;
            display: block;
            height: 1px;
        }
    
.line-through {
    color: #f00;
    text-decoration: line-through;
}
    .line-through span {
        color: #7b7b7b;
    }
    
.table-selector {
    width: 100%;
}
    .table-selector tr.disabled {
        opacity: 0.5;
    }
    .table-selector td {
        border-bottom: 1px solid #dcdcdc;
        color: #666666;
        cursor: pointer;
        font-size: 14px;
        line-height: 1.3em;
        padding: 8px 5px;
        text-align: left;
    }
    .table-selector .active td {
        background-color: #e5f3d0;
    }
    .table-selector td:first-child {
        width: 35px;
    }
    .table-selector td:first-child + td {
        width: 50px;
    }
    .table-selector td:first-child + td + td + td {
        text-align: right;
    }
    .table-selector td:last-child {
        text-align: center !important;
        width: 40px;
    }
        .table-selector label {
            cursor: pointer;
        }
        .table-selector td:last-child .icon {
            opacity: 0;
        }
        .table-selector .active td .icon {
            opacity: 1;
        }
        
.uploadzone {
    border: 2px dashed #ddd;
    border-radius: 3px;
    height: 180px;
    margin: 40px 0 20px 0;
    padding: 10px;
    position: relative;
}
.step-1-repair .uploadzone[data-mode="single"] {
	height: 260px;
}
	.step-1-repair .uploadzone[data-mode="single"] .results {
		height: 235px;
	}
    .uploadzone .js-area-loading {
        z-index: 2;
    }
    .uploadzone img {
        vertical-align: top;
    }
    .uploadzone .dragzone {
        cursor: pointer;
        height: 100%;
        text-align: center;
        width: 100%;
        position: absolute;
        opacity: 1;
        top: 0;
        left: 0;
    }
    .js-upload {
        cursor: pointer;
        height: 100%;
        left: 0;
        margin: 0;
        opacity: 0;
        padding: 0;
        position: absolute;
        top: 0;
        width: 100%;
        min-height: 10px;
    }
    .uploadzone .icon {
        color: #c8c8c8;
        font-size: 40px;
        line-height: 1em;
    }
    .uploadzone .results {
        height: 155px;
        overflow: auto;
    }
        .uploadzone[data-mode="main"] .results li {
            display: inline-table;
            height: 100%;
            vertical-align: top;
            position: relative;
        }
        .uploadzone[data-mode="single"] .results li {
            display: inline-table;
            height: 75px;
            width: 75px;
            vertical-align: top;
            margin: 0 5px 5px 0;
            position: relative;
        }
        .uploadzone .results li .wrap {
            border: 1px solid #c8c8c8;
            display: table-cell;
            vertical-align: middle;
            padding: 5px;
        }
        .uploadzone .results li:hover .wrap {
            opacity: 0.5;
        }
            .uploadzone .results .wrap img {
                vertical-align: top;
                max-width: 63px;
                max-height: 63px;
            }
        .uploadzone .results .icon {
            background-color: #fff;
            display: none;
            cursor: pointer;
            font-size: 14px;
            line-height: 1em;
            position: absolute;
            top: 5px;
            z-index: 1;
        }
        .uploadzone .results li:hover .icon {
            display: block;
        }
        .uploadzone .results .icon-crop,
        .uploadzone .results .icon-wrench {
            right: 20px;
        }
        .uploadzone .results .icon-cancel-circled {
            color: #f00;
            right: 3px;
        }
.upload-loading {
    display: none;
    margin-bottom: 20px;
}

.upload-state {
    display: none;
}
.upload-state.active {
    display: block;
}

.cheer-wrap {
	position: relative;
	display: inline-block;
}
	.cheer-wrap .btn:active {
		animation: up-down 0.15s linear;
		animation-iteration-count: 1;
	}
	.cheer-wrap canvas {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		pointer-events: none;
	}
	
@keyframes up-down {
	100%,0%{
		transform: translateY(0);
	}
	50%{
		transform: translateY(10px);
	}
}



.step-1 header {
    margin-bottom: 0;
}
.step-1 .site-navi {
    margin-bottom: 30px;
}
.step-1 .table-selector:first-child {
    margin-top: 0;
}
.step-1 .table-selector + p {
    margin-top: 15px;
}
.step-1 .content {
	background-image: url('/wp-content/plugins/xxlpix-app-config/includes/assets/images/bg-people-14.jpg');
	background-size: auto 590px;
	margin-bottom: -50px;
	padding-bottom: 5px;
	padding-top: 30px;
	background-repeat: no-repeat;
	background-position: center top;
}

.step-1 .select-border-new {
    border-top: 1px solid #ddd;
    margin-top: 20px;
    padding-top: 5px;
    font-size: 12px;
    line-height: 1em;
}
.step-1 .select-border-new ul {
    display: inline-block;
}
    .step-1 .select-border-new li {
        /*color: #bbb;*/
        color: #7b7b7b;
        text-decoration: underline;
        cursor: pointer;
        display: inline-block;
        padding-right: 10px;
        padding-left: 10px;
        border-right: 1px solid #7b7b7b;
    }
    .step-1 .select-border-new li:last-child {
        padding-right: 0;
        border-right: 0;
    }
    .step-1 .select-border-new li.active {
        text-decoration: none;
    }

.step-2 .content {
	background-image: url('/wp-content/plugins/xxlpix-app-config/includes/assets/images/bg-people-5.jpg');
	background-size: auto 695px;
	margin-top: 0;
	margin-bottom: -50px;
	padding-bottom: 5px;
	padding-top: 30px;
	background-repeat: no-repeat;
	background-position: center top;
}
.step-2 .empty-cart .icon {
    font-size: 78px;
    line-height: 1em;
}
.step-2 .empty-cart p {
    margin: 20px 0;
    font-size: 16px;
    line-height: 1.3em;
}

.step-6 .versions .wrap {
    box-sizing: border-box;
    border: 1px solid #d2d2d2;
    border-radius: 5px;
    padding: 20px 60px;
}
.step-6 .versions .wrap.active {
    border: 3px solid #82b338;
    padding: 18px 58px;
}
    .step-6 .versions h2 {
        font-size: 28px;
        line-height: 1em;
    }
    .step-6 .preview {
        margin-bottom: 10px;
        display: inline-block;
    }
        .step-6 .preview img {
            max-width: 100%;
            max-height: 350px;
        }
        .step-6 .preview.blackwhite img,
        .js-zoom.blackwhite img {
            filter: grayscale(100%);
        }
        .step-6 .preview > span {
            bottom: 10px;
            right: 10px;
            background-color: rgba(0, 0, 0, 0.6);
            color: #fff;
            font-size: 40px;
            line-height: 1em;
            padding: 10px 5px;
        }

.warning {
    background-color: #ffe0e0;
    color: #f00;
    border-radius: 3px;
    border: 1px solid #f00;
    padding: 5px;
    text-align: center;
}

.wrb {
    background-image: url('/fme_checkout/images/wrb-bg.jpg');
    background-repeat: no-repeat;
    width: 404px;
    height: 370px;
}
    .wrb .wrap {
        background: none;
        display: table;
        width: 100%;
        height: 200px;
        padding-top: 10px;
    }
    .wrb span {
        display: table-cell;
        vertical-align: bottom;
    }
        .wrb img {
            box-shadow: 2px 2px 3px 0 #999;
            max-width: 55px;
            max-height: 55px;
        }
        .wrb[data-format="43"][data-size="S"] img,
        .wrb[data-format="32"][data-size="S"] img,
        .wrb[data-format="21"][data-size="S"] img {
            max-width: 55px;
            max-height: 55px;
        }
        .wrb[data-format="43"][data-size="M"] img,
        .wrb[data-format="21"][data-size="M"] img,
        .wrb[data-format="11"][data-size="M"] img {
            max-width: 90px;
            max-height: 90px;
        }
        .wrb[data-format="43"][data-size="L"] img,
        .wrb[data-format="21"][data-size="L"] img,
        .wrb[data-format="11"][data-size="L"] img {
            max-width: 130px;
            max-height: 130px;
        }
        .wrb[data-format="43"][data-size="XL"] img,
        .wrb[data-format="32"][data-size="XL"] img,
        .wrb[data-format="21"][data-size="XL"] img,
        .wrb[data-format="11"][data-size="XL"] img {
            max-width: 165px;
            max-height: 165px;
        }
        .wrb[data-format="43"][data-size="XXL"] img {
            max-width: 200px;
            max-height: 200px;
        }

        /* 3:2 */
        .wrb[data-format="32"][data-size="M"] img {
            max-width: 115px;
            max-height: 115px;
        }
        .wrb[data-format="32"][data-size="L"] img {
            max-width: 140px;
            max-height: 140px;
        }
        .wrb[data-format="32"][data-size="XXL"] img {
            max-width: 200px;
            max-height: 200px;
        }

        /* 1:1 */
        .wrb[data-format="11"][data-size="S"] img {
            max-width: 65px;
        }

.social-icons {
    color: #82b338;
    display: inline-block;
    margin-left: 10px;
}
    .social-icons li {
        cursor: pointer;
        display: inline-block;
        font-size: 36px;
        line-height: 1em;
        margin: 0 -3px;
    }
    .social-icons li {
        overflow: hidden;
        transition-duration: 0.5s;
        transition-property: transform;
    }
    .social-icons li:hover {
        transform: translateY(-5px);
        -webkit-transform: translateY(-5px);
    }





        
.cart-view {
    width: 100%;
}
    .cart-view td,
    .cart-view th {
        background-color: #f2f2f2;
        color: #666666;
        font-size: 16px;
        line-height: 1.3em;
        padding: 8px 5px;
        text-align: left;
        vertical-align: top;
    }
    .cart-view th {
        background-color: #dddddd;
    }
    .cart-view td {
        border-top: 1px solid #dcdcdc;
        padding: 15px 5px;
        /*position: relative;*/
    }
    .cart-view td:first-child,
    .cart-view th:first-child {
        padding-left: 10px;
        vertical-align: middle;
        width: 45px;
    }
    .cart-view td:first-child + td {
        width: 200px;
    }
    .cart-view td:first-child + td + td + td + td {
        width: 230px;
    }
    .cart-view td:last-child {
        padding-right: 20px !important;
        text-align: right;
    }
    .cart-view tr.delivery td {
        border-top: none;
        padding: 17px 5px;
    }
    .cart-view tr.delivery + tr.delivery td {
        padding-top: 0;
    }
    .cart-view tr.subheader td {
        border-top: 10px solid #fff;
    }
    .cart-view tr:last-child td {
        border-top: none;
    }
        .cart-view td .addon {
            border: 1px solid #bababa;
            height: 50px;
            position: absolute;
            right: 50px;
            top: 0;
            width: 50px;
        }
        .cart-view td input[type="text"] {
            height: 35px;
            padding: 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            color: #666;
            font-size: 14px;
            font-family: 'Open Sans', Arial, Helvetica, sans-serif;
            line-height: 1em;
            width: 35px;
            text-align: center;
        }
        .delivery-info {
            background-color: #fff;
            display: inline-block;
            padding: 3px 10px;
        }
            .delivery-info strong {
                color: #82b338;
            }

table .item img {
    max-width: 130px;
    max-height: 130px;
}

.coupon-wrap {
    position: relative;
    display: inline-block;
    margin: 0 10px;
}
    .coupon-wrap .icon {
        display: none;
        position: absolute;
        top: 5px;
        right: 5px;
    }
            
.step-3 h2 {
    margin-bottom: 0;
    padding-bottom: 20px;
}
.step-3 form {
    font-size: 0;
    padding: 20px 0;
}
    .step-3 label,
    .step-5-failed label {
        font-size: 14px;
    }
    .step-3 label,
    .step-5-failed label {
        display: inline-block;
        width: 35%;
    }
    .step-3 input + label,
    .step-5-failed input + label {
        margin-left: 10px;
        width: auto;
    }
    .step-3 label + select,
    .step-3 label + input,
    .step-5-failed label + select,
    .step-5-failed label + input {
        margin-top: 10px;
    }
    .step-3 label + input,
    .step-5-failed label + input {
        width: 65%;
    }
    .step-3 label:first-child + input,
    .step-5-failed label:first-child + input {
        margin-top: 0;
    }
    .step-3 form li,
    .step-5-failed form li {
        padding: 10px 0;
    }
    .step-3 form + .btn {
        margin-top: 90px;
    }
    .step-3 form[name="payment"] li,
    .step-5-failed form[name="payment"] li {
        min-height: 42px;
        padding: 0;
    }
        .step-3 form[name="payment"] label,
        .step-5-failed form[name="payment"] label {
            padding: 10px 0;
        }
        .step-3 form[name="payment"] img,
        .step-5-failed form[name="payment"] img {
            vertical-align: middle;
            max-width: 100px;
        }
    
.step-4 .box {
    background-color: #f2f2f2;
    float: left;
    font-size: 14px;
    line-height: 1.3em;
    margin-left: 1.5%;
    margin-bottom: 1.5%;
    padding: 20px;
    width: 49.25%;
}
    .step-4 .box input {
        margin: 6px 3px 0 0;
    }
    .step-4 .box .btn {
        margin-top: 10px;
    }
.step-4 .box:first-child {
    margin-left: 0;
}
.step-4 .contact label,
.step-4b .contact label {
    line-height: 35px;
}
.over-view {
    width: 100%;
}
    .over-view td,
    .over-view th {
        background-color: #f2f2f2;
        color: #666666;
        font-size: 16px;
        line-height: 1.3em;
        padding: 8px 5px;
        text-align: left;
        vertical-align: top;
    }
    .over-view th {
        background-color: #dddddd;
    }
    .over-view td {
        border-top: 1px solid #dcdcdc;
        padding: 15px 5px;
    }
    .over-view td:first-child,
    .over-view th:first-child {
        padding-left: 20px !important;
    }
    .over-view td:last-child,
    .over-view th:last-child {
        padding-right: 20px !important;
        text-align: right;
    }
    .over-view tr.delivery td:first-child,
    .over-view tr.discount td:first-child,
    .over-view tr:last-child td:first-child {
        border-top: none;
    }
    
.step-5 .bank-transfer {
    width: 100%;
}
    .step-5 .bank-transfer td {
        border-top: 1px solid #ddd;
        font-size: 16px;
        line-height: 1.3em;
        padding: 10px 0;
    }
    .step-5 .bank-transfer tr:first-child td {
        border-top: 0;
    }
    
.step-6 .order-number {
    background-color: #000;
    color: #fff;
    display: inline-block;
    font-size: 26px;
    font-weight: bold;
    line-height: 1em;
    padding: 10px 15px;
    vertical-align: top;
}
.step-6 .share-order {
    display: inline-block;
    margin-left: 5px;
    vertical-align: bottom;
}
    .step-6 .share-order .icon {
        cursor: pointer;
        font-size: 42px;
    }
    .step-6 .share-order .icon:before {
        margin: 0;
    }
    .step-6 .share-order .icon-facebook-squared {
        color: #477bd1;
    }
    .step-6 .share-order .icon-gplus-squared {
        color: #ff7200;
    }
    .step-6 .share-order .icon-twitter {
        color: #68bfec;
    }
    .step-6 .share-order .icon-mail {
        color: #aaa;
    }
    
.step-cancel h1 {
    text-align: left;
}
.step-cancel .table-selector td {
    text-align: left !important;
}
.step-cancel .table-selector td:last-child {
    width: auto;
}
.step-cancel textarea {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: 16px;
    min-height: 100px;
    line-height: 1.3em;
    padding: 10px;
    resize: vertical;
    width: 100%;
    margin-bottom: 10px;
}
    
    
    
    
/*------------------------------------*\
    # - MISC
\*------------------------------------*/

.symbol-size {
    background-color: #fff;
    border: 1px solid #bababa;
    color: #bababa;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    line-height: 28px;
    width: 30px;
    text-align: center;
}




/*------------------------------------*\
    # - LANGUAGE
\*------------------------------------*/




/*------------------------------------*\
    # - UPLOAD
\*------------------------------------*/

.fb-upload {
    color: #7b7b7b;
    padding: 20px;
    position: relative;
}
.upload-preselect-bar {
    background-color: #eee;
    display: none;
    margin: -20px -20px 10px;
    padding: 10px;
    text-align: center;
}
.upload-preselect-bar.error {
    background-color: #f00;
    color: #fff;
}
.upload-step-2,
.upload-step-3,
.upload-error {
    display: none;
}
    .upload-step-1 p {
        margin-bottom: 20px;
    }
    .upload-step-1 .headline {
        font-size: 16px;
        font-weight: bold;
        line-height: 1.3em;
        margin-bottom: 30px;
    }
    .upload-btn,
    .upload-drop,
    .upload-combi {
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 5px;
        display: inline-table;
        height: 90px;
        padding: 5px;
        position: relative;
        vertical-align: top;
        width: 150px;
    }
        .upload-btn .icon {
            font-size: 36px;
        }
        .upload-btn p,
        .upload-drop p,
        .upload-combi p {
            display: table-cell;
            position: relative;
            vertical-align: middle;
        }
        .btn input,
        .upload-btn input,
        .upload-combi input {
            cursor: pointer;
            height: 100%;
            left: 0;
            margin: 0;
            opacity: 0;
            padding: 0;
            position: absolute;
            top: 0;
            width: 100%;
        }
    .upload-btn:hover,
    .upload-combi:hover {
        background-color: #82b338;
        color: #fff;
    }
    .upload-drop,
    .upload-combi {
        border: 1px dashed #ccc;
    }
    .upload-combi {
        width: 100%;
        height: 150px;
    }
        .upload-combi span {
            display: inline-block;
            font-size: 36px;
            margin-top: 20px;
        }
    .upload-btn + span {
        line-height: 90px;
        margin: 0 10px;
    }
    
    .upload-step-2 .headline,
    .upload-step-3 .headline {
        font-size: 14px;
        line-height: 1.3em;
        position: relative;
        text-align: center;
    }
    .upload-step-2 form,
    .upload-step-3 form {
        background-color: #eee;
        font-size: 0;
        margin: 15px 0;
        padding: 25px;
    }
    .upload-step-2.finished > .headline,
    .finished + .upload-step-3 > .headline {
        top: 15px;
    }
    .upload-step-2.finished .upload-progress,
    .finished + .upload-step-3 .upload-progress {
        opacity: 0;
    }
        .upload-step-2 form .headline,
        .upload-step-3 form .headline {
            font-size: 24px;
            line-height: 1.3em;
            margin-bottom: 30px;
        }
        .upload-step-2 form label {
            display: inline-block;
            font-size: 16px;
            line-height: 1.3em;
            width: 30%;
        }
        .upload-step-2 form input {
            border-color: #fff;
            border-radius: 0;
            line-height: 2em;
            display: inline-block;
            margin-bottom: 8px;
            width: 70%;
        }
        .upload-step-2 form small,
        .upload-step-3 form small {
            display: block;
            font-size: 10px;
            line-height: 1em;
            margin-top: 30px;
        }
        .upload-step-3 form small {
            display: block;
            font-size: 10px;
            line-height: 1em;
            margin-top: 0;
        }
        .upload-step-2 form .btn {
            margin-top: 20px;
        }
        .upload-step-2 .buttons {
            font-size: 0;
        }
            .upload-step-2 .buttons p {
                font-size: 14px;
                display: inline-block;
                margin: 0;
                width: 50%;
            }
    .upload-progress {
        background-color: #f2f2f2;
        background-image: linear-gradient(to bottom, #f2f2f2, #f9f9f9);
        background-repeat: repeat-x;
        border-radius: 4px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
        height: 20px;
        overflow: hidden;
    }
    .upload-progress.error {
        box-shadow: 0 0 0 2px #f00;
    }
        .upload-progress div {
            background-color: #82b338;
            border-radius: 5px;
            display: inline-block;
            height: 100%;
            overflow: hidden;
            position: relative;
            transition: width 0.3s;
        }
            .upload-progress div p {
                background: #82b338 url("/fme_checkout/images/progress_animation.gif") repeat-x scroll 0 0;
                display: block;
                height: 100%;
                opacity: 0.25;
            }
            .upload-progress div span {
                color: #fff;
                font-weight: 600;
                position: absolute;
                right: 10px;
                top: 0;
                z-index: 1;
                line-height: 20px;
            }
    .upload-step-3 .code {
        background-color: #fff;
        border: 1px solid #ccc;
        display: block;
        font-size: 28px;
        letter-spacing: 0.15em;
        margin: 30px 0 15px 0;
        padding: 20px 0;
        text-align: center;
    }
    
.help-box {
    background-color: #dddddd;
    cursor: pointer;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    bottom: 50%;
    color: #fff;
    display: none;
    left: 0;
    position: fixed;
    height: 52px;
    width: 58px;
    line-height: 52px;
    vertical-align: middle;
}
.help-box:hover {
    background-color: #bbb;
}
    .help-box p {
        display: inline-block;
        vertical-align: middle;
        line-height: 14px;
        width: 100%;
    }
    .help-box strong {
        font-size: 26px;
        line-height: 1.2em;
    }






/*------------------------------------*\
    # - CROP TOOL
\*------------------------------------*/

.step-1 .overview {
    position: relative;
}
.step-1 .preview {
    border-bottom: 1px solid #dddddd;
    display: block;
    padding-bottom: 50px;
    margin-bottom: 13px;
    text-align: center;
}
    .step-1 .overview label {
        font-size: 16px;
        font-weight: bold;
    }
        .step-1 .overview input {
            text-align: center;
            width: 35px;
        }
        .step-1 .overview .quantity {
            margin-right: 20px;
        }
    .step-1 .overview .btn {
        margin-top: 20px;
    }
.crop-wrapper {
    display: inline-block;
    /*max-width: 500px;*/
    position: relative;
    outline: 1px dashed #ccc;
    overflow: hidden;
}
/*
.crop-wrapper.b-white {
    outline: 1px dashed #ccc;
}
*/
    .crop-wrapper .image img {
        vertical-align: top;
    }
    .crop-wrapper .border {
        border: 0;
        position: absolute;
    }
    .crop-wrapper .border.b-motif {
        background-color: rgba(255, 255, 255, 0.5);
    }
    .crop-wrapper .border.b-white {
        background-color: #fff;
    }
    .crop-wrapper .border.b-black {
        background-color: #000;
    }
    .crop-wrapper .border .opacity {
        display: none;
        background-color: rgba(255,255,255,0.5);
        height: 100%;
        position: absolute;
        width: 100%;
    }
    .crop-wrapper .b-top {
        left: 0;
        top: 0;
        height: 10px;
        width: 100%;
    }
    .crop-wrapper .b-right {
        right: 0;
        top: 0;
        height: 100%;
        width: 10px;
    }
    .crop-wrapper .b-bottom {
        left: 0;
        bottom: 0;
        height: 10px;
        width: 100%;
    }
    .crop-wrapper .b-left {
        left: 0;
        top: 0;
        height: 100%;
        width: 10px;
    }
    .crop-wrapper .b-top-left,
    .crop-wrapper .b-top-right,
    .crop-wrapper .b-bottom-left,
    .crop-wrapper .b-bottom-right {
        background-color: #fff !important;
        z-index: 2;
    }
    .crop-wrapper .b-top-left {
        left: 0;
        top: 0;
    }
    .crop-wrapper .b-top-right {
        right: 0;
        top: 0;
    }
    .crop-wrapper .b-bottom-left {
        left: 0;
        bottom: 0;
    }
    .crop-wrapper .b-bottom-right {
        right: 0;
        bottom: 0;
    }
    
.crop-wrapper-new .border {
        border: 0;
        position: absolute;
    }
    .crop-wrapper-new .border.b-motif {
        background-color: rgba(255, 255, 255, 0.5);
    }
    .crop-wrapper-new .border.b-white {
        background-color: #fff;
    }
    .crop-wrapper-new .border.b-black {
        background-color: #000;
    }
    .crop-wrapper-new .b-top {
        left: 0;
        top: 0;
        height: 10px;
        width: 100%;
    }
    .crop-wrapper-new .b-right {
        right: 0;
        top: 0;
        height: 100%;
        width: 10px;
    }
    .crop-wrapper-new .b-bottom {
        left: 0;
        bottom: 0;
        height: 10px;
        width: 100%;
    }
    .crop-wrapper-new .b-left {
        left: 0;
        top: 0;
        height: 100%;
        width: 10px;
    }
    .crop-wrapper-new .b-top-left,
    .crop-wrapper-new .b-top-right,
    .crop-wrapper-new .b-bottom-left,
    .crop-wrapper-new .b-bottom-right {
        background-color: #fff !important;
        z-index: 2;
    }
    .crop-wrapper-new .b-top-left {
        left: 0;
        top: 0;
    }
    .crop-wrapper-new .b-top-right {
        right: 0;
        top: 0;
    }
    .crop-wrapper-new .b-bottom-left {
        left: 0;
        bottom: 0;
    }
    .crop-wrapper-new .b-bottom-right {
        right: 0;
        bottom: 0;
    }

.arrow-wrapper {
    position: relative;
    display: inline-block;
}
    .arrow-wrapper .arrow {
        position: absolute;
        z-index: 10;
    }
    .arrow-wrapper .arrow.top {
        left: 0;
        top: -37px;
        width: 100%;
    }
        .arrow-wrapper .arrow.top .line {
            background-color: #ddd;
            height: 1px;
            left: 0;
            position: absolute;
            top: 20px;
            width: 100%;
        }
        .arrow-wrapper .arrow.top .peak {
            border-bottom: 4px solid transparent;
            border-top: 4px solid transparent;
            position: absolute;
            top: 16px;
        }
        .arrow-wrapper .arrow.top .peak-1 {
            border-right: 8px solid #ddd;
            left: 0;
        }
        .arrow-wrapper .arrow.top .peak-2 {
            border-left: 8px solid #ddd;
            right: 0;
        }
    .arrow-wrapper .arrow.right {
        height: 100%;
        top: 0;
        right: -30px;
    }
        .arrow-wrapper .arrow.right .line {
            background-color: #ddd;
            width: 1px;
            left: -10px;
            position: absolute;
            top: 0;
            height: 100%;
        }
        .arrow-wrapper .arrow.right .peak {
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            position: absolute;
            left: -14px;
        }
        .arrow-wrapper .arrow.right .peak-1 {
            border-bottom: 8px solid #ddd;
            top: 0;
        }
        .arrow-wrapper .arrow.right .peak-2 {
            border-top: 8px solid #ddd;
            bottom: 0;
        }
        .arrow-wrapper .arrow.right .text {
            display: inline-block;
            left: 50%;
            margin-left: 10px;
            position: absolute;
            top: 50%;
            transform: translateX(-50%) translateY(-50%) rotate(90deg);
            width: 100px;
        }
.arrow-wrapper + p {
    margin-top: 15px;
}

.promotion-header {
    color: #fff;
    padding: 12px 0 14px 0;
    font-size: 21px;
    background-color: #ec2700;
    line-height: 1.3em;
}

.color-picker {
	display: inline-block;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	overflow: hidden;
}
	.color-picker input {
		appearance: none;
		padding: 0;
		border: 0;
		outline: 0;
		width: 30px;
		height: 30px;
		background: none;
	}
	
.help-icon {
	background-image: url('/wp-content/plugins/xxlpix-app-config/includes/assets/images/help-icon.svg');
	background-size: cover;
	background-repeat: no-repeat;
	width: 0.8em;
	height: 0.8em;
	display: inline-block;
	margin-right: 0.4em;
	vertical-align: middle;
}





/*------------------------------------*\
    # - LANGUAGES
\*------------------------------------*/

.lang-es .site-navi > ul > li:first-child {
    width: 24%;
}
.lang-es .site-navi > ul > li:first-child + li {
    width: 20%;
}

.lang-fr .site-navi > ul > li:first-child {
    width: 22%;
}
.lang-fr .site-navi > ul > li:first-child + li {
    width: 17%;
}
.lang-fr .site-navi > ul > li:first-child + li + li {
    width: 22%;
}
.lang-fr .site-navi > ul > li:first-child + li + li + li {
    width: 25%;
}
.lang-fr .site-navi > ul > li:last-child {
    width: 14%;
}




/*------------------------------------*\
    # - NEW CROP TOOL
\*------------------------------------*/

.crop-tools + .crop-wrap {
    margin-top: 10px;
}
.crop-wrap {
    margin-bottom: 10px;
}
.crop-wrap.blackwhite img {
    filter: grayscale(100%);
}
.crop-wrap img {
    max-width: 100%;
} 
.crop-tools {
    text-align: center;
}
    .crop-tools ul {
        display: inline-block;
        width: 80%;
    }
        .crop-tools li {
            display: inline-block;
            cursor: pointer;
            color: #7b7b7b;
            margin: 0 5px;
            font-size: 21px;
        }
        .crop-tools li:hover {
            color: #000;
        }
.crop-warning {
    color: #f00;
    font-size: 12px;
    margin-bottom: 10px;
    opacity: 0;
}

.cropper-container {
    overflow: hidden;
}




/*------------------------------------*\
    # - JAVASCRIPT
\*------------------------------------*/

.js-area-loading {
    background-color: rgba(255,255,255,1);
    left: 0;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999999;
}
.js-area-loading.white {
    background-color: #fff;
}
.js-area-loading.fixed {
    position: fixed;
}
    .js-area-loading .table {
        display: table;
        width: 100%;
        height: 100%;
    }
    .js-area-loading .table-cell {
        display: table-cell;
        vertical-align: middle;
    }
    .js-area-loading .icon {
        font-size: 36px;
        line-height: 1.3em;
    }
    
.js-coupon-applied {
    display: none;
}

.js-dropzone.in,
.js-dropzone.in.hover {
    background-color: #82b338;
    color: #fff;
    z-index: 10;
}

.js-lead-refuse.error {
    box-shadow: 0 0 0 2px #f00;
}

.js-toggle-help {
    font-size: 14px;
    line-height: 1.3em;
    text-decoration: underline;
}
    .js-toggle-help .icon {
        color: #c8c8c8;
    }
.js-help {
    padding-top: 15px;
}

.lens-mobile {
    display: none;
}

.js-content-switch {
    display: none;
}
.js-content-switch.active {
    display: block;
}

ul.accordion {
	border: 1px solid #ddd;
	border-radius: 5px;
}
	ul.accordion li {
		padding: 10px;
		border-bottom: 1px solid #ddd;
		position: relative;
		margin: 0;
		list-style-type: none;
	}
	ul.accordion li:last-child {
		border-bottom: 0;
	}
	ul.accordion li:after {
		content: '\e81a';
		font-family: fontello;
		position: absolute;
		top: 13px;
		right: 10px;
		font-size: 14px;
		line-height: 1em;
	}
	ul.accordion li.active:after {
		content: '\e819';
	}
		ul.accordion li .wrap {
			opacity: 0;
			height: 0;
			transition: all 0.3s ease 0s;
			margin: 0;
			overflow: hidden;
		}
		ul.accordion li.active .wrap {
			opacity: 1;
			height: auto;
			padding: 20px 0;
		}
		ul.accordion h3 {
			margin: 0;
		}




/*------------------------------------*\
    # - SELECTBOXIT
\*------------------------------------*/

.selectboxit {
    height: auto;
}
.selectboxit-container {
    color: #7b7b7b;
}
.selectboxit-container .selectboxit {
    border-radius: 0;
}
.selectboxit-container .selectboxit-text {
    font-size: 22px;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    max-width: 100% !important;
    text-indent: 10px;
}
.selectboxit-container .selectboxit-options {
    border-radius: 0;
    width: 100%;
    max-height: none !important;
}
.selectboxit-container span {
    height: 35px;
    line-height: 30px;
}
.selectboxit-option {
    height: 35px;
}
.selectboxit-btn {
    background-color: #fff;
    background-image: none;
}


/*
 > .selectboxit-focus > .selectboxit-option-anchor {
*/

.selectboxit-list .selectboxit-option-anchor {
    color: #7b7b7b;
}
.selectboxit-list .selectboxit-focus .selectboxit-option-anchor {
    color: #333;
    background-color: #e5f3d0;
    background-image: none;
}
.selectboxit-btn.selectboxit-enabled:active,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:hover {
    background-color: #efefef;
}


/*
.selectboxit-container .selectboxit {
    border-radius: 0;
    padding: 9px 0;
    width: 100% !important;
}
.selectboxit-btn {
    background-color: #e5e5e5;
    background-image: none;
    border-radius: 0;
    border-width: 0;
}
.selectboxit-text,
.selectboxit-btn.selectboxit-enabled:hover,
.selectboxit-btn.selectboxit-enabled:focus,
.selectboxit-btn.selectboxit-enabled:active {
    color: inherit;
}
.selectboxit-container .selectboxit-option,
.selectboxit-container .selectboxit-option a {
    clear: both;
    height: 30px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}
.selectboxit-container .selectboxit-option a {
    padding: 5px 0;
}
.selectboxit-list > .selectboxit-focus > .selectboxit-option-anchor {
    background-color: #82b338;
    background-image: none;
}
*/


.content {
  padding-top: 30px;
}

/*------------------------------------*\
    # - RESPONSIVE
\*------------------------------------*/

@media screen and (min-width: 960px) {
	.icon-whatsapp {
		display:  none;
	}
}

@media screen and (max-width: 320px) {

}

@media screen and (max-width: 480px) {
    .info-text img {
        max-width: 100%;
    }
    .step-6 .versions .wrap.active {
        padding: 18px 30px;
    }
}

@media screen and (max-width: 404px) {
    .wrb {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    a.logo {
        max-width: 70%;
        min-width: 250px;
    }
        a.logo img {
            max-width: 100%;
        }
    .header-contact {
        margin-top: 0 !important;
    }
    
    table.responsive,
    table.responsive thead, 
    table.responsive tbody, 
    table.responsive th, 
    table.responsive td, 
    table.responsive tr {
        display: block;
        overflow: hidden;
    }
    table.responsive thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    table.suspensions td {
        border: 0 !important;
        display: flex;
        padding: 0.25em 0.5em !important;
        text-align: left;
        width: auto !important;
    }
    table.suspensions td:first-child {
        background-color: #bababa;
        color: #fff;
    }
    table.suspensions td:before {
        content: attr(data-label)": ";
        font-weight: bold;
        width: 5em;
    }
    table.suspensions td:first-child:before {
        content: none;
        display: inline-block;
        font-weight: bold;
        width: auto;
    }
    
    table.prices td {
        border: 0 !important;
    }
    table.prices td:before {
        content: attr(data-label)": ";
        font-weight: bold;
        margin-right: 5px;
    }
    table.prices td:first-child,
    table.prices td:first-child + td {
        display: inline-block;
    }
    table.prices td:first-child + td {
        padding-left: 0;
    }
    table.prices td:first-child + td:before {
        display: none;
    }
    
    .crop-wrap img {
        max-width: 300px;
        max-height: 300px;
    } 
}

@media screen and (max-width: 768px) {
	h1 {
	    font-size: 28px;
	}
    .product-header img {
        max-width: 75%;
    }
    .product-header .ratingbox {
        display: none;
    }
    .product-header .col {
        text-align: center;
    }
}

@media screen and (max-width: 960px) {
    .mobile-hide {
        display: none !important;
    }
    .wrap-full-grid {
        width: 100%;
    }
    .col-xs-12 + .col-xs-12 {
        margin-top: 20px;
    }
    
    .content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .top-header {
        background-size: auto 100%;
        min-height: none;
        padding: 0 20px 20px 20px;
    }
        .top-header .col {
            text-align: center;
        }
        .top-header .col + .col {
            padding-left: 15px;
            margin-top: 0;
        }
        .top-header .wrap {
            width: 100%;
            padding-top: 30px;
        }
            .top-header .wrap h1,
            .top-header .wrap .headline {
                margin-top: 0;
                text-align: center;
            }
            .top-header .subheadline,
            .top-header .subheadline + p {
                text-align: center;
            }
            .top-header img {
                max-width: none;
                width: 100%;
                margin: 0;
            }
            .top-header .btn {
                margin-top: 20px;
            }
    
    .header-contact {
        border: 0;
        padding: 0;
        margin-right: 0;
        margin-top: 10px;
    }
    
    .process-street li {
        background-color: #fafafa;
        padding: 5px 8px;
        margin: 2px;
    }
    .process-street li.passed {
        background-color: #f5f5f5;
    }
    .process-street li.active {
        color: #82b338;
    }
        .process-street .line {
            display: none;
        }
        .process-street .dot {
            display: none;
        }
        
    .trustbar img {
        max-width: 100%;
    }
    
    .help-box {
        bottom: 20px;
    }
    
    .fb-order {}
        .fb-order .table-selector {
            margin-top: 40px;
            position: relative;
            width: 100%;
            right: 0;
        }
        .fb-order .wrap > .f-right {
            padding: 20px;
            background-color: rgba(255,255,255,0.5);
        }
}


/* smart fix */
.fb-order {
  td {
    vertical-align: middle;
  }
  td:nth-child(3),
  td:nth-child(4) {
    text-align: right;
  }
  td:has(.icon-ok) {
    display: none;
  }
  small {
    margin-left: 0 !important;
  }
  
}
.fb-order .table-selector + div {
  right: 0;
}
@media screen and (max-width: 960px) {
	.fb-order {
    .f-left,
    .f-right {
      float: none;
    }
    .wrap {
      background-image: none;
      height: auto;
      
      > div {
        width: 100% !important;
        max-width: none;
        min-width: none;
        margin: 0 !important;
      }
    }
    
	}
  
}