@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,regular,500,600,700,800,300italic,italic,500italic,600italic,700italic,800italic|Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);@font-face {
    font-family: 'pp_right_groteskwide_black';
    src: url('https://cors.sketchanet.com/fonts/gameshow-studios/pprightgrotesk-wideblack-webfont.woff2') format('woff2'),
         url('https://cors.sketchanet.com/fonts/gameshow-studios/pprightgrotesk-wideblack-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@media (max-width: 480px) {
  .logo{
        transform: translateX(0px);
        max-width: 200px !important;
    }
}

.h2_1035758{
    text-wrap: balance;
}


a.a_1035738 {
  display: inline-block;
  text-align: center;
  color: #fdc64c;
  background: #000;
  border: 1px solid #ffffff;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.25s ease;

  /* DESKTOP — bigger */
  font-size: 20px;
  padding: 14px 24px 14px;  /* top | left/right | bottom */
  line-height: 1.2;
}

/* Hover */
a.a_1035738:hover {
  color: #000;
  background: #fdc64c;
  border-color: #fdc64c;
  box-shadow: 0 0 14px rgba(253, 198, 76, 0.6);
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 900px) {
  a.a_1035738 {
    font-size: 18px;
    padding: 14px 26px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  a.a_1035738 {
    font-size: 14px;
    padding: 10px 22px;
  }
}

/* Small Mobile */
@media (max-width: 400px) {
  a.a_1035738 {
    font-size: 12px;
    padding: 10px 20px;
  }
}

.arrow-svg {
  width: 90px;
  height: 50px;
}

/* Smaller screens */
@media (max-width: 600px) {
  .arrow-svg {
    width: 60px;
    height: 34px;
  }
}

@media (max-width: 400px) {
  .arrow-svg {
    width: 45px;
    height: 26px;
  }
}


/* ================================
   ENCORE FORM – FULL CUSTOM STYLING
   (drop this in place of their CSS)
================================ */

/* Base container */
.encore-pro-form-container {
  display: grid;
  max-width: 1100px;
  margin: 0 auto 2rem;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 24px;
  padding: 0;
  box-sizing: border-box;
}

/* Optional title / description / header image if you ever use them */
.encore-pro-form-container .form-title {
  font-size: 28px;
  font-weight: 500;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  margin: 0 0 12px;
  grid-column: 1 / 3;
}

.encore-pro-form-container .form-description {
  font-size: 18px;
  margin: 0 0 16px;
  white-space: pre-wrap;
  word-wrap: break-word;
  grid-column: 1 / 3;
}

.encore-pro-form-container .form-description .editor-paragraph {
  margin: 0;
  line-height: 1.2;
}

.encore-pro-form-container .header-image {
  display: block;
  margin: 0 auto 16px;
  max-width: 100%;
  max-height: 30rem;
  grid-column: 1 / 3;
}

/* Error message hook (Encore can inject text here) */
.encore-pro-form-container .error-message {
  color: #de2b15;
  grid-column: 1 / 3;
  font-size: 14px;
}

/* ================================
   GRID LAYOUT FOR FIELDS
================================ */

/* Default: inputs take full width */
.encore-pro-form-container .input {
  grid-column: 1 / 3;
  position: relative;
}

/* First + Last: side-by-side */
.encore-pro-form-container .input.double {
  grid-column: span 1;
}

/* Required marker (kept if Encore uses .required) */
.encore-pro-form-container .input.required label::after {
  content: "*";
  color: #e75560;
  padding-left: 0.25rem;
}

/* ================================
   LABELS
================================ */

.encore-pro-form-container .input label {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  user-select: none;
}

/* ================================
   INPUT “CARD” STYLE
================================ */

.encore-pro-form-container .input .as-input {
  display: block;
  width: 100%;
}

.encore-pro-form-container .input .as-input .required {
  color: #e75560;
}

/* Outer wrapper becomes the white card */
.encore-pro-form-container .input .as-input .wrapper {
  background-color: #ffffff;
  border-radius: 0;
  border: 1px solid #000000;
  display: block;
  outline: none;
  padding: 0;
  position: relative;
  z-index: 0;
  box-sizing: border-box;
}

/* Remove their blue focus-outline behaviour */
.encore-pro-form-container .input .as-input .wrapper:focus-within {
  outline: none;
}

/* The actual <input> */
.encore-pro-form-container .input .as-input .wrapper .input {
  border: none;
  font-size: 20px;
  line-height: 1.2;
  height: auto;
  min-width: 0;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  padding: 14px;
  box-sizing: border-box;
  background: #ffffff;
  color: #000000;
}

/* Black focus ring on the input itself */
.encore-pro-form-container .input .as-input .wrapper .input:focus {
  outline: 2px solid #000000;
}

/* Let any existing placeholders appear in black */
.encore-pro-form-container .input .as-input .wrapper .input::placeholder {
  color: #000000;
  opacity: 1;
}

/* ================================
   SUBMIT BUTTON – YELLOW CTA
================================ */

.encore-pro-form-container .button {
  align-items: center;
  background-color: #fdc64c;
  color: #000000;
  border-radius: 0;
  border: none;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  font-weight: 800; /* Open Sans “black” weight */
  height: auto;
  justify-content: center;
  padding: 14px;
  margin-top:16px;
  grid-column: 1 / 3;
  text-align: center;
  text-transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.encore-pro-form-container .button .button-label {
  display: inline-block;
  min-width: 3rem;
  padding-top: 1px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.encore-pro-form-container .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

/* ================================
   CHECKBOX + INTERESTS (if used)
================================ */

.encore-pro-form-container .checkbox {
  align-items: center;
  display: flex;
  gap: 0.5rem;
  grid-column: 1 / 3;
}

.encore-pro-form-container .checkbox input {
  cursor: pointer;
  height: 20px;
  width: 20px;
}

.encore-pro-form-container .interests {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.encore-pro-form-container .interests li {
  padding-left: 0;
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 700px) {
  .encore-pro-form-container {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .encore-pro-form-container .input,
  .encore-pro-form-container .input.double,
  .encore-pro-form-container .button,
  .encore-pro-form-container .form-title,
  .encore-pro-form-container .form-description,
  .encore-pro-form-container .header-image {
    grid-column: 1 / 2;
  }

  .encore-pro-form-container .input .as-input .wrapper .input {
    font-size: 16px;
    padding: 10px;
  }

  .encore-pro-form-container .button {
    font-size: 20px;
    padding: 12px;
    margin-top: 16px;
  }
}


:root {
  /* This is what JS will control */
  --scroll-rotation: 0deg;
}

.scroll-rotate-img {
  max-width: 100%;
  transform-origin: center center;
  transform: rotate(var(--scroll-rotation));
  will-change: transform;
  transition: transform 0.05s linear; /* tiny smoothing, optional */
}

.preloader{color:#000000; }
#wrap{min-width:0px; }
.baseparagraph, .fakep, .skn-cell-standard ul, .skn-cell-standard ol, .p_1035283, p{font-family:pp_right_groteskwide_black; font-size:24px; font-size:2rem; color:#ffffff; font-weight:normal; font-style:normal; text-decoration:none; text-align:left; letter-spacing:normal; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:1.6; text-shadow:none; width:100%; margin-top:0%; margin-right:auto; margin-bottom:0%; margin-left:auto; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.skn-post-content.p_1035786 p, .skn-post-content.p_1035786 ul.skn-text-list, .skn-post-content.p_1035786 ol.skn-text-list, .p_1035786{font-size:14.4px; font-size:1.2rem; margin-right:auto; margin-left:auto; }
.skn-post-content.p_1036398 p, .skn-post-content.p_1036398 ul.skn-text-list, .skn-post-content.p_1036398 ol.skn-text-list, .p_1036398{margin-right:auto; margin-left:auto; }
.skn-post-content.p_1036803 p, .skn-post-content.p_1036803 ul.skn-text-list, .skn-post-content.p_1036803 ol.skn-text-list, .p_1036803{font-family:"Open Sans"; font-size:14.4px; font-size:1.2rem; margin-right:auto; margin-left:auto; }
.span_1035913{color:#FFFFFF; }
.span_1036480{text-transform:uppercase; }
.span_1036497{color:#000000; }
.baseheading, h1, h2, h3, h4, h5, h6, .h2_1035292, h2{font-family:pp_right_groteskwide_black; font-size:54px; font-size:4.5rem; color:#ffffff; font-weight:900; font-style:normal; text-decoration:none; text-align:center; letter-spacing:normal; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:1.4; text-shadow:none; width:100%; margin-top:0%; margin-right:auto; margin-bottom:0%; margin-left:auto; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.h2_1035331{font-size:54px; font-size:4.5rem; font-weight:900; margin-right:auto; margin-left:auto; }
.h2_1035745{color:#FDC64C; text-align:center; line-height:1.2; margin-right:auto; margin-left:auto; }
.h2_1035758{color:#FDC64C; line-height:1.2; margin-right:auto; margin-left:auto; }
.h2_1036804{font-size:26.4px; font-size:2.2rem; margin-right:auto; margin-left:auto; }
a{font-family:inherit; font-size:0px; font-size:inherit; color:#FDC64C; font-weight:inherit; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:inherit; text-shadow:none; }
a:hover{color:#FFFFFF; text-shadow:none; }
.a_1035738{font-family:inherit; font-size:0px; font-size:inherit; color:#FDC64C; font-weight:900; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:inherit; text-transform:inherit; font-variant:inherit; line-height:inherit; }
.a_1035912{font-family:inherit; font-size:0px; font-size:inherit; color:inherit; font-weight:inherit; font-style:inherit; text-decoration:inherit; text-align:inherit; letter-spacing:inherit; word-spacing:inherit; text-transform:inherit; font-variant:inherit; line-height:inherit; }
.ul_1035285> li.selected, .icon.ul_1035291:after{color:#d7d7d8; word-spacing:normal; text-transform:inherit; font-variant:inherit; text-shadow:none; }
.ul_1035285> li.selected, .icon.ul_1035290:after{color:#e9eaea; word-spacing:normal; text-transform:inherit; font-variant:inherit; text-shadow:none; }
.ul_1035286> li.selected, .icon.ul_1035289:after{color:#e9eaea; word-spacing:normal; text-transform:inherit; font-variant:inherit; text-shadow:none; }
.ul_1035286> li:hover, .icon.ul_1035288:after{color:#e9eaea; word-spacing:normal; text-transform:inherit; font-variant:inherit; text-shadow:none; }
.ul_1035285> li:hover, .icon.ul_1035287:after{color:#d7d7d8; word-spacing:normal; text-transform:inherit; font-variant:inherit; text-shadow:none; }
.ul_1035286> li, .icon.ul_1035286:after{font-family:Arial; font-size:14.4px; font-size:1.2rem; color:#ffffff; font-weight:normal; font-style:normal; text-decoration:none; text-align:center; letter-spacing:normal; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:1.5; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:0%; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.ul_1035285> li, .icon.ul_1035285:after{font-family:Montserrat; font-size:10.8px; font-size:0.9rem; color:#ffffff; font-weight:700; font-style:normal; text-decoration:none; text-align:center; letter-spacing:0.2em; word-spacing:normal; text-transform:inherit; font-variant:inherit; line-height:1.2; text-shadow:none; margin-top:0%; margin-right:0%; margin-bottom:0%; margin-left:2%; padding-top:0%; padding-right:0%; padding-bottom:0%; padding-left:0%; }
.custom-stylesheet-var{z-index:20211209; position:relative; }
.grid-stylsheet-test{position:absolute; z-index:-5;; }
.width_1035227{width:100%; }
.max_width_1035228{max-width:960px; }
.max_width_1035265{max-width:1200px; }
.max_width_1035275{max-width:800px; }
.max_width_1035779{max-width:1920px; }
.max_width_1035782{max-width:1500px; }
.max_width_1036416{max-width:600px; }
.max_width_1036481{max-width:700px; }
.grid-setting-1035229 .masonry-column-sizer{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols1{width:5.5833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols2{width:14.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols3{width:22.75%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols4{width:31.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols5{width:39.916666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols6{width:48.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols7{width:57.083333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols8{width:65.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols9{width:74.25%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols10{width:82.833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols11{width:91.416666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell.cols12{width:100%; }
.grid-setting-1035229 .masonry-gutter-sizer{width:3%; }
.skn-section:not(.custom-grid) .grid-setting-1035229 .skn-cell{margin-bottom:5%; }
.grid-setting-1035746 .masonry-column-sizer{width:calc(100% / 1); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035746 .skn-cell.cols1{width:calc(100% * 1 / 1); }
.grid-setting-1035746 .masonry-gutter-sizer{width:0%; }
.skn-section:not(.custom-grid) .grid-setting-1035746 .skn-cell{margin-bottom:5%; }
.grid-setting-1035747 .masonry-column-sizer{width:calc(100% / 6); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035747 .skn-cell.cols1{width:calc(100% * 1 / 6); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035747 .skn-cell.cols2{width:calc(100% * 2 / 6); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035747 .skn-cell.cols3{width:calc(100% * 3 / 6); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035747 .skn-cell.cols4{width:calc(100% * 4 / 6); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035747 .skn-cell.cols5{width:calc(100% * 5 / 6); }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035747 .skn-cell.cols6{width:calc(100% * 6 / 6); }
.grid-setting-1035747 .masonry-gutter-sizer{width:0%; }
.skn-section:not(.custom-grid) .grid-setting-1035747 .skn-cell{margin-bottom:0%; }
.grid-setting-1035818 .masonry-column-sizer{width:14.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035818 .skn-cell.cols1{width:14.166666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035818 .skn-cell.cols2{width:31.333333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035818 .skn-cell.cols3{width:48.5%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035818 .skn-cell.cols4{width:65.666666666667%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035818 .skn-cell.cols5{width:82.833333333333%; }
body[data-skn-threshold="960"] .skn-section:not(.custom-grid) .grid-setting-1035818 .skn-cell.cols6{width:100%; }
.grid-setting-1035818 .masonry-gutter-sizer{width:3%; }
.skn-section:not(.custom-grid) .grid-setting-1035818 .skn-cell{margin-bottom:5%; }
.padding_1035231{padding:1% 0% 1% 0%; }
body[data-skn-threshold="620"] .padding_1035231{padding:2% 0% 2% 0%; }
.padding_1035232{padding:2% 0% 2% 0%; }
body[data-skn-threshold="620"] .padding_1035232{padding:4% 0% 4% 0%; }
.padding_1035233{padding:3% 0% 3% 0%; }
body[data-skn-threshold="620"] .padding_1035233{padding:6% 0% 6% 0%; }
.padding_1035234{padding:4% 0% 4% 0%; }
body[data-skn-threshold="620"] .padding_1035234{padding:8% 0% 8% 0%; }
.padding_1035235{padding:5% 0% 5% 0%; }
body[data-skn-threshold="620"] .padding_1035235{padding:10% 0% 10% 0%; }
.padding_1035237{padding:1% 1% 1% 1%; }
body[data-skn-threshold="620"] .padding_1035237{padding:2% 2% 2% 2%; }
.padding_1035238{padding:2% 2% 2% 2%; }
body[data-skn-threshold="620"] .padding_1035238{padding:4% 4% 4% 4%; }
.padding_1035239{padding:3% 3% 3% 3%; }
body[data-skn-threshold="620"] .padding_1035239{padding:6% 6% 6% 6%; }
.padding_1035240{padding:4% 4% 4% 4%; }
body[data-skn-threshold="620"] .padding_1035240{padding:8% 8% 8% 8%; }
.padding_1035241{padding:5% 5% 5% 5%; }
body[data-skn-threshold="620"] .padding_1035241{padding:10% 8% 10% 8%; }
.padding_1035243{padding:1% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1035243{padding:2% 0% 0% 0%; }
.padding_1035244{padding:2% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1035244{padding:4% 0% 0% 0%; }
.padding_1035245{padding:3% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1035245{padding:6% 0% 0% 0%; }
.padding_1035246{padding:4% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1035246{padding:8% 0% 0% 0%; }
.padding_1035247{padding:5% 0% 0% 0%; }
body[data-skn-threshold="620"] .padding_1035247{padding:10% 0% 0% 0%; }
.padding_1035248{padding:0% 0% 1% 0%; }
body[data-skn-threshold="620"] .padding_1035248{padding:0% 0% 2% 0%; }
.padding_1035249{padding:0% 0% 2% 0%; }
body[data-skn-threshold="620"] .padding_1035249{padding:0% 0% 4% 0%; }
.padding_1035250{padding:0% 0% 3% 0%; }
body[data-skn-threshold="620"] .padding_1035250{padding:0% 0% 6% 0%; }
.padding_1035251{padding:0% 0% 4% 0%; }
body[data-skn-threshold="620"] .padding_1035251{padding:0% 0% 8% 0%; }
.padding_1035252{padding:0% 0% 5% 0%; }
body[data-skn-threshold="620"] .padding_1035252{padding:0% 0% 10% 0%; }
.padding_1035253{padding:0% 1% 0% 1%; }
body[data-skn-threshold="620"] .padding_1035253{padding:0% 2% 0% 2%; }
.padding_1035254{padding:0% 2% 0% 2%; }
body[data-skn-threshold="620"] .padding_1035254{padding:0% 4% 0% 4%; }
.padding_1035255{padding:0% 3% 0% 3%; }
body[data-skn-threshold="620"] .padding_1035255{padding:0% 6% 0% 6%; }
.padding_1035256{padding:0% 4% 0% 4%; }
body[data-skn-threshold="620"] .padding_1035256{padding:0% 8% 0% 8%; }
.padding_1035257{padding:0% 5% 0% 5%; }
body[data-skn-threshold="620"] .padding_1035257{padding:0% 8% 0% 8%; }
.padding_1035271{padding:15% 0% 15% 0%; }
body[data-skn-threshold="620"] .padding_1035271{padding:20% 0% 20% 0%; }
.padding_1035273{padding:10% 0% 10% 0%; }
body[data-skn-threshold="620"] .padding_1035273{padding:20% 0% 20% 0%; }
.padding_1035274{padding:20% 0% 20% 0%; }
body[data-skn-threshold="620"] .padding_1035274{padding:20% 0% 20% 0%; }
.padding_1035277{padding:0% 4% 4% 4%; }
body[data-skn-threshold="620"] .padding_1035277{padding:0% 8% 8% 8%; }
.padding_1035278{padding:2% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1035278{padding:4% 6% 4% 6%; }
.padding_1035740{padding:4% 3% 4% 3%; }
body[data-skn-threshold="620"] .padding_1035740{padding:8% 6% 8% 6%; }
.padding_1035918{padding:4% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1035918{padding:8% 6% 4% 6%; }
.padding_1035920{padding:2% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1035920{padding:4% 6% 4% 6%; }
.padding_1035927{padding:2% 3% 2% 3%; }
body[data-skn-threshold="620"] .padding_1035927{padding:4% 6% 4% 6%; }
.padding_1035949{padding:2% 3% 4% 3%; }
body[data-skn-threshold="620"] .padding_1035949{padding:4% 6% 8% 6%; }
.padding_1036498{padding:6% 3% 6% 3%; }
body[data-skn-threshold="620"] .padding_1036498{padding:12% 6% 12% 6%; }
.skn-cell-widget-menu[data-menu-id="1035236"] .skn-menu-wrap{top:0px; left:0px; }
.skn-subnav[data-menu-id="1035236"] .skn-menu-wrap{top:0px; left:0px; }
.skn-cell-widget-menu[data-menu-id="1035242"] .skn-menu-wrap{top:0px; left:0px; }
.skn-subnav[data-menu-id="1035242"] .skn-menu-wrap{top:0px; left:0px; }
.skn-cell-widget-menu[data-menu-id="1035272"] .skn-menu-wrap{top:0px; left:0px; }
.skn-subnav[data-menu-id="1035272"] .skn-menu-wrap{top:0px; left:0px; }
.skn-cell-widget-menu[data-menu-id="1035276"] .skn-menu-wrap{top:0px; left:0px; }
.skn-subnav[data-menu-id="1035276"] .skn-menu-wrap{top:0px; left:0px; }
.gallery_setting_1035263 .slide{transition:opacity 1s ease; will-change:opacity; width:calc(100% / 1); }
.gallery_setting_1035263 .carousel-dot-group{display:none; }
.gallery_setting_1035263 .carousel-dot-row{justify-content:center; }
.gallery_setting_1035263 .carousel-dot{margin:0 0px; }
.gallery_setting_1035263 .carousel-dot:before{height:px; width:px; }
.lightbox .gallery_setting_1035264 .slide{width:100% !important; transition:opacity 1s ease; will-change:opacity; }
.gallery_setting_1035264 .carousel-dot-group{display:none; }
.gallery_setting_1035264 .carousel-dot-row{justify-content:center; }
.gallery_setting_1035264 .carousel-dot{margin:0 0px; }
.gallery_setting_1035264 .carousel-dot:before{height:px; width:px; }
.lightbox .gallery_setting_1035268 .slide{width:100% !important; transition:opacity 1s ease; will-change:opacity; }
.gallery_setting_1035268 .carousel-dot-group{display:none; }
.gallery_setting_1035268 .carousel-dot-row{justify-content:center; }
.gallery_setting_1035268 .carousel-dot{margin:0 0px; }
.gallery_setting_1035268 .carousel-dot:before{height:px; width:px; }
.margin_1035266{margin-top:0%; margin-bottom:0%; }
.skn-inline.margin_1035266{margin-right:0%; margin-left:0%; }
.background_1035737.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/320/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/320/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/320/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/683/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/683/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/683/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/960/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/960/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/960/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1366/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1366/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1366/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1920/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1920/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1920/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2400/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2400/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2400/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3360/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3360/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3360/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035737.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1765585583gameshow-live--new-buzzersspeedboatpurple.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035737.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1765585583gameshow-live--new-buzzersspeedboatpurple.webp"); }
.avif .background_1035737.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1765585583gameshow-live--new-buzzersspeedboatpurple.avif"); }
.background_1035752.in-view[data-skn-threshold="160"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="160"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="160"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="320"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="320"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="320"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="480"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="480"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="480"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="683"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="683"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="683"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="960"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="960"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="960"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="1366"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="1366"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="1366"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="1920"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="1920"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="1920"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="2400"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="2400"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="2400"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="2880"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="2880"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="2880"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="3360"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="3360"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="3360"]{background-image:url(""); }
.background_1035752.in-view[data-skn-threshold="3840"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035752.in-view[data-skn-threshold="3840"]{background-image:url(""); }
.avif .background_1035752.in-view[data-skn-threshold="3840"]{background-image:url(""); }
.background_1035805.in-view:after{position:absolute; content:""; z-index:-1; display:block; background-color:rgba(0, 0, 0, 0.6); left:0; bottom:0; right:0; top:0; }
.background_1035805.in-view[data-skn-threshold="160"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="160"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="160"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="320"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="320"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="320"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="480"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="480"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="480"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="683"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="683"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="683"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="960"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="960"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="960"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="1366"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="1366"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="1366"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="1920"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="1920"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="1920"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="2400"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="2400"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="2400"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="2880"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="2880"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="2880"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="3360"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="3360"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="3360"]{background-image:url(""); }
.background_1035805.in-view[data-skn-threshold="3840"]{background-image:url(""); background-size:auto; background-repeat:no-repeat; background-position:top left; background-attachment:scroll; }
.webp .background_1035805.in-view[data-skn-threshold="3840"]{background-image:url(""); }
.avif .background_1035805.in-view[data-skn-threshold="3840"]{background-image:url(""); }
.background_1035941.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/320/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/320/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="160"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/320/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/683/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/683/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="320"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/683/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/960/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/960/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="480"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/960/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1366/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1366/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="683"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1366/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1920/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1920/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="960"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/1920/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="1366"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="1920"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2400/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2400/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="2400"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2400/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="2880"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/2880/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3360/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3360/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="3360"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3360/1763986175jet-ski-bath-copy.avif"); }
.background_1035941.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1763986175jet-ski-bath-copy.png"); background-size:cover; background-repeat:no-repeat; background-position:50% 50%; background-attachment:scroll; }
.webp .background_1035941.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1763986175jet-ski-bath-copy.webp"); }
.avif .background_1035941.in-view[data-skn-threshold="3840"]{background-image:url("https://cloudfront.sketchanet.com/u/1035217/images/3840/1763986175jet-ski-bath-copy.avif"); }
.complexSwatch1037568{background-color:#000000; background-color:rgba(0, 0, 0, 1); border-radius:11px 11px 11px 11px; border:1px solid rgb(253, 198, 76); border:1px solid rgba(253, 198, 76, 1); }
.complexSwatch1037568:before{border-radius:10px 10px 10px 10px; }
.complexSwatch1037568:after{border-radius:10px 10px 10px 10px; }
.complexSwatch1037568 > .skn-background-video{border-radius:10px 10px 10px 10px; }
.complexSwatch1037568 > .skn-background-gallery{border-radius:10px 10px 10px 10px; }
.complexSwatch1035281{background-color:#FDC64C; background-color:rgba(253, 198, 76, 1); border:none; }
.complexSwatch1035280{background-color:#000000; background-color:rgba(0, 0, 0, 1); border:none; }
.complexSwatch1035279{background-color:#ffffff; background-color:rgba(255, 255, 255, 1); border:none; }
.sknform, .sknform *{-webkit-box-sizing:border-box; -moz-box-sizing:border-box; box-sizing:border-box; }
