/**
    Theme Name: Sweepsjoy Theme
    Version: 1.0
 */
:root {
  --font-family: "Poppins", sans-serif;
  --default-color: #fff;
  --content-font-size: 18px;
  --content-line-height: 26px;
  --primary-color: rgba(30,218,230,1);
  --secondary-color: rgba(137,57,251,1);
  --tertiary-color: #1a7ee5;
  --dark-blue-color: #043495;
  --underline-color: #f8e115;
  --column-gap: 30px;
  --vertical-separation: 60px;
  --column-width: 400px;
  --email-input-max-width: 500px;
  --transparent-light-background: rgba(255,255,255,0.3);
  --light-color: rgba(255,255,255,0.5);
  --transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  :root {
    --email-input-max-width: 600px;
    --vertical-separation: 40px;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

html {
  overflow-x: hidden;
}

body {
  background: var(--primary-color);
  background: linear-gradient(-90deg, var(--primary-color) 20%, var(--secondary-color) 70%);
  font-family: var(--font-family);
  color: var(--default-color);
  font-size: var(--content-font-size);
  line-height: var(--content-line-height);
  margin: 0;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    background: linear-gradient(-100deg, var(--primary-color) 20%, var(--secondary-color) 60%);
  }
}
body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
  background-image: url("../sweepscash-theme/img/shine.png.optimized.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 60% 0;
  z-index: 1;
  filter: opacity(0.3);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  body:before {
    display: none;
  }
}
body:after {
  content: "";
  position: absolute;
  top: 130px;
  left: 0;
  width: 132px;
  height: 270px;
  background-image: url("../sweepscash-theme/img/coins-bg.png.optimized.webp");
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  body:after {
    display: none;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 16px;
}

h4, h5, h6 {
  font-size: 14px;
}

.center-underline, .left-underline {
  display: inline-block;
  position: relative;
}
.center-underline:before, .left-underline:before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  width: 40%;
  background: var(--underline-color);
}

.left-underline:before {
  right: auto;
}
@media screen and (max-width: 768px) {
  .left-underline:before {
    right: 0;
  }
}

.main-navigation {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: 14px;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation span {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 13px;
}
.main-navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-navigation ul li {
  margin: 0 20px;
}
.main-navigation ul li a {
  text-decoration: none;
  color: var(--default-color);
  transition: var(--transition);
}
.main-navigation ul li a.btn-rounded {
  padding: 5px 20px;
  border-radius: 50px;
  background: #fff;
  color: var(--dark-blue-color);
  font-size: 14px;
  transition: var(--transition);
}
.main-navigation ul li a.btn-rounded:hover {
  background: var(--secondary-color);
  color: #fff;
}

.site-wrapper {
  position: relative;
  max-width: 1169px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 100;
}
.site-wrapper .section-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--vertical-separation) 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .site-wrapper .section-flex {
    flex-direction: column;
  }
}
.site-wrapper .section-flex .section-flex-item {
  position: relative;
}
.site-wrapper .section-flex .section-flex-item > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.site-wrapper .section-flex.columns-1 .section-flex-item {
  flex: 0 1 80%;
}
.site-wrapper .section-flex.columns-2 .section-flex-item {
  flex: 0 1 var(--column-width);
}
@media screen and (max-width: 768px) {
  .site-wrapper .section-flex.columns-2 {
    gap: 0;
  }
  .site-wrapper .section-flex.columns-2 .section-flex-item {
    flex: 0 1 100%;
  }
  .site-wrapper .section-flex.columns-2 .section-flex-item:nth-child(1) {
    order: 1;
  }
  .site-wrapper .section-flex.columns-2 .section-flex-item:nth-child(2) {
    order: 2;
  }
  .site-wrapper .section-flex.columns-2 .section-flex-item > div {
    margin: 0 0 10px 0;
  }
}
.site-wrapper .section-flex.columns-2 .flex-fixed {
  flex: 0 0 var(--column-width);
}
.site-wrapper .section-flex.footer {
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--light-color);
}
.site-wrapper .section-flex.footer .section-flex-item {
  flex: 0 1 100%;
}
.site-wrapper .columns-1, .site-wrapper .columns-2 {
  text-align: center;
}
.site-wrapper .columns-1 {
  flex: 1;
}
.site-wrapper .columns-2 {
  flex: 1 1 50%;
  gap: var(--column-gap);
}
@media screen and (max-width: 768px) {
  .site-wrapper div:nth-child(2) {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .site-wrapper .site-logo {
    max-width: 75%;
  }
}
@media screen and (max-width: 768px) {
  .site-wrapper .pirate-logo-mobile {
    max-width: 75%;
  }
}

.social-separation {
  position: relative;
  overflow: hidden;
  margin: var(--vertical-separation) 0;
}
.social-separation > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
.social-separation > div span {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 15px 0 0;
}
.social-separation:before, .social-separation:after {
  content: "";
  position: absolute;
  width: calc(50% - 120px);
  height: 1px;
  top: -8px;
  left: 0;
  background: var(--transparent-light-background);
  margin: 20px 0;
}
.social-separation:after {
  right: 0;
  left: auto;
}

.input-form-wrapper {
  min-height: 53px;
}
.input-form-wrapper * {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.input-form-wrapper .fellsburg-FieldsElement--content, .input-form-wrapper .newyorkcity-FieldsElement--content {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: space-between !important;
  max-width: var(--email-input-max-width) !important;
  width: 100% !important;
  background: var(--transparent-light-background) !important;
  border-radius: 50px !important;
  text-align: left !important;
  padding: 4px !important;
}
.input-form-wrapper .fellsburg-FieldsElement--content .fellsburg-FieldsElement--field-wrapper, .input-form-wrapper .fellsburg-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper, .input-form-wrapper .newyorkcity-FieldsElement--content .fellsburg-FieldsElement--field-wrapper, .input-form-wrapper .newyorkcity-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper {
  padding: 0 !important;
  width: 100% !important;
}
.input-form-wrapper .fellsburg-FieldsElement--content .fellsburg-FieldsElement--field-wrapper input[type=email], .input-form-wrapper .fellsburg-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper input[type=email], .input-form-wrapper .newyorkcity-FieldsElement--content .fellsburg-FieldsElement--field-wrapper input[type=email], .input-form-wrapper .newyorkcity-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper input[type=email] {
  width: 100% !important;
  padding: 12px 20px !important;
  border: none !important;
  font-size: 14px !important;
  font-family: var(--font-family) !important;
  color: var(--default-color) !important;
  background: none !important;
  margin: 0 !important;
}
.input-form-wrapper .fellsburg-FieldsElement--content .fellsburg-FieldsElement--field-wrapper input[type=email]::placeholder, .input-form-wrapper .fellsburg-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper input[type=email]::placeholder, .input-form-wrapper .newyorkcity-FieldsElement--content .fellsburg-FieldsElement--field-wrapper input[type=email]::placeholder, .input-form-wrapper .newyorkcity-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}
.input-form-wrapper .fellsburg-FieldsElement--content .fellsburg-FieldsElement--field-wrapper input[type=email]:focus, .input-form-wrapper .fellsburg-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper input[type=email]:focus, .input-form-wrapper .newyorkcity-FieldsElement--content .fellsburg-FieldsElement--field-wrapper input[type=email]:focus, .input-form-wrapper .newyorkcity-FieldsElement--content .newyorkcity-FieldsElement--field-wrapper input[type=email]:focus {
  outline: none !important;
}
.input-form-wrapper .fellsburg-FieldsElement--content button.fellsburg-field-submit, .input-form-wrapper .fellsburg-FieldsElement--content button.newyorkcity-field-submit, .input-form-wrapper .newyorkcity-FieldsElement--content button.fellsburg-field-submit, .input-form-wrapper .newyorkcity-FieldsElement--content button.newyorkcity-field-submit {
  padding: 10px 16px !important;
  background: #fff !important;
  font-size: 14px !important;
  border: none !important;
  width: 160px !important;
  color: var(--tertiary-color) !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  cursor: pointer !important;
  font-family: var(--font-family) !important;
  margin: 0 !important;
}
.input-form-wrapper .fellsburg-FieldsElement--content button.fellsburg-field-submit:hover, .input-form-wrapper .fellsburg-FieldsElement--content button.newyorkcity-field-submit:hover, .input-form-wrapper .newyorkcity-FieldsElement--content button.fellsburg-field-submit:hover, .input-form-wrapper .newyorkcity-FieldsElement--content button.newyorkcity-field-submit:hover {
  background: var(--secondary-color);
  color: #fff;
}

.fellsburg-error, .newyorkcity-error {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 10px !important;
  background: #ff4de1 !important;
  border: 1px solid rgb(255, 255, 255) !important;
  padding: 5px !important;
  color: #fff !important;
  border-radius: 30px !important;
}

.fellsburg-te-wrapper, .newyorkcity-te-wrapper {
  background: rgba(255, 255, 255, 0.2) !important;
}
.fellsburg-te-wrapper p, .newyorkcity-te-wrapper p {
  padding: 15px 30px !important;
}
.fellsburg-te-wrapper p span, .newyorkcity-te-wrapper p span {
  font-size: 14px !important;
}

.slider {
  flex-wrap: nowrap !important;
  flex-direction: column;
  overflow: hidden;
}
.slider .slider-area {
  display: flex;
  flex-wrap: nowrap !important;
  order: 1;
  transition: all 1s ease;
  transform: translateX(0%);
}
.slider .slider-area .slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex: 0 0 100%;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .slider .slider-area .slider-item {
    flex-direction: column;
    gap: 10px;
  }
  .slider .slider-area .slider-item div:nth-child(1), .slider .slider-area .slider-item div:nth-child(2) {
    flex: 0 1 100%;
    text-align: center;
  }
}
.slider .slider-area .slider-item img {
  max-width: 300px;
}
.slider .slider-area .slider-item > div:nth-child(1) {
  flex: 0 1 50%;
  width: 50%;
}
.slider .slider-area .slider-item > div:nth-child(2) {
  display: flex;
  justify-content: center;
  flex: 0 1 250px;
}
.slider .slider-area .slider-item > div:nth-child(2) img {
  margin: 0 auto;
}
.slider .slider-controls-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  order: 2;
}
.slider .slider-controls-dots span {
  background: var(--transparent-light-background);
  border: none;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.slider .slider-controls-dots span:hover {
  background: var(--transparent-light-background);
}
.slider .slider-controls-dots span.active {
  background: #fff;
}

.floating-icon {
  position: absolute;
}
.floating-icon.left-center {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.floating-icon.left-center.outside {
  left: -50%;
}
.floating-icon.right-bottom {
  right: 0;
  bottom: 0;
}
.floating-icon.right-bottom.outside {
  right: -50%;
}
@media screen and (max-width: 768px) {
  .floating-icon {
    display: none;
  }
}

.offer-text {
  display: flex;
  flex-wrap: wrap;
  font-size: 26px;
  font-weight: 700;
  margin: 40px 0;
  padding: 0;
  text-align: left;
  line-height: 30px;
}
@media screen and (max-width: 768px) {
  .offer-text {
    text-align: center;
    font-size: 22px;
    line-height: 26px;
    margin: 15px 0;
  }
}

.slider-3d-wrapper {
  position: relative;
}
@media screen and (max-width: 768px) {
  .slider-3d-wrapper {
    margin: 0 0 60px 0;
  }
}
.slider-3d-wrapper .slider-3d {
  display: flex;
  flex-wrap: nowrap !important;
}
.slider-3d-wrapper .slider-3d .slider-3d-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  flex: 0 0 260px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  background: #fff;
  color: #000;
  font-size: 16px;
  line-height: normal;
  padding: 30px 20px;
  position: relative;
  transition: transform 1s ease;
  transition: all 1s ease;
}
.slider-3d-wrapper .slider-3d .slider-3d-item h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}
.slider-3d-wrapper .slider-3d .slider-3d-item p {
  margin: 0;
}
.slider-3d-wrapper .slider-3d .slider-3d-item .btn-rounded {
  background: #4df6ec;
  color: #000;
  text-decoration: none;
  padding: 10px 40px;
  border-radius: 20px;
}
.slider-3d-wrapper .slider-3d .slider-3d-item .slider-image-wrapper {
  max-width: 150px;
}
.slider-3d-wrapper .slider-3d .slider-3d-item.inactive {
  z-index: 0;
  filter: blur(5px);
  transform: scale(0.85);
}
.slider-3d-wrapper .slider-3d .slider-3d-item.active {
  z-index: 1;
  filter: none;
  transform: none;
  margin: 0 -30px;
}
.slider-3d-wrapper .slider-3d .slider-3d-item:before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3), 0 0 0 14px rgba(255, 255, 255, 0.3);
}
.slider-3d-wrapper .slider-3d .slider-3d-item.red:before {
  background: #e83e6c;
}
.slider-3d-wrapper .slider-3d .slider-3d-item.orange:before {
  background: #f7c543;
}
.slider-3d-wrapper .slider-3d .slider-3d-item.green:before {
  background: #40e863;
}
.slider-3d-wrapper .slider-3d-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: space-between !important;
  align-items: center;
  gap: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .slider-3d-wrapper .slider-3d-controls {
    top: auto;
    bottom: -100px;
    transform: none;
    justify-content: center !important;
  }
}
.slider-3d-wrapper .slider-3d-controls .prev, .slider-3d-wrapper .slider-3d-controls .next {
  background: none;
  border: none;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.slider-3d-wrapper .slider-3d-controls .prev:hover, .slider-3d-wrapper .slider-3d-controls .next:hover {
  transform: scale(1.1);
}

.mobile-visible {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .mobile-visible {
    display: flex !important;
  }
}

@media screen and (max-width: 768px) {
  .mobile-hidden {
    display: none !important;
  }
}

.stylish-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  max-width: 200px;
  height: 200px;
  position: relative;
}
.stylish-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.stylish-icon .small-arc {
  top: -40px;
  left: 50px;
}
.stylish-icon img {
  left: -20px;
  top: 10px;
  position: relative;
  max-width: 200px !important;
  z-index: 1;
}

/*# sourceMappingURL=style.css.map */
