/**
    Theme Name: Lukky Theme
    Version: 1.0
 */
:root {
  --font-family: "Poppins", sans-serif;
  --default-color: #fff;
  --content-font-size: 18px;
  --content-line-height: 27px;
  --primary-color: #1B105E;
  --secondary-color: rgba(137,57,251,1);
  --tertiary-color: #F6E54D;
  --dark-blue-color: #043495;
  --underline-color: #f8e115;
  --column-gap: 30px;
  --vertical-separation: 20px;
  --column-width: 400px;
  --email-input-max-width: 500px;
  --transparent-light-background: rgba(255,255,255,1);
  --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: 0px;
  }
}

/* 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);
  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;
}

.site-logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
}
.site-logo .swirls {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1000px;
}
.site-logo .logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 287px;
  height: 113px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: normal;
  width: 100%;
}

h1 {
  font-size: 54px;
  line-height: 54px;
  font-weight: 400;
}
h1 b {
  display: block;
  width: 100%;
  font-weight: 900;
  font-size: 48px;
  line-height: 54px;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 40px;
  }
  h1 b {
    font-size: 32px;
    line-height: 40px;
  }
}

h2 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: 23px;
}

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

.small-font {
  font-size: 16px;
  line-height: 25px;
}

.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;
  align-items: center;
  max-width: 1137px;
  margin: 0 auto;
  font-weight: 500;
  font-size: 14px;
  padding: 30px 20px;
}
@media screen and (max-width: 768px) {
  .main-navigation {
    display: none;
  }
}
.main-navigation ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 3;
}
.main-navigation ul li {
  margin: 0 10px;
}
.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;
  margin: 0 auto;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .site-wrapper {
    margin: 160px 0 0 0;
  }
}
.site-wrapper .section-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: var(--vertical-separation) auto;
  position: relative;
  max-width: 1137px;
  padding: 0 20px;
}
@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 .section-flex-item .how-it-works {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 0 0;
}
.site-wrapper .section-flex .section-flex-item .how-it-works h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  z-index: 3;
  position: relative;
}
.site-wrapper .section-flex .section-flex-item .how-it-works h3 span {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #fff;
  border-radius: 50%;
  font-size: 13px;
  line-height: 13px;
  font-weight: 700;
  width: 20px;
  height: 20px;
}
.site-wrapper .section-flex .section-flex-item .how-it-works p {
  position: relative;
  z-index: 3;
}
.site-wrapper .section-flex .section-flex-item .how-it-works div {
  border-radius: 20px;
  width: 32%;
  font-size: 15px;
  line-height: 22px;
  text-align: left;
  padding: 20px 80px 20px 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .site-wrapper .section-flex .section-flex-item .how-it-works div {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .site-wrapper .section-flex .section-flex-item .how-it-works div:last-child {
    margin: 0;
  }
}
.site-wrapper .section-flex .section-flex-item .how-it-works div img {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  background-repeat: no-repeat;
  width: auto;
  height: 88px;
}
.site-wrapper .section-flex .section-flex-item .how-it-works div:nth-child(1) {
  background: #EF63D8;
  background: linear-gradient(180deg, #EF63D8 0%, #BC0BDC 100%);
}
.site-wrapper .section-flex .section-flex-item .how-it-works div:nth-child(2) {
  background: #FF8556;
  background: linear-gradient(180deg, #FF8556 0%, #FC4480 100%);
}
.site-wrapper .section-flex .section-flex-item .how-it-works div:nth-child(3) {
  background: #AC4AF4;
  background: linear-gradient(180deg, #AC4AF4 0%, #6220F4 100%);
}
.site-wrapper .section-flex .section-flex-item .faq h3 {
  color: #2ED7E2;
}
.site-wrapper .section-flex .section-flex-item .faq p {
  margin: 0 0 10px 0;
}
.site-wrapper .section-flex.columns-1 .section-flex-item {
  flex: 0 1 80%;
}
.site-wrapper .section-flex.wide .section-flex-item {
  flex: 0 1 100%;
}
.site-wrapper .section-flex.icons {
  max-width: 100%;
  padding: 0 0 180px 0;
}
.site-wrapper .section-flex.icons .section-flex-item {
  padding: 0 20px;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .site-wrapper .section-flex.icons {
    padding: 0 20px;
  }
}
.site-wrapper .section-subscribe {
  background: #392B92;
  color: #fff;
  padding: 40px 20px;
  position: relative;
}
.site-wrapper .section-subscribe h2 {
  margin: 0;
}
.site-wrapper .section-subscribe span {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}
.site-wrapper .footer {
  max-width: 1137px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--light-color);
}
.site-wrapper .footer .section-flex-item {
  flex: 0 1 100%;
}
.site-wrapper .columns-1 {
  text-align: center;
}
.site-wrapper .columns-1 {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .site-wrapper div:nth-child(2) {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .site-wrapper .pirate-logo-mobile {
    max-width: 75%;
  }
}
.site-wrapper .narrow {
  max-width: 696px;
}

.bottom-backgrounds {
  position: relative;
}
.bottom-backgrounds:after, .bottom-backgrounds:before {
  content: "";
  position: absolute;
  left: -40px;
  bottom: 0;
  background-image: url("../sweepscash-theme/img/bottom-background.png.optimized.webp");
  background-size: cover;
  width: 512px;
  height: 284px;
  z-index: -1;
}
.bottom-backgrounds:before {
  left: auto;
  right: -40px;
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .bottom-backgrounds {
    margin: 160px 0 0 0;
  }
  .bottom-backgrounds:before {
    display: none;
  }
  .bottom-backgrounds:after {
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
  }
}

.input-form-wrapper {
  max-width: 400px;
  min-height: 53px;
  margin: 20px auto 0 auto;
}
.input-form-wrapper * {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}
.input-form-wrapper .mutual-FieldsElement--content, .input-form-wrapper .woodford-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 .mutual-FieldsElement--content .mutual-FieldsElement--field-wrapper, .input-form-wrapper .mutual-FieldsElement--content .woodford-FieldsElement--field-wrapper, .input-form-wrapper .woodford-FieldsElement--content .mutual-FieldsElement--field-wrapper, .input-form-wrapper .woodford-FieldsElement--content .woodford-FieldsElement--field-wrapper {
  padding: 0 !important;
  width: 100% !important;
}
.input-form-wrapper .mutual-FieldsElement--content .mutual-FieldsElement--field-wrapper input[type=email], .input-form-wrapper .mutual-FieldsElement--content .woodford-FieldsElement--field-wrapper input[type=email], .input-form-wrapper .woodford-FieldsElement--content .mutual-FieldsElement--field-wrapper input[type=email], .input-form-wrapper .woodford-FieldsElement--content .woodford-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: #000 !important;
  background: none !important;
  margin: 0 !important;
}
.input-form-wrapper .mutual-FieldsElement--content .mutual-FieldsElement--field-wrapper input[type=email]::placeholder, .input-form-wrapper .mutual-FieldsElement--content .woodford-FieldsElement--field-wrapper input[type=email]::placeholder, .input-form-wrapper .woodford-FieldsElement--content .mutual-FieldsElement--field-wrapper input[type=email]::placeholder, .input-form-wrapper .woodford-FieldsElement--content .woodford-FieldsElement--field-wrapper input[type=email]::placeholder {
  color: rgba(0, 0, 0, 0.5) !important;
}
.input-form-wrapper .mutual-FieldsElement--content .mutual-FieldsElement--field-wrapper input[type=email]:focus, .input-form-wrapper .mutual-FieldsElement--content .woodford-FieldsElement--field-wrapper input[type=email]:focus, .input-form-wrapper .woodford-FieldsElement--content .mutual-FieldsElement--field-wrapper input[type=email]:focus, .input-form-wrapper .woodford-FieldsElement--content .woodford-FieldsElement--field-wrapper input[type=email]:focus {
  outline: none !important;
}
.input-form-wrapper .mutual-FieldsElement--content button.mutual-field-submit, .input-form-wrapper .mutual-FieldsElement--content button.woodford-field-submit, .input-form-wrapper .woodford-FieldsElement--content button.mutual-field-submit, .input-form-wrapper .woodford-FieldsElement--content button.woodford-field-submit {
  padding: 10px !important;
  background: #F6E54D !important;
  font-size: 14px !important;
  border: none !important;
  width: 200px !important;
  min-height: 45px !important;
  color: #000 !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;
}

.mutual-error-header, .woodford-error-header {
  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 white !important;
  padding: 5px !important;
  color: #fff !important;
  border-radius: 30px !important;
  position: absolute;
  top: -14px;
  max-width: 200px;
  left: 0;
}

.mutual-te-wrapper, .woodford-te-wrapper {
  background: #fd5079 !important;
}
.mutual-te-wrapper p, .woodford-te-wrapper p {
  padding: 15px 30px !important;
}
.mutual-te-wrapper p span, .woodford-te-wrapper p span {
  font-size: 15px !important;
  font-weight: 900 !important;
  font-family: var(--font-family) !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;
  margin: 50px 0 0 0;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .slider-3d-wrapper {
    margin: 50px 0 70px 0;
  }
}
@media screen and (max-width: 768px) {
  .slider-3d-wrapper {
    margin: 50px 0 100px 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: #4F81F3;
  background: linear-gradient(180deg, #4F81F3, #7213DB);
  color: #fff;
  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 * {
  z-index: 3;
}
.slider-3d-wrapper .slider-3d .slider-3d-item .floating-coins {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  min-width: 320px;
  z-index: 1;
}
.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: #F6E54D;
  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;
}

.background-image {
  position: absolute;
  bottom: 0;
}

.background-image-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 588px;
  height: 165px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .background-image-separator {
    display: none;
  }
}

.background-image-top {
  position: absolute;
  top: 0;
  right: 0;
}

.background-floating-left, .background-floating-right {
  position: absolute;
  height: auto;
}

.background-floating-left {
  width: 450px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1100px) {
  .background-floating-left {
    left: -260px;
    bottom: auto;
  }
}
@media screen and (max-width: 768px) {
  .background-floating-left {
    top: -100px;
  }
}

.background-floating-right {
  width: 220px;
  right: 100px;
  top: 0;
}
@media screen and (max-width: 1300px) {
  .background-floating-right {
    right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .background-floating-right {
    right: -40px;
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .background-floating-right {
    top: -100px;
  }
}

.lukky-signup-popup {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(-100vh - 400px);
  bottom: 0;
  background: #AC4AF4;
  background: linear-gradient(180deg, #AC4AF4 0%, #6220F4 100%);
  max-width: 600px;
  max-height: 400px;
  margin: auto;
  z-index: 9999;
  border-radius: 30px;
  text-align: center;
  border: 1px solid #ee63d8;
  padding: 20px;
  box-shadow: inset 0px 0px 0px 2px #bd0cdc, 0px 0px 20px -10px #000;
  display: none;
}
.lukky-signup-popup.active {
  display: block;
  animation: slideInFromTop 0.5s ease;
  animation-fill-mode: forwards;
}
.lukky-signup-popup.inactive {
  animation: slideOut 0.5s ease;
  animation-fill-mode: forwards;
}

@keyframes slideInFromTop {
  0% {
    top: calc(-100vh - 400px);
  }
  100% {
    top: 0;
  }
}
@keyframes slideOut {
  0% {
    top: 0;
  }
  100% {
    top: calc(-100vh - 400px);
  }
}
.lukky-popup-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9998;
  display: none;
}
.lukky-popup-overlay.active {
  display: block;
  animation: fadeIn 0.5s ease;
  animation-fill-mode: forwards;
}
.lukky-popup-overlay.inactive {
  animation: fadeOut 0.5s ease;
  animation-fill-mode: forwards;
}

@keyframes fadeIn {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.75);
  }
}
@keyframes fadeOut {
  0% {
    background: rgba(0, 0, 0, 0.75);
  }
  100% {
    background: rgba(0, 0, 0, 0);
  }
}

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