:root {
  --content-maxwidth: 1650px;
  --margin-h: 90px;
  --margin-v: 60px;
  --padXXL: 210px;
  --padXL: 140px;
  --padL: 100px;
  --padM: 72px;
  --padS: 25px;
  --gap: 20px;
  --gap-half: 10px;
  --padding-h: 90px;
  --padding-v: 60px;
  --header-h: 100px;
  --color-primary: #C8102E;
  --color-blue: #2F3F5A;
  --color-blue-dark: #13294B;
  --color-text: #34332F;
  --color-text-inv: #fff;
  --color-text-highlight: #e2dac5;
  --color-tan: #A29D8E;
  --color-tan-dark: #888179;
  --color-tan-light: #b2a991;
  --fz-h1: 82px;
  --fz-h2: 58px;
  --fz-h3: 40px;
  --fz-h4: 28.8px;
  --fz-h5: 20px;
  --fz-h6: 16px;
  --fz-xxl: 50px;
  --fz-xl: 42px;
  --fz-l: 28px;
  --fz-m: 21px;
  --fz-n: 18px;
  --fz-s: 16px;
  --fz-xs: 12.5px;
}

@media (max-width: 1920px) {
  :root {
    --content-maxwidth: 84vw;
  }
}
@media (max-width: 1440px) {
  :root {
    --content-maxwidth: 84vw;
    --padding-h: 6.4vw;
    --padding-v: 4.5vw;
    --padXXL: 18vw;
    --padXL: 10vw;
    --padL: 7vw;
    --padM: 9vw;
    --padS: 1.6vw;
    --fz-h1: 60px;
    --fz-h2: 50px;
    --fz-h3: 40px;
    --fz-h4: 30px;
    --fz-h5: 24px;
    --fz-h6: 21px;
    --fz-n: 16px;
  }
}
@media (max-width: 1024px) {
  :root {
    --content-maxwidth: 1024px;
    --header-h: 40px;
    --padL: 120px;
    --padM: 8.53vw;
    --padS: 2.44vw;
  }
}
@media (max-width: 720px) {
  :root {
    --content-maxwidth: 720px;
    --padding-h: 20px;
    --padL: 60px;
    --padM: 35px;
    --padS: 20px;
    --fz-h1: 50px;
    --fz-h2: 40px;
    --fz-h3: 32px;
    --fz-h4: 24px;
    --fz-h5: 20px;
    --fz-h6: 16px;
  }
}
@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/RobotoCondensed-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Regular";
  src: url("../fonts/Roboto-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}
h1 {
  font-size: var(--fz-h1) !important;
  line-height: 1.5;
}

h2 {
  font-size: var(--fz-h2) !important;
}

h3 {
  font-size: var(--fz-h3) !important;
}

h4 {
  font-size: var(--fz-h4) !important;
}

h5 {
  font-size: var(--fz-h5) !important;
}

h6 {
  font-size: var(--fz-h6) !important;
}

p {
  font-weight: 400;
  font-size: var(--fz-n);
}
p.caption {
  font-size: var(--fz-s);
}

strong {
  font-weight: 600;
}

body {
  color: var(--color-text);
}

.brand-highlight {
  color: var(--color-text-highlight);
}

.all-caps {
  text-transform: uppercase;
}

.has-red-gradient-overlay__top-bottom {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.5));
  height: 100%;
  width: 100%;
  z-index: 0;
}

hr {
  content: "";
  background: var(--color-tan);
  border: none;
  border-radius: 100%;
  display: block;
  margin: var(--gap) auto;
  height: 2px;
  max-width: 470px;
  width: 100%;
}
@media (max-width: 720px) {
  hr {
    width: 50%;
  }
}

.sn_btn {
  letter-spacing: 0.125em;
}
.sn_btn._secondary {
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}
@media (max-width: 720px) {
  .sn_btn {
    width: 100%;
  }
}
.sn_btn.has-black-arrow {
  padding-right: 30px;
}
.sn_btn.has-black-arrow:after {
  content: "";
  background: url("../img/icon-arrow-right-black.svg") no-repeat;
  background-size: 16px 16px;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  left: auto;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;
}
.sn_btn.has-arrow {
  padding-right: 30px;
}
.sn_btn.has-arrow:after {
  content: "";
  background: url("../img/icon-arrow-right-white.svg") no-repeat;
  background-size: 16px 16px;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  left: auto;
  top: 0;
  right: 0;
  height: 100%;
  width: 20px;
}

.campari-brand-bg-pattern .sn_background {
  background-repeat: repeat;
  background-size: 333px 302px;
  background-position: top left !important;
}

#CybotCookiebotDialog h2 {
  font-size: 12pt !important;
}

@media (max-width: 720px) {
  .sn_btn._wide {
    width: auto;
  }
}
.full-height,
.full-height-limit {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
}
.full-height .sn_block_wr,
.full-height-limit .sn_block_wr {
  margin: auto 0;
}
.full-height.full-height-limit,
.full-height-limit.full-height-limit {
  height: 100vh;
}

.campari-ratio-19-13 {
  height: 68.4210526316vw;
}
@media (max-width: 720px) {
  .campari-ratio-19-13 {
    height: 146.1538461538vw;
  }
}

@media (max-width: 720px) {
  .campari-bg-mobile-alignleft .sn_background {
    background-position: 0% 50% !important;
  }
}

.campari-ratio-2-1 {
  height: 50vw;
}
@media (max-width: 720px) {
  .campari-ratio-2-1 {
    height: 130vw;
  }
}

.row {
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

.campari-bg-fade > .sn_background {
  margin: 0;
  width: 100%;
  z-index: 0;
}
.campari-bg-fade > .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.5));
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}

.campari-bg-fade-super > .sn_background {
  margin: 0;
  width: 100%;
  z-index: 0;
}
.campari-bg-fade-super > .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.75));
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}

@media (max-width: 1024px) {
  .vlmk-desktop-only {
    display: none;
  }
}
@media (min-width: 1025px) {
  .vlmk-desktop-only {
    display: block;
  }
}

@media (max-width: 1024px) {
  .vlmk-mobile-only {
    display: block;
  }
}
@media (min-width: 1025px) {
  .vlmk-mobile-only {
    display: none;
  }
}

@media (min-width: 720px) {
  .sn_popup_ct,
  .container-md,
  .sn_container_fixed_md,
  .container-sm,
  .sn_container_fixed_sm,
  .container,
  .sn_container_fixed {
    max-width: var(--content-maxwidth);
  }
}
@media (min-width: 1024px) {
  .sn_popup_ct,
  .container-lg,
  .sn_container_fixed_lg,
  .container-md,
  .sn_container_fixed_md,
  .container-sm,
  .sn_container_fixed_sm,
  .container,
  .sn_container_fixed {
    max-width: var(--content-maxwidth);
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (min-width: 1440px) {
  .sn_popup_ct,
  .container-lg,
  .sn_container_fixed_lg,
  .container-md,
  .sn_container_fixed_md,
  .container-sm,
  .sn_container_fixed_sm,
  .container,
  .sn_container_fixed {
    max-width: var(--content-maxwidth);
  }
}
header.sn_header {
  height: var(--header-h);
}
header.sn_header .sn_header_utility._full {
  min-height: 40px;
}
header.sn_header .sn_header_logo img {
  height: 23px;
  width: auto;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i {
  min-height: 60px;
  text-transform: uppercase;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i a {
  padding-top: 8px;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i .h5 {
  font-size: clamp(16px, 1.5vw, 18px);
}
@media (max-width: 1024px) {
  header.sn_header .sn_header_nav .sn_header_nav_full_i .h5 {
    font-size: clamp(16px, 1.5vw, 20px);
  }
}
header.sn_header .sn_header_nav .sn_header_nav_full_i:not(:last-child) {
  margin-right: 2.2vw;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i._sub {
  min-height: 52px;
  font-size: var(--fz-n);
}
header.sn_header .sn_header_nav .sn_header_nav_full_i._sub a {
  font-size: clamp(14.933px, 1.4vw, 16.8px);
  padding-top: 5px;
}
@media (max-width: 1024px) {
  header.sn_header .sn_header_nav .sn_header_nav_full_i._sub a {
    font-size: clamp(14.933px, 1.4vw, 18.667px);
  }
}
header.sn_header .sn_header_nav .sn_header_nav_full_i .sn_header_nav_full_sub {
  text-transform: uppercase;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i .menu-item-link-to-parent {
  font-family: "Roboto Condensed";
  margin-left: 4em;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i .menu-item-link-to-parent span {
  margin-bottom: -0.125em;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i .menu-item-link-to-parent ._arrow_right {
  height: 30px;
  width: 60px;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i:hover .sn_header_nav_full_sub, header.sn_header .sn_header_nav .sn_header_nav_full_i:active .sn_header_nav_full_sub {
  transform: translate3d(0, -101%, 0);
}
header.sn_header .sn_header_nav .sn_header_nav_full_i:hover a .sn_sprite, header.sn_header .sn_header_nav .sn_header_nav_full_i:active a .sn_sprite {
  transform: none;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i:hover .sn_background._triangle, header.sn_header .sn_header_nav .sn_header_nav_full_i:active .sn_background._triangle {
  clip-path: polygon(50% 100%, 100% 200%, 0% 200%);
}
header.sn_header .sn_header_nav .sn_header_nav_full_i.open .sn_header_nav_full_sub {
  transform: none;
}
header.sn_header .sn_header_nav .sn_header_nav_full_i.open a .sn_sprite {
  transform: scale3d(1, -1, 1);
}
header.sn_header .sn_header_nav .sn_header_nav_full_i.open .sn_background._triangle {
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
header.sn_header .sn_header_nav._mobile .sn_header_nav_mobile_in,
header.sn_header .sn_header_nav._mobile .sn_header_nav_mobile_sub_wr {
  background-color: var(--color-text-highlight);
}
header.sn_header .sn_header_nav._mobile .sn_header_nav_mobile_i a {
  text-transform: uppercase;
}
header.sn_header .sn_header_nav._mobile .sn_header_nav_mobile_i a .sn_sprite {
  transform: translateY(-0.05em);
}
header.sn_header .sn_header_nav._mobile .sn_header_nav_mobile_i._sub_current a {
  color: var(--color-primary);
  font-family: "Roboto Regular";
  font-weight: 600;
  font-size: 16px;
}
header.sn_header .sn_header_nav._mobile .sn_header_nav_mobile_i .sn_header_nav_mobile_i._sub_current a[href="#"] {
  display: none;
}
header.sn_header .sn_header_nav._mobile .sn_language_selector_toggle {
  color: var(--color-text) !important;
  padding-right: 0;
}
header.sn_header .sn_header_nav._mobile .sn_language_selector_toggle .sn_sprite {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
header.sn_header .sn_header_nav._mobile .sn_btn._secondary._full {
  border: 1px solid var(--color-text);
  color: var(--color-text);
  text-align: center;
}
header.sn_header .sn_header_nav._mobile .sn_header_nav_mobile_socials {
  flex: 0 1 auto;
  margin-top: auto !important;
}
header.sn_header .sn_language_selector_toggle {
  padding-right: 8px;
}
header.sn_header .sn_language_selector_toggle .sn_sprite {
  width: 22px;
  height: 22px;
  margin-right: 8px;
}
/*.sn_header_spacer {
	height: auto;
}*/
body.admin-bar .sn_header {
  top: 30px;
}

@media (min-width: 1024px) {
  .sn_header_nav._full {
    display: block;
  }
}
@media (max-width: 720px) {
  body.admin-bar .sn_header {
    top: 0px;
  }
  /*.sn_header_spacer {
  	height: 0 !important;
  }*/
}
@media (min-width: 834px) {
  .sn_header [data-click-to-buy-cta=true] {
    padding-right: 20px !important;
  }
}
@media (max-width: 833px) {
  .sn_header [data-click-to-buy-cta=true] {
    text-align: center !important;
  }
  .sn_header .ctb-cta-container {
    display: flex !important;
  }
  .sn_header .ctb-cta-container .sn_language_selector_toggle {
    display: none !important;
  }
}
.sn_header_spacer {
  height: var(--header-h) !important;
}

.sn_footer {
  background-image: url("../img/footer-bg-min.jpg");
  background-position: center center;
  background-size: cover;
}
.sn_footer .sn_footer_top_logo {
  max-width: 180px !important;
  height: auto;
}
@media (max-width: 720px) {
  .sn_footer .sn_footer_top_logo {
    max-width: 150px;
  }
}
.sn_footer .sn_footer_top_title {
  font-weight: 400;
  font-size: var(--fz-n);
}
@media (max-width: 720px) {
  .sn_footer .sn_footer_top_title {
    font-size: var(--fz-n);
  }
}
.sn_footer .sn_footer_top_logo_wrapper img {
  display: inline !important;
}
.sn_footer .sn_footer_bottom_menu li {
  margin: 0 0.6em;
}
.sn_footer .sn_footer_bottom_menu li:not(:last-child)::after {
  content: none;
}
.sn_footer .sn_footer_bottom_socials_title {
  display: none;
}

.sn_block_intro_full {
  overflow: hidden;
}
.sn_block_intro_full .sn_block_intro_full_wr {
  background: transparent !important;
}
@media (max-width: 720px) {
  .sn_block_intro_full .sn_block_intro_full_wr .sn_container_fixed {
    margin-bottom: var(--padM);
    margin: auto;
  }
}
.sn_block_intro_full .sn_block_intro_full_wr .sn_block_intro_full_col {
  flex: 1 0 50%;
  max-width: 50%;
  margin: 0;
  text-align: center;
}
@media (max-width: 720px) {
  .sn_block_intro_full .sn_block_intro_full_wr .sn_block_intro_full_col {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.sn_block_intro_full .sn_block_intro_full_wr .sn_block_intro_full_col .h1 {
  font-size: var(--fz-h1);
}
.sn_block_intro_full .sn_block_intro_full_wr .sn_block_intro_full_col p {
  line-height: 1.6;
  margin-bottom: 2em;
}
.sn_block_intro_full .sn_block_intro_full_wr .sn_block_intro_full_col p span {
  display: inline-block;
  width: 100%;
}
.sn_block_intro_full .sn_block_intro_full_wr.text-left .sn_container_fixed .sn_block_intro_full_col {
  margin: 0 auto 0 0 !important;
}
.sn_block_intro_full .sn_block_intro_full_wr.text-center .sn_container_fixed .sn_block_intro_full_col {
  margin: 0 auto !important;
}
.sn_block_intro_full .sn_block_intro_full_wr.text-right .sn_container_fixed .sn_block_intro_full_col {
  margin: 0 0 0 auto !important;
}
.sn_block_intro_full .sn_background {
  transition: all 0.35s ease-in-out;
}
.sn_block_intro_full.campari-products-hero .sn_block_intro_full_wr {
  background: none !important;
}
.sn_block_intro_full.campari-products-hero .h1,
.sn_block_intro_full.campari-products-hero h1 {
  font-size: var(--fz-h1);
}
@media (max-width: 720px) {
  .sn_block_intro_full.campari-products-hero.campari-bg-red-fade .sn_background {
    background-size: auto 130vh;
  }
  .sn_block_intro_full.campari-products-hero.campari-bg-red-fade .sn_background:after {
    background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0.5) 50%);
  }
  .sn_block_intro_full.campari-products-hero.product-negroni .sn_background {
    background-position: 44% 50% !important;
  }
}
.sn_block_intro_full .hero-brand-logo {
  padding-bottom: 105px;
  text-align: right;
}
.sn_block_intro_full .hero-brand-logo img {
  height: auto;
  max-width: 26.2vw;
  width: 100%;
}
@media (max-width: 720px) {
  .sn_block_intro_full .hero-brand-logo img {
    max-width: 280px;
  }
}
.sn_block_intro_full .hero-sub-logo-text {
  margin: 0 0 0 auto;
  max-width: 64%;
}
@media (max-width: 720px) {
  .sn_block_intro_full .hero-sub-logo-text {
    margin: 0 auto;
    max-width: 100%;
  }
}
@media (max-width: 720px) {
  .sn_block_intro_full.campari-bg-red-fade {
    flex-direction: column;
  }
}
.sn_block_intro_full.campari-bg-red-fade .sn_background {
  margin: 0;
}
@media (max-width: 720px) {
  .sn_block_intro_full.campari-bg-red-fade .sn_background {
    min-height: 100vh;
    width: 100%;
  }
}
.sn_block_intro_full.campari-bg-red-fade .sn_background:after {
  transition: all 0.35s ease-in-out;
  content: "";
  display: block;
  background: linear-gradient(to left, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  background: linear-gradient(to left, #c8102e 0%, rgba(200, 16, 46, 0.1) 100%);
  transform-origin: right bottom;
  z-index: 1;
}
@media (max-width: 720px) {
  .sn_block_intro_full.campari-bg-red-fade .sn_background:after {
    content: "";
    display: block;
    background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
    height: 100%;
    width: 100%;
    z-index: 0;
    transform-origin: center bottom;
  }
}
.sn_block_intro_full.campari-bg-red-fade.fade-vertical .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0) 100%);
  height: 100%;
  width: 100%;
  z-index: 0;
  transform-origin: center bottom;
  z-index: 1;
}
.sn_block_intro_full.campari-bg-red-fade.fade-blue .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to left, #13294b 0%, rgba(19, 41, 75, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}
@media (max-width: 720px) {
  .sn_block_intro_full.campari-bg-red-fade.fade-blue .sn_background:after {
    content: "";
    display: block;
    background: linear-gradient(to top, #13294b 0%, rgba(19, 41, 75, 0) 50%);
    height: 100%;
    width: 100%;
    z-index: 0;
  }
}
.sn_block_intro_full.campari-bg-red-fade.fade-black .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to left, black 0%, rgba(0, 0, 0, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}
@media (max-width: 720px) {
  .sn_block_intro_full.campari-bg-red-fade.fade-black .sn_background:after {
    content: "";
    display: block;
    background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 50%);
    height: 100%;
    width: 100%;
    z-index: 0;
  }
}
@media (max-width: 720px) {
  .sn_block_intro_full.vlmk_smaller_h1 h1 {
    font-size: var(--fz-h3) !important;
  }
}
@media (max-width: 1024px) {
  .sn_block_intro_full.campari-red-passion-hero .sn_background {
    background-position: 42% 50% !important;
  }
}
.sn_block_intro_full .galleria-campari-social-links {
  margin-top: 1em;
}
.sn_block_intro_full .galleria-campari-social-links a {
  width: 32px;
  height: 32px;
  margin-left: 0.75em;
}
@media (hover: hover) and (pointer: fine) {
  .sn_block_intro_full:not(.disable-hover-animation):hover .sn_background {
    transform: scale(1.2);
  }
  .sn_block_intro_full:not(.disable-hover-animation):hover .sn_background:after {
    transform: scale(1.5, 1);
  }
  .sn_block_intro_full:not(.disable-hover-animation):hover.fade-vertical .sn_background:after {
    transform: scale(1, 1.5);
  }
}

body.home .sn_block_intro_full {
  /*.sn_background {
  	background-position: 50% 15% !important;
  }*/
}
body.home .sn_block_intro_full.campari-bg-red-fade.fade-black .sn_background:after {
  background: linear-gradient(to left, black 0%, rgba(0, 0, 0, 0) 66%);
}
body.home .sn_block_intro_full .hero-height-spacer {
  display: none;
}
@media (max-width: 720px) {
  body.home .sn_block_intro_full {
    /*.sn_background {
    	background-position: 43% 15% !important;
    }*/
  }
  body.home .sn_block_intro_full.campari-bg-red-fade.fade-black .sn_background:after {
    background: linear-gradient(to top, black 0%, rgba(0, 0, 0, 0) 66%);
  }
  body.home .sn_block_intro_full .hero-height-spacer {
    display: block;
    height: 605px;
  }
  body.home .sn_block_intro_full .hero-brand-logo {
    text-align: center;
  }
}

.sn_block_teaser_simple {
  display: flex;
  overflow: hidden;
  padding: var(--padXL) auto;
  position: relative;
}
.sn_block_teaser_simple.full-height {
  min-height: 100vh;
}
.sn_block_teaser_simple .sn_background_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  height: auto;
  margin: var(--padM) 0;
  width: 66%;
  overflow: hidden;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple .sn_background_wrapper {
    margin: 0;
    width: 100%;
  }
}
.sn_block_teaser_simple .sn_background {
  transition: all 0.35s ease-in-out;
  height: auto;
  margin: 0;
  width: 100%;
  z-index: -1;
}
.sn_block_teaser_simple .sn_background:after {
  transition: all 0.35s ease-in-out;
  z-index: 0;
}
.sn_block_teaser_simple .sn_block_teaser_simple_i_in {
  background-color: #fff;
  padding: var(--padM);
  z-index: 100;
  margin: var(--padXL) 0 var(--padXL) 0;
  max-width: none;
}
@media (max-width: 1440px) {
  .sn_block_teaser_simple .sn_block_teaser_simple_i_in {
    padding: 6vw 6vw;
  }
}
.sn_block_teaser_simple .sn_block_teaser_simple_i_in strong,
.sn_block_teaser_simple .sn_block_teaser_simple_i_in .brand-highlight {
  color: var(--color-primary);
}
@media (max-width: 1440px) {
  .sn_block_teaser_simple .sn_block_teaser_simple_i_in {
    max-width: none;
  }
}
@media (max-width: 720px) {
  .sn_block_teaser_simple .sn_block_teaser_simple_i_in {
    margin: 100vw var(--gap) var(--gap) var(--gap);
    padding: var(--padS);
  }
  .sn_block_teaser_simple .sn_block_teaser_simple_i_in .sn_block_teaser_simple_i_title {
    margin-bottom: 0 !important;
  }
  .sn_block_teaser_simple .sn_block_teaser_simple_i_in .h4 {
    font-size: var(--fz-h3);
    line-height: 1.5;
    padding: 0 0 0.5em 0;
  }
}
.sn_block_teaser_simple .sn_block_wr {
  display: flex;
  height: auto;
  margin: 0 0 0 auto;
  margin-right: calc(50vw - var(--content-maxwidth) / 2);
  width: 40%;
}
@media (max-width: 1440px) {
  .sn_block_teaser_simple .sn_block_wr {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .sn_block_teaser_simple .sn_block_wr {
    margin-right: var(--padS);
  }
}
@media (max-width: 720px) {
  .sn_block_teaser_simple .sn_block_wr {
    margin: 0;
    width: 100%;
  }
}
.sn_block_teaser_simple .sn_block_wr .sn_container_fluid {
  padding-right: 0;
  padding-left: 0;
  margin: var(--padXXL) 0;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple .sn_block_wr .sn_container_fluid {
    margin: auto 0 var(--padM) 0;
  }
}
.sn_block_teaser_simple.has-media-on-right .sn_background_wrapper {
  margin-left: auto;
}
.sn_block_teaser_simple.has-media-on-right .sn_block_wr {
  margin: auto auto auto 0;
  margin-left: calc(50vw - var(--content-maxwidth) / 2);
}
@media (max-width: 1024px) {
  .sn_block_teaser_simple.has-media-on-right .sn_block_wr {
    margin-left: var(--padS);
  }
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.has-media-on-right .sn_block_wr {
    margin: 0;
  }
}
.sn_block_teaser_simple.campari-double-bg-fade .campari-fade-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sn_block_teaser_simple.campari-double-bg-fade .campari-fade-bg .sn_background_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  width: 100%;
  margin-top: 0;
  z-index: -1;
}
.sn_block_teaser_simple.campari-double-bg-fade .campari-fade-bg .sn_background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.5;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-double-bg-fade .campari-fade-bg .sn_background {
    height: 100%;
  }
}
.sn_block_teaser_simple.campari-double-bg-fade .campari-fade-bg:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.5));
  height: 100%;
  width: 100%;
  z-index: 0;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-double-bg-fade .sn_background_wrapper .sn_background {
    height: 110vw;
  }
}
.sn_block_teaser_simple.campari-double-bg-fade > .sn_block_wr {
  margin: auto 0 auto auto;
  margin-right: calc(50vw - var(--content-maxwidth) / 2);
}
@media (max-width: 1024px) {
  .sn_block_teaser_simple.campari-double-bg-fade > .sn_block_wr {
    margin-right: var(--padS);
  }
}
.sn_block_teaser_simple.campari-double-bg-fade .sn_block_teaser_simple_i_title_in {
  max-width: 100%;
  padding: 0;
}
.sn_block_teaser_simple.campari-double-bg-fade .sn_block_teaser_simple_i_title_in h2 {
  font-size: var(--fz-h3) !important;
}
.sn_block_teaser_simple.campari-double-bg-fade .sn_container_fluid {
  margin: 0;
}
.sn_block_teaser_simple.campari-double-bg-fade.fade-black .campari-fade-bg .sn_background {
  opacity: 0.85;
}
.sn_block_teaser_simple.campari-double-bg-fade.fade-black .campari-fade-bg:after {
  content: "";
  display: block;
  background: linear-gradient(black, rgba(0, 0, 0, 0.5));
  height: 100%;
  width: 100%;
  z-index: 0;
}
.sn_block_teaser_simple.campari-double-bg-fade.fade-fellini-pattern .campari-fade-bg {
  background-image: url("../img/page-fellini-forward-bg-pattern-lines-min.png");
}
.sn_block_teaser_simple.campari-double-bg-fade.fade-fellini-pattern .campari-fade-bg .sn_background {
  mix-blend-mode: screen;
}
.sn_block_teaser_simple.campari-double-bg-fade.has-media-on-right .sn_background_wrapper {
  margin-left: auto;
}
.sn_block_teaser_simple.campari-double-bg-fade.has-media-on-right .sn_block_wr {
  margin: auto auto auto 0;
  margin-left: calc(50vw - var(--content-maxwidth) / 2);
}
@media (max-width: 1024px) {
  .sn_block_teaser_simple.campari-double-bg-fade.has-media-on-right .sn_block_wr {
    margin-left: var(--padS);
  }
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-double-bg-fade.has-media-on-right .sn_block_wr {
    margin: 0;
  }
}
.sn_block_teaser_simple.campari-bg-fade .sn_background {
  margin: 0;
  width: 100%;
  z-index: 0;
}
.sn_block_teaser_simple.campari-bg-fade .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to left, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-bg-fade .sn_background:after {
    background: linear-gradient(to bottom, #c8102e 0%, rgba(200, 16, 46, 0.5) 50%);
  }
}
.sn_block_teaser_simple.campari-layout-two-col .sn_block_wr, .sn_block_teaser_simple.campari-layout-three-col .sn_block_wr {
  margin: 0 auto !important;
  width: 100%;
}
.sn_block_teaser_simple.campari-layout-two-col .sn_container_fluid, .sn_block_teaser_simple.campari-layout-three-col .sn_container_fluid {
  margin: var(--padM) 0;
}
.sn_block_teaser_simple.campari-layout-two-col .row, .sn_block_teaser_simple.campari-layout-three-col .row {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--content-maxwidth);
  padding: 0 8px;
  width: 100%;
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i {
  display: flex;
  flex-direction: column;
  flex: 1 0 50%;
  padding: 0 var(--gap-half);
  margin-bottom: 0 !important;
  transform-origin: 50% 55% !important;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i {
    padding: calc(var(--padS) / 2) var(--padM);
    flex: 1 0 auto;
    max-width: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i:hover .sn_block_teaser_simple_i_bg, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i:hover .sn_block_teaser_simple_i_bg {
    transform: scale(1.2);
  }
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_in, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_in {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  padding: 0 0 var(--gap) 0;
  height: 100%;
  width: 100%;
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_in h3, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_in h3 {
  font-size: var(--fz-h4) !important;
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_bg, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_bg {
  transition: all 0.35s ease-in-out;
  height: 25vw;
  max-height: 475px;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_bg, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_bg {
    height: 75vw;
    transform-origin: 50% 58%;
  }
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_bg + .sn_block_teaser_simple_i_title, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_bg + .sn_block_teaser_simple_i_title {
  padding-top: var(--padS);
  z-index: 10;
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_title_in, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_title_in {
  max-width: 100%;
  padding: 0;
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_title,
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_content, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_title,
.sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_content {
  flex: 0 1 auto;
  padding: 0 var(--padS);
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_title,
  .sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_content, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_title,
  .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_content {
    padding: 0 var(--gap);
  }
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_block_teaser_simple_i_content, .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i_content {
  flex: 1 0 auto;
}
.sn_block_teaser_simple.campari-layout-two-col .row .sn_btn, .sn_block_teaser_simple.campari-layout-three-col .row .sn_btn {
  flex: 0 1 auto;
  margin: 1em auto 0 var(--padS) !important;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-layout-two-col .row .sn_btn, .sn_block_teaser_simple.campari-layout-three-col .row .sn_btn {
    margin-left: var(--gap);
  }
}
.sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i {
  flex: 1 0 33.3333333333%;
  max-width: 33.3333333333%;
}
@media (max-width: 768px) {
  .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i {
    max-width: 100%;
    flex: 1 0 100%;
  }
}
@media (max-width: 768px) {
  .sn_block_teaser_simple.campari-layout-three-col .row .sn_block_teaser_simple_i .sn_block_teaser_simple_i_bg {
    height: 50vw;
    transform-origin: 50% 58%;
  }
}
.sn_block_teaser_simple.campari-red-text-box .sn_block_wr .sn_container_fluid {
  margin-top: var(--padS);
}
.sn_block_teaser_simple.campari-red-text-box .sn_block_teaser_simple_i_title,
.sn_block_teaser_simple.campari-red-text-box .sn_block_teaser_simple_i_content,
.sn_block_teaser_simple.campari-red-text-box .sn_block_teaser_simple_i_in {
  background: var(--color-primary);
  z-index: 100;
}
.sn_block_teaser_simple.campari-red-text-box .sn_block_teaser_simple_i_title {
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
  z-index: 100;
}
.sn_block_teaser_simple.campari-red-text-box .sn_block_teaser_simple_i_content p {
  font-size: var(--fz-n);
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-red-text-box .sn_container_fixed {
    padding: 0 var(--gap);
  }
  .sn_block_teaser_simple.campari-red-text-box .sn_block_teaser_simple_i_in {
    margin: 100vw 0 var(--padM) 0;
  }
}
.sn_block_teaser_simple.campari-black-text-box .sn_block_wr .sn_container_fluid {
  margin-top: var(--padS);
}
.sn_block_teaser_simple.campari-black-text-box .sn_block_teaser_simple_i_title,
.sn_block_teaser_simple.campari-black-text-box .sn_block_teaser_simple_i_in {
  background: #000;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-black-text-box .sn_container_fixed {
    padding: 0 var(--gap);
  }
  .sn_block_teaser_simple.campari-black-text-box .sn_block_teaser_simple_i_in {
    margin: 100vw 0 var(--padM) 0;
  }
}
.sn_block_teaser_simple.campari-black-text-box strong {
  font-weight: normal;
  color: var(--color-text-highlight);
}
.sn_block_teaser_simple.campari-teaser-red-fade {
  min-height: 42vw;
  padding: 0;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade {
    flex-direction: column;
  }
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_background {
  margin: 0;
  width: 50%;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_background {
    height: 75vw;
    width: 100%;
    position: relative;
  }
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to left, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_background:after {
    content: "";
    display: block;
    background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
    height: 100%;
    width: 100%;
    z-index: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_background:hover {
    transform: scale(1.2);
  }
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_background:hover:after {
    transform: scale(0.83333333);
  }
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_block_wr {
  background: var(--color-primary);
  margin-right: 0;
  width: 50%;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_block_wr {
    width: 100%;
  }
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_container_fluid {
  margin: auto 0;
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_container_fluid > .row {
  height: 100%;
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i {
  display: flex;
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_in {
  background-color: transparent;
  margin: 0 0 auto 0;
  padding: 7vw 7vw;
  max-width: 100%;
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_in .brand-highlight {
  color: var(--color-text-highlight);
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_in:before {
  content: "";
  display: block;
  height: 50%;
  width: 5px;
  background: var(--color-tan);
  position: absolute;
  left: 0px;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_in:before {
    content: none !important;
  }
}
@media (min-width: 1441px) {
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_in {
    margin: auto calc(50vw - 720px - var(--padM) / 1.25) auto 0;
  }
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_in {
    padding: var(--padM) var(--padM);
    width: 100%;
  }
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_title_in {
  max-width: 100%;
  padding: 0;
}
.sn_block_teaser_simple.campari-teaser-red-fade .sn_block_teaser_simple_i_title_in h2.h4 {
  font-size: var(--fz-h3) !important;
}
.sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_background {
  left: auto;
}
.sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_background:after {
  transform: rotate(180deg);
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_background:after {
    transform: none;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_background:hover:after {
    transform: rotate(180deg) scale(0.83333333);
  }
}
@media (hover: hover) and (pointer: fine) and (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_background:hover:after {
    transform: scale(0.83333333);
  }
}
.sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_block_wr {
  margin: 0 auto 0 0;
}
@media (min-width: 1441px) {
  .sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_block_teaser_simple_i_in {
    margin: auto 0 auto calc(50vw - 720px - var(--padM) / 1.25);
  }
}
.sn_block_teaser_simple.campari-teaser-red-fade.has-media-on-right .sn_block_teaser_simple_i_in:before {
  content: "";
  display: block;
  height: 50%;
  width: 5px;
  background: var(--color-tan);
  position: absolute;
  left: auto;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
}
.sn_block_teaser_simple.campari-teaser-red-fade.fade-blue .sn_block_wr {
  background: var(--color-blue-dark);
}
.sn_block_teaser_simple.campari-teaser-red-fade.fade-blue .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to left, #13294b 0%, rgba(19, 41, 75, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-teaser-red-fade.fade-blue .sn_background:after {
    content: "";
    display: block;
    background: linear-gradient(to top, #13294b 0%, rgba(19, 41, 75, 0) 50%);
    height: 100%;
    width: 100%;
    z-index: 0;
  }
}
.sn_block_teaser_simple.campari-classic-cocktail {
  min-height: 50vw;
}
.sn_block_teaser_simple.campari-classic-cocktail h3 {
  color: var(--color-text-highlight);
  font-family: "Roboto Regular";
  margin-bottom: 1em;
  font-size: var(--fz-h5) !important;
}
.sn_block_teaser_simple.campari-classic-cocktail .accent {
  color: var(--color-text-highlight);
}
.sn_block_teaser_simple.campari-classic-cocktail p {
  line-height: 1.5;
  margin-bottom: 2em;
}
.sn_block_teaser_simple.campari-classic-cocktail p strong {
  color: inherit;
  font-weight: bold;
}
.sn_block_teaser_simple.campari-classic-cocktail .sn_block_teaser_simple_i_in:before, .sn_block_teaser_simple.campari-classic-cocktail.has-media-on-right .sn_block_teaser_simple_i_in:before {
  content: none;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-classic-cocktail .sn_background {
    height: 100vw;
  }
}
.sn_block_teaser_simple.campari-more-cocktails {
  margin-top: calc(-1 * var(--padS));
  z-index: 0;
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-more-cocktails {
    margin-top: 0;
  }
}
.sn_block_teaser_simple.campari-more-cocktails .sn_block_wr .sn_container_fluid {
  margin: 0;
}
.sn_block_teaser_simple.intense-red-fade > .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.66));
  height: 100%;
  width: 100%;
  z-index: 0;
}
.sn_block_teaser_simple.campari-portraits-grid {
  padding: var(--padM);
}
@media (max-width: 1024px) {
  .sn_block_teaser_simple.campari-portraits-grid {
    padding: var(--padM) 0;
  }
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-portraits-grid {
    padding: var(--padM);
  }
}
.sn_block_teaser_simple.campari-portraits-grid .sn_background {
  margin: 0;
  width: 100%;
  background-repeat: repeat;
  background-size: 50vw 28vw;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_block_wr {
  margin-right: 0;
  width: 100%;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .row {
  display: flex;
  width: 100%;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i {
  flex: 1 0 33.3333333333%;
  max-width: 33.3333333333%;
}
@media (max-width: 1024px) {
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i {
    flex: 1 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_in {
  background: transparent;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_in .sn_btn {
  display: none;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_bg {
  transition: all 0.35s ease-in-out;
  transform-origin: bottom center;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_bg:after {
  transition: all 0.35s ease-in-out;
  content: "";
  display: block;
  background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_in:hover .sn_block_teaser_simple_i_bg {
    transform: scale(1.05);
  }
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_in:hover .sn_block_teaser_simple_i_bg:after {
  opacity: 0.5;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_bg + .sn_block_teaser_simple_i_title {
  margin-top: 0;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_title {
  padding: var(--gap) var(--gap) 0 var(--gap);
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_title .sn_block_teaser_simple_i_title_in {
  max-width: 100%;
  padding: 0;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_title .sn_block_teaser_simple_i_title_in h2 {
  font-size: var(--fz-ml) !important;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_title .sn_block_teaser_simple_i_title_in ._bg {
  display: none !important;
}
.sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_content {
  color: var(--color-text-highlight) !important;
  padding: 0 var(--gap) 0 var(--gap);
}
@media (max-width: 720px) {
  .sn_block_teaser_simple.campari-portraits-grid .sn_background {
    background-size: 100vw 56vw;
  }
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg {
    padding: 0;
  }
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .row {
    display: block;
  }
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i {
    padding: 0;
  }
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_title {
    padding: var(--gap) 0 0 0;
  }
  .sn_block_teaser_simple.campari-portraits-grid .sn_container_fixed_lg .sn_block_teaser_simple_i .sn_block_teaser_simple_i_content {
    padding: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sn_block_teaser_simple:hover .sn_background_wrapper .sn_background {
    transition: all 0.35s ease-in-out;
    transform: scale(1.2);
  }
  .sn_block_teaser_simple:hover .sn_background_wrapper .sn_background:after {
    transform: scale(1.5, 1);
  }
}

.sn_block_teaser_skyscraper.full-height .sn_block_teaser_skyscraper_full {
  min-height: 100vh;
}
@media (min-width: 1025px) {
  .sn_block_teaser_skyscraper.full-height .sn_block_teaser_skyscraper_full {
    display: flex !important;
  }
}
@media (max-width: 1440px) {
  .sn_block_teaser_skyscraper.full-height .sn_block_teaser_skyscraper_full {
    min-height: 85vh;
  }
}
.sn_block_teaser_skyscraper.full-height .sn_block_teaser_skyscraper_full_wr {
  margin: auto 0;
  width: 100%;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_bgs .sn_background_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  right: auto;
  left: 0;
  height: auto;
  overflow: hidden;
  margin: var(--padM) 0;
  width: 128%;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_bgs .sn_background {
  height: auto;
  margin: 0;
  width: 100%;
}
.sn_block_teaser_skyscraper .sn_background._content {
  margin: var(--padXXL) 0;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_full_wr .row {
  overflow: hidden;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_full_wr .row .col-7 {
  flex: 0 0 44%;
  max-width: 44%;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_full_wr .row .col-5 {
  background-color: #fff;
  flex: 0 0 calc(56% - 40px);
  max-width: calc(56% - 40px);
  margin: var(--padXXL) 20px;
  padding: 4vw 6vw;
  text-align: left;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_full_wr .row .col-5 h2 {
  font-size: var(--fz-h3) !important;
  margin-bottom: 0.25em !important;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_full_wr .row .col-5 h2 + div.mt-40 {
  margin-top: 0 !important;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_full_wr .brand-highlight {
  color: var(--color-primary);
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl {
  background: var(--tc-color-c1);
  min-height: calc(100vh - var(--header-h));
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl .swiper-wrapper {
  min-height: calc(100vh - var(--header-h));
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl .sn_btn {
  background-color: #fff !important;
  border-color: #fff;
  color: var(--color-primary) !important;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  z-index: 100;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl .sn_swiper_pagination {
  margin-top: -20px;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl .sn_block_teaser_skyscraper_sl_bg._page {
  left: 30%;
  width: 70%;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 42% 50% !important;
  transition: all 0.35s ease-in-out;
  transition-delay: 350ms;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr {
  min-height: calc(100vh - var(--header-h));
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .sn_container_fixed_lg {
  height: 100%;
  padding: 0 var(--gap);
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .sn_container_fixed_lg .row {
  height: 100%;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .sn_container_fixed_lg .row ._text_c8 {
  color: var(--color-text-inv) !important;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .swiper-slide .col-9 {
  max-width: 73%;
  min-height: calc(100vh - var(--header-h));
  padding: var(--gap);
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .swiper-slide:first-child .sn_container_fixed_lg {
  padding: 0;
  height: 100%;
  margin: 0 auto 0 0;
  overflow: auto;
  width: 30%;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .swiper-slide:first-child .sn_container_fixed_lg .row {
  margin: 0;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .swiper-slide:first-child .col-9 {
  flex: 0 0 100%;
  margin-right: 0;
  max-width: 100%;
  padding: 0 !important;
}
.sn_block_teaser_skyscraper .sn_block_teaser_skyscraper_sl_wr .sn_block_teaser_skyscraper_sl_title {
  color: var(--color-text-inv) !important;
  font-size: clamp(16px, 9vw, 40px) !important;
  margin: 20px auto !important;
  padding: 0;
  text-align: right;
  text-orientation: mixed;
  transform: rotate(180deg);
  transform-origin: 50% 50% !important;
  width: auto;
  writing-mode: vertical-rl;
  -webkit-transform: rotateX(0deg);
}
.sn_block_teaser_skyscraper._reverse .sn_block_teaser_skyscraper_bgs .sn_background_wrapper {
  right: 0;
  left: auto;
}
.sn_block_teaser_skyscraper._reverse .sn_block_teaser_skyscraper_bgs .col-6.order-last .sn_background {
  left: auto;
}
.sn_block_teaser_skyscraper._reverse .sn_block_teaser_skyscraper_sl .sn_block_teaser_skyscraper_sl_bg._page {
  left: auto;
  right: 30%;
}
.sn_block_teaser_skyscraper._reverse .sn_block_teaser_skyscraper_sl_wr .swiper-slide:first-child .sn_container_fixed_lg {
  margin: 0 0 0 auto;
}
.sn_block_teaser_skyscraper.campari-double-bg-fade .campari-fade-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.sn_block_teaser_skyscraper.campari-double-bg-fade .campari-fade-bg .sn_background_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.sn_block_teaser_skyscraper.campari-double-bg-fade .campari-fade-bg .sn_background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 1;
  z-index: -1;
}
.sn_block_teaser_skyscraper.campari-double-bg-fade .campari-fade-bg:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.5));
  height: 100%;
  width: 100%;
  z-index: 0;
}
.sn_block_teaser_skyscraper.campari-double-bg-fade.intense-red-fade .campari-fade-bg:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.75));
  height: 100%;
  width: 100%;
  z-index: 0;
  mix-blend-mode: multiply;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-bitter .sn_block_teaser_skyscraper_sl .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 42% 50% !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-bitter .sn_block_teaser_skyscraper_sl[data-slide="1"] .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 30.5% 50% !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-cask-tales .sn_block_teaser_skyscraper_bgs .sn_background {
  background-position: 0% center !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-cask-tales .sn_block_teaser_skyscraper_sl .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 26% 50% !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-cask-tales .sn_block_teaser_skyscraper_sl[data-slide="1"] .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 48% 50% !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-soda .sn_block_teaser_skyscraper_bgs .sn_background {
  background-position: 100% center !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-soda .sn_block_teaser_skyscraper_sl .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 70% 50% !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-soda .sn_block_teaser_skyscraper_sl[data-slide="1"] .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 58% 50% !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-negroni .sn_block_teaser_skyscraper_bgs .sn_background {
  background-position: 20% center !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-negroni .sn_block_teaser_skyscraper_sl .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 48% 50% !important;
}
.sn_block_teaser_skyscraper.campari-product-box-campari-negroni .sn_block_teaser_skyscraper_sl[data-slide="1"] .sn_block_teaser_skyscraper_sl_bg._page .sn_background {
  background-position: 58.5% 50% !important;
}
@media (hover: hover) and (pointer: fine) {
  .sn_block_teaser_skyscraper:hover .col-6 .sn_background {
    transition: all 0.35s ease-in-out;
    transform: scale(1.2);
  }
  .sn_block_teaser_skyscraper:hover .col-6 .sn_background:after {
    transform: scale(1.5, 1);
  }
}

.sn_block_image.campari-image-fullwidth .sn_container_fluid {
  padding-left: 0;
  padding-right: 0;
}
.sn_block_image.campari-image-fullwidth .sn_container_fluid .img-fluid {
  width: 100%;
}
@media (max-width: 720px) {
  .sn_block_image.campari-image-fullwidth .sn_container_fluid {
    height: 75vw;
    overflow: hidden;
  }
  .sn_block_image.campari-image-fullwidth .sn_container_fluid .img-fluid {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    max-width: none;
    width: auto;
  }
}

.sn_block_image_text.campari-cocktail-taste ._video,
.sn_block_image_text.campari-cocktail-taste ._image,
.sn_block_image_text.campari-cocktail-taste ._text {
  flex: 1 0 50%;
  max-width: 50%;
}
.sn_block_image_text.campari-cocktail-taste ._image .img-fluid {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.sn_block_image_text.campari-cocktail-taste ._text {
  margin: auto 0;
  padding: var(--padM) 0 var(--padM) var(--padM);
}
.sn_block_image_text.campari-cocktail-taste ._text .h4 {
  font-size: var(--fz-h3);
}
.sn_block_image_text.campari-cocktail-taste ._text p {
  margin-bottom: 2em;
}
.sn_block_image_text.campari-cocktail-taste ._text .small-text {
  font-size: var(--fz-s);
}
@media (max-width: 720px) {
  .sn_block_image_text.campari-cocktail-taste .sn_container_fixed_lg {
    padding: 0;
  }
  .sn_block_image_text.campari-cocktail-taste ._video {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .sn_block_image_text.campari-cocktail-taste ._image {
    flex: 1 0 100%;
    max-width: 100%;
    padding: 0;
  }
  .sn_block_image_text.campari-cocktail-taste ._text {
    flex: 1 0 100%;
    max-width: 100%;
  }
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid {
  padding: 0;
  margin-right: 0;
  margin-left: 0;
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._image {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0;
  min-height: 40vw;
}
@media (max-width: 720px) {
  .sn_block_image_text.campari-portraits-single .sn_container_fluid ._image {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100vw;
  }
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._image .img-fluid {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 66% 50%;
     object-position: 66% 50%;
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._image:after {
  content: "";
  display: block;
  background: linear-gradient(to left, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
}
@media (max-width: 720px) {
  .sn_block_image_text.campari-portraits-single .sn_container_fluid ._image:after {
    content: "";
    display: block;
    background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
    height: 100%;
    width: 100%;
    z-index: 0;
  }
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._text {
  flex: 0 0 auto;
  height: auto;
  max-width: 50%;
  padding: var(--padM) var(--padL) var(--padM) var(--padM);
}
@media (max-width: 720px) {
  .sn_block_image_text.campari-portraits-single .sn_container_fluid ._text {
    max-width: 100%;
    padding: var(--padM) var(--padL) var(--padL) var(--padM);
  }
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._text h1.h4 {
  font-size: var(--fz-h4) !important;
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._text .h4,
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._text .h5 {
  margin-bottom: 1em;
}
.sn_block_image_text.campari-portraits-single .sn_container_fluid ._text p {
  font-size: var(--fz-xs);
}
.sn_block_image_text.campari-portraits-single.hava-aldouby .sn_container_fluid ._image .img-fluid {
  -o-object-position: 36% 50%;
     object-position: 36% 50%;
}
.sn_block_image_text.campari-portraits-single.drea-cooper .sn_container_fluid ._image .img-fluid {
  -o-object-position: 36% 50%;
     object-position: 36% 50%;
}

.sn_block_simple_text .col-md-8,
.sn_block_simple_text .col-lg-6 {
  margin: auto;
}
.sn_block_simple_text .bb_item_content_wr {
  margin: auto;
}
.sn_block_simple_text .campari-img-product-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.sn_block_simple_text .campari-img-product-logo.small {
  margin: var(--padS) auto;
  max-width: 260px;
}
@media (max-width: 720px) {
  .sn_block_simple_text .campari-img-product-logo.small {
    max-width: 150px;
  }
}
.sn_block_simple_text.has-h-pad-L {
  padding-left: var(--padL);
  padding-right: var(--padL);
}
@media (max-width: 720px) {
  .sn_block_simple_text.has-h-pad-L {
    padding-left: 0;
    padding-right: 0;
  }
}
.sn_block_simple_text .campari-text-list-flag {
  display: inline-block;
  margin-bottom: var(--padM);
  padding: 0;
  width: 100%;
}
.sn_block_simple_text .campari-text-list-flag li {
  display: block;
  margin: 0 0 var(--padS) 0;
  padding: var(--padS);
  text-align: left;
  width: 60%;
}
@media (max-width: 720px) {
  .sn_block_simple_text .campari-text-list-flag li {
    padding: var(--padM) 0;
    width: 100%;
  }
}
.sn_block_simple_text .campari-text-list-flag li:nth-child(odd) {
  margin-left: auto;
}
.sn_block_simple_text .campari-text-list-flag li:nth-child(even) {
  text-align: left;
  margin-right: auto;
}
@media (max-width: 720px) {
  .sn_block_simple_text .campari-text-list-flag li:nth-child(odd), .sn_block_simple_text .campari-text-list-flag li:nth-child(even) {
    text-align: center;
  }
}
.sn_block_simple_text .campari-text-list-flag .pre-title {
  color: var(--color-text-highlight);
  font-family: var(--tc-font-family-headings);
  font-size: var(--fz-h5) !important;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  text-transform: uppercase;
}
.sn_block_simple_text .campari-text-list-flag .title {
  font-size: var(--fz-h3) !important;
  margin-bottom: 1em;
}
@media (max-width: 720px) {
  .sn_block_simple_text .campari-text-list-flag .title {
    font-size: var(--fz-l);
  }
}
.sn_block_simple_text .campari-text-list-flag p {
  font-size: var(--fz-s);
}
.sn_block_simple_text.campari-red-passion-intro-text {
  padding: var(--padM);
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-red-passion-intro-text {
    padding: var(--padL) var(--padM);
  }
  .sn_block_simple_text.campari-red-passion-intro-text .sn_container_fixed_lg {
    padding: 0;
  }
}
.sn_block_simple_text.campari-red-passion-intro-text p {
  font-family: "Roboto Condensed";
  font-size: var(--fz-xl);
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-red-passion-intro-text p {
    font-size: var(--fz-l);
  }
}
.sn_block_simple_text.campari-red-passion-intro-text p.small-text {
  font-size: var(--fz-l);
}
.sn_block_simple_text.campari-product-text p, .sn_block_simple_text.campari-product-text-narrow p, .sn_block_simple_text.campari-product-text-two-cols p {
  line-height: 1.6;
  padding-bottom: 1.5em;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
}
.sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row {
  flex: 0 0 90%;
  margin: 0 auto;
  max-width: 90%;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row > .col-12, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row > .col-12, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 {
    padding: 0;
  }
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row {
    display: block;
  }
}
.sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 {
  flex: 1 0 50% !important;
  max-width: 50%;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 {
    flex: 1 0 100% !important;
    max-width: 100%;
    padding: 0;
  }
}
.sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 .h3, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 .h3, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 .h3 {
  max-width: 100%;
  margin: 0;
  text-align: left;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-text > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 .h3, .sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 .h3, .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row > .col-12 > .row > .col-md-6 .h3 {
    line-height: 1.6;
  }
}
.sn_block_simple_text.campari-product-text.vcenter-text div._text_white, .sn_block_simple_text.campari-product-text-narrow.vcenter-text div._text_white, .sn_block_simple_text.campari-product-text-two-cols.vcenter-text div._text_white {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-text-two-cols .col-12 {
    padding: 0;
  }
}
.sn_block_simple_text.campari-product-text-two-cols .h3 {
  max-width: 50%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-text-two-cols .h3 {
    max-width: 100%;
    text-align: left;
  }
}
.sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row [class^=_text] p {
  -moz-columns: 2;
       columns: 2;
  -moz-column-gap: var(--padS);
       column-gap: var(--padS);
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-text-two-cols > .sn_block_wr > .sn_container_fixed_md > .row [class^=_text] p {
    -moz-columns: 1;
         columns: 1;
  }
}
.sn_block_simple_text.campari-product-text-narrow > .sn_block_wr > .sn_container_fixed_md > .row {
  flex: 0 0 50%;
  max-width: 50%;
}
.sn_block_simple_text.campari-quote-block {
  text-align: center;
}
.sn_block_simple_text.campari-quote-block [class^=sn_container_fixed] {
  padding-left: 0;
  padding-right: 0;
  max-width: 100% !important;
}
.sn_block_simple_text.campari-quote-block [class^=sn_container_fixed] .row .row > [class^=col-] {
  flex: 1 0 auto;
  margin: var(--padM) auto;
  max-width: calc(var(--content-maxwidth) * 0.6);
  padding: var(--padM);
}
@media (max-width: 1440px) {
  .sn_block_simple_text.campari-quote-block [class^=sn_container_fixed] .row .row > [class^=col-] {
    max-width: 60%;
    padding: var(--padM) 0;
  }
}
.sn_block_simple_text.campari-quote-block.narrow-quote [class^=sn_container_fixed] .row .row > [class^=col-] {
  margin: var(--padM) auto;
  max-width: 40%;
}
.sn_block_simple_text.campari-quote-block blockquote:before, .sn_block_simple_text.campari-quote-block blockquote:after {
  content: "";
  background: url("../img/quotes-red.svg") no-repeat;
  background-size: contain;
  display: block;
  margin: 0;
  width: 300px;
  height: 300px;
  position: absolute;
  z-index: -1;
  line-height: 1;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-quote-block blockquote:before, .sn_block_simple_text.campari-quote-block blockquote:after {
    width: 100px;
    height: 100px;
  }
}
.sn_block_simple_text.campari-quote-block blockquote:before {
  top: -100px;
  left: -30px;
  transform: rotate(180deg) translate(50%, 0);
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-quote-block blockquote:before {
    top: 10px;
    left: 80px;
  }
}
.sn_block_simple_text.campari-quote-block blockquote:after {
  bottom: -60px;
  right: -30px;
  transform: translate(50%, 0);
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-quote-block blockquote:after {
    bottom: 30px;
    right: 80px;
  }
}
.sn_block_simple_text.campari-quote-block blockquote p {
  font-family: "Roboto Condensed";
  font-size: var(--fz-l);
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-quote-block blockquote p {
    font-size: var(--fz-m);
  }
}
.sn_block_simple_text.campari-quote-block blockquote + p {
  font-family: "Roboto Condensed";
  font-size: var(--fz-m);
  margin: var(--padS) 0 var(--padS) 0;
}
.sn_block_simple_text.campari-product-features {
  padding: var(--padM) var(--padM);
}
.sn_block_simple_text.campari-product-features .row .row > [class^=col-] {
  margin: 0 auto;
  max-width: calc(var(--content-maxwidth) * 0.8);
  flex: 1 0 auto;
  max-width: 100%;
}
@media (max-width: 1440px) {
  .sn_block_simple_text.campari-product-features .row .row > [class^=col-] {
    flex: 1 1 auto;
  }
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-product-features .sn_container_fixed_lg {
    padding-left: 0;
    padding-right: 0;
  }
}
.sn_block_simple_text.campari-product-features .campari-product-features-list {
  display: flex;
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-product-features .campari-product-features-list {
    display: block;
  }
}
.sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature {
  flex: 1 0 33.3333333333%;
  font-family: "Roboto Condensed";
  padding: 0 var(--gap);
  text-align: center;
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature {
    padding: var(--padS) 0;
  }
}
.sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature .image-tan-bg-round {
  background: var(--color-text-highlight);
  border-radius: 100%;
  display: flex;
  margin: auto auto var(--padS) auto;
  height: 100px;
  width: 100px;
}
.sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature .image-tan-bg-round img {
  display: block;
  margin: auto;
  width: 60px;
  height: 60px;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature .image-tan-bg-round {
    height: 50px;
    width: 50px;
  }
  .sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature .image-tan-bg-round img {
    width: 30px;
    height: 30px;
  }
}
.sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature h3 {
  color: var(--color-primary);
  font-size: var(--fz-l) !important;
  margin-bottom: 1em;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature h3 {
    font-size: var(--fz-m);
    margin-bottom: 0.4em;
    margin-top: 0.8em;
  }
}
.sn_block_simple_text.campari-product-features .campari-product-features-list .product-feature p {
  font-size: var(--fz-n);
}
.sn_block_simple_text.campari-product-awards {
  padding: var(--padM) var(--padM);
}
.sn_block_simple_text.campari-product-awards .row .row > [class^=col-] {
  flex: 1 0 auto;
  margin: 0 auto;
  max-width: 85%;
}
@media (max-width: 1440px) {
  .sn_block_simple_text.campari-product-awards .row .row > [class^=col-] {
    max-width: 100%;
  }
}
.sn_block_simple_text.campari-product-awards .campari-product-awards-list {
  display: flex;
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-product-awards .campari-product-awards-list {
    display: block;
  }
}
.sn_block_simple_text.campari-product-awards .campari-product-awards-list .product-award {
  flex: 1 0 33.3333333333%;
  font-family: "Roboto Condensed";
  padding: 0 var(--gap);
  text-align: center;
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-product-awards .campari-product-awards-list .product-award {
    padding: var(--gap) 0;
  }
}
.sn_block_simple_text.campari-product-awards .campari-product-awards-list .product-award .image-award {
  display: flex;
  margin: auto auto var(--padS) auto;
  height: 180px;
  width: 180px;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-product-awards .campari-product-awards-list .product-award .image-award {
    height: 90px;
    width: 90px;
  }
}
.sn_block_simple_text.campari-product-awards .campari-product-awards-list .product-award .image-award img {
  display: block;
  margin: auto;
  width: 100%;
  height: 100%;
}
.sn_block_simple_text.campari-product-awards .campari-product-awards-list .product-award h4 {
  font-size: var(--fz-n) !important;
  margin-bottom: 1em;
}
.sn_block_simple_text.campari-product-awards .campari-product-awards-list .product-award p {
  font-family: "Roboto Regular";
  font-size: var(--fz-xs);
  margin-bottom: 1em;
}
.sn_block_simple_text.campari-cocktail-text .sn_block_wr .sn_container_fixed_lg .row .row {
  justify-content: center;
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-cocktail-text .sn_block_wr .sn_container_fixed_lg .row .row {
    display: block;
  }
}
.sn_block_simple_text.campari-cocktail-text .sn_block_wr .sn_container_fixed_lg .row .row .col-12 {
  flex: 1 0 33% !important;
  max-width: 33%;
}
@media (max-width: 1280px) {
  .sn_block_simple_text.campari-cocktail-text .sn_block_wr .sn_container_fixed_lg .row .row .col-12 {
    flex: 1 0 45% !important;
    max-width: 45%;
  }
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-cocktail-text .sn_block_wr .sn_container_fixed_lg .row .row .col-12 {
    flex: 1 0 100% !important;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .sn_block_simple_text.campari-cocktail-text .sn_block_wr .sn_container_fixed_lg .row .col-12 {
    padding: 0;
  }
}
.sn_block_simple_text.campari-cocktail-text p {
  line-height: 1.9;
  padding-bottom: 1.5em;
}
.sn_block_simple_text.campari-text-large-copy > .sn_block_wr > .sn_container_fixed_lg > .row > .col-12 > .row .col-12, .sn_block_simple_text.campari-classic-cocktails-large-copy > .sn_block_wr > .sn_container_fixed_lg > .row > .col-12 > .row .col-12 {
  margin: 0 auto;
  flex: 0 0 75%;
  max-width: 75%;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-text-large-copy > .sn_block_wr > .sn_container_fixed_lg > .row > .col-12 > .row .col-12, .sn_block_simple_text.campari-classic-cocktails-large-copy > .sn_block_wr > .sn_container_fixed_lg > .row > .col-12 > .row .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0;
  }
}
.sn_block_simple_text.campari-text-large-copy .large-copy, .sn_block_simple_text.campari-classic-cocktails-large-copy .large-copy {
  font-family: "Roboto Condensed";
  font-size: var(--fz-h3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-text-large-copy .large-copy, .sn_block_simple_text.campari-classic-cocktails-large-copy .large-copy {
    font-size: var(--fz-h4);
  }
}
.sn_block_simple_text.campari-text-large-copy .large-copy strong, .sn_block_simple_text.campari-classic-cocktails-large-copy .large-copy strong {
  color: var(--color-text-highlight);
  font-family: "Roboto Regular";
}
.sn_block_simple_text.campari-text-large-copy.campari-dark-theme .large-copy, .sn_block_simple_text.campari-classic-cocktails-large-copy.campari-dark-theme .large-copy {
  font-family: "Roboto Condensed";
  padding: var(--padM);
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-text-large-copy.campari-dark-theme .large-copy, .sn_block_simple_text.campari-classic-cocktails-large-copy.campari-dark-theme .large-copy {
    padding: var(--padM) 0;
  }
}
.sn_block_simple_text.campari-text-large-copy.campari-dark-theme .large-copy strong, .sn_block_simple_text.campari-classic-cocktails-large-copy.campari-dark-theme .large-copy strong {
  color: var(--color-primary);
  font-family: "Roboto Condensed";
  font-weight: 400;
}
.sn_block_simple_text.campari-wide-text .sn_container_fixed_lg > .row > .col-12 {
  margin: auto;
}
.sn_block_simple_text.campari-wide-text p {
  margin-bottom: 2em;
}
.sn_block_simple_text.campari-wide-text h5 {
  font-size: 30px;
  margin-bottom: 1em;
  margin-top: 2em;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-cinema-text {
    padding-bottom: var(--padL);
  }
  .sn_block_simple_text.campari-cinema-text .row > .col-12 {
    padding: 0;
  }
}
.sn_block_simple_text.campari-boxed-text-section {
  padding: var(--padM) 0 var(--padXL) 0 !important;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-boxed-text-section {
    padding: var(--padL) 0 var(--padL) 0 !important;
  }
}
.sn_block_simple_text.campari-boxed-text-section .sn_container_fixed_lg .row .col-12 .h3 {
  margin: 0 auto 0 auto !important;
  text-align: center;
  width: 50%;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-boxed-text-section .sn_container_fixed_lg .row .col-12 .h3 {
    width: 100%;
  }
}
.sn_block_simple_text.campari-boxed-text-section .sn_container_fixed_lg .row .col-12 .small-text {
  margin: 0 auto var(--padS) auto;
  width: 100%;
}
.sn_block_simple_text .boxed-text {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  width: 100%;
}
@media (max-width: 720px) {
  .sn_block_simple_text .boxed-text {
    display: block;
    margin: var(--padL) 0 0 0;
  }
}
.sn_block_simple_text .boxed-text li {
  background-color: #fff;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 1 calc(33.3333333333% - var(--gap) - var(--gap));
  max-width: calc(33.3333333333% - var(--gap) - var(--gap));
  margin: var(--gap);
  padding: var(--padS);
  text-align: left;
}
@media (max-width: 720px) {
  .sn_block_simple_text .boxed-text li {
    margin: var(--gap) 0;
  }
}
.sn_block_simple_text .boxed-text li .title {
  color: var(--color-primary);
  font-size: var(--fz-h4) !important;
}
.sn_block_simple_text .boxed-text li p {
  margin-bottom: 2em;
}
.sn_block_simple_text .boxed-text li p.small-text {
  color: #807c71;
  font-size: var(--fz-s);
  margin-top: 0;
  min-width: 320px;
}
.sn_block_simple_text .boxed-text li p:last-child {
  margin-bottom: 0;
}
.sn_block_simple_text .boxed-text li .title + p {
  margin-top: auto;
}
.sn_block_simple_text .boxed-text li a {
  color: var(--color-primary);
  text-decoration: none;
  text-transform: uppercase;
}
.sn_block_simple_text .boxed-text li:hover {
  background-color: var(--color-text-highlight);
}
.sn_block_simple_text.campari-art-journals {
  padding: var(--padM) 0;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-art-journals {
    text-align: left !important;
  }
}
.sn_block_simple_text.campari-art-journals .aj-description {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-art-journals .aj-description {
    margin: 0 auto 2em auto;
    text-align: left;
    width: 100%;
  }
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list {
  margin: var(--padM);
  padding: 0;
  list-style: none;
  display: block;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-art-journals ol.art-journals-list {
    margin: 0;
  }
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list li {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  display: flex;
  margin-bottom: -1px;
  list-style-type: decimal;
  padding: 0.5em 0;
  text-align: left;
  counter-increment: aj;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-art-journals ol.art-journals-list li {
    display: block;
    padding: 1.4em 0;
  }
  .sn_block_simple_text.campari-art-journals ol.art-journals-list li:first-child {
    border-top: none;
  }
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list li:before {
  content: counter(aj) ".";
  display: inline-block;
  margin: 0 0.5em auto 0;
  line-height: 1.8;
  font-size: var(--fz-n);
  vertical-align: top;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-art-journals ol.art-journals-list li:before {
    line-height: 1.2;
    vertical-align: baseline;
  }
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list li .aj-title {
  flex: 1 1 auto;
  font-size: var(--fz-m) !important;
  margin: auto 0 auto 0;
  padding: 0 var(--gap) 0 0;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-art-journals ol.art-journals-list li .aj-title {
    display: inline;
  }
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list li .aj-title + p {
  flex: 0 1 auto;
  margin: auto 0;
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list li .aj-download {
  font-size: var(--fz-xs);
  font-weight: bold;
  display: block;
  height: 100%;
  margin: auto 0;
  padding: 0 30px 0 var(--gap);
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-art-journals ol.art-journals-list li .aj-download {
    display: inline-block;
    margin: 1em 0 0 0;
    padding: 0 30px 0 0;
  }
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list li .aj-download:after {
  content: "";
  background: url("../img/icon-download-white.svg") no-repeat;
  background-size: 20px 20px;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
}
.sn_block_simple_text.campari-art-journals ol.art-journals-list li .aj-download:hover {
  color: var(--color-text-highlight);
}
.sn_block_simple_text.campari-links-list {
  padding: var(--padM) 0;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-links-list {
    text-align: left !important;
  }
}
.sn_block_simple_text.campari-links-list .links-description {
  width: 50%;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-links-list .links-description {
    margin: 0 auto 2em auto;
    text-align: left;
    width: 100%;
  }
}
.sn_block_simple_text.campari-links-list ul.links-list {
  margin: var(--padM);
  padding: 0;
  list-style: none;
  display: block;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-links-list ul.links-list {
    margin: 0;
  }
}
.sn_block_simple_text.campari-links-list ul.links-list li {
  border-bottom: 1px solid #fff;
  display: flex;
  list-style-type: none;
  padding: 1rem 0;
  text-align: left;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-links-list ul.links-list li {
    display: block;
    padding: 1.4em 0;
  }
  .sn_block_simple_text.campari-links-list ul.links-list li:first-child {
    border-top: none;
  }
}
.sn_block_simple_text.campari-links-list ul.links-list li .item-title-wr {
  flex: 1 1 auto;
  font-size: var(--fz-m) !important;
  margin: auto 0 auto 0;
  padding: 0 var(--gap) 0 0;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-links-list ul.links-list li .item-title-wr {
    display: inline;
  }
}
.sn_block_simple_text.campari-links-list ul.links-list li .item-title-wr + p {
  flex: 0 1 auto;
  margin: auto 0;
}
.sn_block_simple_text.campari-links-list ul.links-list li .item-title-wr h3 {
  display: block;
  font-size: var(--fz-n) !important;
  font-weight: 500 !important;
  text-transform: none;
}
.sn_block_simple_text.campari-links-list ul.links-list li .item-title-wr p {
  display: block;
  font-size: var(--fz-s);
  font-weight: 400 !important;
}
.sn_block_simple_text.campari-links-list ul.links-list li .item-link {
  font-size: var(--fz-s);
  font-weight: bold;
  display: block;
  height: 100%;
  margin: auto 0;
  padding: 0 30px 0 var(--gap);
  position: relative;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 720px) {
  .sn_block_simple_text.campari-links-list ul.links-list li .item-link {
    display: inline-block;
    margin: 0 0 0 0;
    padding: 0 30px 0 0;
  }
}
.sn_block_simple_text.campari-links-list ul.links-list li .item-link:after {
  content: "";
  background: url("../img/icon-arrow-right-white.svg") no-repeat;
  background-size: 20px 20px;
  background-position: 50% 50%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  height: 20px;
  width: 20px;
}
.sn_block_simple_text.campari-links-list ul.links-list li .item-link:hover {
  color: var(--color-text-highlight);
}
.sn_block_simple_text.intense-red-fade > .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.66));
  height: 100%;
  width: 100%;
  z-index: 0;
}
.sn_block_simple_text.campari-bg-red-fade > .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0) 100%);
  height: 100%;
  width: 100%;
  z-index: 0;
  transform-origin: center bottom;
  z-index: 1;
}
.sn_block_simple_text.campari-bg-red-fade > .sn_background video {
  z-index: -1;
}
@media (max-width: 720px) {
  .sn_block_simple_text .sn_container_fixed_lg .row .col-12 {
    padding: 0;
  }
  .sn_block_simple_text .sn_container_fixed_lg .row .row .col-12 {
    padding: 0;
  }
}

.sn_block_slider .sn_slider_full,
.sn_block_slider .sn_wrapper,
.sn_block_slider .swiper-container,
.sn_block_slider .sn_slider_full_sl {
  height: 100%;
}
.sn_block_slider .sn_slider_full_sl_in .h2 {
  margin: auto auto var(--gap) auto !important;
}
@media (max-width: 1024px) {
  .sn_block_slider .sn_slider_full_sl_in .h2 {
    font-size: clamp(40px, 8vw, 50px);
    padding: 0 0.6em;
    text-align: center;
  }
}
.sn_block_slider .sn_slider_full_sl_in .h2 + .row {
  margin: 0 auto var(--padS) auto !important;
}
@media (max-width: 720px) {
  .sn_block_slider .sn_slider_full_sl_in .h2 + .row {
    width: 100%;
  }
}
@media (max-width: 720px) {
  .sn_block_slider .sn_slider_full_sl_in {
    padding: 0 var(--gap);
  }
  .sn_block_slider .sn_slider_full_sl_in .sn_btn._wide {
    width: 100%;
  }
}
.sn_block_slider.campari-products-slider {
  background-color: var(--color-primary);
}
.sn_block_slider.campari-products-slider .sn_slider_full {
  max-width: var(--content-maxwidth);
  margin: 0 auto;
  padding: 0 0 var(--padM) 0;
}
.sn_block_slider.campari-products-slider .sn_slider_full .sn_wrapper {
  padding: 0;
}
.sn_block_slider.campari-products-slider .sn_slider_full_sl_title {
  text-align: center;
}
.sn_block_slider.campari-products-slider .sn_slider_full_sl_buttons .col-12 {
  margin-left: auto;
  margin-right: auto;
}
.sn_block_slider.campari-products-slider .swiper-slide .sn_background:after {
  content: "";
  display: block;
  background: linear-gradient(to top, #c8102e 0%, rgba(200, 16, 46, 0) 50%);
  height: 100%;
  width: 100%;
  z-index: 0;
  z-index: 1;
}
.sn_block_slider.campari-products-slider .sn_slider_full_nav .sn_swiper_pagination {
  position: relative;
}
@media (max-width: 1024px) {
  .sn_block_slider.campari-products-slider .sn_slider_full .sn_wrapper {
    padding: 0;
  }
  .sn_block_slider.campari-products-slider .sn_slider_full .sn_wrapper .sn_container_fixed_lg {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 1024px) {
  .sn_swiper_nav {
    display: none;
  }
}

.sn_slider_full_nav .row {
  overflow: visible;
}

.sn_block_cocktail_ingredients {
  padding: var(--padM) 0 var(--padM) 0;
}
.sn_block_cocktail_ingredients h2 {
  font-size: var(--fz-n) !important;
}
@media (min-width: 1025px) {
  .sn_block_cocktail_ingredients .col-md-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sn_block_cocktail_ingredients .col-lg {
    flex: 1 0 0;
  }
  .sn_block_cocktail_ingredients .col-lg-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .sn_block_cocktail_ingredients .offset-lg-1 {
    margin-left: 8.33333333%;
  }
}
.sn_block_cocktail_ingredients .sn_block_wr .sn_container_fixed_lg > div:first-of-type {
  font-family: "Roboto Condensed";
  letter-spacing: 0.1em;
  padding-bottom: 0 !important;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .sn_block_cocktail_ingredients .sn_block_wr .sn_container_fixed_lg > div:first-of-type {
    display: none !important;
  }
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body {
  font-family: "Roboto Regular";
  font-size: var(--fz-s);
  font-weight: 400;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_wr .row .col-12 .row .d-lg-none {
  font-family: "Roboto Condensed";
  color: var(--color-text-inv) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_wr .row .col-12 .row .d-lg-none {
    display: block !important;
    padding: 0 1em 1em 0;
  }
}
@media (max-width: 1024px) {
  .sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_wr .row .col-12 .row .col-lg-1 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: var(--gap) !important;
    margin-bottom: var(--gap) !important;
  }
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_cocktail_ingredients_spacer {
  background: var(--color-tan);
  border-radius: 100%;
  opacity: 1;
  width: 2px;
  height: 100%;
}
@media (max-width: 1024px) {
  .sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_cocktail_ingredients_spacer {
    display: none;
  }
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_cocktail_ingredients_tabs a {
  font-weight: 500;
  margin-right: 0.25em;
  padding: 0.12em 0.7em;
  text-transform: uppercase;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_cocktail_ingredients_tabs a._active {
  background-color: #fff !important;
  color: var(--color-primary) !important;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_cocktail_ingredients_qty span {
  color: var(--color-text-inv) !important;
  font-family: "Roboto Regular";
  font-weight: bold;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body .sn_block_cocktail_ingredients_qty span.hidden {
  display: none;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body table tr td span {
  color: #fff !important;
  font-family: "Roboto Regular";
  font-weight: bold;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body > .sn_block_wr > .row .row .col-12:last-of-type .d-flex {
  display: block !important;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body > .sn_block_wr > .row .row .col-12:last-of-type img {
  display: block;
  margin: 0 auto 20px 0;
  width: 50px;
  height: auto;
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body > .sn_block_wr > .row .row .col-12:last-of-type .h6 {
  color: var(--color-text-inv) !important;
  font-family: "Roboto Regular";
  font-size: var(--fz-n) !important;
  line-height: 1.5;
  margin-left: 0 !important;
}
@media (max-width: 720px) {
  .sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_body > .sn_block_wr > .row .col-12 {
    padding: 0;
  }
}
.sn_block_cocktail_ingredients .sn_block_cocktail_ingredients_qty table td {
  vertical-align: middle !important;
}

.sn_buy_now .sn_buy_now_close {
  top: 16px;
}
@media (max-width: 767px) {
  .sn_buy_now .sn_buy_now_close {
    right: 20px !important;
  }
}
.sn_buy_now .sn_buy_now_in {
  padding-bottom: 0 !important;
  padding-top: 0.6em !important;
}
@media (max-width: 767px) {
  .sn_buy_now .sn_buy_now_in {
    padding-top: 0.6em;
  }
}
.sn_buy_now .sn_container_fluid {
  padding: 0;
}
.sn_buy_now .sn_container_fluid > .row > .col-12 {
  margin-bottom: 1em !important;
}
.sn_buy_now .sn_container_fluid > .row > .col-auto {
  z-index: 999;
}
.sn_buy_now .sn_container_fluid > .row > .col-auto:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 50%;
}
.sn_buy_now .sn_container_fluid > .row > .col-auto:nth-of-type(4) {
  position: absolute;
  right: 0;
  top: 50%;
}
.sn_buy_now .sn_container_fluid .h4 {
  font-size: var(--fz-l);
  height: 25px;
}
.sn_buy_now .sn_container_fluid > .row > .col-12:last-child {
  display: none;
}
.sn_buy_now .sn_buy_now_slider {
  background-color: #fff;
  margin: 0;
  padding: var(--padS) 60px;
  width: 100%;
}
@media (max-width: 767px) {
  .sn_buy_now .sn_buy_now_slider {
    padding: var(--padS) 0;
  }
}
.sn_buy_now .swiper-slide {
  margin: auto 0 !important;
}
.sn_buy_now .swiper-slide:after {
  content: "";
  display: block;
  height: 50%;
  width: 5px;
  background: var(--color-tan);
  position: absolute;
  left: auto;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  background: var(--color-text-highlight);
  height: 100%;
}
.sn_buy_now .swiper-slide:last-child:after {
  content: none;
}
.sn_buy_now .swiper-slide .sn_buy_now_slider_i {
  display: flex;
}
.sn_buy_now .swiper-slide .sn_buy_now_slider_i > * {
  display: block;
  height: 100%;
  margin: auto;
  padding: 0 var(--gap);
}
.sn_buy_now .swiper-slide .sn_buy_now_slider_i .sn_buy_now_slider_i_title {
  display: none;
}
.sn_buy_now .swiper-slide .img-fluid {
  max-height: 36px;
  width: auto;
}

.campari-slider-film-festival {
  background: var(--color-primary);
}
.campari-slider-film-festival .sn_slider_full_sl {
  padding: 0 0 var(--padM) 0;
}
.campari-slider-film-festival .campari-slide-text-wrapper {
  color: white;
  margin: 0 auto;
  max-width: var(--content-maxwidth);
  padding: var(--padS) var(--padXL);
  text-align: center;
  width: 75%;
}
@media (max-width: 720px) {
  .campari-slider-film-festival .campari-slide-text-wrapper {
    padding: var(--padM);
    width: 100%;
  }
}
.campari-slider-film-festival .campari-slide-text-wrapper .campari-slider-ff-logo {
  display: block;
  margin: var(--padS) auto;
  max-height: 120px;
  width: auto;
}
@media (max-width: 720px) {
  .campari-slider-film-festival .campari-slide-text-wrapper .campari-slider-ff-logo {
    height: auto;
    margin: 0 auto var(--padM) auto;
    max-width: 100%;
  }
}
.campari-slider-film-festival .campari-slide-text-wrapper .campari-slider-ff-title {
  display: block;
  margin: 0 auto;
  width: 75%;
}
.campari-slider-film-festival .campari-slide-text-wrapper .campari-slider-ff-text {
  margin-top: var(--padS);
  text-align: left;
}
.campari-slider-film-festival .campari-slider-ff-logo-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  opacity: 0.1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.sn_block_video_player .sn_block_video_player_inner video {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.sn_click_to_buy .ctb_retailer {
  height: auto !important;
  min-height: 68px;
}

@media (max-width: 1024px) {
  .col-3.col-md a.sn_btn._narrow {
    display: none;
  }
  a.sn_btn._narrow {
    color: var(--tc-cta-primary-color-default, #fff);
    padding: 0.9em 3em 0.8em 0em !important;
    text-align: left !important;
    color: currentcolor;
  }
  a.sn_btn._tertiary_variant._narrow:active {
    border-color: transparent;
  }
  .sn_btn._secondary:hover {
    opacity: 0.5;
    color: currentColor;
    background-color: var(--tc-cta-secondary-bg-hover, #cd0136);
    border-color: var(--tc-cta-secondary-border-hover, #cd0136);
  }
}
._ctb_wr .sn_btn .sn_sprite {
  display: flex;
  opacity: 1;
  padding-left: 85px;
  width: auto !important;
}

@media screen and (max-width: 576px) {
  .sn_click_to_buy._open .sn_click_to_buy_in {
    transform: translate3d(0, -100%, 0) !important;
  }
}
.sn_timeline_v .sn_timeline_v_anchors_i.collapsed {
  width: 0px !important;
  height: 0px;
  overflow: hidden;
  padding: 0;
}
.sn_timeline_v .sn_timeline_v_anchors_i.collapsed._active {
  width: auto !important;
  opacity: 1;
  padding-left: 30px;
  padding-right: 30px;
}
.sn_timeline_v .sn_timeline_v_i {
  padding-top: 6vw !important;
}
@media (min-width: 1140px) {
  .sn_timeline_v .sn_timeline_v_i {
    padding-top: 5vw !important;
  }
}
.sn_timeline_v .sn_timeline_v_i .sn_wrapper .sn_container_fixed {
  max-width: 100vw !important;
}
.sn_timeline_v .sn_timeline_v_i .sn_wrapper .sn_container_fixed .text-right .h1 {
  text-align: left !important;
}
.sn_timeline_v .sn_timeline_v_i .row {
  flex-wrap: wrap;
  max-width: var(--content-maxwidth);
  overflow: inherit;
  /*


  .order-lg-2 {
  	@media (min-width: 1025px) {
  		-webkit-box-ordinal-group: 3;
  		-ms-flex-order: 2;
  		order: 2;
  	}
  }
  */
  /*.sn_timeline_v_i_img_in {
  	img {
  		max-width: 100vw;
  		max-height: 120vw;
  	}
  }*/
}
@media (min-width: 1025px) {
  .sn_timeline_v .sn_timeline_v_i .row .order-lg-0 {
    order: 0;
  }
}
@media (min-width: 1025px) {
  .sn_timeline_v .sn_timeline_v_i .row .order-lg-1 {
    order: 1;
  }
}
@media (min-width: 1025px) {
  .sn_timeline_v .sn_timeline_v_i .row .order-lg-3 {
    order: 3;
  }
}
@media (min-width: 1025px) {
  .sn_timeline_v .sn_timeline_v_i .row .col-lg-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
}
@media (min-width: 1025px) {
  .sn_timeline_v .sn_timeline_v_i .row .offset-lg-0 {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .sn_timeline_v .sn_timeline_v_i .row .offset-lg-8 {
    margin-left: 66.66666667%;
  }
}
@media (min-width: 1025px) {
  .sn_timeline_v .sn_timeline_v_i .row .text-lg-right {
    text-align: right !important;
  }
}
.sn_timeline_v .sn_timeline_v_i .row hr + div p {
  margin-bottom: 2em;
}
@media (max-width: 720px) {
  .sn_timeline_v .sn_timeline_v_i .row h2 {
    font-size: var(--fz-h4);
  }
}
.sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(1) {
  flex: 0 0 10%;
  max-width: 10%;
}
@media (max-width: 1024px) {
  .sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(1) {
    flex: 0 0 10%;
    max-width: 10%;
  }
}
.sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(2) {
  margin: 0;
  max-width: 45%;
  flex: 1 0 45%;
  margin-top: -2.25em;
  /*
  */
}
.sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(2) .h1 {
  color: var(--color-tan-light) !important;
}
@media (max-width: 1024px) {
  .sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(2) .h1 {
    line-height: 1.6;
  }
}
@media (max-width: 1024px) {
  .sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(2) {
    flex: 0 0 90%;
    max-width: 90%;
  }
}
.sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(3) {
  margin: 0;
  max-width: 45%;
  flex: 1 0 45%;
  /*
  @media (max-width: 720px){
  	margin-bottom: 20px;
  	margin-left: 16.6666666667%;
  	flex: 0 0 83.3333333333%;
  	max-width: 83.3333333333%;
  }*/
}
@media (max-width: 1024px) {
  .sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(3) {
    flex: 0 0 80%;
    margin: 0 auto;
    max-width: 80%;
  }
}
.sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(3) > div:nth-child(1) {
  color: var(--color-text-highlight) !important;
}
.sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(3) > div:nth-child(2) {
  color: var(--color-text-inv) !important;
  /*
  @media (max-width: 720px){
  	margin-left: 16.6666666667%;
  }*/
}
.sn_timeline_v .sn_timeline_v_i .sn_timeline_v_i_bg + .sn_wrapper > .sn_container_fixed > .row > div:nth-child(3) > div:nth-child(4) {
  color: var(--color-text-inv) !important;
}
.sn_timeline_v .sn_timeline_v_i_bg .sn_background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center !important;
  top: -12vh;
}
@media (max-width: 720px) {
  .sn_timeline_v .sn_timeline_v_i_bg {
    display: block !important;
    opacity: 0.15;
    height: 50vw;
    width: 100%;
    top: 0;
  }
  .sn_timeline_v .sn_timeline_v_i_bg .sn_background {
    right: -40px !important;
    left: -40px;
  }
}
.sn_timeline_v .sn_timeline_v_line {
  width: 2px;
}
.sn_timeline_v .sn_timeline_v_line_dot {
  margin-left: -19px;
  margin-top: -0.2em;
}
@media (max-width: 720px) {
  .sn_timeline_v .sn_timeline_v_line_dot {
    margin-top: 0;
    top: 5px;
    left: 5px;
    width: 30px;
    height: 30px;
  }
}

.sn_form_contact {
  background-color: var(--color-primary);
}
.sn_form_contact h1 {
  font-size: var(--fz-h2) !important;
}
@media (max-width: 720px) {
  .sn_form_contact h1 {
    margin-top: 1em;
    text-align: left;
  }
}
@media (max-width: 720px) {
  .sn_form_contact h1 + p {
    text-align: left;
  }
}
.sn_form_contact > .sn_form_contact_bgs > [class^=sn_container_] {
  display: block !important;
  padding: 0;
}
.sn_form_contact > .sn_form_contact_bgs > [class^=sn_container_] > .row {
  margin: 0 !important;
  padding: 0 var(--padS) 0 0;
}
@media (max-width: 720px) {
  .sn_form_contact > .sn_form_contact_bgs > [class^=sn_container_] > .row {
    padding: 0 0 0 0;
  }
}
.sn_form_contact > .sn_form_contact_bgs > [class^=sn_container_] > .row .sn_background._page:after {
  transition: all 0.35s ease-in-out;
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.5));
  height: 100%;
  width: 100%;
  z-index: 0;
  background: linear-gradient(to left, #c8102e, rgba(200, 16, 46, 0.66));
  transform-origin: right bottom;
  z-index: 1;
}
@media (max-width: 720px) {
  .sn_form_contact > .sn_form_contact_bgs > [class^=sn_container_] > .row .sn_background._page:after {
    background: linear-gradient(to top, #c8102e, rgba(200, 16, 46, 0.66));
    transform-origin: center bottom;
  }
}
.sn_form_contact > .sn_wrapper > .sn_container_fluid {
  padding: 0;
  max-width: var(--content-maxwidth);
}
.sn_form_contact > .sn_wrapper > .sn_container_fluid > .row {
  margin: 0 !important;
  padding: 0 var(--padS);
}
.sn_form_contact > .sn_wrapper > .sn_container_fluid > .row div:first-child {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.sn_form_contact > .sn_wrapper > .sn_container_fluid > .row div:first-child .sn_caption {
  order: 2;
}
.sn_form_contact > .sn_wrapper > .sn_container_fluid > .row div:first-child .sn_caption p {
  font-size: var(--fz-m);
  text-transform: uppercase;
}
.sn_form_contact > .sn_wrapper > .sn_container_fluid > .row div:last-child {
  padding-right: 20px;
}
.sn_form_contact .sn_form .form-group .form-control,
.sn_form_contact .sn_form .form-group .custom-select {
  background-color: #fff !important;
  color: var(--color-tan-dark) !important;
  padding-left: 13px;
  padding-right: 13px;
}
.sn_form_contact .sn_form .form-group .form-control ~ label span,
.sn_form_contact .sn_form .form-group .custom-select ~ label span {
  color: var(--color-tan-dark) !important;
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
}
.sn_form_contact ._checkbox #contact_privacy ~ label {
  display: block;
  line-height: 1.5;
}
.sn_form_contact ._checkbox #contact_privacy ~ label ._check {
  margin-top: 0.3em;
  margin-bottom: 0.3em;
}
.sn_form_contact ._checkbox #contact_privacy ~ label ._check + p {
  display: inline;
}
.sn_form_contact ._checkbox #contact_privacy ~ label a:hover {
  color: var(--tc-color-c7);
}
.sn_form_contact .sn_form_custom_control input[type=checkbox] + label::before {
  content: none !important;
}
.sn_form_contact .sn_btn._full {
  width: auto;
}

.wpseo_breadcrumb, .sn_block_simple_form._has_breadcrumps {
  display: inline-block;
  padding: var(--gap) 0;
  width: 100%;
}
.wpseo_breadcrumb span, .sn_block_simple_form._has_breadcrumps span {
  color: var(--color-text-highlight);
  display: inline-block;
  font-size: var(--fz-s);
  text-transform: uppercase;
  padding: 6px !important;
}
@media (max-width: 720px) {
  .wpseo_breadcrumb span, .sn_block_simple_form._has_breadcrumps span {
    font-size: var(--fz-xs);
    padding: 4px 6px !important;
  }
}
.wpseo_breadcrumb span a, .sn_block_simple_form._has_breadcrumps span a {
  letter-spacing: 0.125em;
  text-decoration: none;
  color: var(--color-text-highlight) !important;
  opacity: 0.3;
}
.wpseo_breadcrumb span a:hover, .sn_block_simple_form._has_breadcrumps span a:hover {
  color: var(--color-text-inv);
}
.wpseo_breadcrumb span img, .sn_block_simple_form._has_breadcrumps span img {
  filter: invert(95%) sepia(13%) saturate(270%) hue-rotate(38deg) brightness(95%) contrast(90%) !important;
  opacity: 0.3;
}
.wpseo_breadcrumb span .breadcrumb_last, .sn_block_simple_form._has_breadcrumps span .breadcrumb_last {
  color: var(--tc-color-white) !important;
  font-weight: 600;
}
.wpseo_breadcrumb.overlap-to-next-block, .sn_block_simple_form._has_breadcrumps.overlap-to-next-block {
  z-index: 100;
  padding: 30px 0 0 0;
  position: absolute;
  display: block;
}
.wpseo_breadcrumb.overlap-to-next-block + .sn_block, .sn_block_simple_form._has_breadcrumps.overlap-to-next-block + .sn_block {
  padding-top: 100px !important;
}
@media (max-width: 720px) {
  .wpseo_breadcrumb.overlap-to-next-block + .sn_block, .sn_block_simple_form._has_breadcrumps.overlap-to-next-block + .sn_block {
    padding-top: 120px !important;
  }
}
@media (max-width: 720px) {
  .wpseo_breadcrumb > .sn_block_wr > .sn_container_fixed, .sn_block_simple_form._has_breadcrumps > .sn_block_wr > .sn_container_fixed {
    padding-left: 35px;
    padding-right: 35px;
    max-width: 100%;
  }
  .wpseo_breadcrumb > .sn_block_wr > .sn_container_fixed > .row .col-12, .sn_block_simple_form._has_breadcrumps > .sn_block_wr > .sn_container_fixed > .row .col-12 {
    padding: 0;
  }
}

.campari-fellini-breadcrumb {
  display: block;
  margin: 0 0 -35px 0;
  padding: 0;
  transform: translateY(50%);
  z-index: 100;
}
.campari-fellini-breadcrumb .campari-link-go-back {
  font-size: var(--fz-n);
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
}

.sn_age_gate .sn_age_gate_wr > .container > .row > * {
  max-width: 100%;
}
.sn_age_gate .sn_age_gate_card {
  background-color: var(--color-primary);
}
.sn_age_gate .sn_age_gate_select_menu {
  max-height: 220px;
  overflow-y: auto;
}
.sn_age_gate .sn_sprite svg {
  fill: #EDE6D2;
}
.sn_age_gate .sn_age_gate_inputs .form-group._y {
  margin-right: 0px;
}
.sn_age_gate .sn_age_gate_search_input {
  color: var(--tc-color-white);
}
.sn_age_gate label.sn_age_gate_search_label {
  color: var(--tc-color-white) !important;
}
.sn_age_gate .sn_age_gate_search_clear {
  color: var(--tc-color-white);
}
.sn_age_gate .no-results {
  color: var(--tc-color-white);
}

.sn_age_gate[data-bb-version=v3] .sn_age_gate_select_toggle .sn_sprite use {
  fill: #fff !important;
}
.sn_age_gate[data-bb-version=v3] .sn_age_gate_disclaimer a:hover {
  color: #EDE6D2;
}
.sn_age_gate[data-bb-version=v3] .sn_age_gate_disclaimer {
  display: block !important;
  color: #fff;
}
.sn_age_gate[data-bb-version=v3] .sn_age_gate_inputs .form-group._y {
  margin-right: 7px;
}
.sn_age_gate[data-bb-version=v3] :lang(pl-pl) .sn_age_gate_card_ct > img {
  display: none !important;
}
.sn_age_gate[data-bb-version=v3] :lang(pl-pl) .agegate_page_bg.image {
  display: none !important;
}
.sn_age_gate[data-bb-version=v3] .sn_age_gate_card .sn_age_gate_inputs input {
  border-radius: 0px;
}
.sn_age_gate[data-bb-version=v3] .sn_age_gate_card .sn_btn {
  border-radius: 0px;
}
.sn_age_gate[data-bb-version=v3] .sn_age_gate_buttons button {
  border-color: #EDE6D2;
}
.sn_age_gate[data-bb-version=v3] .sn_sprite use {
  fill: #c8102e;
}
.sn_age_gate[data-bb-version=v3] .sn_age_gate_select_toggle {
  margin: 0px;
}
.sn_age_gate[data-bb-version=v3] .sn_form_custom_control > input:checked ~ label .sn_sprite {
  background-color: #EDE6D2;
}

.sn_age_gate_select_toggle {
  background-color: transparent;
}

.sn_language_selector .sn_language_selector_sidebar_langs ul li {
  margin-bottom: 0.25em;
}
@media (max-width: 720px) {
  .sn_language_selector .sn_language_selector_sidebar_langs ul li {
    margin-bottom: 0.5em;
  }
}
@media (max-width: 720px) {
  .sn_language_selector .sn_language_selector_sidebar_langs ul li a {
    font-size: var(--fz-m);
  }
}

@media (max-width: 52.115em) {
  .sn_language_selector_toggle {
    display: inline-flex !important;
  }
}
.sn_e404 {
  text-align: center;
}
.sn_e404 .sn_e404_in {
  margin: auto;
  width: 40%;
}
.sn_e404 .sn_e404_in .sn_container_fixed_xl {
  text-align: center !important;
}
.sn_e404 .sn_e404_in .sn_container_fixed_xl.mb-90.mb-lg-120 {
  margin-bottom: var(--padS) !important;
}
.sn_e404 .campari-fade-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.sn_e404 .campari-fade-bg .sn_background_wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  width: 100%;
  margin-top: 0;
  z-index: -1;
}
.sn_e404 .campari-fade-bg .sn_background {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  opacity: 0.25;
}
@media (max-width: 720px) {
  .sn_e404 .campari-fade-bg .sn_background {
    height: 100%;
  }
}
.sn_e404 .campari-fade-bg:after {
  content: "";
  display: block;
  background: linear-gradient(#c8102e, rgba(200, 16, 46, 0.75));
  height: 100%;
  width: 100%;
  z-index: 0;
}

@media only screen and (max-width: 600px) {
  .bb-tc h1.bb-tc__title, .bb-cp h1.bb-cp__title, .bb-pp h1.bb-pp__title {
    font-size: 28px !important;
  }
}/*# sourceMappingURL=extension.css.map */