body {
    /* background-color: ; 
    background: linear-gradient(134deg, rgba(234,138,244,1) 1%, rgb(169 148 210) 44%, rgb(49 191 198) 78%, rgba(204,122,200,1) 100%);*/
	 background:linear-gradient(134deg, rgb(94 70 140) 44%, rgb(24 110 114) 78%, rgba(204, 122, 200, 1) 100%);
    animation: gradient 5s ease infinite;
    background-size: 400% 400%;
}
.background-image-div {
  position: absolute;
  z-index: -1;
}

.background-image {
    width: 200px;
    height: 200px;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.img0 {
  top: 40px;
  left: 40px;
}
.img1 {
  top: 270px;
  left: 80px;  
}
.img2 {
  top: 500px;
  left: 40px;
}
.img3 {
  top: 730px;
  left: 80px;
}
.img4 {
  top: 40px;
  right: 40px;
}

.img5 {
  top: 270px;
  right: 80px;
}

.img6 {
  top: 500px;
  right: 40px;
}

.img7 {
  top: 730px;
  right: 80px;
}

.img8 {
  top: 400px;
  left: 400px;
  display: none;
}
.img9 {
  top: 650px;
  left: 400px;
  display: none;
}

.img10 {
  top: 400px;
  right: 400px;
  display: none;
}

.img11 {
  top: 650px;
  right: 400px;
  display: none;
}

.img0, .img2, .img4, .img6, .img8, .img10 {
  animation: rotate 1s linear forwards;
}

.img1, .img3, .img5, .img7,.img9, .img11 {
  animation: rotate2 1s linear forwards;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  
  100% {
    transform: rotate(-10deg);
  }
}

@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }
  
  100% {
    transform: rotate(10deg);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 700px) {
  .background-image {
    display:none
  }
  
  /* .img0,.img1,.img2,.img3 {
    left: 15px;
  }

  .img4,.img5,.img6,.img7 {
    right: 15px;
  }

  .img0, .img4 {
    top: 50px;
    
  }
  .img1, .img5 {
    top: 250px;
    
  }
  .img2, .img6 {
    top: 450px;
   
  }
  .img3, .img7 {
    top: 650px;
  } */
}

@media (min-width: 701px) and (max-width: 950px) {
  .background-image {
    width: 150px;
    height: 150px;
  }
  .img0,.img2 { 
    left: 20px;
  }
  .img1,.img3 {
    left: 40px;  
  }
  .img4, .img6 {
    right: 20px;
  }

  .img5,.img7 {
    right: 40px;
  }
}

@media (min-width: 1560px) {
  .img8,.img9,.img10,.img11 {
    display: block;
  }
}

.neon {
  position: relative;
  background-color: #ffffff; /* Set the color for the neon effect */
  box-shadow: 0 0 20px #ffffff; /* Set the color and size of the shadow */
  border-radius: 5px; /* Set the border radius */
  overflow: hidden; /* Hide overflowing elements */
}

.neon:before {
  content: ""; /* Add an empty content */
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  background: #ffffff;
  z-index: -1;
  filter: blur(20px); /* Add a blur effect to the background */
}

.neon:after {
  content: ""; /* Add an empty content */
  position: absolute;
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  background: #ffffff;
  z-index: -2;
  filter: blur(40px); /* Add a stronger blur effect to the background */
}

.neon h1 {
  position: relative;
  color: #ffffff; /* Set the color for the text */
  text-align: center; /* Center the text */
  font-size: 50px; /* Set the font size */
  text-shadow: 0 0 20px #ffffff; /* Set the color and size of the text shadow */
}

@keyframes body {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 0;
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes rainbowBG {
  0% { background-color: #5d5d6c8c; }
  16.7% { background-color: #5b9b6c8c; }
  33.3% { background-color: #5d5d6c8c; }
  50% { background-color: #3d495c73; }
  66.7% { background-color: #918e2d7a; }
  83.3% { background-color: #744d9180; }
  100% { background-color: #5d5d6c8c; }
}

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}


	#checkout-and-portal-button {
	  height: 36px;
	  background: #556cd6;
	  color: white;
	  width: 100%;
	  font-size: 19px;
	  border: 0;
	  cursor: pointer;
	  letter-spacing: 0.6;
	  transition: all 0.2s ease;
  display: box;
  justify-content: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-box-align: center;
	}
	#checkout-and-portal-button:hover {
	  opacity: 0.8;
	}
	input[type=email]{
		color: black !important;
		font-size: 18px !important;
	}
	input[type=tel]{
		margin: 0 0 0 0 !important;
		font-size: 18px !important;
	}
	input{
		font-size: 18px !important;
	}
	
	
body {
  position: relative;
  /* background-color: #9b4d4d; fallback color */
  /* background-image: linear-gradient(to right, #9b4d4d, #482e2e, #354635, #295050, #292948, #3e1b3e, #9b4d4d) !important;
  background-image: -webkit-linear-gradient(to right, #9b4d4d, #482e2e, #354635, #295050, #292948, #3e1b3e, #9b4d4d) !important; */
/*  animation: gradientBG 1s ease infinite; */
  /* animation: rainbowBG 7s ease infinite; */
  border-radius: 5px;
  overflow: hidden;
  background-size: 400% 400%;
  background-attachment: fixed;
}

/*
.welcome{
  --bg-size: 400%;
  --color-one: hsl(15 90% 55%);
  --color-two: hsl(40 95% 55%);
  background: linear-gradient(
      90deg,
      var(--color-one),
      var(--color-two),
      var(--color-one)
    )
    0 0 / var(--bg-size) 100%;
  color: transparent;
  background-clip: text;
 font-family: Chewy, cursive;
 font-size: 13vw; 
 transform: translate3d(0px, 21px, 0px);
}

@media (prefers-reduced-motion: no-preference) {
  .welcome{
    animation: move-bg 8s linear infinite;
  }
  @keyframes move-bg {
    to {
      background-position: var(--bg-size) 0;
    }
  }
}

*/

.gradient-text {
    font-family: 'Chewy', cursive;
    font-size: 12vw;
    /*background: linear-gradient(90deg, red, yellow, #03d0ff, #ff13d3, #31ff00);*/
	background: linear-gradient(90deg, #007f45, #86e9ff, #47c937, #ffea56, #a4d1ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: gradient 15s linear infinite;
	background-size: 400%;
}

@media only screen and (max-width: 600px) {
.gradient-text {
    font-size: 18vw !important;
	line-height: 100%;
}
}

@keyframes glow {
    0% {box-shadow: 0 0 2.5px #FF0000, 0 0 5px #FF7F00, 0 0 7.5px #FFFF00, 0 0 10px #00FF00;}
    25% {box-shadow: 0 0 2.5px #FF7F00, 0 0 5px #FFFF00, 0 0 7.5px #00FF00, 0 0 10px #0000FF;}
    50% {box-shadow: 0 0 2.5px #FFFF00, 0 0 5px #00FF00, 0 0 7.5px #0000FF, 0 0 10px #4B0082;}
    75% {box-shadow: 0 0 2.5px #00FF00, 0 0 5px #0000FF, 0 0 7.5px #4B0082, 0 0 10px #8B00FF;}
    100% {box-shadow: 0 0 2.5px #0000FF, 0 0 5px #4B0082, 0 0 7.5px #8B00FF, 0 0 10px #FF0000;}
}

.help-div {
  position: relative;
  display: flex;
  justify-content: center !important;
  overflow: hidden;
  font-weight: bold;
  /* backdrop-filter: brightness( 100% ) contrast( 100% ) saturate( 100% ) blur( 20px ) hue-rotate( 280deg ); */
  /* backdrop-filter: brightness( 100% ) contrast( 100% ) saturate( 100% ) blur(40px) hue-rotate( 350deg ); */
  backdrop-filter: blur(8px) hue-rotate(8deg);
  -webkit-backdrop-filter: blur(8px) hue-rotate(8deg);
  font-size: 16px;
}
.landing-link {
  display: block;
  padding: 15px;
}
a.glow {
  display: inline-block;
  animation: glow 20s ease-in-out infinite;
}

a.glow img {
  display: block;
  width: 125px;
  height: auto;
}

a.glow2 {
  display: inline-block;
}
a.glow2 img {
  display: block;
  width: 125px;
  height: auto;
}

#google-login-container, #email-login-container {
  display: flex;
  justify-content: center;
}

#email-login-modal-btn {
  font-size: 1rem;
  background-color: #8a2be2;
  margin-top: 15px;
  width: 220px;
  padding: 10px 15px;
  font-family: sans-serif;
  cursor: pointer;
  border-radius: 2px;
}

div:where(.swal2-container) .swal2-input[type="email"] {
    height: 2.625em;
    padding: 0 0.75em;
    border: 1px solid grey !important;
    border-radius: 4px;
    margin: 10px 0px 0px -5px !important;
    width: auto !important;
    margin: 10px 10px -5px 10px !important;
}

#email-icon {
  width: 20px;
  height:20px;
  float: left;
}

.haAclf {
  padding: 0 !important;
  width: 220px;
}