:root {
  --gallery-border-color: #e0e0e0;
  --hero-text-primary: #000000;
  --hero-text-flag: #000;
  --hero-text-secondary: #666666;
  --card-background-active: #f7fdff;
  --card-border-active: #3362ab;
  --card-border: #e0e0e0;
  --card-background: #ffffff;
  --card-text-primary: #333;
  --card-text-secondary: #808080;
}

.iti {
  position: relative;
  display: inline-block;
}

.iti * {
  box-sizing: border-box;
}

.iti__hide {
  display: none;
}

.iti__v-hide {
  visibility: hidden;
}

.iti input.iti__tel-input,
.iti input.iti__tel-input[type="text"],
.iti input.iti__tel-input[type="tel"] {
  position: relative;
  z-index: 0;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-right: 36px;
  margin-right: 0;
}

.iti__flag-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  padding: 1px;
}

.iti__selected-flag {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 6px 0 8px;
}

.iti__arrow {
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

[dir="rtl"] .iti__arrow {
  margin-right: 6px;
  margin-left: 0;
}

.iti__arrow--up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.iti__dropdown-content {
  border-radius: 3px;
  background-color: #fff;
}

.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 2;
  margin-top: 3px;
  margin-left: -1px;
  border: 1px solid #ccc;
  box-shadow: 1px 1px 4px #0003;
}

.iti__dropdown-content--dropup {
  bottom: 100%;
  margin-bottom: 3px;
}

.iti__search-input {
  width: 100%;
  border-width: 0;
  border-radius: 3px;
  padding: 9px 12px;
}

.iti__search-input + .iti__country-list {
  border-top: 1px solid #ccc;
}

.iti__country-list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.iti--inline-dropdown .iti__country-list {
  max-height: 185px;
}

.iti--flexible-dropdown-width .iti__country-list {
  white-space: nowrap;
}

@media (max-width: 500px) {
  .iti--flexible-dropdown-width .iti__country-list {
    white-space: normal;
  }
}

.iti__flag-box {
  display: inline-block;
  width: 20px;
}

.iti__divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.iti__country {
  display: flex;
  align-items: center;
  padding: 8px;
  outline: none;
}

.iti__dial-code {
  color: #999;
}

.iti__country.iti__highlight {
  background-color: #0000000d;
}

.iti__flag-box,
.iti__country-name {
  margin-right: 8px;
}

[dir="rtl"] .iti__flag-box,
[dir="rtl"] .iti__country-name {
  margin-right: 0;
  margin-left: 8px;
}

.iti--allow-dropdown input.iti__tel-input,
.iti--allow-dropdown input.iti__tel-input[type="text"],
.iti--allow-dropdown input.iti__tel-input[type="tel"],
.iti--show-selected-dial-code input.iti__tel-input,
.iti--show-selected-dial-code input.iti__tel-input[type="text"],
.iti--show-selected-dial-code input.iti__tel-input[type="tel"] {
  padding-right: 6px;
  padding-left: 52px;
  margin-left: 0;
}

[dir="rtl"] .iti--allow-dropdown input.iti__tel-input,
[dir="rtl"] .iti--allow-dropdown input.iti__tel-input[type="text"],
[dir="rtl"] .iti--allow-dropdown input.iti__tel-input[type="tel"],
[dir="rtl"] .iti--show-selected-dial-code input.iti__tel-input,
[dir="rtl"] .iti--show-selected-dial-code input.iti__tel-input[type="text"],
[dir="rtl"] .iti--show-selected-dial-code input.iti__tel-input[type="tel"] {
  padding-right: 52px;
  padding-left: 6px;
  margin-right: 0;
}

.iti--allow-dropdown .iti__flag-container,
.iti--show-selected-dial-code .iti__flag-container {
  right: auto;
  left: 0;
}

[dir="rtl"] .iti--allow-dropdown .iti__flag-container,
[dir="rtl"] .iti--show-selected-dial-code .iti__flag-container {
  right: 0;
  left: auto;
}

.iti--allow-dropdown .iti__flag-container:hover {
  cursor: pointer;
}

.iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
  background-color: #0000000d;
}

.iti--allow-dropdown .iti__flag-container:has(+ input[disabled]):hover,
.iti--allow-dropdown .iti__flag-container:has(+ input[readonly]):hover {
  cursor: default;
}

.iti--allow-dropdown
  .iti__flag-container:has(+ input[disabled]):hover
  .iti__selected-flag,
.iti--allow-dropdown
  .iti__flag-container:has(+ input[readonly]):hover
  .iti__selected-flag {
  background-color: transparent;
}

.iti--show-selected-dial-code .iti__selected-flag {
  background-color: #0000000d;
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-left: 6px;
}

[dir="rtl"]
  .iti--show-selected-dial-code.iti--show-flags
  .iti__selected-dial-code {
  margin-left: 0;
  margin-right: 6px;
}

.iti--container {
  position: fixed;
  top: -1000px;
  left: -1000px;
  z-index: 1060;
  padding: 1px;
}

.iti--container:hover {
  cursor: pointer;
}

.iti--fullscreen-popup.iti--container {
  background-color: #00000080;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.iti--fullscreen-popup.iti--container.iti--country-search {
  justify-content: flex-start;
}

.iti--fullscreen-popup .iti__dropdown-content {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  position: relative;
}

.iti--fullscreen-popup .iti__country {
  padding: 10px;
  line-height: 1.5em;
}

.iti__flag {
  width: 20px;
}

.iti__flag.iti__be {
  width: 18px;
}

.iti__flag.iti__ch {
  width: 15px;
}

.iti__flag.iti__mc {
  width: 19px;
}

.iti__flag.iti__ne {
  width: 18px;
}

.iti__flag.iti__np {
  width: 13px;
}

.iti__flag.iti__va {
  width: 15px;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-size: 5762px 15px;
  }
}

.iti__flag.iti__ac {
  height: 10px;
  background-position: 0px 0px;
}

.iti__flag.iti__ad {
  height: 14px;
  background-position: -22px 0px;
}

.iti__flag.iti__ae {
  height: 10px;
  background-position: -44px 0px;
}

.iti__flag.iti__af {
  height: 14px;
  background-position: -66px 0px;
}

.iti__flag.iti__ag {
  height: 14px;
  background-position: -88px 0px;
}

.iti__flag.iti__ai {
  height: 10px;
  background-position: -110px 0px;
}

.iti__flag.iti__al {
  height: 15px;
  background-position: -132px 0px;
}

.iti__flag.iti__am {
  height: 10px;
  background-position: -154px 0px;
}

.iti__flag.iti__ao {
  height: 14px;
  background-position: -176px 0px;
}

.iti__flag.iti__aq {
  height: 14px;
  background-position: -198px 0px;
}

.iti__flag.iti__ar {
  height: 13px;
  background-position: -220px 0px;
}

.iti__flag.iti__as {
  height: 10px;
  background-position: -242px 0px;
}

.iti__flag.iti__at {
  height: 14px;
  background-position: -264px 0px;
}

.iti__flag.iti__au {
  height: 10px;
  background-position: -286px 0px;
}

.iti__flag.iti__aw {
  height: 14px;
  background-position: -308px 0px;
}

.iti__flag.iti__ax {
  height: 13px;
  background-position: -330px 0px;
}

.iti__flag.iti__az {
  height: 10px;
  background-position: -352px 0px;
}

.iti__flag.iti__ba {
  height: 10px;
  background-position: -374px 0px;
}

.iti__flag.iti__bb {
  height: 14px;
  background-position: -396px 0px;
}

.iti__flag.iti__bd {
  height: 12px;
  background-position: -418px 0px;
}

.iti__flag.iti__be {
  height: 15px;
  background-position: -440px 0px;
}

.iti__flag.iti__bf {
  height: 14px;
  background-position: -460px 0px;
}

.iti__flag.iti__bg {
  height: 12px;
  background-position: -482px 0px;
}

.iti__flag.iti__bh {
  height: 12px;
  background-position: -504px 0px;
}

.iti__flag.iti__bi {
  height: 12px;
  background-position: -526px 0px;
}

.iti__flag.iti__bj {
  height: 14px;
  background-position: -548px 0px;
}

.iti__flag.iti__bl {
  height: 14px;
  background-position: -570px 0px;
}

.iti__flag.iti__bm {
  height: 10px;
  background-position: -592px 0px;
}

.iti__flag.iti__bn {
  height: 10px;
  background-position: -614px 0px;
}

.iti__flag.iti__bo {
  height: 14px;
  background-position: -636px 0px;
}

.iti__flag.iti__bq {
  height: 14px;
  background-position: -658px 0px;
}

.iti__flag.iti__br {
  height: 14px;
  background-position: -680px 0px;
}

.iti__flag.iti__bs {
  height: 10px;
  background-position: -702px 0px;
}

.iti__flag.iti__bt {
  height: 14px;
  background-position: -724px 0px;
}

.iti__flag.iti__bv {
  height: 15px;
  background-position: -746px 0px;
}

.iti__flag.iti__bw {
  height: 14px;
  background-position: -768px 0px;
}

.iti__flag.iti__by {
  height: 10px;
  background-position: -790px 0px;
}

.iti__flag.iti__bz {
  height: 12px;
  background-position: -812px 0px;
}

.iti__flag.iti__ca {
  height: 10px;
  background-position: -834px 0px;
}

.iti__flag.iti__cc {
  height: 10px;
  background-position: -856px 0px;
}

.iti__flag.iti__cd {
  height: 15px;
  background-position: -878px 0px;
}

.iti__flag.iti__cf {
  height: 14px;
  background-position: -900px 0px;
}

.iti__flag.iti__cg {
  height: 14px;
  background-position: -922px 0px;
}

.iti__flag.iti__ch {
  height: 15px;
  background-position: -944px 0px;
}

.iti__flag.iti__ci {
  height: 14px;
  background-position: -961px 0px;
}

.iti__flag.iti__ck {
  height: 10px;
  background-position: -983px 0px;
}

.iti__flag.iti__cl {
  height: 14px;
  background-position: -1005px 0px;
}

.iti__flag.iti__cm {
  height: 14px;
  background-position: -1027px 0px;
}

.iti__flag.iti__cn {
  height: 14px;
  background-position: -1049px 0px;
}

.iti__flag.iti__co {
  height: 14px;
  background-position: -1071px 0px;
}

.iti__flag.iti__cp {
  height: 14px;
  background-position: -1093px 0px;
}

.iti__flag.iti__cq {
  height: 12px;
  background-position: -1115px 0px;
}

.iti__flag.iti__cr {
  height: 12px;
  background-position: -1137px 0px;
}

.iti__flag.iti__cu {
  height: 10px;
  background-position: -1159px 0px;
}

.iti__flag.iti__cv {
  height: 12px;
  background-position: -1181px 0px;
}

.iti__flag.iti__cw {
  height: 14px;
  background-position: -1203px 0px;
}

.iti__flag.iti__cx {
  height: 10px;
  background-position: -1225px 0px;
}

.iti__flag.iti__cy {
  height: 14px;
  background-position: -1247px 0px;
}

.iti__flag.iti__cz {
  height: 14px;
  background-position: -1269px 0px;
}

.iti__flag.iti__de {
  height: 12px;
  background-position: -1291px 0px;
}

.iti__flag.iti__dg {
  height: 10px;
  background-position: -1313px 0px;
}

.iti__flag.iti__dj {
  height: 14px;
  background-position: -1335px 0px;
}

.iti__flag.iti__dk {
  height: 15px;
  background-position: -1357px 0px;
}

.iti__flag.iti__dm {
  height: 10px;
  background-position: -1379px 0px;
}

.iti__flag.iti__do {
  height: 14px;
  background-position: -1401px 0px;
}

.iti__flag.iti__dz {
  height: 14px;
  background-position: -1423px 0px;
}

.iti__flag.iti__ea {
  height: 14px;
  background-position: -1445px 0px;
}

.iti__flag.iti__ec {
  height: 14px;
  background-position: -1467px 0px;
}

.iti__flag.iti__ee {
  height: 13px;
  background-position: -1489px 0px;
}

.iti__flag.iti__eg {
  height: 14px;
  background-position: -1511px 0px;
}

.iti__flag.iti__eh {
  height: 10px;
  background-position: -1533px 0px;
}

.iti__flag.iti__er {
  height: 10px;
  background-position: -1555px 0px;
}

.iti__flag.iti__es {
  height: 14px;
  background-position: -1577px 0px;
}

.iti__flag.iti__et {
  height: 10px;
  background-position: -1599px 0px;
}

.iti__flag.iti__eu {
  height: 14px;
  background-position: -1621px 0px;
}

.iti__flag.iti__ez {
  height: 14px;
  background-position: -1643px 0px;
}

.iti__flag.iti__fi {
  height: 12px;
  background-position: -1665px 0px;
}

.iti__flag.iti__fj {
  height: 10px;
  background-position: -1687px 0px;
}

.iti__flag.iti__fk {
  height: 10px;
  background-position: -1709px 0px;
}

.iti__flag.iti__fm {
  height: 11px;
  background-position: -1731px 0px;
}

.iti__flag.iti__fo {
  height: 15px;
  background-position: -1753px 0px;
}

.iti__flag.iti__fr {
  height: 14px;
  background-position: -1775px 0px;
}

.iti__flag.iti__fx {
  height: 14px;
  background-position: -1797px 0px;
}

.iti__flag.iti__ga {
  height: 15px;
  background-position: -1819px 0px;
}

.iti__flag.iti__gb {
  height: 10px;
  background-position: -1841px 0px;
}

.iti__flag.iti__gd {
  height: 12px;
  background-position: -1863px 0px;
}

.iti__flag.iti__ge {
  height: 14px;
  background-position: -1885px 0px;
}

.iti__flag.iti__gf {
  height: 14px;
  background-position: -1907px 0px;
}

.iti__flag.iti__gg {
  height: 14px;
  background-position: -1929px 0px;
}

.iti__flag.iti__gh {
  height: 14px;
  background-position: -1951px 0px;
}

.iti__flag.iti__gi {
  height: 10px;
  background-position: -1973px 0px;
}

.iti__flag.iti__gl {
  height: 14px;
  background-position: -1995px 0px;
}

.iti__flag.iti__gm {
  height: 14px;
  background-position: -2017px 0px;
}

.iti__flag.iti__gn {
  height: 14px;
  background-position: -2039px 0px;
}

.iti__flag.iti__gp {
  height: 14px;
  background-position: -2061px 0px;
}

.iti__flag.iti__gq {
  height: 14px;
  background-position: -2083px 0px;
}

.iti__flag.iti__gr {
  height: 14px;
  background-position: -2105px 0px;
}

.iti__flag.iti__gs {
  height: 10px;
  background-position: -2127px 0px;
}

.iti__flag.iti__gt {
  height: 13px;
  background-position: -2149px 0px;
}

.iti__flag.iti__gu {
  height: 11px;
  background-position: -2171px 0px;
}

.iti__flag.iti__gw {
  height: 10px;
  background-position: -2193px 0px;
}

.iti__flag.iti__gy {
  height: 12px;
  background-position: -2215px 0px;
}

.iti__flag.iti__hk {
  height: 14px;
  background-position: -2237px 0px;
}

.iti__flag.iti__hm {
  height: 10px;
  background-position: -2259px 0px;
}

.iti__flag.iti__hn {
  height: 10px;
  background-position: -2281px 0px;
}

.iti__flag.iti__hr {
  height: 10px;
  background-position: -2303px 0px;
}

.iti__flag.iti__ht {
  height: 12px;
  background-position: -2325px 0px;
}

.iti__flag.iti__hu {
  height: 10px;
  background-position: -2347px 0px;
}

.iti__flag.iti__ic {
  height: 14px;
  background-position: -2369px 0px;
}

.iti__flag.iti__id {
  height: 14px;
  background-position: -2391px 0px;
}

.iti__flag.iti__ie {
  height: 10px;
  background-position: -2413px 0px;
}

.iti__flag.iti__il {
  height: 15px;
  background-position: -2435px 0px;
}

.iti__flag.iti__im {
  height: 10px;
  background-position: -2457px 0px;
}

.iti__flag.iti__in {
  height: 14px;
  background-position: -2479px 0px;
}

.iti__flag.iti__io {
  height: 10px;
  background-position: -2501px 0px;
}

.iti__flag.iti__iq {
  height: 14px;
  background-position: -2523px 0px;
}

.iti__flag.iti__ir {
  height: 12px;
  background-position: -2545px 0px;
}

.iti__flag.iti__is {
  height: 15px;
  background-position: -2567px 0px;
}

.iti__flag.iti__it {
  height: 14px;
  background-position: -2589px 0px;
}

.iti__flag.iti__je {
  height: 12px;
  background-position: -2611px 0px;
}

.iti__flag.iti__jm {
  height: 10px;
  background-position: -2633px 0px;
}

.iti__flag.iti__jo {
  height: 10px;
  background-position: -2655px 0px;
}

.iti__flag.iti__jp {
  height: 14px;
  background-position: -2677px 0px;
}

.iti__flag.iti__ke {
  height: 14px;
  background-position: -2699px 0px;
}

.iti__flag.iti__kg {
  height: 12px;
  background-position: -2721px 0px;
}

.iti__flag.iti__kh {
  height: 13px;
  background-position: -2743px 0px;
}

.iti__flag.iti__ki {
  height: 10px;
  background-position: -2765px 0px;
}

.iti__flag.iti__km {
  height: 12px;
  background-position: -2787px 0px;
}

.iti__flag.iti__kn {
  height: 14px;
  background-position: -2809px 0px;
}

.iti__flag.iti__kp {
  height: 10px;
  background-position: -2831px 0px;
}

.iti__flag.iti__kr {
  height: 14px;
  background-position: -2853px 0px;
}

.iti__flag.iti__kw {
  height: 10px;
  background-position: -2875px 0px;
}

.iti__flag.iti__ky {
  height: 10px;
  background-position: -2897px 0px;
}

.iti__flag.iti__kz {
  height: 10px;
  background-position: -2919px 0px;
}

.iti__flag.iti__la {
  height: 14px;
  background-position: -2941px 0px;
}

.iti__flag.iti__lb {
  height: 14px;
  background-position: -2963px 0px;
}

.iti__flag.iti__lc {
  height: 10px;
  background-position: -2985px 0px;
}

.iti__flag.iti__li {
  height: 12px;
  background-position: -3007px 0px;
}

.iti__flag.iti__lk {
  height: 10px;
  background-position: -3029px 0px;
}

.iti__flag.iti__lr {
  height: 11px;
  background-position: -3051px 0px;
}

.iti__flag.iti__ls {
  height: 14px;
  background-position: -3073px 0px;
}

.iti__flag.iti__lt {
  height: 12px;
  background-position: -3095px 0px;
}

.iti__flag.iti__lu {
  height: 12px;
  background-position: -3117px 0px;
}

.iti__flag.iti__lv {
  height: 10px;
  background-position: -3139px 0px;
}

.iti__flag.iti__ly {
  height: 10px;
  background-position: -3161px 0px;
}

.iti__flag.iti__ma {
  height: 14px;
  background-position: -3183px 0px;
}

.iti__flag.iti__mc {
  height: 15px;
  background-position: -3205px 0px;
}

.iti__flag.iti__md {
  height: 10px;
  background-position: -3226px 0px;
}

.iti__flag.iti__me {
  height: 10px;
  background-position: -3248px 0px;
}

.iti__flag.iti__mf {
  height: 14px;
  background-position: -3270px 0px;
}

.iti__flag.iti__mg {
  height: 14px;
  background-position: -3292px 0px;
}

.iti__flag.iti__mh {
  height: 11px;
  background-position: -3314px 0px;
}

.iti__flag.iti__mk {
  height: 10px;
  background-position: -3336px 0px;
}

.iti__flag.iti__ml {
  height: 14px;
  background-position: -3358px 0px;
}

.iti__flag.iti__mm {
  height: 14px;
  background-position: -3380px 0px;
}

.iti__flag.iti__mn {
  height: 10px;
  background-position: -3402px 0px;
}

.iti__flag.iti__mo {
  height: 14px;
  background-position: -3424px 0px;
}

.iti__flag.iti__mp {
  height: 10px;
  background-position: -3446px 0px;
}

.iti__flag.iti__mq {
  height: 14px;
  background-position: -3468px 0px;
}

.iti__flag.iti__mr {
  height: 14px;
  background-position: -3490px 0px;
}

.iti__flag.iti__ms {
  height: 10px;
  background-position: -3512px 0px;
}

.iti__flag.iti__mt {
  height: 14px;
  background-position: -3534px 0px;
}

.iti__flag.iti__mu {
  height: 14px;
  background-position: -3556px 0px;
}

.iti__flag.iti__mv {
  height: 14px;
  background-position: -3578px 0px;
}

.iti__flag.iti__mw {
  height: 14px;
  background-position: -3600px 0px;
}

.iti__flag.iti__mx {
  height: 12px;
  background-position: -3622px 0px;
}

.iti__flag.iti__my {
  height: 10px;
  background-position: -3644px 0px;
}

.iti__flag.iti__mz {
  height: 14px;
  background-position: -3666px 0px;
}

.iti__flag.iti__na {
  height: 14px;
  background-position: -3688px 0px;
}

.iti__flag.iti__nc {
  height: 10px;
  background-position: -3710px 0px;
}

.iti__flag.iti__ne {
  height: 15px;
  background-position: -3732px 0px;
}

.iti__flag.iti__nf {
  height: 10px;
  background-position: -3752px 0px;
}

.iti__flag.iti__ng {
  height: 10px;
  background-position: -3774px 0px;
}

.iti__flag.iti__ni {
  height: 12px;
  background-position: -3796px 0px;
}

.iti__flag.iti__nl {
  height: 14px;
  background-position: -3818px 0px;
}

.iti__flag.iti__no {
  height: 15px;
  background-position: -3840px 0px;
}

.iti__flag.iti__np {
  height: 15px;
  background-position: -3862px 0px;
}

.iti__flag.iti__nr {
  height: 10px;
  background-position: -3877px 0px;
}

.iti__flag.iti__nu {
  height: 10px;
  background-position: -3899px 0px;
}

.iti__flag.iti__nz {
  height: 10px;
  background-position: -3921px 0px;
}

.iti__flag.iti__om {
  height: 10px;
  background-position: -3943px 0px;
}

.iti__flag.iti__pa {
  height: 14px;
  background-position: -3965px 0px;
}

.iti__flag.iti__pe {
  height: 14px;
  background-position: -3987px 0px;
}

.iti__flag.iti__pf {
  height: 14px;
  background-position: -4009px 0px;
}

.iti__flag.iti__pg {
  height: 15px;
  background-position: -4031px 0px;
}

.iti__flag.iti__ph {
  height: 10px;
  background-position: -4053px 0px;
}

.iti__flag.iti__pk {
  height: 14px;
  background-position: -4075px 0px;
}

.iti__flag.iti__pl {
  height: 13px;
  background-position: -4097px 0px;
}

.iti__flag.iti__pm {
  height: 14px;
  background-position: -4119px 0px;
}

.iti__flag.iti__pn {
  height: 10px;
  background-position: -4141px 0px;
}

.iti__flag.iti__pr {
  height: 14px;
  background-position: -4163px 0px;
}

.iti__flag.iti__ps {
  height: 10px;
  background-position: -4185px 0px;
}

.iti__flag.iti__pt {
  height: 14px;
  background-position: -4207px 0px;
}

.iti__flag.iti__pw {
  height: 13px;
  background-position: -4229px 0px;
}

.iti__flag.iti__py {
  height: 11px;
  background-position: -4251px 0px;
}

.iti__flag.iti__qa {
  height: 8px;
  background-position: -4273px 0px;
}

.iti__flag.iti__re {
  height: 14px;
  background-position: -4295px 0px;
}

.iti__flag.iti__ro {
  height: 14px;
  background-position: -4317px 0px;
}

.iti__flag.iti__rs {
  height: 14px;
  background-position: -4339px 0px;
}

.iti__flag.iti__ru {
  height: 14px;
  background-position: -4361px 0px;
}

.iti__flag.iti__rw {
  height: 14px;
  background-position: -4383px 0px;
}

.iti__flag.iti__sa {
  height: 14px;
  background-position: -4405px 0px;
}

.iti__flag.iti__sb {
  height: 10px;
  background-position: -4427px 0px;
}

.iti__flag.iti__sc {
  height: 10px;
  background-position: -4449px 0px;
}

.iti__flag.iti__sd {
  height: 10px;
  background-position: -4471px 0px;
}

.iti__flag.iti__se {
  height: 13px;
  background-position: -4493px 0px;
}

.iti__flag.iti__sg {
  height: 14px;
  background-position: -4515px 0px;
}

.iti__flag.iti__sh {
  height: 10px;
  background-position: -4537px 0px;
}

.iti__flag.iti__si {
  height: 10px;
  background-position: -4559px 0px;
}

.iti__flag.iti__sj {
  height: 15px;
  background-position: -4581px 0px;
}

.iti__flag.iti__sk {
  height: 14px;
  background-position: -4603px 0px;
}

.iti__flag.iti__sl {
  height: 14px;
  background-position: -4625px 0px;
}

.iti__flag.iti__sm {
  height: 15px;
  background-position: -4647px 0px;
}

.iti__flag.iti__sn {
  height: 14px;
  background-position: -4669px 0px;
}

.iti__flag.iti__so {
  height: 14px;
  background-position: -4691px 0px;
}

.iti__flag.iti__sr {
  height: 14px;
  background-position: -4713px 0px;
}

.iti__flag.iti__ss {
  height: 10px;
  background-position: -4735px 0px;
}

.iti__flag.iti__st {
  height: 10px;
  background-position: -4757px 0px;
}

.iti__flag.iti__su {
  height: 10px;
  background-position: -4779px 0px;
}

.iti__flag.iti__sv {
  height: 12px;
  background-position: -4801px 0px;
}

.iti__flag.iti__sx {
  height: 14px;
  background-position: -4823px 0px;
}

.iti__flag.iti__sy {
  height: 14px;
  background-position: -4845px 0px;
}

.iti__flag.iti__sz {
  height: 14px;
  background-position: -4867px 0px;
}

.iti__flag.iti__ta {
  height: 10px;
  background-position: -4889px 0px;
}

.iti__flag.iti__tc {
  height: 10px;
  background-position: -4911px 0px;
}

.iti__flag.iti__td {
  height: 14px;
  background-position: -4933px 0px;
}

.iti__flag.iti__tf {
  height: 14px;
  background-position: -4955px 0px;
}

.iti__flag.iti__tg {
  height: 13px;
  background-position: -4977px 0px;
}

.iti__flag.iti__th {
  height: 14px;
  background-position: -4999px 0px;
}

.iti__flag.iti__tj {
  height: 10px;
  background-position: -5021px 0px;
}

.iti__flag.iti__tk {
  height: 10px;
  background-position: -5043px 0px;
}

.iti__flag.iti__tl {
  height: 10px;
  background-position: -5065px 0px;
}

.iti__flag.iti__tm {
  height: 14px;
  background-position: -5087px 0px;
}

.iti__flag.iti__tn {
  height: 14px;
  background-position: -5109px 0px;
}

.iti__flag.iti__to {
  height: 10px;
  background-position: -5131px 0px;
}

.iti__flag.iti__tr {
  height: 14px;
  background-position: -5153px 0px;
}

.iti__flag.iti__tt {
  height: 12px;
  background-position: -5175px 0px;
}

.iti__flag.iti__tv {
  height: 10px;
  background-position: -5197px 0px;
}

.iti__flag.iti__tw {
  height: 14px;
  background-position: -5219px 0px;
}

.iti__flag.iti__tz {
  height: 14px;
  background-position: -5241px 0px;
}

.iti__flag.iti__ua {
  height: 14px;
  background-position: -5263px 0px;
}

.iti__flag.iti__ug {
  height: 14px;
  background-position: -5285px 0px;
}

.iti__flag.iti__uk {
  height: 10px;
  background-position: -5307px 0px;
}

.iti__flag.iti__um {
  height: 11px;
  background-position: -5329px 0px;
}

.iti__flag.iti__un {
  height: 14px;
  background-position: -5351px 0px;
}

.iti__flag.iti__us {
  height: 11px;
  background-position: -5373px 0px;
}

.iti__flag.iti__uy {
  height: 14px;
  background-position: -5395px 0px;
}

.iti__flag.iti__uz {
  height: 10px;
  background-position: -5417px 0px;
}

.iti__flag.iti__va {
  height: 15px;
  background-position: -5439px 0px;
}

.iti__flag.iti__vc {
  height: 14px;
  background-position: -5456px 0px;
}

.iti__flag.iti__ve {
  height: 14px;
  background-position: -5478px 0px;
}

.iti__flag.iti__vg {
  height: 10px;
  background-position: -5500px 0px;
}

.iti__flag.iti__vi {
  height: 14px;
  background-position: -5522px 0px;
}

.iti__flag.iti__vn {
  height: 14px;
  background-position: -5544px 0px;
}

.iti__flag.iti__vu {
  height: 12px;
  background-position: -5566px 0px;
}

.iti__flag.iti__wf {
  height: 14px;
  background-position: -5588px 0px;
}

.iti__flag.iti__ws {
  height: 10px;
  background-position: -5610px 0px;
}

.iti__flag.iti__xk {
  height: 15px;
  background-position: -5632px 0px;
}

.iti__flag.iti__ye {
  height: 14px;
  background-position: -5654px 0px;
}

.iti__flag.iti__yt {
  height: 14px;
  background-position: -5676px 0px;
}

.iti__flag.iti__za {
  height: 14px;
  background-position: -5698px 0px;
}

.iti__flag.iti__zm {
  height: 14px;
  background-position: -5720px 0px;
}

.iti__flag.iti__zw {
  height: 10px;
  background-position: -5742px 0px;
}

.iti__flag {
  height: 15px;
  box-shadow: 0 0 1px #888;
  background-image: url(./flags-54dc5bc4.png?1);
  background-repeat: no-repeat;
  background-position: 20px 0;
}

@media (min-resolution: 2x) {
  .iti__flag {
    background-image: url(./flags@2x-9bd00899.png?1);
  }
}

.iti__globe {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAQAAAAngNWGAAACTUlEQVR42k1SW0hUURQ9PSyzyCzoKURlIL1AhH4UucxZ+87LKQIly/wJIn+CHj/VgBkM8zFBhUFIoME4Mz2EhME+8iOECqWiQkjyQ5JIwuqjcYxoMHb7nOug98J5rLP2Omvvs5X3dS43o1NJVzGMGTB+0ivEaK9Bm1dYyuISUcyHOcj4jTnkAxxmYtw0Z87KoppQ8fQII4dvFA+u1lm9hdrpO2YEe43yotQyURsQ6KPvMFJWO+mNVIfngo9YvdoSpag9whiXo6PUT3X6It5Th9tA3Tgv2LBQY5bqrsUvYreJzuILZRHDBbzRV9CJR5iWOYwc5n07hKhb6C9y+gmiNKSUd6k3CxZDCrkQ0yULOKVOlVLhCt3tEehBcL0NSOCgjGdCjEHVvAZd9BknJb4VyfoKfxV2YxA17i5nA27hcqQMNcT4pGgozH75nUqcw1fcQwZpTFE/UujBO4yiFwNgTCmMuYzZMCPhVuPugsdMpMxa6NCtsisXxphsgowCMYUk+15T/toSPHY324AuvU9vQlo8ZpRvDwp+xqh9wgnabpX6THWF8pKyyOCHZH3KxPUE2GVqc9bhLSaRoj5MIE338QLjokjEmHZKTXG2Ii8u/vm3iZtqUTqEEXJFN64D+1dhtpHpxMITui0BJkbOPUBtuKOUr8E6fIbTyEeYbtum8JpIXw8aqpSpkTHplPo34iEKAZY0EqZt5DeTaTRcs6p/kJOr4m7DMfGtP+iAIViatzDS+jjmRFdUdJNvJ26gXtn7FmnKA2xaSdGMLkWLq/8ijPjvv8jQpwAAAABJRU5ErkJggg==);
  background-size: contain;
  background-position: right;
  box-shadow: none;
  height: 19px;
}

@media (min-resolution: 2x) {
  .iti__globe {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAQAAAAm93DmAAAACXBIWXMAAAsTAAALEwEAmpwYAAAGNUlEQVR42oVWC2iVZRj+z9TUUqfZRTTFlEq0FBQpmeRx3/P+55zNqZEmSZGKJF2YoZtlhkqZYWlQYGWleakoS0FySLlQMgtNmUFecbot3BRF87b72d/zft9/zjwy5//xX77L+7z39/29tq9oR/c2Q+UVfI39qEIjWlBjDmGLWWjGuN1RnbyId/tradbUDp43tQNm4g8ECY5YIAE4hF9xzv0Ax8zC/F4h6/Yvd8BMQTmBFKYR9WjxLaTPm7MGzgmLSyh2crYDp5v+XfgxrsR1SgrCErQCl/ksx1WVVpJoQq0oaJk/RKnagZOHUJFQiDpfoZpJPgMDPA/foJLy90EUNUJ2cZW1Pk5wv0ApbwGHx3A9prI1EbQCSyjPl26XrqkKv6bnB/gYu/IC8KSohZ9tA1Id4ffHZasq+ZtNlPbtWJC41/MK7rQSVqmF1cY4gT9p5wWUVOUkJGI3QTr34+844fSAednzEj04+8TzxnSNdnGAynZMV3VZQSCGa1FcV0ghld9fdzOtt4pK0KOqgoUvjgfRe1InZD0qWvmjGjv0bYajTuHIejenWTeoO34EN1rQSNstComO4XcMMnPkI/zEr0toxF8oNV+gKDYM70tAWXlJXkzpGkg3UwVLA2ILl67zLtWV2N0yjxayQW2u4ChKcQa12CmHcJ6rzstrMMAyfi9PVQ5wivZNu2OIJNEMQkrf2AhsVyI0yiojuf1C+66T02E69pYcFKM6oa47ZKZxr0wjIxHI8632WzEhsN7aj9KCAJfxmuzDkXQE3EGib1GlaZlaw2pcwywc5uljKPHJnvC/Ov/ymBygSqcQ5Ad8T7cENVinHqahI2SZisOIDuv16XRZT4oyTvblBaIpoFI+wCNKhkHRjonOZozMcPxz+9HXc1JGzgAMjRQblghynwpPF6BKnIxT2qgXyt+MpuFzFUolpMrpOKTSWaRQtwUyX4Nez8tztHktrfgu4dRGZgF+Q4mRVC5IHr046EY2ZhMqMxnT0h+md4eHEm7VjSfM6Txb6bgwgRnSmQcK/WD8I9EuY3shO9HD9OapzfJvonO0J7KRrU+a6Qy+V5/n94p2MUNRZ1Nir+c/aatKPZpRT1+dt4Y2NsgDuWEgyJzbE5mzZuIc9Mxel786NN7lM6vOGoIvkbkokvkyD8UyBwdxyRRyFg5TiIso43oxinhuKRokqWHnYRdfTQ5QeaIxdzABJ5FNdobF1jKwMy7UYHXq27+PGjazOv7iyWLNiTQgo0lbEJDgWz2uTmI0usCm13XQ65Gc7hTjHfXyxO60pKieCa2euSNVfw4CWiucz+mudZvcprqQ0mdmHDJ0WDuZ5S9ohLgYCAHnciIHtNSDsHqbyU4JrizT45mArY1MDAN7ZBjW5Yqgrct/XElfdUqz7NvC6mVhEgNjD3ZrIEc7juqUqbLmFOeL0JTfC8/geL72vySS6XqDbFzQTmYV3qk8ZTkVuIoL6p42CyxjFXskwDWCnZBx2Bi3eWJWujy1jpEGJ6PMtuQLcFI4RyW2yGKZYUbjZ5yVHDNNXmcSHkUjd8/hU8nRxhZTcVrAVHDVRjvxWQqclKRWjOhAZ3hcIdwGVEoy/FvgM84nqrEZ29m5R7nCgcqYy+P1zrpOxtkpGblZ5tIPn2Mbt8mOtWggSlAzfpj/YLSb9epWOR1W+hLt0EJI6dtaL/nCrjghXbZoipNbt3QdirhcTpeCh1n039AvfKcOtZ1oVrqjhJwGoE5c+Oj2hrDSDZZxzG7b3uUfLa4qu3wlgW0FexNq53rCr3UoGW3UTI7baHKQ8gODYjXUdv+5tuo/ymrTUZnw3DI8bZtnAxoItyOlx02Q8mYewdI5U0fvUQJ2OK3e4RVarTz8nWomxbZU9rTxMyKrLGSLQoreSf1Ckqq9aMHewmFNVZ+yKUOyXBHStnFFrHM+yCNEOhU5QvCr5n5NwAn0J5qkwTba42KUzkl3a8giqhiqngE5VvdoXRePJ00hzzPy+GzniqjZMQm11uDJVjhzJdpHqyLlOoKNMpFKZjS42/3F9sdulUXrMOHoScpDdrkjzVAv0vYve/uQvPCSXFRQPyDcSvWjAji5bqdoWx7Psr13Oc6h2haMCAfXp3ZoH+p/nx653W4Gr3MAAAAASUVORK5CYII=);
  }
}

.image-gallery-icon {
  color: #fff;
  transition: all 0.3s ease-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  outline: none;
  position: absolute;
  z-index: 4;
  filter: drop-shadow(0 2px 2px #1a1a1a);
}

@media (hover: hover) and (pointer: fine) {
  .image-gallery-icon:hover {
    color: #337ab7;
  }

  .image-gallery-icon:hover .image-gallery-svg {
    transform: scale(1.1);
  }
}

.image-gallery-icon:focus {
  outline: 2px solid #337ab7;
}

.image-gallery-using-mouse .image-gallery-icon:focus {
  outline: none;
}

.image-gallery-fullscreen-button,
.image-gallery-play-button {
  bottom: 0;
  padding: 20px;
}

.image-gallery-fullscreen-button .image-gallery-svg,
.image-gallery-play-button .image-gallery-svg {
  height: 28px;
  width: 28px;
}

@media (max-width: 768px) {
  .image-gallery-fullscreen-button,
  .image-gallery-play-button {
    padding: 15px;
  }

  .image-gallery-fullscreen-button .image-gallery-svg,
  .image-gallery-play-button .image-gallery-svg {
    height: 24px;
    width: 24px;
  }
}

@media (max-width: 480px) {
  .image-gallery-fullscreen-button,
  .image-gallery-play-button {
    padding: 10px;
  }

  .image-gallery-fullscreen-button .image-gallery-svg,
  .image-gallery-play-button .image-gallery-svg {
    height: 16px;
    width: 16px;
  }
}

.image-gallery-fullscreen-button {
  right: 0;
}

.image-gallery-play-button {
  left: 0;
}

.image-gallery-left-nav,
.image-gallery-right-nav {
  padding: 50px 10px;
  top: 50%;
  transform: translateY(-50%);
}

.image-gallery-left-nav .image-gallery-svg,
.image-gallery-right-nav .image-gallery-svg {
  height: 120px;
  width: 60px;
}

@media (max-width: 768px) {
  .image-gallery-left-nav .image-gallery-svg,
  .image-gallery-right-nav .image-gallery-svg {
    height: 72px;
    width: 36px;
  }
}

@media (max-width: 480px) {
  .image-gallery-left-nav .image-gallery-svg,
  .image-gallery-right-nav .image-gallery-svg {
    height: 48px;
    width: 24px;
  }
}

.image-gallery-left-nav[disabled],
.image-gallery-right-nav[disabled] {
  cursor: disabled;
  opacity: 0.6;
  pointer-events: none;
}

.image-gallery-left-nav {
  left: 0;
}

.image-gallery-right-nav {
  right: 0;
}

.image-gallery {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  position: relative;
}

.image-gallery.fullscreen-modal {
  background: #000;
  bottom: 0;
  height: 100%;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 5;
}

.image-gallery.fullscreen-modal .image-gallery-content {
  top: 50%;
  transform: translateY(-50%);
}

.image-gallery-content {
  position: relative;
  line-height: 0;
  top: 0;
}

.image-gallery-content.fullscreen {
  background: #000;
}

.image-gallery-content .image-gallery-slide .image-gallery-image {
  max-height: calc(100vh - 80px);
}

.image-gallery-content.image-gallery-thumbnails-left
  .image-gallery-slide
  .image-gallery-image,
.image-gallery-content.image-gallery-thumbnails-right
  .image-gallery-slide
  .image-gallery-image {
  max-height: 100vh;
}

.image-gallery-slide-wrapper {
  position: relative;
}

.image-gallery-slide-wrapper.image-gallery-thumbnails-left,
.image-gallery-slide-wrapper.image-gallery-thumbnails-right {
  display: inline-block;
  width: calc(100% - 90px);
}

@media (max-width: 768px) {
  .image-gallery-slide-wrapper.image-gallery-thumbnails-left,
  .image-gallery-slide-wrapper.image-gallery-thumbnails-right {
    width: calc(100% - 87px);
  }
}

.image-gallery-slide-wrapper.image-gallery-rtl {
  direction: rtl;
}

.image-gallery-slides {
  line-height: 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  text-align: center;
}

.image-gallery-slide {
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.image-gallery-slide.image-gallery-center {
  position: relative;
}

.image-gallery-slide .image-gallery-image {
  width: 100%;
  object-fit: contain;
}

.image-gallery-slide .image-gallery-description {
  background: rgba(0, 0, 0, 0.4);
  bottom: 70px;
  color: #fff;
  left: 0;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  white-space: normal;
}

@media (max-width: 768px) {
  .image-gallery-slide .image-gallery-description {
    bottom: 45px;
    font-size: 0.8em;
    padding: 8px 15px;
  }
}

.image-gallery-bullets {
  bottom: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 80%;
  z-index: 4;
}

.image-gallery-bullets .image-gallery-bullets-container {
  margin: 0;
  padding: 0;
  text-align: center;
}

.image-gallery-bullets .image-gallery-bullet {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  box-shadow: 0 2px 2px #1a1a1a;
  cursor: pointer;
  display: inline-block;
  margin: 0 5px;
  outline: none;
  padding: 5px;
  transition: all 0.2s ease-out;
}

@media (max-width: 768px) {
  .image-gallery-bullets .image-gallery-bullet {
    margin: 0 3px;
    padding: 3px;
  }
}

@media (max-width: 480px) {
  .image-gallery-bullets .image-gallery-bullet {
    padding: 2.7px;
  }
}

.image-gallery-bullets .image-gallery-bullet:focus {
  transform: scale(1.2);
  background: #337ab7;
  border: 1px solid #337ab7;
}

.image-gallery-bullets .image-gallery-bullet.active {
  transform: scale(1.2);
  border: 1px solid #fff;
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .image-gallery-bullets .image-gallery-bullet:hover {
    background: #337ab7;
    border: 1px solid #337ab7;
  }

  .image-gallery-bullets .image-gallery-bullet.active:hover {
    background: #337ab7;
  }
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
  display: inline-block;
  vertical-align: top;
  width: 100px;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
    width: 81px;
  }
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left
  .image-gallery-thumbnails,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right
  .image-gallery-thumbnails {
  height: 100%;
  width: 100%;
  left: 0;
  padding: 0;
  position: absolute;
  top: 0;
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left
  .image-gallery-thumbnails
  .image-gallery-thumbnail,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right
  .image-gallery-thumbnails
  .image-gallery-thumbnail {
  display: block;
  margin-right: 0;
  padding: 0;
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left
  .image-gallery-thumbnails
  .image-gallery-thumbnail
  + .image-gallery-thumbnail,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right
  .image-gallery-thumbnails
  .image-gallery-thumbnail
  + .image-gallery-thumbnail {
  margin-left: 0;
  margin-top: 2px;
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
  margin: 0 5px;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left,
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-right {
    margin: 0 3px;
  }
}

.image-gallery-thumbnails {
  overflow: hidden;
  padding: 5px 0;
}

@media (max-width: 768px) {
  .image-gallery-thumbnails {
    padding: 3px 0;
  }
}

.image-gallery-thumbnails .image-gallery-thumbnails-container {
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.image-gallery-thumbnail {
  display: inline-block;
  border: 4px solid transparent;
  transition: border 0.3s ease-out;
  width: 100px;
  background: transparent;
  padding: 0;
}

@media (max-width: 768px) {
  .image-gallery-thumbnail {
    border: 3px solid transparent;
    width: 81px;
  }
}

.image-gallery-thumbnail + .image-gallery-thumbnail {
  margin-left: 2px;
}

.image-gallery-thumbnail .image-gallery-thumbnail-inner {
  display: block;
  position: relative;
}

.image-gallery-thumbnail .image-gallery-thumbnail-image {
  vertical-align: middle;
  width: 100%;
  line-height: 0;
}

.image-gallery-thumbnail.active,
.image-gallery-thumbnail:focus {
  outline: none;
  border: 4px solid #337ab7;
}

@media (max-width: 768px) {
  .image-gallery-thumbnail.active,
  .image-gallery-thumbnail:focus {
    border: 3px solid #337ab7;
  }
}

@media (hover: hover) and (pointer: fine) {
  .image-gallery-thumbnail:hover {
    outline: none;
    border: 4px solid #337ab7;
  }
}

@media (hover: hover) and (pointer: fine) and (max-width: 768px) {
  .image-gallery-thumbnail:hover {
    border: 3px solid #337ab7;
  }
}

.image-gallery-thumbnail-label {
  box-sizing: border-box;
  color: #fff;
  font-size: 1em;
  left: 0;
  line-height: 1em;
  padding: 5%;
  position: absolute;
  top: 50%;
  text-shadow: 0 2px 2px #1a1a1a;
  transform: translateY(-50%);
  white-space: normal;
  width: 100%;
}

@media (max-width: 768px) {
  .image-gallery-thumbnail-label {
    font-size: 0.8em;
    line-height: 0.8em;
  }
}

.image-gallery-index {
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  line-height: 1;
  padding: 10px 20px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}

@media (max-width: 768px) {
  .image-gallery-index {
    font-size: 0.8em;
    padding: 5px 10px;
  }
}

@keyframes dots {
  0% {
    content: "";
  }

  33% {
    content: ".";
  }

  66% {
    content: "..";
  }

  to {
    content: "...";
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.button {
  cursor: pointer;
  border: none;
  color: #fff;
  border-radius: 10px;
  text-transform: uppercase;
  transition: background-color 0.15s ease-in;
  margin-top: 12px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .button {
    margin-top: 12px;
  }
}

.button--submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 8px;
}

.button--submit > .processing {
  display: none;
}

.button--submit[loading="true"]:after {
  content: "";
  font-size: 19px;
  line-height: 24px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  animation: 1s linear dots infinite;
  width: 30px;
  opacity: 1;
  text-align: left;
}

.button--submit[loading="true"]:before {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  display: inline-block;
  border: 5px solid rgba(255, 255, 255, 0.5);
  border-bottom: 5px solid #fff;
  border-radius: 50%;
  position: relative;
  margin-right: 16px;
  transform: rotate(130deg);
  animation: 1s linear infinite spin;
  opacity: 1;
}

.button--submit[loading="true"] > .cta__loading {
  display: block;
}

.button--submit[loading="true"] > span {
  display: none;
}

.button--submit[loading="true"] > .submit__icon--wrapper {
  display: none;
}

.button--submit__loading {
  display: none;
}

.button--submit[loading="true"] > span.processing {
  display: inline-block;
  animation: 0.25s ease-in fadeIn;
  opacity: 1;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  text-transform: uppercase;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2509803922);
}

.button--submit__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  text-transform: uppercase;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2509803922);
}

.button--submit__icon {
  width: 16px;
  height: 17px;
  background-position: center;
  position: relative;
  top: 2px;
  background-color: #fff;
  margin-right: 16px;
}

.button[theme="green"] {
  background-color: #0ed13d;
  border-bottom: 2px solid #0b9e2e;
  color: #fff;
}

@media screen and (pointer: fine) {
  .button[theme="green"]:hover {
    background-color: #0b9e2e;
  }
}

.button[theme="blue"] {
  background-color: #0d40ff;
  border-bottom: 2px solid #0d40ff;
  color: #fff;
}

@media screen and (pointer: fine) {
  .button[theme="blue"]:hover {
    background-color: #002fdd;
  }
}

.button[theme="purple"] {
  background-color: #4f27e6;
  border-bottom: 2px solid #3b17c5;
  color: #fff;
}

@media screen and (pointer: fine) {
  .button[theme="purple"]:hover {
    background-color: #3b17c5;
  }
}

.button[theme="orange"] {
  background-color: #f60;
  border-bottom: 2px solid #b84900;
  color: #fff;
}

@media screen and (pointer: fine) {
  .button[theme="orange"]:hover {
    background-color: #e15a00;
  }
}

.button[theme="red"] {
  background-color: #e80000;
  border-bottom: 2px solid #a30000;
  color: #fff;
}

@media screen and (pointer: fine) {
  .button[theme="red"]:hover {
    background-color: #c80000;
  }
}

.button--warranty {
  width: 100%;
  padding: 8px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
}

.submitPaypal {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--paypalBackground);
  border: none;
  border-bottom: 2px solid var(--paypalShadow);
  padding: 12px 40px;
  width: 100%;
  text-decoration: none;
  border-radius: 10px;
  opacity: 0;
  cursor: pointer;
  transition: background-color 0.15s ease-in;
}

@media (pointer: fine) {
  .submitPaypal:hover {
    background-color: var(--paypalHover);
    border-bottom: 2px solid var(--paypalShadowHover);
  }
}

.submitPaypal span:first-of-type {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: var(--paypalTextColor);
  margin-right: 16px;
}

.submitPaypal--active {
  opacity: 1;
}

.submitPaypal__wrapper {
  padding-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .submitPaypal__wrapper {
    padding-bottom: 24px;
    margin-top: 0;
  }
}

.submitPaypal__wrapper__noBorders {
  padding-bottom: 0;
}

.submitPaypal__paypalLogo {
  width: 123px;
  height: 32px;
}

@media screen and (max-width: 767px) {
  .submitPaypal__paypalLogo {
    width: 92.25px;
    height: 24px;
  }
}

.submitPaypal__container {
  position: relative;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
}

@media screen and (max-width: 767px) {
  .submitPaypal__container {
    padding: 16px;
  }
}

.submitPaypal__container:before {
  content: attr(data-before);
  position: absolute;
  color: var(--CC-Shopify-Ligth-gray, #828282);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  top: -19px;
  left: 50%;
  margin-top: 11px;
  transform: translate(-50%);
  padding: 0 16px;
  background-color: #fff;
}

.submitPaypal__container:after {
  content: attr(data-after);
  color: var(--CC-Shopify-Ligth-gray, #828282);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  position: absolute;
  left: 50%;
  margin-top: 13px;
  padding: 0 16px;
  transform: translate(-50%);
  background-color: #fff;
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .submitPaypal__container:after {
    margin-top: 7px;
  }
}

.submitPaypal__container__noBorders {
  border: 0;
  padding: 0;
  margin: 16px 0 0;
}

.submitPaypal__container__noBorders:after {
  content: "";
}

.submitPaypal__container__noBorders:before {
  content: "";
}

.shippingMethodSelector__wrapper {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .shippingMethodSelector__wrapper {
    padding-bottom: 0;
  }
}

.shippingMethodSelector__container {
  display: flex;
  justify-content: space-between;
}

.shippingMethodSelector__item_heading {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.shippingMethodSelector__item_price {
  color: var(--Gray-1, #333);
  text-align: right;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.heading-2 {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  padding-bottom: 16px;
}

.heading-2__img {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: contain;
}

.heading-2__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: Roboto, sans-serif, sans-serif;
  color: #333;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .heading-2__text {
    font-size: 16px;
  }
}

.heading-2--noBorder {
  border-bottom: none;
  padding-bottom: 0;
}

.discount__error {
  color: var(--CC-Shopify-Ligth-gray, #828282);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.discount__inputContainer {
  margin-top: 16px;
  margin-bottom: 8px;
  display: flex;
}

.discount__inputContainer__input {
  border: 1px solid #e0e0e0;
  height: 54px;
  border-radius: 6px;
  position: relative;
  box-sizing: border-box;
  display: inline;
  flex-grow: 1;
  margin-right: 12px;
}

.discount__inputContainer__applyButton {
  border-radius: 6px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  background: var(--CC-Shopify-BG---light-gray, #fafafa);
  padding: 16px;
}

.discount__inputContainer__applyButton__text {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  height: 20px;
  display: block;
}

.discount__inputContainer__styledInput {
  transition: padding 0.3s;
  background: transparent;
  border: none;
  padding: 16px;
  outline: none;
  width: 100%;
  color: var(--CC-Shopify-Ligth-gray, #828282);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  vertical-align: middle;
}

.discount__pill {
  display: flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 4px 8px;
  box-sizing: border-box;
  border: 1px solid var(--Top5-Borders, #e0e0e0);
  background: var(--CC-Shopify-BG---light-gray, #fafafa);
  max-height: 30px;
}

.discount__pill:last-child {
  margin-bottom: 0;
  margin-right: 0;
}

.discount__pill__container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  gap: 8px;
}

.discount__pill__tag {
  align-self: center;
}

.discount__pill__text {
  margin-left: 4px;
  margin-right: 12px;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  max-height: 20px;
}

.discount__pill__closeBtn {
  cursor: pointer;
  display: flex;
  align-self: center;
  height: 14px;
  width: 14px;
}

.message {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  row-gap: 8px;
}

.message__discount,
.message__timer {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  column-gap: 11px;
  border-radius: 10px;
  padding: 10px 16px;
}

@media screen and (max-width: 767px) {
  .message__discount,
  .message__timer {
    padding: 8px 16px;
  }
}

.message__discount {
  border: 1px solid #ffebc3;
  background-color: #fffef3;
}

.message__timer {
  border: 1px solid #ffe0d9;
  background-color: #fff6f3;
}

.message__img {
  width: 24px;
  height: 24px;
  background-size: contain;
}

.message__text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: inharit;
}

@media screen and (max-width: 767px) {
  .message__text {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
    font-family: Roboto, sans-serif;
  }
}

.warranty {
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  position: relative;
  z-index: 40;
}

.warranty--top {
  margin-top: 12px;
}

.warranty__checkbox {
  width: 100%;
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
}

.warranty__checkbox span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #4f4f4f;
}

.warranty__label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #4f4f4f;
  grid-column: 2/3;
  grid-row: 1/2;
  text-transform: capitalize;
  cursor: pointer;
}

.warranty__input {
  align-self: flex-start;
}

.warranty__input:checked ~ .warranty__check {
  background-color: #bdbdbd;
}

.warranty__check {
  cursor: pointer;
  grid-row: 1/2;
  grid-column: 1/2;
  position: relative;
  z-index: 20;
  display: grid;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #bdbdbd;
  align-self: flex-start;
}

.warranty__check span {
  display: none;
  width: 10.31px;
  height: 9.45px;
  background-color: #bdbdbd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.warranty__text {
  padding: 8px 16px;
  font-size: 13px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
}

@media screen and (max-width: 767px) {
  .warranty__text {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    font-family: Roboto, sans-serif;
  }
}

.warranty__text strong {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
}

.warrantyContainer {
  position: relative;
}

.warantyPopupOuter {
  position: relative;
  top: -5px;
  display: block;
  transition: opacity 0.15s ease-in;
  visibility: hidden;
  z-index: 99;
}

.warantyPopupOuter--dark > .warantyPopupOuter__arrow {
  background-color: #4f4f4f;
  background-image: linear-gradient(-45deg, transparent 50%, #4f4f4f 50%);
}

.warantyPopupOuter--dark > .warantyPopupInner > .warantyPopupInner__head {
  background-color: #333;
}

.warantyPopupOuter--dark
  > .warantyPopupInner
  > .warantyPopupInner__head
  > .warantyPopupInner__heading {
  color: #fff;
}

.warantyPopupOuter--dark > .warantyPopupInner > .warantyPopupInner__content {
  background-color: #4f4f4f;
}

.warantyPopupOuter--dark
  > .warantyPopupInner
  > .warantyPopupInner__content
  > .warantyPopupInner__text {
  color: #fff;
}

.warantyPopupOuter__arrow {
  position: absolute;
  z-index: 10;
  top: -9px;
  left: 0;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  background-image: linear-gradient(-45deg, transparent 50%, white 50%);
  background-color: #fff;
  z-index: 99;
  box-shadow: 2px 2px 3px #00000017;
}

.warantyPopupInner {
  overflow: hidden;
  position: absolute;
  display: inline-block;
  z-index: 99;
  top: 0;
  left: -16px;
  visibility: hidden;
  max-width: 336px;
  width: 100%;
  transform: translateY(-100%);
  box-shadow: 0 0 8px #00000040;
  background-color: #fff;
  border-radius: 10px;
  transition: visibility 0ms ease-in;
}

.warantyPopupInner__head {
  background-color: #f9f9f9;
  position: relative;
}

.warantyPopupInner__heading {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #4f4f4f;
  text-transform: capitalize;
  text-align: center;
  padding: 16px;
}

.warantyPopupInner__cross {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 10.5px;
  height: 10.5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.warantyPopupInner__content {
  padding: 16px 16px 17px;
}

.warantyPopupInner__text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #4f4f4f;
  margin-bottom: 16px;
}

.warrantyPopup-transition-enter {
  opacity: 0;
}

.warrantyPopup-transition-active,
.warrantyPopup-transition-exit {
  opacity: 1;
}

.warrantyPopup-transition-exit-active {
  opacity: 0;
}

.policy__checkbox {
  width: 100%;
  display: grid;
  grid-template-columns: min-content;
  grid-template-rows: min-content min-content;
  column-gap: 8px;
  align-items: center;
  margin: 4px 0 16px;
}

@media screen and (max-width: 767px) {
  .policy__checkbox {
    margin: 4px 0;
  }
}

.policy__checkbox span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #4f4f4f;
}

.policy__input {
  visibility: hidden;
  grid-row: 1/2;
}

.policy__label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #4f4f4f;
  grid-column: 2/3;
  grid-row: 1/2;
  cursor: pointer;
}

.policy__label > a {
  text-decoration: none;
  color: #2f80ed;
}

.policy__link:link,
.policy__link:visited,
.policy__link:active,
.policy__link:hover {
  color: #2f80ed;
  text-decoration: none;
}

.policy__input:checked ~ .policy__check {
  background-color: #bdbdbd;
}

.policy__input:checked ~ .policy__check > span {
  display: inline-block;
}

.policy__check {
  cursor: pointer;
  grid-row: 1/2;
  align-self: flex-start;
  grid-column: 1/2;
  position: relative;
  z-index: 2;
  display: grid;
  justify-content: center;
  align-content: center;
  width: 16px;
  height: 16px;
  border: 1px solid #bdbdbd;
}

.policy__check span {
  display: none;
  width: 10.31px;
  height: 9.45px;
  background-color: #bdbdbd;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.bars__container {
  display: grid;
  gap: 8px;
  padding-bottom: 32px;
}

.bars__container--mobile {
  display: none !important;
}

@media screen and (max-width: 1032px) {
  .bars__container--mobile {
    display: grid !important;
    margin-bottom: 4px !important;
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .bars__container {
    padding: 0;
    margin: 16px;
  }
}

.bars__bar_1 {
  border-radius: 4px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  background: #fff5f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  white-space: nowrap;
}

.bars__bar_1__colorBar {
  border-radius: 100px;
  border: 1px solid #e0e0e0;
  background: #fff;
  display: flex;
  width: 100%;
  height: 12px;
}

.bars__bar_1__colorBar_colored {
  transition: all 2s ease-in-out;
  background: linear-gradient(90deg, #cbfe00 0%, #fee500 48.44%, #ff2b2b 100%);
  border-radius: 100px 0 0 100px;
}

.bars__bar_1__colorBar_colored.disabled {
  width: 0px !important;
}

.bars__bar_1_leftText {
  color: var(--CC-Shopify-Dark-gray, #333);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  margin-right: 16px;
  font-weight: 700;
  line-height: 20px;
}

.bars__bar_1_leftText_red {
  color: var(--CC-Shopify-Dark-gray, #ff2d2b);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.bars__bar_2 {
  border-radius: 4px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  background: #f0f5ff;
  display: flex;
  padding: 12px 16px;
  align-items: center;
  align-self: stretch;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.bars__bar_2 img,
.bars__bar_2 svg {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .bars__bar_2 {
    font-size: 12px;
  }
}

.bars__bar_3 {
  border-radius: 4px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  background: #fffef3;
  display: flex;
  padding: 12px 16px;
  align-items: center;
  align-self: stretch;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.bars__bar_3 img,
.bars__bar_3 svg {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .bars__bar_3 {
    font-size: 12px;
  }
}

.bars__bar_3_clockTime {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (max-width: 767px) {
  .bars__bar_3_clockTime {
    font-size: 12px;
  }
}

.onlyMobileBars {
  display: none !important;
}

@media screen and (max-width: 1032px) {
  .onlyMobileBars {
    display: flex !important;
  }
}

.top-2 {
  position: relative;
  top: 2px;
}

@keyframes render {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.screen-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 13;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  visibility: visible;
  animation: render 0.15s ease-in 0ms;
}

.screen-overlay--blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.screen-overlay--loadingPaypal {
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.screen-overlay--loadingCreditCard {
  background: transparent;
  z-index: 999;
}

.spin {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
}

.spin div {
  width: 100%;
  height: 100%;
  border: 7px solid rgba(255, 255, 255, 0.5);
  border-bottom: 7px solid #fff;
  border-radius: 50%;
  position: relative;
  transform: rotate(130deg);
  animation: 1s linear infinite spin;
  opacity: 1;
}

.spin div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes spin {
  0% {
    transform: rotate(130deg);
  }

  to {
    transform: rotate(490deg);
  }
}

.summary {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
}

.summary__innerWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}

.summary__savings {
  border-top: 1px solid #e8e8e8;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 16px;
  background-color: #edf4fe;
}

.summary__heading--savings {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary__arrow {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease-in;
}

.summary__arrow--active {
  transform: rotate(180deg);
}

.summary__total {
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #333;
  opacity: 1;
  transition: opacity 0.3s ease-in;
}

.summary__total--active {
  opacity: 0;
}

.summary__data {
  padding: 0 16px;
  overflow: hidden;
  transition:
    max-height 0.3s cubic-bezier(0.26, 0, 0.24, 0.99),
    padding 0.3s cubic-bezier(0.26, 0, 0.24, 0.99);
}

.summary__dataWrapper {
  height: 100%;
}

.summary__oldPrice {
  color: #f45836;
  margin-right: 12px;
}

.summary__name,
.summary__shipping,
.summary__warranty,
.summary__totalBottom {
  display: grid;
  grid-template-columns: 1fr max-content;
  align-items: center;
}

.summary__name span:last-of-type,
.summary__shipping span:last-of-type,
.summary__warranty span:last-of-type,
.summary__totalBottom span:last-of-type {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: inherit;
}

.summary__name span:first-of-type {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: inherit;
}

.summary__shipping,
.summary__warranty,
.summary__totalBottom {
  padding-top: 12px;
}

.summary__shipping span:first-of-type,
.summary__warranty span:first-of-type,
.summary__totalBottom span:first-of-type {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: inherit;
}

.summary__shipping,
.summary__warranty {
  padding-bottom: 12px;
}

.summary__totalBottom {
  border-top: 1px solid #e0e0e0;
  font-weight: 700;
}

.summary__totalBottom span:first-of-type {
  font-weight: 700;
}

.orderTotals {
  display: flex;
  flex-direction: column;
}

.orderTotals__container {
  margin: 16px 0;
}

.orderTotals__item {
  display: flex;
  justify-content: space-between;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.orderTotals__item__shippingLabel {
  display: flex;
  align-items: center;
}

.orderTotals__item__shippingLabel > a {
  z-index: 3;
  pointer-events: auto;
}

.orderTotals__item__shippingLabel > a > svg {
  display: inline-block;
  position: relative;
  top: 3px;
  pointer-events: none;
}

.savings__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--Top5-Borders, #e0e0e0);
  background: var(--CC-Shopify-BG---light-gray, #fafafa);
  margin-bottom: 16px;
}

.savings__container div {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.savings__container div:nth-child(2) {
  font-weight: 700;
}

.savings__label {
  display: flex;
  align-items: center;
}

.savings__label svg {
  margin-right: 4px;
}

.total {
  display: flex;
  justify-content: space-between;
}

.total div {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.contact {
  padding: 20px 0;
  background-color: #fff;
  display: grid;
  grid-auto-rows: min-content;
}

.contact__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 12px;
  margin-top: 16px;
}

.contact__email:focus,
.contact__phone:focus {
  border: 1px solid #3362ab;
}

.contact__emailBox {
  grid-row: 1/2;
  grid-column: 1/3;
}

.contact__phone {
  grid-row: 2/3;
  grid-column: 1/3;
  display: grid;
  justify-content: center;
  align-content: center;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.contact__emailInput {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
}

.styledInput {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  transition: padding 0.3s;
  padding-top: 16px;
  padding-left: 12px;
  padding-right: 12px;
  color: #828282;
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
}

.submit {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(min-content, max-content) max-content;
  justify-content: center;
  align-items: center;
  column-gap: 16px;
  background-color: #0ed13d;
  border: none;
  border-bottom: 2px solid #0b9e2e;
  border-radius: 10px;
  padding: 20px 8px;
}

.submit__text {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  font-family: Poppins, sans-serif;
  text-transform: initial;
  color: #fff;
  text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2509803922);
}

.submit__icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 19px;
  height: 16px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.submit__icon--wrapper {
  position: relative;
  top: -1px;
  height: 16px;
  background-repeat: no-repeat;
  width: 19px;
  margin-left: 16px;
  background-size: 100%;
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2509803922));
}

.paymentIcons {
  margin-top: 16px;
  margin-bottom: 16px;
  display: grid;
  grid-auto-columns: repeat(2, min-content);
  justify-items: center;
  row-gap: 16px;
}

@media screen and (max-width: 767px) {
  .paymentIcons {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.paymentIcons__text {
  display: flex;
  align-items: center;
}

.paymentIcons__text span:first-of-type {
  margin-right: 8px;
  margin-top: -2px;
  width: 14px;
  height: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  align-self: flex-start;
}

.paymentIcons__text span:last-of-type {
  font-family: Roboto;
  font-size: 14px;
  font-weight: 400;
  color: #828282;
  text-align: Center;
  vertical-align: middle;
}

.paymentIcons__icons {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .paymentIcons__icons {
    width: 284px;
    height: auto;
  }
}

.formError,
.policyError {
  margin-left: 1px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #ea2b00;
}

.error-back {
  padding: 8px;
  background: #ea2b00;
  text-align: center;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: #fff;
  margin-bottom: 16px;
}

.phone-dialCode {
  position: relative;
  bottom: 4px;
  left: 28px;
}

.accordionContainer {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  position: relative;
  width: 100%;
}

.accordionContainer__button {
  width: 20px;
  height: 20px;
  margin-right: 16px;
  border-radius: 50%;
  border: 2px solid #3362ab;
  background-color: transparent;
  position: relative;
  transition:
    border-color 0.15s ease-in,
    background-color 0.15s ease-in;
}

.accordionContainer__button:before {
  content: "";
  position: absolute;
  transition:
    height 0.15s ease-in,
    width 0.15s ease-in;
  transform-origin: center;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  background-color: #3362ab;
}

.accordionContainer__heading {
  display: flex;
  padding: 16px;
  background-color: #f0f5ff;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease-in;
}

.accordionContainer__heading--unchecked {
  background-color: transparent;
  border-bottom: 1px solid #e0e0e0;
}

.accordionContainer__heading--unchecked > .accordionContainer__button:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 0px;
  width: 0px;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
}

.accordionContainer__wrapper {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.accordionContainer__wrapper[aria-expanded="true"] {
  max-height: 400px;
  transition: max-height 0.6s ease-out 0.3s;
}

.accordionContainer__content {
  padding: 16px 16px 4px;
  background: #fafafa;
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
}

.accordionContainer__content--paypal {
  padding: 24px 16px;
}

.dividedForm__countryAddressContainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .dividedForm__countryAddressContainer {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0px;
  }
}

.dividedForm__headings {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: var(--CC-Shopify-Dark-gray, #333);
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .dividedForm__headings {
    padding-bottom: 16px;
  }
}

.dividedForm__headings.payment {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: var(--CC-Shopify-Dark-gray, #333);
  padding-bottom: 8px;
}

.dividedForm__headings.payment__subText {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: var(--CC-Shopify-Ligth-gray, #828282);
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .dividedForm__headings.payment__subText {
    padding-bottom: 12px;
  }
}

.dividedForm__contactFields {
  display: grid;
  gap: 12px;
}

.dividedForm__contactFields__nameFields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dividedForm__contactFields__nameFields .input-container {
  width: 100% !important;
}

.dividedForm__contactFields .input-container {
  margin: 0 !important;
}

.dividedForm__deliveryFields {
  display: grid;
  gap: 12px;
}

.dividedForm__deliveryFields .input-container {
  margin: 0 !important;
}

.dividedForm__deliveryFields__triple {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .dividedForm__deliveryFields__triple {
    grid-template-columns: 1fr 1fr;
  }

  .dividedForm__deliveryFields__triple .input-container:first-child {
    grid-column: 1/3;
  }
}

@media screen and (max-width: 0) {
  .dividedForm__deliveryFields__triple {
    grid-template-columns: 1fr 1fr;
  }

  .dividedForm__deliveryFields__triple .input-container:first-child {
    grid-column: 1/3;
  }
}

@media screen and (max-width: 767px) {
  .dividedForm__deliveryFields__triple {
    grid-template-columns: 1fr 1fr;
    grid-gap: 12px;
  }

  .dividedForm__deliveryFields__triple .input-container:first-child {
    grid-column: 1/3;
  }

  .dividedForm__deliveryFields__triple .input-container:nth-child(2) {
    grid-column: 1/2;
  }

  .dividedForm__deliveryFields__triple .input-container:nth-child(3) {
    grid-column: 2/3;
  }
}

.form_fieldsgroup--withPaddings {
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .form_fieldsgroup--withPaddings {
    padding-bottom: 16px;
  }
}

.topLine {
  max-width: 1072px;
  padding: 16px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .topLine {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
  }
}

.topLine__logo {
  height: 32px;
}

@media screen and (max-width: 767px) {
  .topLine__logo {
    height: 24px;
  }
}

.topLine__header {
  border-bottom: 1px solid #e0e0e0;
}

.topLine__shoppingBag {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 767px) {
  .topLine__shoppingBag {
    width: 20px;
    height: 20px;
  }
}

.topLine__itemsLeft {
  display: grid;
  grid-template-rows: repeat(2, min-content);
}

@media screen and (max-width: 767px) {
  .topLine__itemsLeft {
    text-align: center;
  }
}

.topLine__itemsLeft > span:first-of-type {
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif, sans-serif;
  color: #333;
}

.topLine__itemsLeft > span:first-of-type span {
  color: #ff2d2b;
}

.topLine__ribbon {
  border-radius: 25px;
  height: 12px;
  box-shadow: 0 0 5px #00000026 inset;
  background-image: linear-gradient(
    90deg,
    #cbfe00 0%,
    #fee500 48.44%,
    #ff2b2b 73%,
    #fff 73%
  );
}

.banner {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .banner {
    display: none;
  }
}

@media screen and (max-width: 0) {
  .banner {
    display: none;
  }
}

.banner__content {
  position: relative;
  z-index: 10;
  max-height: 240px;
  max-width: 1000px;
  padding: 40px 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.banner__header {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  font-family: Poppins, sans-serif, sans-serif;
  color: #fff;
  max-width: 655px;
  width: 100%;
}

.overlay {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #000c;
}

@media screen and (max-width: 767px) {
  .grid-row-1 {
    grid-row: 1/2 !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .grid-row-1 {
    display: none;
  }
}

@media screen and (max-width: 0) {
  .grid-row-1 {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .grid-row-2 {
    grid-row: 2/3 !important;
  }
}

@media screen and (max-width: 767px) {
  .grid-row-2 {
    grid-row: 1/9;
    grid-column: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .grid-row-3 {
    grid-row: 3/4 !important;
  }
}

@media screen and (max-width: 767px) {
  .grid-row-4 {
    grid-row: 4/5 !important;
  }
}

@media screen and (max-width: 767px) {
  .grid-row-5 {
    grid-row: 5/6 !important;
  }
}

@media screen and (max-width: 767px) {
  .grid-row-6 {
    grid-row: 6/7 !important;
  }
}

.innerSliderWrapper {
  width: 100%;
}

.carousel {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
}

.carousel__slider {
  display: flex;
  flex-shrink: 0;
  transition: transform 1s;
}

.carousel__slide {
  display: grid;
  grid-template-rows: repeat(4, min-content);
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 16px;
}

.carousel__slideProfile {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-template-columns: max-content 1fr max-content;
  border-bottom: 1px solid #f2f2f2;
  column-gap: 8px;
  padding-bottom: 8px;
}

.carousel__slideProfileImg {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  grid-column: 1/2;
  grid-row: 1/3;
}

.carousel__verifiedName {
  display: flex;
  align-items: center;
  grid-column: 2/3;
  grid-row: 1/2;
}

.carousel__verifiedName span:first-of-type {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
  font-family: Roboto, sans-serif;
  color: #333;
  margin-right: 8px;
}

.carousel__verifiedName span:nth-of-type(2) {
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  margin-right: 4px;
  width: 12px;
  height: 12px;
}

.carousel__verifiedName span:last-of-type {
  font-size: 12px;
  line-height: 24px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: #00b890;
  text-transform: capitalize;
}

.carousel__countryBox {
  display: flex;
  align-items: center;
  grid-row: 2/3;
  grid-column: 2/3;
}

.carousel__countryBox img {
  margin-right: 4px;
}

.carousel__countryImg {
  width: 16px;
  height: 12px;
}

.carousel__countryName {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: #828282;
}

.carousel__dateRatingBox {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-row: 1/3;
  grid-column: 3/4;
}

@media screen and (max-width: 767px) {
  .carousel__dateRatingBox {
    position: relative;
    top: 4px;
  }
}

.carousel__date {
  font-size: 12px;
  line-height: 24px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #828282;
}

.carousel__slideHeading {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #333;
  margin-top: 8px;
}

.carousel__slideText {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #4f4f4f;
}

.swiper {
  --add-bottom: 28px;
  padding-bottom: var(--add-bottom);
  --swiper-pagination-bottom: -3px;
}

.swiper-slide {
  height: auto;
}

.swiper-slide [class^="swiper-button-"] {
  top: calc(50% - var(--add-bottom) / 2);
}

.swiper-pagination-bullets {
  background: transparent;
}

.swiper-pagination-bullet {
  background: #e0e0e0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0ed13d;
}

.paymentMethodClassic__paypalLink,
.paymentMethodClassic__paypalLink:visited {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffc438;
  border-bottom: 2px solid #dba72d;
  padding: 16px 0;
  width: 100%;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 20px;
}

.paymentMethodClassic__paypalLink span:first-of-type,
.paymentMethodClassic__paypalLink:visited span:first-of-type {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: #333;
  margin-right: 16px;
}

.paymentMethodClassic__seperator {
  display: grid;
  grid-template-columns: minmax(50px, 1fr) minmax(min-content, max-content) minmax(
      50px,
      1fr
    );
  align-items: center;
  column-gap: 4px;
  margin-top: 16px;
}

.paymentMethodClassic__seperatorLine {
  display: inline-block;
  height: 1px;
  width: 100%;
  background-color: #e0e0e0;
}

.paymentMethodClassic__seperatorText {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #4f4f4f;
}

.paymentMethodClassic__cardNumber,
.paymentMethodClassic__cardExpiration,
.paymentMethodClassic__cardSecurity {
  border: 1px solid #e0e0e0;
  background-color: #fff;
  transition: padding 0.2s;
  height: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.paymentMethodClassic__cardNumberBox {
  grid-row: 2/3;
  grid-column: 1/3;
  margin: 0 16px;
}

.paymentMethodClassic__cardExpirationBox {
  grid-row: 3/4;
  grid-column: 1/2;
  margin-left: 16px;
}

.paymentMethodClassic__cardSecurityBox {
  grid-row: 3/4;
  grid-column: 2/3;
  margin-right: 16px;
}

.paymentMethodClassic__img {
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
}

.radioContainer {
  margin-top: 20px;
}

.cardRadio {
  display: grid;
  grid-template-rows: repeat(2, min-content);
}

.cardRadio__input {
  display: none;
}

.cardRadio__label {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 16px;
  border: 1px solid #e0e0e0;
}

.cardRadio__input:checked ~ .cardRadio__label {
  background-color: #f0f5ff;
}

.cardRadio__radioFullOuter {
  width: 20px;
  height: 20px;
  border: 2px solid #3362ab;
  border-radius: 50%;
  position: relative;
  display: none;
  margin-right: 16px;
}

.cardRadio__input:checked + .cardRadio__label .cardRadio__radioFullOuter {
  display: inline-block;
}

.cardRadio__radioFullInner {
  width: 11px;
  height: 11px;
  background-color: #3362ab;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cardRadio__radioEmpty {
  border: 2px solid #bdbdbd;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 16px;
}

.cardRadio__input:checked + .cardRadio__label .cardRadio__radioEmpty {
  display: none;
}

.cardRadio__image {
  margin-left: auto;
}

.cardRadio__image--first {
  width: auto;
  height: 32px;
}

@media screen and (min-width: 768px) and (max-width: 1032px) {
  .cardRadio__image--first {
    height: 16px;
  }
}

@media screen and (max-width: 340px) {
  .cardRadio__image {
    margin-left: unset;
  }
}

.cardRadio__labelText {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #333;
  text-transform: capitalize;
}

@media screen and (max-width: 767px) {
  .cardRadio__labelText {
    font-size: 14px;
  }
}

@media screen and (max-width: 340px) {
  .cardRadio__labelText {
    margin-right: 8px;
  }
}

.cardRadio__content {
  display: none;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, min-content);
  border: 1px solid #e0e0e0;
  border-top: none;
  padding: 16px;
  background-color: #fafafa;
}

.cardRadio__input:checked ~ .cardRadio__content {
  display: flex;
  flex-wrap: Wrap;
  padding-top: 16px;
}

.cardRadio__input:checked ~ .cardRadio__content > .input-container {
  margin-bottom: 12px;
}

.cardRadio__cardNumber,
.cardRadio__cardExpiration,
.cardRadio__cardSecurity {
  border: 1px solid #e0e0e0;
  background-color: #fff;
  transition: padding 0.2s;
  height: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.cardRadio__cardNumberBox {
  grid-row: 2/3;
  grid-column: 1/3;
  margin: 0 16px;
}

.cardRadio__cardExpirationBox {
  grid-row: 3/4;
  grid-column: 1/2;
  margin-left: 16px;
}

.cardRadio__cardSecurityBox {
  grid-row: 3/4;
  grid-column: 2/3;
  margin-right: 16px;
}

.paypalRadio {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  column-gap: 16px;
}

.paypalRadio__input {
  display: none;
}

.paypalRadio__label {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-top: 0;
}

.paypalRadio__input:checked ~ .paypalRadio__label {
  background-color: #f0f5ff;
}

.paypalRadio__radioFullOuter {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 20px;
  height: 20px;
  border: 2px solid #3362ab;
  border-radius: 50%;
  position: relative;
  display: none;
}

.paypalRadio__input:checked + .paypalRadio__label .paypalRadio__radioFullOuter {
  display: inline-block;
}

.paypalRadio__radioFullInner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background-color: #3362ab;
  border-radius: 50%;
}

.paypalRadio__radioEmpty {
  grid-column: 1/2;
  grid-row: 1/2;
  border: 2px solid #bdbdbd;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.paypalRadio__input:checked + .paypalRadio__label .paypalRadio__radioEmpty {
  display: none;
}

.paypalRadio__labelImage {
  grid-column: 2/3;
  grid-row: 1/2;
}

.paypalRadio__content {
  display: none;
  justify-items: center;
  row-gap: 16px;
  background-color: #fafafa;
  border: 1px solid #e0e0e0;
  border-top: none;
  padding: 24px;
}

.paypalRadio__input:checked ~ .paypalRadio__content {
  display: grid;
}

.paypalRadio__image {
  width: 64px;
  height: 58.67px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .paypalRadio__image {
    width: 48px;
    height: 48px;
  }
}

.paypalRadio__text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  text-align: center;
}

.cardInformation {
  margin-top: 16px;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cardInformation__wrapper {
  display: flex;
  flex-wrap: Wrap;
  width: 100%;
  padding: 12px 12px 0;
}

.cardInformation__heading {
  font-size: 15px;
  line-height: 24px;
  font-family: Roboto, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  color: #333;
  grid-row: 1/2;
  grid-column: 1/3;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 16px;
}

.accordionContainer {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 100%;
}

.accordionContainer__shippingMethodContainer {
  border-radius: 4px;
  border: 1px solid var(--CC-Shopify-Border-active, #3362ab);
  background: var(--CC-Shopify-BG---active, #f0f5ff);
  width: 100%;
}

.accordionContainer__shippingMethod {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.accordionContainer__shippingMethod__heading {
  display: flex;
  padding: 16px;
  align-items: center;
  width: 100%;
  border-radius: 4px;
  transition:
    background-color 0.3s ease-in,
    border-bottom-left-radius 0.15s ease-in,
    border-bottom-right-radius 0.15s ease-in;
}

.accordionContainer__shippingMethod__heading:first-of-type {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.accordionContainer__shippingMethod__heading:nth-of-type(2) {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.accordionContainer__shippingMethod__heading:nth-of-type(2) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordionContainer__shippingMethod__heading:nth-of-type(2)
  > .accordionContainer__button {
  padding-right: 16px;
}

.accordionContainer__shippingMethod__label {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.accordionContainer__shippingMethod__price {
  color: var(--Gray-1, #333);
  text-align: right;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.accordionContainer__paypal {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.accordionContainer__paypal span {
  color: var(--Gray-1, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.accordionContainer__button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #3362ab;
  background-color: transparent;
  position: relative;
  padding-right: 16px;
  transition:
    border-color 0.15s ease-in,
    background-color 0.15s ease-in;
}

.accordionContainer__button:before {
  content: "";
  position: absolute;
  transform: scale(1);
  transition:
    transform 0.15s ease-in,
    opacity 0.15s ease-in;
  transform-origin: center;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  background-color: #3362ab;
  opacity: 1;
}

.accordionContainer__heading {
  display: flex;
  padding: 16px;
  background-color: #f0f5ff;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  transition:
    background-color 0.3s ease-in,
    border-bottom-left-radius 0.15s ease-in,
    border-bottom-right-radius 0.15s ease-in;
}

.accordionContainer__heading:first-of-type {
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}

.accordionContainer__heading:nth-of-type(2) {
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.accordionContainer__heading:nth-of-type(2) {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordionContainer__heading:nth-of-type(2) > .accordionContainer__button {
  padding-right: 16px;
}

.accordionContainer__heading--unchecked {
  background-color: transparent;
  border-bottom: 1px solid #e0e0e0;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.accordionContainer__heading--unchecked:nth-of-type(2) {
  transition:
    border-bottom-left-radius 0.15s ease-in 0.3s,
    border-bottom-right-radius 0.15s ease-in 0.3s;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .accordionContainer__heading--unchecked {
    background-color: #fff;
  }
}

.accordionContainer__heading--unchecked > .accordionContainer__button {
  border-color: #bdbdbd;
}

.accordionContainer__heading--unchecked > .accordionContainer__button:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  transform: scale(0);
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  opacity: 1;
}

.accordionContainer__image {
  width: 64px;
  height: 58.67px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .accordionContainer__image {
    width: 48px;
    height: 48px;
  }
}

.accordionContainer__wrapper {
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.26, 0, 0.24, 0.99);
}

.accordionContainer__wrapper[aria-expanded="true"] {
  transition: max-height 0.3s cubic-bezier(0.26, 0, 0.24, 0.99) 0.3s;
}

.accordionContainer__content {
  padding: 12px 12px 0;
  background: #fafafa;
  display: flex;
  flex-wrap: wrap;
}

.accordionContainer__content--paypal {
  border-top: 1px #e8e8e8;
  padding: 24px 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-bottom: 0px;
}

.helpdesk {
  position: fixed;
  bottom: 15px;
  right: 25px;
  border-radius: 26px;
  z-index: 999;
  letter-spacing: 0.6;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  padding: 12px;
  cursor: pointer;
  transition: bottom 0.3s ease-in-out;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  .helpdesk {
    padding: 0.92857rem 1.57143rem;
    bottom: 15px !important;
  }
}

.helpdesk span {
  text-transform: capitalize;
  display: none;
  text-decoration: none;
  font-family: Poppins, sans-serif;
}

@media screen and (min-width: 768px) {
  .helpdesk span {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .helpdesk svg {
    margin-right: 8px;
  }
}

.cardsContainer {
  display: flex;
  margin-left: auto;
  position: relative;
}

.cardsContainer__cardImage {
  display: inline;
  width: auto;
  height: 22px;
  margin-right: 4px;
}

.cardsContainer__cardImage--placeholder {
  height: 22px;
  width: 35px;
  background: #fafafa;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 12px;
  font-family: Roboto, sans-serif;
  margin-right: 0;
  font-weight: 400;
  z-index: 1;
}

@media (pointer: fine) {
  .cardsContainer__cardImage--placeholder:hover .tooltip {
    transition:
      transform 0.15s ease-in,
      opacity 0.15s ease-in;
    opacity: 1;
    transform: scale(1) perspective(1px);
    z-index: 3;
  }
}

.tooltip {
  opacity: 0;
  position: absolute;
  bottom: 30px;
  right: -17px;
  background: rgba(0, 0, 0, 0.9019607843);
  width: 172px;
  border-radius: 4px;
  transform: scale(0.9);
  transform-origin: 80% 150%;
  z-index: -1;
  transition:
    transform 0.15s ease-in,
    opacity 0.15s ease-in,
    z-index 0ms ease-in 0.15s;
}

.tooltip[visible="true"] {
  transition:
    transform 0.15s ease-in,
    opacity 0.15s ease-in;
  opacity: 1;
  transform: scale(1) perspective(1px);
  z-index: 3;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .tooltip {
    width: 174px;
  }
}

@media screen and (max-width: 0) {
  .tooltip {
    width: 174px;
  }
}

.tooltip__wrapper {
  height: 100%;
  padding: 11px 11px 6px;
  display: flex;
  flex-wrap: wrap;
}

.tooltip__wrapper > img {
  margin-bottom: 5px;
}

.tooltip__wrapper > img:nth-of-type(4n) {
  margin-right: 0;
}

.tooltip__wrapper > img:last-of-type {
  height: 21px;
  width: auto;
}

.tooltip:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 10px;
  transform: rotate(-45deg);
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.9019607843);
  right: 30px;
  bottom: -3px;
}

.testimonials__container {
  display: flex;
  flex-direction: column;
}

.testimonials__box {
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 6px;
  border: 1px solid #e3e3e3;
  background: #fff;
  margin-bottom: 12px;
}

.testimonials__box:last-child {
  margin-bottom: 0;
}

.testimonials__upperRow {
  display: flex;
  justify-content: space-between;
}

.testimonials__upperRow__inside {
  display: flex;
  align-items: center;
}

.testimonials__name {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.testimonials__stars {
  display: flex;
  margin-right: 8px;
  max-height: 16px;
}

.testimonials__buyerLabel {
  color: #00b890;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  margin-left: 8px;
}

.testimonials__title {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin: 8px 0;
}

.testimonials__text {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.testimonials__stars span:not(:last-of-type) {
  margin-right: 1px;
}

.upsells__modal {
  visibility: hidden;
}

.upsells__modal--active {
  visibility: visible;
}

.upsells-modal__wrapper {
  z-index: 30;
  opacity: 0;
  transition: opacity 0.1s ease-in;
}

.upsells-modal__wrapper--active {
  opacity: 1;
  visibility: visible;
}

.upsellPopup {
  background: var(--upsell-popup-bg-color);
  font-family: Roboto, sans-serif;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  max-width: 840px;
  width: calc(100% - 32px);
  padding: 32px;
  border-radius: 10px;
  display: grid;
  grid-auto-rows: auto;
  row-gap: 16px;
}

@media screen and (max-width: 767px) {
  .upsellPopup {
    row-gap: 8px;
    padding: 16px 15px;
  }
}

.upsellPopup__alert {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--items-left-bg-color, #fdcf00);
  color: var(--items-left-text-color, #333333);
  border-radius: 9px;
  width: 100%;
  padding: 8px;
}

@media screen and (max-width: 767px) {
  .upsellPopup__alert {
    padding: 4px 8px;
  }
}

.upsellPopup__alertIcon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-right: 8px;
  background-color: var(--items-left-text-color, #333333);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.upsellPopup__alertMessage {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--items-left-text-color, #333333);
  position: relative;
  top: 1px;
}

@media screen and (max-width: 767px) {
  .upsellPopup__alertMessage {
    font-size: 14px;
    line-height: 16px;
  }
}

.upsellPopup__alertMessage span {
  font-weight: 600;
}

.upsellPopup__heading {
  color: var(--text-primary-color, #333333);
  font-size: 32px;
  font-weight: 900;
  line-height: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .upsellPopup__heading {
    font-size: 24px;
    line-height: 32px;
  }
}

.upsellPopup__subHeading {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-secondary-color, #4f4f4f);
  margin-top: 8px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .upsellPopup__subHeading {
    font-size: 12px;
    line-height: 16px;
  }
}

.upsellPopup__image {
  grid-column: 1/2;
  justify-self: center;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .upsellPopup__image--desktop {
    display: none;
  }
}

.upsellPopup__image--mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .upsellPopup__image--mobile {
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .upsellPopup__image {
    grid-column: unset;
    margin-bottom: 12px;
  }
}

.upsellPopup__content {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
  grid-auto-rows: max-content;
  column-gap: 40px;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .upsellPopup__content {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
}

.productListPopup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 8px;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 8px;
}

.productListPopup--single {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 8px;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 16px;
}

.productListPopup--SDCard {
  grid-template-columns: 1fr;
}

.productListPopup__item {
  display: grid;
  grid-template-rows: repeat(2, min-content);
  grid-template-columns: max-content 1fr;
  align-items: center;
  background-color: var(--product-card-bg-color, #ffffff);
  border: 1px solid var(--product-card-border-color, #ef243d);
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .productListPopup__item {
    outline: 1px solid var(--modal-product-card-border-color);
    outline-offset: -1px;
  }
}

.productListPopup__item--SDCard {
  grid-template-columns: 1fr;
}

.productListPopup__item--enabledBorder {
  outline: 3px solid var(--product-card-border-color, #ef243d);
  outline-offset: -3px;
}

.productListPopup__item--enabledBorder:before {
  border-color: var(--product-card-border-color, #ef243d);
}

.productListPopup__popular {
  grid-row: 1/2;
  grid-column: 1/3;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  text-transform: uppercase;
  text-align: center;
  padding: 8px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  font-family: Roboto, sans-serif;
  color: var(--product-card-label-text-color, #ffffff);
}

@media screen and (max-width: 767px) {
  .productListPopup__popular {
    font-size: 12px;
  }
}

.productListPopup__popular--enabled {
  display: inline-block;
  background-color: var(--product-card-border-color, #ef243d);
}

.productListPopup__popular--inactive {
  background-color: var(--product-card-border-color, #ef243d);
}

.productListPopup__content {
  grid-row: 2/3;
  grid-column: 2/3;
  justify-self: center;
  display: grid;
  justify-items: center;
}

.productListPopup__number {
  font-size: 32px;
  line-height: 40px;
  font-weight: 900;
  font-family: Roboto, sans-serif;
  color: var(--modal-product-card-primary-color);
}

@media screen and (max-width: 767px) {
  .productListPopup__number {
    font-size: 24px;
    line-height: 32px;
  }
}

.productListPopup__name {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: var(--modal-product-card-primary-color);
  margin-bottom: 4px;
}

.productListPopup__price {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, max-content);
  column-gap: 4px;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .productListPopup__price--popup {
    margin-bottom: 0;
  }
}

.productListPopup__price span:first-of-type {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
  font-family: Roboto, sans-serif;
  color: var(--modal-product-card-price-color);
}

@media screen and (max-width: 767px) {
  .productListPopup__price span:first-of-type {
    font-size: 18px;
  }
}

.productListPopup__price span:nth-of-type(2) {
  width: 1px;
  height: 16px;
  background-color: var(--modal-product-card-secondary-color);
}

.productListPopup__price span:last-of-type {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: var(--modal-product-card-secondary-color);
}

.productListPopup__total {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: var(--modal-product-card-secondary-color);
}

@media screen and (max-width: 767px) {
  .productListPopup__total {
    font-size: 12px;
  }
}

.productListPopup__contentDiff {
  display: grid;
  grid-template-rows: repeat(3, min-content);
  justify-content: center;
  justify-items: center;
  margin: 16px 8px;
}

.productListPopup__priceDiff {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  align-items: center;
  column-gap: 8px;
  margin-bottom: 4px;
}

.productListPopup__priceDiff > span:first-of-type {
  font-size: 32px;
  line-height: 40px;
  font-weight: 900;
  font-family: Roboto, sans-serif;
  color: var(--price-color, #0d40ff);
}

@media screen and (max-width: 767px) {
  .productListPopup__priceDiff > span:first-of-type {
    font-size: 24px;
    line-height: 32px;
  }
}

.productListPopup__priceDiff > span:nth-of-type(2) {
  color: var(--text-primary-color, #333333);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
}

@media screen and (max-width: 767px) {
  .productListPopup__priceDiff > span:nth-of-type(2) {
    font-size: 14px;
    line-height: 20px;
  }
}

.productListPopup__priceDiff > span:nth-of-type(3) {
  width: 1px;
  height: 30px;
  background-color: var(--text-dimmed-color, #bdbdbd);
}

@media screen and (max-width: 767px) {
  .productListPopup__priceDiff > span:nth-of-type(3) {
    height: 15px;
  }
}

.productListPopup__priceDiff > span:last-of-type {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: var(--text-dimmed-color, #bdbdbd);
}

@media screen and (max-width: 767px) {
  .productListPopup__priceDiff > span:last-of-type {
    font-size: 12px;
    line-height: 16px;
  }
}

.productListPopup__messageDiff {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  margin-bottom: 8px;
  text-align: center;
}

.productListPopup__totalDiff {
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: var(--text-dimmed-color, #bdbdbd);
}

.cta-decline {
  display: block;
  margin: 8px auto 0;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  text-decoration: underline;
  text-align: center;
  text-decoration-color: var(--no-thanks-link-color, #828282);
  color: var(--no-thanks-link-color, #828282);
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .cta-decline {
    font-size: 10px;
  }
}

@media screen and (max-width: 0) {
  .cta-decline {
    font-size: 10px;
  }
}

.phone-select {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font-size: 1.15rem;
  padding: 0.675em 6em 0.675em 1em;
  background-color: #fff;
  border: 1px solid #caced1;
  border-radius: 0.25rem;
  color: #000;
  cursor: pointer;
}

.withReach {
  border-radius: 4px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  background-color: #fff;
}

.withReach--global {
  background-color: transparent;
  margin-bottom: 12px;
}

.withReach--accordion,
.withReach--classic {
  margin-top: 16px;
}

.withReach__wrapper {
  padding: 12px 16px;
  display: flex;
  align-items: center;
}

.withReach__seperator {
  width: 1px;
  align-self: stretch;
  background-color: #e0e0e0;
  margin: 0 16px;
}

.withReach__icon {
  width: 36px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .withReach__icon {
    width: 30px;
  }
}

.withReach__text {
  color: var(--CC-Shopify-Ligth-gray, #828282);
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

@media screen and (max-width: 1032px) {
  .withReach__text {
    font-size: 11px;
  }
}

.withReach__text > a {
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s ease-in;
  color: #828282;
}

@media screen and (pointer: fine) {
  .withReach__text > a:hover {
    color: #333;
  }
}

.with-reach-container {
  margin-top: 16px;
}

.reach--logo {
  display: none;
}

.reach--inline-link {
  color: #828282;
  transition: color 0.3s ease-in-out;
}

@media (screen: fine) {
  .reach--inline-link {
    color: #333;
  }
}

.variants-container {
  grid-column: 1/6;
}

@media screen and (max-width: 767px) {
  .variants-container {
    grid-column: 1/4;
  }
}

.variants-container--show {
  overflow: visible;
  opacity: 1;
  transition:
    max-height 0.15s cubic-bezier(0.26, 0, 0.24, 0.99) 0ms,
    opacity 0.15s ease-in 0.15s;
}

.variants-container--hide {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.15s cubic-bezier(0.26, 0, 0.24, 0.99) 0ms,
    overflow 0ms ease-in 0ms;
}

.variants-container--radio {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .variants-container--radio {
    margin-bottom: 16px;
  }
}

@media screen and (min-width: 1032px) {
  .variants-container--radio {
    margin-bottom: 16px;
  }
}

.variants-container--separate-picker {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .variants-container--separate-picker .variants-sizeChart {
    margin-bottom: 16px;
  }
}

.variant-container {
  font-family: Roboto, sans-serif;
  padding-top: 16px;
  width: 100%;
}

.variant-container--radio {
  display: flex;
  flex-wrap: Wrap;
  margin-bottom: 8px;
}

.variant-container--radio:nth-child(2) {
  margin-bottom: 0;
}

.variant-container__wrapper {
  padding-top: 16px;
}

.variant-container__title {
  display: flex;
  align-items: center;
}

.variant-container__form {
  display: flex;
  flex-wrap: Wrap;
  padding: 0 1px 1px;
}

.variant-seperator {
  width: 100%;
  height: 1px;
  background: var(--card-border);
}

.variant-text--heading {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

.variant-text--placeholder {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-transform: capitalize;
}

.variant-select {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  height: 100%;
  background: #fff;
  transition: box-shadow 0.15s ease-in-out;
  margin-top: 8px;
}

.variant-select--1 {
  width: 100%;
}

.variant-select--2 {
  width: calc(50% - 4px);
}

.variant-select--2:first-of-type {
  margin-right: 8px;
}

.variant-select--3 {
  width: calc(33.33% - 6px);
}

.variant-select--3:not(:last-of-type) {
  margin-right: 8px;
}

.variant-select--4 {
  width: calc(25% - 6px);
}

.variant-select--4:not(:nth-of-type(4)) {
  margin-right: 8px;
}

@media screen and (max-width: 1032px) {
  .variant-select--4:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--4:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--4:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--4:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--5 {
  width: calc(25% - 6px);
}

.variant-select--5:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--5:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--5:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--5:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--5:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--6 {
  width: calc(25% - 6px);
}

.variant-select--6:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--6:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--6:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--6:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--6:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--7 {
  width: calc(25% - 6px);
}

.variant-select--7:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--7:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--7:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--7:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--7:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--8 {
  width: calc(25% - 6px);
}

.variant-select--8:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--8:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--8:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--8:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--8:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--9 {
  width: calc(25% - 6px);
}

.variant-select--9:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--9:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--9:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--9:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--9:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--10 {
  width: calc(25% - 6px);
}

.variant-select--10:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--10:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--10:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--10:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--10:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--11 {
  width: calc(25% - 6px);
}

.variant-select--11:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--11:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--11:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--11:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--11:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--12 {
  width: calc(25% - 6px);
}

.variant-select--12:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--12:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--12:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--12:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--12:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--13 {
  width: calc(25% - 6px);
}

.variant-select--13:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--13:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--13:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--13:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--13:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--14 {
  width: calc(25% - 6px);
}

.variant-select--14:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--14:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--14:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--14:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--14:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--15 {
  width: calc(25% - 6px);
}

.variant-select--15:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--15:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--15:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--15:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--15:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--16 {
  width: calc(25% - 6px);
}

.variant-select--16:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--16:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--16:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--16:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--16:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--17 {
  width: calc(25% - 6px);
}

.variant-select--17:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--17:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--17:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--17:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--17:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--18 {
  width: calc(25% - 6px);
}

.variant-select--18:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--18:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--18:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--18:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--18:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--19 {
  width: calc(25% - 6px);
}

.variant-select--19:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--19:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--19:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--19:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--19:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--20 {
  width: calc(25% - 6px);
}

.variant-select--20:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .variant-select--20:nth-of-type(4n)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }

  .variant-select--20:nth-of-type(4n + 2)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--20:nth-of-type(4n + 1)
    > .custom-select--hidden
    > .custom-select__wrapper {
    left: 0;
    width: calc(200% + 8px);
  }

  .variant-select--20:nth-of-type(4n + 3)
    > .custom-select--hidden
    > .custom-select__wrapper {
    right: 0;
    width: calc(200% + 8px);
  }
}

.variant-select--passive {
  box-shadow: #e0e0e0 0 0 0 1px;
}

.variant-select--active {
  box-shadow: #3362ab 0 0 0 2px;
}

.variant-select--label {
  color: var(--CC-Shopify-Ligth-gray, #828282);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 0;
}

.variant-select--chevron {
  transition: 0.3s ease-in-out;
  width: 10px;
}

.variant-select--chevron[data-expanded="true"] {
  transform: rotate(180deg);
}

.variants-sizeChart {
  margin-left: 16px;
}

.variants-sizeChart__link {
  display: flex;
  align-items: center;
  color: #3362ab;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
}

.variants-sizeChart__icon {
  margin-left: 8px;
}

.custom-select {
  display: flex;
  align-items: center;
  padding: 0 8px 8px;
}

.custom-select--hidden {
  position: relative;
  z-index: 10;
}

.custom-select__colorIndicator {
  border-radius: 100px;
  border: 1px solid #e0e0e0;
  background: #000;
  width: 10px;
  height: 10px;
  margin-right: 4px;
}

.custom-select__wrapper {
  position: absolute;
  top: 4px;
  padding: 4px 0;
  max-height: 170px;
  width: 100%;
  box-shadow: 0 -2px 10px #00000026;
  -webkit-box-shadow: 0px -2px 10px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 6px;
}

.custom-select__inner {
  overflow-y: auto;
  max-height: 162px;
  overflow: auto;
}

.custom-select__inner::-webkit-scrollbar {
  width: 15px;
  background: #fafafa;
  box-shadow: 1px 0 #e0e0e0 inset;
  -webkit-box-shadow: 1px 0px 0px 0px #e0e0e0 inset;
}

.custom-select__inner::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border: 4px solid transparent;
  border-radius: 9px;
  background-clip: content-box;
}

.custom-select--item {
  display: flex;
  align-items: center;
  padding: 12px 8px;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  cursor: pointer;
  text-transform: capitalize;
  transition: background-color 0.15s ease-in-out;
}

.custom-select--item--active {
  background-color: #f0f0f0;
}

@media screen and (pointer: fine) {
  .custom-select--item:hover {
    background-color: #f0f0f0;
  }
}

.custom-radio--item {
  display: flex;
  align-items: center;
  border-radius: 4px;
  border-width: 1px;
  list-style: none;
  border-style: solid;
  font-family: Roboto, sans-serif;
  border-color: #e0e0e0;
  background-color: #fff;
  transition: background-color 0.3s ease-in-out;
  margin-bottom: 8px;
}

.custom-radio--item--1 {
  width: 100%;
}

.custom-radio--item--2 {
  width: calc(50% - 4px);
}

.custom-radio--item--2:not(:last-of-type) {
  margin-right: 8px;
}

.custom-radio--item--3 {
  width: calc(33.33% - 5.5px);
}

.custom-radio--item--3:not(:last-of-type) {
  margin-right: 8px;
}

.custom-radio--item--4 {
  width: calc(25% - 6px);
}

.custom-radio--item--4:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--5 {
  width: calc(25% - 6px);
}

.custom-radio--item--5:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--6 {
  width: calc(25% - 6px);
}

.custom-radio--item--6:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--7 {
  width: calc(25% - 6px);
}

.custom-radio--item--7:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--8 {
  width: calc(25% - 6px);
}

.custom-radio--item--8:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--9 {
  width: calc(25% - 6px);
}

.custom-radio--item--9:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--10 {
  width: calc(25% - 6px);
}

.custom-radio--item--10:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--11 {
  width: calc(25% - 6px);
}

.custom-radio--item--11:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--12 {
  width: calc(25% - 6px);
}

.custom-radio--item--12:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--13 {
  width: calc(25% - 6px);
}

.custom-radio--item--13:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--14 {
  width: calc(25% - 6px);
}

.custom-radio--item--14:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--15 {
  width: calc(25% - 6px);
}

.custom-radio--item--15:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--16 {
  width: calc(25% - 6px);
}

.custom-radio--item--16:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--17 {
  width: calc(25% - 6px);
}

.custom-radio--item--17:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--18 {
  width: calc(25% - 6px);
}

.custom-radio--item--18:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--19 {
  width: calc(25% - 6px);
}

.custom-radio--item--19:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item--20 {
  width: calc(25% - 6px);
}

.custom-radio--item--20:not(:nth-of-type(4n)) {
  margin-right: 8px;
}

.custom-radio--item .productPackages__button {
  border-color: #bdbdbd;
}

.productPackages__container.is-active .productPackages__button:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  transform: scale(0);
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  opacity: 1;
}

.custom-radio--item--active {
  border-color: #3362ab;
  background-color: #f0f5ff;
}

.custom-radio--item--active .productPackages__button {
  border-color: #3362ab;
}

.custom-radio--item--active .productPackages__button:before {
  content: "";
  position: absolute;
  transition:
    transform 0.15s ease-in,
    opacity 0.15s ease-in;
  transform-origin: center;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  transform: scale(1);
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  background-color: #3362ab;
  opacity: 1;
}

.custom-radio--item__wrapper {
  padding: 10px;
  display: flex;
  align-items: center;
}

.custom-radio--item__wrapper > span {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

@media screen and (max-width: 375px) {
  .productPackages__button.bundles {
    display: block;
  }
}

.productPackages__container.bundles {
  grid-template-columns: 1fr auto 119px auto 119px;
}

@media screen and (max-width: 767px) {
  .productPackages__container.bundles {
    grid-template-columns: 1fr 1fr 88px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productPackages__container.bundles {
    grid-template-columns: 190px auto 94px max-content 1px;
  }
}

@media screen and (max-width: 0) {
  .productPackages__container.bundles {
    grid-template-columns: 190px auto 94px max-content 1px;
  }
}

@media screen and (max-width: 375px) {
  .productPackages__container.bundles {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productPackages__container.bundles .productPacItem__priceBlock__container {
    grid-column: 3/5;
  }
}

@media screen and (max-width: 0) {
  .productPackages__container.bundles .productPacItem__priceBlock__container {
    grid-column: 3/5;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productPackages__container.bundles .variants-container {
    grid-column: 1/4;
  }
}

@media screen and (max-width: 0) {
  .productPackages__container.bundles .variants-container {
    grid-column: 1/4;
  }
}

.productPackages__container.bundles .productPacItem__topBlock,
.productPackages__container.bundles .separator {
  grid-column: 1/-1;
}

.productPackages__container.bundles .productPacItem__topBlock {
  display: flex;
  align-items: center;
}

.productPackages__container.bundles
  .productPacItem__topBlock
  .productPacItem__label__amount,
.productPackages__container.bundles
  .productPacItem__topBlock
  .productPacItem__label {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
}

@media screen and (max-width: 767px) {
  .productPackages__container.bundles
    .productPacItem__topBlock
    .productPacItem__label__amount,
  .productPackages__container.bundles
    .productPacItem__topBlock
    .productPacItem__label {
    font-size: 18px;
  }
}

@media screen and (max-width: 375px) {
  .productPackages__container.bundles
    .productPacItem__topBlock
    .productPacItem__label__amount,
  .productPackages__container.bundles
    .productPacItem__topBlock
    .productPacItem__label {
    font-size: 16px;
  }
}

.productPackages__container.bundles .productPacItem__image {
  width: auto;
  margin-right: 0;
  object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .productPackages__container.bundles .productPacItem__divider.mobileHide {
    display: none;
  }
}

@media only screen and (max-width: 375px) {
  .productPackages__container.bundles .productPacItem__divider.smallMobileHide {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productPackages__container.bundles .productPacItem__divider.tabletHide {
    display: none;
  }
}

@media screen and (max-width: 0) {
  .productPackages__container.bundles .productPacItem__divider.tabletHide {
    display: none;
  }
}

.productPackages__container.bundles .productPacItem__label {
  margin: 0 !important;
}

.productPackages__container.bundles .productPacItem__discount__box.desktopHide {
  display: none;
}

@media only screen and (max-width: 1071px) {
  .productPackages__container.bundles
    .productPacItem__discount__box.desktopHide {
    display: flex;
    margin-left: auto;
  }
}

.productPackages__container.bundles .bundle-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

@media screen and (max-width: 375px) {
  .productPackages__container.bundles .bundle-label {
    font-size: 12px;
    line-height: 26px;
    margin-bottom: 2px;
  }
}

.productPackages__container.bundles .bundle-products {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #828282;
}

@media screen and (max-width: 375px) {
  .productPackages__container.bundles .bundle-products {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .productPackages__container.bundles .variants-container {
    grid-column: 1/-1;
  }
}

.orderOverviewDrawer {
  background: var(--CC-Shopify-BG-summary, #f5f5f5);
}

.orderOverviewDrawer.withBarsContainer {
  border-top: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  border-bottom: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
}

.orderOverviewDrawer__V2 {
  background-color: #fff;
  border-bottom: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
}

.orderOverviewDrawer__V2__content {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
}

.orderOverviewDrawer__V2__hiddenContent {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  max-height: 0;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.orderOverviewDrawer__V2__hiddenContent__show {
  padding-top: 16px;
  max-height: 700px;
}

.orderOverviewDrawer__content {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  max-height: 0;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.orderOverviewDrawer__content__show {
  max-height: 700px;
}

.orderOverviewDrawer__opener {
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.orderOverviewDrawer__opener svg {
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transform: rotate(0);
}

.orderOverviewDrawer__opener._down svg {
  transform: rotate(180deg);
}

.orderOverviewDrawer_label {
  padding: 16px;
  display: flex;
  justify-content: space-between;
}

.orderOverviewDrawer_label_V2 {
  padding: 0 16px 12px;
  background: var(--CC-Shopify-BG-summary, white);
  display: flex;
  align-items: center;
}

.orderOverviewDrawer_label_V2__show {
  padding: 0 16px;
}

.orderOverviewDrawer_label_title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.orderOverviewDrawer_label_title_V2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  font-family: Roboto;
}

.orderOverviewDrawer_label_price {
  color: var(--CC-Shopify-Dark-gray, #333);
  text-align: right;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.orderOverviewDrawer_label_price_old {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-size: 12px;
  font-family: Roboto;
  font-weight: 400;
  line-height: 16px;
  text-decoration: line-through;
  text-align: right;
}

.orderOverviewDrawerV3 {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
}

.orderOverviewDrawerV3__topCont {
  overflow: hidden;
  transition: all 0.3s;
  max-height: 53px;
}

.orderOverviewDrawerV3__topCont__hide {
  max-height: 0px;
}

.orderOverviewDrawerV3__savingsLabel {
  color: #00b834;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.orderOverviewDrawerV3__savingsLabel__cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.orderOverviewDrawerV3__savingsLabel__cont__hide {
  max-height: 0px;
  overflow: hidden;
}

.orderOverviewDrawerV3__savingsLabel__cont__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
}

.orderOverviewDrawerV3__opener {
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.orderOverviewDrawerV3__opener svg {
  -webkit-transition: transform 0.5s ease;
  -moz-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  transform: rotate(0);
}

.orderOverviewDrawerV3__opener._down svg {
  transform: rotate(180deg);
}

.orderOverviewDrawerV3_label {
  display: flex;
  justify-content: space-between;
}

.orderOverviewDrawerV3_label_title {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.orderOverviewDrawerV3_label_price {
  color: var(--CC-Shopify-Dark-gray, #333);
  text-align: right;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.orderOverviewDrawerV3__content {
  display: flex;
  flex-direction: column;
  max-height: 0;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.orderOverviewDrawerV3__content.is-active {
  max-height: 800px;
}

.product-list-drawer > .productCard:last-of-type {
  margin-bottom: 0 !important;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

body {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

.benefitsContainer {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background-color: #fff;
  max-width: 1000px;
  width: 100%;
  margin-top: 20px;
}

.benefitsContainer--desktop {
  display: block;
}

@media screen and (max-width: 767px) {
  .benefitsContainer--desktop {
    display: none;
  }
}

.benefitsContainer--onlyDesktop {
  display: none !important;
}

@media screen and (min-width: 1031px) {
  .benefitsContainer--onlyDesktop {
    display: block !important;
  }
}

.benefitsContainer--mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .benefitsContainer--mobile {
    display: block;
  }
}

.benefitsContainer--fullWidth {
  margin: 0 auto;
}

.benefitsContainer--fullWidth > .benefitsContainer {
  padding: 32px 16px;
}

.benefitsContainer--tablet {
  display: none;
}

@media screen and (max-width: 1032px) {
  .benefitsContainer--tablet {
    display: block;
  }
}

.benefitsContainer__wrapper {
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: Center;
}

.benefit-card {
  width: calc(50% - 12px);
  display: flex;
  align-items: center;
}

.benefit-card--halfWidth:not(:nth-of-type(2n)) {
  margin-right: 24px;
}

.benefit-card--halfWidth:nth-of-type(1),
.benefit-card--halfWidth:nth-of-type(2) {
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .benefit-card--halfWidth {
    width: 100%;
  }

  .benefit-card--halfWidth:not(:last-of-type) {
    margin-bottom: 16px;
  }
}

.benefit-card--fullWidth {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 16px);
  padding: 0 16px;
}

@media screen and (max-width: 767px) {
  .benefit-card--fullWidth {
    width: 100%;
    flex-direction: row;
    padding: 0;
  }

  .benefit-card--fullWidth:not(:last-of-type) {
    margin-bottom: 16px;
  }
}

.benefit-card__image {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 767px) {
  .benefit-card__image {
    width: 24px;
    height: 24px;
    position: relative;
    top: 3px !important;
  }
}

.benefit-card__image--halfWidth {
  width: 32px;
  height: 32px;
  margin-bottom: 0;
  margin-right: 8px;
}

.benefit-card__text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  text-transform: capitalize;
  color: #333;
  text-align: center;
  padding: 0 16px;
}

@media (min-width: 767px) and (max-width: 1031px) {
  .benefit-card__text {
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .benefit-card__text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: Roboto, sans-serif;
    text-align: left;
  }
}

.benefit-card__text--halfWidth {
  text-align: start;
  padding: 0;
}

.benefitsV2__item {
  display: flex;
  margin-bottom: 16px;
}

.benefitsV2__item:last-child {
  margin-bottom: 24px;
}

.benefitsV2__item img {
  align-self: flex-start;
  margin-right: 16px;
}

.benefitsV2__item__title {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 8px;
}

.benefitsV2__item__text {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.input-container {
  margin-bottom: 12px;
}

.input {
  border: 1px solid #e0e0e0;
  height: 52px;
  border-radius: 4px;
  position: relative;
  padding: 8px 12px 0;
  box-sizing: border-box;
  background-color: #fff;
}

.input:focus-within {
  background: #ffffff;
  border: 1px solid #3362ab;
}

.input--error {
  border: 1px solid #ea2b00;
  background-color: #fffbfa !important;
}

.input--text {
  background-color: #fff;
  transition: padding 0.2s;
  position: relative;
}

.input--phone {
  height: 48px;
}

.input--phone__select {
  height: 100% !important;
  border: none !important;
}

.input--phone__dropDown {
  min-width: 120px;
  top: -9px;
  outline: none;
}

.input--phone__dropDown:focus {
  outline: none;
}

.input__helper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 3;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 40px;
}

@media (pointer: fine) {
  .input__helper:hover > .input__comment {
    transition:
      transform 0.15s ease-in,
      opacity 0.15s ease-in;
    opacity: 1;
    transform: scale(1) perspective(1px);
    z-index: 3;
  }

  .input__helper:hover .accordionContainer__wrapper {
    overflow: visible;
  }
}

.input__img {
  position: absolute;
  top: calc(50% - 8px);
  background-repeat: no-repeat;
  right: 12px;
  z-index: 3;
  cursor: pointer;
}

.input__img--alt {
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
}

.input__comment {
  width: 174px;
  opacity: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.9019607843);
  color: #fff;
  border-radius: 4px;
  padding: 12px;
  position: absolute;
  bottom: 37px;
  transition: opacity 0.15s ease-in;
  text-align: center;
  right: -13px;
  transform: scale(0.9);
  transform-origin: 80% 150%;
  z-index: -1;
  transition:
    transform 0.15s ease-in,
    opacity 0.15s ease-in,
    z-index 0ms ease-in 0.15s;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  font-family: Roboto, sans-serif, sans-serif;
}

.input__comment[visible="true"] {
  transition:
    transform 0.15s ease-in,
    opacity 0.15s ease-in;
  opacity: 1;
  transform: scale(1) perspective(1px);
  z-index: 3;
}

.input__comment:before {
  content: "";
  position: absolute;
  width: 1px;
  height: 1px;
  border-style: solid;
  border-width: 10px 0 0 10px;
  transform: rotate(-45deg);
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.9019607843);
  right: 28px;
  bottom: -3px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .input__comment {
    width: 172px;
  }
}

@media screen and (max-width: 0) {
  .input__comment {
    width: 172px;
  }
}

.input--customSelect {
  position: relative;
}

.input--customSelect:before {
  content: "îŒ“";
  font-family: Material Icons !important;
  font-size: 21px;
  line-height: 1;
  width: 18px;
  color: #333;
  height: 18px;
  background: white;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(50% - 11px);
  z-index: 1;
}

.input--select {
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  font-family: Roboto, sans-serif;
  color: #495057;
  border: none;
  text-align: left;
  padding-top: 14px;
  background: transparent;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.99998 12C7.74907 12 7.49819 11.904 7.3069 11.7123L1.2872 5.67776C0.904267 5.29388 0.904267 4.6715 1.2872 4.28779C1.66997 3.90407 2.29071 3.90407 2.67367 4.28779L7.99998 9.62748L13.3263 4.28797C13.7092 3.90426 14.3299 3.90426 14.7127 4.28797C15.0958 4.67169 15.0958 5.29407 14.7127 5.67794L8.69306 11.7125C8.50167 11.9042 8.25079 12 7.99998 12Z" fill="%23828282"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0rem top 50%;
  background-size: 16px auto;
}

.input--select:focus {
  outline: none;
  background: transparent;
}

.input--select:active {
  outline: none;
  background: transparent;
}

.input--select:active:focus {
  outline: none;
  background: transparent;
}

.input--select__container {
  display: flex;
  width: 100%;
  height: 100%;
}

.input--select__input {
  width: 100%;
}

.input--select__button > .selected-flag {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 8px;
}

.input--select__button > .selected-flag:focus {
  background: #f9f9f9;
}

.input--select__button > .selected-flag > div:nth-of-type(1) {
  display: flex;
}

.input--select__button
  > .selected-flag
  > div:nth-of-type(1)
  > div:nth-of-type(1) {
  order: 2;
  margin-left: 11px;
}

.input--select__button > .selected-flag > div:nth-of-type(1):after {
  position: absolute;
  top: -6px;
  left: 24px;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.styledLabel {
  position: absolute;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #828282;
  top: calc(50% - 9px);
  left: 12px;
  opacity: 1;
  z-index: 0;
  background: Transparent;
  transition:
    font-size 0.15s ease-in,
    top 0.15s ease-in,
    opacity 0.3s;
}

.styledLabel.cvv {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 60%;
}

.styledLabel:focus {
  background: transparent;
}

.styledLabel:active {
  background: transparent;
}

.formError,
.policyError {
  margin-left: 1px;
  font-size: 12px;
  line-height: 14px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  color: #ea2b00;
  margin-top: 4px;
  display: block;
  opacity: 1;
  animation: fadeIn 0.15s ease-in-out;
}

.phone-dialCode {
  position: relative;
  left: 22px;
}

.react-tel-input > .form-control:focus-within {
  background: #ffffff;
  border: 1px solid #3362ab;
}

.react-tel-input .country-list {
  z-index: 3 !important;
}

.react-tel-input > .flag-dropdown {
  border-color: #e8e8e8;
  z-index: 2;
  height: 100%;
  border: none;
  width: 100%;
  border-right: 1px solid #cacaca !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #333;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px transparent;
}

.phone_overlay {
  display: flex;
  align-items: center;
  padding-left: 78px;
  border: none;
  position: relative;
  width: 100%;
  height: 45px;
  bottom: 47px;
  border-radius: 4px;
  line-height: 20px;
  z-index: 1;
  overflow: hidden;
  background: transparent;
}

.phone_overlay--1 {
  padding-left: 58px;
}

.phone_overlay--2 {
  padding-left: 68px;
}

.phone_overlay--3 {
  padding-left: 78px;
}

.phone_overlay--4 {
  padding-left: 88px;
}

.phone_overlay--span {
  background: transparent;
  position: relative;
  left: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  font-family: Roboto, sans-serif;
  color: #333;
  height: 40px;
  width: 100%;
  border: none;
  margin-left: 16px;
}

.phone_overlay--span:focus {
  outline: none;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition:
    background-color 0s 600000s,
    color 0s 600000s;
}

select:-webkit-autofill,
select:-webkit-autofill:focus {
  transition:
    background-color 0s 600000s,
    color 0s 600000s;
}

.styledInput {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: Roboto, sans-serif;
  transition: padding 0.3s;
  padding-top: 24px;
  padding-left: 12px;
  padding-right: 12px;
  color: #333;
  background: transparent;
  border: none;
  outline: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}

.styledInput input:-webkit-autofill,
.styledInput input:-webkit-autofill:hover,
.styledInput input:-webkit-autofill:focus,
.styledInput input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}

.styledInput::placeholder {
  color: #bdbdbd;
  opacity: 1;
}

.styledInput::-ms-input-placeholder {
  color: #bdbdbd;
}

@keyframes fadeIn {
  0% {
    font-size: 0px;
  }

  to {
    font-size: 12px;
  }
}

.react-tel-input .flag-dropdown {
  border: none !important;
  border-right: 1px solid #e0e0e0 !important;
}

.react-tel-input .flag-dropdown.open .selected-flag {
  background: #f9f9f9;
}

.react-tel-input
  .flag-dropdown:hover
  .selected-flag
  .react-tel-input
  .flag-dropdown:focus
  .selected-flag {
  background: #f9f9f9;
  background-color: #f9f9f9;
}

.react-tel-input
  .flag-dropdown:hover
  .selected-flag
  .react-tel-input
  .flag-dropdown:hover
  .selected-flag {
  background: #f9f9f9;
  background-color: #f9f9f9;
}

.flag-dropdown:hover .selected-flag {
  background-color: #f9f9f9;
}

.input-mobile-flag {
  display: flex;
  width: 100%;
}

.input--select__button--1 {
  max-width: 70px;
}

.input--select__button--2 {
  max-width: 80px;
}

.input--select__button--3 {
  max-width: 90px;
}

.input--select__button--4 {
  max-width: 100px;
}

input[type="number"] {
  -moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.country-list > li > .country-name,
.country-list > li > .dial-code {
  font-family: Roboto, sans-serif;
  color: #333;
}

input:-webkit-autofill {
  color: #333;
}

input:autofill {
  color: #333;
}

input[data-com-onepassword-filled="transparent"] {
  background-color: #dbedff !important;
}

.overflowed-select {
  text-overflow: ellipsis;
  padding-right: 12px;
}

.tripleInputRow {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .tripleInputRow {
    grid-template-columns: 1fr 1fr;
    grid-gap: 0px 12px;
  }

  .tripleInputRow .input-container:first-child {
    grid-column: 1/3;
  }

  .tripleInputRow .input-container:nth-child(2) {
    grid-column: 1/2;
  }

  .tripleInputRow .input-container:nth-child(3) {
    grid-column: 2/3;
  }
}

.react-tel-input .selected-flag {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .react-tel-input .selected-flag {
    width: 100% !important;
  }
}

.react-tel-input .form-control {
  height: 100% !important;
}

.iti {
  width: 100%;
  position: initial;
}

.iti__tel-input {
  outline: 0;
  border: 0;
  height: 46px;
  background: transparent;
}

.iti--show-selected-dial-code .iti__selected-flag {
  border-color: rgb(232, 232, 232) transparent rgb(232, 232, 232)
    rgb(232, 232, 232);
  background-color: #f9f9f9;
  padding: 8px 16px !important;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.iti--show-selected-dial-code.iti--show-flags .iti__flag {
  border-radius: 2px;
  position: relative;
  top: 0;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .iti--show-selected-dial-code.iti--show-flags .iti__flag {
    top: 1px;
  }
}

@media screen and (max-width: 0) {
  .iti--show-selected-dial-code.iti--show-flags .iti__flag {
    top: 1px;
  }
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  font-family: Roboto;
  font-weight: 400;
  color: #333;
  font-size: 14px;
  line-height: 24px;
}

.iti--show-selected-dial-code.iti--show-flags .iti__arrow {
  margin-left: 0;
  border-top-color: #333;
  position: relative;
  top: 0;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .iti--show-selected-dial-code.iti--show-flags .iti__arrow {
    top: 1px;
  }
}

@media screen and (max-width: 0) {
  .iti--show-selected-dial-code.iti--show-flags .iti__arrow {
    top: 1px;
  }
}

.iti__country-list {
  font-family: Roboto;
}

.iti input.iti__tel-input,
.iti__search-input,
.iti input.iti__tel-input[type="tel"] {
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  height: 50px;
  width: 100%;
  font-family: Roboto, sans-serif;
  color: #333;
  padding-right: 16px;
}

.iti input.iti__tel-input::placeholder,
.iti__search-input::placeholder,
.iti input.iti__tel-input[type="tel"]::placeholder {
  color: #bdbdbd;
}

.iti--show-selected-dial-code.iti--show-flags .iti__selected-dial-code {
  margin-right: 8px;
}

.iti__flag-container {
  padding: 0 !important;
}

.footer {
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.footer__logo {
  max-width: 168px;
  height: auto;
}

.footer__seperator {
  max-width: 1032px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer__help {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
}

.footer__seperatorLine {
  background-color: #4f4f4f80;
  width: 100%;
  height: 1px;
}

.footer__chevron {
  position: absolute;
  top: 28px;
  right: 10px;
  transform: rotate(-90deg);
  transition: transform 0.15s ease-in;
}

@media screen and (min-width: 768px) {
  .footer__chevron {
    display: none;
  }
}

.footer__innerContainer {
  max-width: 1032px;
  width: 100%;
  padding: 20px 24px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(300px, 454px) minmax(min-content, max-content) minmax(
      min-content,
      max-content
    )
    minmax(min-content, max-content);
  column-gap: 44px;
}

@media screen and (max-width: 1032px) {
  .footer__innerContainer {
    justify-content: center;
    grid-template-rows: repeat(2, min-content);
    grid-template-columns: 1fr 1fr minmax(min-content, max-content);
    row-gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .footer__innerContainer {
    grid-template-rows: repeat(4, min-content);
    grid-template-columns: 1fr;
    column-gap: unset;
    justify-items: center;
    padding: 24px 16px 1px;
    row-gap: 0px;
  }
}

@media screen and (min-width: 1032px) {
  .footer__innerContainer {
    padding: 40px 16px;
  }
}

.footer__logoContainer {
  display: grid;
  grid-template-rows: repeat(3, min-content);
}

@media screen and (max-width: 1032px) {
  .footer__logoContainer {
    grid-row: 1/2;
    grid-column: 1/4;
    justify-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .footer__logoContainer {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .footer__logoContainer {
    margin-bottom: 25px;
  }
}

.footer__logoContainerText {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #bdbdbd;
  margin-top: 16px;
  margin-bottom: 24px;
}

.footer__logoContainerStores {
  display: flex;
}

.footer__logoContainerStores img {
  width: 111px;
  height: 32px;
}

.footer__logoContainerStores img:first-of-type {
  margin-right: 10px;
}

.footer__listContainer {
  position: relative;
}

.footer__listContainer:not(:last-of-type) {
  overflow: hidden;
  width: 100%;
}

@media screen and (min-width: 1032px) {
  .footer__listContainer:not(:last-of-type) {
    overflow: visible;
  }
}

@media screen and (max-width: 767px) {
  .footer__listContainer:not(:last-of-type) .footer__list {
    height: 0px;
    overflow: hidden;
  }
}

@media screen and (max-width: 767px) {
  .footer__listContainer {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .footer__listContainer--1 {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .footer__listContainer--2 {
    grid-row: 4/5;
    grid-column: 1/2;
  }
}

@media screen and (max-width: 767px) {
  .footer__listContainer--3 {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}

.footer__heading {
  font-family: Roboto, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .footer__heading {
    padding: 25px 0;
  }
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  transition:
    height 0.15s ease-in,
    margin-top 0.15s ease-in;
}

@media screen and (max-width: 767px) {
  .footer__list--expanded {
    margin-top: -8px;
  }
}

@media screen and (min-width: 768px) {
  .footer__list {
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .footer__list:not(:last-of-type) {
    height: 0px;
    overflow: hidden;
  }
}

.footer__list li:not(:first-of-type) {
  margin-top: 8px;
}

.footer__list--customerCare {
  margin-top: 16px;
}

@media screen and (max-width: 767px) {
  .footer__list--customerCare {
    align-items: flex-start;
    margin-left: 8px;
    margin-top: 0;
  }
}

.footer__listItem {
  display: flex;
  align-items: center;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #bdbdbd;
  text-transform: capitalize;
}

.footer__listItem--white {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .footer__listItem {
    display: flex;
    justify-content: center;
  }
}

.footer__listItem > a {
  color: var(--footer-link-color);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease-in;
}

@media (pointer: fine) {
  .footer__listItem > a:hover {
    color: var(--footer-link-color-hover);
  }
}

.footer__icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: var(--icon-color);
}

.footer__ribbon {
  background-color: #fff;
  width: 100%;
}

.footer__innerRibbonWrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1032px;
  width: 100%;
  padding: 12px 16px;
  margin: 0 auto;
}

@media screen and (max-width: 1032px) {
  .footer__innerRibbonWrapper {
    padding: 12px 24px;
  }
}

@media screen and (max-width: 767px) {
  .footer__innerRibbonWrapper {
    text-align: center;
    flex-direction: column;
    padding: 12px 16px;
  }
}

.footer__ribbonContent {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #333;
}

@media screen and (max-width: 767px) {
  .footer__ribbonContent {
    margin-bottom: 8px;
  }
}

.footer__paymentLogos {
  width: 306px;
  height: 32px;
}

@media screen and (max-width: 767px) {
  .footer__listContainer--1 {
    border-top: 1px solid rgba(79, 79, 79, 0.5);
    border-bottom: 1px solid rgba(79, 79, 79, 0.5);
  }
}

.footer__listContainer--3 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer__listContainer--3 {
    border-top: 1px solid rgba(79, 79, 79, 0.5);
  }
}

.footer__listItem > a.link-static-color {
  color: var(--support-link-color);
  text-decoration: none;
}

.footer__listItem > a.link-static-color:hover {
  color: var(--support-link-color-hover);
}

@media screen and (min-width: 767px) {
  .footer__column--wrapper {
    height: 100% !important;
  }
}

.simpleFooter {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #e0e0e0;
}

@media screen and (max-width: 767px) {
  .simpleFooter {
    background-color: #fff;
    padding: 16px 16px 0;
  }
}

.simpleFooter_links {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .simpleFooter_links {
    justify-content: center;
  }
}

.simpleFooter_links a {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
}
.simpleFooter_disclaimer {
  margin-top: 16px;
}

.simpleFooter_disclaimer p {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

@media screen and (max-width: 767px) {
  .simpleFooter_links a {
    margin-bottom: 16px;
  }
  .simpleFooter_disclaimer {
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .simpleFooter_links a {
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 0) {
  .simpleFooter_links a {
    margin-bottom: 8px;
  }
}

.simpleFooter_links > a:not(:last-child) {
  margin-right: 16px;
}

.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(1),
.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(2),
.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(3) {
  margin-bottom: 16px;
}

.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(5)
  .input,
.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(6)
  .input {
  height: 52px;
}

.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(5)
  .input--select__container,
.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(6)
  .input--select__container {
  height: 100%;
}

.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(5)
  .input--customSelect:before,
.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(6)
  .input--customSelect:before {
  top: calc(50% - 8px);
}

.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(5)
  .input--select,
.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(6)
  .input--select {
  top: 0;
}

.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(5)
  .input
  .styledLabel,
.fields--group:nth-child(3)
  .fields--group__wrapper
  > .input-container:nth-child(6)
  .input
  .styledLabel {
  top: 6px;
}

.fields--group:nth-child(1) .fields--group__wrapper > .input-container {
  margin-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .fields--group:nth-child(1) .fields--group__wrapper > .input-container {
    margin-bottom: 12px;
  }
}

.fields--group:nth-child(6) {
  margin-bottom: 0;
}

.fields--group {
  padding: 16px;
  border-radius: 10px;
  margin-bottom: 32px;
  border: 1px solid #e8e8e8;
}

@media screen and (max-width: 1024px) {
  .fields--group--mobileBox {
    margin-top: 0 !important;
    border-radius: 0;
    overflow: visible;
  }

  .fields--group--mobileBox > .fields--group__wrapper {
    margin-bottom: 24px;
  }

  .fields--group--mobileBox > .heading-2 {
    padding: 16px 16px 16px 0;
  }
}

@media screen and (max-width: 1024px) and (max-width: 767px) {
  .fields--group--mobileBox > .heading-2 {
    padding: 0 0 12px;
  }
}

@media screen and (max-width: 767px) {
  .fields--group {
    padding: 0;
    border: none;
    background: transparent;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.fields--group__wrapper {
  display: flex;
  flex-wrap: wrap;
  background: transparent;
}

.fields--group__wrapper > .input-container {
  margin-bottom: 12px;
}

.fields--group__wrapper > .input-container:last-child {
  margin-bottom: 0;
}

.fields--group__heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: Roboto;
  color: #333;
  background: transparent;
}

.fields--group__heading__lower {
  font-weight: 700;
  font-family: Roboto;
  color: #333;
  background: transparent;
  font-size: 18px;
  line-height: 24px;
}

.fields--group__heading__sslText {
  color: var(--CC-Shopify-Ligth-gray, #828282);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  padding-bottom: 16px;
}

.productHero__wrapper {
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productHero__wrapper {
    padding: 24px 16px;
  }
}

@media screen and (max-width: 0) {
  .productHero__wrapper {
    padding: 24px 16px;
  }
}

@media screen and (max-width: 767px) {
  .productHero__wrapper {
    margin-top: 16px;
    padding-top: 0;
    padding-bottom: 16px;
  }
}

.productHero__galleryWrapper {
  grid-row: 1/9;
}

@media screen and (max-width: 767px) {
  .productHero__galleryWrapper > .grid-row-6 {
    margin-top: 4px;
  }
}

.productHero__container {
  max-width: 1072px;
  display: grid;
  grid-template-columns: 530px auto;
  column-gap: 40px;
  row-gap: 16px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productHero__container {
    grid-template-columns: minmax(358px, 440px) minmax(360px, max-content);
    grid-gap: 16px;
  }
}

@media screen and (max-width: 0) {
  .productHero__container {
    grid-template-columns: minmax(358px, 440px) minmax(360px, max-content);
    grid-gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .productHero__container {
    column-gap: 0;
    row-gap: 12px;
    padding: 0;
    grid-template-columns: unset;
  }
}

.productHero__innerContainer {
  display: grid;
  gap: 12px;
}

.productHero__heading {
  color: var(--hero-text-primary, #000);
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 900;
  align-self: stretch;
  font-size: 24px;
  line-height: 32px;
}

@media screen and (min-width: 1032px) {
  .productHero__heading {
    font-size: 32px;
    line-height: 40px;
  }
}

.productHero__flagIcon {
  width: 16px;
  height: 16px;
}

.productHero__description {
  color: var(--hero-text-secondary, #666);
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  align-self: stretch;
  margin-top: -4px;
  margin-bottom: -4px;
}

@media screen and (max-width: 767px) {
  .productHero__description {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.productHero__sellingPoints__container {
  display: flex;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productHero__sellingPoints__container {
    grid-column: 1/3;
  }
}

@media screen and (max-width: 0) {
  .productHero__sellingPoints__container {
    grid-column: 1/3;
  }
}

@media screen and (max-width: 767px) {
  .productHero__sellingPoints__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

.productHero__sellingPoints__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--PP-Gray---dark, #333);
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  width: calc(25% - 12px);
}

.productHero__sellingPoints__item:not(:last-child) {
  margin-right: 16px;
}

@media screen and (max-width: 767px) {
  .productHero__sellingPoints__item:not(:last-child) {
    margin-right: 0;
  }

  .productHero__sellingPoints__item:not(:last-child) > span {
    padding: 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .productHero__sellingPoints__item {
    width: 100%;
  }

  .productHero__sellingPoints__item > span {
    padding: 0 16px;
  }
}

.productHero__sellingPoints__item img {
  height: 40px;
  width: 40px;
  margin-bottom: 8px;
}

.productHero__specialOffer {
  color: var(--hero-text-flag, #000);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
}

.productHero__specialOffer span {
  margin-left: 8px;
}

.productHero__ratingLine {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  width: fit-content;
}

.productHero__ratingLine__rating {
  color: var(--hero-text-secondary, #666);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

.productHero__ratingLine__divider {
  width: 1px;
  height: 13px;
  background: #666;
}

.productHero__ratingLine__text {
  color: var(--hero-text-secondary, #666);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}

.productHero__ratingLine__stars {
  max-height: 16px;
}

.productHero__ratingLine__stars img:not(:last-child),
.productHero__ratingLine__stars svg:not(:last-child) {
  margin-right: 1px;
}

.productHero__benefits {
  display: grid;
  gap: 8px;
}

.productHero__benefits__item {
  display: flex;
  align-items: center;
  color: var(--hero-text-secondary, #666);
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.productHero__benefits__item img,
.productHero__benefits__item svg {
  margin-right: 12px;
  position: relative;
  top: 2px;
  align-self: flex-start;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .productHero__benefits__item img,
  .productHero__benefits__item svg {
    top: 1px;
  }
}

@media screen and (max-width: 767px) {
  .productHero__benefits__item {
    font-size: 14px;
    line-height: 20px;
  }
}

.productHero__bottomLine {
  width: 100%;
  background-color: #fafafa;
  height: 16px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

@media screen and (max-width: 767px) {
  .productHero__bottomLine {
    border-bottom: 0px;
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .productHero__socialMediaBanner {
    width: 100%;
  }
}

.productHero__socialMediaBanner__text {
  color: var(--Gray-2, #4f4f4f);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.productHero__socialMediaBanner__text:first-child {
  margin-right: 8px;
}

.productHero__socialMediaBanner__text .bold {
  color: #000;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

.productHero__socialMediaBanner__avatars {
  display: grid;
  grid-auto-flow: column;
  max-width: 498px;
  padding: 8px 16px;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  background: #fff;
}

@media screen and (max-width: 767px) {
  .productHero__socialMediaBanner__avatars {
    width: 100%;
    justify-content: center;
  }
}

.productHero__socialMediaBanner__avatars__cont {
  display: flex;
  align-items: end;
  margin-left: 16px;
}

.productHero__socialMediaBanner__avatars__item {
  margin-left: -16px;
  height: 32px;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .productHero__socialMediaBanner__avatars__item {
    height: 24px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productHero__socialMediaBanner__avatars__item {
    height: 24px;
  }
}

@media screen and (max-width: 0) {
  .productHero__socialMediaBanner__avatars__item {
    height: 24px;
  }
}

.productHero__socialMediaBanner__avatars__checkmark {
  background-color: #00b890;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: -14px;
}

.image-gallery-slide-wrapper {
  border-radius: 10px;
  border: 1px solid var(--gallery-border-color, #d9ccbd);
  overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-slide-wrapper {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-slide-wrapper {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .image-gallery-slide-wrapper {
    width: 100%;
    height: auto;
  }
}

.image-gallery-swipe {
  height: 100%;
}

.image-gallery-nav-button {
  width: 32px;
  height: 32px;
  background-color: #fff;
  opacity: 0.7;
  padding: 0;
  border-radius: 6.4px;
  margin: 0 16px;
}

@media (pointer: fine) {
  .image-gallery-nav-button:hover {
    opacity: 0.9;
  }
}

.image-gallery-thumbnail {
  width: 80px;
  border-radius: 4px;
  border: 0px;
  transition: none;
  margin-top: 0 !important;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-thumbnail {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-thumbnail {
    margin-left: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .image-gallery-thumbnail {
    margin-left: 8px !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-thumbnail {
    width: auto;
    height: 64px;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-thumbnail {
    width: auto;
    height: 64px;
  }
}

.image-gallery-icon {
  filter: none;
}

.image-gallery-thumbnail.active,
.image-gallery-thumbnail.active:hover {
  border: 0px;
}

.image-gallery-thumbnail.active .image-gallery-thumbnail-inner {
  border: 1px solid var(--gallery-border-color, #d9ccbd);
}

.image-gallery-thumbnail:hover {
  border: none;
}

.image-gallery-thumbnail-inner {
  width: 80px;
  height: 80px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-thumbnail-inner {
    width: auto;
    height: 100%;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-thumbnail-inner {
    width: auto;
    height: 100%;
  }
}

.image-gallery-thumbnail-image {
  border-radius: 4px;
  object-fit: cover;
  border: 0px;
}

@media screen and (max-width: 767px) {
  .image-gallery-thumbnail-image {
    width: auto;
    height: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-thumbnail-image {
    width: auto !important;
    height: 100%;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-thumbnail-image {
    width: auto !important;
    height: 100%;
  }
}

.image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left {
  margin: 0 10px 0 0;
  width: 80px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left {
    width: auto;
    height: 100%;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-thumbnails-wrapper.image-gallery-thumbnails-left {
    width: auto;
    height: 100%;
  }
}

.image-gallery-thumbnails .image-gallery-thumbnails-container {
  display: grid;
  gap: 10px;
  max-height: 80px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-thumbnails .image-gallery-thumbnails-container {
    display: flex;
    width: 100%;
    max-height: 64px;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-thumbnails .image-gallery-thumbnails-container {
    display: flex;
    width: 100%;
    max-height: 64px;
  }
}

@media screen and (max-width: 767px) {
  .image-gallery-thumbnails .image-gallery-thumbnails-container {
    display: block;
    margin-top: 8px;
  }
}

.image-gallery-slide .image-gallery-image {
  height: 100%;
  width: 100%;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
  object-fit: fill;
}

.image-gallery-content.image-gallery-thumbnails-left
  .image-gallery-slide
  .image-gallery-image {
  max-height: unset;
}

.image-gallery-slides {
  height: auto;
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-slides {
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-slides {
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .image-gallery-slides {
    height: 100%;
  }
}

.image-gallery-slide.image-gallery-center {
  height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-slide.image-gallery-center {
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 0) {
  .image-gallery-slide.image-gallery-center {
    height: auto;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .image-gallery-slide.image-gallery-center {
    border-radius: 9px;
    height: 100%;
    width: 100%;
  }
}

.image-gallery-slide {
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
}

.image-gallery {
  max-width: max-content;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery {
    max-width: 440px;
    width: 100%;
  }
}

@media screen and (max-width: 0) {
  .image-gallery {
    max-width: 440px;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .image-gallery {
    padding-right: 16px;
    padding-left: 16px;
    width: 100vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-slide-wrapper {
    max-width: 768px;
    margin: 0 auto;
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) and (min-width: 768px) and (max-width: 1071px) {
  .image-gallery-thumbnails {
    display: flex;
    max-height: 100%;
    margin-top: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) and (max-width: 0) {
  .image-gallery-thumbnails {
    display: flex;
    max-height: 100%;
    margin-top: 5px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) and (max-width: 767px) {
  .image-gallery-thumbnails {
    max-width: 768px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productHero__innerWrapper {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
  }

  .image-gallery-content .image-gallery-slide .image-gallery-image {
    max-height: 100% !important;
  }
}

@media screen and (min-width: 784px) and (max-width: 1071px) {
  .productHero__innerWrapper {
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .image-gallery-content .image-gallery-slide .image-gallery-image {
    max-height: 100%;
  }
}

.hero-grid-column-2 {
  grid-column: 2/3;
}

@media screen and (max-width: 767px) {
  .hero-grid-column-2 {
    grid-column: 1/2;
    padding: 0 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .hero-selling-points-tablet {
    grid-column: 1/3 !important;
  }
}

@media screen and (max-width: 0) {
  .hero-selling-points-tablet {
    grid-column: 1/3 !important;
  }
}

.productPackages {
  border: 1px solid var(--card-border);
  border-radius: 8px;
  width: 100%;
}

.productPackages__wrapper {
  display: grid;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .productPackages__wrapper {
    padding-bottom: 16px;
  }
}

.productPackages__heading {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  padding-bottom: 16px;
}

@media screen and (max-width: 767px) {
  .productPackages__heading {
    padding-top: 16px;
  }
}

.productPackages__button {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #3362ab;
  background-color: transparent;
  position: relative;
  margin-right: 16px;
  padding-right: 16px;
  transition:
    border-color 0.15s ease-in,
    background-color 0.15s ease-in;
}

.productPackages__container.is-active .productPackages__button:before {
  content: "";
  position: absolute;
  transform: scale(1);
  transition:
    transform 0.15s ease-in,
    opacity 0.15s ease-in;
  transform-origin: center;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  background-color: #3362ab;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .productPackages__button {
    margin-right: 12px;
  }
}

@media screen and (max-width: 375px) {
  .productPackages__button {
    display: none;
  }
}

.productPackages__container {
  display: grid;
  grid-template-columns: auto auto 119px auto 119px;
  padding: 16px;
  background-color: var(--card-background-active);
  align-items: center;
  width: 100%;
  border-radius: 4px;
  border: 2px solid var(--card-border-active);
  transition:
    background-color 0.3s ease-in-out,
    border-bottom-left-radius 0.15s ease-in-out,
    border-bottom-right-radius 0.15s ease-in-out;
}

@media screen and (max-width: 767px) {
  .productPackages__container {
    justify-content: space-between;
  }
}

@media only screen and (max-width: 1071px) {
  .productPackages__container {
    grid-template-columns: minmax(100px, auto) 1fr minmax(87px, auto);
    padding: 12px;
  }
}

@media screen and (max-width: 375px) {
  .productPackages__container {
    padding: 12px 8px;
  }
}

.productPackages__container--visible {
  overflow: visible;
  transition: overflow 0ms ease-in 0ms;
}

.productPackages__container--unchecked {
  border-color: var(--card-border);
  background-color: var(--card-background);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .productPackages__container--unchecked {
    background-color: #fff;
  }
}

.productPackages__container--unchecked .productPackages__button {
  border-color: #bdbdbd;
}

.productPackages__container--unchecked .productPackages__button:before {
  content: "";
  position: absolute;
  border-radius: 50%;
  height: 10px;
  width: 10px;
  transform: scale(0);
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  opacity: 1;
}

.productPacItem__image {
  width: 85px;
  height: 85px;
  object-fit: contain;
  border-radius: 3.085px;
  margin-right: 24px;
}

.productPacItem__image--border {
  border: 0.771px solid var(--card-border, #e0e0e0);
}

@media screen and (max-width: 767px) {
  .productPacItem__image {
    margin-right: 16px;
  }
}

@media screen and (max-width: 375px) {
  .productPacItem__image {
    width: 64px;
    height: 64px;
  }
}

.productPacItem__label {
  color: var(--card-text-primary, #333);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productPacItem__label {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 0) {
  .productPacItem__label {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 6px;
  }
}

@media screen and (max-width: 767px) {
  .productPacItem__label {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 6px;
  }
}

.productPacItem__label__container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.productPacItem__label__amount {
  color: var(--card-text-primary, #333);
  text-align: center;
  font-family: Roboto;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 40px;
  text-transform: capitalize;
}

.productPacItem__divider {
  height: 100%;
  width: 1px;
  margin: 0 16px;
  background-color: var(--card-border);
}

@media screen and (max-width: 375px) {
  .productPacItem__divider {
    margin: 0 8px;
    justify-self: center;
  }
}

@media only screen and (max-width: 1071px) {
  .productPacItem__divider.mobileHide {
    display: none;
  }
}

.productPacItem__discount__container {
  display: flex;
  justify-content: center;
}

@media only screen and (max-width: 1071px) {
  .productPacItem__discount__container.mobileHide {
    display: none;
  }
}

.productPacItem__discount__box {
  display: flex;
  padding: 8px 10px;
  gap: 4px;
  width: 86px;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  background: var(--CC-Shopify-BG---light-gray, #fafafa);
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.productPacItem__discount__box img {
  width: 12px;
  height: 12px;
}

.productPacItem__discount__box.desktopHide {
  display: none;
}

@media only screen and (max-width: 1071px) {
  .productPacItem__discount__box.desktopHide {
    display: flex;
    width: 57px;
    padding: 4px 8px;
    font-size: 12px;
  }
}

.productPacItem__firstBlock {
  display: flex;
  align-items: center;
}

.productPacItem__priceBlock__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media screen and (max-width: 767px) {
  .productPacItem__priceBlock__container {
    align-items: end;
  }
}

.productPacItem__priceBlock > sup {
  vertical-align: super;
  font-size: smaller;
  color: #333;
  text-align: right;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 11px;
}

.productPacItem__priceBlock__oldPrice {
  color: var(--card-text-secondary);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  text-decoration: line-through;
}

@media screen and (max-width: 767px) {
  .productPacItem__priceBlock__oldPrice {
    text-align: right;
  }
}

.productPacItem__priceBlock__price {
  color: var(--card-text-primary);
  text-align: center;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 17px;
  text-transform: capitalize;
  margin-right: 2px;
  margin-left: 2px;
}

.productPacItem__priceBlock__cents {
  color: var(--card-text-primary);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 9px;
  margin-bottom: 4px;
}

.productPacItem__priceBlock__each {
  color: var(--card-text-primary);
  font-family: Roboto;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
}

.productPacItem__priceBlock__each--with-cents {
  line-height: 0px;
}

.productPacItem__priceBlock__each--without-cents {
  line-height: 16px;
}

.productPacItem__priceBlock__mainPriceBlock {
  display: flex;
  justify-content: center;
}

.productPacItem__priceBlock__mainPriceBlock > sup {
  vertical-align: super;
  font-size: smaller;
  color: #333;
  text-align: right;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 11px;
}

.productPacItem__priceBlock__labelTag {
  border-radius: 4px;
  background: #ffc438;
  display: flex;
  padding: 4px 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #333;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}

.itemEachContent {
  display: grid;
  grid-auto-rows: min-content;
  justify-items: center;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemEachContent {
    justify-self: center;
  }
}

@media screen and (max-width: 0) {
  .itemEachContent {
    justify-self: center;
  }
}

.itemEachContent__itemNumber {
  font-size: 32px;
  line-height: 40px;
  font-weight: 900;
  font-family: Roboto, sans-serif;
  color: #333;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemEachContent__itemNumber {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 0) {
  .itemEachContent__itemNumber {
    font-size: 24px;
    line-height: 32px;
  }
}

.itemEachContent__itemName {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  margin-bottom: 4px;
  color: #333;
}

.itemEachContent__itemEach {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  margin-bottom: 4px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemEachContent__itemEach {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 0) {
  .itemEachContent__itemEach {
    margin-bottom: 0;
  }
}

.itemEachContent__itemEach div:first-of-type {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
  font-family: Roboto, sans-serif;
  color: #0ed13d;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemEachContent__itemEach div:first-of-type {
    font-size: 18px;
  }
}

@media screen and (max-width: 0) {
  .itemEachContent__itemEach div:first-of-type {
    font-size: 18px;
  }
}

.itemEachContent__itemEach div:last-of-type {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
  color: #bdbdbd;
  border-left: 1px solid #bdbdbd;
  padding-left: 4px;
  margin-left: 4px;
}

.itemEachContent__itemTotal {
  display: flex;
  flex-direction: column;
  align-items: Center;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  font-family: Roboto, sans-serif;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemEachContent__itemTotal {
    font-size: 12px;
  }
}

@media screen and (max-width: 0) {
  .itemEachContent__itemTotal {
    font-size: 12px;
  }
}

.itemEachContent__itemTotal div:first-of-type {
  color: #828282;
}

.itemEachContent__itemTotal div:last-of-type {
  color: #bdbdbd;
}

.image__wrapper {
  height: 88px;
  width: 167px;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .image__wrapper {
    height: 88px;
    width: 100%;
  }
}

.image__wrapper--alt {
  height: 88px;
  width: 112px;
  display: flex;
  justify-content: Center;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .image__wrapper--alt {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 0) {
  .image__wrapper--alt {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.itemPackageContent {
  display: grid;
  grid-auto-rows: min-content;
  justify-items: center;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemPackageContent {
    justify-content: center;
  }
}

@media screen and (max-width: 0) {
  .itemPackageContent {
    justify-content: center;
  }
}

.itemPackageContent__itemNumber {
  font-size: 32px;
  line-height: 40px;
  font-weight: 900;
  font-family: Roboto, sans-serif;
  color: #333;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemPackageContent__itemNumber {
    font-size: 24px;
    line-height: 32px;
  }
}

@media screen and (max-width: 0) {
  .itemPackageContent__itemNumber {
    font-size: 24px;
    line-height: 32px;
  }
}

.itemPackageContent__itemName {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  margin-bottom: 4px;
  color: #333;
}

.itemPackageContent__itemTotal {
  font-size: 20px;
  line-height: 24px;
  font-weight: 900;
  font-family: Roboto, sans-serif;
  color: #0ed13d;
  margin-bottom: 4px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .itemPackageContent__itemTotal {
    font-size: 18px;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 0) {
  .itemPackageContent__itemTotal {
    font-size: 18px;
    margin-bottom: 0;
  }
}

.itemPackageContent__itemTotalDiscount {
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  color: #828282;
  text-decoration: line-through;
}

.productsRows {
  margin-top: 20px;
  display: grid;
  grid-auto-rows: min-content;
}

.productsRows__item {
  box-shadow: 0 0 0 1px #e0e0e0;
  transition: box-shadow 0.15s ease-in;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  margin-bottom: 16px;
}

.productsRows__item--active {
  box-shadow: 0 0 0 3px #2f80ed;
  background-color: #f7fdff;
}

.productsRows__item--active
  > .productsRows__itemContentWrap
  > .productsRows__itemPerks
  div:first-of-type {
  color: #fff;
  background-color: #f9a400;
}

.productsRows__item--active
  > .productsRows__itemContentWrap
  > .productsRows__itemPerks
  div:last-of-type {
  color: #fff;
  background-color: #0ed13d;
}

.productsRows__itemHeading {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  background-color: #f9f9f9;
  text-transform: uppercase;
  text-align: center;
  color: #333;
  padding: 8px 0;
  transition:
    background-color 0.15s ease-in,
    color 0.15s ease-in;
}

.productsRows__itemHeading--active {
  background-color: #2f80ed;
  color: #fff;
  box-shadow: 1px 1px 1px #2f80ed;
}

.productsRows__itemContentWrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 16px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsRows__itemContentWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, min-content);
    padding: 8px 16px;
  }
}

@media screen and (max-width: 0) {
  .productsRows__itemContentWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, min-content);
    padding: 8px 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsRows__itemImage {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

@media screen and (max-width: 0) {
  .productsRows__itemImage {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.productsRows__itemPerks {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  display: grid;
  grid-template-rows: repeat(2, min-content);
  row-gap: 4px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-right: 16px;
  margin-left: 16px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsRows__itemPerks {
    row-gap: 0px;
  }
}

@media screen and (max-width: 0) {
  .productsRows__itemPerks {
    row-gap: 0px;
  }
}

.productsRows__itemPerks * {
  display: grid;
  justify-content: center;
  align-content: center;
  padding: 8px;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #828282;
  transition:
    color 0.15s ease-in,
    background-color 0.15s ease-in;
}

.productsRows__itemPerks--package {
  margin-right: 16px;
  margin-left: 16px;
}

.productsRows__itemPerks--package div {
  border-radius: 10px 10px 10px 0;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsRows__itemPerks--package div {
    border-radius: 4px;
  }
}

@media screen and (max-width: 0) {
  .productsRows__itemPerks--package div {
    border-radius: 4px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsRows__itemPerks {
    grid-row: 2/3;
    grid-column: 1/3;
    margin-right: -16px;
    margin-left: -16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    padding: 8px 16px 0;
    margin-top: 8px;
    border-top: 1px solid #e0e0e0;
  }
}

@media screen and (max-width: 0) {
  .productsRows__itemPerks {
    grid-row: 2/3;
    grid-column: 1/3;
    margin-right: -16px;
    margin-left: -16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    padding: 8px 16px 0;
    margin-top: 8px;
    border-top: 1px solid #e0e0e0;
  }
}

.productCard {
  display: grid;
  grid-template-columns: 64px auto 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.productCard_smallMargin {
  margin-bottom: 12px;
}

.productCard__imageContainer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  height: 64px;
}

.productCard__imageContainer__indicator {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 21px;
  height: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #5c5c5c;
  border-radius: 50%;
  padding: 5px;
  color: #fff;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 21px;
}

.productCard img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
}

.productCard__titleBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.productCard__titleBlock__discountTagBlock {
  margin-top: 4px;
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
}

.productCard__titleBlock__discountTag {
  border: none !important;
  height: 16px !important;
  width: 16px !important;
  margin-right: 4px;
}

.productCard__titleBlock__title {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 4px;
}

.productCard__titleBlock__variant {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.productCard__titleBlock__variant > span {
  text-transform: capitalize;
}

.productCard__titleBlock__altText {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 4px;
}

.productCard__titleBlock__tagText {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
}

.productCard__titleBlock__tagText svg {
  margin-right: 4px;
}

.productCard__priceBlock {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: end;
  text-align: right;
}

.productCard__priceBlock__price {
  color: var(--CC-Shopify-Dark-gray, #333);
  text-align: right;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.productCard__priceBlock__oldPrice {
  color: var(--CC-Shopify-Medium-gray, #5c5c5c);
  text-align: right;
  font-family: Roboto;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.productCard:not(:last-of-type) {
  margin-bottom: 16px !important;
}

.products__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.productsColumns__item {
  width: calc(50% - 6px);
  box-shadow: 0 0 0 1px #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  transition: box-shadow 0.15s ease-in;
}

.productsColumns__item:not(:nth-of-type(3), :nth-of-type(4)) {
  margin-bottom: 12px;
}

.productsColumns__item:not(:nth-of-type(2n)) {
  margin-right: 12px;
}

@media screen and (max-width: 767px) {
  .productsColumns__item:not(:last-of-type) {
    margin-bottom: 12px;
  }

  .productsColumns__item:not(:nth-of-type(3), :nth-of-type(4)) {
    margin-bottom: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsColumns__item {
    width: 100%;
    margin-right: 0;
  }

  .productsColumns__item:not(:nth-of-type(2n)) {
    margin-right: 0;
  }

  .productsColumns__item:not(:last-of-type) {
    margin-bottom: 12px;
  }

  .productsColumns__item:not(:nth-of-type(3), :nth-of-type(4)) {
    margin-bottom: 12px;
  }
}

@media screen and (max-width: 0) {
  .productsColumns__item {
    width: 100%;
    margin-right: 0;
  }

  .productsColumns__item:not(:nth-of-type(2n)) {
    margin-right: 0;
  }

  .productsColumns__item:not(:last-of-type) {
    margin-bottom: 12px;
  }

  .productsColumns__item:not(:nth-of-type(3), :nth-of-type(4)) {
    margin-bottom: 12px;
  }
}

.productsColumns__item--active {
  box-shadow: 0 0 0 3px #2f80ed;
  background-color: #f7fdff;
}

.productsColumns__item--active > .productsColumns__itemHeading {
  background-color: #2f80ed;
  color: #fff;
}

.productsColumns__itemHeading {
  font-size: 16px;
  line-height: 16px;
  font-weight: 600;
  font-family: Poppins, sans-serif;
  background-color: #f9f9f9;
  text-transform: uppercase;
  text-align: center;
  color: #333;
  padding: 8px 0;
  transition: background-color 0.15s ease-in;
}

.productsColumns__itemContentWrap {
  display: grid;
  grid-template-columns: 1fr max-content max-content;
  align-items: center;
  padding: 16px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsColumns__itemContentWrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, min-content);
    padding: 8px 16px;
  }
}

@media screen and (max-width: 0) {
  .productsColumns__itemContentWrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, min-content);
    padding: 8px 16px;
  }
}

.productsColumns__itemImage {
  max-width: 112px;
  max-height: 112px;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsColumns__itemImage {
    grid-row: 1/2;
    grid-column: 1/2;
    padding-left: 16px;
    padding-top: 8px;
  }
}

@media screen and (max-width: 0) {
  .productsColumns__itemImage {
    grid-row: 1/2;
    grid-column: 1/2;
    padding-left: 16px;
    padding-top: 8px;
  }
}

.productsColumns__itemPerks {
  font-size: 12px;
  line-height: 16px;
  font-weight: 700;
  font-family: Roboto, sans-serif;
  display: grid;
  grid-template-rows: repeat(2, min-content);
  row-gap: 4px;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  margin-right: 40px;
}

.productsColumns__itemPerks * {
  display: grid;
  justify-content: center;
  align-content: center;
  padding: 8px;
  border-radius: 4px;
  background-color: #f9f9f9;
  color: #828282;
}

.productsColumns__itemPerks--active div:first-of-type {
  color: #fff;
  background-color: #f9a400;
}

.productsColumns__itemPerks--active div:last-of-type {
  color: #fff;
  background-color: #0ed13d;
}

.productsColumns__itemPerks--package {
  margin-right: 74px;
}

.productsColumns__itemPerks--package div {
  border-radius: 10px 10px 10px 0;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsColumns__itemPerks--package div {
    border-radius: 4px;
  }
}

@media screen and (max-width: 0) {
  .productsColumns__itemPerks--package div {
    border-radius: 4px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .productsColumns__itemPerks {
    grid-row: 2/3;
    grid-column: 1/3;
    margin-right: -16px;
    margin-left: -16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    padding: 8px 16px;
    margin-top: 8px;
    border-top: 1px solid #e0e0e0;
  }
}

@media screen and (max-width: 0) {
  .productsColumns__itemPerks {
    grid-row: 2/3;
    grid-column: 1/3;
    margin-right: -16px;
    margin-left: -16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 8px;
    padding: 8px 16px;
    margin-top: 8px;
    border-top: 1px solid #e0e0e0;
  }
}

.main {
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
}

@media screen and (max-width: 767px) {
  .main {
    display: initial;
    padding: 16px 0;
    background-color: #fff;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .main {
    display: initial;
    width: 100%;
  }
}

@media screen and (max-width: 0) {
  .main {
    display: initial;
    width: 100%;
  }
}

.main_leftSide {
  height: 100%;
  width: 100%;
  background-color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .main_leftSide {
    padding-left: 16px;
  }
}

@media screen and (max-width: 0) {
  .main_leftSide {
    padding-left: 16px;
  }
}

.main_rightSide {
  height: 100%;
  width: 100%;
  background-color: #f5f5f5;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .main_rightSide {
    padding-right: 16px;
  }
}

@media screen and (max-width: 0) {
  .main_rightSide {
    padding-right: 16px;
  }
}

.contentContainer {
  max-width: 1072px;
  margin: 0 auto;
  display: flex;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contentContainer {
    flex-direction: column;
    padding: 0;
  }
}

.contentContainer > .productContainer {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  width: 598px;
  padding: 40px 38px 24px 0;
  border-right: 1px solid #e0e0e0;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .contentContainer > .productContainer {
    width: 52%;
    padding: 24px 24px 16px 16px;
  }
}

@media screen and (max-width: 0) {
  .contentContainer > .productContainer {
    width: 52%;
    padding: 24px 24px 16px 16px;
  }
}

.contentContainer > .productContainer.v2 {
  padding-top: 24px;
}

@media screen and (max-width: 767px) {
  .contentContainer > .productContainer.v2 {
    padding: 0 16px;
    border-top: 0px;
    border-bottom: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  }
}

@media screen and (max-width: 767px) {
  .contentContainer > .productContainer.noProductPicker {
    border-top: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
  }
}

@media screen and (max-width: 767px) {
  .contentContainer > .productContainer {
    padding: 24px 16px 0;
    margin-bottom: 0;
    width: 100%;
    border-right: 0px;
  }
}

.contentContainer > .summaryContainer {
  width: 443px;
  background-color: #f5f5f5;
  padding: 40px 0 40px 38px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .contentContainer > .summaryContainer {
    width: 48%;
    padding: 24px 0 24px 24px;
  }
}

@media screen and (max-width: 0) {
  .contentContainer > .summaryContainer {
    width: 48%;
    padding: 24px 0 24px 24px;
  }
}

.contentContainer > .summaryContainer.v2 {
  padding-top: 24px;
}

@media screen and (max-width: 767px) {
  .contentContainer > .summaryContainer.v2 {
    padding-top: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .contentContainer > .summaryContainer.v2 {
    padding-right: 16px;
  }
}

@media screen and (max-width: 0) {
  .contentContainer > .summaryContainer.v2 {
    padding-right: 16px;
  }
}

.contentContainer
  > .summaryContainer
  > form
  > div.form-order
  > div:nth-child(3)
  > div
  > div
  > div:nth-child(1)
  > img {
  width: auto;
  height: 24px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .contentContainer
    > .summaryContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 22px;
  }
}

@media screen and (max-width: 0) {
  .contentContainer
    > .summaryContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 22px;
  }
}

@media (min-width: 767px) and (max-width: 860px) {
  .contentContainer
    > .summaryContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 16px;
  }
}

@media screen and (max-width: 767px) {
  .contentContainer
    > .summaryContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .contentContainer > .summaryContainer {
    width: 100%;
    padding: 16px 16px 24px;
  }
}

.contentContainer > .summaryContainer_white {
  background-color: #fff;
}

.contentContainer--alt > .productContainer {
  width: calc(50% - 10px);
}

@media screen and (max-width: 767px) {
  .contentContainer--alt > .productContainer {
    width: 100%;
  }
}

.contentContainer--alt > .formContainer {
  width: 50%;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .contentContainer--alt > .formContainer {
    margin-bottom: 0;
  }
}

.contentContainer--alt
  > .formContainer
  > form
  > div.form-order
  > div:nth-child(3)
  > div
  > div
  > div:nth-child(1)
  > img {
  width: auto;
  height: 32px;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .contentContainer--alt
    > .formContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 24px;
  }
}

@media screen and (max-width: 0) {
  .contentContainer--alt
    > .formContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 24px;
  }
}

@media (min-width: 767px) and (max-width: 860px) {
  .contentContainer--alt
    > .formContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 16px;
  }
}

@media (min-width: 321px) and (max-width: 375px) {
  .contentContainer--alt
    > .formContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 16px;
  }
}

@media (max-width: 320px) {
  .contentContainer--alt
    > .formContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    height: 14px;
  }
}

@media screen and (max-width: 767px) {
  .contentContainer--alt
    > .formContainer
    > form
    > div.form-order
    > div:nth-child(3)
    > div
    > div
    > div:nth-child(1)
    > img {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .contentContainer--alt > .formContainer {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .contentContainer--alt {
    padding: 0 16px;
  }
}

@media screen and (max-width: 0) {
  .contentContainer--alt {
    padding: 0 16px;
  }
}

@media screen and (max-width: 767px) {
  .contentContainer--alt {
    padding: 0 16px;
  }
}

@media screen and (min-width: 1041px) {
  main
    > section.contentContainer.contentContainer--alt
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 24px;
  }
}

@media screen and (max-width: 767px) {
  main
    > section.contentContainer.contentContainer--alt
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 24px;
  }
}

@media (max-width: 375px) {
  main
    > section.contentContainer.contentContainer--alt
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 22px;
  }
}

@media (max-width: 355px) {
  main
    > section.contentContainer.contentContainer--alt
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 20px;
  }
}

@media (max-width: 355px) {
  main
    > section.contentContainer.contentContainer--alt
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 18px;
  }
}

@media (max-width: 320px) {
  main
    > section.contentContainer.contentContainer--alt
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 16px;
  }
}

@media screen and (min-width: 1032px) {
  main
    > section.contentContainer.contentContainer
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 24px;
  }
}

@media (min-width: 768px) and (max-width: 850px) {
  main
    > section.contentContainer.contentContainer
    > article.formContainer
    > form
    > div
    > div.cardInformation
    > div.cardInformation__heading
    > img {
    height: 20px;
  }
}

.message {
  grid-column: 1/2;
  grid-row: 1/2;
}

.productContainer {
  width: 598px;
}

@media screen and (max-width: 767px) {
  .productContainer {
    padding: 0;
    border: none;
    background-color: transparent;
    margin-bottom: 16px;
  }
}

.productContainer > .fields--group {
  margin-top: 8px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .productContainer > .fields--group {
    background: transparent;
    margin-top: 12px;
  }
}

.sliderContainer {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .sliderContainer {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.sliderContainer--mobile {
  display: none;
}

@media screen and (max-width: 767px) {
  .sliderContainer--mobile {
    display: block;
  }
}

.sliderContainer--desktop {
  display: none;
}

@media screen and (min-width: 768px) {
  .sliderContainer--desktop {
    display: block;
  }
}

.formContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  border-radius: 10px;
  padding: 16px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .formContainer {
    margin-bottom: 0;
  }
}

.formContainer--fullWidth {
  grid-row: 1/7;
}

.formContainer > form .fields--group:first-of-type {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .formContainer {
    grid-row: 3/4;
    grid-column: 1/2;
    background: transparent;
    border: none;
    padding: 0;
  }
}

.paymentMethodClassic > .fields--group:first-child {
  margin-top: 0;
}

@media screen and (max-width: 1024px) {
  .paymentMethodClassic > .fields--group .fields--group:not(:last-of-type) {
    margin-bottom: 12px;
  }
}

.bottomContainer {
  display: block;
  padding: 0 16px;
}

.bottomContainer--half {
  display: none;
}

@media screen and (max-width: 767px) {
  .bottomContainer--half {
    display: block;
  }
}

.only-mobile-badges {
  display: none;
}

@media screen and (max-width: 767px) {
  .only-mobile-badges {
    display: grid;
  }
}

.onlyMobile {
  display: none;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .onlyMobile {
    display: block;
  }
}

@media screen and (max-width: 0) {
  .onlyMobile {
    display: block;
  }
}

.onlyDesktop {
  display: block;
}

@media screen and (min-width: 768px) and (max-width: 1071px) {
  .onlyDesktop {
    display: none;
  }
}

@media screen and (max-width: 0) {
  .onlyDesktop {
    display: none;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

.bodyOverflow {
  overflow-y: hidden;
  height: 100%;
}

.mobileSectionSeperator {
  display: none;
}

@media screen and (max-width: 767px) {
  .mobileSectionSeperator {
    display: block;
    width: 100vw;
    height: 16px;
    border-top: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
    border-bottom: 1px solid var(--cc-shopify-border-dividers, #e0e0e0);
    background: var(--CC-Shopify-BG-summary, #f5f5f5);
    position: relative;
    left: 0;
    margin-left: -16px;
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

.warranty__checkbox {
  width: 100%;
  display: grid;
  grid-template-columns: min-content;
  grid-template-rows: min-content min-content;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .warranty__checkbox {
    margin: 4px 0;
  }
}

.warranty__input {
  display: none;
}

.warranty__label {
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}

.warranty__input:checked ~ .warranty__check {
  background-color: #333;
  border: 0px !important;
}

.warranty__input:checked ~ .warranty__check > span {
  display: inline-block;
}

.warranty__check {
  cursor: pointer;
  grid-row: 1/2;
  margin-right: 8px;
  grid-column: 1/2;
  position: relative;
  z-index: 2;
  display: grid;
  justify-content: center;
  align-content: center;
  width: 16px;
  border-radius: 4px;
  height: 16px;
  border: 1px solid #bdbdbd;
  align-self: flex-start;
  top: 2px;
}

.warranty__check span {
  display: none;
  width: 10.31px;
  height: 9.45px;
  background-color: #333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.mailSubscription__checkbox {
  width: 100%;
  display: grid;
  grid-template-columns: min-content;
  grid-template-rows: min-content min-content;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .mailSubscription__checkbox {
    margin: 4px 0;
  }
}

.mailSubscription__checkbox span {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  font-family: Roboto, sans-serif, sans-serif;
  color: #4f4f4f;
}

.mailSubscription__input {
  display: none;
}

.mailSubscription__label {
  color: #4f4f4f;
  grid-column: 2/3;
  grid-row: 1/2;
  color: var(--CC-Shopify-Dark-gray, #333);
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  cursor: pointer;
}

.mailSubscription__label > a {
  text-decoration: none;
  color: #2f80ed;
}

.mailSubscription__link:link,
.mailSubscription__link:visited,
.mailSubscription__link:active,
.mailSubscription__link:hover {
  color: #2f80ed;
  text-decoration: none;
}

.mailSubscription__input:checked ~ .mailSubscription__check {
  background-color: #333;
  border: 0px !important;
}

.mailSubscription__input:checked ~ .mailSubscription__check > span {
  display: inline-block;
}

.mailSubscription__check {
  cursor: pointer;
  grid-row: 1/2;
  margin-right: 8px;
  grid-column: 1/2;
  position: relative;
  z-index: 2;
  display: grid;
  justify-content: center;
  align-content: center;
  width: 16px;
  border-radius: 4px;
  height: 16px;
  border: 1px solid #bdbdbd;
  align-self: center;
}

.mailSubscription__check span {
  display: none;
  width: 10.31px;
  height: 9.45px;
  background-color: #333;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.separator {
  display: flex;
  align-items: center;
  color: var(--CC-Shopify-Dark-gray, #333);
  margin: 16px 0;
}

.separator__benefits {
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .separator__benefits {
    margin-top: 16px;
  }
}

.separator__text {
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 0 16px;
}

.separator__noText {
  padding: 0 !important;
}

.separator:before,
.separator:after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #e0e0e0;
}

.topbarOffer {
  background: var(--pp-topbar-1, #000);
  color: var(--PP-White, #fff);
  text-align: center;
  font-family: Roboto;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  padding: 4px;
}

.input input:focus ~ .styledLabel,
.input .styledLabel--active {
  top: 8px;
  transition:
    top 0.15s ease-in,
    font-size 0.15s ease-in;
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  font-family: Roboto, sans-serif, sans-serif;
}

.react-international-phone-country-selector-dropdown {
  position: initial !important;
}
.form .input {
  border: 1px solid #e0e0e0;
  height: 52px;
  border-radius: 4px;
  position: relative;
  padding: 8px 12px;
  background-color: #fff;
}
body.checkout .faq-headline {
  background-color: #eee;
  margin-bottom: 1em;
  border-radius: 6px;
}
body.checkout section.faq > p {
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
  color: black;
  cursor: pointer;
}
body.checkout section.faq > p span {
  text-decoration: underline;
}
body.checkout section.faq h2 {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  background: hsl(229, 53%, 53%);
  color: white;
}
body.checkout section.faq .questions {
  padding-bottom: 2rem;
}
body.checkout section.faq .questions .faq-item {
  border: 1px solid lightgray;
  border-radius: 3px;
}
body.checkout section.faq .questions .faq-item + .faq-item {
  border-top: 1px solid #ddd;
  margin-top: 1rem;
}
body.checkout section.faq .questions .faq-item.is-active .answer {
  display: block;
}
body.checkout section.faq .questions .faq-item.is-active .question {
  border-bottom: 1px solid #ddd;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
body.checkout section.faq .questions .faq-item.is-active .question svg {
  transform: rotate(270deg);
}
body.checkout section.faq .questions .faq-item .question {
  font-weight: bold;
  padding: 20px;
  padding-right: 40px;
  position: relative;
  background: white;
  cursor: pointer;
  border-radius: 3px;
}
body.checkout section.faq .questions .faq-item .question svg {
  position: absolute;
  right: 20px;
  top: 24px;
}
body.checkout section.faq .questions .faq-item .answer {
  padding: 20px;
  display: none;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.input-payment-logo {
  display: flex;
  justify-content: start;
  align-items: center;
}
.input-payment-logo img {
  height: 27px;
  margin: 0 0.4rem;
}
.input-payment-logo {
  z-index: 1;
}

#hook-form {
  background-color: #4f27e6;
  border-bottom: 2px solid #3b17c5;
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 31px 8px;
  border-radius: 10px;
}
#hook-form:hover {
  background-color: #3b17c5;
  font-size: 'Poppins';
}