.beadvGallery {
  --beadv-gallery-columns-desktop: 3;
  --beadv-gallery-columns-tablet: 2;
  --beadv-gallery-columns-mobile: 1;
  --beadv-gallery-gap: 16px;
  --beadv-gallery-radius: 6px;
  --beadv-gallery-control: #ffffff;
  --beadv-gallery-control-text: #151515;
  --beadv-gallery-border: rgba(20, 20, 20, 0.12);
  --beadv-gallery-overlay: rgba(0, 0, 0, 0.58);
  width: 100%;
}

.beadvGallery *,
.beadvGallery *::before,
.beadvGallery *::after {
  box-sizing: border-box;
}

.beadvGallery__notice {
  border: 1px dashed var(--beadv-gallery-border);
  border-radius: var(--beadv-gallery-radius);
  padding: 22px;
  color: #555;
  background: #f7f7f7;
}

.beadvGallery__mainStage {
  position: relative;
  overflow: hidden;
  border-radius: var(--beadv-gallery-radius);
  background: #111;
}

.beadvGallery__mainButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #111;
  color: inherit;
  cursor: zoom-in;
}

.beadvGallery__mainButton[disabled],
.beadvGallery__mainButton[aria-disabled="true"] {
  cursor: default;
}

.beadvGallery__mainImage,
.beadvGallery__gridImage,
.beadvGallery__thumbImage {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.beadvGallery__mainImage {
  height: auto;
  min-height: 280px;
  max-height: min(78vh, 780px);
  object-fit: contain;
  background: #111;
}

.beadvGallery--ratio-1-1 .beadvGallery__mainStage,
.beadvGallery--ratio-4-3 .beadvGallery__mainStage,
.beadvGallery--ratio-16-9 .beadvGallery__mainStage,
.beadvGallery--ratio-3-4 .beadvGallery__mainStage {
  aspect-ratio: 16 / 9;
}

.beadvGallery--ratio-1-1 .beadvGallery__mainStage { aspect-ratio: 1 / 1; }
.beadvGallery--ratio-4-3 .beadvGallery__mainStage { aspect-ratio: 4 / 3; }
.beadvGallery--ratio-16-9 .beadvGallery__mainStage { aspect-ratio: 16 / 9; }
.beadvGallery--ratio-3-4 .beadvGallery__mainStage { aspect-ratio: 3 / 4; }

.beadvGallery--ratio-1-1 .beadvGallery__mainImage,
.beadvGallery--ratio-4-3 .beadvGallery__mainImage,
.beadvGallery--ratio-16-9 .beadvGallery__mainImage,
.beadvGallery--ratio-3-4 .beadvGallery__mainImage {
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: contain;
}

.beadvGallery__nav {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  pointer-events: none;
}

.beadvGallery__arrow,
.beadvGalleryLightbox__arrow,
.beadvGalleryLightbox__close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: var(--beadv-gallery-control);
  color: var(--beadv-gallery-control-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.beadvGallery__arrow {
  pointer-events: auto;
}

.beadvGallery__arrow::before,
.beadvGalleryLightbox__arrow::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.beadvGallery__arrow--prev::before,
.beadvGalleryLightbox__arrow--prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.beadvGallery__arrow--next::before,
.beadvGalleryLightbox__arrow--next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.beadvGallery__caption {
  margin: 10px 0 0;
  color: #555;
  font-size: 0.92rem;
  line-height: 1.45;
}

.beadvGallery__thumbsWrap {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 0 28px 18px;
}

.beadvGallery__thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  padding-bottom: 0;
  scrollbar-width: none;
}

.beadvGallery__thumbsWrap.has-scrollable-thumbs .beadvGallery__thumbs {
  justify-content: flex-start;
}

.beadvGallery__thumbs::-webkit-scrollbar {
  display: none;
}

.beadvGallery__thumbArrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--beadv-gallery-border);
  border-radius: 999px;
  background: #fff;
  color: #151515;
  cursor: pointer;
}

.beadvGallery__thumbArrow[disabled],
.beadvGallery__thumbArrow[aria-disabled="true"] {
  opacity: 0.36;
  cursor: default;
  box-shadow: none;
}

.beadvGallery__thumbArrow::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.beadvGallery__thumbArrow--prev::before {
  transform: rotate(-45deg) translate(1px, 1px);
}

.beadvGallery__thumbArrow--next::before {
  transform: rotate(135deg) translate(1px, 1px);
}

.beadvGallery__thumb {
  flex: 0 0 88px;
  width: 88px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--beadv-gallery-radius);
  overflow: hidden;
  background: #ececec;
  cursor: pointer;
  scroll-snap-align: start;
  opacity: 0.72;
}

.beadvGallery__thumb.is-active {
  border-color: #151515;
  opacity: 1;
}

.beadvGallery__grid {
  display: grid;
  grid-template-columns: repeat(var(--beadv-gallery-columns-desktop), minmax(0, 1fr));
  gap: var(--beadv-gallery-gap);
}

.beadvGallery__gridItem {
  position: relative;
  display: block;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: var(--beadv-gallery-radius);
  overflow: hidden;
  background: #ececec;
  color: inherit;
  text-align: left;
  cursor: zoom-in;
}

div.beadvGallery__gridItem {
  cursor: default;
}

.beadvGallery--ratio-auto .beadvGallery__gridItem {
  aspect-ratio: 4 / 3;
}

.beadvGallery--ratio-1-1 .beadvGallery__gridItem { aspect-ratio: 1 / 1; }
.beadvGallery--ratio-4-3 .beadvGallery__gridItem { aspect-ratio: 4 / 3; }
.beadvGallery--ratio-16-9 .beadvGallery__gridItem { aspect-ratio: 16 / 9; }
.beadvGallery--ratio-3-4 .beadvGallery__gridItem { aspect-ratio: 3 / 4; }

.beadvGallery--layout-featured:not(.beadvGallery--cols-desktop-1) .beadvGallery__gridItem:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.beadvGallery--layout-masonry .beadvGallery__grid {
  display: block;
  column-count: var(--beadv-gallery-columns-desktop);
  column-gap: var(--beadv-gallery-gap);
}

.beadvGallery--layout-masonry .beadvGallery__gridItem {
  display: inline-block;
  break-inside: avoid;
  margin: 0 0 var(--beadv-gallery-gap);
  aspect-ratio: auto;
}

.beadvGallery--layout-masonry .beadvGallery__gridItem:nth-child(3n+1) .beadvGallery__gridImage {
  aspect-ratio: 4 / 5;
}

.beadvGallery--layout-masonry .beadvGallery__gridItem:nth-child(3n+2) .beadvGallery__gridImage {
  aspect-ratio: 1 / 1;
}

.beadvGallery--layout-masonry .beadvGallery__gridImage {
  height: auto;
  aspect-ratio: 4 / 3;
}

.beadvGallery__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beadv-gallery-overlay);
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
}

.beadvGallery__gridCaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 14px 12px;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.35;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.beadvGalleryLightboxIsOpen {
  overflow: hidden;
}

.beadvGalleryLightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: none;
  color: #fff;
}

.beadvGalleryLightbox.is-open {
  display: block;
}

.beadvGalleryLightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
}

.beadvGalleryLightbox__dialog {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(44px, 1fr) minmax(0, 1180px) minmax(44px, 1fr);
  grid-template-rows: 72px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 12px;
  padding: 18px;
}

.beadvGalleryLightbox__close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  z-index: 2;
}

.beadvGalleryLightbox__close::before,
.beadvGalleryLightbox__close::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.beadvGalleryLightbox__close::before { transform: rotate(45deg); }
.beadvGalleryLightbox__close::after { transform: rotate(-45deg); }

.beadvGalleryLightbox__figure {
  grid-column: 2;
  grid-row: 2;
  align-self: stretch;
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.beadvGalleryLightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  height: auto;
  object-fit: contain;
}

.beadvGalleryLightbox__caption {
  max-width: 900px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.45;
  text-align: center;
}

.beadvGalleryLightbox__counter {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.beadvGalleryLightbox__arrow--prev {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
}

.beadvGalleryLightbox__arrow--next {
  grid-column: 3;
  grid-row: 2;
  justify-self: center;
}

@media (max-width: 900px) {
  .beadvGallery__grid {
    grid-template-columns: repeat(var(--beadv-gallery-columns-tablet), minmax(0, 1fr));
  }

  .beadvGallery--layout-masonry .beadvGallery__grid {
    column-count: var(--beadv-gallery-columns-tablet);
  }

  .beadvGallery--layout-featured .beadvGallery__gridItem:first-child {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .beadvGallery__mainImage {
    min-height: 220px;
    max-height: 68vh;
  }

  .beadvGallery__grid {
    grid-template-columns: repeat(var(--beadv-gallery-columns-mobile), minmax(0, 1fr));
  }

  .beadvGallery--layout-masonry .beadvGallery__grid {
    column-count: var(--beadv-gallery-columns-mobile);
  }

  .beadvGallery__nav {
    padding: 10px;
  }

  .beadvGallery__arrow,
  .beadvGalleryLightbox__arrow,
  .beadvGalleryLightbox__close {
    width: 38px;
    height: 38px;
  }

  .beadvGallery__thumb {
    flex-basis: 72px;
    width: 72px;
  }

  .beadvGallery__thumbsWrap {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
    padding: 0 14px 14px;
  }

  .beadvGallery__thumbArrow {
    width: 34px;
    height: 34px;
  }

  .beadvGalleryLightbox__dialog {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-rows: 58px minmax(0, 1fr) 44px;
    padding: 10px;
  }

  .beadvGalleryLightbox__image {
    max-height: calc(100vh - 150px);
  }
}

.wpcf7 .screen-reader-response{position:absolute;overflow:hidden;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;width:1px;margin:-1px;padding:0;border:0;word-wrap:normal!important;word-break:normal!important}.wpcf7 .hidden-fields-container{display:none}.wpcf7 form .wpcf7-response-output{margin:2em .5em 1em;padding:.2em 1em;border:2px solid #00a0d2}.wpcf7 form.init .wpcf7-response-output,.wpcf7 form.resetting .wpcf7-response-output,.wpcf7 form.submitting .wpcf7-response-output{display:none}.wpcf7 form.sent .wpcf7-response-output{border-color:#46b450}.wpcf7 form.failed .wpcf7-response-output,.wpcf7 form.aborted .wpcf7-response-output{border-color:#dc3232}.wpcf7 form.spam .wpcf7-response-output{border-color:#f56e28}.wpcf7 form.invalid .wpcf7-response-output,.wpcf7 form.unaccepted .wpcf7-response-output,.wpcf7 form.payment-required .wpcf7-response-output{border-color:#ffb900}.wpcf7-form-control-wrap{position:relative}.wpcf7-not-valid-tip{color:#dc3232;font-size:1em;font-weight:400;display:block}.use-floating-validation-tip .wpcf7-not-valid-tip{position:relative;top:-2ex;left:1em;z-index:100;border:1px solid #dc3232;background:#fff;padding:.2em .8em;width:24em}.wpcf7-list-item{display:inline-block;margin:0 0 0 1em}.wpcf7-list-item-label::before,.wpcf7-list-item-label::after{content:" "}.wpcf7-spinner{visibility:hidden;display:inline-block;background-color:#23282d;opacity:.75;width:24px;height:24px;border:none;border-radius:100%;padding:0;margin:0 24px;position:relative}form.submitting .wpcf7-spinner{visibility:visible}.wpcf7-spinner::before{content:'';position:absolute;background-color:#fbfbfc;top:4px;left:4px;width:6px;height:6px;border:none;border-radius:100%;transform-origin:8px 8px;animation-name:spin;animation-duration:1e3ms;animation-timing-function:linear;animation-iteration-count:infinite}@media(prefers-reduced-motion:reduce){.wpcf7-spinner::before{animation-name:blink;animation-duration:2e3ms}}@keyframes spin{from{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes blink{from{opacity:0}50%{opacity:1}to{opacity:0}}.wpcf7 [inert]{opacity:.5}.wpcf7 input[type=file]{cursor:pointer}.wpcf7 input[type=file]:disabled{cursor:default}.wpcf7 .wpcf7-submit:disabled{cursor:not-allowed}.wpcf7 input[type=url],.wpcf7 input[type=email],.wpcf7 input[type=tel]{direction:ltr}.wpcf7-reflection>output{display:list-item;list-style:none}.wpcf7-reflection>output[hidden]{display:none}
:root{--woocommerce:#720eec;--wc-green:#007518;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px;--wc-destructive:#cc1818;--wc-card-border-radius:8px}.woocommerce .woocommerce-error .button,.woocommerce .woocommerce-info .button,.woocommerce .woocommerce-message .button,.woocommerce-page .woocommerce-error .button,.woocommerce-page .woocommerce-info .button,.woocommerce-page .woocommerce-message .button{float:right}.woocommerce .col2-set,.woocommerce-page .col2-set{width:100%}.woocommerce .col2-set::after,.woocommerce .col2-set::before,.woocommerce-page .col2-set::after,.woocommerce-page .col2-set::before{content:" ";display:table}.woocommerce .col2-set::after,.woocommerce-page .col2-set::after{clear:both}.woocommerce .col2-set .col-1,.woocommerce-page .col2-set .col-1{float:left;width:48%}.woocommerce .col2-set .col-2,.woocommerce-page .col2-set .col-2{float:right;width:48%}.woocommerce img,.woocommerce-page img{height:auto;max-width:100%}.woocommerce #content div.product div.images,.woocommerce div.product div.images,.woocommerce-page #content div.product div.images,.woocommerce-page div.product div.images{float:left;width:48%}.woocommerce #content div.product div.images.woocommerce-product-gallery .flex-viewport,.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport,.woocommerce-page #content div.product div.images.woocommerce-product-gallery .flex-viewport,.woocommerce-page div.product div.images.woocommerce-product-gallery .flex-viewport{touch-action:pan-y pinch-zoom}.woocommerce #content div.product div.thumbnails::after,.woocommerce #content div.product div.thumbnails::before,.woocommerce div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::before,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::before,.woocommerce-page div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::before{content:" ";display:table}.woocommerce #content div.product div.thumbnails::after,.woocommerce div.product div.thumbnails::after,.woocommerce-page #content div.product div.thumbnails::after,.woocommerce-page div.product div.thumbnails::after{clear:both}.woocommerce #content div.product div.thumbnails a,.woocommerce div.product div.thumbnails a,.woocommerce-page #content div.product div.thumbnails a,.woocommerce-page div.product div.thumbnails a{float:left;width:30.75%;margin-right:3.8%;margin-bottom:1em}.woocommerce #content div.product div.thumbnails a.last,.woocommerce div.product div.thumbnails a.last,.woocommerce-page #content div.product div.thumbnails a.last,.woocommerce-page div.product div.thumbnails a.last{margin-right:0}.woocommerce #content div.product div.thumbnails a.first,.woocommerce div.product div.thumbnails a.first,.woocommerce-page #content div.product div.thumbnails a.first,.woocommerce-page div.product div.thumbnails a.first{clear:both}.woocommerce #content div.product div.thumbnails.columns-1 a,.woocommerce div.product div.thumbnails.columns-1 a,.woocommerce-page #content div.product div.thumbnails.columns-1 a,.woocommerce-page div.product div.thumbnails.columns-1 a{width:100%;margin-right:0;float:none}.woocommerce #content div.product div.thumbnails.columns-2 a,.woocommerce div.product div.thumbnails.columns-2 a,.woocommerce-page #content div.product div.thumbnails.columns-2 a,.woocommerce-page div.product div.thumbnails.columns-2 a{width:48%}.woocommerce #content div.product div.thumbnails.columns-4 a,.woocommerce div.product div.thumbnails.columns-4 a,.woocommerce-page #content div.product div.thumbnails.columns-4 a,.woocommerce-page div.product div.thumbnails.columns-4 a{width:22.05%}.woocommerce #content div.product div.thumbnails.columns-5 a,.woocommerce div.product div.thumbnails.columns-5 a,.woocommerce-page #content div.product div.thumbnails.columns-5 a,.woocommerce-page div.product div.thumbnails.columns-5 a{width:16.9%}.woocommerce #content div.product div.summary,.woocommerce div.product div.summary,.woocommerce-page #content div.product div.summary,.woocommerce-page div.product div.summary{float:right;width:48%;clear:none}.woocommerce #content div.product .woocommerce-tabs,.woocommerce div.product .woocommerce-tabs,.woocommerce-page #content div.product .woocommerce-tabs,.woocommerce-page div.product .woocommerce-tabs{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::before{content:" ";display:table}.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after,.woocommerce-page div.product .woocommerce-tabs ul.tabs::after{clear:both}.woocommerce #content div.product .woocommerce-tabs ul.tabs li,.woocommerce div.product .woocommerce-tabs ul.tabs li,.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,.woocommerce-page div.product .woocommerce-tabs ul.tabs li{display:inline-block}.woocommerce #content div.product #reviews .comment::after,.woocommerce #content div.product #reviews .comment::before,.woocommerce div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::before,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::before,.woocommerce-page div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::before{content:" ";display:table}.woocommerce #content div.product #reviews .comment::after,.woocommerce div.product #reviews .comment::after,.woocommerce-page #content div.product #reviews .comment::after,.woocommerce-page div.product #reviews .comment::after{clear:both}.woocommerce #content div.product #reviews .comment img,.woocommerce div.product #reviews .comment img,.woocommerce-page #content div.product #reviews .comment img,.woocommerce-page div.product #reviews .comment img{float:right;height:auto}.woocommerce ul.products,.woocommerce-page ul.products{clear:both}.woocommerce ul.products::after,.woocommerce ul.products::before,.woocommerce-page ul.products::after,.woocommerce-page ul.products::before{content:" ";display:table}.woocommerce ul.products::after,.woocommerce-page ul.products::after{clear:both}.woocommerce ul.products li.product,.woocommerce-page ul.products li.product{float:left;margin:0 3.8% 2.992em 0;padding:0;position:relative;width:22.05%;margin-left:0}.woocommerce ul.products li.first,.woocommerce-page ul.products li.first{clear:both}.woocommerce ul.products li.last,.woocommerce-page ul.products li.last{margin-right:0}.woocommerce ul.products.columns-1 li.product,.woocommerce-page ul.products.columns-1 li.product{width:100%;margin-right:0}.woocommerce ul.products.columns-2 li.product,.woocommerce-page ul.products.columns-2 li.product{width:48%}.woocommerce ul.products.columns-3 li.product,.woocommerce-page ul.products.columns-3 li.product{width:30.75%}.woocommerce ul.products.columns-5 li.product,.woocommerce-page ul.products.columns-5 li.product{width:16.95%}.woocommerce ul.products.columns-6 li.product,.woocommerce-page ul.products.columns-6 li.product{width:13.5%}.woocommerce-page.columns-1 ul.products li.product,.woocommerce.columns-1 ul.products li.product{width:100%;margin-right:0}.woocommerce-page.columns-2 ul.products li.product,.woocommerce.columns-2 ul.products li.product{width:48%}.woocommerce-page.columns-3 ul.products li.product,.woocommerce.columns-3 ul.products li.product{width:30.75%}.woocommerce-page.columns-5 ul.products li.product,.woocommerce.columns-5 ul.products li.product{width:16.95%}.woocommerce-page.columns-6 ul.products li.product,.woocommerce.columns-6 ul.products li.product{width:13.5%}.woocommerce .woocommerce-result-count,.woocommerce-page .woocommerce-result-count{float:left}.woocommerce .woocommerce-ordering,.woocommerce-page .woocommerce-ordering{float:right}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce .woocommerce-pagination ul.page-numbers::before,.woocommerce-page .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::before{content:" ";display:table}.woocommerce .woocommerce-pagination ul.page-numbers::after,.woocommerce-page .woocommerce-pagination ul.page-numbers::after{clear:both}.woocommerce .woocommerce-pagination ul.page-numbers li,.woocommerce-page .woocommerce-pagination ul.page-numbers li{display:inline-block}.woocommerce #content table.cart img,.woocommerce table.cart img,.woocommerce-page #content table.cart img,.woocommerce-page table.cart img{height:auto}.woocommerce #content table.cart td.actions,.woocommerce table.cart td.actions,.woocommerce-page #content table.cart td.actions,.woocommerce-page table.cart td.actions{text-align:right}.woocommerce #content table.cart td.actions .input-text,.woocommerce table.cart td.actions .input-text,.woocommerce-page #content table.cart td.actions .input-text,.woocommerce-page table.cart td.actions .input-text{width:80px}.woocommerce #content table.cart td.actions .coupon,.woocommerce table.cart td.actions .coupon,.woocommerce-page #content table.cart td.actions .coupon,.woocommerce-page table.cart td.actions .coupon{float:left}.woocommerce .cart-collaterals,.woocommerce-page .cart-collaterals{width:100%}.woocommerce .cart-collaterals::after,.woocommerce .cart-collaterals::before,.woocommerce-page .cart-collaterals::after,.woocommerce-page .cart-collaterals::before{content:" ";display:table}.woocommerce .cart-collaterals::after,.woocommerce-page .cart-collaterals::after{clear:both}.woocommerce .cart-collaterals .related,.woocommerce-page .cart-collaterals .related{width:30.75%;float:left}.woocommerce .cart-collaterals .cross-sells,.woocommerce-page .cart-collaterals .cross-sells{width:48%;float:left}.woocommerce .cart-collaterals .cross-sells ul.products,.woocommerce-page .cart-collaterals .cross-sells ul.products{float:none}.woocommerce .cart-collaterals .cross-sells ul.products li,.woocommerce-page .cart-collaterals .cross-sells ul.products li{width:48%}.woocommerce .cart-collaterals .shipping_calculator,.woocommerce-page .cart-collaterals .shipping_calculator{width:48%;clear:right;float:right}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce .cart-collaterals .shipping_calculator::before,.woocommerce-page .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::before{content:" ";display:table}.woocommerce .cart-collaterals .shipping_calculator::after,.woocommerce-page .cart-collaterals .shipping_calculator::after{clear:both}.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2{width:47%}.woocommerce .cart-collaterals .cart_totals,.woocommerce-page .cart-collaterals .cart_totals{float:right;width:48%}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.cart_list li::before,.woocommerce-page ul.product_list_widget li::after,.woocommerce-page ul.product_list_widget li::before{content:" ";display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after,.woocommerce-page ul.cart_list li::after,.woocommerce-page ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img,.woocommerce-page ul.cart_list li img,.woocommerce-page ul.product_list_widget li img{float:right;height:auto}.woocommerce form .form-row::after,.woocommerce form .form-row::before,.woocommerce-page form .form-row::after,.woocommerce-page form .form-row::before{content:" ";display:table}.woocommerce form .form-row::after,.woocommerce-page form .form-row::after{clear:both}.woocommerce form .form-row label,.woocommerce-page form .form-row label{display:block}.woocommerce form .form-row label.checkbox,.woocommerce-page form .form-row label.checkbox{display:inline}.woocommerce form .form-row select,.woocommerce-page form .form-row select{width:100%}.woocommerce form .form-row .input-text,.woocommerce-page form .form-row .input-text{box-sizing:border-box;width:100%}.woocommerce form .form-row-first,.woocommerce form .form-row-last,.woocommerce-page form .form-row-first,.woocommerce-page form .form-row-last{width:47%;overflow:visible}.woocommerce form .form-row-first,.woocommerce-page form .form-row-first{float:left}.woocommerce form .form-row-last,.woocommerce-page form .form-row-last{float:right}.woocommerce form .form-row-wide,.woocommerce-page form .form-row-wide{clear:both}.woocommerce form .password-input,.woocommerce-page form .password-input{display:flex;flex-direction:column;justify-content:center;position:relative}.woocommerce form .password-input input[type=password],.woocommerce-page form .password-input input[type=password]{padding-right:2.5rem}.woocommerce form .password-input input::-ms-reveal,.woocommerce-page form .password-input input::-ms-reveal{display:none}.woocommerce form .show-password-input,.woocommerce-page form .show-password-input{background-color:transparent;border-radius:0;border:0;color:var(--wc-form-color-text,#000);cursor:pointer;font-size:inherit;line-height:inherit;margin:0;padding:0;position:absolute;right:.7em;text-decoration:none;top:50%;transform:translateY(-50%);-moz-osx-font-smoothing:inherit;-webkit-appearance:none;-webkit-font-smoothing:inherit}.woocommerce form .show-password-input::before,.woocommerce-page form .show-password-input::before{background-repeat:no-repeat;background-size:cover;background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.3 3.3C16.9 2.9 16.2 2.9 15.7 3.3L13.3 5.7C12.2437 5.3079 11.1267 5.1048 10 5.1C6.2 5.2 2.8 7.2 1 10.5C1.2 10.9 1.5 11.3 1.8 11.7C2.6 12.8 3.6 13.7 4.7 14.4L3 16.1C2.6 16.5 2.5 17.2 3 17.7C3.4 18.1 4.1 18.2 4.6 17.7L17.3 4.9C17.7 4.4 17.7 3.7 17.3 3.3ZM6.7 12.3L5.4 13.6C4.2 12.9 3.1 11.9 2.3 10.7C3.5 9 5.1 7.8 7 7.2C5.7 8.6 5.6 10.8 6.7 12.3ZM10.1 9C9.6 8.5 9.7 7.7 10.2 7.2C10.7 6.8 11.4 6.8 11.9 7.2L10.1 9ZM18.3 9.5C17.8 8.8 17.2 8.1 16.5 7.6L15.5 8.6C16.3 9.2 17 9.9 17.6 10.8C15.9 13.4 13 15 9.9 15H9.1L8.1 16C8.8 15.9 9.4 16 10 16C13.3 16 16.4 14.4 18.3 11.7C18.6 11.3 18.8 10.9 19.1 10.5C18.8 10.2 18.6 9.8 18.3 9.5ZM14 10L10 14C12.2 14 14 12.2 14 10Z" fill="%23111111"/></svg>');content:"";display:block;height:22px;width:22px}.woocommerce form .show-password-input.display-password::before,.woocommerce-page form .show-password-input.display-password::before{background-image:url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.3 9.49999C15 4.89999 8.50002 3.79999 3.90002 7.19999C2.70002 8.09999 1.70002 9.29999 0.900024 10.6C1.10002 11 1.40002 11.4 1.70002 11.8C5.00002 16.4 11.3 17.4 15.9 14.2C16.8 13.5 17.6 12.8 18.3 11.8C18.6 11.4 18.8 11 19.1 10.6C18.8 10.2 18.6 9.79999 18.3 9.49999ZM10.1 7.19999C10.6 6.69999 11.4 6.69999 11.9 7.19999C12.4 7.69999 12.4 8.49999 11.9 8.99999C11.4 9.49999 10.6 9.49999 10.1 8.99999C9.60003 8.49999 9.60003 7.69999 10.1 7.19999ZM10 14.9C6.90002 14.9 4.00002 13.3 2.30002 10.7C3.50002 8.99999 5.10002 7.79999 7.00002 7.19999C6.30002 7.99999 6.00002 8.89999 6.00002 9.89999C6.00002 12.1 7.70002 14 10 14C12.2 14 14.1 12.3 14.1 9.99999V9.89999C14.1 8.89999 13.7 7.89999 13 7.19999C14.9 7.79999 16.5 8.99999 17.7 10.7C16 13.3 13.1 14.9 10 14.9Z" fill="%23111111"/></svg>')}.woocommerce #payment .form-row select,.woocommerce-page #payment .form-row select{width:auto}.woocommerce #payment .terms,.woocommerce #payment .wc-terms-and-conditions,.woocommerce-page #payment .terms,.woocommerce-page #payment .wc-terms-and-conditions{text-align:left;padding:0 1em 0 0;float:left}.woocommerce #payment #place_order,.woocommerce-page #payment #place_order{float:right}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-billing-fields::before,.woocommerce .woocommerce-shipping-fields::after,.woocommerce .woocommerce-shipping-fields::before,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-billing-fields::before,.woocommerce-page .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-shipping-fields::before{content:" ";display:table}.woocommerce .woocommerce-billing-fields::after,.woocommerce .woocommerce-shipping-fields::after,.woocommerce-page .woocommerce-billing-fields::after,.woocommerce-page .woocommerce-shipping-fields::after{clear:both}.woocommerce .woocommerce-terms-and-conditions,.woocommerce-page .woocommerce-terms-and-conditions{margin-bottom:1.618em;padding:1.618em}.woocommerce .woocommerce-oembed,.woocommerce-page .woocommerce-oembed{position:relative}.woocommerce-account .woocommerce-MyAccount-navigation{float:left;width:30%}.woocommerce-account .woocommerce-MyAccount-content{float:right;width:68%}.woocommerce-account .woocommerce-MyAccount-content mark{background-color:transparent;color:inherit;font-weight:700}.woocommerce-page.left-sidebar #content.twentyeleven{width:58.4%;margin:0 7.6%;float:right}.woocommerce-page.right-sidebar #content.twentyeleven{margin:0 7.6%;width:58.4%;float:left}.twentyfourteen .tfwc{padding:12px 10px 0;max-width:474px;margin:0 auto}.twentyfourteen .tfwc .product .entry-summary{padding:0!important;margin:0 0 1.618em!important}.twentyfourteen .tfwc div.product.hentry.has-post-thumbnail{margin-top:0}@media screen and (min-width:673px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1040px){.twentyfourteen .tfwc{padding-right:15px;padding-left:15px}}@media screen and (min-width:1110px){.twentyfourteen .tfwc{padding-right:30px;padding-left:30px}}@media screen and (min-width:1218px){.twentyfourteen .tfwc{margin-right:54px}.full-width .twentyfourteen .tfwc{margin-right:auto}}.twentyfifteen .t15wc{padding-left:7.6923%;padding-right:7.6923%;padding-top:7.6923%;margin-bottom:7.6923%;background:#fff;box-shadow:0 0 1px rgba(0,0,0,.15)}.twentyfifteen .t15wc .page-title{margin-left:0}@media screen and (min-width:38.75em){.twentyfifteen .t15wc{margin-right:7.6923%;margin-left:7.6923%;margin-top:8.3333%}}@media screen and (min-width:59.6875em){.twentyfifteen .t15wc{margin-left:8.3333%;margin-right:8.3333%;padding:10%}.single-product .twentyfifteen .entry-summary{padding:0!important}}.twentysixteen .site-main{margin-right:7.6923%;margin-left:7.6923%}.twentysixteen .entry-summary{margin-right:0;margin-left:0}#content .twentysixteen div.product div.images,#content .twentysixteen div.product div.summary{width:46.42857%}@media screen and (min-width:44.375em){.twentysixteen .site-main{margin-right:23.0769%}}@media screen and (min-width:56.875em){.twentysixteen .site-main{margin-right:0;margin-left:0}.no-sidebar .twentysixteen .site-main{margin-right:15%;margin-left:15%}.no-sidebar .twentysixteen .entry-summary{margin-right:0;margin-left:0}}.rtl .woocommerce .col2-set .col-1,.rtl .woocommerce-page .col2-set .col-1{float:right}.rtl .woocommerce .col2-set .col-2,.rtl .woocommerce-page .col2-set .col-2{float:left}
@charset "UTF-8";:root{--woocommerce:#720eec;--wc-green:#007518;--wc-red:#a00;--wc-orange:#ffba00;--wc-blue:#2ea2cc;--wc-primary:#720eec;--wc-primary-text:#fcfbfe;--wc-secondary:#e9e6ed;--wc-secondary-text:#515151;--wc-highlight:#958e09;--wc-highligh-text:white;--wc-content-bg:#fff;--wc-subtext:#767676;--wc-form-border-color:rgba(32, 7, 7, 0.8);--wc-form-border-radius:4px;--wc-form-border-width:1px;--wc-destructive:#cc1818;--wc-card-border-radius:8px}@keyframes spin{100%{transform:rotate(360deg)}}@font-face{font-family:star;src:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../fonts/WooCommerce.woff2)format("woff2"),url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../fonts/WooCommerce.woff)format("woff"),url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../fonts/WooCommerce.ttf)format("truetype");font-weight:400;font-style:normal}@font-face{font-family:WooCommerce;src:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../fonts/WooCommerce.woff2)format("woff2"),url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../fonts/WooCommerce.woff)format("woff"),url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../fonts/WooCommerce.ttf)format("truetype");font-weight:400;font-style:normal}.woocommerce form .form-row{padding:3px;margin:0 0 6px}.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:0}.woocommerce form .form-row label{line-height:2}.woocommerce form .form-row label.hidden{visibility:hidden}.woocommerce form .form-row label.inline{display:inline}.woocommerce form .form-row .woocommerce-input-wrapper .description{background:#1e85be;color:#fff;border-radius:3px;padding:1em;margin:.5em 0 0;clear:both;display:none;position:relative}.woocommerce form .form-row .woocommerce-input-wrapper .description a{color:#fff;text-decoration:underline;border:0;box-shadow:none}.woocommerce form .form-row .woocommerce-input-wrapper .description::before{left:50%;top:0;margin-top:-4px;transform:translateX(-50%)rotate(180deg);content:"";position:absolute;border-width:4px 6px 0;border-style:solid;border-color:#1e85be transparent transparent transparent;z-index:100;display:block}.woocommerce form .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}.woocommerce form .form-row .input-text,.woocommerce form .form-row select{font-family:inherit;font-weight:400;letter-spacing:normal;padding:.5em;display:block;background-color:var(--wc-form-color-background,#fff);border:var(--wc-form-border-width)solid var(--wc-form-border-color);border-radius:var(--wc-form-border-radius);color:var(--wc-form-color-text,#000);box-sizing:border-box;width:100%;margin:0;line-height:normal;height:auto}.woocommerce form .form-row .input-text:focus,.woocommerce form .form-row select:focus{border-color:initial}.woocommerce form .form-row select{cursor:pointer;appearance:none;padding-right:3em;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1jaGV2cm9uLWRvd24iPjxwb2x5bGluZSBwb2ludHM9IjYgOSAxMiAxNSAxOCA5Ii8+PC9zdmc+);background-repeat:no-repeat;background-size:16px;background-position:calc(100% - .5em)}.woocommerce form .form-row textarea{height:4em;line-height:1.5;box-shadow:none}.woocommerce form .form-row .country_to_state--single{background:0 0;border:0;padding:0;appearance:none;background-image:none;font:inherit;font-weight:700;color:inherit;width:auto;pointer-events:none}.woocommerce form .form-row .required{color:var(--wc-red);font-weight:700;border:0!important;text-decoration:none;visibility:hidden}.woocommerce form .form-row .optional{visibility:visible}.woocommerce form .form-row.woocommerce-invalid label{color:var(--wc-red)}.woocommerce form .form-row.woocommerce-invalid input.input-text,.woocommerce form .form-row.woocommerce-invalid select{border-color:var(--wc-red)}.woocommerce form .form-row.woocommerce-invalid .select2-container:not(.select2-container--open) .select2-selection{border-color:var(--wc-red)}.woocommerce form .form-row.woocommerce-validated input.input-text,.woocommerce form .form-row.woocommerce-validated select{border-color:var(--wc-green)}.woocommerce form .form-row.woocommerce-validated .select2-container:not(.select2-container--open) .select2-selection{border-color:var(--wc-green)}.woocommerce form .form-row ::-webkit-input-placeholder{line-height:normal}.woocommerce form .form-row :-moz-placeholder{line-height:normal}.woocommerce form .form-row :-ms-input-placeholder{line-height:normal}:where(.woocommerce) .select2-container{width:100%}:where(.woocommerce) .select2-container .select2-selection--single{height:auto}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered{padding:.5em;line-height:normal;box-sizing:border-box;color:var(--wc-form-color-text,#444);font-weight:400}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__placeholder{color:var(--wc-form-color-text,#444)}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow{position:absolute;top:2px;right:.5em;height:100%;width:16px}:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__arrow b{border:none;display:block;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1jaGV2cm9uLWRvd24iPjxwb2x5bGluZSBwb2ludHM9IjYgOSAxMiAxNSAxOCA5Ii8+PC9zdmc+)no-repeat;background-size:16px;width:16px;height:16px;position:absolute;top:50%;left:0;margin:-8px 0 0}:where(.woocommerce) .select2-container .select2-dropdown,:where(.woocommerce) .select2-container .select2-selection{background-color:var(--wc-form-color-background,#fff);border:var(--wc-form-border-width,1px)solid var(--wc-form-border-color,#aaa);border-radius:var(--wc-form-border-radius,4px)}:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}:where(.woocommerce) .select2-container.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}:where(.woocommerce) .select2-results__options{list-style:none;margin:0;padding:0}:where(.woocommerce) .select2-results__option{margin:0}.woocommerce-store-notice,p.demo_store{position:absolute;top:0;left:0;right:0;margin:0;width:100%;font-size:1em;padding:1em 0;text-align:center;background-color:#720eec;color:#fcfbfe;z-index:99998;box-shadow:0 1px 1em rgba(0,0,0,.2);display:none}.woocommerce-store-notice a,p.demo_store a{color:#fcfbfe;text-decoration:underline}.screen-reader-text{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px;word-wrap:normal!important}.admin-bar p.demo_store{top:32px}.woocommerce-product-gallery__photoswipe-video-wrapper{display:flex;align-items:center;justify-content:center;width:100%;height:100%}.woocommerce-product-gallery__photoswipe-video{display:block;width:100%;height:100%;max-width:100%;max-height:100%;object-fit:contain}.clear{clear:both}.woocommerce .blockUI.blockOverlay{position:relative}.woocommerce .blockUI.blockOverlay::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:"";animation:spin 1s ease-in-out infinite;background:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/loader.svg)50%;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce .loader::before{height:1em;width:1em;display:block;position:absolute;top:50%;left:50%;margin-left:-.5em;margin-top:-.5em;content:"";animation:spin 1s ease-in-out infinite;background:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/loader.svg)50%;background-size:cover;line-height:1;text-align:center;font-size:2em;color:rgba(0,0,0,.75)}.woocommerce a.remove{display:block;font-size:1.5em;height:1em;width:1em;text-align:center;line-height:1;border-radius:100%;color:var(--wc-red)!important;text-decoration:none;font-weight:700;border:0}.woocommerce a.remove:hover{color:#fff!important;background:var(--wc-red)}.woocommerce small.note{display:block;color:#767676;font-size:.857em;margin-top:10px}.woocommerce .woocommerce-breadcrumb{margin:0 0 1em;padding:0}.woocommerce .woocommerce-breadcrumb::after,.woocommerce .woocommerce-breadcrumb::before{content:" ";display:table}.woocommerce .woocommerce-breadcrumb::after{clear:both}.woocommerce .quantity .qty{width:3.631em;text-align:center}.woocommerce div.product{margin-bottom:0;position:relative}.woocommerce div.product .product_title{clear:none;margin-top:0;padding:0}.woocommerce div.product p.price ins,.woocommerce div.product span.price ins{background:inherit;font-weight:700;display:inline-block}.woocommerce div.product p.price del,.woocommerce div.product span.price del{opacity:.7;display:inline-block}.woocommerce div.product p.stock{font-size:.92em}.woocommerce div.product .woocommerce-product-rating{margin-bottom:1.618em}.woocommerce div.product div.images{margin-bottom:2em}.woocommerce div.product div.images img{display:block;width:100%;height:auto;box-shadow:none}.woocommerce div.product div.images div.thumbnails{padding-top:1em}.woocommerce div.product div.images.woocommerce-product-gallery{position:relative}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{transition:all cubic-bezier(.795,-.035,0,1).5s;margin:0;padding:0}.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg{background-color:#fff;opacity:0}.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder{border:1px solid #f2f2f2}.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n+2){width:25%;display:inline-block}.woocommerce div.product div.images .woocommerce-product-gallery__image a{display:block;outline-offset:-2px}.woocommerce div.product div.images .woocommerce-product-gallery__video .wp-post-video{display:block;width:100%;height:auto}.woocommerce div.product div.images .woocommerce-product-gallery__trigger{background:#fff;border:none;box-sizing:content-box;border-radius:100%;cursor:pointer;font-size:2em;height:36px;padding:0;position:absolute;right:.5em;text-indent:-9999px;top:.5em;width:36px;z-index:99}.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before{border:2px solid #000;border-radius:100%;box-sizing:content-box;content:"";display:block;height:10px;left:9px;top:9px;position:absolute;width:10px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after{background:#000;border-radius:6px;box-sizing:content-box;content:"";display:block;height:8px;left:22px;position:absolute;top:19px;transform:rotate(-45deg);width:2px}.woocommerce div.product div.images .woocommerce-product-gallery__trigger span[aria-hidden=true]{border:0;clip-path:inset(50%);height:1px;left:50%;margin:-1px;overflow:hidden;position:absolute;top:50%;width:1px}.woocommerce div.product div.images .flex-control-thumbs{overflow:hidden;zoom:1;margin:0;padding:0}.woocommerce div.product div.images .flex-control-thumbs li{width:25%;float:left;margin:0;list-style:none;position:relative}.woocommerce div.product div.images .flex-control-thumbs li .woocommerce-product-gallery__video-thumbnail-preview,.woocommerce div.product div.images .flex-control-thumbs li img{cursor:pointer;opacity:.5;margin:0}.woocommerce div.product div.images .flex-control-thumbs li .woocommerce-product-gallery__video-thumbnail-preview.flex-active,.woocommerce div.product div.images .flex-control-thumbs li .woocommerce-product-gallery__video-thumbnail-preview:hover,.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,.woocommerce div.product div.images .flex-control-thumbs li img:hover{opacity:1}.woocommerce div.product div.images .flex-control-thumbs li.woocommerce-product-gallery__video-thumbnail::before{content:"▶";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);z-index:1;color:#fff;font-size:1.4em;text-shadow:0 0 .25em rgba(0,0,0,.8);pointer-events:none}.woocommerce div.product div.images .flex-control-thumbs li.woocommerce-product-gallery__video-thumbnail img.woocommerce-product-gallery__video-thumbnail-placeholder,.woocommerce div.product div.images .flex-control-thumbs li.woocommerce-product-gallery__video-thumbnail img.woocommerce-product-gallery__video-thumbnail-placeholder.flex-active,.woocommerce div.product div.images .flex-control-thumbs li.woocommerce-product-gallery__video-thumbnail img.woocommerce-product-gallery__video-thumbnail-placeholder:hover{opacity:0}.woocommerce div.product div.images .flex-control-thumbs li.woocommerce-product-gallery__video-thumbnail .woocommerce-product-gallery__video-thumbnail-preview{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;pointer-events:none}.woocommerce div.product div.images .flex-control-thumbs li.woocommerce-product-gallery__video-thumbnail .woocommerce-product-gallery__video-thumbnail-placeholder.flex-active+.woocommerce-product-gallery__video-thumbnail-preview,.woocommerce div.product div.images .flex-control-thumbs li.woocommerce-product-gallery__video-thumbnail:hover .woocommerce-product-gallery__video-thumbnail-preview{opacity:1}.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1){clear:left}.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1){clear:left}.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1){clear:left}.woocommerce div.product div.summary{margin-bottom:2em}.woocommerce div.product div.social{text-align:right;margin:0 0 1em}.woocommerce div.product div.social span{margin:0 0 0 2px}.woocommerce div.product div.social span span{margin:0}.woocommerce div.product div.social span .stButton .chicklets{padding-left:16px;width:0}.woocommerce div.product div.social iframe{float:left;margin-top:3px}.woocommerce div.product .woocommerce-tabs ul.tabs{list-style:none;padding:0 0 0 1em;margin:0 0 1.618em;overflow:hidden;position:relative}.woocommerce div.product .woocommerce-tabs ul.tabs li{border:1px solid #cfc8d8;background-color:#e9e6ed;color:#515151;display:inline-block;position:relative;z-index:0;border-radius:4px 4px 0 0;margin:0 -5px;padding:0 1em}.woocommerce div.product .woocommerce-tabs ul.tabs li a{display:inline-block;padding:.5em 0;font-weight:700;color:#515151;text-decoration:none}.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover{text-decoration:none;color:#6b6b6b}.woocommerce div.product .woocommerce-tabs ul.tabs li.active{background:#fff;color:#515151;z-index:2;border-bottom-color:#fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active a{color:inherit;text-shadow:inherit}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before{box-shadow:2px 2px #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after{box-shadow:-2px 2px #fff}.woocommerce div.product .woocommerce-tabs ul.tabs li::after,.woocommerce div.product .woocommerce-tabs ul.tabs li::before{border:1px solid #cfc8d8;position:absolute;bottom:-1px;width:5px;height:5px;content:" ";box-sizing:border-box}.woocommerce div.product .woocommerce-tabs ul.tabs li::before{left:-5px;border-bottom-right-radius:4px;border-width:0 1px 1px 0;box-shadow:2px 2px #e9e6ed}.woocommerce div.product .woocommerce-tabs ul.tabs li::after{right:-5px;border-bottom-left-radius:4px;border-width:0 0 1px 1px;box-shadow:-2px 2px #e9e6ed}.woocommerce div.product .woocommerce-tabs ul.tabs::before{position:absolute;content:" ";width:100%;bottom:0;left:0;border-bottom:1px solid #cfc8d8;z-index:1}.woocommerce div.product .woocommerce-tabs .panel{margin:0 0 2em;padding:0}.woocommerce div.product p.cart{margin-bottom:2em}.woocommerce div.product p.cart::after,.woocommerce div.product p.cart::before{content:" ";display:table}.woocommerce div.product p.cart::after{clear:both}.woocommerce div.product form.cart{margin-bottom:2em}.woocommerce div.product form.cart::after,.woocommerce div.product form.cart::before{content:" ";display:table}.woocommerce div.product form.cart::after{clear:both}.woocommerce div.product form.cart div.quantity{float:left;margin:0 4px 0 0}.woocommerce div.product form.cart table{border-width:0 0 1px}.woocommerce div.product form.cart table td{padding-left:0}.woocommerce div.product form.cart table div.quantity{float:none;margin:0}.woocommerce div.product form.cart table small.stock{display:block;float:none}.woocommerce div.product form.cart .variations{margin-bottom:1em;border:0;width:100%}.woocommerce div.product form.cart .variations td,.woocommerce div.product form.cart .variations th{border:0;line-height:2em;vertical-align:top}.woocommerce div.product form.cart .variations label{font-weight:700;text-align:left}.woocommerce div.product form.cart .variations select{max-width:100%;min-width:75%;display:inline-block;margin-right:1em;appearance:none;-webkit-appearance:none;-moz-appearance:none;padding-right:3em;background:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMDAwIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9ImZlYXRoZXIgZmVhdGhlci1jaGV2cm9uLWRvd24iPjxwb2x5bGluZSBwb2ludHM9IjYgOSAxMiAxNSAxOCA5Ii8+PC9zdmc+)no-repeat;background-size:16px;-webkit-background-size:16px;background-position:calc(100% - 12px);-webkit-background-position:calc(100% - 12px)50%}.woocommerce div.product form.cart .variations td.label{padding-right:1em}.woocommerce div.product form.cart .woocommerce-variation-description p{margin-bottom:1em}.woocommerce div.product form.cart .reset_variations{visibility:hidden;font-size:.83em}.woocommerce div.product form.cart .wc-no-matching-variations{display:none}.woocommerce div.product form.cart .button{vertical-align:middle;float:left}.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label{padding-right:1em;padding-left:1em}.woocommerce div.product form.cart .group_table td{vertical-align:top;padding-bottom:.5em;border:0}.woocommerce div.product form.cart .group_table td:first-child{width:4em;text-align:center}.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox{display:inline-block;width:auto;margin:0 auto;transform:scale(1.5,1.5)}.woocommerce span.onsale{min-height:3.236em;min-width:3.236em;padding:.202em;font-size:1em;font-weight:700;position:absolute;text-align:center;line-height:3.236;top:-.5em;left:-.5em;margin:0;border-radius:100%;background-color:#958e09;color:#fff;font-size:.857em;z-index:9}.woocommerce .products ul,.woocommerce ul.products{margin:0 0 1em;padding:0;list-style:none outside;clear:both}.woocommerce .products ul::after,.woocommerce .products ul::before,.woocommerce ul.products::after,.woocommerce ul.products::before{content:" ";display:table}.woocommerce .products ul::after,.woocommerce ul.products::after{clear:both}.woocommerce .products ul li,.woocommerce ul.products li{list-style:none outside}.woocommerce ul.products li.product .onsale{top:0;right:0;left:auto;margin:-.5em -.5em 0 0}.woocommerce ul.products li.product .woocommerce-loop-category__title,.woocommerce ul.products li.product .woocommerce-loop-product__title,.woocommerce ul.products li.product h3{padding:.5em 0;margin:0;font-size:1em}.woocommerce ul.products li.product a{text-decoration:none}.woocommerce ul.products li.product a.woocommerce-loop-product__link{display:block}.woocommerce ul.products li.product a img{width:100%;height:auto;display:block;margin:0 0 1em;box-shadow:none}.woocommerce ul.products li.product strong{display:block}.woocommerce ul.products li.product .woocommerce-placeholder{border:1px solid #f2f2f2}.woocommerce ul.products li.product .star-rating{font-size:.857em}.woocommerce ul.products li.product .button{display:inline-block;margin-top:1em}.woocommerce ul.products li.product .price{display:block;font-weight:400;margin-bottom:.5em;font-size:.857em}.woocommerce ul.products li.product .price del{color:inherit;opacity:.7;display:inline-block}.woocommerce ul.products li.product .price ins{background:0 0;font-weight:700;display:inline-block}.woocommerce ul.products li.product .price .from{font-size:.67em;margin:-2px 0 0;text-transform:uppercase;color:rgba(90,89,68,.5)}.woocommerce .woocommerce-result-count{margin:0 0 1em}.woocommerce .woocommerce-ordering{margin:0 0 1em}.woocommerce .woocommerce-ordering>label{margin-right:.25rem}.woocommerce .woocommerce-ordering select{vertical-align:top}.woocommerce nav.woocommerce-pagination{text-align:center}.woocommerce nav.woocommerce-pagination ul{display:inline-block;white-space:nowrap;padding:0;clear:both;border:1px solid #cfc8d8;border-right:0;margin:1px}.woocommerce nav.woocommerce-pagination ul li{border-right:1px solid #cfc8d8;padding:0;margin:0;float:left;display:inline;overflow:hidden}.woocommerce nav.woocommerce-pagination ul li a,.woocommerce nav.woocommerce-pagination ul li span{margin:0;text-decoration:none;padding:0;line-height:1;font-size:1em;font-weight:400;padding:.5em;min-width:1em;display:block}.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:#e9e6ed;color:#816f98}.woocommerce .cart .button,.woocommerce .cart input.button{float:none}.woocommerce a.added_to_cart{padding-top:.5em;display:inline-block}.woocommerce #reviews h2 small{float:right;color:#767676;font-size:15px;margin:10px 0 0}.woocommerce #reviews h2 small a{text-decoration:none;color:#767676}.woocommerce #reviews h3{margin:0}.woocommerce #reviews #respond{margin:0;border:0;padding:0}.woocommerce #reviews #comment{height:75px}.woocommerce #reviews #comments .add_review::after,.woocommerce #reviews #comments .add_review::before{content:" ";display:table}.woocommerce #reviews #comments .add_review::after{clear:both}.woocommerce #reviews #comments h2{clear:none}.woocommerce #reviews #comments ol.commentlist{margin:0;width:100%;background:0 0;list-style:none}.woocommerce #reviews #comments ol.commentlist::after,.woocommerce #reviews #comments ol.commentlist::before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist::after{clear:both}.woocommerce #reviews #comments ol.commentlist li{padding:0;margin:0 0 20px;border:0;position:relative;background:0;border:0}.woocommerce #reviews #comments ol.commentlist li img.avatar{float:left;position:absolute;top:0;left:0;padding:3px;width:32px;height:auto;background:#e9e6ed;border:1px solid #e1dde7;margin:0;box-shadow:none}.woocommerce #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border:1px solid #e1dde7;border-radius:4px;padding:1em 1em 0}.woocommerce #reviews #comments ol.commentlist li .comment-text::after,.woocommerce #reviews #comments ol.commentlist li .comment-text::before{content:" ";display:table}.woocommerce #reviews #comments ol.commentlist li .comment-text::after{clear:both}.woocommerce #reviews #comments ol.commentlist li .comment-text p{margin:0 0 1em}.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta{font-size:.83em}.woocommerce #reviews #comments ol.commentlist ul.children{list-style:none outside;margin:20px 0 0 50px}.woocommerce #reviews #comments ol.commentlist ul.children .star-rating{display:none}.woocommerce #reviews #comments ol.commentlist #respond{border:1px solid #e1dde7;border-radius:4px;padding:1em 1em 0;margin:20px 0 0 50px}.woocommerce #reviews #comments .commentlist>li::before{content:""}.woocommerce .star-rating{float:right;overflow:hidden;position:relative;height:1em;line-height:1;font-size:1em;width:5.4em;font-family:WooCommerce}.woocommerce .star-rating::before{content:"sssss";color:#cfc8d8;float:left;top:0;left:0;position:absolute}.woocommerce .star-rating span{overflow:hidden;float:left;top:0;left:0;position:absolute;padding-top:1.5em}.woocommerce .star-rating span::before{content:"SSSSS";top:0;position:absolute;left:0}.woocommerce .woocommerce-product-rating{line-height:2;display:block}.woocommerce .woocommerce-product-rating::after,.woocommerce .woocommerce-product-rating::before{content:" ";display:table}.woocommerce .woocommerce-product-rating::after{clear:both}.woocommerce .woocommerce-product-rating .star-rating{margin:.5em 4px 0 0;float:left}.woocommerce .products .star-rating{display:block;margin:0 0 .5em;float:none}.woocommerce .hreview-aggregate .star-rating{margin:10px 0 0}.woocommerce #review_form #respond{position:static;margin:0;width:auto;padding:0;background:0 0;border:0}.woocommerce #review_form #respond::after,.woocommerce #review_form #respond::before{content:" ";display:table}.woocommerce #review_form #respond::after{clear:both}.woocommerce #review_form #respond p{margin:0 0 10px}.woocommerce #review_form #respond .form-submit input{left:auto}.woocommerce #review_form #respond textarea{box-sizing:border-box;width:100%}.woocommerce p.stars a{position:relative;height:1em;width:1em;text-indent:-999em;display:inline-block;text-decoration:none;font-size:24px}.woocommerce p.stars a::before{display:block;position:absolute;top:0;left:0;width:1em;height:1em;line-height:1;font-family:WooCommerce;content:"\e021";text-indent:0}.woocommerce p.stars a:hover~a::before{content:"\e021"}.woocommerce p.stars:hover a::before{content:"\e020"}.woocommerce p.stars.selected a.active::before{content:"\e020"}.woocommerce p.stars.selected a.active~a::before{content:"\e021"}.woocommerce p.stars.selected a:not(.active)::before{content:"\e020"}.woocommerce table.shop_attributes{border:0;border-top:1px dotted rgba(0,0,0,.1);margin-bottom:1.618em;width:100%}.woocommerce table.shop_attributes th{width:150px;font-weight:700;padding:8px;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td{font-style:italic;padding:0;border-top:0;border-bottom:1px dotted rgba(0,0,0,.1);margin:0;line-height:1.5}.woocommerce table.shop_attributes td p{margin:0;padding:8px 0}.woocommerce table.shop_attributes tr:nth-child(2n) td,.woocommerce table.shop_attributes tr:nth-child(2n) th{background:rgba(0,0,0,.025)}.woocommerce table.shop_table{border:1px solid color-mix(in srgb,currentColor 20%,transparent);margin:0 -1px 24px 0;text-align:left;width:100%;border-collapse:separate;border-spacing:0;border-radius:5px}.woocommerce table.shop_table th{font-weight:700;padding:9px 12px;line-height:1.5em}.woocommerce table.shop_table td{border-top:1px solid color-mix(in srgb,currentColor 20%,transparent);padding:9px 12px;vertical-align:middle;line-height:1.5em}.woocommerce table.shop_table td small{font-weight:400}.woocommerce table.shop_table td del{font-weight:400}.woocommerce table.shop_table tbody:first-child tr:first-child td,.woocommerce table.shop_table tbody:first-child tr:first-child th{border-top:0}.woocommerce table.shop_table tbody th,.woocommerce table.shop_table tfoot td,.woocommerce table.shop_table tfoot th{font-weight:700;border-top:1px solid color-mix(in srgb,currentColor 20%,transparent)}.woocommerce table.my_account_orders{font-size:.85em}.woocommerce table.my_account_orders td,.woocommerce table.my_account_orders th{padding:4px 8px;vertical-align:middle}.woocommerce table.my_account_orders .button{white-space:nowrap}.woocommerce table.woocommerce-MyAccount-downloads td,.woocommerce table.woocommerce-MyAccount-downloads th{vertical-align:top;text-align:center}.woocommerce table.woocommerce-MyAccount-downloads td:first-child,.woocommerce table.woocommerce-MyAccount-downloads th:first-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td:last-child,.woocommerce table.woocommerce-MyAccount-downloads th:last-child{text-align:left}.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before{content:"↓";display:inline-block}.woocommerce td.product-name .wc-item-meta,.woocommerce td.product-name dl.variation{list-style:none outside}.woocommerce td.product-name .wc-item-meta .wc-item-meta-label,.woocommerce td.product-name .wc-item-meta dt,.woocommerce td.product-name dl.variation .wc-item-meta-label,.woocommerce td.product-name dl.variation dt{float:left;clear:both;margin-right:.25em;display:inline-block;list-style:none outside}.woocommerce td.product-name .wc-item-meta dd,.woocommerce td.product-name dl.variation dd{margin:0}.woocommerce td.product-name .wc-item-meta p,.woocommerce td.product-name .wc-item-meta:last-child,.woocommerce td.product-name dl.variation p,.woocommerce td.product-name dl.variation:last-child{margin-bottom:0}.woocommerce td.product-name p.backorder_notification{font-size:.83em}.woocommerce td.product-quantity{min-width:80px}.woocommerce ul.cart_list,.woocommerce ul.product_list_widget{list-style:none outside;padding:0;margin:0}.woocommerce ul.cart_list li,.woocommerce ul.product_list_widget li{padding:4px 0;margin:0;list-style:none}.woocommerce ul.cart_list li::after,.woocommerce ul.cart_list li::before,.woocommerce ul.product_list_widget li::after,.woocommerce ul.product_list_widget li::before{content:" ";display:table}.woocommerce ul.cart_list li::after,.woocommerce ul.product_list_widget li::after{clear:both}.woocommerce ul.cart_list li a,.woocommerce ul.product_list_widget li a{display:block;font-weight:700}.woocommerce ul.cart_list li img,.woocommerce ul.product_list_widget li img{float:right;margin-left:4px;width:32px;height:auto;box-shadow:none}.woocommerce ul.cart_list li dl,.woocommerce ul.product_list_widget li dl{margin:0;padding-left:1em;border-left:2px solid rgba(0,0,0,.1)}.woocommerce ul.cart_list li dl::after,.woocommerce ul.cart_list li dl::before,.woocommerce ul.product_list_widget li dl::after,.woocommerce ul.product_list_widget li dl::before{content:" ";display:table}.woocommerce ul.cart_list li dl::after,.woocommerce ul.product_list_widget li dl::after{clear:both}.woocommerce ul.cart_list li dl dd,.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dd,.woocommerce ul.product_list_widget li dl dt{display:inline-block;float:left;margin-bottom:1em}.woocommerce ul.cart_list li dl dt,.woocommerce ul.product_list_widget li dl dt{font-weight:700;padding:0 0 .25em;margin:0 4px 0 0;clear:left}.woocommerce ul.cart_list li dl dd,.woocommerce ul.product_list_widget li dl dd{padding:0 0 .25em}.woocommerce ul.cart_list li dl dd p:last-child,.woocommerce ul.product_list_widget li dl dd p:last-child{margin-bottom:0}.woocommerce ul.cart_list li .star-rating,.woocommerce ul.product_list_widget li .star-rating{float:none}.woocommerce .widget_shopping_cart .total,.woocommerce.widget_shopping_cart .total{border-top:3px double #e9e6ed;padding:4px 0 0}.woocommerce .widget_shopping_cart .total strong,.woocommerce.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.woocommerce .widget_shopping_cart .cart_list li,.woocommerce.widget_shopping_cart .cart_list li{padding-left:2em;position:relative;padding-top:0}.woocommerce .widget_shopping_cart .cart_list li a.remove,.woocommerce.widget_shopping_cart .cart_list li a.remove{position:absolute;top:0;left:0}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce .widget_shopping_cart .buttons::before,.woocommerce.widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::before{content:" ";display:table}.woocommerce .widget_shopping_cart .buttons::after,.woocommerce.widget_shopping_cart .buttons::after{clear:both}.woocommerce .widget_shopping_cart .buttons a,.woocommerce.widget_shopping_cart .buttons a{margin-right:5px;margin-bottom:5px}.woocommerce form.checkout_coupon,.woocommerce form.login,.woocommerce form.register{border:1px solid var(--wc-separator-color,color-mix(in srgb,currentColor 20%,transparent));padding:20px;margin:2em 0;text-align:left;border-radius:5px}.woocommerce form.checkout_coupon .coupon-error-notice{color:var(--wc-red);display:block;font-size:.75em;margin-top:8px}.woocommerce form.checkout_coupon .input-text.has-error:focus{border-color:var(--wc-red)}.woocommerce ul#shipping_method{list-style:none outside;margin:0;padding:0}.woocommerce ul#shipping_method li{margin:0 0 .5em;line-height:1.5em;list-style:none outside}.woocommerce ul#shipping_method li input{margin:3px .4375em 0 0;vertical-align:top}.woocommerce ul#shipping_method li label{display:inline}.woocommerce ul#shipping_method .amount{font-weight:700}.woocommerce p.woocommerce-shipping-contents{margin:0}.woocommerce .wc_bis_form{margin:2em 0;padding:0}.woocommerce .wc_bis_form.hidden{display:none}.woocommerce .wc_bis_form__form-row{display:flex;flex-wrap:wrap;flex-direction:row;align-items:center;justify-content:flex-start;gap:.7em;margin:.7em 0}.woocommerce .wc_bis_form__input{box-sizing:border-box;width:auto;white-space:nowrap}.woocommerce .wc_bis_form__button{box-sizing:border-box;white-space:nowrap}.woocommerce .wc_bis_form__checkbox{font-size:var(--wp--preset--font-size--small,.7em);display:block}.woocommerce :where(.wc_bis_form__input,.wc_bis_form__button){padding:.9rem 1.1rem;line-height:1}.woocommerce ul.order_details{margin:0 0 3em;list-style:none}.woocommerce ul.order_details::after,.woocommerce ul.order_details::before{content:" ";display:table}.woocommerce ul.order_details::after{clear:both}.woocommerce ul.order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:.715em;line-height:1;border-right:1px dashed #cfc8d8;padding-right:2em;margin-left:0;padding-left:0;list-style-type:none}.woocommerce ul.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5}.woocommerce ul.order_details li:last-of-type{border:none}.woocommerce .wc-bacs-bank-details-account-name{font-weight:700}.woocommerce .woocommerce-customer-details,.woocommerce .woocommerce-order-details,.woocommerce .woocommerce-order-downloads{margin-bottom:2em}.woocommerce .woocommerce-customer-details .order-actions--heading,.woocommerce .woocommerce-order-details .order-actions--heading,.woocommerce .woocommerce-order-downloads .order-actions--heading{vertical-align:middle}.woocommerce .woocommerce-customer-details .order-actions-button,.woocommerce .woocommerce-order-details .order-actions-button,.woocommerce .woocommerce-order-downloads .order-actions-button{margin-right:10px}.woocommerce .woocommerce-customer-details .order-actions-button:last-child,.woocommerce .woocommerce-order-details .order-actions-button:last-child,.woocommerce .woocommerce-order-downloads .order-actions-button:last-child{margin-right:0}.woocommerce .woocommerce-customer-details :last-child,.woocommerce .woocommerce-order-details :last-child,.woocommerce .woocommerce-order-downloads :last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details .additional-fields,.woocommerce .woocommerce-customer-details .addresses{margin-bottom:2em}.woocommerce .woocommerce-customer-details .additional-fields:last-child,.woocommerce .woocommerce-customer-details .addresses:last-child{margin-bottom:0}.woocommerce .addresses .wc-block-components-additional-fields-list{margin:0;padding:0}.woocommerce .addresses .wc-block-components-additional-fields-list dt{margin:0;padding:0;font-style:normal;font-weight:700;display:inline}.woocommerce .addresses .wc-block-components-additional-fields-list dt::after{content:": "}.woocommerce .addresses .wc-block-components-additional-fields-list dt::before{content:"";display:block}.woocommerce .addresses .wc-block-components-additional-fields-list dd{margin:0;padding:0;font-style:normal;display:inline}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list{border:1px solid rgba(0,0,0,.1);padding:0;display:grid;grid-template-columns:1fr max-content}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt{border-bottom:1px solid rgba(0,0,0,.1);font-style:normal;font-weight:700;padding:1rem;box-sizing:border-box;margin:0!important}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt::after{display:none}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt:last-of-type{border-bottom:0}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd{border-bottom:1px solid rgba(0,0,0,.1);padding:1rem;box-sizing:border-box;text-align:right;margin:0!important}.woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd:last-of-type{border-bottom:0}.woocommerce .woocommerce-customer-details .woocommerce-column__title{margin-top:0}.woocommerce .woocommerce-customer-details address{font-style:normal;margin-bottom:0;border:1px solid rgba(0,0,0,.1);border-bottom-width:2px;border-right-width:2px;text-align:left;width:100%;border-radius:5px;padding:6px 12px;box-sizing:border-box}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone{padding-left:1.5em}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email:last-child,.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone:last-child{margin-bottom:0}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e037";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e02d";text-decoration:none;margin-left:-1.5em;line-height:1.75;position:absolute}.woocommerce .woocommerce-widget-layered-nav-list{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item{padding:0 0 1px;list-style:none}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before{content:" ";display:table}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after{clear:both}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span{padding:1px 0}.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red)}.woocommerce .woocommerce-widget-layered-nav-dropdown__submit{margin-top:1em}.woocommerce .widget_layered_nav_filters ul{margin:0;padding:0;border:0;list-style:none outside;overflow:hidden;zoom:1}.woocommerce .widget_layered_nav_filters ul li{float:left;padding:0 1em 1px 1px;list-style:none}.woocommerce .widget_layered_nav_filters ul li a{text-decoration:none}.woocommerce .widget_layered_nav_filters ul li a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red);vertical-align:inherit;margin-right:.5em}.woocommerce .widget_price_filter .price_slider{margin-bottom:1em}.woocommerce .widget_price_filter .price_slider_amount{text-align:right;line-height:2.4;font-size:.8751em}.woocommerce .widget_price_filter .price_slider_amount .button{font-size:1.15em;float:left}.woocommerce .widget_price_filter .ui-slider{position:relative;text-align:left;margin-left:.5em;margin-right:.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:1em;height:1em;background-color:#7f54b3;border-radius:1em;cursor:ew-resize;outline:0;top:-.3em;margin-left:-.5em}.woocommerce .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;border:0;border-radius:1em;background-color:#7f54b3}.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content{border-radius:1em;background-color:#35224c;border:0}.woocommerce .widget_price_filter .ui-slider-horizontal{height:.5em}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:-1px}.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:-1px}.woocommerce .widget_rating_filter ul{margin:0;padding:0;border:0;list-style:none outside}.woocommerce .widget_rating_filter ul li{padding:0 0 1px;list-style:none}.woocommerce .widget_rating_filter ul li::after,.woocommerce .widget_rating_filter ul li::before{content:" ";display:table}.woocommerce .widget_rating_filter ul li::after{clear:both}.woocommerce .widget_rating_filter ul li a{padding:1px 0;text-decoration:none}.woocommerce .widget_rating_filter ul li .star-rating{float:none;display:inline-block}.woocommerce .widget_rating_filter ul li.chosen a::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e013";text-decoration:none;color:var(--wc-red)}.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{float:left;margin-right:1em}.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme{display:inline-block}.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)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button{font-size:100%;margin:0;line-height:1;cursor:pointer;position:relative;text-decoration:none;overflow:visible;padding:.618em 1em;font-weight:700;border-radius:3px;left:auto;color:#515151;background-color:#e9e6ed;border:0;display:inline-block;background-image:none;box-shadow:none;text-shadow:none}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading{opacity:.25;padding-right:2.618em}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.loading::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.loading::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.loading::after{font-family:WooCommerce;content:"\e01c";vertical-align:top;font-weight:400;position:absolute;top:.618em;right:1em;animation:spin 2s linear infinite}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.added::after,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.added::after,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.added::after{font-family:WooCommerce;content:"\e017";margin-left:.53em;vertical-align:bottom}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover{background-color:#dcd7e2;text-decoration:none;background-image:none;color:#515151}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt{background-color:#7f54b3;color:#fff;-webkit-font-smoothing:antialiased}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover{background-color:#7249a4;color:#fff}.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)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover{background-color:#7f54b3;color:#fff}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled],.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled],:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]{color:inherit;cursor:not-allowed;opacity:.5;padding:.618em 1em}.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled]:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled:hover,.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled]:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled:hover,:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled]:hover{color:inherit;background-color:#e9e6ed}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb{font-size:.92em;color:#767676}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a{color:#767676}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price{color:#958e09;font-size:1.25em}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock{color:#958e09}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .out-of-stock{color:var(--wc-red)}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{color:#958e09}.woocommerce:where(body:not(.woocommerce-uses-block-theme)) #reviews #comments ol.commentlist li .meta{color:#767676;font-size:.75em}.woocommerce-no-js form.woocommerce-form-coupon,.woocommerce-no-js form.woocommerce-form-login{display:block!important}.woocommerce-no-js .showcoupon,.woocommerce-no-js .woocommerce-form-coupon-toggle,.woocommerce-no-js .woocommerce-form-login-toggle{display:none!important}.woocommerce-error,.woocommerce-info,.woocommerce-message{padding:1em 2em 1em 3.5em;margin:0 0 2em;position:relative;background-color:#f6f5f8;color:#515151;border-top:3px solid #720eec;list-style:none outside;width:auto;word-wrap:break-word}.woocommerce-error::after,.woocommerce-error::before,.woocommerce-info::after,.woocommerce-info::before,.woocommerce-message::after,.woocommerce-message::before{content:" ";display:table}.woocommerce-error::after,.woocommerce-info::after,.woocommerce-message::after{clear:both}.woocommerce-error::before,.woocommerce-info::before,.woocommerce-message::before{font-family:WooCommerce;content:"\e028";content:"\e028"/"";display:inline-block;position:absolute;top:1em;left:1.5em}.woocommerce-error .button,.woocommerce-info .button,.woocommerce-message .button{float:right}.woocommerce-error li,.woocommerce-info li,.woocommerce-message li{list-style:none outside!important;padding-left:0!important;margin-left:0!important}.rtl.woocommerce .price_label,.rtl.woocommerce .price_label span{direction:ltr;unicode-bidi:embed}.woocommerce-message{border-top-color:#8fae1b}.woocommerce-message::before{content:"\e015";color:#8fae1b}.woocommerce-info{border-top-color:#1e85be}.woocommerce-info::before{color:#1e85be}.woocommerce-error{border-top-color:#b81c23}.woocommerce-error::before{content:"\e016";color:#b81c23}.woocommerce-account .woocommerce::after,.woocommerce-account .woocommerce::before{content:" ";display:table}.woocommerce-account .woocommerce::after{clear:both}.woocommerce-account .addresses .title::after,.woocommerce-account .addresses .title::before{content:" ";display:table}.woocommerce-account .addresses .title::after{clear:both}.woocommerce-account .addresses .title h3{float:left}.woocommerce-account .addresses .title .edit{float:right}.woocommerce-account ol.commentlist.notes li.note p.meta{font-weight:700;margin-bottom:0}.woocommerce-account ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}.woocommerce-account ul.digital-downloads{margin-left:0;padding-left:0}.woocommerce-account ul.digital-downloads li{list-style:none;margin-left:0;padding-left:0}.woocommerce-account ul.digital-downloads li::before{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-right:.618em;content:"\e00a";text-decoration:none}.woocommerce-account ul.digital-downloads li .count{float:right}#add_payment_method table.cart .product-thumbnail,.woocommerce-cart table.cart .product-thumbnail,.woocommerce-checkout table.cart .product-thumbnail{min-width:32px}#add_payment_method table.cart img,.woocommerce-cart table.cart img,.woocommerce-checkout table.cart img{width:32px;box-shadow:none}#add_payment_method table.cart td,#add_payment_method table.cart th,.woocommerce-cart table.cart td,.woocommerce-cart table.cart th,.woocommerce-checkout table.cart td,.woocommerce-checkout table.cart th{vertical-align:middle}#add_payment_method table.cart td.actions .coupon .input-text,.woocommerce-cart table.cart td.actions .coupon .input-text,.woocommerce-checkout table.cart td.actions .coupon .input-text{float:left;box-sizing:border-box;border:1px solid #cfc8d8;padding:6px 6px 5px;margin:0 4px 0 0;outline:0}#add_payment_method table.cart td.actions .coupon .input-text.has-error:focus,.woocommerce-cart table.cart td.actions .coupon .input-text.has-error:focus,.woocommerce-checkout table.cart td.actions .coupon .input-text.has-error:focus{border-color:var(--wc-red)}#add_payment_method table.cart td.actions .coupon .coupon-error-notice,.woocommerce-cart table.cart td.actions .coupon .coupon-error-notice,.woocommerce-checkout table.cart td.actions .coupon .coupon-error-notice{clear:left;color:var(--wc-red);flex-basis:100%;float:none;font-size:.75em;margin-bottom:0;margin-top:8px;text-align:left;width:auto}#add_payment_method table.cart input,.woocommerce-cart table.cart input,.woocommerce-checkout table.cart input{margin:0;vertical-align:middle}#add_payment_method .wc-proceed-to-checkout,.woocommerce-cart .wc-proceed-to-checkout,.woocommerce-checkout .wc-proceed-to-checkout{padding:1em 0}#add_payment_method .wc-proceed-to-checkout::after,#add_payment_method .wc-proceed-to-checkout::before,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::before,.woocommerce-checkout .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::before{content:" ";display:table}#add_payment_method .wc-proceed-to-checkout::after,.woocommerce-cart .wc-proceed-to-checkout::after,.woocommerce-checkout .wc-proceed-to-checkout::after{clear:both}#add_payment_method .wc-proceed-to-checkout a.checkout-button,.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button{display:block;text-align:center;margin-bottom:1em;font-size:1.25em;padding:1em}#add_payment_method .cart-collaterals .shipping-calculator-button,.woocommerce-cart .cart-collaterals .shipping-calculator-button,.woocommerce-checkout .cart-collaterals .shipping-calculator-button{float:none;margin-top:.5em;display:inline-block}#add_payment_method .cart-collaterals .shipping-calculator-button::after,.woocommerce-cart .cart-collaterals .shipping-calculator-button::after,.woocommerce-checkout .cart-collaterals .shipping-calculator-button::after{font-family:WooCommerce;speak:never;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;margin-left:.618em;content:"\e019";text-decoration:none;content:"\e019"/""}#add_payment_method .cart-collaterals .shipping-calculator-form,.woocommerce-cart .cart-collaterals .shipping-calculator-form,.woocommerce-checkout .cart-collaterals .shipping-calculator-form{margin:1em 0 0}#add_payment_method .cart-collaterals .cart_totals p small,.woocommerce-cart .cart-collaterals .cart_totals p small,.woocommerce-checkout .cart-collaterals .cart_totals p small{color:#767676;font-size:.83em}#add_payment_method .cart-collaterals .cart_totals table,.woocommerce-cart .cart-collaterals .cart_totals table,.woocommerce-checkout .cart-collaterals .cart_totals table{border-collapse:separate;margin:0 0 6px;padding:0}#add_payment_method .cart-collaterals .cart_totals table tr:first-child td,#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th{border-top:0}#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table th{width:35%}#add_payment_method .cart-collaterals .cart_totals table td,#add_payment_method .cart-collaterals .cart_totals table th,.woocommerce-cart .cart-collaterals .cart_totals table td,.woocommerce-cart .cart-collaterals .cart_totals table th,.woocommerce-checkout .cart-collaterals .cart_totals table td,.woocommerce-checkout .cart-collaterals .cart_totals table th{vertical-align:top;border-left:0;border-right:0;line-height:1.5em}#add_payment_method .cart-collaterals .cart_totals table small,.woocommerce-cart .cart-collaterals .cart_totals table small,.woocommerce-checkout .cart-collaterals .cart_totals table small{color:#767676}#add_payment_method .cart-collaterals .cart_totals table select,.woocommerce-cart .cart-collaterals .cart_totals table select,.woocommerce-checkout .cart-collaterals .cart_totals table select{width:100%}#add_payment_method .cart-collaterals .cart_totals .discount td,.woocommerce-cart .cart-collaterals .cart_totals .discount td,.woocommerce-checkout .cart-collaterals .cart_totals .discount td{color:#958e09}#add_payment_method .cart-collaterals .cart_totals tr td,#add_payment_method .cart-collaterals .cart_totals tr th,.woocommerce-cart .cart-collaterals .cart_totals tr td,.woocommerce-cart .cart-collaterals .cart_totals tr th,.woocommerce-checkout .cart-collaterals .cart_totals tr td,.woocommerce-checkout .cart-collaterals .cart_totals tr th{border-top:1px solid #e9e6ed}#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination,.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination,.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination{margin-bottom:0}#add_payment_method .cart-collaterals .cross-sells ul.products li.product,.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product{margin-top:0}#add_payment_method .checkout .col-2 h3#ship-to-different-address,.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address{float:left;clear:none}#add_payment_method .checkout .col-2 .notes,.woocommerce-cart .checkout .col-2 .notes,.woocommerce-checkout .checkout .col-2 .notes{clear:left}#add_payment_method .checkout .col-2 .form-row-first,.woocommerce-cart .checkout .col-2 .form-row-first,.woocommerce-checkout .checkout .col-2 .form-row-first{clear:left}#add_payment_method .checkout .create-account small,.woocommerce-cart .checkout .create-account small,.woocommerce-checkout .checkout .create-account small{font-size:11px;color:#767676;font-weight:400}#add_payment_method .checkout div.shipping-address,.woocommerce-cart .checkout div.shipping-address,.woocommerce-checkout .checkout div.shipping-address{padding:0;clear:left;width:100%}#add_payment_method .checkout .shipping_address,.woocommerce-cart .checkout .shipping_address,.woocommerce-checkout .checkout .shipping_address{clear:both}#add_payment_method .checkout .checkout-inline-error-message,.woocommerce-cart .checkout .checkout-inline-error-message,.woocommerce-checkout .checkout .checkout-inline-error-message{color:var(--wc-red);font-size:.75em;margin-bottom:0}#add_payment_method #payment,.woocommerce-cart #payment,.woocommerce-checkout #payment{background:rgba(129,110,153,.14);border-radius:5px}#add_payment_method #payment ul.payment_methods,.woocommerce-cart #payment ul.payment_methods,.woocommerce-checkout #payment ul.payment_methods{text-align:left;padding:1em;border-bottom:1px solid rgba(104,87,125,.14);margin:0;list-style:none outside}#add_payment_method #payment ul.payment_methods::after,#add_payment_method #payment ul.payment_methods::before,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::before,.woocommerce-checkout #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::before{content:" ";display:table}#add_payment_method #payment ul.payment_methods::after,.woocommerce-cart #payment ul.payment_methods::after,.woocommerce-checkout #payment ul.payment_methods::after{clear:both}#add_payment_method #payment ul.payment_methods li,.woocommerce-cart #payment ul.payment_methods li,.woocommerce-checkout #payment ul.payment_methods li{line-height:2;text-align:left;margin:0;font-weight:400}#add_payment_method #payment ul.payment_methods li input,.woocommerce-cart #payment ul.payment_methods li input,.woocommerce-checkout #payment ul.payment_methods li input{margin:0 1em 0 0}#add_payment_method #payment ul.payment_methods li img,.woocommerce-cart #payment ul.payment_methods li img,.woocommerce-checkout #payment ul.payment_methods li img{vertical-align:middle;margin:-2px 0 0 .5em;padding:0;position:relative;box-shadow:none}#add_payment_method #payment ul.payment_methods li img+img,.woocommerce-cart #payment ul.payment_methods li img+img,.woocommerce-checkout #payment ul.payment_methods li img+img{margin-left:2px}#add_payment_method #payment ul.payment_methods li.payment_method_paypal img,.woocommerce-cart #payment ul.payment_methods li.payment_method_paypal img,.woocommerce-checkout #payment ul.payment_methods li.payment_method_paypal img{max-height:24px;vertical-align:middle;float:right;margin:0}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before{content:" ";display:table}#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after{clear:both}#add_payment_method #payment div.form-row,.woocommerce-cart #payment div.form-row,.woocommerce-checkout #payment div.form-row{padding:1em}#add_payment_method #payment div.payment_box,.woocommerce-cart #payment div.payment_box,.woocommerce-checkout #payment div.payment_box{position:relative;box-sizing:border-box;width:100%;padding:1em;margin:1em 0;font-size:.92em;border-radius:2px;line-height:1.5;background-color:#dcd7e2;color:#515151}#add_payment_method #payment div.payment_box input.input-text,#add_payment_method #payment div.payment_box textarea,.woocommerce-cart #payment div.payment_box input.input-text,.woocommerce-cart #payment div.payment_box textarea,.woocommerce-checkout #payment div.payment_box input.input-text,.woocommerce-checkout #payment div.payment_box textarea{border-color:#c2bacd;border-top-color:#b5abc2}#add_payment_method #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box :-moz-placeholder,.woocommerce-cart #payment div.payment_box :-moz-placeholder,.woocommerce-checkout #payment div.payment_box :-moz-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box :-ms-input-placeholder,.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder{color:#b5abc2}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods{list-style:none outside;margin:0}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token{margin:0 0 .5em}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label{cursor:pointer}#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput{vertical-align:middle;margin:-3px 1em 0 0;position:relative}#add_payment_method #payment div.payment_box .wc-credit-card-form,.woocommerce-cart #payment div.payment_box .wc-credit-card-form,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form{border:0;padding:0;margin:1em 0 0}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number{font-size:1.5em;padding:8px;background-repeat:no-repeat;background-position:right .618em center;background-size:32px 20px}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/visa.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/mastercard.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/laser.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/diners.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/maestro.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/jcb.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/amex.svg)}#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover{background-image:url(https://youngtimeritalia.it/wp-content/plugins/woocommerce/assets/css/../images/icons/credit-cards/discover.svg)}#add_payment_method #payment div.payment_box span.help,.woocommerce-cart #payment div.payment_box span.help,.woocommerce-checkout #payment div.payment_box span.help{font-size:.857em;color:#767676;font-weight:400}#add_payment_method #payment div.payment_box .form-row,.woocommerce-cart #payment div.payment_box .form-row,.woocommerce-checkout #payment div.payment_box .form-row{margin:0 0 1em}#add_payment_method #payment div.payment_box p:last-child,.woocommerce-cart #payment div.payment_box p:last-child,.woocommerce-checkout #payment div.payment_box p:last-child{margin-bottom:0}#add_payment_method #payment div.payment_box::before,.woocommerce-cart #payment div.payment_box::before,.woocommerce-checkout #payment div.payment_box::before{content:"";display:block;border:1em solid #dcd7e2;border-right-color:transparent;border-left-color:transparent;border-top-color:transparent;position:absolute;top:-.75em;left:0;margin:-1em 0 0 2em}#add_payment_method #payment .payment_method_paypal .about_paypal,.woocommerce-cart #payment .payment_method_paypal .about_paypal,.woocommerce-checkout #payment .payment_method_paypal .about_paypal{float:right;line-height:52px;font-size:.83em}#add_payment_method #payment .payment_method_paypal img,.woocommerce-cart #payment .payment_method_paypal img,.woocommerce-checkout #payment .payment_method_paypal img{max-height:24px;vertical-align:middle;float:right}.woocommerce-terms-and-conditions{border:1px solid rgba(0,0,0,.2);box-shadow:inset 0 1px 2px rgba(0,0,0,.1);background:rgba(0,0,0,5%)}.woocommerce-invalid #terms{outline:2px solid var(--wc-red);outline-offset:2px}.woocommerce-order-withdrawal-content{max-width:680px}.woocommerce-order-withdrawal-content__intro{margin-bottom:.5em}.woocommerce-order-withdrawal-content .description,.woocommerce-order-withdrawal-content__field-description,.woocommerce-order-withdrawal-content__note{color:#767676;font-size:.875em;line-height:1.4}.woocommerce-order-withdrawal-content .description,.woocommerce-order-withdrawal-content__field-description{display:block;margin-top:.25em}.woocommerce-order-withdrawal-content__field-error{color:var(--wc-red);display:block;font-size:.875em;margin:-.25em 0 .75em}.woocommerce-order-withdrawal-content__steps{display:flex;gap:1em;list-style:none;margin:2em 0;padding:0;color:#767676;font-size:.875em}.woocommerce-order-withdrawal-content__step:not(:last-child)::after{content:"";display:inline-block;width:.25em;height:.25em;margin-left:1em;border-radius:50%;background:currentColor;vertical-align:middle}.woocommerce-order-withdrawal-content__step--current{color:inherit;font-weight:700}.woocommerce-order-withdrawal-content__radio-field{clear:both;border:0;margin:0 0 6px;padding:3px}.woocommerce-order-withdrawal-content__radio-field legend{line-height:2;padding:0}.woocommerce-order-withdrawal-content__radio-field.woocommerce-invalid legend{color:var(--wc-red)}.woocommerce-order-withdrawal-content__radio-label{display:block;line-height:1.7;margin:0}.woocommerce-order-withdrawal-content__review{margin:2em 0}.woocommerce-order-withdrawal-content__review-row{padding:.75em 0 .8em}.woocommerce-order-withdrawal-content__review-row:not(:last-child){border-bottom:1px solid #e9e6ed}.woocommerce-order-withdrawal-content__review-row dd,.woocommerce-order-withdrawal-content__review-row dt{margin:0;line-height:1.4}.woocommerce-order-withdrawal-content__review-row dt{color:#767676;font-size:.875em;margin-bottom:.25em}.woocommerce-order-withdrawal-content__review-row dd{font-size:1em}.woocommerce-order-withdrawal-content__actions{display:flex;gap:1em;align-items:center;flex-wrap:wrap;margin-top:2em}.woocommerce-order-withdrawal-content__button--secondary.button{background:0 0;border:1px solid;color:inherit}.woocommerce-order-withdrawal-content__button--secondary.button:focus,.woocommerce-order-withdrawal-content__button--secondary.button:hover{background:0 0;color:inherit}.woocommerce-order-withdrawal-content .required{visibility:visible}.woocommerce-password-strength{text-align:center;font-weight:600;padding:3px .5em;font-size:1em}.woocommerce-password-strength.strong{background-color:#c1e1b9;border-color:#83c373}.woocommerce-password-strength.short{background-color:#f1adad;border-color:#e35b5b}.woocommerce-password-strength.bad{background-color:#fbc5a9;border-color:#f78b53}.woocommerce-password-strength.good{background-color:#ffe399;border-color:#ffc733}.woocommerce-password-hint{margin:.5em 0 0;display:block}#content.twentyeleven .woocommerce-pagination a{font-size:1em;line-height:1}.single-product .twentythirteen #reply-title,.single-product .twentythirteen #respond #commentform,.single-product .twentythirteen .entry-summary{padding:0}.single-product .twentythirteen p.stars{clear:both}.twentythirteen .woocommerce-breadcrumb{padding-top:40px}.twentyfourteen ul.products li.product{margin-top:0!important}body:not(.search-results) .twentysixteen .entry-summary{color:inherit;font-size:inherit;line-height:inherit}.twentysixteen .price ins{background:inherit;color:inherit}form.has-custom-place-order-button #place_order{display:none!important}
@font-face{font-family:lg;src:url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.woff2?io9a6k) format("woff2"),url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.ttf?io9a6k) format("truetype"),url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.woff?io9a6k) format("woff"),url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.svg?io9a6k#lg) format("svg");font-weight:400;font-style:normal;font-display:block}.lg-icon{font-family:lg!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-container{font-family:system-ui,-apple-system,'Segoe UI',Roboto,'Helvetica Neue',Arial,'Noto Sans','Liberation Sans',sans-serif,'Apple Color Emoji','Segoe UI Emoji','Segoe UI Symbol','Noto Color Emoji'}.lg-next,.lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1084;outline:0;border:none}.lg-next.disabled,.lg-prev.disabled{opacity:0!important;cursor:default}.lg-next:hover:not(.disabled),.lg-prev:hover:not(.disabled){color:#fff}.lg-single-item .lg-next,.lg-single-item .lg-prev{display:none}.lg-next{right:20px}.lg-next:before{content:'\e095'}.lg-prev{left:20px}.lg-prev:after{content:'\e094'}@-webkit-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-moz-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-ms-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-webkit-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-moz-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@-ms-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;-o-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;-o-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-media-overlap .lg-toolbar{background-image:linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:medium none;will-change:color;-webkit-transition:color .2s linear;-o-transition:color .2s linear;transition:color .2s linear;background:0 0;border:none;box-shadow:none}.lg-toolbar .lg-icon.lg-icon-18{font-size:18px}.lg-toolbar .lg-icon:hover{color:#fff}.lg-toolbar .lg-close:after{content:'\e070'}.lg-toolbar .lg-maximize{font-size:22px}.lg-toolbar .lg-maximize:after{content:'\e90a'}.lg-toolbar .lg-download:after{content:'\e0f2'}.lg-sub-html{color:#eee;font-size:16px;padding:10px 40px;text-align:center;z-index:1080;opacity:0;-webkit-transition:opacity .2s ease-out 0s;-o-transition:opacity .2s ease-out 0s;transition:opacity .2s ease-out 0s}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}.lg-sub-html a{color:inherit}.lg-sub-html a:hover{text-decoration:underline}.lg-media-overlap .lg-sub-html{background-image:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.6))}.lg-item .lg-sub-html{position:absolute;bottom:0;right:0;left:0}.lg-error-msg{font-size:14px;color:#999}.lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;height:47px;vertical-align:middle}.lg-closing .lg-next,.lg-closing .lg-prev,.lg-closing .lg-sub-html,.lg-closing .lg-toolbar{opacity:0;-webkit-transition:-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-moz-transition:-moz-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-o-transition:-o-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;transition:transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont{opacity:0;-moz-transform:scale3d(.5,.5,.5);-o-transform:scale3d(.5,.5,.5);-ms-transform:scale3d(.5,.5,.5);-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);will-change:transform,opacity;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-moz-transition:-moz-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-o-transition:-o-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont{opacity:1;-moz-transform:scale3d(1,1,1);-o-transform:scale3d(1,1,1);-ms-transform:scale3d(1,1,1);-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.lg-icon:focus-visible{color:#fff;border-radius:3px;outline:1px dashed rgba(255,255,255,.6)}.lg-toolbar .lg-icon:focus-visible{border-radius:8px;outline-offset:-5px}.lg-group:after{content:'';display:table;clear:both}.lg-container{display:none;outline:0}.lg-container.lg-show{display:block}.lg-on{scroll-behavior:unset}.lg-overlay-open{overflow:hidden}.lg-hide-sub-html .lg-sub-html,.lg-next,.lg-pager-outer,.lg-prev,.lg-toolbar{opacity:0;will-change:transform,opacity;-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s}.lg-show-in .lg-next,.lg-show-in .lg-pager-outer,.lg-show-in .lg-prev,.lg-show-in .lg-toolbar{opacity:1}.lg-show-in.lg-hide-sub-html .lg-sub-html{opacity:1}.lg-show-in .lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-show-in .lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-show-in .lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}.lg-outer{width:100%;height:100%;position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:.001;outline:0;will-change:auto;overflow:hidden;-webkit-transition:opacity .15s ease 0s;-o-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-zoom-from-image{opacity:1}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-content{position:absolute;top:0;left:0;right:0;bottom:0}.lg-outer .lg-inner{width:100%;position:absolute;left:0;top:0;bottom:0;-webkit-transition:opacity 0s;-o-transition:opacity 0s;transition:opacity 0s;white-space:nowrap}.lg-outer .lg-item{display:none!important}.lg-outer .lg-item:not(.lg-start-end-progress){background:url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../images/loading.gif) no-repeat scroll center center transparent}.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer.lg-css .lg-current{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:'';display:inline-block;height:100%;vertical-align:middle}.lg-outer .lg-img-wrap{position:absolute;left:0;right:0;top:0;bottom:0;white-space:nowrap;font-size:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-object{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto;height:auto;position:relative}.lg-outer .lg-empty-html .lg-sub-html,.lg-outer .lg-empty-html.lg-sub-html{display:none}.lg-outer.lg-hide-download .lg-download{opacity:.75;pointer-events:none}.lg-outer .lg-first-slide .lg-dummy-img{position:absolute;top:50%;left:50%}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html{opacity:1;transition:opacity .2s ease-out .15s}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#000;opacity:0;will-change:auto;-webkit-transition:opacity 333ms ease-in 0s;-o-transition:opacity 333ms ease-in 0s;transition:opacity 333ms ease-in 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;-moz-transition:none 0s ease 0s!important;-o-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;-moz-transition:opacity .1s ease 0s;-o-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-moz-transition:-moz-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;-o-transition:-o-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;transition:transform 1s cubic-bezier(.175,.885,.32,1.275) 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-moz-transition:-moz-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-o-transition:-o-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s}.lg-container{display:none}.lg-container.lg-show{display:block}.lg-container.lg-dragging-vertical .lg-backdrop{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-inline .lg-backdrop,.lg-inline .lg-outer{position:absolute}.lg-inline .lg-backdrop{z-index:1}.lg-inline .lg-outer{z-index:2}.lg-inline .lg-maximize:after{content:'\e909'}.lg-components{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);will-change:transform;-webkit-transition:-webkit-transform .35s ease-out 0s;-moz-transition:-moz-transform .35s ease-out 0s;-o-transition:-o-transform .35s ease-out 0s;transition:transform .35s ease-out 0s;z-index:1080;position:absolute;bottom:0;right:0;left:0}
@font-face{font-family:lg;src:url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.woff2)format('woff2'),url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.woff)format('woff'),url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.ttf)format('truetype'),url(https://youngtimeritalia.it/wp-content/plugins/ml-slider-lightbox/assets/css/../fonts/lg.svg#lg)format('svg');font-weight:400;font-style:normal;font-display:swap}.lg-actions .lg-prev{left:20px}.lg-actions .lg-next{right:20px}.flex-control-nav .ml-lightbox-button,.flex-control-thumbs .ml-lightbox-button{display:none!important}.lg-thumb .ml-lightbox-button,.lg-thumb-item .ml-lightbox-button{display:none!important}.lg-outer .lg-close:focus,.lg-outer .lg-prev:focus,.lg-outer .lg-next:focus{outline:2px solid #fff;outline-offset:2px}@media(prefers-contrast:high){.lg-outer .lg-close,.lg-outer .lg-prev,.lg-outer .lg-next{background:rgba(0,0,0,.9);border:2px solid #fff}}@media(prefers-reduced-motion:reduce){.lg-outer .lg-close,.lg-outer .lg-prev,.lg-outer .lg-next{transition:none}.lg-outer .lg-close:hover,.lg-outer .lg-prev:hover,.lg-outer .lg-next:hover{transform:none}}@media(max-width:768px){.lg-close:after,.lg-prev:after,.lg-next:after{background-size:18px 18px;width:36px;height:36px}.lg-close,.lg-prev,.lg-next{width:36px;height:36px}}.lg-outer .lg-thumb-item{opacity:.5;transition:border-color .25s ease;border-color:var(--ml-lightbox-thumbnail-border-color,#ffffff)!important;background-color:transparent!important}.lg-outer .lg-thumb-item:hover{opacity:.8;border-color:var(--ml-lightbox-thumbnail-border-hover-color,#dd6923)!important}.lg-outer .lg-thumb-item.active{opacity:1;border-color:var(--ml-lightbox-thumbnail-border-hover-color,#dd6923)!important}.lg-outer .lg-thumb-item img{transition:transform .25s ease}.ml-showcase-thumb{background-color:var(--ml-lightbox-thumbnail-border-color)!important}.lg-outer .lg-thumb-item.active img{transform:scale(1.12)}.lg-thumb-item img{width:100%;height:100%;object-fit:cover;border-radius:2px}.lg-thumb-item[data-video]{background:#000}.lg-thumb-item[data-video]:hover::after{background:#fff}.lg-thumb-item[data-video][data-poster] img{opacity:.8}.lg-thumb-item[data-video][data-poster]:hover img{opacity:1}.ml-lightbox-button,.widget .ml-lightbox-enabled a.ml-lightbox-button{position:absolute;top:10px;right:10px;z-index:10;padding:8px 12px;border-radius:4px;font-size:14px;text-decoration:none!important;line-height:16px;max-width:150px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;cursor:pointer;transition:background .3s ease;font-family:inherit;border:none;outline:none;text-align:center;height:auto!important}.ml-lightbox-button:hover{text-decoration:none}.ml-lightbox-button:focus{text-decoration:none;outline:2px solid #fff;outline-offset:2px;box-shadow:0 0 0 4px rgba(255,255,255,.3)}.ml-lightbox-button:focus-visible{outline:3px solid #fff;outline-offset:2px;box-shadow:0 0 0 6px rgba(255,255,255,.4),0 0 8px rgba(0,0,0,.5)}.ml-lightbox-slide{position:relative}@media(prefers-contrast:high){.ml-lightbox-button{background:rgba(0,0,0,.95);border:2px solid #fff;font-weight:700}.ml-lightbox-button:focus,.ml-lightbox-button:focus-visible{outline:4px solid #fff;outline-offset:2px;box-shadow:0 0 0 8px rgba(255,255,255,.8)}}.ml-lightbox-button .ml-lightbox-icon{display:block;width:20px;height:20px}.ml-lightbox-button:has(.ml-lightbox-icon){width:40px!important;height:40px!important;padding:10px!important;border-radius:50%!important;display:flex!important;align-items:center!important;justify-content:center!important;max-width:40px!important;min-width:40px!important;flex:none!important;object-fit:initial!important}.ml-lightbox-button .ml-lightbox-icon{color:inherit}.ml-lightbox-button:hover .ml-lightbox-icon{transform:scale(1.1);transition:transform .2s ease}.wp-block-gallery .ml-lightbox-button:has(.ml-lightbox-icon),.wp-block-gallery figure .ml-lightbox-button:has(.ml-lightbox-icon),.gallery .ml-lightbox-button:has(.ml-lightbox-icon){width:40px!important;height:40px!important;max-width:40px!important;min-width:40px!important;flex:none!important}.wp-block-gallery .ml-lightbox-button .ml-lightbox-icon,.gallery .ml-lightbox-button .ml-lightbox-icon{width:20px!important;height:20px!important;object-fit:initial!important}@media(prefers-reduced-motion:reduce){.ml-lightbox-button{transition:none}.ml-lightbox-button:focus,.ml-lightbox-button:focus-visible{box-shadow:none;outline:3px solid #fff}}.lg-container .lg-counter{padding:10px!important;border-radius:0!important}.lg-toolbar{z-index:1083!important}@supports not selector(:has(*)){.lg-toolbar.lg-group{display:flex!important;align-items:center!important}.lg-toolbar.lg-group .lg-counter{margin-left:10px!important}}.ml-lightgallery-active{position:relative}.ml-lightgallery-active a[data-src]{cursor:pointer}.ml-lightgallery-active a[data-src]:hover{opacity:.8;transition:opacity .3s ease}.ml-lightgallery-active .lg-loading{background:rgba(0,0,0,.7);color:#fff;padding:10px;border-radius:4px;font-size:14px}.lg-sub-html{background:linear-gradient(to top,rgba(0,0,0,.7) 0%,rgba(0,0,0,.3) 50%,transparent 100%);color:#fff;padding:20px;font-size:14px;line-height:1.4}.lg-sub-html p{margin:0}.lg-container[class*=ml-cap-] .lg-sub-html .ml-caption-text{display:inline-block;opacity:0;transition:transform .4s ease,opacity .4s ease}.lg-container.ml-cap-slide-up .lg-sub-html .ml-caption-text{transform:translate3d(0,20px,0)}.lg-container.ml-cap-slide-down .lg-sub-html .ml-caption-text{transform:translate3d(0,-20px,0)}.lg-container[class*=ml-cap-] .lg-current .lg-sub-html .ml-caption-text{opacity:1;transform:translate3d(0,0,0);transition-delay:.4s}.lg-container .lg-item>.lg-sub-html:not(:empty){display:block}.lg-container .lg-item>.lg-sub-html:empty{display:none}.lg-container .lg-item>.lg-sub-html{white-space:normal}.lightbox-layer-wrapper{margin-top:15px;border-top:1px solid rgba(255,255,255,.2);padding-top:15px}.lightbox-layer-content{background:rgba(0,0,0,.6);padding:10px 15px;margin:5px 0;border-radius:4px;border-left:3px solid rgba(255,255,255,.5)}.lightbox-layer-content p{margin:5px 0;font-size:14px;line-height:1.5}.lightbox-layer-content h1,.lightbox-layer-content h2,.lightbox-layer-content h3,.lightbox-layer-content h4,.lightbox-layer-content h5,.lightbox-layer-content h6{margin:8px 0 5px;color:#fff;font-weight:700}.lightbox-layer-content strong{color:#fff;font-weight:700}.lightbox-layer-content em{color:#ccc;font-style:italic}.lightbox-layer-content a{color:#66b3ff;text-decoration:underline}.lightbox-layer-content a:hover{color:#9cf}.metaslider.ms-theme-bitono .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-draxler .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-revelio .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-databold .flexslider .slides>li>a.ml-lightbox-button{position:absolute;z-index:9999}.metaslider.ms-theme-cubic .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-blend .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-precognition .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-highway .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-hero .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-revelio .flexslider .slides>li>a.ml-lightbox-button{bottom:auto;top:10px;z-index:9999}.metaslider.ms-theme-jenga .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-radix .flexslider .slides>li>a.ml-lightbox-button{right:auto;left:15px;z-index:9999}.metaslider.ms-theme-radix .flex-pauseplay+* .ml-lightbox-button,.metaslider.ms-theme-radix:has(.flex-pauseplay) .ml-lightbox-button{left:90px!important;bottom:5px}.metaslider.ms-theme-radix.ml-radix-icon-only .ml-lightbox-button{left:60px!important;bottom:5px}.metaslider.ms-theme-radix.ml-radix-with-text .ml-lightbox-button{left:100px!important;bottom:5px}.metaslider.ms-theme-disjoint .flexslider .slides>li>a.ml-lightbox-button{bottom:auto;right:auto;left:15px;top:10px;z-index:9999}.filmstrip .ms-thumb .ml-lightbox-button{display:none}@media(max-width:768px){.metaslider.ms-theme-bitono .flexslider .slides>li>a.ml-lightbox-button,.metaslider.ms-theme-bubble .flexslider .slides>li>a.ml-lightbox-button{bottom:auto;top:10px}.metaslider.ms-theme-highway .flexslider .slides>li>a.ml-lightbox-button{bottom:10px;top:auto}.ms-is-small.metaslider.ms-theme-highway .flexslider ol.flex-control-nav:not(.flex-control-thumbs){width:60%}.ms-is-small.metaslider.ms-theme-highway .flexslider:not(.filmstrip) ul.flex-direction-nav{top:20%}.metaslider.ms-theme-highway .flexslider:not(.filmstrip) ul.flex-direction-nav{height:30%}.metaslider.ms-theme-radix .flex-pauseplay+* .ml-lightbox-button,.metaslider.ms-theme-radix:has(.flex-pauseplay) .ml-lightbox-button{left:80px!important;font-size:11px}.lightbox-layer-content span{font-size:21px!important}}:root{--ml-lightbox-bg-color:rgba(0, 0, 0, 0.5);--ml-lightbox-bg-hover-color:rgba(0, 0, 0, 0.8);--ml-lightbox-border-radius:6px;--ml-lightbox-transition:all 0.2s ease}.ml-custom-html-wrapper{display:flex;align-items:center;justify-content:center;min-height:100vh;padding:40px 20px;box-sizing:border-box}.ml-custom-html-content{background:#fff;border-radius:8px;padding:40px;box-shadow:0 4px 20px rgba(0,0,0,.1);text-align:center;max-width:90vw;max-height:80vh;overflow:auto;word-wrap:break-word;box-sizing:border-box}.ml-custom-html-content h1,.ml-custom-html-content h2,.ml-custom-html-content h3{margin-top:0;margin-bottom:1em;line-height:1.2}.ml-custom-html-content p{margin-bottom:1em;line-height:1.6}.ml-custom-html-content img{max-width:100%;height:auto;display:block;margin:0 auto}.ml-custom-html-content video{max-width:100%;height:auto}@media(max-width:768px){.ml-custom-html-wrapper{padding:20px 10px}.ml-custom-html-content{padding:20px;max-width:95vw;max-height:85vh;font-size:14px}.ml-custom-html-content h1{font-size:1.5em}.ml-custom-html-content h2{font-size:1.3em}.ml-custom-html-content h3{font-size:1.1em}}@media(max-width:480px){.ml-custom-html-wrapper{padding:15px 5px}.ml-custom-html-content{padding:15px;max-width:98vw;max-height:90vh;font-size:13px}}.ml-video-overlay,.ml-image-overlay{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,5%);z-index:2;cursor:pointer;display:block;text-decoration:none;transition:background .2s ease}.ml-video-overlay:hover,.ml-image-overlay:hover{background:rgba(0,0,0,.1);text-decoration:none}.metaslider .slides>li>.ml-video-overlay,.metaslider .slides>li>.ml-image-overlay{position:absolute!important;z-index:1!important}.ml-lightbox-enabled{cursor:pointer}img.ml-lightbox-enabled{cursor:default}.ml-lightbox-enabled:has(.ml-lightbox-button){cursor:default!important}.ml-lightbox-container-disabled{cursor:default!important;text-decoration:none!important;color:inherit!important}.ml-lightbox-container-disabled:hover{text-decoration:none!important;color:inherit!important}.ml-has-lightbox-button{position:relative}.ml-video-overlay:focus,.ml-image-overlay:focus{outline:2px solid #0073aa;outline-offset:2px}@media(prefers-contrast:high){.ml-video-overlay,.ml-image-overlay{background:rgba(0,0,0,.2);border:1px solid rgba(255,255,255,.5)}.ml-video-overlay:hover,.ml-image-overlay:hover{background:rgba(0,0,0,.3)}}@media(prefers-reduced-motion:reduce){.ml-video-overlay,.ml-image-overlay{transition:none}}.wp-block-embed .wp-block-embed__wrapper{position:relative!important;overflow:visible!important}.wp-block-embed .wp-block-embed__wrapper.ml-lightbox-enabled{position:relative!important}.wp-block-embed iframe[style*="max-height: 0"],.wp-block-embed iframe[style*="max-height:0"],.wp-block-embed iframe[style*="max-height: 0px"],.wp-block-embed iframe[style*="max-height:0px"]{max-height:none!important;height:auto!important}.wp-block-video{position:relative}.wp-block-video video{position:relative;z-index:1}.lg-initialized.wp-lightbox-container{display:inline-block}.lg-initialized.wp-lightbox-container img{cursor:default}.lg-outer .lg-item{display:flex;align-items:center;justify-content:center}.lg-outer .lg-item img{max-width:100%;max-height:calc(100vh - 120px);width:auto;height:auto;object-fit:contain;object-position:center}.lg-outer.lg-thumbnail .lg-item img{max-height:calc(100vh - 160px)}.lg-outer .lg-item{transition:opacity .3s ease-in-out}.lg-outer .lg-item .ms-layer .msDefaultImage{width:1400px!important;height:600px!important;max-width:80%!important;margin:0 auto!important;object-fit:cover!important}.lg-outer .lg-item .ms-layer .msHtmlOverlay{position:absolute!important;top:0!important;left:50%!important;width:80%!important;height:100%!important;transform:translateX(-50%)!important}.lg-outer .lg-item .ms-layer .msHtmlOverlay .content{font-size:1.8em!important;line-height:1.2!important}.lg-outer .lg-content{margin-left:20px!important;margin-right:20px!important}.ml-lightbox-fade-in{animation:ml-lightbox-fadeIn .3s ease-in-out}@keyframes ml-lightbox-fadeIn{from{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}.ml-lightbox-hidden{display:none!important}.ml-lightbox-loading{opacity:.5;pointer-events:none}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}@media print{.lg-outer,.lg-backdrop{display:none!important}}
@keyframes wc-stripe-ece-spin{to{transform:rotate(1turn)}}body.wc-stripe-ece-processing .blockUI.blockOverlay:before{animation:wc-stripe-ece-spin 1s linear infinite;border:.2em solid;border-left:.2em solid transparent;border-radius:50%;box-sizing:border-box;content:"";display:block;font-size:2em;height:1em;left:50%;margin-left:-.5em;margin-top:-.5em;position:absolute;top:50%;width:1em}#wc-stripe-express-checkout-element iframe{max-width:unset}#wc-stripe-express-checkout-element{display:flex;flex-wrap:wrap;gap:10px;justify-content:center;margin-bottom:12px}#wc-stripe-express-checkout-element>div{flex:1;min-width:260px}
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;font-weight:inherit;background:0 0}body{line-height:1;text-rendering:geometricPrecision;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:0 0}ins{background-color:#ff9;color:#000;text-decoration:none}mark{background-color:#ff9;color:#000;font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}input:focus{outline:0}address{font-style:normal}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(https://youngtimeritalia.it/wp-content/themes/beadv-core/assets/js/owl-carousel/assets/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-theme .owl-dots,.owl-theme .owl-nav{text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-nav{margin-top:10px}.owl-theme .owl-nav [class*=owl-]{color:#FFF;font-size:14px;margin:5px;padding:4px 7px;background:#D6D6D6;display:inline-block;cursor:pointer;border-radius:3px}.owl-theme .owl-nav [class*=owl-]:hover{background:#869791;color:#FFF;text-decoration:none}.owl-theme .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-nav.disabled+.owl-dots{margin-top:10px}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#D6D6D6;display:block;-webkit-backface-visibility:visible;transition:opacity .2s ease;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
.credits{display:flex;justify-content:space-between;gap:0 20px;text-align:center;font-size:11px;padding:10px 20px 80px 10px;background-color:#ddd;color:#999;font-weight:600}.credits a{color:#999}

.beadvAutomobile__slogan{color:#000}.beadvAutomobile__slogan h4.font-1{font-family:agdasima,sans-serif}.beadvAutomobile__slogan h4.font-2{font-family:carter one,system-ui}.beadvAutomobile__slogan h4.font-3{font-family:angkor,serif}.beadvAutomobile__slogan h4.font-4{font-family:kablammo,system-ui}.beadvAutomobile__slogan h4.font-5{font-family:fascinate,system-ui}.beadvAutomobile__slogan h4.font-6{font-family:racing sans one,sans-serif}.beadvAutomobile__slogan h4.font-7{font-family:barriecito,system-ui}.ANIMATEALL{transition:all .2s ease-out}.ANIMATECOLOR{transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out}.IMGCONTAIN{display:block;margin:auto;width:100%;height:100%;object-fit:contain}.IMGCOVER{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.FULLSIZE{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%}.MAINWRAP{width:100%;max-width:980px;margin:auto;padding:0 30px}.FORMITEMS{border:0;border-radius:20px;padding:8px 15px;background-color:#fff;font-family:open sans,sans-serif;width:100%;color:#7a7b7b}.FORMLABELS{display:inline-block;margin-bottom:10px;font-weight:400;font-family:open sans,sans-serif;text-transform:uppercase;font-size:.9em;letter-spacing:1px;width:100%}.HEADERDPAGELIST{width:100%;height:350px;position:relative;margin-bottom:20px}@media(max-width:1200px){.HEADERDPAGELIST{height:280px}}@media(max-width:768px){.HEADERDPAGELIST{height:180px}}.HEADERDPAGELIST .mainImage{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.HEADERDPAGELIST .mainImage img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.HEADERDPAGELIST .headerTexts{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:1;color:#ff08ad;text-align:center;padding:20px;display:flex;flex-direction:column;justify-content:center;flex-wrap:nowrap;align-items:center;gap:30px;background:rgba(255,229,0,.8);clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.HEADERDPAGELIST .headerTexts h1{font-size:2.5em;line-height:1.2;font-family:alata,sans-serif;letter-spacing:4px;font-weight:800;text-transform:uppercase;max-width:980px;text-shadow:6px 6px 0 #00dbc8}@media(max-width:768px){.HEADERDPAGELIST .headerTexts h1{font-size:2.2em}}@media(max-width:480px){.HEADERDPAGELIST .headerTexts h1{font-size:2em}}.HEADERDPAGELIST .headerTexts h2{line-height:1.4;max-width:768px;font-weight:400;letter-spacing:.5px;font-size:1.2em;font-family:alata,sans-serif}@media(max-width:768px){.HEADERDPAGELIST .headerTexts h2{letter-spacing:0}}@media(max-width:480px){.HEADERDPAGELIST .headerTexts h2{font-size:1.1em}}.HEADERDPAGELIST .headerTexts .articleInfo{margin-bottom:30px}@media(max-width:1024px){.HEADERDPAGELIST .headerTexts .articleInfo{margin-bottom:10px}}@media(max-width:768px){.HEADERDPAGELIST .headerTexts .articleInfo{flex-direction:column;gap:10px}}.HEADERDPAGELIST .headerTexts .articleInfo .articleCategory{text-transform:uppercase;font-size:.9em;font-weight:600;font-family:jost,sans-serif;display:flex;align-items:center;gap:6px}.HEADERDPAGELIST .headerTexts .articleInfo .articleCategory i{color:#fff;margin-right:10px;font-size:1.5em}.HEADERDPAGELIST .headerTexts .articleInfo .articleCategory ul{display:flex;flex-wrap:wrap;align-items:center;gap:0 15px}.HEADERDPAGELIST .headerTexts .articleInfo .articleCategory ul li a:hover{color:#ff08ad}.HEADERDPAGELIST .headerTexts .socialShare{margin-top:20px}.HEADERDPAGELIST .headerTexts .socialShare ul{justify-content:center}.HEADERDPAGELIST .headerTexts .socialShare ul li a{color:#fff;border-color:#fff}.HEADERDPAGELIST .headerTexts .socialShare ul li a:hover{background-color:#fff;color:#000}.HEADERDPAGELIST .headerTexts .buttonsContainer{justify-content:center;margin-top:20px}.HEADERDPAGELIST .headerTexts .siteButtons{background:#00dbc8;color:#ff08ad}.HEADERDPAGELIST .headerTexts .siteButtons:hover{background:#ffe500}.HEADERDPOSTLIST{width:100%;position:relative;margin-bottom:40px;display:flex}@media(max-width:1200px){.HEADERDPOSTLIST{margin-top:10px}}@media(max-width:480px){.HEADERDPOSTLIST{flex-direction:column}}.HEADERDPOSTLIST .mainImage{width:50%;clip-path:polygon(0 0,100% 0,100% 100%,0 80%);position:relative;z-index:2}@media(max-width:480px){.HEADERDPOSTLIST .mainImage{width:100%;clip-path:polygon(0 0,100% 30%,100% 100%,0 70%);margin-top:-108px}}.HEADERDPOSTLIST .mainImage img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.HEADERDPOSTLIST .headerTexts{width:50%;position:relative;z-index:1;color:#ff08ad;text-align:center;padding:110px 20px 180px;display:flex;flex-direction:column;justify-content:center;flex-wrap:nowrap;align-items:center;gap:30px;background:#00dbc8;clip-path:polygon(0 0,100% 0,100% 100%,0 80%)}@media(max-width:1200px){.HEADERDPOSTLIST .headerTexts{padding:60px 20px 130px}}@media(max-width:480px){.HEADERDPOSTLIST .headerTexts{width:100%}}.HEADERDPOSTLIST .headerTexts h1{font-size:3.5em;line-height:1.2;font-family:alata,sans-serif;letter-spacing:4px;font-weight:800;text-transform:uppercase;max-width:980px;text-shadow:4px 4px 0 #000}@media(max-width:768px){.HEADERDPOSTLIST .headerTexts h1{font-size:2.2em}}@media(max-width:480px){.HEADERDPOSTLIST .headerTexts h1{font-size:2em}}.HEADERDPOSTLIST .headerTexts h2{line-height:1.4;max-width:768px;font-weight:400;letter-spacing:.5px;font-size:1.2em;font-family:alata,sans-serif}@media(max-width:768px){.HEADERDPOSTLIST .headerTexts h2{letter-spacing:0}}@media(max-width:480px){.HEADERDPOSTLIST .headerTexts h2{font-size:1.1em}}@media(max-width:1024px){.HEADERDPOSTLIST .headerTexts .articleInfo{margin-bottom:0}}@media(max-width:768px){.HEADERDPOSTLIST .headerTexts .articleInfo{flex-direction:column;gap:10px}}.HEADERDPOSTLIST .headerTexts .articleInfo .articleDate{font-weight:800;display:block;color:#fff}@media(max-width:768px){.HEADERDPOSTLIST .headerTexts .articleInfo .articleDate{padding-right:0}}.HEADERDPOSTLIST .headerTexts .articleInfo .articleCategory{text-transform:uppercase;font-size:.9em;font-weight:600;font-family:jost,sans-serif;display:flex;align-items:center;gap:6px}.HEADERDPOSTLIST .headerTexts .articleInfo .articleCategory i{color:#fff;margin-right:10px;font-size:1.5em}.HEADERDPOSTLIST .headerTexts .articleInfo .articleCategory ul{display:flex;flex-wrap:wrap;align-items:center;gap:0 15px}.HEADERDPOSTLIST .headerTexts .articleInfo .articleCategory ul li a:hover{color:#ff08ad}.HEADERDPOSTLIST .headerTexts .articleInfo .dateTimeContainer{justify-content:center}.HEADERDPOSTLIST .headerTexts .articleInfo .place .eventoMeta__address{font-weight:800;display:block;color:#fff}.HEADERDPOSTLIST .headerTexts .articleInfo .place .eventoMeta__maps{text-transform:uppercase;font-size:.9em}.HEADERDPOSTLIST .headerTexts .socialShare{margin-top:20px}.HEADERDPOSTLIST .headerTexts .socialShare ul{justify-content:center}.HEADERDPOSTLIST .headerTexts .socialShare ul li a{color:#fff;border-color:#fff}.HEADERDPOSTLIST .headerTexts .socialShare ul li a:hover{background-color:#fff;color:#000}.HEADERDPOSTLIST .headerTexts .buttonsContainer{justify-content:center;margin-top:20px}.HEADERDPOSTLIST .headerTexts .siteButtons{background:#00dbc8;color:#ff08ad}.HEADERDPOSTLIST .headerTexts .siteButtons:hover{background:#ffe500}.TITLESECTION{font-family:alata,sans-serif;letter-spacing:5px;text-transform:uppercase;font-weight:200}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;-webkit-text-size-adjust:none}body{font-family:open sans,sans-serif;font-size:14px;font-weight:400;line-height:1.6;background-color:#fff;color:#575756}@media(max-width:980px){body{font-size:13px}}h1{font-family:alata,sans-serif;line-height:1.1;font-weight:600}b,strong{font-weight:600}a{text-decoration:none;color:#000}a:focus{outline:none}li{list-style:none inside}textarea{font-family:open sans,sans-serif;resize:none}select:focus{outline:none}.siteButtons{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:3px;width:fit-content;position:relative;text-transform:uppercase;font-family:alatsi,sans-serif;text-align:center;background:#ff08ad;color:#fff;font-size:13px;line-height:1;letter-spacing:4px;font-weight:600;padding:18px 30px 51px 35px;border:0;border-radius:0;clip-path:polygon(0 0,100% 0%,100% 80%,0 50%);transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out}.siteButtons>i{font-size:1.8em}@media(max-width:768px){.siteButtons{line-height:.95}}.siteButtons:hover{animation:headShake;animation-duration:.5s;background:#00dbc8}.siteButtons.inverse{background:#00dbc8;color:#ff08ad}.siteButtons.inverse:hover{background:#ffe500}.siteButtons.black{background:#00dbc8;color:#fff}.siteButtons.black:hover{background:#fff;color:#00dbc8}.siteButtons.azure{background:#00dbc8;color:#fff}.siteButtons.azure:hover{background:#ff08ad;color:#fff}.siteButtons.white{background:#fff;color:#ff08ad}.siteButtons.white:hover{background:#ff08ad;color:#fff}.siteButtons.green{background:#047200;color:#fff}.siteButtons.green:hover{color:#fff;background:#047200}.siteButtons.red{background:#bc0000;color:#fff}.siteButtons.red:hover{color:#fff;background:#bc0000}.siteButtons.orange{background:#bb6b19;color:#fff}.siteButtons.orange:hover{color:#fff;background:#bb6b19}.siteButtons.brand{background:#ff08ad;color:#fff}.siteButtons.brand:hover{background:#00dbc8}.siteButtons.brand2{background:#00dbc8;color:#fff}.siteButtons.brand2:hover{background:#ff08ad}.siteButtons.brand3{background:#37db00;color:#fff}.siteButtons.brand3:hover{background:#ff08ad}.buttonsContainer{display:flex;flex-wrap:wrap;gap:10px 20px;width:100%}.pagination{width:100%;max-width:980px;margin:auto;padding:0 30px;border-top:solid 1px #00dbc8;margin-top:60px;padding-top:20px;font-family:alatsi,sans-serif;text-transform:uppercase;font-size:1em;line-height:0}.pagination ul{display:flex;align-items:center;justify-content:center;gap:10px;list-style:none}.pagination ul li{list-style:none!important}.pagination a.page-numbers:not(.prev,.next),.pagination .current{display:block;width:40px;height:40px;display:flex;gap:20px;align-items:center;justify-content:center;background:#ccc;border-radius:100%;font-weight:600}.pagination .current{background:#ff08ad;color:#fff}.pagination a.page-numbers:not(.prev,.next):hover{background:#7a7b7b;color:#fff}.noItemmessage{width:100%;max-width:980px;margin:auto;padding:0 30px;margin:50px auto;text-align:center;padding:40px;background:linear-gradient(90deg,#FF08AD 0%,#00DBC8 100%);border-radius:20px}.noItemmessage span.icon{font-size:5em;color:#000;display:block}.noItemmessage p.message{font-size:1.4em;text-transform:uppercase;color:#000;letter-spacing:2px;font-family:alatsi,sans-serif}header.headerMain{padding:40px 60px;width:100%;z-index:20;position:fixed;top:0}header.headerMain::before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,#FF08AD 0%,#00DBC8 100%);clip-path:polygon(0 0,100% 0,100% 100%,0 70%);z-index:0;pointer-events:none}@media(max-width:1200px){header.headerMain{height:100px;padding:24px}}header.headerMain .navMain{display:flex;gap:30px;height:100%;position:relative;z-index:200}@media(max-width:1200px){header.headerMain .navMain{position:absolute;top:63px;left:-100%;z-index:9;width:100%;height:calc(100vh - 50px);background:linear-gradient(90deg,#FF08AD 0%,#00DBC8 100%);padding-top:40px;padding-bottom:100px;display:block;background-color:#fff}}header.headerMain .navMain .mainLogo{height:135px;width:172px;position:relative;z-index:200;margin:0 auto -80px 0;transition:all .2s ease-out}@media(min-width:1201px){body.body-scrolled header.headerMain .navMain .mainLogo{height:75px;margin:-20px auto 30px 0}}@media(max-width:1200px){header.headerMain .navMain .mainLogo{position:fixed;top:16px;right:-25px;height:68px!important;margin:auto;z-index:20;padding:0;border:0}}@media(max-width:480px){header.headerMain .navMain .mainLogo{top:8px}}header.headerMain .navMain .mainLogo a{display:block;width:100%;height:100%;position:relative;z-index:200}header.headerMain .navMain .mainLogo img{display:block;margin:auto;width:100%;height:100%;object-fit:contain}@media(max-width:480px){header.headerMain .navMain .mainLogo{height:35px}}header.headerMain .navMain .siteMenu{display:flex;gap:20px;height:100%;width:100%;flex-wrap:nowrap;align-content:center;letter-spacing:3px;font-size:.8em;font-family:alata,sans-serif;padding-top:10px}@media(max-width:1200px){header.headerMain .navMain .siteMenu{display:block;height:auto;padding:10px 25px;align-content:flex-start;margin-bottom:10px;width:auto;height:calc(100% - 50px);overflow:auto;width:calc(100vw - 160px);border:0;margin:0}}header.headerMain .navMain .siteMenu>li{text-transform:uppercase;position:relative;font-weight:400}@media(max-width:1200px){header.headerMain .navMain .siteMenu>li{margin-bottom:15px;font-weight:400;font-size:1.2em}header.headerMain .navMain .siteMenu>li.menu-bold a{color:#fff;font-weight:800}header.headerMain .navMain .siteMenu>li>.sub-menu{padding-top:0}}header.headerMain .navMain .siteMenu>li>a{color:#000;cursor:pointer;display:block}header.headerMain .navMain .siteMenu>li>a:hover{color:#000;transform:translate(0,3px)}@media(max-width:1200px){header.headerMain .navMain .siteMenu>li>a{color:#fff}header.headerMain .navMain .siteMenu>li>a:hover{color:#00dbc8;opacity:.8}}header.headerMain .navMain .siteMenu>li.current_page_item>a{color:#000;cursor:pointer}header.headerMain .navMain .siteMenu>li>.sub-menu{display:none;position:absolute;z-index:10;padding-top:10px;font-size:.9em;min-width:280px}@media(max-width:1200px){header.headerMain .navMain .siteMenu>li>.sub-menu{display:block;position:relative;min-width:0}}header.headerMain .navMain .siteMenu>li>.sub-menu>ul{background:#ff08ad;padding:20px;display:flex;gap:10px;flex-direction:column;font-size:.9em}@media(max-width:1200px){header.headerMain .navMain .siteMenu>li>.sub-menu>ul{background:0 0;padding:5px 15px 0;border:0;gap:0;font-size:1em}}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li{color:#fff}@media(max-width:1200px){header.headerMain .navMain .siteMenu>li>.sub-menu>ul li{list-style:outside disc;color:rgba(255,255,255,.2);margin:5px 0}}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li a{color:#fff}@media(max-width:1200px){header.headerMain .navMain .siteMenu>li>.sub-menu>ul li a{color:#fff;font-size:11px}}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li a:hover{padding-left:3px}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li.no-link>a{cursor:default}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li.no-link>a:hover{padding-left:0;color:#fff}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li .sub-menu{padding:20px;margin-top:5px;margin-left:5px;border-left:solid 1px rgba(255,255,255,.5)}@media(max-width:1200px){header.headerMain .navMain .siteMenu>li>.sub-menu>ul li .sub-menu{padding:7px 20px}}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li .sub-menu a{color:#fff}header.headerMain .navMain .siteMenu>li>.sub-menu>ul li .sub-menu a:hover{color:#00dbc8}header.headerMain .navMain .siteMenu>li:hover .sub-menu{display:block}header.headerMain .navMain .siteMenu li.dropdown>a:after{content:"";width:10px;height:10px;margin-left:7px;background-image:url(https://youngtimeritalia.it/wp-content/themes/beadv-child-youngtimeritalia-20260226/assets/css/min/../../images/dropdown.svg);background-repeat:no-repeat;background-position:50%;display:inline-block}@media(max-width:1200px){header.headerMain .navMain .siteMenu li.dropdown>a:after{display:none}}header.headerMain .langMenu{position:absolute;z-index:2;display:flex;top:98px;right:0}@media(max-width:1200px){header.headerMain .langMenu{padding:0 0 10px;position:absolute;top:25px;right:25px}}header.headerMain .langMenu li a{color:#fff;font-family:alata,sans-serif;text-transform:uppercase;letter-spacing:1px;font-size:.6em;font-weight:800;display:flex;align-items:center;gap:3px;padding:2px}header.headerMain .langMenu li img{overflow:hidden;width:24px!important;height:18px!important}header.headerMain .langMenu .sub-menu{display:none;position:absolute;width:100%;margin:auto}header.headerMain .langMenu .sub-menu li{background-color:#ff08ad;width:100%;margin-top:5px}header.headerMain .langMenu:hover .sub-menu{display:block}header.headerMain ul.socialList{display:flex;gap:7px;font-family:open sans,sans-serif;position:absolute;top:5;right:0}@media(max-width:1200px){header.headerMain ul.socialList{position:absolute;top:36px;right:31px}header.headerMain ul.socialList li a{color:#fff}}header.headerMain ul.socialList li a{display:flex;align-content:center;justify-content:center;flex-wrap:wrap;font-size:1.2em;color:#000;font-weight:400}header.headerMain ul.socialList li a:hover{color:#ff08ad}header.headerMain .menuTrigger{display:none;width:35px;height:35px;margin-top:-5px}@media(max-width:1200px){header.headerMain .menuTrigger{display:flex;flex-direction:column;position:relative;z-index:200}}header.headerMain .menuTrigger span{display:block;margin:auto;width:100%;height:2px;background-color:#fff}@media(max-width:1200px){body.menuOpen{width:100vw;height:100vh;overflow:hidden}body.menuOpen header.headerMain .navMain{left:0}body.menuOpen header.headerMain .navMain .siteMenu{animation:slideInLeft;animation-duration:1s}}.viewContainer{padding-top:90px}@media(max-width:1200px){.viewContainer{padding-top:55px}}footer.mainFooter{position:relative;background-color:#ff08ad;margin-top:150px}footer.mainFooter .footerLayout{max-width:980px;margin:auto;padding-top:50px;padding-bottom:50px}@media(max-width:980px){footer.mainFooter .footerLayout{padding-left:20px;padding-right:20px}}footer.mainFooter .footerLayout .company,footer.mainFooter .footerLayout .footerInfo{margin-bottom:40px;max-width:400px;color:#fff}footer.mainFooter .footerLayout .company .widget-title,footer.mainFooter .footerLayout .footerInfo .widget-title{display:none}footer.mainFooter .footerLayout .company>.widget,footer.mainFooter .footerLayout .footerInfo>.widget{margin-bottom:20px;line-height:1.4;font-size:.9em}footer.mainFooter .footerLayout .company>.widget.widget_media_image,footer.mainFooter .footerLayout .footerInfo>.widget.widget_media_image{margin-bottom:40px}footer.mainFooter .footerLayout .company h5,footer.mainFooter .footerLayout .footerInfo h5{font-family:alatsi,sans-serif;font-weight:600;letter-spacing:2px;line-height:1.2;margin-bottom:15px}footer.mainFooter .footerLayout .company address,footer.mainFooter .footerLayout .footerInfo address{margin-bottom:15px}footer.mainFooter .footerLayout .company p,footer.mainFooter .footerLayout .footerInfo p{margin-bottom:20px}footer.mainFooter .footerLayout .company span,footer.mainFooter .footerLayout .footerInfo span{display:block}footer.mainFooter .footerLayout .company a,footer.mainFooter .footerLayout .footerInfo a{color:#fff}footer.mainFooter .footerLayout ul.footerMenu{border-top:1px solid rgba(255,255,255,.15);display:flex;gap:30px;font-family:open sans,sans-serif;padding:20px 0;font-size:.8rem}footer.mainFooter .footerLayout ul.footerMenu li{text-transform:uppercase;letter-spacing:2px}footer.mainFooter .footerLayout ul.footerMenu li a{color:#fff;font-weight:400}footer.mainFooter .footerLayout ul.footerMenu li a:hover{opacity:.5}footer.mainFooter .footerLayout ul.socialList{display:flex;gap:10px;font-family:open sans,sans-serif;padding:20px 0}footer.mainFooter .footerLayout ul.socialList li a{display:flex;align-content:center;justify-content:center;flex-wrap:wrap;font-size:1.5em;color:#fff}footer.mainFooter .footerLayout ul.socialList li a:hover{opacity:.5}.automobileSearch{min-height:150px;background:linear-gradient(90deg,#FF08AD 0%,#00DBC8 100%);transform:skew(0,-1deg);padding:40px 20px 60px}.automobileSearch h4{color:#fff!important;text-transform:uppercase;font-size:1.3em!important;letter-spacing:6px;margin-bottom:20px!important}.automobileSearch form{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-end;gap:10px 30px}@media(max-width:480px){.automobileSearch form{flex-direction:column;align-items:center}.automobileSearch form>div{width:100%}}.automobileSearch form label{display:inline-block;margin-bottom:10px;font-weight:400;font-family:open sans,sans-serif;text-transform:uppercase;font-size:.9em;letter-spacing:1px;width:100%;color:#fff;text-align:center;margin-bottom:2px}.automobileSearch form input{border:0;border-radius:20px;padding:8px 15px;background-color:#fff;font-family:open sans,sans-serif;width:100%;color:#7a7b7b}.automobileSearch form select{border:0;border-radius:20px;padding:8px 15px;background-color:#fff;font-family:open sans,sans-serif;width:100%;color:#7a7b7b}.automobileSearch form .beadvSearchForm__actions{margin-bottom:-30px}@media(max-width:480px){.automobileSearch form .beadvSearchForm__actions{margin-top:20px;display:flex;justify-content:center}}.automobileSearch form .beadvSearchForm__actions button{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:3px;width:fit-content;position:relative;text-transform:uppercase;font-family:alatsi,sans-serif;text-align:center;background:#ff08ad;color:#fff;font-size:13px;line-height:1;letter-spacing:4px;font-weight:600;padding:18px 30px 51px 35px;border:0;border-radius:0;clip-path:polygon(0 0,100% 0%,100% 80%,0 50%);transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out;margin-bottom:0}.automobileSearch form .beadvSearchForm__actions button>i{font-size:1.8em}@media(max-width:768px){.automobileSearch form .beadvSearchForm__actions button{line-height:.95}}.automobileSearch form .beadvSearchForm__actions button:hover{animation:headShake;animation-duration:.5s;background:#00dbc8}.automobileSearch form .beadvSearchForm__actions button.inverse{background:#00dbc8;color:#ff08ad}.automobileSearch form .beadvSearchForm__actions button.inverse:hover{background:#ffe500}.automobileSearch form .beadvSearchForm__actions button.black{background:#00dbc8;color:#fff}.automobileSearch form .beadvSearchForm__actions button.black:hover{background:#fff;color:#00dbc8}.automobileSearch form .beadvSearchForm__actions button.azure{background:#00dbc8;color:#fff}.automobileSearch form .beadvSearchForm__actions button.azure:hover{background:#ff08ad;color:#fff}.automobileSearch form .beadvSearchForm__actions button.white{background:#fff;color:#ff08ad}.automobileSearch form .beadvSearchForm__actions button.white:hover{background:#ff08ad;color:#fff}.automobileSearch form .beadvSearchForm__actions button.green{background:#047200;color:#fff}.automobileSearch form .beadvSearchForm__actions button.green:hover{color:#fff;background:#047200}.automobileSearch form .beadvSearchForm__actions button.red{background:#bc0000;color:#fff}.automobileSearch form .beadvSearchForm__actions button.red:hover{color:#fff;background:#bc0000}.automobileSearch form .beadvSearchForm__actions button.orange{background:#bb6b19;color:#fff}.automobileSearch form .beadvSearchForm__actions button.orange:hover{color:#fff;background:#bb6b19}.automobileSearch form .beadvSearchForm__actions button.brand{background:#ff08ad;color:#fff}.automobileSearch form .beadvSearchForm__actions button.brand:hover{background:#00dbc8}.automobileSearch form .beadvSearchForm__actions button.brand2{background:#00dbc8;color:#fff}.automobileSearch form .beadvSearchForm__actions button.brand2:hover{background:#ff08ad}.automobileSearch form .beadvSearchForm__actions button.brand3{background:#37db00;color:#fff}.automobileSearch form .beadvSearchForm__actions button.brand3:hover{background:#ff08ad}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:3px;width:fit-content;position:relative;text-transform:uppercase;font-family:alatsi,sans-serif;text-align:center;background:#ff08ad;color:#fff;font-size:13px;line-height:1;letter-spacing:4px;font-weight:600;padding:18px 30px 51px 35px;border:0;border-radius:0;clip-path:polygon(0 0,100% 0%,100% 80%,0 50%);transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out;background:#00dbc8;color:#ff08ad}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset>i{font-size:1.8em}@media(max-width:768px){.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset{line-height:.95}}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset:hover{animation:headShake;animation-duration:.5s;background:#00dbc8}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.inverse{background:#00dbc8;color:#ff08ad}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.inverse:hover{background:#ffe500}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.black{background:#00dbc8;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.black:hover{background:#fff;color:#00dbc8}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.azure{background:#00dbc8;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.azure:hover{background:#ff08ad;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.white{background:#fff;color:#ff08ad}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.white:hover{background:#ff08ad;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.green{background:#047200;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.green:hover{color:#fff;background:#047200}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.red{background:#bc0000;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.red:hover{color:#fff;background:#bc0000}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.orange{background:#bb6b19;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.orange:hover{color:#fff;background:#bb6b19}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand{background:#ff08ad;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand:hover{background:#00dbc8}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand2{background:#00dbc8;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand2:hover{background:#ff08ad}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand3{background:#37db00;color:#fff}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand3:hover{background:#ff08ad}.automobileSearch form .beadvSearchForm__actions .beadvSearchForm__reset:hover{background:#ffe500}.newsSearch,.eventiSearch{border-top:solid 1px #ddd;padding-top:20px!important;border-bottom:solid 1px #ddd;padding-bottom:40px!important}.newsSearch h4,.eventiSearch h4{text-transform:uppercase;font-size:1.3em!important;letter-spacing:6px;margin-bottom:20px!important}.newsSearch form,.eventiSearch form{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-end;gap:10px 30px}@media(max-width:480px){.newsSearch form,.eventiSearch form{flex-direction:column;align-items:center}.newsSearch form>div,.eventiSearch form>div{width:100%}}.newsSearch form label,.eventiSearch form label{display:inline-block;margin-bottom:10px;font-weight:400;font-family:open sans,sans-serif;text-transform:uppercase;font-size:.9em;letter-spacing:1px;width:100%;color:#000;text-align:center;margin-bottom:2px}.newsSearch form input,.eventiSearch form input{border:0;border-radius:20px;padding:8px 15px;background-color:#fff;font-family:open sans,sans-serif;width:100%;color:#7a7b7b;border:solid 1px #00dbc8}.newsSearch form select,.eventiSearch form select{border:0;border-radius:20px;padding:8px 15px;background-color:#fff;font-family:open sans,sans-serif;width:100%;color:#7a7b7b;border:solid 1px #00dbc8}.newsSearch form .beadvSearchForm__actions,.eventiSearch form .beadvSearchForm__actions{margin-bottom:-30px}@media(max-width:480px){.newsSearch form .beadvSearchForm__actions,.eventiSearch form .beadvSearchForm__actions{margin-top:20px;display:flex;justify-content:center}}.newsSearch form .beadvSearchForm__actions button,.eventiSearch form .beadvSearchForm__actions button{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:3px;width:fit-content;position:relative;text-transform:uppercase;font-family:alatsi,sans-serif;text-align:center;background:#ff08ad;color:#fff;font-size:13px;line-height:1;letter-spacing:4px;font-weight:600;padding:18px 30px 51px 35px;border:0;border-radius:0;clip-path:polygon(0 0,100% 0%,100% 80%,0 50%);transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out;margin-bottom:0}.newsSearch form .beadvSearchForm__actions button>i,.eventiSearch form .beadvSearchForm__actions button>i{font-size:1.8em}@media(max-width:768px){.newsSearch form .beadvSearchForm__actions button,.eventiSearch form .beadvSearchForm__actions button{line-height:.95}}.newsSearch form .beadvSearchForm__actions button:hover,.eventiSearch form .beadvSearchForm__actions button:hover{animation:headShake;animation-duration:.5s;background:#00dbc8}.newsSearch form .beadvSearchForm__actions button.inverse,.eventiSearch form .beadvSearchForm__actions button.inverse{background:#00dbc8;color:#ff08ad}.newsSearch form .beadvSearchForm__actions button.inverse:hover,.eventiSearch form .beadvSearchForm__actions button.inverse:hover{background:#ffe500}.newsSearch form .beadvSearchForm__actions button.black,.eventiSearch form .beadvSearchForm__actions button.black{background:#00dbc8;color:#fff}.newsSearch form .beadvSearchForm__actions button.black:hover,.eventiSearch form .beadvSearchForm__actions button.black:hover{background:#fff;color:#00dbc8}.newsSearch form .beadvSearchForm__actions button.azure,.eventiSearch form .beadvSearchForm__actions button.azure{background:#00dbc8;color:#fff}.newsSearch form .beadvSearchForm__actions button.azure:hover,.eventiSearch form .beadvSearchForm__actions button.azure:hover{background:#ff08ad;color:#fff}.newsSearch form .beadvSearchForm__actions button.white,.eventiSearch form .beadvSearchForm__actions button.white{background:#fff;color:#ff08ad}.newsSearch form .beadvSearchForm__actions button.white:hover,.eventiSearch form .beadvSearchForm__actions button.white:hover{background:#ff08ad;color:#fff}.newsSearch form .beadvSearchForm__actions button.green,.eventiSearch form .beadvSearchForm__actions button.green{background:#047200;color:#fff}.newsSearch form .beadvSearchForm__actions button.green:hover,.eventiSearch form .beadvSearchForm__actions button.green:hover{color:#fff;background:#047200}.newsSearch form .beadvSearchForm__actions button.red,.eventiSearch form .beadvSearchForm__actions button.red{background:#bc0000;color:#fff}.newsSearch form .beadvSearchForm__actions button.red:hover,.eventiSearch form .beadvSearchForm__actions button.red:hover{color:#fff;background:#bc0000}.newsSearch form .beadvSearchForm__actions button.orange,.eventiSearch form .beadvSearchForm__actions button.orange{background:#bb6b19;color:#fff}.newsSearch form .beadvSearchForm__actions button.orange:hover,.eventiSearch form .beadvSearchForm__actions button.orange:hover{color:#fff;background:#bb6b19}.newsSearch form .beadvSearchForm__actions button.brand,.eventiSearch form .beadvSearchForm__actions button.brand{background:#ff08ad;color:#fff}.newsSearch form .beadvSearchForm__actions button.brand:hover,.eventiSearch form .beadvSearchForm__actions button.brand:hover{background:#00dbc8}.newsSearch form .beadvSearchForm__actions button.brand2,.eventiSearch form .beadvSearchForm__actions button.brand2{background:#00dbc8;color:#fff}.newsSearch form .beadvSearchForm__actions button.brand2:hover,.eventiSearch form .beadvSearchForm__actions button.brand2:hover{background:#ff08ad}.newsSearch form .beadvSearchForm__actions button.brand3,.eventiSearch form .beadvSearchForm__actions button.brand3{background:#37db00;color:#fff}.newsSearch form .beadvSearchForm__actions button.brand3:hover,.eventiSearch form .beadvSearchForm__actions button.brand3:hover{background:#ff08ad}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:3px;width:fit-content;position:relative;text-transform:uppercase;font-family:alatsi,sans-serif;text-align:center;background:#ff08ad;color:#fff;font-size:13px;line-height:1;letter-spacing:4px;font-weight:600;padding:18px 30px 51px 35px;border:0;border-radius:0;clip-path:polygon(0 0,100% 0%,100% 80%,0 50%);transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out;background:#00dbc8;color:#ff08ad}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset>i,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset>i{font-size:1.8em}@media(max-width:768px){.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset{line-height:.95}}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset:hover{animation:headShake;animation-duration:.5s;background:#00dbc8}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.inverse,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.inverse{background:#00dbc8;color:#ff08ad}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.inverse:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.inverse:hover{background:#ffe500}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.black,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.black{background:#00dbc8;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.black:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.black:hover{background:#fff;color:#00dbc8}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.azure,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.azure{background:#00dbc8;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.azure:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.azure:hover{background:#ff08ad;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.white,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.white{background:#fff;color:#ff08ad}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.white:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.white:hover{background:#ff08ad;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.green,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.green{background:#047200;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.green:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.green:hover{color:#fff;background:#047200}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.red,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.red{background:#bc0000;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.red:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.red:hover{color:#fff;background:#bc0000}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.orange,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.orange{background:#bb6b19;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.orange:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.orange:hover{color:#fff;background:#bb6b19}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand{background:#ff08ad;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand:hover{background:#00dbc8}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand2,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand2{background:#00dbc8;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand2:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand2:hover{background:#ff08ad}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand3,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand3{background:#37db00;color:#fff}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand3:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset.brand3:hover{background:#ff08ad}.newsSearch form .beadvSearchForm__actions .beadvSearchForm__reset:hover,.eventiSearch form .beadvSearchForm__actions .beadvSearchForm__reset:hover{background:#ffe500}.typography{font-family:open sans,sans-serif;line-height:1.7}.typography :where(.wp-block-columns.is-layout-flex){gap:4em}.typography>*{margin-bottom:40px}.typography>*.layoutSmall{max-width:800px;margin-left:auto;margin-right:auto;padding:0 20px}.typography>*.layoutMedium{max-width:980px;margin-left:auto;margin-right:auto;padding:0 20px}.typography>*.layoutLarge{max-width:1400px;margin-left:auto;margin-right:auto;padding:0 20px}.typography>*.layoutFull{max-width:100%;margin-left:auto;margin-right:auto}.typography>*.layoutCustom{margin-left:auto;margin-right:auto;padding:0 20px}.typography>.edges{max-width:1400px;padding-left:0;padding-right:0}.typography>.edges img{width:100%}.typography b,.typography strong{font-weight:800}.typography h1{font-family:alata,sans-serif;font-size:3.3em;margin-bottom:40px;color:#ff08ad;line-height:1.4}@media(max-width:640px){.typography h1{font-size:3em}}.typography h2{font-family:alata,sans-serif;font-size:2.5em;margin-bottom:20px;color:#ff08ad;line-height:1.3}@media(max-width:640px){.typography h2{font-size:2em;margin-bottom:20px}}.typography h3{font-family:alata,sans-serif;font-size:1.8em;margin-bottom:20px;color:#ff08ad;line-height:1.3}@media(max-width:640px){.typography h3{font-size:1.5em;margin-bottom:20px}}.typography h4{font-family:alata,sans-serif;font-size:1.5em;margin-bottom:20px;color:#000;line-height:1.3}@media(max-width:640px){.typography h4{font-size:1.1em}}.typography h5{font-size:1.4em;margin-bottom:20px;color:#000;line-height:.8}@media(max-width:640px){.typography h5{font-size:1em}}.typography h6{font-size:1.3em;margin-bottom:20px;color:#000;line-height:1.3}@media(max-width:640px){.typography h6{font-size:1em}}.typography>p{margin-bottom:20px;font-size:1.1em}.typography>p.has-medium-font-size,.typography>p.has-large-font-size,.typography>p.has-x-large-font-size{line-height:1.6}.typography hr{margin-top:40px;margin-bottom:40px;border:0;background-color:#eee;height:1px;width:100%}.typography a{border-bottom:1px dotted}.typography ul,.typography ol{margin-bottom:40px;padding-left:40px}.typography li{margin-bottom:13.33333333px}.typography ul li{list-style:inside}.typography ol li{list-style:decimal}.typography blockquote{position:relative;font-size:1.4em;font-weight:300;width:75%;font-style:italic;margin:100px auto 130px;padding:10px;quotes:"\201C" "\201D" "\2018" "\2019";color:#7a7b7b}.typography blockquote:before{font-family:Impact,Haettenschweiler,arial narrow bold,sans-serif;content:open-quote;font-style:normal;font-size:7em;color:#7a7b7b;position:absolute;top:-130px;left:-30px;display:block}.typography blockquote:after{font-family:Impact,Haettenschweiler,arial narrow bold,sans-serif;content:close-quote;font-style:normal;font-size:7em;color:#7a7b7b;position:absolute;bottom:-230px;right:-30px;display:block}.typography blockquote p{display:inline}.typography blockquote cite{position:absolute;bottom:-35px;left:10px;font-weight:800;font-size:.7em}.typography table{border:dotted 1px #ddd;padding:5px;font-size:.9em;line-height:1.4;width:100%}.typography table th,.typography table td{padding:10px;text-align:left;border:dotted 1px #ddd}.typography table th{font-weight:600;background-color:#ddd}.typography figure{margin-bottom:60px;position:relative}.typography img{width:100%;margin:auto}.typography .wp-block-image img{box-shadow:0 0 19px 5px rgba(0,0,0,.1)}.typography .wp-element-caption{position:relative;z-index:2!important;color:#ff08ad!important;padding:10px 0 0!important;font-size:.9em!important;font-weight:600!important;border-top:solid 1px #ff08ad;margin-top:15px}.typography .alignleft{float:left;margin-right:30px;margin-top:10px;margin-bottom:10px}.typography .alignright{float:right;margin-left:30px;margin-top:10px;margin-bottom:10px}.typography .aligncenter{margin-left:auto;margin-right:auto;margin-top:10px;margin-bottom:10px}.typography .wp-block-buttons{margin:50px auto}.typography .wp-block-button a,.typography .wp-block-file__button{cursor:pointer;display:inline-flex;align-items:center;justify-content:center;gap:3px;width:fit-content;position:relative;text-transform:uppercase;font-family:alatsi,sans-serif;text-align:center;background:#ff08ad;color:#fff;font-size:13px;line-height:1;letter-spacing:4px;font-weight:600;padding:18px 30px 51px 35px;border:0;border-radius:0;clip-path:polygon(0 0,100% 0%,100% 80%,0 50%);transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out}.typography .wp-block-button a>i,.typography .wp-block-file__button>i{font-size:1.8em}@media(max-width:768px){.typography .wp-block-button a,.typography .wp-block-file__button{line-height:.95}}.typography .wp-block-button a:hover,.typography .wp-block-file__button:hover{animation:headShake;animation-duration:.5s;background:#00dbc8}.typography .wp-block-button a.inverse,.typography .wp-block-file__button.inverse{background:#00dbc8;color:#ff08ad}.typography .wp-block-button a.inverse:hover,.typography .wp-block-file__button.inverse:hover{background:#ffe500}.typography .wp-block-button a.black,.typography .wp-block-file__button.black{background:#00dbc8;color:#fff}.typography .wp-block-button a.black:hover,.typography .wp-block-file__button.black:hover{background:#fff;color:#00dbc8}.typography .wp-block-button a.azure,.typography .wp-block-file__button.azure{background:#00dbc8;color:#fff}.typography .wp-block-button a.azure:hover,.typography .wp-block-file__button.azure:hover{background:#ff08ad;color:#fff}.typography .wp-block-button a.white,.typography .wp-block-file__button.white{background:#fff;color:#ff08ad}.typography .wp-block-button a.white:hover,.typography .wp-block-file__button.white:hover{background:#ff08ad;color:#fff}.typography .wp-block-button a.green,.typography .wp-block-file__button.green{background:#047200;color:#fff}.typography .wp-block-button a.green:hover,.typography .wp-block-file__button.green:hover{color:#fff;background:#047200}.typography .wp-block-button a.red,.typography .wp-block-file__button.red{background:#bc0000;color:#fff}.typography .wp-block-button a.red:hover,.typography .wp-block-file__button.red:hover{color:#fff;background:#bc0000}.typography .wp-block-button a.orange,.typography .wp-block-file__button.orange{background:#bb6b19;color:#fff}.typography .wp-block-button a.orange:hover,.typography .wp-block-file__button.orange:hover{color:#fff;background:#bb6b19}.typography .wp-block-button a.brand,.typography .wp-block-file__button.brand{background:#ff08ad;color:#fff}.typography .wp-block-button a.brand:hover,.typography .wp-block-file__button.brand:hover{background:#00dbc8}.typography .wp-block-button a.brand2,.typography .wp-block-file__button.brand2{background:#00dbc8;color:#fff}.typography .wp-block-button a.brand2:hover,.typography .wp-block-file__button.brand2:hover{background:#ff08ad}.typography .wp-block-button a.brand3,.typography .wp-block-file__button.brand3{background:#37db00;color:#fff}.typography .wp-block-button a.brand3:hover,.typography .wp-block-file__button.brand3:hover{background:#ff08ad}.typography .wp-block-columns{margin-bottom:60px}.typography .wp-block-columns *:last-child{margin-bottom:0}.typography .wp-block-file{text-transform:uppercase}.typography .wp-block-file::before{content:"";background-image:url(https://youngtimeritalia.it/wp-content/themes/beadv-child-youngtimeritalia-20260226/assets/css/min/../../images/file-regular.svg);width:30px;height:30px;background-repeat:no-repeat;position:relative;display:block;float:left;margin-right:4px}.typography .wp-block-file>a:not(.wp-block-file__button){display:block;font-size:1.2em;border:0}.typography .wp-block-file .wp-block-file__button{margin:15px 0 0}@media(max-width:781px){.typography .has-text-align-right{text-align:left}}.mainForm{position:relative;overflow:hidden;padding-top:5px}.mainForm h2{text-align:center;text-transform:uppercase;margin-bottom:50px;font-size:2em}.mainForm input,.mainForm textarea,.mainForm select{border:0;border-radius:20px;padding:8px 15px;background-color:#fff;font-family:open sans,sans-serif;width:100%;color:#7a7b7b;background-color:#00dbc8;color:#000}.mainForm select{text-transform:uppercase}.mainForm input[type=button],.mainForm input[type=submit],.mainForm button{display:inline-flex;align-items:center;justify-content:center;gap:3px;width:fit-content;position:relative;text-transform:uppercase;font-family:alatsi,sans-serif;text-align:center;background:#ff08ad;color:#fff;font-size:13px;line-height:1;letter-spacing:4px;font-weight:600;padding:18px 30px 51px 35px;border:0;border-radius:0;clip-path:polygon(0 0,100% 0%,100% 80%,0 50%);transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out;width:100%;cursor:pointer}.mainForm input[type=button]>i,.mainForm input[type=submit]>i,.mainForm button>i{font-size:1.8em}@media(max-width:768px){.mainForm input[type=button],.mainForm input[type=submit],.mainForm button{line-height:.95}}.mainForm input[type=button]:hover,.mainForm input[type=submit]:hover,.mainForm button:hover{animation:headShake;animation-duration:.5s;background:#00dbc8}.mainForm input[type=button].inverse,.mainForm input[type=submit].inverse,.mainForm button.inverse{background:#00dbc8;color:#ff08ad}.mainForm input[type=button].inverse:hover,.mainForm input[type=submit].inverse:hover,.mainForm button.inverse:hover{background:#ffe500}.mainForm input[type=button].black,.mainForm input[type=submit].black,.mainForm button.black{background:#00dbc8;color:#fff}.mainForm input[type=button].black:hover,.mainForm input[type=submit].black:hover,.mainForm button.black:hover{background:#fff;color:#00dbc8}.mainForm input[type=button].azure,.mainForm input[type=submit].azure,.mainForm button.azure{background:#00dbc8;color:#fff}.mainForm input[type=button].azure:hover,.mainForm input[type=submit].azure:hover,.mainForm button.azure:hover{background:#ff08ad;color:#fff}.mainForm input[type=button].white,.mainForm input[type=submit].white,.mainForm button.white{background:#fff;color:#ff08ad}.mainForm input[type=button].white:hover,.mainForm input[type=submit].white:hover,.mainForm button.white:hover{background:#ff08ad;color:#fff}.mainForm input[type=button].green,.mainForm input[type=submit].green,.mainForm button.green{background:#047200;color:#fff}.mainForm input[type=button].green:hover,.mainForm input[type=submit].green:hover,.mainForm button.green:hover{color:#fff;background:#047200}.mainForm input[type=button].red,.mainForm input[type=submit].red,.mainForm button.red{background:#bc0000;color:#fff}.mainForm input[type=button].red:hover,.mainForm input[type=submit].red:hover,.mainForm button.red:hover{color:#fff;background:#bc0000}.mainForm input[type=button].orange,.mainForm input[type=submit].orange,.mainForm button.orange{background:#bb6b19;color:#fff}.mainForm input[type=button].orange:hover,.mainForm input[type=submit].orange:hover,.mainForm button.orange:hover{color:#fff;background:#bb6b19}.mainForm input[type=button].brand,.mainForm input[type=submit].brand,.mainForm button.brand{background:#ff08ad;color:#fff}.mainForm input[type=button].brand:hover,.mainForm input[type=submit].brand:hover,.mainForm button.brand:hover{background:#00dbc8}.mainForm input[type=button].brand2,.mainForm input[type=submit].brand2,.mainForm button.brand2{background:#00dbc8;color:#fff}.mainForm input[type=button].brand2:hover,.mainForm input[type=submit].brand2:hover,.mainForm button.brand2:hover{background:#ff08ad}.mainForm input[type=button].brand3,.mainForm input[type=submit].brand3,.mainForm button.brand3{background:#37db00;color:#fff}.mainForm input[type=button].brand3:hover,.mainForm input[type=submit].brand3:hover,.mainForm button.brand3:hover{background:#ff08ad}.mainForm label{display:inline-block;margin-bottom:10px;font-weight:400;font-family:open sans,sans-serif;text-transform:uppercase;font-size:.9em;letter-spacing:1px;width:100%}.mainForm p{margin-bottom:10px}.mainForm .columns{display:grid;grid-template-columns:1fr 1fr;gap:0 20px}.mainForm .wpcf7-not-valid-tip{background-color:#ff08ad;font-size:.8em;text-transform:uppercase;text-align:center;color:#fff;padding:3px;border-radius:5px}.mainForm .wpcf7 form .wpcf7-response-output{margin:auto;text-transform:uppercase;border-width:5px;font-weight:600;font-size:.8em;line-height:1.3;padding:10px}.mainForm .wpcf7-spinner{display:none}.grecaptcha-badge{right:-2e3px!important}.ti-widget.ti-goog{margin-bottom:10px;padding-bottom:20px;border-bottom:solid 1px #eee}.beadv-automobile-summary>ul,.beadv-automobileGrid>ul,.relatedAutomobile__grid>ul{margin:0;padding:0 40px;display:flex;flex-wrap:wrap;justify-content:center;gap:60px}.beadv-automobile-summary>ul>li,.beadv-automobileGrid>ul>li,.relatedAutomobile__grid>ul>li{list-style:none}.beadv-single-summary{width:100%}.beadv-single-summary .beadv-pennelloCard{width:100%}.beadv-automobileCard{transition:all .2s ease-out}.beadv-automobileCard:hover{transform:scale(1.05)}.beadv-automobileCard>a{display:block;border:0;text-decoration:none}.beadv-automobileCard .beadvAutomobile__slogan{text-align:center;line-height:1;transform:rotate(-2deg)}.beadv-automobileCard .beadvAutomobile__slogan::after{content:"";background:url(https://youngtimeritalia.it/wp-content/themes/beadv-child-youngtimeritalia-20260226/assets/css/min/../../img/evidenziatore-giallo.svg);background-size:contain;background-position:50%;background-repeat:no-repeat;position:absolute;bottom:-20px;left:0;width:100%;height:70px;z-index:-1}.beadv-automobileCard .beadvAutomobile__slogan h4{text-shadow:6px 6px 0 #00dbc8;font-size:2.8em}.beadv-automobileCard .beadv-automobileCard__body{text-align:center}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__media{width:100%;height:200px;margin:0 0 15px;overflow:hidden;position:relative}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__media::after{content:"";background:url(https://youngtimeritalia.it/wp-content/themes/beadv-child-youngtimeritalia-20260226/assets/css/min/../../img/bgr-media-automobile.svg);background-size:contain;background-position:50%;background-repeat:no-repeat;position:absolute;left:0%;top:0%;width:100%;height:100%;z-index:-1}@media(max-width:640px){.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__media{height:120px}}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__media img{display:block;margin:auto;width:100%;height:100%;object-fit:contain}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .anno{color:#ff08ad;font-family:alata,sans-serif;font-size:1.2em;line-height:1.3;display:block}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts h3{font-family:alata,sans-serif;color:#000;font-weight:600;font-size:1.5em;padding-bottom:0;margin-bottom:10px}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .automobileCard__meta{margin-bottom:10px}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .automobileCard__meta li{margin-bottom:0;font-family:alata,sans-serif;color:#999;font-size:1.2em;line-height:1.3;display:block}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .prezzo{display:block;margin:auto;width:fit-content;clip-path:polygon(0 0,96% 16%,100% 70%,0 100%);background:#ffe500;padding:15px 21px 22px 15px;transform:rotate(-5deg);font-size:1.4em;font-family:alata,sans-serif}.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .siteButtons{transform:rotate(2deg);margin-top:-10px}.beadvSlider{margin-bottom:10px}@media(max-height:850px){.beadvSlider{--beadvSliderVh:auto !important;padding-top:30px}}.beadvSlider.beadvSlider--single .beadvSlider__controls{display:none}.beadvSlider .beadvSlide__content{flex-direction:column;gap:25px;padding-left:65px;padding-right:65px}.beadvSlider .beadvSlide__content *{color:#fff;margin-bottom:0}.beadvSlider .beadvSlide__content>*{margin-left:auto;margin-right:auto;max-width:980px}.beadvSlider .beadvSlide__content h1{font-size:1.6em;text-transform:uppercase;font-weight:800;letter-spacing:8px;margin-bottom:0;font-family:alatsi,sans-serif;border-bottom:solid 1px rgba(0,219,200,.5)}@media(max-width:980px){.beadvSlider .beadvSlide__content h1{font-size:1em}}.beadvSlider .beadvSlide__content h2{font-size:3em;line-height:1.1}@media(max-width:980px){.beadvSlider .beadvSlide__content h2{font-size:2.5em}}@media(max-width:480px){.beadvSlider .beadvSlide__content h2{font-size:2em}}.beadvSlider .beadvSlide__content p{text-transform:uppercase;opacity:.8;letter-spacing:2px;font-weight:600}@media(max-width:980px){.beadvSlider .beadvSlide__content p{font-size:.9em}}@media(max-width:480px){.beadvSlider .beadvSlide__content p{font-size:.7em}}.beadvSlider .beadvSlide__content .wp-block-buttons{margin:10px auto;align-items:center;justify-content:center}.beadvSlider .beadvSlide--overlay-dark .beadvSlide__content{background-color:rgba(55,219,0,.85)}.beadvSlider .beadvSlide--overlay-dark *{color:#fff}.beadvSlider .beadvSlide--overlay-light .beadvSlide__content{background-color:rgba(0,219,200,.8)}.beadvSlider .beadvSlide--overlay-light *{color:#37db00}.beadvSlider .beadvSlider__controls .beadvSlider__arrow{display:block;background:#ff08ad;padding:20px 30px 60px 20px;transition:all .2s ease-out}.beadvSlider .beadvSlider__controls .beadvSlider__arrow.beadvSlider__arrow--prev{left:0;clip-path:polygon(0 0,80% 0%,100% 80%,0 58%)}.beadvSlider .beadvSlider__controls .beadvSlider__arrow.beadvSlider__arrow--next{right:0;clip-path:polygon(0 0,100% 0%,100% 80%,14% 58%)}.beadvSlider .beadvSlider__controls .beadvSlider__arrow:hover{width:55px;height:55px;background:#00dbc8}.beadvSlider .beadvSlider__controls .beadvSlider__dots{width:fit-content;margin:auto;padding:10px;border-radius:5px;right:20px;left:auto}@media(max-width:1080px){.beadvSlider .beadvSlider__controls .beadvSlider__dots{left:0;right:0}}.beadvSlider .beadvSlider__controls .beadvSlider__dot{width:20px;height:25px;transform:rotate(8deg);clip-path:polygon(0 0,80% 0%,100% 80%,0 58%);border-radius:0;background:#ccc;transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out}.beadvSlider .beadvSlider__controls .beadvSlider__dot:hover{background:#37db00}.beadvSlider .beadvSlider__controls .beadvSlider__dot.is-active{background:#37db00}.beadvSlide__items--cards{padding:40px 60px;justify-items:center;gap:10px 40px;grid-template-columns:repeat(4,minmax(0,1fr));align-items:center;background:0 0;display:flex;justify-content:center}.beadvSlide__items--cards>.beadv-automobileCard{width:100%;height:100%;display:flex;flex-direction:column;justify-content:center}.beadvSlide__items--cards>.beadv-automobileCard a{border:0}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__link{color:#575756}.beadvSlide__items--cards>.beadv-automobileCard .beadvAutomobile__slogan h4{font-size:6em}@media(max-width:1280px){.beadvSlide__items--cards>.beadv-automobileCard .beadvAutomobile__slogan h4{font-size:5.5em}}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadvAutomobile__slogan h4{font-size:5em}}@media(max-width:800px){.beadvSlide__items--cards>.beadv-automobileCard .beadvAutomobile__slogan h4{font-size:4em}}@media(max-width:640px){.beadvSlide__items--cards>.beadv-automobileCard .beadvAutomobile__slogan h4{font-size:3em}}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body{max-width:1080px;margin:auto;display:flex;justify-content:center;flex-direction:row-reverse;gap:60px;padding-top:30px}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body{align-items:center;flex-direction:column;gap:10px}}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__media{width:70%;height:100%;margin:0}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__media{width:100%;max-width:320px}}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__media::after{left:-10%;top:-10%;width:120%;height:120%;z-index:-1}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts{width:40%;text-align:right;display:flex;flex-direction:column;align-items:flex-end}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts{width:100%;display:grid;grid-template-columns:48% 1fr;grid-template-rows:repeat(2,1fr);grid-column-gap:4%;grid-row-gap:0;align-items:baseline}}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts h3{font-size:3em}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts h3{font-size:2em;grid-area:1/1/3/2}}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts h3 .anno{margin-bottom:-10px;font-size:20px}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts h3 .anno{margin-bottom:-5px;font-size:15px}}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .automobileCard__meta{margin-bottom:30px}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .automobileCard__meta li{font-size:1.4em;margin-bottom:0}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .automobileCard__meta{display:none}}.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .prezzo{margin:inherit;font-size:2em}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .prezzo{grid-area:1/2/2/3;font-size:1.5em}}@media(max-width:1080px){.beadvSlide__items--cards>.beadv-automobileCard .beadv-automobileCard__body .beadv-automobileCard__texts .siteButtons{grid-area:2/2/3/3}}ul.beadv-mixed-list{list-style:none;padding:0;display:flex;gap:0 80px;justify-content:space-around;flex-wrap:wrap;max-width:1480px;padding:0 40px;margin:auto}@media(max-width:900px){ul.beadv-mixed-list{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:600px){ul.beadv-mixed-list{grid-template-columns:1fr}}ul.beadv-mixed-list a{border:0}ul.beadv-mixed-list>li{margin:0;list-style:none}ul.beadv-mixed-list>li>article{display:block;text-decoration:none;color:inherit;transition:all .2s ease-out}ul.beadv-mixed-list>li>article:hover{transform:scale(1.1)}ul.beadv-mixed-list>li>article .beadv-pages-item__media{width:180px;height:180px;position:relative;margin-bottom:20px;z-index:2}ul.beadv-mixed-list>li>article .beadv-pages-item__media img{display:block;margin:auto;width:100%;height:100%;object-fit:cover;border-radius:100%;overflow:hidden}ul.beadv-mixed-list>li>article .beadv-pages-item__body{display:grid;justify-items:center;gap:10px;padding:12px;position:relative}ul.beadv-mixed-list>li>article .beadv-pages-item__body::after{content:"";position:absolute;width:120%;left:-10%;height:250px;background:rgba(255,255,255,.4);clip-path:polygon(7% 19%,100% 0%,89% 80%,0 55%);z-index:0}ul.beadv-mixed-list>li>article .beadv-pages-item__body .beadv-pages-item__title{color:#fff;text-transform:uppercase;font-family:alatsi,sans-serif;letter-spacing:4px;font-size:1.2em;font-weight:200;margin-bottom:0}ul.beadv-mixed-list>li>article .beadv-pages-item__body .beadv-pages-item__excerpt{display:none}.ourServices{padding:60px 0;background:linear-gradient(90deg,#00DBC8 0%,#FF08AD 100%)}.ourServices .wp-block-group__inner-container>h2.wp-block-heading{font-family:alata,sans-serif;letter-spacing:5px;text-transform:uppercase;font-weight:200;color:#fff}.ourServices p{color:#fff;max-width:800px;margin:auto}.ourServices .beadv-mixed-summary{margin-top:80px}.ourServices .wp-block-buttons{margin-bottom:0}.newsList{width:100%;max-width:980px;margin:auto;padding:0 30px;display:grid;grid-template-columns:1fr 1fr 1fr;gap:40px;border-top:solid 1px #ddd;border-bottom:solid 1px #ddd;padding-bottom:20px;padding-top:40px;margin-bottom:30px}@media(max-width:1080px){.newsList{gap:20px}}@media(max-width:781px){.newsList{grid-template-columns:1fr;margin-bottom:20px;max-width:400px}}.newsList>li{position:relative}.newsList>li figure{height:400px;overflow:hidden}.newsList>li figure img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.newsList>li header{z-index:2;padding:20px;position:relative;display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-start}.newsList>li header h3{font-size:1.5em;line-height:1.3;font-weight:400;margin-bottom:15px;font-family:alata,sans-serif}.newsList>li header p{opacity:.9;color:#7a7b7b}.newsList>li header .blogDate{font-family:alata,sans-serif;color:#999;font-weight:600;margin-bottom:0}.newsList>li header .newsCategory{border-bottom:solid 1px #ccc;width:100%;text-transform:uppercase;font-size:.8em;font-weight:800;letter-spacing:3px;color:#7a7b7b;margin-bottom:20px;padding-bottom:5px}.newsList>li header .newsCategory li{display:inline-block}.newsList>li header .siteButtons{margin-top:30px}.newsList>li:hover{transition:all .2s ease-out;transform:scale(1.03)}.newsList>li:hover header::after{border-color:#ff08ad;background-color:#ff08ad}.newsListCat{width:100%;max-width:980px;margin:auto;padding:0 30px;display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;margin-bottom:50px;border-bottom:solid 1px #ccc;padding-bottom:40px}@media(max-width:640px){.newsListCat{grid-template-columns:1fr;margin-bottom:20px}}.newsListCat>li{position:relative}.newsListCat>li .item>a{display:flex;flex-wrap:wrap;align-items:center;gap:20px;padding:10px;border-radius:5px;background-color:#f6f6f6}.newsListCat>li .item>a figure{width:90px;height:60px;border-radius:5px;overflow:hidden}.newsListCat>li .item>a figure img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.newsListCat>li .item>a header{z-index:2;width:calc(100% - 112px);position:relative;display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-start}.newsListCat>li .item>a header h3{font-size:1em;text-transform:uppercase}.newsListCat>li .item>a:hover{background-color:#ddd}.newsListCat>li .item>a:hover h3{color:#ff08ad}.newsContainer{position:relative;width:100%;margin-bottom:80px;padding-bottom:20px}@media(max-width:980px){.newsContainer{margin-bottom:60px}}.newsContainer .wp-block-group__inner-container>h2.wp-block-heading{font-family:alata,sans-serif;letter-spacing:5px;text-transform:uppercase;font-weight:200;color:#999}.newsContainer .buttonsContainer{justify-content:center}.newsContainer .buttonsContainer .siteButtons{background:#00dbc8;color:#fff}.newsContainer .buttonsContainer .siteButtons:hover{background:#ff08ad;color:#fff}ul.beadv-posts-list{list-style:none;display:flex;gap:40px 80px;flex-wrap:wrap;justify-content:space-evenly}ul.beadv-posts-list>li.beadv-posts-list__item{list-style:none}@media(max-width:1024px){ul.beadv-posts-list{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){ul.beadv-posts-list{grid-template-columns:1fr}}.beadv-posts-list__item{width:350px}.beadv-posts-list__item .beadv-posts-item{position:relative;transition:all .2s ease-out}.beadv-posts-list__item .beadv-posts-item:hover{transform:scale(1.05)}.beadv-posts-list__item .beadv-posts-item .beadv-posts-item__media{position:relative;border-radius:0;line-height:0;width:100%;height:260px;transform:rotate(-2deg)}.beadv-posts-list__item .beadv-posts-item .beadv-posts-item__media img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.beadv-posts-list__item .beadv-posts-item .beadv-posts-item__media::after{content:'';position:absolute;width:110%;left:-17%;height:162%;top:-8%;z-index:-1;clip-path:polygon(7% 19%,100% 0%,89% 80%,0 55%);transform:translate(20px,-20px)rotate(-2deg);background:#00dbc8}.beadv-posts-list__item .beadv-posts-item .beadv-posts-item__texts{position:relative;display:grid;gap:10px;margin-top:30px}.beadv-posts-list__item .beadv-posts-item .beadv-posts-item__date{color:#999;font-weight:800;font-family:alata,sans-serif;letter-spacing:2px}.beadv-posts-list__item .beadv-posts-item .beadv-posts-item__title{margin:0;font-size:1.6em;line-height:1.3;color:#000;text-transform:uppercase;margin-bottom:10px}.beadv-posts-list__item .beadv-posts-item .beadv-posts-item__excerpt p{margin-bottom:20px;color:#7a7b7b}.beadv-posts-list__item .beadv-posts-item .siteButtons{background:#00dbc8;color:#fff}.beadv-posts-list__item .beadv-posts-item .siteButtons:hover{background:#ff08ad}.beadv-posts-list__item:nth-child(odd) .beadv-posts-item__media{transform:rotate(2deg)}.beadv-posts-list__item:nth-child(odd) .beadv-posts-item__media::after{transform:translate(20px,-20px)rotate(2deg);background:#ff08ad}.beadv-posts-list__item:nth-child(odd) .siteButtons{background:#ff08ad;color:#fff}.beadv-posts-list__item:nth-child(odd) .siteButtons:hover{background:#00dbc8}.eventsContainer{position:relative;width:100%;margin-bottom:80px;padding-bottom:20px}@media(max-width:980px){.eventsContainer{margin-bottom:60px}}.eventsContainer .wp-block-group__inner-container>h2.wp-block-heading{font-family:alata,sans-serif;letter-spacing:5px;text-transform:uppercase;font-weight:200;color:#999}.eventsContainer .buttonsContainer{justify-content:center}.eventsContainer .buttonsContainer .siteButtons{background:#00dbc8;color:#fff}.eventsContainer .buttonsContainer .siteButtons:hover{background:#ff08ad;color:#fff}.dateTimeContainer{display:flex;gap:40px;margin-bottom:10px}.dateTimeContainer *{color:#fff}.dateTimeContainer .dayName,.dateTimeContainer .month,.dateTimeContainer .timeType{display:none}.dateTimeContainer .dateTimeFrom{transform:rotate(-2deg);background-color:#37db00;position:relative}.dateTimeContainer .dateTimeFrom::after{content:'>';position:absolute;right:-34px;top:45%;font-family:alatsi,sans-serif;font-size:45px;line-height:0;color:#000}.dateTimeContainer .dateTimeTo{transform:rotate(2deg);background-color:#ffe500}.dateTimeContainer .dateTime{display:flex;flex-direction:column;padding:5px 10px;width:80px}.dateTimeContainer .dateTime .date,.dateTimeContainer .dateTime .time{text-align:center}.dateTimeContainer .dateTime .date{border-bottom:solid 2px rgba(255,255,255,.5)}.dateTimeContainer .dateTime .time{line-height:1.4}.dateTimeContainer .dateTime .dayNameShort{display:block;text-transform:uppercase;font-size:.7em}.dateTimeContainer .dateTime .day{display:block;font-size:33px;line-height:.8;font-family:alatsi,sans-serif}.dateTimeContainer .dateTime .monthShort{text-transform:uppercase;font-size:.7em;padding-right:2px}.dateTimeContainer .dateTime .year{text-transform:uppercase;font-size:.7em;padding-left:2px}.dateTimeContainer .dateTime .hours{text-transform:uppercase;font-size:.7em;padding-left:2px}.dateTimeContainer .dateTime .hours::after{content:':'}.dateTimeContainer .dateTime .minutes{text-transform:uppercase;font-size:.7em;padding-left:2px}ul.beadv-evento-list{list-style:none;display:flex;gap:40px 80px;flex-wrap:wrap;justify-content:space-evenly}ul.beadv-evento-list>li.beadv-evento-list__item{list-style:none}@media(max-width:1024px){ul.beadv-evento-list{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){ul.beadv-evento-list{grid-template-columns:1fr}}.beadv-evento-list__item{width:350px}.beadv-evento-list__item .beadv-evento-item{position:relative;transition:all .2s ease-out}.beadv-evento-list__item .beadv-evento-item:hover{transform:scale(1.05)}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__address{font-weight:800;display:block;border-bottom:solid 3px #ccc;padding-bottom:10px}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__media{position:relative;border-radius:0;line-height:0;width:100%;height:260px;transform:rotate(-2deg)}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__media img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__media::after{content:'';position:absolute;width:110%;left:-17%;height:162%;top:-8%;z-index:-1;clip-path:polygon(7% 19%,100% 0%,89% 80%,0 55%);transform:translate(20px,-20px)rotate(-2deg);background:#00dbc8}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__texts{position:relative;display:grid;gap:10px;margin-top:-20px}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__date{color:#999;font-weight:800;font-family:alata,sans-serif;letter-spacing:2px}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__title{margin:0;font-size:1.6em;line-height:1.3;color:#000;text-transform:uppercase;margin-bottom:10px}.beadv-evento-list__item .beadv-evento-item .beadv-evento-item__excerpt p{margin-bottom:20px;color:#7a7b7b}.beadv-evento-list__item .beadv-evento-item .siteButtons{background:#00dbc8;color:#fff}.beadv-evento-list__item .beadv-evento-item .siteButtons:hover{background:#ff08ad}.beadv-evento-list__item:nth-child(odd) .beadv-evento-item__media{transform:rotate(2deg)}.beadv-evento-list__item:nth-child(odd) .beadv-evento-item__media::after{transform:translate(20px,-20px)rotate(2deg);background:#ff08ad}.beadv-evento-list__item:nth-child(odd) .siteButtons{background:#ff08ad;color:#fff}.beadv-evento-list__item:nth-child(odd) .siteButtons:hover{background:#00dbc8}.pageDefault,.pageDetailAutomobiliList{position:relative}.pageDefault .mainArticleHeader,.pageDetailAutomobiliList .mainArticleHeader{width:100%;height:350px;position:relative;margin-bottom:20px}@media(max-width:1200px){.pageDefault .mainArticleHeader,.pageDetailAutomobiliList .mainArticleHeader{height:280px}}@media(max-width:768px){.pageDefault .mainArticleHeader,.pageDetailAutomobiliList .mainArticleHeader{height:180px}}.pageDefault .mainArticleHeader .mainImage,.pageDetailAutomobiliList .mainArticleHeader .mainImage{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.pageDefault .mainArticleHeader .mainImage img,.pageDetailAutomobiliList .mainArticleHeader .mainImage img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.pageDefault .mainArticleHeader .headerTexts,.pageDetailAutomobiliList .mainArticleHeader .headerTexts{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:1;color:#ff08ad;text-align:center;padding:20px;display:flex;flex-direction:column;justify-content:center;flex-wrap:nowrap;align-items:center;gap:30px;background:rgba(255,229,0,.8);clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.pageDefault .mainArticleHeader .headerTexts h1,.pageDetailAutomobiliList .mainArticleHeader .headerTexts h1{font-size:2.5em;line-height:1.2;font-family:alata,sans-serif;letter-spacing:4px;font-weight:800;text-transform:uppercase;max-width:980px;text-shadow:6px 6px 0 #00dbc8}@media(max-width:768px){.pageDefault .mainArticleHeader .headerTexts h1,.pageDetailAutomobiliList .mainArticleHeader .headerTexts h1{font-size:2.2em}}@media(max-width:480px){.pageDefault .mainArticleHeader .headerTexts h1,.pageDetailAutomobiliList .mainArticleHeader .headerTexts h1{font-size:2em}}.pageDefault .mainArticleHeader .headerTexts h2,.pageDetailAutomobiliList .mainArticleHeader .headerTexts h2{line-height:1.4;max-width:768px;font-weight:400;letter-spacing:.5px;font-size:1.2em;font-family:alata,sans-serif}@media(max-width:768px){.pageDefault .mainArticleHeader .headerTexts h2,.pageDetailAutomobiliList .mainArticleHeader .headerTexts h2{letter-spacing:0}}@media(max-width:480px){.pageDefault .mainArticleHeader .headerTexts h2,.pageDetailAutomobiliList .mainArticleHeader .headerTexts h2{font-size:1.1em}}.pageDefault .mainArticleHeader .headerTexts .articleInfo,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .articleInfo{margin-bottom:30px}@media(max-width:1024px){.pageDefault .mainArticleHeader .headerTexts .articleInfo,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .articleInfo{margin-bottom:10px}}@media(max-width:768px){.pageDefault .mainArticleHeader .headerTexts .articleInfo,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .articleInfo{flex-direction:column;gap:10px}}.pageDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .articleInfo .articleCategory{text-transform:uppercase;font-size:.9em;font-weight:600;font-family:jost,sans-serif;display:flex;align-items:center;gap:6px}.pageDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory i,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .articleInfo .articleCategory i{color:#fff;margin-right:10px;font-size:1.5em}.pageDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory ul,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .articleInfo .articleCategory ul{display:flex;flex-wrap:wrap;align-items:center;gap:0 15px}.pageDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory ul li a:hover,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .articleInfo .articleCategory ul li a:hover{color:#ff08ad}.pageDefault .mainArticleHeader .headerTexts .socialShare,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .socialShare{margin-top:20px}.pageDefault .mainArticleHeader .headerTexts .socialShare ul,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .socialShare ul{justify-content:center}.pageDefault .mainArticleHeader .headerTexts .socialShare ul li a,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .socialShare ul li a{color:#fff;border-color:#fff}.pageDefault .mainArticleHeader .headerTexts .socialShare ul li a:hover,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .socialShare ul li a:hover{background-color:#fff;color:#000}.pageDefault .mainArticleHeader .headerTexts .buttonsContainer,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .buttonsContainer{justify-content:center;margin-top:20px}.pageDefault .mainArticleHeader .headerTexts .siteButtons,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .siteButtons{background:#00dbc8;color:#ff08ad}.pageDefault .mainArticleHeader .headerTexts .siteButtons:hover,.pageDetailAutomobiliList .mainArticleHeader .headerTexts .siteButtons:hover{background:#ffe500}.postDefault{position:relative}.postDefault .mainArticleHeader{width:100%;position:relative;margin-bottom:40px;display:flex}@media(max-width:1200px){.postDefault .mainArticleHeader{margin-top:10px}}@media(max-width:480px){.postDefault .mainArticleHeader{flex-direction:column}}.postDefault .mainArticleHeader .mainImage{width:50%;clip-path:polygon(0 0,100% 0,100% 100%,0 80%);position:relative;z-index:2}@media(max-width:480px){.postDefault .mainArticleHeader .mainImage{width:100%;clip-path:polygon(0 0,100% 30%,100% 100%,0 70%);margin-top:-108px}}.postDefault .mainArticleHeader .mainImage img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.postDefault .mainArticleHeader .headerTexts{width:50%;position:relative;z-index:1;color:#ff08ad;text-align:center;padding:110px 20px 180px;display:flex;flex-direction:column;justify-content:center;flex-wrap:nowrap;align-items:center;gap:30px;background:#00dbc8;clip-path:polygon(0 0,100% 0,100% 100%,0 80%)}@media(max-width:1200px){.postDefault .mainArticleHeader .headerTexts{padding:60px 20px 130px}}@media(max-width:480px){.postDefault .mainArticleHeader .headerTexts{width:100%}}.postDefault .mainArticleHeader .headerTexts h1{font-size:3.5em;line-height:1.2;font-family:alata,sans-serif;letter-spacing:4px;font-weight:800;text-transform:uppercase;max-width:980px;text-shadow:4px 4px 0 #000}@media(max-width:768px){.postDefault .mainArticleHeader .headerTexts h1{font-size:2.2em}}@media(max-width:480px){.postDefault .mainArticleHeader .headerTexts h1{font-size:2em}}.postDefault .mainArticleHeader .headerTexts h2{line-height:1.4;max-width:768px;font-weight:400;letter-spacing:.5px;font-size:1.2em;font-family:alata,sans-serif}@media(max-width:768px){.postDefault .mainArticleHeader .headerTexts h2{letter-spacing:0}}@media(max-width:480px){.postDefault .mainArticleHeader .headerTexts h2{font-size:1.1em}}@media(max-width:1024px){.postDefault .mainArticleHeader .headerTexts .articleInfo{margin-bottom:0}}@media(max-width:768px){.postDefault .mainArticleHeader .headerTexts .articleInfo{flex-direction:column;gap:10px}}.postDefault .mainArticleHeader .headerTexts .articleInfo .articleDate{font-weight:800;display:block;color:#fff}@media(max-width:768px){.postDefault .mainArticleHeader .headerTexts .articleInfo .articleDate{padding-right:0}}.postDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory{text-transform:uppercase;font-size:.9em;font-weight:600;font-family:jost,sans-serif;display:flex;align-items:center;gap:6px}.postDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory i{color:#fff;margin-right:10px;font-size:1.5em}.postDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory ul{display:flex;flex-wrap:wrap;align-items:center;gap:0 15px}.postDefault .mainArticleHeader .headerTexts .articleInfo .articleCategory ul li a:hover{color:#ff08ad}.postDefault .mainArticleHeader .headerTexts .articleInfo .dateTimeContainer{justify-content:center}.postDefault .mainArticleHeader .headerTexts .articleInfo .place .eventoMeta__address{font-weight:800;display:block;color:#fff}.postDefault .mainArticleHeader .headerTexts .articleInfo .place .eventoMeta__maps{text-transform:uppercase;font-size:.9em}.postDefault .mainArticleHeader .headerTexts .socialShare{margin-top:20px}.postDefault .mainArticleHeader .headerTexts .socialShare ul{justify-content:center}.postDefault .mainArticleHeader .headerTexts .socialShare ul li a{color:#fff;border-color:#fff}.postDefault .mainArticleHeader .headerTexts .socialShare ul li a:hover{background-color:#fff;color:#000}.postDefault .mainArticleHeader .headerTexts .buttonsContainer{justify-content:center;margin-top:20px}.postDefault .mainArticleHeader .headerTexts .siteButtons{background:#00dbc8;color:#ff08ad}.postDefault .mainArticleHeader .headerTexts .siteButtons:hover{background:#ffe500}.postDefault .articleAuthor{display:flex;align-items:center;justify-content:center;gap:12px;flex-wrap:wrap;font-family:open sans,sans-serif;font-size:.95em;line-height:1.4;color:#fff;letter-spacing:.4px}.postDefault .articleAuthor .articleAuthor__avatar{width:48px;height:48px;flex:0 0 48px;border-radius:50%;overflow:hidden;background:rgba(255,255,255,.15)}.postDefault .articleAuthor .articleAuthor__avatar img{border:solid 3px #fff;display:block;width:100%;height:100%;object-fit:cover;border-radius:50%}.postDefault .articleAuthor .articleAuthor__texts{display:flex;align-items:baseline;justify-content:center;gap:6px;flex-wrap:wrap}.postDefault .articleAuthor .articleAuthor__label{opacity:.75}.postDefault .articleAuthor .articleAuthor__name{font-weight:700;color:#ff08ad}.postDefault .articleReadingTime{border-top:solid 1px #fff;max-width:980px;margin:5px auto 0;padding:5px 20px 0;font-family:open sans,sans-serif;font-size:.8em;line-height:1.5;color:#7a7b7b;text-align:left;text-transform:uppercase;letter-spacing:2px}.postDefault .articleReadingTime .articleReadingTime__label{font-weight:600;color:#fff}.postDefault .articleReadingTime .articleReadingTime__value{color:#fff}.pageContactUs{position:relative}.pageContactUs .mainArticleHeader{width:100%;height:350px;position:relative;margin-bottom:20px}@media(max-width:1200px){.pageContactUs .mainArticleHeader{height:280px}}@media(max-width:768px){.pageContactUs .mainArticleHeader{height:180px}}.pageContactUs .mainArticleHeader .mainImage{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.pageContactUs .mainArticleHeader .mainImage img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.pageContactUs .mainArticleHeader .headerTexts{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:1;color:#ff08ad;text-align:center;padding:20px;display:flex;flex-direction:column;justify-content:center;flex-wrap:nowrap;align-items:center;gap:30px;background:rgba(255,229,0,.8);clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.pageContactUs .mainArticleHeader .headerTexts h1{font-size:2.5em;line-height:1.2;font-family:alata,sans-serif;letter-spacing:4px;font-weight:800;text-transform:uppercase;max-width:980px;text-shadow:6px 6px 0 #00dbc8}@media(max-width:768px){.pageContactUs .mainArticleHeader .headerTexts h1{font-size:2.2em}}@media(max-width:480px){.pageContactUs .mainArticleHeader .headerTexts h1{font-size:2em}}.pageContactUs .mainArticleHeader .headerTexts h2{line-height:1.4;max-width:768px;font-weight:400;letter-spacing:.5px;font-size:1.2em;font-family:alata,sans-serif}@media(max-width:768px){.pageContactUs .mainArticleHeader .headerTexts h2{letter-spacing:0}}@media(max-width:480px){.pageContactUs .mainArticleHeader .headerTexts h2{font-size:1.1em}}.pageContactUs .mainArticleHeader .headerTexts .articleInfo{margin-bottom:30px}@media(max-width:1024px){.pageContactUs .mainArticleHeader .headerTexts .articleInfo{margin-bottom:10px}}@media(max-width:768px){.pageContactUs .mainArticleHeader .headerTexts .articleInfo{flex-direction:column;gap:10px}}.pageContactUs .mainArticleHeader .headerTexts .articleInfo .articleCategory{text-transform:uppercase;font-size:.9em;font-weight:600;font-family:jost,sans-serif;display:flex;align-items:center;gap:6px}.pageContactUs .mainArticleHeader .headerTexts .articleInfo .articleCategory i{color:#fff;margin-right:10px;font-size:1.5em}.pageContactUs .mainArticleHeader .headerTexts .articleInfo .articleCategory ul{display:flex;flex-wrap:wrap;align-items:center;gap:0 15px}.pageContactUs .mainArticleHeader .headerTexts .articleInfo .articleCategory ul li a:hover{color:#ff08ad}.pageContactUs .mainArticleHeader .headerTexts .socialShare{margin-top:20px}.pageContactUs .mainArticleHeader .headerTexts .socialShare ul{justify-content:center}.pageContactUs .mainArticleHeader .headerTexts .socialShare ul li a{color:#fff;border-color:#fff}.pageContactUs .mainArticleHeader .headerTexts .socialShare ul li a:hover{background-color:#fff;color:#000}.pageContactUs .mainArticleHeader .headerTexts .buttonsContainer{justify-content:center;margin-top:20px}.pageContactUs .mainArticleHeader .headerTexts .siteButtons{background:#00dbc8;color:#ff08ad}.pageContactUs .mainArticleHeader .headerTexts .siteButtons:hover{background:#ffe500}.beadvAutomobileSingle .beadvAutomobileSingle__header{display:flex;align-items:center;justify-content:center;gap:40px;padding:40px 40px 80px;position:relative;margin-bottom:60px}@media(max-width:980px){.beadvAutomobileSingle .beadvAutomobileSingle__header{flex-direction:column-reverse;padding:40px 20px 80px}}.beadvAutomobileSingle .beadvAutomobileSingle__header::after{content:'';position:absolute;height:40px;width:100%;bottom:0;background:linear-gradient(90deg,#00DBC8 0%,#FF08AD 100%);clip-path:polygon(100% 40%,0 0,0 100%,100% 54%)}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left{display:flex;flex-direction:column;align-items:flex-end}@media(max-width:980px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left{align-items:center}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left h1{font-family:alata,sans-serif;color:#000;font-weight:600;font-size:3em;padding-bottom:0;margin-bottom:10px;text-align:right}@media(max-width:980px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left h1{text-align:center}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left h1 .anno{color:#ff08ad;font-family:alata,sans-serif;font-size:20px;line-height:1.3;display:block}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__meta{text-align:right}@media(max-width:980px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__meta{text-align:center}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__meta ul{margin-bottom:20px}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__meta ul li{font-family:alata,sans-serif;color:#999;font-size:1.2em;line-height:1.3;display:block}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__specs{padding:20px;background-color:rgba(0,0,0,5%);max-width:800px;text-align:right}@media(max-width:980px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__specs{text-align:left}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__specs h4.beadvAutomobileSingle__specsTitle{text-transform:uppercase;font-weight:800;margin-bottom:10px}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__specs .beadvAutomobileSingle__specRow{font-size:.8em;display:flex;justify-content:flex-end;align-items:center;gap:10px;text-transform:uppercase;border-bottom:solid 1px rgba(0,0,0,.1);padding-bottom:3px;margin-bottom:3px}@media(max-width:1080px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__specs .beadvAutomobileSingle__specRow{justify-content:flex-start}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__specs .beadvAutomobileSingle__specRow dt{color:#000}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_left .beadvAutomobileSingle__specs .beadvAutomobileSingle__specRow span.colorChip{width:15px;height:15px;margin-top:-3px;margin-left:5px;display:inline-block;vertical-align:middle;border-radius:100%;border:solid 2px #ccc}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right{display:flex;align-items:center;flex-direction:column;gap:20px}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobile__slogan{text-align:center;line-height:1;transform:rotate(-2deg)}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobile__slogan::after{content:"";background:url(https://youngtimeritalia.it/wp-content/themes/beadv-child-youngtimeritalia-20260226/assets/css/min/../../img/evidenziatore-giallo.svg);background-size:contain;background-position:50%;background-repeat:no-repeat;position:absolute;bottom:-20px;left:0;width:100%;height:70px;z-index:-1}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobile__slogan h4{text-shadow:6px 6px 0 #00dbc8;font-size:3.8em}@media(max-width:640px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobile__slogan h4{font-size:3em}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right figure{width:100%;position:relative;max-width:650px}@media(max-width:980px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right figure{max-width:550px}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right figure::after{content:"";background:url(https://youngtimeritalia.it/wp-content/themes/beadv-child-youngtimeritalia-20260226/assets/css/min/../../img/bgr-media-automobile.svg);background-size:contain;background-position:50%;background-repeat:no-repeat;position:absolute;left:0%;top:0%;width:100%;height:100%;z-index:-1}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right figure img{display:block;margin:auto;width:100%;height:100%;object-fit:contain}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobileSingle__header_right_bottom{display:flex;flex-wrap:wrap;justify-content:center;margin-top:-80px}@media(max-width:640px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobileSingle__header_right_bottom{margin-top:-40px}}.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobileSingle__header_right_bottom .prezzo{display:block;width:fit-content;clip-path:polygon(0 0,96% 16%,100% 70%,0 100%);background:#ffe500;padding:15px 21px 22px 15px;transform:rotate(-5deg);margin-right:-30px;z-index:2;font-size:2em;font-family:alata,sans-serif}@media(max-width:640px){.beadvAutomobileSingle .beadvAutomobileSingle__header .beadvAutomobileSingle__header_right .beadvAutomobileSingle__header_right_bottom .prezzo{font-size:1.7em}}.pageError{position:relative;text-align:center;min-height:60vh;display:flex;justify-content:center;align-items:center}@media(max-width:980px){.pageError{font-size:.8em}}.pageError header{width:100%;max-width:980px;margin:auto;padding:0 30px;border:0;font-family:open sans,sans-serif}.pageError header .icon{font-size:4em;margin:auto;margin-bottom:5px;color:#fff;z-index:2;display:block;position:relative;width:120px;height:120px;background:#ff08ad;border-radius:100%;display:flex;align-items:center;justify-content:center}.pageError header h1{margin-bottom:50px;font-size:7.5em;font-weight:600;color:#ff08ad}.pageError header p{font-size:1.4em;line-height:1.4;text-transform:uppercase}.pageError header p a{font-weight:600}a,input{transition:color .4s ease-out,opacity .4s ease-out,background .4s ease-out}.animateEntrance.bounce.animated{animation:bounce;animation-duration:1s}.animateEntrance.flash.animated{animation:flash;animation-duration:1.5s}.animateEntrance.pulse.animated{animation:pulse;animation-duration:1s}.animateEntrance.rubberBand.animated{animation:rubberBand;animation-duration:1s}.animateEntrance.shakeX.animated{animation:shakeX;animation-duration:1s}.animateEntrance.shakeY.animated{animation:shakeY;animation-duration:1s}.animateEntrance.headShake.animated{animation:headShake;animation-duration:1s}.animateEntrance.swing.animated{animation:swing;animation-duration:1s}.animateEntrance.tada.animated{animation:tada;animation-duration:1s}.animateEntrance.wobble.animated{animation:wobble;animation-duration:1s}.animateEntrance.jello.animated{animation:jello;animation-duration:1s}.animateEntrance.heartBeat.animated{animation:heartBeat;animation-duration:1s}@media print{body.page-template-page-menu .mainArticleHeader{height:auto;position:absolute;top:120px;background:0 0;padding:0}body.page-template-page-menu .mainArticleHeader .headerTexts{background:0 0;position:static;height:auto;padding:0}body.page-template-page-menu .mainArticleHeader .headerTexts *{display:none}body.page-template-page-menu .mainArticleHeader .headerTexts h1{color:#7a7b7b;display:block;font-size:2em}body.page-template-page-menu .mainArticleHeader .mainImage{display:none}body.page-template-page-menu header.headerMain .burgerMenu{display:none}body.page-template-page-menu .pageDetailMenu .menuContainer{padding:120px 0 0;margin:0 auto;border:0;max-width:80%}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory{min-height:100px;margin-bottom:30px;height:calc(100vh - 85px)}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li .itemDish header .dishContents{display:block}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory>figure{display:none}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts{width:100%;padding:0;margin:0;height:calc(100vh - 85px);text-align:center}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts>h3{font-size:3em;margin-bottom:40px}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li{margin-bottom:20px;padding-bottom:5px}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li .itemDish header h4{font-size:1.6em;margin-bottom:0}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li .itemDish header .dishAllergens{padding-top:2px}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li .itemDish header .dishDescription{display:block;font-size:1.1em;line-height:1.5;margin-bottom:5px}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li .itemDish header .dishDescription a{color:#575756;font-weight:400}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li .itemDish header .dishPrice{width:100%;border:0;padding:0;font-size:1.8em;font-weight:600;text-align:center;margin-top:5px}body.page-template-page-menu .pageDetailMenu .menuContainer .dishCategory .texts ul li .itemDish header .dishContents{align-items:flex-start}body.page-template-page-menu .typography{display:none}body.page-template-page-menu .mainFooter{display:none}body.page-template-page-menu .credits{display:none}}
.ytiWooArchive{width:100%}.ytiWooArchive .site-main{width:100%}.ytiWooArchive .ytiWooArchiveHeader{width:100%;height:350px;position:relative;margin-bottom:20px;margin-bottom:0}@media(max-width:1200px){.ytiWooArchive .ytiWooArchiveHeader{height:280px}}@media(max-width:768px){.ytiWooArchive .ytiWooArchiveHeader{height:180px}}.ytiWooArchive .ytiWooArchiveHeader .mainImage{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.ytiWooArchive .ytiWooArchiveHeader .mainImage img{display:block;margin:auto;width:100%;height:100%;object-fit:cover}.ytiWooArchive .ytiWooArchiveHeader .headerTexts{position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;z-index:1;color:#ff08ad;text-align:center;padding:20px;display:flex;flex-direction:column;justify-content:center;flex-wrap:nowrap;align-items:center;gap:30px;background:rgba(255,229,0,.8);clip-path:polygon(0 0,100% 0,100% 100%,0 70%)}.ytiWooArchive .ytiWooArchiveHeader .headerTexts h1{font-size:2.5em;line-height:1.2;font-family:alata,sans-serif;letter-spacing:4px;font-weight:800;text-transform:uppercase;max-width:980px;text-shadow:6px 6px 0 #00dbc8}@media(max-width:768px){.ytiWooArchive .ytiWooArchiveHeader .headerTexts h1{font-size:2.2em}}@media(max-width:480px){.ytiWooArchive .ytiWooArchiveHeader .headerTexts h1{font-size:2em}}.ytiWooArchive .ytiWooArchiveHeader .headerTexts h2{line-height:1.4;max-width:768px;font-weight:400;letter-spacing:.5px;font-size:1.2em;font-family:alata,sans-serif}@media(max-width:768px){.ytiWooArchive .ytiWooArchiveHeader .headerTexts h2{letter-spacing:0}}@media(max-width:480px){.ytiWooArchive .ytiWooArchiveHeader .headerTexts h2{font-size:1.1em}}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .articleInfo{margin-bottom:30px}@media(max-width:1024px){.ytiWooArchive .ytiWooArchiveHeader .headerTexts .articleInfo{margin-bottom:10px}}@media(max-width:768px){.ytiWooArchive .ytiWooArchiveHeader .headerTexts .articleInfo{flex-direction:column;gap:10px}}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .articleInfo .articleCategory{text-transform:uppercase;font-size:.9em;font-weight:600;font-family:jost,sans-serif;display:flex;align-items:center;gap:6px}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .articleInfo .articleCategory i{color:#fff;margin-right:10px;font-size:1.5em}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .articleInfo .articleCategory ul{display:flex;flex-wrap:wrap;align-items:center;gap:0 15px}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .articleInfo .articleCategory ul li a:hover{color:#ff08ad}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .socialShare{margin-top:20px}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .socialShare ul{justify-content:center}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .socialShare ul li a{color:#fff;border-color:#fff}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .socialShare ul li a:hover{background-color:#fff;color:#000}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .buttonsContainer{justify-content:center;margin-top:20px}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .siteButtons{background:#00dbc8;color:#ff08ad}.ytiWooArchive .ytiWooArchiveHeader .headerTexts .siteButtons:hover{background:#ffe500}.ytiWooArchive .ytiWooArchiveHeader .mainImage{background:#000}.ytiWooArchive .ytiWooArchiveHeader .mainImage img{opacity:.72}.ytiWooArchive .ytiWooArchiveHeader .headerTexts h1,.ytiWooArchive .ytiWooArchiveHeader .headerTexts h2{letter-spacing:0}.ytiWooArchive .ytiWooArchiveHeader .headerTexts h2{color:#000}.ytiWooArchive__catalog{width:min(1240px,calc(100% - 48px));margin:0 auto;padding:64px 0 80px}.ytiMacchinineArchiveIntro{display:grid;grid-template-columns:minmax(220px,.72fr)minmax(0,2fr);gap:48px;align-items:start;margin:0 0 42px;padding:0 0 34px;border-bottom:1px solid #ddd}.ytiMacchinineArchiveIntro__heading{position:sticky;top:28px}.ytiMacchinineArchiveIntro__heading h2{margin:0 0 12px;color:#000;font-family:alata,sans-serif;font-size:2rem;line-height:1.08;text-transform:uppercase}.ytiMacchinineArchiveIntro__heading>p:last-child{max-width:330px;margin:0;color:#575756;font-size:.96rem;line-height:1.55}.ytiMacchinineArchiveIntro__kicker{margin:0 0 8px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.78rem;font-weight:700;text-transform:uppercase}.ytiMacchinineFilters{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px}.ytiMacchinineFilters__group{min-width:0;padding:0 0 0 18px;border-left:4px solid #00dbc8}.ytiMacchinineFilters__group h2{margin:0 0 14px;color:#000;font-family:alatsi,sans-serif;font-size:.82rem;text-transform:uppercase}.ytiMacchinineFilters__group ul{display:flex;flex-wrap:wrap;gap:7px;margin:0;padding:0;list-style:none}.ytiMacchinineFilters__group a{display:inline-flex;align-items:center;min-height:32px;padding:7px 10px;background:#f6f6f6;color:#000;font-family:alatsi,sans-serif;font-size:.75rem;font-weight:700;line-height:1.15;text-decoration:none;text-transform:uppercase;transition:background-color .2s ease,color .2s ease}.ytiMacchinineFilters__group a.is-current,.ytiMacchinineFilters__group a:hover,.ytiMacchinineFilters__group a:focus-visible{background:#ffe500;color:#000}.ytiWooArchive .woocommerce-notices-wrapper:not(:empty),.yti-woocommerce .woocommerce-notices-wrapper:not(:empty){margin-bottom:24px}.ytiWooArchive .woocommerce-result-count{float:none;margin:0;color:#000;font-family:alatsi,sans-serif;font-size:1rem;font-weight:800;line-height:1.2;text-transform:uppercase}.ytiWooArchive .woocommerce-ordering{position:relative;float:none;margin:0;box-shadow:5px 5px #00DBC8;transition:box-shadow .2s ease,transform .2s ease}.ytiWooArchive .woocommerce-ordering::before{content:"";position:absolute;z-index:1;top:2px;right:2px;bottom:2px;width:44px;background:#ffe500;pointer-events:none}.ytiWooArchive .woocommerce-ordering::after{content:"";position:absolute;z-index:2;top:50%;right:18px;width:9px;height:9px;border-right:2px solid #000;border-bottom:2px solid #000;transform:translateY(-70%)rotate(45deg);pointer-events:none}.ytiWooArchive .woocommerce-ordering:focus-within{box-shadow:5px 5px #FF08AD;transform:translate(-1px,-1px)}.ytiWooArchive .woocommerce-ordering select{min-height:48px;padding:8px 58px 8px 16px;border:2px solid #000;border-radius:0;background-color:#fff;color:#000;font-family:alatsi,sans-serif;font-size:.76rem;font-weight:700;text-transform:uppercase;cursor:pointer;appearance:none;-webkit-appearance:none}.ytiWooArchive .woocommerce-ordering select:focus-visible{outline:3px solid rgba(255,8,173,.35);outline-offset:3px}.ytiWooArchive .woocommerce-result-count+.woocommerce-ordering{margin-left:auto}.ytiWooArchive .woocommerce-result-count,.ytiWooArchive .woocommerce-ordering{display:inline-flex;align-items:center;min-height:42px;margin-bottom:28px}.ytiWooArchive ul.products{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px;clear:both;margin:0!important;padding:0!important}.ytiWooArchive ul.products::before,.ytiWooArchive ul.products::after{content:none!important}.ytiWooArchive ul.products li.product.ytiProductCard,.yti-woocommerce .related ul.products li.product.ytiProductCard{float:none!important;width:auto!important;min-width:0;margin:0!important;padding:0;background:0 0;list-style:none}.ytiProductCard__inner{height:100%;display:flex;flex-direction:column;overflow:hidden;background:#fff;border:1px solid #eee;box-shadow:0 14px 34px rgba(0,0,0,7%);transition:transform .22s ease,box-shadow .22s ease}.ytiProductCard__inner:hover{transform:translateY(-5px);box-shadow:0 20px 42px rgba(0,0,0,.13)}.ytiProductCard__media{position:relative;display:block;aspect-ratio:4/3;overflow:hidden;background:#f6f6f6}.ytiProductCard__media img{display:block;width:100%;height:100%;margin:0!important;object-fit:cover;transition:transform .35s ease}.ytiProductCard__media:hover img{transform:scale(1.025)}.ytiProductCard__producer,.ytiProductCard__scale{position:absolute;z-index:2;top:14px;display:inline-flex;align-items:center;min-height:30px;padding:6px 9px;font-family:alatsi,sans-serif;font-size:.72rem;font-weight:700;line-height:1;text-transform:uppercase}.ytiProductCard__producer{left:14px;max-width:calc(100% - 82px);background:#000;color:#fff}.ytiProductCard__scale{right:14px;background:#ffe500;color:#000}.ytiProductCard__body{display:flex;flex:1;flex-direction:column;padding:22px;border-top:5px solid #00dbc8}.ytiProductCard__eyebrow{margin:0 0 8px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.76rem;font-weight:700;line-height:1.3;text-transform:uppercase}.ytiWooArchive ul.products li.product .ytiProductCard__title,.yti-woocommerce .related ul.products li.product .ytiProductCard__title{margin:0 0 18px;padding:0;color:#000;font-family:alata,sans-serif;font-size:1.35rem;font-weight:700;line-height:1.15;text-transform:none}.ytiWooArchive ul.products li.product .ytiProductCard__title a,.yti-woocommerce .related ul.products li.product .ytiProductCard__title a{color:inherit;text-decoration:none}.ytiWooArchive ul.products li.product .ytiProductCard__title a:hover,.yti-woocommerce .related ul.products li.product .ytiProductCard__title a:hover,.ytiWooArchive ul.products li.product .ytiProductCard__title a:focus-visible,.yti-woocommerce .related ul.products li.product .ytiProductCard__title a:focus-visible{color:#ff08ad}.ytiProductCard__details{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;margin:0 0 22px;border-top:1px solid #eee;border-left:1px solid #eee}.ytiProductCard__details>div{min-width:0;padding:10px;border-right:1px solid #eee;border-bottom:1px solid #eee}.ytiProductCard__details dt{margin:0 0 3px;color:#7a7b7b;font-family:alatsi,sans-serif;font-size:.66rem;font-weight:700;text-transform:uppercase}.ytiProductCard__details dd{margin:0;color:#000;font-size:.84rem;font-weight:700;line-height:1.3;overflow-wrap:anywhere}.ytiProductCard__footer{display:grid;grid-template-columns:auto minmax(0,1fr);gap:12px;align-items:stretch;margin-top:auto}.ytiProductCard__price{display:flex;align-items:center;min-height:44px;padding:9px 13px;background:#ff08ad;color:#fff;font-family:alata,sans-serif;font-size:1.05rem;font-weight:700;line-height:1}.ytiProductCard__price del{margin-right:6px;opacity:.7;font-size:.72em}.ytiProductCard__price ins{text-decoration:none}.ytiProductCard__action{min-width:0}.ytiProductCard__action .button{box-sizing:border-box;width:100%;height:44px;min-height:44px;display:flex!important;align-items:center;justify-content:center;margin:0!important;padding:0 12px!important;border:1px solid #000!important;border-radius:0!important;background:#000!important;color:#fff!important;font-family:alatsi,sans-serif;font-size:.74rem!important;font-weight:700!important;line-height:1!important;text-align:center;text-transform:uppercase;white-space:normal}.ytiProductCard__action .button:hover,.ytiProductCard__action .button:focus-visible{border-color:#ffe500!important;background:#ffe500!important;color:#000!important}.ytiProductCard__action .added_to_cart{display:block;margin-top:7px;color:#000;font-family:alatsi,sans-serif;font-size:.72rem;font-weight:700;text-align:center;text-transform:uppercase}.ytiWooArchive .woocommerce-pagination{margin-top:44px}.ytiWooArchive .woocommerce-pagination ul.page-numbers{display:flex;justify-content:center;gap:7px;border:0}.ytiWooArchive .woocommerce-pagination ul.page-numbers li{border:0}.ytiWooArchive .woocommerce-pagination ul.page-numbers li a,.ytiWooArchive .woocommerce-pagination ul.page-numbers li span{min-width:42px;min-height:42px;display:inline-flex;align-items:center;justify-content:center;padding:8px;background:#f6f6f6;color:#000;font-family:alatsi,sans-serif;font-weight:700}.ytiWooArchive .woocommerce-pagination ul.page-numbers li a:hover,.ytiWooArchive .woocommerce-pagination ul.page-numbers li a:focus-visible,.ytiWooArchive .woocommerce-pagination ul.page-numbers li span.current{background:#ff08ad;color:#fff}.ytiMacchinineLoopMeta{display:none}@media(max-width:980px){.ytiWooArchive__catalog{width:min(100% - 36px,760px)}.ytiMacchinineArchiveIntro{grid-template-columns:1fr;gap:24px}.ytiMacchinineArchiveIntro__heading{position:static}.ytiWooArchive ul.products{grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}}@media(max-width:720px){.ytiWooArchive .ytiWooArchiveHeader{height:250px}.ytiWooArchive .ytiWooArchiveHeader .headerTexts{gap:14px;padding-right:18px;padding-left:18px}.ytiWooArchive .ytiWooArchiveHeader .headerTexts h1{font-size:2rem}.ytiWooArchive .ytiWooArchiveHeader .headerTexts h2{max-width:92%;font-size:.98rem}.ytiWooArchive__catalog{width:calc(100% - 28px);padding:42px 0 60px}.ytiMacchinineFilters{grid-template-columns:1fr;gap:24px}.ytiWooArchive ul.products{grid-template-columns:1fr}.ytiWooArchive .woocommerce-result-count,.ytiWooArchive .woocommerce-ordering{width:100%;margin:0 0 14px}.ytiWooArchive .woocommerce-ordering select{width:100%}}@media(max-width:420px){.ytiProductCard__footer{grid-template-columns:1fr}.ytiProductCard__price{justify-content:center}}
.ytiWooSingle{width:100%;padding:132px 30px 80px}.ytiWooSingle>.site-main{width:100%;max-width:1240px;margin:0 auto}.ytiWooSingle div.product{position:relative;display:grid;grid-template-columns:minmax(0,1.08fr)minmax(360px,.92fr);column-gap:48px;align-items:start}.ytiWooSingle div.product .ytiWooProductGallery{width:100%!important;min-width:0;max-width:none;margin:0 0 58px}.ytiWooSingle div.product .ytiWooProductGallery .beadvGallery{--beadv-gallery-radius:0;--beadv-gallery-control:#FFE500;--beadv-gallery-control-text:#000000;--beadv-gallery-border:rgba(0,0,0,0.16)}.ytiWooSingle div.product .ytiWooProductGallery .beadvGallery__mainStage{border-top:7px solid #00dbc8;background:#f6f6f6}.ytiWooSingle div.product .ytiWooProductGallery .beadvGallery__mainButton,.ytiWooSingle div.product .ytiWooProductGallery .beadvGallery__mainImage{background:#f6f6f6}.ytiWooSingle div.product .summary{display:grid;grid-template-columns:auto minmax(190px,1fr);grid-template-areas:"title title" "description description" "stock stock" "price cart" "meta meta";column-gap:14px;row-gap:20px;align-items:center;float:none;width:100%!important;max-width:none;margin:0 0 58px;padding:34px;background:#f6f6f6;border-top:7px solid #00dbc8}.ytiWooSingle div.product .summary .product_title{grid-area:title;margin:0;color:#000;font-family:alata,sans-serif;font-size:clamp(2rem,3.4vw,3.3rem);line-height:1.02;overflow-wrap:anywhere}.ytiWooSingle div.product .summary .price{grid-area:price;display:inline-flex;align-items:center;align-self:stretch;margin:0;padding:10px 15px;background:#ff08ad;color:#fff;font-family:alata,sans-serif;font-size:1.5rem;font-weight:700;line-height:1}.ytiWooSingle div.product .summary .price del{margin-right:8px;opacity:.65}.ytiWooSingle div.product .summary .price ins{text-decoration:none}.ytiWooSingle div.product .summary .woocommerce-product-details__short-description{grid-area:description;margin:0;color:#575756;line-height:1.65}.ytiWooSingle div.product .summary .woocommerce-product-details__short-description p:last-child{margin-bottom:0}.ytiWooSingle div.product .summary .stock{grid-area:stock;margin:4px 0 6px;color:#000;font-family:alatsi,sans-serif;font-size:1rem;font-weight:800;line-height:1.2;text-transform:uppercase}.ytiWooSingle div.product .summary form.cart{grid-area:cart;display:flex;flex-wrap:wrap;justify-content:flex-start;align-self:stretch;gap:10px;margin:0}.ytiWooSingle div.product .summary form.cart::before,.ytiWooSingle div.product .summary form.cart::after{content:none;display:none}.ytiWooSingle div.product .summary form.cart .quantity:has(.qty[type=hidden]){display:none}.ytiWooSingle div.product .summary form.cart .quantity .qty{width:68px;min-height:48px;border:1px solid #ccc;border-radius:0}.ytiWooSingle div.product .summary form.cart .button{box-sizing:border-box;display:flex;align-items:center;justify-content:center;min-height:48px;min-width:220px;flex:none;padding:0 20px;border:1px solid #000;border-radius:0;background:#000;color:#fff;font-family:alatsi,sans-serif;font-size:.82rem;line-height:1;text-align:center;text-transform:uppercase}.ytiWooSingle div.product .summary form.cart .button:hover,.ytiWooSingle div.product .summary form.cart .button:focus-visible{border-color:#ffe500;background:#ffe500;color:#000}.ytiWooSingle div.product .summary .product_meta{grid-area:meta;display:grid;gap:8px;padding-top:18px;border-top:1px solid #ddd;color:#7a7b7b;font-size:.82rem;line-height:1.4}.ytiWooSingle div.product .summary .product_meta a{color:#000}.ytiWooSingle div.product .summary .product_meta a:hover{color:#ff08ad}.ytiWooSingle div.product>.onsale,.ytiWooSingle div.product>.woocommerce-notices-wrapper,.ytiWooSingle div.product>.ytiMacchinineSpecs,.ytiWooSingle div.product>.ytiMacchinineInfo,.ytiWooSingle div.product>.woocommerce-tabs,.ytiWooSingle div.product>.related,.ytiWooSingle div.product>.upsells{grid-column:1/-1}.ytiMacchinineSpecs,.ytiMacchinineInfo{clear:both;width:100%;max-width:none;margin:0 0 44px;padding:34px;background:#f6f6f6}.ytiMacchinineSpecs h2,.ytiMacchinineInfo h2{margin:0 0 24px;color:#000;font-family:alata,sans-serif;font-size:1.75rem;text-transform:uppercase}.ytiMacchinineSpecs{border-left:7px solid #00dbc8}.ytiMacchinineSpecs dl{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:1px;margin:0;background:#ddd}.ytiMacchinineSpecs dl>div{min-width:0;padding:16px;background:#fff}.ytiMacchinineSpecs dt{margin:0 0 5px;color:#7a7b7b;font-family:alatsi,sans-serif;font-size:.7rem;font-weight:700;text-transform:uppercase}.ytiMacchinineSpecs dd{margin:0;color:#000;font-weight:700;line-height:1.35;overflow-wrap:anywhere}.ytiMacchinineInfo{border-left:7px solid #ffe500}.ytiMacchinineInfo p{max-width:820px;margin:0 0 1em;color:#575756;line-height:1.65}.ytiWooSingle .woocommerce-tabs{clear:both;width:100%;margin:0 0 60px}.ytiWooSingle .woocommerce-tabs ul.tabs{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 24px;padding:0}.ytiWooSingle .woocommerce-tabs ul.tabs::before{border-bottom-color:#ddd}.ytiWooSingle .woocommerce-tabs ul.tabs li{margin:0;padding:0;border:0;border-radius:0;background:#f6f6f6}.ytiWooSingle .woocommerce-tabs ul.tabs li::before,.ytiWooSingle .woocommerce-tabs ul.tabs li::after{content:none}.ytiWooSingle .woocommerce-tabs ul.tabs li a{padding:12px 18px;color:#000;font-family:alatsi,sans-serif;font-size:.78rem;text-transform:uppercase}.ytiWooSingle .woocommerce-tabs ul.tabs li.active{background:#ffe500}.ytiWooSingle .woocommerce-tabs .woocommerce-Tabs-panel{color:#575756;line-height:1.7}.ytiWooSingle .woocommerce-tabs .woocommerce-Tabs-panel h2{margin-bottom:20px;color:#000;font-family:alata,sans-serif;font-size:1.75rem;text-transform:uppercase}.ytiWooSingle .related,.ytiWooSingle .upsells{clear:both;width:100%;margin-top:58px}.ytiWooSingle .related>h2,.ytiWooSingle .upsells>h2{margin:0 0 28px;color:#000;font-family:alata,sans-serif;font-size:2rem;text-transform:uppercase}.ytiWooSingle .related ul.products,.ytiWooSingle .upsells ul.products{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px;margin:0}.ytiWooSingle .related ul.products::before,.ytiWooSingle .upsells ul.products::before,.ytiWooSingle .related ul.products::after,.ytiWooSingle .upsells ul.products::after{content:none}.yti-woocommerce .woocommerce-message,.yti-woocommerce .woocommerce-info,.yti-woocommerce .woocommerce-error{box-sizing:border-box;min-height:70px;display:flex;align-items:center;gap:18px;padding:14px 20px 14px 74px;border-top-color:#00dbc8;background:#f6f6f6;color:#000}.yti-woocommerce .woocommerce-message::before,.yti-woocommerce .woocommerce-info::before,.yti-woocommerce .woocommerce-error::before{top:50%;left:22px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;border-radius:50%;background:#ff08ad;color:#fff;font-size:1.05rem;line-height:1;transform:translateY(-50%)}.yti-woocommerce .woocommerce-message a.button,.yti-woocommerce .woocommerce-info a.button,.yti-woocommerce .woocommerce-error a.button{min-height:42px;display:inline-flex;align-items:center;justify-content:center;float:none;margin:0 0 0 auto;padding:0 18px;border-radius:0;background:#000;color:#fff}.yti-woocommerce.woocommerce-cart .pageDefault>.typography{width:100%;margin:0;padding:56px 24px 96px}.yti-woocommerce.woocommerce-cart .typography>.woocommerce{display:grid;grid-template-columns:minmax(0,1.65fr)minmax(330px,.75fr);gap:34px;align-items:start;width:100%;max-width:1240px;margin:0 auto}.yti-woocommerce.woocommerce-cart .typography>.woocommerce>.woocommerce-notices-wrapper,.yti-woocommerce.woocommerce-cart .typography>.woocommerce>.woocommerce-message,.yti-woocommerce.woocommerce-cart .typography>.woocommerce>.woocommerce-info,.yti-woocommerce.woocommerce-cart .typography>.woocommerce>.woocommerce-error{grid-column:1/-1;margin-bottom:0}.ytiCartForm{min-width:0}.ytiCartIntro{display:flex;align-items:flex-end;justify-content:space-between;gap:22px;margin:0 0 18px;padding:0 0 18px;border-bottom:1px solid #ddd}.ytiCartIntro h2{margin:0;color:#000;font-family:alata,sans-serif;font-size:2.3rem;line-height:1;text-transform:uppercase}.ytiCartIntro__kicker,.ytiCartSummary__kicker{margin:0 0 7px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.75rem;font-weight:800;line-height:1;text-transform:uppercase}.ytiCartIntro__count{flex:none;margin:0;padding:8px 11px;background:#ffe500;color:#000;font-family:alatsi,sans-serif;font-size:.72rem;font-weight:800;line-height:1;text-transform:uppercase}.ytiCartItems{display:grid;gap:16px}.ytiCartItem{position:relative;display:grid;grid-template-columns:148px minmax(0,1fr);grid-template-areas:"media content" "media purchase";gap:16px 22px;min-width:0;padding:18px;border:1px solid #eee;border-top:6px solid #00dbc8;background:#fff;box-shadow:0 16px 36px rgba(0,0,0,8%)}.ytiCartItem__remove{position:absolute;z-index:2;top:12px;right:12px}.ytiCartItem__remove a.remove{width:38px;height:38px;display:flex;align-items:center;justify-content:center;border:0;border-radius:0;background:#ffe500;color:#000!important;font-family:open sans,sans-serif;font-size:1.5rem;font-weight:400;line-height:1;text-decoration:none;transition:background-color .2s ease,color .2s ease}.ytiCartItem__remove a.remove:hover,.ytiCartItem__remove a.remove:focus-visible{background:#ff08ad;color:#fff!important}.ytiCartItem__media{grid-area:media;min-width:0}.ytiCartItem__media a{display:block;width:100%;aspect-ratio:4/3;overflow:hidden;background:#f6f6f6}.ytiCartItem__media img{display:block;width:100%!important;height:100%!important;margin:0!important;object-fit:cover}.ytiCartItem__content{grid-area:content;min-width:0;padding:6px 50px 0 0}.ytiCartItem__content .variation{margin:10px 0 0;color:#7a7b7b;font-size:.8rem}.ytiCartItem__eyebrow{margin:0 0 7px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.7rem;font-weight:800;line-height:1.2;text-transform:uppercase}.ytiCartItem__title{max-width:520px;margin:0;color:#000;font-family:alata,sans-serif;font-size:1.45rem;line-height:1.12}.ytiCartItem__title a{color:inherit;text-decoration:none}.ytiCartItem__title a:hover,.ytiCartItem__title a:focus-visible{color:#ff08ad}.ytiCartItem__purchase{grid-area:purchase;display:grid;grid-template-columns:minmax(90px,.8fr)minmax(100px,.7fr)minmax(105px,1fr);min-width:0;border-left:1px solid #ddd;background:#f6f6f6}.ytiCartItem__metric{min-width:0;display:flex;flex-direction:column;justify-content:center;gap:6px;padding:12px 14px;border-top:0!important;border-right:1px solid #ddd}.ytiCartItem__metric:last-child{border-right:0}.ytiCartItem__metric strong{color:#000;font-size:1rem;line-height:1.1}.ytiCartItem__label{color:#7a7b7b;font-family:alatsi,sans-serif;font-size:.65rem;font-weight:800;line-height:1;text-transform:uppercase}.ytiCartItem__quantity .quantity{float:none;margin:0}.ytiCartItem__quantity .qty{width:58px;min-height:38px;padding:6px;border:1px solid #000;background:#fff;color:#000;font-weight:700;text-align:center}.ytiCartItem__subtotal{background:rgba(255,229,0,.18)}.ytiCartItem__subtotal strong{font-family:alata,sans-serif;font-size:1.25rem}.ytiCartActions{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-top:18px;padding:20px;border-left:6px solid #00dbc8;background:#f6f6f6}.ytiCartActions .button{box-sizing:border-box;min-height:44px;display:inline-flex;align-items:center;justify-content:center;margin:0;padding:0 16px;border:1px solid #000;border-radius:0;background:#000;color:#fff;font-family:alatsi,sans-serif;font-size:.72rem;font-weight:800;line-height:1;text-align:center;text-transform:uppercase}.ytiCartActions .button:hover,.ytiCartActions .button:focus-visible{border-color:#ffe500;background:#ffe500;color:#000}.ytiCartActions .button:disabled{border-color:#ccc;background:#ccc;color:#fff;cursor:not-allowed}.ytiCartCoupon{min-width:0;flex:1}.ytiCartCoupon>label{display:block;margin:0 0 8px;color:#000;font-family:alatsi,sans-serif;font-size:.7rem;font-weight:800;line-height:1;text-transform:uppercase}.ytiCartCoupon__controls{display:flex;min-width:0}.ytiCartCoupon__controls .input-text{min-width:0;flex:1;min-height:44px;padding:8px 12px;border:1px solid #000;border-radius:0;background:#fff}.ytiCartActions__update{flex:none}.yti-woocommerce .cart-collaterals{min-width:0;width:100%}.yti-woocommerce .cart-collaterals .ytiCartSummary{position:sticky;top:24px;float:none;width:100%;margin:0;padding:30px;border:0;border-top:7px solid #ff08ad;background:#000;color:#fff;box-shadow:0 20px 45px rgba(0,0,0,.18)}.yti-woocommerce .cart-collaterals .ytiCartSummary .ytiCartSummary__kicker{color:#00dbc8}.yti-woocommerce .cart-collaterals .ytiCartSummary h2{margin:0 0 24px;color:#fff;font-family:alata,sans-serif;font-size:2.15rem;line-height:1;text-transform:uppercase}.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table{margin:0 0 20px;border:0;background:0 0;color:#fff}.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table th,.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table td{padding:14px 0;border-top:1px solid rgba(255,255,255,.22);background:0 0;color:#fff}.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table th{font-family:alatsi,sans-serif;font-size:.72rem;font-weight:800;text-transform:uppercase}.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table td{text-align:right}.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table .order-total th,.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table .order-total td{padding:17px 12px;border-top:0;background:#ffe500;color:#000}.yti-woocommerce .cart-collaterals .ytiCartSummary table.shop_table .order-total td strong{color:#000;font-family:alata,sans-serif;font-size:1.5rem}.yti-woocommerce .cart-collaterals .ytiCartSummary .wc-proceed-to-checkout{padding:0}.yti-woocommerce .cart-collaterals .ytiCartSummary .checkout-button{min-height:54px;display:flex;align-items:center;justify-content:center;gap:12px;margin:0;padding:0 20px;border:0;background:#ff08ad!important;color:#fff!important;font-family:alatsi,sans-serif;font-size:.82rem;font-weight:800;line-height:1;text-transform:uppercase}.yti-woocommerce .cart-collaterals .ytiCartSummary .checkout-button::after{content:"";width:9px;height:9px;border-top:2px solid;border-right:2px solid;transform:rotate(45deg)}.yti-woocommerce .cart-collaterals .ytiCartSummary .checkout-button:hover,.yti-woocommerce .cart-collaterals .ytiCartSummary .checkout-button:focus-visible{background:#00dbc8!important;color:#000!important}.ytiCartSummary__continue{min-height:44px;display:flex;align-items:center;justify-content:center;margin-top:12px;border:1px solid rgba(255,255,255,.45);color:#fff;font-family:alatsi,sans-serif;font-size:.72rem;font-weight:800;text-decoration:none;text-transform:uppercase}.ytiCartSummary__continue:hover,.ytiCartSummary__continue:focus-visible{border-color:#ffe500;color:#ffe500}.ytiCartEmpty{grid-column:1/-1;width:min(100%,760px);margin:0 auto;padding:52px;border-top:7px solid #00dbc8;background:#f6f6f6;text-align:center}.ytiCartEmpty h2{margin:0 0 16px;color:#000;font-family:alata,sans-serif;font-size:2.5rem;line-height:1;text-transform:uppercase}.ytiCartEmpty .button{min-height:50px;display:inline-flex!important;align-items:center;justify-content:center;margin-top:22px!important;padding:0 24px!important;border:0;border-radius:0;background:#000!important;color:#fff!important;font-family:alatsi,sans-serif;font-size:.78rem;font-weight:800;text-decoration:none;text-transform:uppercase}.ytiCartEmpty .button:hover,.ytiCartEmpty .button:focus-visible{background:#ff08ad!important;color:#fff!important}.ytiCartEmpty__mark{position:relative;width:76px;height:58px;margin:0 auto 26px;border:5px solid #000;border-top:0}.ytiCartEmpty__mark::before{content:"";position:absolute;top:-16px;left:16px;width:34px;height:24px;border:5px solid #000;border-bottom:0}.ytiCartEmpty__mark::after{content:"";position:absolute;right:-13px;bottom:-13px;width:24px;height:24px;background:#ffe500}.ytiCartEmpty__kicker{margin:0 0 8px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.75rem;font-weight:800;text-transform:uppercase}.ytiCartEmpty__message .wc-empty-cart-message,.ytiCartEmpty__message .woocommerce-info{margin:0}.ytiCartEmpty__message .woocommerce-info{min-height:0;display:block;padding:0;border:0;background:0 0;color:#575756}.ytiCartEmpty__message .woocommerce-info::before{content:none}.yti-woocommerce .typography .woocommerce,.yti-woocommerce .woocommerce-cart-form,.yti-woocommerce .cart-collaterals,.yti-woocommerce .woocommerce-checkout,.yti-woocommerce .woocommerce-MyAccount-navigation,.yti-woocommerce .woocommerce-MyAccount-content{font-family:open sans,sans-serif}.yti-woocommerce table.shop_table{border:1px solid #ddd;border-radius:0}.yti-woocommerce table.shop_table th{color:#000;font-family:alatsi,sans-serif;font-size:.78rem;text-transform:uppercase}.yti-woocommerce table.shop_table td{border-top-color:#eee}.yti-woocommerce .woocommerce-cart-form .actions .button,.yti-woocommerce .cart-collaterals .button,.yti-woocommerce .wc-proceed-to-checkout a.checkout-button,.yti-woocommerce #payment #place_order,.yti-woocommerce .checkout_coupon .button,.yti-woocommerce .woocommerce-form-login .button,.yti-woocommerce .woocommerce-MyAccount-content .button{min-height:44px;border:1px solid #000;border-radius:0;background:#000;color:#fff;font-family:alatsi,sans-serif;font-size:.78rem;text-transform:uppercase}.yti-woocommerce .woocommerce-cart-form .actions .button:hover,.yti-woocommerce .cart-collaterals .button:hover,.yti-woocommerce .wc-proceed-to-checkout a.checkout-button:hover,.yti-woocommerce #payment #place_order:hover,.yti-woocommerce .checkout_coupon .button:hover,.yti-woocommerce .woocommerce-form-login .button:hover,.yti-woocommerce .woocommerce-MyAccount-content .button:hover,.yti-woocommerce .woocommerce-cart-form .actions .button:focus-visible,.yti-woocommerce .cart-collaterals .button:focus-visible,.yti-woocommerce .wc-proceed-to-checkout a.checkout-button:focus-visible,.yti-woocommerce #payment #place_order:focus-visible,.yti-woocommerce .checkout_coupon .button:focus-visible,.yti-woocommerce .woocommerce-form-login .button:focus-visible,.yti-woocommerce .woocommerce-MyAccount-content .button:focus-visible{border-color:#ffe500;background:#ffe500;color:#000}.yti-woocommerce .wc-proceed-to-checkout a.checkout-button{display:flex;align-items:center;justify-content:center;background:#000!important;color:#fff!important}.yti-woocommerce .wc-proceed-to-checkout a.checkout-button:hover,.yti-woocommerce .wc-proceed-to-checkout a.checkout-button:focus-visible{background:#ffe500!important;color:#000!important}.yti-woocommerce .input-text,.yti-woocommerce select,.yti-woocommerce textarea{min-height:44px;border:1px solid #ccc;border-radius:0;background:#fff}.yti-woocommerce .cart_totals,.yti-woocommerce .woocommerce-checkout-review-order,.yti-woocommerce .woocommerce-MyAccount-navigation{padding:26px;background:#f6f6f6;border-top:5px solid #00dbc8}.yti-woocommerce #payment{border-radius:0;background:#f6f6f6}.yti-woocommerce.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-order-summary-item__description .wc-block-components-product-name{margin:0 0 4px;font-family:alata,sans-serif;font-size:1rem;font-weight:700;line-height:1.25;letter-spacing:0}.yti-woocommerce.woocommerce-account .pageDefault>.typography{width:100%;max-width:none;padding:72px 24px 104px;background:#f6f6f6}.yti-woocommerce.woocommerce-account .typography>.woocommerce{width:100%;max-width:1180px;margin:0 auto}.ytiAccountLogin{display:grid;grid-template-columns:minmax(290px,.72fr)minmax(0,1.28fr);min-height:540px;overflow:hidden;border:1px solid #ddd;background:#fff;box-shadow:14px 14px #00DBC8}.ytiAccountLogin__brand{position:relative;display:flex;flex-direction:column;justify-content:flex-end;min-width:0;padding:48px 42px;overflow:hidden;background:#000;color:#fff}.ytiAccountLogin__brand::before,.ytiAccountLogin__brand::after{content:"";position:absolute;top:0;width:50%;height:12px}.ytiAccountLogin__brand::before{left:0;background:#ff08ad}.ytiAccountLogin__brand::after{right:0;background:#ffe500}.ytiAccountLogin__brand h2{position:relative;z-index:1;max-width:260px;margin:0;color:#fff;font-family:alata,sans-serif;font-size:3rem;font-weight:700;line-height:1;text-transform:uppercase}.ytiAccountLogin__kicker{position:relative;z-index:1;margin:0 0 12px;color:#00dbc8;font-family:alatsi,sans-serif;font-size:.78rem;font-weight:700;text-transform:uppercase}.ytiAccountLogin__mark{position:absolute;top:82px;right:-36px;width:180px;transform:rotate(-8deg)}.ytiAccountLogin__mark span{display:block;height:24px;margin-bottom:10px}.ytiAccountLogin__mark span:nth-child(1){width:100%;background:#ff08ad}.ytiAccountLogin__mark span:nth-child(2){width:74%;margin-left:26%;background:#00dbc8}.ytiAccountLogin__mark span:nth-child(3){width:48%;margin-left:52%;background:#ffe500}.ytiAccountLogin__forms{display:grid;align-items:center;min-width:0;padding:58px clamp(34px,7vw,88px)}.ytiAccountLogin--registration{grid-template-columns:minmax(250px,.55fr)minmax(0,1.45fr)}.ytiAccountLogin--registration .ytiAccountLogin__forms{grid-template-columns:repeat(2,minmax(0,1fr));gap:54px;align-items:start;padding-right:44px;padding-left:44px}.ytiAccountLogin__header{margin-bottom:32px}.ytiAccountLogin__header p{margin:0 0 4px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.78rem;font-weight:700;text-transform:uppercase}.ytiAccountLogin__header h2{margin:0;color:#000;font-family:alata,sans-serif;font-size:2.5rem;font-weight:700;line-height:1.1}.ytiAccountLogin form.login,.ytiAccountLogin form.register{margin:0;padding:0;border:0;border-radius:0}.ytiAccountLogin form.login .form-row,.ytiAccountLogin form.register .form-row{margin:0 0 20px;padding:0}.ytiAccountLogin form.login label,.ytiAccountLogin form.register label{margin-bottom:8px;color:#000;font-family:alatsi,sans-serif;font-size:.76rem;font-weight:700;text-transform:uppercase}.ytiAccountLogin form.login .input-text,.ytiAccountLogin form.register .input-text{width:100%;height:52px;min-height:52px;padding:0 16px;border:1px solid #ccc;border-radius:0;background:#fff;color:#000;font-family:open sans,sans-serif;font-size:.95rem}.ytiAccountLogin form.login .input-text:focus,.ytiAccountLogin form.register .input-text:focus{border-color:#000;box-shadow:0 0 0 3px rgba(0,219,200,.24);outline:0}.ytiAccountLogin form.login .button,.ytiAccountLogin form.register .button{display:flex;align-items:center;justify-content:center;width:100%;min-height:52px;margin:6px 0 0;border:1px solid #ff08ad;border-radius:0;background:#ff08ad;color:#fff;font-family:alatsi,sans-serif;font-size:.82rem;font-weight:700;text-transform:uppercase}.ytiAccountLogin form.login .button:hover,.ytiAccountLogin form.register .button:hover,.ytiAccountLogin form.login .button:focus-visible,.ytiAccountLogin form.register .button:focus-visible{border-color:#000;background:#000;color:#fff}.ytiAccountLogin__options{display:flex;align-items:center;justify-content:space-between;gap:18px;margin:0 0 24px;font-size:.84rem}.ytiAccountLogin__options label.woocommerce-form-login__rememberme{display:flex;align-items:center;gap:8px;margin:0;color:#7a7b7b;font-family:open sans,sans-serif;font-size:.84rem;font-weight:400;text-transform:none}.ytiAccountLogin__options input{width:18px;height:18px;accent-color:#FF08AD}.ytiAccountLogin__options a{color:#000;font-weight:700}.ytiAccountLogin__options a:hover,.ytiAccountLogin__options a:focus-visible{color:#ff08ad}.ytiAccountLogin__note{margin:0 0 20px;color:#7a7b7b;font-size:.9rem}.ytiAccountShell{display:grid;grid-template-columns:270px minmax(0,1fr);gap:34px;align-items:start}.yti-woocommerce .ytiAccountNav.woocommerce-MyAccount-navigation{float:none;width:100%;min-width:0;padding:0;overflow:hidden;border:0;border-top:8px solid #00dbc8;background:#000;color:#fff}.ytiAccountNav__identity{display:grid;grid-template-columns:48px minmax(0,1fr);gap:14px;align-items:center;padding:28px 24px;border-bottom:1px solid rgba(255,255,255,.18)}.ytiAccountNav__identity>span:last-child{min-width:0}.ytiAccountNav__identity small,.ytiAccountNav__identity strong{display:block}.ytiAccountNav__identity small{margin-bottom:2px;color:#ccc;font-family:alatsi,sans-serif;font-size:.68rem;text-transform:uppercase}.ytiAccountNav__identity strong{overflow:hidden;color:#fff;font-family:alata,sans-serif;font-size:1rem;text-overflow:ellipsis;white-space:nowrap}.ytiAccountNav__avatar{display:flex;align-items:center;justify-content:center;width:48px;height:48px;background:#ffe500;color:#000;font-family:alata,sans-serif;font-size:1.35rem;font-weight:700}.ytiAccountNav ul{margin:0;padding:10px 0;list-style:none}.ytiAccountNav ul li{margin:0;padding:0;border:0;list-style:none!important}.ytiAccountNav ul li::before,.ytiAccountNav ul li::after{content:none!important;display:none!important}.ytiAccountNav ul a{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:50px;padding:0 24px;color:#ccc;font-family:alatsi,sans-serif;font-size:.76rem;font-weight:700;text-transform:uppercase}.ytiAccountNav ul a b{color:#999;font-family:open sans,sans-serif;font-size:1rem;font-weight:400}.ytiAccountNav ul a:hover,.ytiAccountNav ul a:focus-visible{background:rgba(255,255,255,9%);color:#fff}.ytiAccountNav ul li.is-active a{background:#ffe500;color:#000}.ytiAccountNav ul li.is-active a b{color:#000}.ytiAccountNav ul li.woocommerce-MyAccount-navigation-link--customer-logout a{margin-top:10px;border-top:1px solid rgba(255,255,255,.18);color:#ff08ad}.yti-woocommerce .ytiAccountContent.woocommerce-MyAccount-content{float:none;width:100%;min-width:0}.ytiAccountContent__header{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:28px;padding-bottom:18px;border-bottom:1px solid #ccc}.ytiAccountContent__header p{margin:0 0 5px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.74rem;font-weight:700;text-transform:uppercase}.ytiAccountContent__header h2{margin:0;color:#000;font-family:alata,sans-serif;font-size:2.35rem;font-weight:700;line-height:1.05}.ytiAccountContent__body{min-width:0;color:#7a7b7b}.ytiAccountContent__body>p:first-child{margin-top:0}.ytiAccountContent__body a:not(.button){color:#000;font-weight:700}.ytiAccountContent__body a:not(.button):hover,.ytiAccountContent__body a:not(.button):focus-visible{color:#ff08ad}.ytiAccountWelcome{display:flex;align-items:center;justify-content:space-between;gap:24px;margin-bottom:24px;padding:30px 34px;background:#ffe500;color:#000}.ytiAccountWelcome p{margin:0 0 4px;font-family:alatsi,sans-serif;font-size:.75rem;font-weight:700;text-transform:uppercase}.ytiAccountWelcome h3{margin:0;color:#000;font-family:alata,sans-serif;font-size:1.85rem;font-weight:700}.ytiAccountWelcome a{display:flex;align-items:center;justify-content:center;min-width:78px;min-height:42px;border:1px solid #000;color:#000;font-family:alatsi,sans-serif;font-size:.74rem;text-transform:uppercase}.ytiAccountWelcome a:hover,.ytiAccountWelcome a:focus-visible{background:#000;color:#fff}.ytiAccountQuickLinks{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.ytiAccountQuickLinks>a{display:flex;min-height:178px;flex-direction:column;align-items:flex-start;padding:24px;border:1px solid #ddd;border-top:6px solid #00dbc8;background:#fff;color:#000}.ytiAccountQuickLinks>a:nth-child(2){border-top-color:#ff08ad}.ytiAccountQuickLinks>a:nth-child(3){border-top-color:#ffe500}.ytiAccountQuickLinks>a:hover,.ytiAccountQuickLinks>a:focus-visible{transform:translateY(-3px);box-shadow:8px 8px rgba(0,0,0,.1)}.ytiAccountQuickLinks span{margin:0 0 auto;color:#999;font-family:alata,sans-serif;font-size:2rem;font-weight:700}.ytiAccountQuickLinks strong{color:#000;font-family:alatsi,sans-serif;font-size:.92rem;text-transform:uppercase}.ytiAccountQuickLinks small{margin-top:3px;color:#7a7b7b;font-size:.78rem}.ytiAccountContent table.shop_table,.ytiAccountContent .woocommerce-order-details,.ytiAccountContent .woocommerce-customer-details,.ytiAccountContent form.edit-account,.ytiAccountContent form:not(.woocommerce-form-login):not(.woocommerce-form-register) .woocommerce-address-fields,.ytiAccountContent #add_payment_method{border:1px solid #ddd;border-top:6px solid #00dbc8;border-radius:0;background:#fff}.ytiAccountContent table.shop_table{margin:0 0 24px;border-color:#000;border-collapse:collapse;background:#000}.ytiAccountContent table.shop_table thead{background:#000!important}.ytiAccountContent table.shop_table th{padding:14px 16px;border:0!important;background:#000!important;color:#fff!important;font-family:alatsi,sans-serif;font-size:.7rem;text-transform:uppercase}.ytiAccountContent table.shop_table td{padding:17px 16px;border-top:1px solid rgba(255,255,255,.18)!important;border-right:1px solid rgba(255,255,255,.12)!important;background:#000!important;color:#fff!important;font-size:.88rem}.ytiAccountContent table.shop_table td:last-child{border-right:0!important}.ytiAccountContent table.shop_table tbody,.ytiAccountContent table.shop_table tbody tr,.ytiAccountContent table.shop_table tfoot,.ytiAccountContent table.shop_table tfoot tr{background:#000!important;color:#fff!important}.ytiAccountContent table.shop_table .amount,.ytiAccountContent table.shop_table mark,.ytiAccountContent table.shop_table strong{color:#fff}.ytiAccountContent table.shop_table tbody tr:first-child td,.ytiAccountContent table.shop_table tbody tr:first-child th{border-top:0}.ytiAccountContent table.shop_table .button{min-height:38px;padding:0 16px!important;border-color:#ffe500;background:#ffe500;color:#000}.ytiAccountContent .woocommerce-orders-table__cell-order-number a{color:#ff08ad;font-family:alata,sans-serif;font-size:1rem}.ytiAccountContent .woocommerce-orders-table__cell-order-status{color:#fff!important;font-family:alatsi,sans-serif;font-size:.75rem;font-weight:700;text-transform:uppercase}.ytiAccountContent .button,.yti-woocommerce.woocommerce-account .woocommerce-ResetPassword .button{display:inline-flex!important;align-items:center;justify-content:center;min-height:46px;padding:0 22px!important;border:1px solid #000;border-radius:0;background:#000;color:#fff;font-family:alatsi,sans-serif;font-size:.76rem;font-weight:700;line-height:1!important;text-align:center!important;text-transform:uppercase}.ytiAccountContent .button:hover,.yti-woocommerce.woocommerce-account .woocommerce-ResetPassword .button:hover,.ytiAccountContent .button:focus-visible,.yti-woocommerce.woocommerce-account .woocommerce-ResetPassword .button:focus-visible{border-color:#ff08ad;background:#ff08ad;color:#fff}.yti-woocommerce.woocommerce-account .ytiAccountContent a.button,.yti-woocommerce.woocommerce-account .ytiAccountContent button.button,.yti-woocommerce.woocommerce-account .ytiAccountContent input.button{display:inline-flex!important;align-items:center!important;justify-content:center!important;text-align:center!important}.ytiAccountContent .woocommerce-Addresses{display:grid;grid-template-columns:1fr;gap:20px}.ytiAccountContent .woocommerce-Addresses::before,.ytiAccountContent .woocommerce-Addresses::after{content:none}.ytiAccountContent .woocommerce-Address{float:none;width:100%;min-height:0;padding:30px;border:1px solid #ddd;border-top:6px solid #00dbc8;background:#fff}.ytiAccountContent .woocommerce-Address:nth-child(2){border-top-color:#ff08ad}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title{display:grid;grid-template-columns:minmax(0,1fr)auto;gap:24px;align-items:center;margin-bottom:22px}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title>div{min-width:0}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title small{display:block;margin-bottom:4px;color:#ff08ad;font-family:alatsi,sans-serif;font-size:.68rem;font-weight:700;text-transform:uppercase}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title h3{margin:0;color:#000;font-family:alata,sans-serif;font-size:1.45rem;font-weight:700}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title .edit{display:inline-flex;align-items:center;justify-content:center;float:none;width:auto;min-width:104px;min-height:42px;padding:0 18px;border:1px solid #000;background:#000;color:#fff;font-family:alatsi,sans-serif;font-size:.7rem;line-height:1;text-align:center;text-transform:uppercase}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title .edit:hover,.ytiAccountContent .woocommerce-Address .woocommerce-Address-title .edit:focus-visible{border-color:#ff08ad;background:#ff08ad;color:#fff}.ytiAccountContent .woocommerce-Address address{color:#7a7b7b;font-size:.9rem;font-style:normal;line-height:1.7}.ytiAccountAddressIntro{display:grid;grid-template-columns:auto minmax(0,1fr);gap:16px;align-items:center;margin:0 0 22px;padding:20px 22px;border-left:7px solid #ff08ad;background:#ffe500;color:#000}.ytiAccountAddressIntro strong{font-family:alatsi,sans-serif;font-size:.82rem;text-transform:uppercase}.ytiAccountAddressIntro p{margin:0;color:#000;font-size:.88rem}.ytiAccountContent form.edit-account,.ytiAccountContent form:not(.woocommerce-form-login):not(.woocommerce-form-register) .woocommerce-address-fields,.ytiAccountContent #add_payment_method{margin:0;padding:30px}.ytiAccountContent form>h2,.ytiAccountContent .woocommerce-order-details__title,.ytiAccountContent .woocommerce-column__title{margin:0 0 20px;color:#000;font-family:alata,sans-serif;font-size:1.35rem;font-weight:700}.ytiAccountContent .form-row{margin:0 0 20px;padding:0}.ytiAccountContent .form-row label{margin-bottom:7px;color:#000;font-family:alatsi,sans-serif;font-size:.72rem;font-weight:700;text-transform:uppercase}.ytiAccountContent .form-row .input-text,.ytiAccountContent .form-row select{width:100%;min-height:48px;padding:0 14px;border:1px solid #ccc;border-radius:0;background:#fff}.ytiAccountContent .form-row .input-text:focus,.ytiAccountContent .form-row select:focus{border-color:#000;box-shadow:0 0 0 3px rgba(0,219,200,.24);outline:0}.ytiAccountContent .form-row em,.ytiAccountContent .form-row .description{display:block;margin-top:6px;color:#7a7b7b;font-size:.76rem}.ytiAccountContent form.edit-account fieldset{margin:28px 0 24px;padding:24px;border:1px solid #ddd;background:#f6f6f6}.ytiAccountContent form.edit-account fieldset legend{padding:0 9px;color:#000;font-family:alatsi,sans-serif;font-size:.78rem;font-weight:700;text-transform:uppercase}.ytiAccountContent .woocommerce-order-details,.ytiAccountContent .woocommerce-customer-details{margin-top:26px;padding:28px}.ytiAccountContent mark{padding:3px 6px;background:#ffe500;color:#000;font-weight:700}.ytiAccountContent .woocommerce-info,.ytiAccountContent .woocommerce-message,.ytiAccountContent .woocommerce-error{margin:0 0 24px;border:1px solid #ddd;border-top:5px solid #00dbc8;background:#fff}.yti-woocommerce.woocommerce-account .woocommerce-ResetPassword,.yti-woocommerce.woocommerce-account .lost_reset_password{max-width:660px;margin:0 auto;padding:38px;border:1px solid #ddd;border-top:7px solid #00dbc8;background:#fff}.yti-woocommerce.woocommerce-account .woocommerce-ResetPassword>p:first-child,.yti-woocommerce.woocommerce-account .lost_reset_password>p:first-child{margin-top:0}.yti-woocommerce.woocommerce-account .woocommerce-ResetPassword .form-row-first,.yti-woocommerce.woocommerce-account .lost_reset_password .form-row-first{float:none;width:100%}@media(max-width:900px){.yti-woocommerce.woocommerce-cart .typography>.woocommerce{grid-template-columns:1fr;gap:28px;max-width:760px}.yti-woocommerce .cart-collaterals .ytiCartSummary{position:static}.ytiAccountLogin,.ytiAccountLogin--registration{grid-template-columns:1fr}.ytiAccountLogin__brand{min-height:220px;padding:36px}.ytiAccountLogin__brand h2{max-width:520px;font-size:2.5rem}.ytiAccountLogin__mark{top:54px;right:24px}.ytiAccountLogin--registration .ytiAccountLogin__forms{grid-template-columns:1fr}.ytiAccountShell{grid-template-columns:1fr}.ytiAccountNav ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));padding:10px}.ytiAccountNav ul li.woocommerce-MyAccount-navigation-link--customer-logout a{margin-top:0;border-top:0}.ytiAccountContent__header{margin-top:6px}.ytiCartEmpty{padding:40px 22px}.ytiCartEmpty h2{font-size:2rem}.ytiWooSingle{padding:110px 24px 64px}.ytiWooSingle div.product{grid-template-columns:1fr;column-gap:0}.ytiWooSingle div.product .ytiWooProductGallery,.ytiWooSingle div.product .summary{float:none;width:100%;margin-right:0}.ytiWooSingle div.product .summary{padding:28px}.ytiMacchinineSpecs dl,.ytiWooSingle .related ul.products,.ytiWooSingle .upsells ul.products{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:620px){.yti-woocommerce.woocommerce-account .pageDefault>.typography{padding:42px 16px 72px}.ytiAccountLogin{box-shadow:8px 8px #00DBC8}.ytiAccountLogin__brand{min-height:180px;padding:28px 24px}.ytiAccountLogin__brand h2{max-width:220px;font-size:2.1rem}.ytiAccountLogin__mark{top:44px;right:-42px;width:154px}.ytiAccountLogin__forms,.ytiAccountLogin--registration .ytiAccountLogin__forms{gap:42px;padding:34px 22px}.ytiAccountLogin__header h2{font-size:2rem}.ytiAccountLogin__options{align-items:flex-start;flex-direction:column;gap:10px}.ytiAccountNav ul{grid-template-columns:1fr}.ytiAccountContent__header h2{font-size:1.85rem}.ytiAccountWelcome{align-items:flex-start;flex-direction:column;padding:24px}.ytiAccountWelcome h3{font-size:1.55rem}.ytiAccountQuickLinks,.ytiAccountContent .woocommerce-Addresses{grid-template-columns:1fr}.ytiAccountQuickLinks>a{min-height:150px}.ytiAccountContent form.edit-account,.ytiAccountContent form:not(.woocommerce-form-login):not(.woocommerce-form-register) .woocommerce-address-fields,.ytiAccountContent #add_payment_method,.ytiAccountContent .woocommerce-order-details,.ytiAccountContent .woocommerce-customer-details,.yti-woocommerce.woocommerce-account .woocommerce-ResetPassword,.yti-woocommerce.woocommerce-account .lost_reset_password{padding:22px}.ytiAccountContent table.shop_table_responsive thead{display:none}.ytiAccountContent table.shop_table_responsive tbody tr{display:block;padding:14px 16px;border-bottom:1px solid #ddd}.ytiAccountContent table.shop_table_responsive tbody tr:last-child{border-bottom:0}.ytiAccountContent table.shop_table_responsive tbody th,.ytiAccountContent table.shop_table_responsive tbody td{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:9px 0;border:0;text-align:right!important}.ytiAccountContent table.shop_table_responsive tbody th::before,.ytiAccountContent table.shop_table_responsive tbody td::before{content:attr(data-title);color:#ccc;font-family:alatsi,sans-serif;font-size:.68rem;text-align:left;text-transform:uppercase}.ytiAccountContent table.shop_table_responsive tbody th::before{content:attr(data-title)}.ytiAccountContent table.shop_table_responsive .button{width:auto}.ytiAccountAddressIntro{grid-template-columns:1fr;gap:4px}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title{grid-template-columns:1fr}.ytiAccountContent .woocommerce-Address .woocommerce-Address-title .edit{justify-self:start}.yti-woocommerce.woocommerce-cart .pageDefault>.typography{padding:42px 16px 64px}.ytiCartIntro{align-items:flex-start}.ytiCartIntro h2{font-size:1.8rem}.ytiCartItem{grid-template-columns:104px minmax(0,1fr);grid-template-areas:"media content" "purchase purchase";gap:16px;padding:15px}.ytiCartItem__media{align-self:start}.ytiCartItem__content{padding:3px 36px 0 0}.ytiCartItem__title{font-size:1.15rem}.ytiCartItem__remove{top:10px;right:10px}.ytiCartItem__remove a.remove{width:34px;height:34px}.ytiCartItem__purchase{grid-template-columns:repeat(2,minmax(0,1fr));border-top:1px solid #ddd}.ytiCartItem__purchase .ytiCartItem__subtotal{grid-column:1/-1;border-top:1px solid #ddd!important;border-right:0}.ytiCartActions{align-items:stretch;flex-direction:column;padding:16px}.ytiCartCoupon__controls{flex-direction:column;gap:8px}.ytiCartActions__update,.ytiCartActions .button{width:100%}.yti-woocommerce .cart-collaterals .ytiCartSummary{padding:24px 20px}.yti-woocommerce .cart-collaterals .ytiCartSummary h2{font-size:1.8rem}.ytiWooSingle{padding:88px 16px 52px}.ytiWooSingle div.product .summary,.ytiMacchinineSpecs,.ytiMacchinineInfo{padding:22px}.ytiWooSingle div.product .summary .product_title{font-size:2rem}.ytiWooSingle div.product .summary{grid-template-columns:1fr;grid-template-areas:"title" "description" "stock" "price" "cart" "meta"}.ytiWooSingle div.product .summary .price{justify-self:start}.ytiWooSingle div.product .summary form.cart,.ytiWooSingle div.product .summary form.cart .button{width:100%}.ytiWooSingle div.product .summary form.cart .button{min-width:0}.ytiMacchinineSpecs dl,.ytiWooSingle .related ul.products,.ytiWooSingle .upsells ul.products{grid-template-columns:1fr}.ytiWooSingle div.product .ytiWooProductGallery .beadvGallery__thumbsWrap{grid-template-columns:34px minmax(0,1fr)34px;gap:8px;padding-right:0;padding-left:0}.yti-woocommerce .woocommerce-message,.yti-woocommerce .woocommerce-info,.yti-woocommerce .woocommerce-error{align-items:flex-start;flex-wrap:wrap;padding:16px 16px 16px 66px}.yti-woocommerce .woocommerce-message::before,.yti-woocommerce .woocommerce-info::before,.yti-woocommerce .woocommerce-error::before{top:18px;transform:none}.yti-woocommerce .woocommerce-message a.button,.yti-woocommerce .woocommerce-info a.button,.yti-woocommerce .woocommerce-error a.button{width:calc(100% + 50px);margin:6px 0 0 -50px}}
.wc-stripe-upe-element{margin-bottom:4px}#payment .payment_methods li img.stripe-icon{height:24px;-o-object-fit:contain;object-fit:contain;width:37px}#payment .payment_methods li img.stripe-boleto-icon,#payment .payment_methods li img.stripe-sepa-icon{padding:4px}#payment .payment_methods li img.stripe-sepa-icon{background:#10298e}#payment .payment_methods li.wc-stripe-optimized-checkout input#payment_method_stripe,#payment .payment_methods li.wc-stripe-optimized-checkout label[for=payment_method_stripe]{display:none}#payment .payment_methods li.wc-stripe-optimized-checkout .payment_box.payment_method_stripe{padding:0;padding-bottom:inherit}#payment .payment_methods li.wc-stripe-optimized-checkout .payment_box.payment_method_stripe>:not(#wc-stripe-upe-form){padding-left:1em;padding-right:1em}#payment .payment_methods li.wc-stripe-optimized-checkout .payment_box.payment_method_stripe .wc-stripe-payment-method-instruction{padding-bottom:.5em;padding-top:.5em}#payment .payment_methods li.wc-stripe-optimized-checkout .payment_box.payment_method_stripe ul.wc-saved-payment-methods[data-count="0"]{display:none}#payment .payment_methods li.wc-stripe-optimized-checkout .payment_box.payment_method_stripe>fieldset{border-width:0;margin:0;padding:0}#payment .payment_methods li.wc-stripe-optimized-checkout .payment_box.payment_method_stripe #wc-stripe-upe-form .wc-stripe-upe-element iframe{max-width:none}.wc-stripe-redirect-notice{align-items:center;border:0;color:#2b2d2f;display:flex;font-family:Source Sans Pro,HelveticaNeue-Light,Helvetica Neue Light,Helvetica Neue,Helvetica,Arial,Lucida Grande,sans-serif;font-size:16px;font-weight:400;gap:12px;letter-spacing:normal;line-height:25px;margin:0;min-inline-size:0;padding:24px 9px 8px;text-decoration:none;text-shadow:none;text-transform:none;transition:none;-webkit-font-smoothing:auto}.wc-stripe-redirect-notice__icon{flex-shrink:0;height:3em;width:3em}.wc-stripe-redirect-notice__text{margin:0;padding:0}body:has(>.wp-site-blocks) form.woocommerce-checkout .wc-stripe-redirect-notice{border:2px groove threedface;-o-border-image:initial;border-image:initial;margin-inline:2px;min-inline-size:-moz-min-content;min-inline-size:min-content;padding-block:1.35em 1.625em;padding-inline:1.75em}body:has(>.wp-site-blocks) form.woocommerce-checkout #wc-stripe_acss_debit-upe-form{display:none}.woocommerce-checkout #payment ul.payment_methods li img.stripe-multibanco-icon{max-height:30px}.woocommerce-checkout #payment ul.payment_methods li img.stripe-alipay-icon{max-width:50px}body.wc-stripe-hide-save-checkbox .woocommerce-SavedPaymentMethods-saveNew{display:none!important}#payment .payment_box[class*=payment_method_stripe]>fieldset:has(>.woocommerce-SavedPaymentMethods-saveNew:only-child[style*="display: none"]),body.wc-stripe-hide-save-checkbox #payment .payment_box[class*=payment_method_stripe]>fieldset:has(>.woocommerce-SavedPaymentMethods-saveNew:only-child){display:none}
.wc-stripe-copy-test-number{align-items:center;background-color:transparent!important;border:none!important;border-radius:0;box-shadow:none!important;color:inherit!important;cursor:pointer;display:inline-flex;font-family:inherit!important;font-size:inherit;font-weight:400;line-height:inherit;padding:2px 1px!important;vertical-align:baseline}.wc-stripe-copy-test-number span{margin-right:4px}.wc-stripe-copy-test-number i{background-color:currentColor;display:block;height:1.2em;-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIzIDMgMjAgMjAiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Im01IDQuNWgxMWMuMTMyNiAwIC4yNTk4LjA1MjY4LjM1MzYuMTQ2NDUuMDkzNy4wOTM3Ni4xNDY0LjIyMDk0LjE0NjQuMzUzNTV2MTFjMCAuMTMyNi0uMDUyNy4yNTk4LS4xNDY0LjM1MzYtLjA5MzguMDkzNy0uMjIxLjE0NjQtLjM1MzYuMTQ2NGgtMTFjLS4xMzI2MSAwLS4yNTk3OS0uMDUyNy0uMzUzNTUtLjE0NjQtLjA5Mzc3LS4wOTM4LS4xNDY0NS0uMjIxLS4xNDY0NS0uMzUzNnYtMTFjMC0uMTMyNjEuMDUyNjgtLjI1OTc5LjE0NjQ1LS4zNTM1NS4wOTM3Ni0uMDkzNzcuMjIwOTQtLjE0NjQ1LjM1MzU1LS4xNDY0NXptLTIgLjVjMC0uNTMwNDMuMjEwNzEtMS4wMzkxNC41ODU3OS0xLjQxNDIxLjM3NTA3LS4zNzUwOC44ODM3OC0uNTg1NzkgMS40MTQyMS0uNTg1NzloMTFjLjUzMDQgMCAxLjAzOTEuMjEwNzEgMS40MTQyLjU4NTc5LjM3NTEuMzc1MDcuNTg1OC44ODM3OC41ODU4IDEuNDE0MjF2MTFjMCAuNTMwNC0uMjEwNyAxLjAzOTEtLjU4NTggMS40MTQycy0uODgzOC41ODU4LTEuNDE0Mi41ODU4aC0xMWMtLjUzMDQzIDAtMS4wMzkxNC0uMjEwNy0xLjQxNDIxLS41ODU4LS4zNzUwOC0uMzc1MS0uNTg1NzktLjg4MzgtLjU4NTc5LTEuNDE0MnptMTcgM3YxMC43NWMwIC42OS0uNTYgMS4yNS0xLjI1IDEuMjVoLTEyLjc1djEuNWgxMi43NWMuNzI5MyAwIDEuNDI4OC0uMjg5NyAxLjk0NDUtLjgwNTUuNTE1OC0uNTE1Ny44MDU1LTEuMjE1Mi44MDU1LTEuOTQ0NXYtMTAuNzV6IiBmaWxsPSIjMTAxNTE3IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4K);mask-image:url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSJub25lIiBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIzIDMgMjAgMjAiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Im01IDQuNWgxMWMuMTMyNiAwIC4yNTk4LjA1MjY4LjM1MzYuMTQ2NDUuMDkzNy4wOTM3Ni4xNDY0LjIyMDk0LjE0NjQuMzUzNTV2MTFjMCAuMTMyNi0uMDUyNy4yNTk4LS4xNDY0LjM1MzYtLjA5MzguMDkzNy0uMjIxLjE0NjQtLjM1MzYuMTQ2NGgtMTFjLS4xMzI2MSAwLS4yNTk3OS0uMDUyNy0uMzUzNTUtLjE0NjQtLjA5Mzc3LS4wOTM4LS4xNDY0NS0uMjIxLS4xNDY0NS0uMzUzNnYtMTFjMC0uMTMyNjEuMDUyNjgtLjI1OTc5LjE0NjQ1LS4zNTM1NS4wOTM3Ni0uMDkzNzcuMjIwOTQtLjE0NjQ1LjM1MzU1LS4xNDY0NXptLTIgLjVjMC0uNTMwNDMuMjEwNzEtMS4wMzkxNC41ODU3OS0xLjQxNDIxLjM3NTA3LS4zNzUwOC44ODM3OC0uNTg1NzkgMS40MTQyMS0uNTg1NzloMTFjLjUzMDQgMCAxLjAzOTEuMjEwNzEgMS40MTQyLjU4NTc5LjM3NTEuMzc1MDcuNTg1OC44ODM3OC41ODU4IDEuNDE0MjF2MTFjMCAuNTMwNC0uMjEwNyAxLjAzOTEtLjU4NTggMS40MTQycy0uODgzOC41ODU4LTEuNDE0Mi41ODU4aC0xMWMtLjUzMDQzIDAtMS4wMzkxNC0uMjEwNy0xLjQxNDIxLS41ODU4LS4zNzUwOC0uMzc1MS0uNTg1NzktLjg4MzgtLjU4NTc5LTEuNDE0MnptMTcgM3YxMC43NWMwIC42OS0uNTYgMS4yNS0xLjI1IDEuMjVoLTEyLjc1djEuNWgxMi43NWMuNzI5MyAwIDEuNDI4OC0uMjg5NyAxLjk0NDUtLjgwNTUuNTE1OC0uNTE1Ny44MDU1LTEuMjE1Mi44MDU1LTEuOTQ0NXYtMTAuNzV6IiBmaWxsPSIjMTAxNTE3IiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4K);-webkit-mask-position:center;mask-position:center;-webkit-mask-repeat:no-repeat;mask-repeat:no-repeat;-webkit-mask-size:contain;mask-size:contain;order:1;width:1.2em}.wc-stripe-copy-test-number:hover{background-color:transparent;opacity:.7}.wc-stripe-copy-test-number:active i{transform:scale(.9)}.wc-stripe-copy-test-number:focus{box-shadow:none!important;outline:none}.wc-stripe-copy-test-number:focus-visible{outline:2px solid currentColor;outline-offset:2px}.wc-stripe-copy-test-number.state--success i{-webkit-mask-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMiAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuMzI3NCAwLjUzMTIxNkw0LjU3NjY3IDkuNjEwMTlMMC42NjIyMDYgNi42OTk1NyIgc3Ryb2tlPSIjMDA4QTIwIiBzdHJva2Utd2lkdGg9IjEuNSIvPjwvc3ZnPgo=);mask-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTEiIHZpZXdCb3g9IjAgMCAxMiAxMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTEuMzI3NCAwLjUzMTIxNkw0LjU3NjY3IDkuNjEwMTlMMC42NjIyMDYgNi42OTk1NyIgc3Ryb2tlPSIjMDA4QTIwIiBzdHJva2Utd2lkdGg9IjEuNSIvPjwvc3ZnPgo=)}

.stripe-gateway-checkout-email-field{position:relative}.stripe-gateway-checkout-email-field button.stripe-gateway-stripelink-modal-trigger{display:none;position:absolute;right:5px;width:64px;height:40px;background:no-repeat url(https://youngtimeritalia.it/wp-content/plugins/woocommerce-gateway-stripe/assets/css/../images/link.svg);background-color:rgba(0,0,0,0);cursor:pointer;border:none}