/* Solar panel */
/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.solar-system {
  width: 1362px;
  height: 1357px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.solar-system .solar-system-bg-overlay {
  border-radius: 694px;
  background: linear-gradient(97.03deg, #6248FF 0%, #D525FF 59.5%, #FFCD57 100%);
  mix-blend-mode: plus-lighter;
  filter: blur(120px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 200px;
  z-index: 1;
}
.solar-system .planet {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #21242D;
  animation-name: rotatePlanet;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 15s;
}
.solar-system .planet:after {
  content: "";
  border-radius: 50%;
  position: absolute;
}
.solar-system .planet1 {
  width: 100%;
  height: 100%;
  animation-duration: 30s;
}
.solar-system .planet1:after {
  width: 10px;
  height: 10px;
  top: -6px;
  background: #FF9B45;
}
.solar-system .planet2 {
  width: 85%;
  height: 85%;
  animation-duration: 50s;
}
.solar-system .planet2:after {
  width: 10px;
  height: 10px;
  top: -6px;
  background: #FA50C6;
}
.solar-system .planet3 {
  width: 80%;
  height: 80%;
  animation-duration: 70s;
}
.solar-system .planet3:after {
  width: 10px;
  height: 10px;
  top: -6px;
  background: #FEFEFE;
}
.solar-system .planet4 {
  width: 70%;
  height: 70%;
  animation-duration: 90s;
}
.solar-system .planet4:after {
  width: 10px;
  height: 10px;
  top: -6px;
  background: #49C7F5;
}

.sun {
  width: 45%;
  height: 44.5%;
  background: #ffc107;
  border-radius: 50%;
}

@keyframes rotatePlanet {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.alt-heading-wrapper {
  position: absolute;
  width: 65%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0 100px;
  z-index: 99;
}
@media only screen and (max-width: 1024px) {
  .alt-heading-wrapper {
    top: 50%;
  }
}
.alt-heading-wrapper h2 {
  color: #FFF;
  text-align: center;
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 62px;
}
@media only screen and (max-width: 767px) {
  .alt-heading-wrapper h2 {
    font-size: 36px !important;
    line-height: 46px !important;
  }
}
.alt-heading-wrapper p {
  color: #868E96;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
.alt-heading-wrapper a {
  color: #1B1B1B;
  border-radius: 7px;
  padding: 0 40px;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
}

.alt-heading-inner .alt-gen-btn {
  position: relative;
}
.alt-heading-inner .alt-gen-btn .alt-btn-text {
  position: relative;
  z-index: 10;
}
.alt-heading-inner .alt-gen-btn .btn-svg-1 {
  position: absolute;
  top: 0;
  left: 0;
  height: 54px;
}
.alt-heading-inner .alt-gen-btn .btn-svg-2 {
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 21px);
  height: 54px;
}
.alt-heading-inner .alt-gen-btn .btn-svg-3 {
  position: absolute;
  top: 0;
  right: 0;
  height: 54px;
}
.alt-heading-inner .underline {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
}
.alt-heading-inner .underline img {
  position: absolute;
  bottom: -8px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .alt-heading-inner .underline img {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-heading-inner .underline img {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 576px) {
  .alt-heading-inner .underline img {
    display: none;
  }
}

.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  height: 54px;
}

.primary-btn-text {
  position: relative;
  z-index: 99;
}

.primary-btn-first-shape {
  position: absolute;
  top: 0;
  left: 0;
}

.primary-btn-center-shape {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 48px);
  transform: translateX(-50%);
}

.primary-btn-end-shape {
  position: absolute;
  top: 0;
  right: 0;
}

/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.alt-info-tab-wrapper {
  font-family: "Inter Tight", sans-serif;
  padding: 0 0 100px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-info-tab-wrapper {
    padding: 0 0 80px;
  }
}

.alt-info-tab-top {
  display: flex;
}

.alt-info-tab-top-singe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 158px;
}
@media only screen and (max-width: 1024px) {
  .alt-info-tab-top-singe {
    flex-direction: column;
    gap: 40px;
  }
}

.alt-info-tab-top-left {
  width: 35%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .alt-info-tab-top-left {
    width: 50%;
  }
}
@media only screen and (max-width: 490px) {
  .alt-info-tab-top-left {
    max-width: 360px;
  }
}
.alt-info-tab-top-left:before {
  position: absolute;
  right: -22px;
  top: 33px;
  background: #1B1B2E;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 66px);
  z-index: -1;
  border-radius: 30px;
}
@media only screen and (max-width: 490px) {
  .alt-info-tab-top-left:before {
    right: -5px;
  }
}
.alt-info-tab-top-left:after {
  position: absolute;
  right: -44px;
  top: 77px;
  background: #151421;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 154px);
  z-index: -2;
  border-radius: 30px;
}
@media only screen and (max-width: 490px) {
  .alt-info-tab-top-left:after {
    right: -10px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-info-tab-top-left {
    width: 100%;
  }
}

.alt-info-tab-top-left img {
  width: 100%;
}

.alt-info-tab-top-right {
  width: 60%;
}
@media only screen and (max-width: 1024px) {
  .alt-info-tab-top-right {
    width: 100%;
  }
}
.alt-info-tab-top-right .primary-button {
  color: #1B1B1B;
  padding: 0 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(-135deg, transparent 14px, #FFCD57 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.alt-info-tab-top-right .primary-button:hover {
  color: #fff !important;
  transform: translateY(-10px);
}

.alt-info-tab-top-right h6 {
  color: #868E96;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alt-info-tab-top-right h3 {
  color: #FFF;
  font-size: 54px;
  font-weight: 700;
  line-height: 62px;
}

.alt-info-tab-top-right p {
  color: #868E96;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding: 20px 0;
}

.alt-info-tab-top-right .alt-custom-btn {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  fill: #03060F;
  border: 1px solid #6248FF;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}

.alt-info-tab-top-right .alt-left-angle {
  color: #6248FF;
}

.alt-info-tab-top-right .alt-right-angle {
  color: #D525FF;
}

.alt-info-tab-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  gap: 30px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-info-tab-bottom {
    flex-direction: column;
  }
}

.alt-info-tab-bottom .alt-tab-single-tab {
  width: 25%;
  cursor: pointer;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-info-tab-bottom .alt-tab-single-tab {
    width: 100%;
  }
}

.alt-info-tab-bottom .alt-tab-single-tab .alt-tab-number {
  color: #868E96;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alt-info-tab-bottom .alt-tab-single-tab h5 {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.alt-info-tab-bottom .alt-tab-divider {
  width: 100%;
  height: 2px;
  background-color: #323038;
  margin-bottom: 30px;
}

.alt-info-tab-bottom .alt-tab-single-tab.activetab .alt-tab-divider {
  background: linear-gradient(97deg, #6248FF 0%, #D525FF 59.5%, #FF8964 100%);
}

.alt-info-tab-top .alt-info-tab-top-singe.hide {
  display: none;
}

.alt-info-tab-top .alt-info-tab-top-singe.active {
  display: flex;
}

/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.altgen-tab-wrapper {
  font-family: "Inter Tight", sans-serif;
  padding: 84px 0;
}
@media only screen and (max-width: 1024px) {
  .altgen-tab-wrapper {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .altgen-tab-wrapper {
    padding: 40px 0;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner {
    flex-direction: column;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left {
  width: 40%;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left {
    width: 100%;
    margin-bottom: 30px;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single {
  display: flex;
  gap: 24px;
  padding: 25px;
  border-radius: 15px;
  transition: all ease 0.5s;
  cursor: pointer;
  margin-bottom: 15px;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single.active {
  background-color: #0E101A;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single.active .alt-tab-number span {
  background-image: linear-gradient(to right, #6248FF, #D525FF, #FF8964);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single {
    padding: 18px;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single:hover {
  background-color: #0E101A;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single:hover .alt-tab-number span {
  background-image: linear-gradient(to right, #6248FF, #D525FF, #FF8964);
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single .alt-tab-number {
  transition: all ease 0.5s;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single .alt-tab-number span {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  background-color: #2E2F34;
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 50px;
  text-align: center;
  padding-top: 10px;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single .alt-tab-heading h4 {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single .alt-tab-heading h4 {
    font-size: 20px;
    line-height: 28px;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single .alt-tab-heading p {
  color: #868E96;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-tab-left .alt-tab-single .alt-tab-heading p {
    font-size: 14px;
    line-height: 22px;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right {
  position: relative;
  width: 55%;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right {
    width: 100%;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-bg-overlay {
  border-radius: 649px;
  background: linear-gradient(90deg, #A800C3 -0.82%, #6348FF 102.82%);
  mix-blend-mode: plus-lighter;
  filter: blur(110px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 416px;
  z-index: 10;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper {
    flex-direction: column;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper .alt-text-img-left {
  margin-top: -30px;
  margin-right: 20px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper .alt-text-img-left {
    margin-top: 0;
    margin-right: 0;
  }
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper .alt-circle-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper .alt-text-single-img {
  display: flex;
  flex-direction: column;
  background-color: rgba(14, 16, 26, 0.4705882353);
  margin-bottom: 24px;
  padding: 16px 16px 24px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: 15px;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper .alt-text-single-img img {
  border-radius: 10px;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper .alt-text-single-img p {
  color: #868E96;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-top: 25px;
}
.altgen-tab-wrapper .altgen-tab-wrapper-inner .alt-text-right .alt-text-img-wrapper .alt-text-single-img .text-bold {
  color: #FFFFFF;
}

/* card slider */
/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.alt-text-card-carousel-wrapper.style-3 {
  background-color: #03060F;
  position: relative;
  margin-left: calc((100% - 1396px) / 2);
}
@media only screen and (max-width: 768px) {
  .alt-text-card-carousel-wrapper.style-3 {
    margin-left: 0;
  }
}
.alt-text-card-carousel-wrapper.style-3 .alt-text-card-carousel-overlay {
  border-radius: 309px;
  background: linear-gradient(90deg, #A800C3 -0.82%, #6348FF 102.82%);
  mix-blend-mode: plus-lighter;
  filter: blur(100px);
  position: absolute;
  top: 65%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 300px;
}
@media only screen and (max-width: 1199px) {
  .alt-text-card-carousel-wrapper.style-3 .alt-text-card-carousel-overlay {
    left: 50%;
    top: 55%;
  }
}
@media only screen and (max-width: 1024px) {
  .alt-text-card-carousel-wrapper.style-3 .alt-text-card-carousel-overlay {
    left: 50%;
    top: 70%;
  }
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card {
  background-image: url("https://aialttext.boomdevs.com/wp-content/uploads/2024/08/blue.png") !important;
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 50px 40px 20px 40px;
  stroke-width: 2px;
  position: relative;
  min-height: 390px;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card .content h4 {
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  margin-top: -15px;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card .content p.text {
  color: #868E96;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card .card-bottom .card-bolt-icon {
  text-align: center;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: #6248FF;
  padding-top: 13px;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card .card-bottom .card-btn-wrapper a {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  text-decoration: none;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card .card-bottom .card-btn-wrapper a i {
  padding-left: 24px;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card .alt-card-hover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all linear 0.2s;
  opacity: 0;
  z-index: -1;
  clip-path: polygon(20% 0%, 80% 0%, 100% 15%, 100% 94%, 95% 100%, 20% 100%, 0 100%, 0 0);
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card:hover .alt-card-hover-img {
  opacity: 1;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card.t-pink {
  background-image: url("https://aialttext.boomdevs.com/wp-content/uploads/2024/08/purple.png") !important;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card.t-pink .card-bottom .card-bolt-icon {
  background: #D525FF;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card.t-yellow {
  background-image: url("https://aialttext.boomdevs.com/wp-content/uploads/2024/08/yellow.png") !important;
}
.alt-text-card-carousel-wrapper.style-3 .testimonial-card.t-yellow .card-bottom .card-bolt-icon {
  background: #FF8964;
}
.alt-text-card-carousel-wrapper.style-3 .alt-text-card-carousel-content .slick-list {
  overflow: visible;
  position: relative;
}
.alt-text-card-carousel-wrapper.style-3 .alt-text-card-carousel-content .slick-list:before {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  content: "";
  background: #03060F;
  z-index: 10;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}
.alt-text-card-carousel-wrapper.style-3 .alt-text-card-carousel-content .slick-list .slick-slide {
  margin: 0 12px;
}
.alt-text-card-carousel-wrapper.style-3 .alt-text-card-carousel-content .home-three-review-arrow-btn {
  display: none !important;
}

.alt-text-card-carousel-main {
  padding-top: 80px;
  padding-bottom: 130px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .alt-text-card-carousel-main {
    padding-top: 0;
    padding-bottom: 90px;
  }
}
.alt-text-card-carousel-main .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 0;
  justify-content: center;
  margin-left: 0;
  padding-left: 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-text-card-carousel-main .slick-dots {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.alt-text-card-carousel-main .slick-dots li {
  line-height: 0;
  position: relative;
}

.alt-text-card-carousel-main .slick-dots li button {
  width: 8px;
  height: 8px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #fff;
}

.alt-text-card-carousel-main .slick-dots {
  position: relative;
  gap: 34px;
  margin-top: 80px;
}
@media only screen and (max-width: 1024px) {
  .alt-text-card-carousel-main .slick-dots {
    margin-top: 60px;
  }
}

.alt-text-card-carousel-main .slick-dots li.slick-active:before {
  content: "";
  background: url(https://altgen.boomdevs.com/wp-content/uploads/2024/04/Ellipse-3191.png);
  width: 26px;
  height: 26px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -8px;
  left: -9px;
}

@media only screen and (max-width: 768px) {
  .alt-text-card-carousel-wrapper.style-3 {
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 1024px) {
  .alt-text-card-carousel-wrapper.style-3 {
    padding-top: 40px;
    padding-bottom: 0;
  }
}
/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.testimonial-slider-area.style-3 {
  padding-top: 70px;
  padding-bottom: 120px;
  background-color: #03060F;
  position: relative;
  overflow: hidden;
  margin-left: calc((100% - 1422px) / 2);
}
.testimonial-slider-area.style-3 .alt-text-test-carousel-overlay {
  border-radius: 309px;
  background: linear-gradient(90deg, #A800C3 -0.82%, #6348FF 102.82%);
  mix-blend-mode: plus-lighter;
  filter: blur(100px);
  position: absolute;
  top: 65%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 300px;
}
@media only screen and (max-width: 768px) {
  .testimonial-slider-area.style-3 {
    margin-left: 0;
    padding-left: 0 !important;
  }
}
.testimonial-slider-area.style-3 .testimonial-card {
  border-radius: 20px;
  border: 1px solid #323038;
  background: linear-gradient(180deg, #0E101A 0%, rgba(14, 16, 26, 0) 100%);
  padding: 40px 30px 40px 40px;
  min-height: 390px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-3 .testimonial-card {
    padding: 40px;
  }
}
.testimonial-slider-area.style-3 .testimonial-card .meta-user {
  margin-top: auto;
  margin-bottom: 0;
}
.testimonial-slider-area.style-3 .testimonial-card .meta-user .user-info {
  display: flex;
  gap: 15px;
}
.testimonial-slider-area.style-3 .testimonial-card .meta-user .user-info .image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.testimonial-slider-area.style-3 .testimonial-card .meta-user .user-info .image img {
  object-fit: cover;
  border-radius: 50%;
}
.testimonial-slider-area.style-3 .testimonial-card .meta-user .user-info .info a {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  text-decoration: none;
}
.testimonial-slider-area.style-3 .testimonial-card .meta-user .user-info .info a h6 {
  margin-bottom: 0;
}
.testimonial-slider-area.style-3 .testimonial-card .meta-user .user-info .info p {
  color: #94A3B8;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.testimonial-slider-area.style-3 .testimonial-card .content-wrapper {
  display: flex;
  flex-direction: column;
}
.testimonial-slider-area.style-3 .testimonial-card .content h4 {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
}
.testimonial-slider-area.style-3 .testimonial-card .content p.text {
  color: #ffffff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.testimonial-card.slick-slide {
  display: flex !important;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-list {
  overflow: visible;
  position: relative;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-list:before {
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  content: "";
  background: #03060F;
  z-index: 10;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-list .slick-slide {
  margin: 0 12px;
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn {
  display: block;
  width: 65px;
  height: 45px;
  background: transparent;
  border: 1px solid rebeccapurple;
  border-radius: 7px;
  color: #fff;
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.prev-btn {
  position: absolute;
  top: calc(50% - 22.5px);
  left: -20px;
  z-index: 9;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.prev-btn {
    left: 0 !important;
  }
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.next-btn {
  position: absolute;
  top: calc(50% - 22.5px);
  right: calc(100% - 1254px) !important;
  z-index: 9;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.next-btn {
    right: 10px !important;
  }
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  list-style: none;
  margin-bottom: 0;
  display: none !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-3 .home-three-review-slider .slick-dots {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots li {
  line-height: 0;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots li button {
  width: 8px;
  height: 8px;
  font-size: 0;
  border-radius: 50px;
  padding: unset;
  background-color: #bdbdbd;
}

.testimonial-slider-area.style-3 .home-three-review-slider .slick-dots li.slick-active button {
  background: #033f47;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .testimonial-slider-area.style-3 {
    padding-top: 67px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-slider-area.style-3 {
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .testimonial-slider-area.style-3 {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
.header-btn {
  font-size: 14px !important;
  font-weight: 600 !important;
  font-family: "Inter Tight", sans-serif;
  color: #fff;
  height: 46px;
  line-height: 22px;
  padding: 12px 24px;
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-transform: uppercase !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: linear;
  transition-duration: 0.2s;
}
.header-btn:focus {
  color: rgb(172, 106, 255);
}
.header-btn:hover {
  color: rgb(172, 106, 255);
}
.header-btn .left-portion {
  position: absolute;
  left: 0;
  top: 0;
}
.header-btn .middle-portion {
  position: absolute;
  left: 26px;
  top: 0;
}
.header-btn .right-portion {
  position: absolute;
  right: 0;
  top: 0;
}

.header_mobile_wrapper .elementor-container, .header_mobile_wrapper .elementor-column, .header_mobile_wrapper .elementor-element, .header_mobile_wrapper .elementor-widget-container, .header_mobile_wrapper .elementor-widget-wrap {
  position: static;
}
.header_mobile_wrapper .elementor-nav-menu--dropdown {
  position: absolute;
  left: 0;
  top: 48px;
  width: 100%;
}

@media only screen and (min-width: 1025px) {
  .login_menu, .signup_menu {
    display: none !important;
  }
}
.alt_gen_image_generator_form .free_trial_wrapper {
  position: absolute;
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 9;
  flex-direction: column;
  width: 100%;
  text-align: center;
  top: 0;
  left: 0;
}

.alt_gen_image_generator_form .free_trial_wrapper h5 {
  color: #fff;
  margin-bottom: 4px;
}

.alt_gen_image_generator_form .free_trial_wrapper p {
  color: #fff;
  margin-bottom: 12px;
  font-weight: 500;
  font-size: 14px;
  max-width: 295px;
  width: 100%;
}

.alt_gen_image_generator_form .free_trial_wrapper a {
  font-size: 14px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 8px;
  color: #000;
  font-weight: 500;
  line-height: 1;
}

.alt_gen_image_generator_form form {
  position: relative;
}

.generate-loader {
  border: 2px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  transition: all 0.3s ease-in-out;
  width: 19px;
  height: 19px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.generate_text_content {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  background: #000;
  padding: 12px 36px 12px 12px;
  border-radius: 9px;
  position: relative;
  text-align: left;
}

.generate_text_content .generate_text_content_copy {
  position: absolute;
  right: 10px;
  top: 15px;
}

.altgen_secret_key {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 250px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .altgen_secret_key {
    width: 120px;
  }
}

.altgen_secret_key_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 768px) {
  .altgen_secret_key_wrapper {
    justify-content: end;
  }
}

.altgen_secret_clipboard {
  line-height: 1;
  position: relative;
  display: inline-flex;
}

.generate_secret_key_copied {
  position: absolute;
  left: 17px;
  font-size: 12px;
  font-weight: 500;
  top: 50%;
  transform: translateY(-50%);
}

.altgen_secret_clipboard svg {
  cursor: pointer;
}

.page-id-331 .entry-content {
  margin-top: 0;
}

/* DropBox */
.altgen_upload_form {
  max-width: 433px;
  width: 100%;
  /*height: 100%;*/
  margin: 1rem auto;
}

.altgen_upload_form .prev-img {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}

.file-inner-text {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.file-inner-text span {
  color: #ffffff;
}

label.file {
  position: relative;
  display: block;
  width: 100%;
  font-size: 80%;
  text-align: center;
  text-transform: uppercase;
  border: 2px dashed #ccc;
  margin-bottom: 16px;
  padding: 3rem;
  background: #374151;
  max-width: 433px;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

label.file:active,
label.file.focus {
  border-color: #09f;
}

.altgen_upload_form input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  outline: 0;
  border: 1px solid red;
  cursor: pointer;
}

.form-button {
  color: #eee;
  background-color: #ffffff;
  border: 0;
  outline: none;
  border-radius: 8px;
  overflow: hidden;
}

.form-button2 {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.4);
  border: 0;
  outline: none;
  overflow: hidden;
}

.form-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #000000;
}

.form-button2 span {
  color: #ffffff;
}

.sml {
  display: inline-block;
  color: #eee;
  background-color: rgba(0, 200, 0, 0.67);
  border-radius: 1rem;
  font-size: smaller;
  margin: 1rem 0 0 0;
  padding: 0.67rem 1rem;
}

.altgen_upload_form .submit-btn {
  padding: 12px 28px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}

/* Basic styling */
.altgen_upload_form .faq {
  list-style: none;
  background: #374151;
  margin: 0;
  margin-bottom: 24px;
  padding: 0 20px;
  border-radius: 8px;
  overflow: hidden;
}

.altgen_upload_form .faq li.active .answer {
  max-height: 275px !important;
  margin-bottom: 25px;
  border-radius: 8px;
  transition: max-height 0.5s ease, padding-bottom 0.5s ease;
}

.altgen_upload_form .faq li.active .question {
  transition: color 0.5s ease;
}

.altgen_upload_form .faq .answer {
  font-size: 16px;
  line-height: 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding-bottom 0.5s ease;
}

.altgen_upload_form .faq .answer textarea {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.altgen_upload_form .faq .answer textarea:focus {
  outline: none;
}

.altgen_upload_form .faq .plus-minus-toggle {
  cursor: pointer;
  height: 21px;
  position: absolute;
  width: 21px;
  left: -16px;
  top: 50%;
  z-index: 2;
}

.altgen_upload_form .faq .plus-minus-toggle:before,
.altgen_upload_form .faq .plus-minus-toggle:after {
  background: #ffffff;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 14px;
  transition: transform 500ms ease;
}

.altgen_upload_form .faq .plus-minus-toggle:after {
  transform-origin: center;
}

.altgen_upload_form .faq .plus-minus-toggle.collapsed:after {
  transform: rotate(90deg);
}

.altgen_upload_form .faq .plus-minus-toggle.collapsed:before {
  transform: rotate(180deg);
}

.altgen_upload_form .faq .question {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  position: relative;
  cursor: pointer;
  padding: 16px;
  transition: color 0.5s ease;
  margin-left: 16px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
}

#image-url {
  max-width: 100%;
  max-height: 200px;
  border: 1px solid #ccc;
  margin-top: 10px;
}

/* Custom widget css */
/* coloring heading */
.alt-grad-heading-custom {
  background: linear-gradient(97deg, #6248FF 0%, #D525FF 59.5%, #FF8964 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* card slider */
/* Testimonial carousel */
/* Tab Style */
/* Faq custom design */
.alt-faq-custom.elementor-element .elementor-accordion .elementor-accordion-item {
  padding-bottom: 30px;
}

.alt-faq-custom.elementor-element .elementor-accordion .elementor-accordion-item:last-child {
  padding-bottom: 0;
}

.alt-faq-custom.elementor-element .elementor-accordion .elementor-accordion-item .elementor-tab-title .elementor-accordion-icon {
  margin-top: 7px;
}
.alt-faq-custom.elementor-element .elementor-accordion .elementor-accordion-item .elementor-accordion-title {
  position: relative;
  padding-left: 55px;
  display: block;
}
.alt-faq-custom.elementor-element .elementor-accordion .elementor-accordion-item .alt-faq-number-custom {
  position: absolute;
  left: 0;
  top: -1px;
}

.alt-faq-custom.elementor-element .elementor-accordion .elementor-tab-title {
  border-radius: 10px;
}

.alt-faq-custom.elementor-element .elementor-accordion .elementor-tab-title.elementor-active {
  border-radius: 10px 10px 0 0;
}

.alt-faq-custom.elementor-element .elementor-accordion .elementor-tab-content {
  border-radius: 0 0 10px 10px;
}

.alt-footer-newsletter-custom {
  width: 1240px !important;
  margin: 0 auto;
  border-radius: 20px;
}

/* newsletter form */
/*.header-btn {*/
/*    font-size: 14px;*/
/*    font-weight: 600;*/
/*    font-family: "Inter Tight", sans-serif;*/
/*    color: #fff;*/
/*    height: 46px;*/
/*    line-height: 22px;*/
/*    padding: 12px 24px;*/
/*    position: relative;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    text-transform: uppercase;*/
/*    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;*/
/*    transition-timing-function: linear;*/
/*    transition-duration: 0.2s;*/
/*    width: 156px;*/
/*}*/
/*.header-btn:hover {*/
/*    color: rgb(172, 106, 255);*/
/*}*/
/*.header-btn .left-portion {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*}*/
/*.header-btn .middle-portion {*/
/*    position: absolute;*/
/*    left: 26px;*/
/*    top: 0;*/
/*}*/
/*.header-btn .right-portion {*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: 0;*/
/*}*/
.alt-footer-social-icons {
  position: relative;
}

.alt-footer-social-icons .elementor-social-icons-wrapper .elementor-icon:before {
  content: "";
  width: 66px;
  height: 52px;
  background: url(https://altgen.boomdevs.com/wp-content/uploads/2024/04/Ellipse-3197-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
}

.alt-footer-menu-legal .elementor-nav-menu--main .elementor-nav-menu .alt-footer-menu-legal-cookies {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alt-footer-menu-legal .elementor-nav-menu--main .elementor-nav-menu .alt-footer-menu-legal-cookies:after {
  content: "UPDATED";
  width: 90px;
  height: 22px;
  border: 1px solid #D525FF;
  border-radius: 20px;
  color: #D525FF;
  display: inline-block;
  text-align: center;
  font-size: 14px;
}

.pricing-section-wrapper .elementor-element {
  max-width: 690px;
  margin: 0 auto;
}
.pricing-section-wrapper .pricing-plan-title .elementor-heading-title span {
  background: linear-gradient(97.03deg, #6248ff 0%, #d525ff 59.5%, #ffcd57 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.pricing-item .price-main .price {
  color: #fff;
  font-size: 74px;
  line-height: 90px;
  font-weight: 700;
  font-family: "Inter Tight", sans-serif;
}
.pricing-item .price-main .price.price-annual {
  display: none;
}
.pricing-item .elementor-icon-list-items .elementor-icon-list-item {
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid #323038;
}
.pricing-item .elementor-icon-list-items .elementor-icon-list-item:last-child {
  margin-bottom: 0;
}
.pricing-item .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon svg {
  fill: none !important;
}

.price-item-button {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  height: 54px;
  position: relative;
  text-transform: uppercase;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: linear;
  transition-duration: 0.2s;
  border-radius: 8px 0 0 8px;
}
.price-item-button svg {
  stroke: #fff;
  stroke-width: 1.79px;
  transition: 0.4s;
}
.price-item-button svg path {
  transition: 0.4s;
  fill: transparent;
}
.price-item-button.agency-button {
  max-width: 368px;
  width: 100%;
}
.price-item-button:after {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 26px);
  height: 100%;
  border: 1px solid #fff;
  border-right: none;
  border-radius: 8px 0 0 8px;
  content: "";
  transition: 0.4s;
}
.price-item-button:focus {
  color: #fff !important;
}
.price-item-button:hover {
  color: #1b1b1b !important;
}
.price-item-button:hover:after {
  background: #ffcd57;
  border: none;
}
.price-item-button:hover svg {
  stroke: none;
}
.price-item-button:hover svg path {
  fill: #ffcd57;
}
.price-item-button span {
  position: relative;
  z-index: 10;
}
.price-item-button .right-portion {
  position: absolute;
  right: 0;
  top: 0;
}

.agency-heading-title .elementor-heading-title {
  background: linear-gradient(97.03deg, #6248ff 0%, #d525ff 59.5%, #ffcd57 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.agency_price .price-annual {
  display: none;
}

.agency-lists .elementor-icon-list-items .elementor-icon-list-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #323038;
  align-items: start;
}
.agency-lists .elementor-icon-list-items .elementor-icon-list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.agency-lists .elementor-icon-list-items .elementor-icon-list-item .elementor-icon-list-icon svg {
  fill: none !important;
}

.switch-wrapper-main {
  text-align: center;
}

.switch-wrapper {
  position: relative;
  display: inline-flex;
  padding: 6px;
  border: 1px solid #6248ff;
  border-radius: 12px;
  background: transparent;
}

.switch-wrapper [type=radio] {
  position: absolute;
  left: -9999px;
}

.switch-wrapper [type=radio]:checked#monthly ~ label[for=monthly],
.switch-wrapper [type=radio]:checked#yearly ~ label[for=yearly] {
  color: #fff;
}

.switch-wrapper [type=radio]:checked#monthly ~ label[for=monthly]:hover,
.switch-wrapper [type=radio]:checked#yearly ~ label[for=yearly]:hover {
  background: transparent;
}

.switch-wrapper [type=radio]:checked#monthly + label[for=yearly] ~ .highlighter {
  transform: none;
}

.switch-wrapper [type=radio]:checked#yearly + label[for=monthly] ~ .highlighter {
  transform: translateX(100%);
}

.switch-wrapper label {
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
  min-width: 154px;
  color: #fff;
  line-height: 22px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.25s ease-in-out;
  padding: 10px;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 475px) {
  .switch-wrapper label {
    min-width: 142px;
  }
}

.switch-wrapper .highlighter {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  border-radius: 8px;
  background: linear-gradient(97.03deg, #6248ff 0%, #d525ff 59.5%, #ffcd57 100%);
  transition: transform 0.25s ease-in-out;
}

.switch-wrapper-main {
  text-align: center;
}

.switch-wrapper-black-friday {
  position: relative;
  display: inline-flex;
  padding: 6px;
  border: 1px solid #6248ff;
  border-radius: 12px;
  background: transparent;
}

.switch-wrapper-black-friday [type=radio] {
  position: absolute;
  left: -9999px;
}

.switch-wrapper-black-friday [type=radio]:checked#bf-monthly ~ label[for=monthly],
.switch-wrapper-black-friday [type=radio]:checked#bf-yearly ~ label[for=yearly] {
  color: #fff;
}

.switch-wrapper-black-friday [type=radio]:checked#bf-monthly ~ label[for=bf-monthly]:hover,
.switch-wrapper-black-friday [type=radio]:checked#bf-yearly ~ label[for=bf-yearly]:hover {
  background: transparent;
}

.switch-wrapper-black-friday [type=radio]:checked#bf-monthly + label[for=bf-yearly] ~ .highlighter {
  transform: none;
}

.switch-wrapper-black-friday [type=radio]:checked#bf-yearly + label[for=bf-monthly] ~ .highlighter {
  transform: translateX(100%);
}

.switch-wrapper-black-friday label {
  font-size: 14px;
  font-weight: 600;
  z-index: 1;
  min-width: 154px;
  color: #fff;
  line-height: 22px;
  cursor: pointer;
  border-radius: 8px;
  transition: color 0.25s ease-in-out;
  padding: 10px;
  text-align: center;
  font-family: "Inter Tight", sans-serif;
  text-transform: uppercase;
}

@media only screen and (max-width: 475px) {
  .switch-wrapper-black-friday label {
    min-width: 142px;
  }
}
.switch-wrapper-black-friday .highlighter {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(50% - 6px);
  height: calc(100% - 12px);
  border-radius: 8px;
  background: linear-gradient(97.03deg, #6248ff 0%, #d525ff 59.5%, #ffcd57 100%);
  transition: transform 0.25s ease-in-out;
}

.pricing-item .price-main .price.bf-price-month {
  display: none;
}

.price-main .price.bf-price-month {
  display: none;
}

div.bf-month-sub {
  display: none;
}

.alt_gen_image_generator_form {
  border-radius: 25px;
  background: linear-gradient(97deg, rgba(98, 72, 255, 0.6) 0%, rgba(213, 37, 255, 0.6) 65%, rgba(255, 205, 87, 0.6) 100%);
  padding: 56px;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .alt_gen_image_generator_form {
    padding: 30px 25px;
  }
}
.alt_gen_image_generator_form .altgen_upload_form {
  position: relative;
  max-width: 516px;
  width: 100%;
  margin: 0 auto;
}
.alt_gen_image_generator_form .altgen_upload_form .alt_gen_image_generator_form_try_out {
  width: 106px;
  position: absolute;
  left: -140px;
  top: 0;
}
@media only screen and (max-width: 1024px) {
  .alt_gen_image_generator_form .altgen_upload_form .alt_gen_image_generator_form_try_out {
    position: relative;
    left: 0;
    width: 100%;
    margin-bottom: 20px;
  }
}
.alt_gen_image_generator_form .altgen_upload_form .alt_gen_image_generator_form_try_out p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter Tight", sans-serif;
  line-height: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .alt_gen_image_generator_form .altgen_upload_form .alt_gen_image_generator_form_try_out p {
    text-align: center;
  }
}
.alt_gen_image_generator_form .altgen_upload_form .alt_gen_image_generator_form_try_out .alt_gen_image_generator_form_try_out_icon {
  text-align: right;
  display: block;
}
@media only screen and (max-width: 1023px) {
  .alt_gen_image_generator_form .altgen_upload_form .alt_gen_image_generator_form_try_out .alt_gen_image_generator_form_try_out_icon {
    text-align: center;
  }
}
@media only screen and (max-width: 575px) {
  .alt_gen_image_generator_form .altgen_upload_form .alt_gen_image_generator_form_try_out svg {
    width: 40px;
    height: 40px;
  }
}
.alt_gen_image_generator_form .altgen_upload_form .altgen_upload_form_text_arrow {
  display: none;
  text-align: center;
}
.alt_gen_image_generator_form .altgen_upload_form .free_trial_wrapper {
  position: absolute;
  background: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  width: 100%;
  text-align: center;
  z-index: 11;
  border-radius: 8px;
}
.alt_gen_image_generator_form .altgen_upload_form .free_trial_wrapper h5 {
  color: #fff;
  margin-bottom: 8px;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
}
.alt_gen_image_generator_form .altgen_upload_form .free_trial_wrapper p {
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 14px;
  max-width: 295px;
  line-height: 17px;
  width: 100%;
  font-family: "Inter Tight", sans-serif;
}
.alt_gen_image_generator_form .altgen_upload_form .free_trial_wrapper a {
  font-size: 14px;
  background: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  line-height: 17px;
  font-family: "Inter Tight", sans-serif;
  color: #9018FF;
}
.alt_gen_image_generator_form .altgen_upload_form .file {
  position: relative;
  width: 100%;
  font-size: 80%;
  text-align: center;
  border: 2px dashed rgba(87, 243, 255, 0.6980392157);
  margin-bottom: 16px;
  padding: 20px;
  background: rgba(3, 6, 15, 0.3019607843);
  max-width: 516px;
  height: 236px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.alt_gen_image_generator_form .altgen_upload_form .file:hover {
  background: rgba(3, 6, 15, 0.5019607843);
}
.alt_gen_image_generator_form .altgen_upload_form .file.focus {
  border-color: #09f;
}
.alt_gen_image_generator_form .altgen_upload_form .file .file-inner-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.alt_gen_image_generator_form .altgen_upload_form .file .file-inner-text p {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
  font-family: "Inter Tight", sans-serif;
  line-height: 19.36px;
  margin-top: 20px;
  margin-bottom: 0;
  text-transform: none;
}
.alt_gen_image_generator_form .altgen_upload_form .file .file-inner-text p span {
  font-weight: 600;
  text-decoration: underline;
}
.alt_gen_image_generator_form .altgen_upload_form .form-button {
  color: #eee;
  background-color: #ffffff;
  border: 0;
  outline: none;
  border-radius: 8px;
  overflow: hidden;
}
.alt_gen_image_generator_form .altgen_upload_form .form-button span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #000000;
}
.alt_gen_image_generator_form .altgen_upload_form .form-button2 {
  display: none;
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  color: #ffffff;
  background: rgba(3, 6, 15, 0.5019607843);
  border: 0;
  outline: none;
  overflow: hidden;
  padding: 20px;
  text-align: left;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 17px;
  backdrop-filter: blur(10px);
}
.alt_gen_image_generator_form .altgen_upload_form .form-button2 span {
  color: #ffffff;
}
.alt_gen_image_generator_form .altgen_upload_form .prev-img {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}
.alt_gen_image_generator_form .altgen_upload_form input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  outline: 0;
  border: 1px solid red;
  cursor: pointer;
}
.alt_gen_image_generator_form .altgen_upload_form .altgen_upload_form_text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .alt_gen_image_generator_form .altgen_upload_form .altgen_upload_form_text {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
.alt_gen_image_generator_form .altgen_upload_form .altgen_upload_form_text p {
  font-size: 14px;
  color: #fff;
  line-height: 17px;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 0;
}
.alt_gen_image_generator_form .altgen_upload_form .submit-btn {
  padding: 12px 28px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  color: #03060F;
  font-size: 14px;
  border: none;
  font-weight: 600;
  line-height: 17px;
  text-transform: uppercase;
  gap: 6px;
  position: relative;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: linear;
  transition-duration: 0.3s;
  background: linear-gradient(-135deg, transparent 14px, #fff 0) bottom left;
  border-radius: 8px;
  z-index: 1;
}
.alt_gen_image_generator_form .altgen_upload_form .submit-btn:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-135deg, transparent 14px, #FFCD57 0) bottom left;
  content: "";
  z-index: -1;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.alt_gen_image_generator_form .altgen_upload_form .submit-btn span {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: linear;
  transition-duration: 0.3s;
}
.alt_gen_image_generator_form .altgen_upload_form .submit-btn .submit-btn-icon {
  position: relative;
  z-index: 10;
}
.alt_gen_image_generator_form .altgen_upload_form .submit-btn .submit-btn-icon path {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: linear;
  transition-duration: 0.3s;
}
.alt_gen_image_generator_form .altgen_upload_form .submit-btn:hover:after {
  opacity: 1;
  visibility: visible;
}

.generate-loader {
  border: 2px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  transition: all 0.3s ease-in-out;
  width: 19px;
  height: 19px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.generate_text_content {
  font-size: 16px;
  line-height: 24px;
  color: #fff;
  font-weight: 400;
  background: rgba(14, 16, 26, 0.8);
  border: 1px solid #868E96;
  padding: 20px 56px 20px 20px;
  font-family: "Inter Tight", sans-serif;
  border-radius: 12px;
  position: relative;
  text-align: left;
}
.generate_text_content .generate_text_content_copy {
  position: absolute;
  right: 16px;
  top: 16px;
  cursor: pointer;
}
.generate_text_content .generate_text_content_copy .generate_text_content_copy_tooltip {
  position: absolute;
  left: 50%;
  top: -47px;
  background-color: #fff;
  width: max-content;
  min-width: 1px;
  max-width: 150px;
  color: #26172F;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  transform: translateX(-50%);
  display: none;
}
.generate_text_content .generate_text_content_copy .generate_text_content_copy_tooltip:after {
  position: absolute;
  left: 50%;
  bottom: -5px;
  height: 10px;
  width: 10px;
  border-radius: 2px;
  background: #fff;
  content: "";
  transform: rotate(45deg) translateX(-50%);
}

body {
  background: #03060F !important;
}
body .site-main {
  margin: 0 !important;
}
body .site-main .entry-content {
  margin: 0 !important;
}

.orbit-top-section {
  z-index: 1;
}
.orbit-top-section.orbit-top-section-login-signup .solar-system {
  z-index: -3;
}
.orbit-top-section .solar-system {
  top: -662px;
  transform: translate(-50%, 0);
}

.orbit-side-image {
  z-index: 1;
}
.orbit-side-image .solar-system {
  left: auto;
  transform: translate(0, -50%);
  right: -662px;
  width: 853px;
  height: 853px;
}
.orbit-side-image .solar-system .solar-system-bg-overlay {
  display: none;
}

.automate-orbit {
  z-index: 1;
}
.automate-orbit .solar-system {
  width: 1000px;
  height: 1000px;
}

.hero-text-wrapper {
  max-width: 950px;
  margin: 0 auto;
}
.hero-text-wrapper.automate-text-wrapper {
  max-width: 690px;
  position: relative;
  top: -110px;
}
.hero-text-wrapper h3 {
  background: linear-gradient(97deg, #6248FF 0%, #D525FF 59.5%, #FF8964 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}
.hero-text-wrapper h3 img {
  position: absolute;
  right: 0;
  bottom: -6px;
}
@media only screen and (max-width: 767px) {
  .hero-text-wrapper h3 img {
    display: none;
  }
}
.hero-text-wrapper .hero-text-btn {
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1B1B1B !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  width: 188px;
  display: block;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(-135deg, transparent 14px, #FFCD57 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.hero-text-wrapper .hero-text-btn:hover {
  color: #fff !important;
}

.login-signup-text h2 span {
  background: linear-gradient(97.03deg, #6248FF 0%, #D525FF 59.5%, #FFCD57 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-signup-text h5 a {
  color: #D525FF !important;
  text-decoration: underline;
}

.testimonial-slider-area.style-3 {
  padding-left: 20px;
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn {
  display: flex !important;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: none;
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.prev-btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 67px;
  height: 44px;
  background-image: url("https://aialttext.boomdevs.com/wp-content/uploads/2024/08/testimonial-rect.png");
  content: "";
  z-index: -1;
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.next-btn {
  right: calc(100% - 1198px);
}

.testimonial-slider-area.style-3 .testimonial-card .meta-user .user-info .info p {
  margin-bottom: 0 !important;
}

.testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.next-btn:after {
  position: absolute;
  left: 0;
  top: 0;
  width: 67px;
  height: 44px;
  background-image: url("https://aialttext.boomdevs.com/wp-content/uploads/2024/08/testimonial-rect.png");
  content: "";
  z-index: -1;
}

.alt-landing-footer-custom {
  position: relative;
  z-index: 1;
}

.header-actions .elementor-widget-wrap .elementor-element {
  width: auto !important;
}

.pricing-section-wrapper {
  position: relative;
  z-index: 1;
}

.header-actions .elementor-widget-wrap {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  justify-content: end !important;
}

@media only screen and (max-width: 1400px) {
  .alt-text-card-carousel-wrapper.style-3 {
    margin-left: 0 !important;
  }
  .testimonial-slider-area.style-3 {
    padding-left: 0 !important;
    margin-left: 0 !important;
  }
  .testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.prev-btn, .testimonial-slider-area.style-3 .home-three-review-slider .home-three-review-arrow-btn.next-btn {
    display: none !important;
  }
  .slick-dots {
    padding: 0 !important;
  }
}
.woocommerce-MyAccount-navigation-link--sumo-subscriptions {
  display: none !important;
}

.uwp_login_page .inside-article, .uwp_register_page .inside-article {
  background: transparent !important;
  padding: 0 !important;
}
.uwp_login_page .inside-article .entry-header, .uwp_register_page .inside-article .entry-header {
  display: none;
}
.uwp_login_page .inside-article .uwp_page .card, .uwp_register_page .inside-article .uwp_page .card {
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
  padding: 40px !important;
  border-radius: 30px !important;
  position: relative;
  box-shadow: 2px 1000px 1px #0E101A inset !important;
  border: 2px solid transparent !important;
  background-image: linear-gradient(97.03deg, #6248FF 0%, #D525FF 59.5%, #FFCD57 100%);
  background-origin: border-box;
}
@media only screen and (max-width: 490px) {
  .uwp_login_page .inside-article .uwp_page .card, .uwp_register_page .inside-article .uwp_page .card {
    max-width: 360px;
  }
}
.uwp_login_page .inside-article .uwp_page .card:before, .uwp_register_page .inside-article .uwp_page .card:before {
  position: absolute;
  right: -22px;
  top: 33px;
  background: #1B1B2E;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 66px);
  z-index: -1;
  border-radius: 30px;
}
@media only screen and (max-width: 490px) {
  .uwp_login_page .inside-article .uwp_page .card:before, .uwp_register_page .inside-article .uwp_page .card:before {
    right: -5px;
  }
}
.uwp_login_page .inside-article .uwp_page .card:after, .uwp_register_page .inside-article .uwp_page .card:after {
  position: absolute;
  right: -44px;
  top: 77px;
  background: #151421;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 154px);
  z-index: -2;
  border-radius: 30px;
}
@media only screen and (max-width: 490px) {
  .uwp_login_page .inside-article .uwp_page .card:after, .uwp_register_page .inside-article .uwp_page .card:after {
    right: -10px;
  }
}
.uwp_login_page .inside-article .uwp_page .card .card-body, .uwp_register_page .inside-article .uwp_page .card .card-body {
  padding: 0;
}
.uwp_login_page .inside-article .uwp_page .card .card-body > div:last-child, .uwp_register_page .inside-article .uwp_page .card .card-body > div:last-child {
  display: none;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .card-title, .uwp_register_page .inside-article .uwp_page .card .card-body .card-title {
  display: none;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form > div, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form > div, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div {
  margin-bottom: 32px !important;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=text], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=password], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=email], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=text], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=password], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=email], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=text], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=password], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=email], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=text], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=password], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=email] {
  border: 2px solid #323038;
  background: #171A28;
  height: 54px;
  padding: 10px 16px 10px;
  border-radius: 8px;
  color: #868E96;
  font-size: 16px;
  font-family: "Inter Tight", sans-serif;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=text]:focus, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=password]:focus, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=email]:focus, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=text]:focus, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=password]:focus, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=email]:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=text]:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=password]:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form input[type=email]:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=text]:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=password]:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form input[type=email]:focus {
  box-shadow: none;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-password-wrap input[type=text], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-password-wrap input[type=text], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-password-wrap input[type=text], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-password-wrap input[type=text] {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-password-wrap input[type=password], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-password-wrap input[type=password], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-password-wrap input[type=password], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-password-wrap input[type=password] {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-password-wrap .input-group-text, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-password-wrap .input-group-text, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-password-wrap .input-group-text {
  border-radius: 0 8px 8px 0;
  border: 2px solid #323038;
  border-left: 0;
  background: #171A28;
  color: #868E96;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me {
  margin-bottom: 32px !important;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me .form-check-input[type=checkbox], .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me .form-check-input[type=checkbox], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me .form-check-input[type=checkbox], .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me .form-check-input[type=checkbox] {
  border-radius: 5px;
  border: 2px solid #323038;
  accent-color: red;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me .form-check-input[type=checkbox]:checked, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me .form-check-input[type=checkbox]:checked, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me .form-check-input[type=checkbox]:checked, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me .form-check-input[type=checkbox]:checked {
  border-color: #FFCD57;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI4IiBoZWlnaHQ9IjgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iI0ZGQ0Q1NyI+PHBhdGggZD0iTTIwLjI4NSAybC0xMS4yODUgMTEuNTY3LTUuMjg2LTUuMDExLTMuNzE0IDMuNzE2IDkgOC43MjggMTUtMTUuMjg1eiIvPjwvc3ZnPg==") !important;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me .form-label, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me .form-label, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp-remember-me .form-label, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp-remember-me .form-label {
  color: #868E96;
  font-size: 16px;
  font-family: "Inter Tight", sans-serif;
  margin: 0;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp_login_submit, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp_login_submit, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp_login_submit, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp_login_submit {
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1B1B1B !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  background: linear-gradient(-135deg, transparent 14px, #FFCD57 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp_login_submit:hover, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp_login_submit:hover, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp_login_submit:hover, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp_login_submit:hover {
  box-shadow: none;
  color: #fff !important;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp_login_submit:focus, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp_login_submit:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-login-form .uwp_login_submit:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form .uwp_login_submit:focus {
  box-shadow: none;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child {
  position: relative;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child .uwp_register_submit, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child .uwp_register_submit {
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1B1B1B !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  background: linear-gradient(-135deg, transparent 14px, #FFCD57 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child .uwp_register_submit:hover, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child .uwp_register_submit:hover {
  box-shadow: none;
  color: #fff !important;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child .uwp_register_submit:focus, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-registration-form > div:last-child .uwp_register_submit:focus {
  box-shadow: none;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links {
  margin-top: 32px;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-forgot-password-link, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-register-link, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-login-link, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-forgot-password-link, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-register-link, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-login-link {
  font-size: 16px;
  font-weight: 500;
  color: #868E96;
  font-family: "Inter Tight", sans-serif;
  line-height: 28px;
  margin: 0 !important;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-forgot-password-link:hover, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-register-link:hover, .uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-login-link:hover, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-forgot-password-link:hover, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-register-link:hover, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-login-link:hover {
  text-decoration: none;
}
.uwp_login_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-forgot-password-link, .uwp_register_page .inside-article .uwp_page .card .card-body .uwp-footer-links .uwp-forgot-password-link {
  color: #D525FF;
}

.site-header {
  position: absolute !important;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: transparent !important;
  padding: 0 !important;
}
.site-header.is_sticky {
  position: fixed !important;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  background-color: #03060f !important;
  animation: slideDown 0.35s ease-in-out;
  border-bottom: 1px solid #323038;
}
.site-header.is_sticky .inside-header {
  padding: 12px !important;
}
.site-header .inside-header {
  padding: 20px 12px !important;
}
@media only screen and (min-width: 1025px) {
  .site-header .inside-header #site-navigation {
    flex: 1;
  }
}
.site-header .inside-header .main-navigation {
  background-color: transparent !important;
}
.site-header .inside-header .main-navigation.mobile-menu-control-wrapper .menu-toggle {
  color: #fff !important;
  font-size: 20px;
  padding: 10px;
}
.site-header .inside-header .main-navigation .inside-navigation #primary-menu {
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  .site-header .inside-header .main-navigation .inside-navigation #primary-menu {
    position: absolute;
    left: 0;
    top: 10px;
    width: 100%;
    background: #fff;
  }
}
.site-header .inside-header .main-navigation #menu-main-menu {
  gap: 48px;
}
@media only screen and (max-width: 1024px) {
  .site-header .inside-header .main-navigation #menu-main-menu {
    gap: 0;
    padding: 20px 16px;
  }
}
.site-header .inside-header .main-navigation #menu-main-menu .menu-item.current-menu-item > a {
  color: #ffcd57;
}
.site-header .inside-header .main-navigation #menu-main-menu .menu-item a {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  padding: 0;
  transition: all 0.3s ease-in-out;
}
.site-header .inside-header .main-navigation #menu-main-menu .menu-item a:hover {
  color: #ffcd57;
}
@media only screen and (max-width: 1024px) {
  .site-header .inside-header .main-navigation #menu-main-menu .menu-item a {
    color: #1b1b1b;
    padding: 12px 20px;
    text-transform: none;
  }
}
.site-header .inside-header .main-navigation .header-right-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 1024px) {
  .site-header .inside-header .main-navigation .header-right-menu {
    position: absolute;
    right: 50px;
    bottom: 0;
    display: block !important;
  }
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper {
  position: relative;
  display: inline-block;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .user-profile {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  cursor: pointer;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .user-profile img {
  border-radius: 50%;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .menu-logged-in-user-menu-container {
  position: absolute;
  right: 0;
  top: 45px;
  width: 150px;
  background: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  display: none;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .menu-logged-in-user-menu-container #menu-logged-in-user-menu {
  display: block !important;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .menu-logged-in-user-menu-container li {
  margin-bottom: 6px;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .menu-logged-in-user-menu-container li:last-child {
  margin-bottom: 0;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .menu-logged-in-user-menu-container li a {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  color: #1b1b1b;
  font-family: "Inter Tight", sans-serif;
  display: block;
  transition: all 0.3s ease-in-out;
}
.site-header .inside-header .main-navigation .header-right-menu .menu-extra-wrapper .menu-logged-in-user-menu-container li a:hover {
  color: #ffcd57;
}
.site-header .inside-header .main-navigation .header-right-menu .header-right-actions {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .site-header .inside-header .main-navigation .header-right-menu .header-right-actions {
    display: none !important;
  }
}
.site-header .inside-header .main-navigation .header-right-menu .header-right-actions .header_login_btn {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  color: #fff;
  margin-right: 24px;
  font-family: "Inter Tight", sans-serif;
}

.has-inline-mobile-toggle #site-navigation.toggled {
  margin: 0 !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.woocommerce-checkout .site.grid-container {
  position: relative;
  overflow: hidden;
  padding: 148px 10px 120px;
}
@media only screen and (max-width: 768px) {
  .woocommerce-checkout .site.grid-container {
    padding: 148px 10px 70px;
  }
}
.woocommerce-checkout .site.grid-container .solar-system {
  top: -662px;
  transform: translate(-50%, 0);
  z-index: -1;
}
.woocommerce-checkout .site-content {
  color: #868E96;
}
.woocommerce-checkout .site-content input[type=text], .woocommerce-checkout .site-content input[type=tel], .woocommerce-checkout .site-content input[type=email], .woocommerce-checkout .site-content select, .woocommerce-checkout .site-content textarea, .woocommerce-checkout .site-content input.components-combobox-control__input {
  background: #171A28 !important;
  border: 2px solid #323038 !important;
  border-radius: 8px !important;
  color: #868E96 !important;
}
.woocommerce-checkout .site-content .content-area {
  width: 100% !important;
}
.woocommerce-checkout .site-content .inside-article {
  background: transparent !important;
  font-family: "Inter Tight", sans-serif;
  padding: 0 !important;
}
.woocommerce-checkout .site-content .inside-article .entry-header {
  margin-bottom: 30px;
}
.woocommerce-checkout .site-content .inside-article .entry-header .entry-title {
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-checkout .site-content .inside-article .entry-header .entry-title {
    font-size: 48px;
    line-height: 56px;
    text-align: center;
  }
}
.woocommerce-checkout .site-content .inside-article .wc-block-checkout {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label, .woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label, .woocommerce-checkout .wc-block-components-form .components-base-control__label {
  color: #868E96 !important;
}
.woocommerce-checkout .wc-block-components-form .wc-block-checkout__actions {
  padding: 0;
}
.woocommerce-checkout .wc-block-components-form .wc-block-components-title:before {
  display: none;
}
.woocommerce-checkout .wc-block-components-form .wc-block-checkout__contact-fields, .woocommerce-checkout .wc-block-components-form .wc-block-checkout__billing-fields, .woocommerce-checkout .wc-block-components-form .wc-block-checkout__payment-method, .woocommerce-checkout .wc-block-components-form .wc-block-checkout__payment-method {
  padding-left: 0;
}
.woocommerce-checkout .wc-block-components-form .wc-block-checkout__terms {
  margin: 0 0 20px;
}
.woocommerce-checkout .wc-block-components-panel__button:hover {
  line-height: 22px;
}
.woocommerce-checkout span.wc-block-components-order-summary__button-text {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 26px !important;
  color: #fff !important;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: #FFCD57;
  border-radius: 10px;
  color: #1B1B1B;
  text-transform: uppercase;
  font-weight: 700 !important;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button:focus {
  box-shadow: none !important;
  outline: none !important;
}
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button {
  color: #FFCD57;
}
.woocommerce-checkout .wc-block-components-checkout-return-to-cart-button:hover {
  color: #FFCD57;
}
.woocommerce-checkout a.wc-block-components-totals-coupon-link {
  color: #FFCD57;
}
.woocommerce-checkout .wc-block-components-totals-coupon__button {
  background: #FFCD57;
  border-radius: 10px;
  color: #1B1B1B;
  text-transform: uppercase;
  font-weight: 700 !important;
}
.woocommerce-checkout .wc-block-components-totals-coupon__input label {
  color: #868E96 !important;
}
.woocommerce-checkout .wc-block-components-title.wc-block-components-title {
  line-height: 34px !important;
  color: #fff !important;
}
.woocommerce-checkout .wc-block-checkout__payment-method .wc-block-components-radio-control {
  border-radius: 20px !important;
  background: #0E101A !important;
  padding: 20px !important;
}
.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 61%;
  background: #141722 !important;
  padding: 30px 40px 40px !important;
  border-radius: 20px !important;
}
@media only screen and (max-width: 768px) {
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    padding: 30px 20px !important;
  }
}
@media only screen and (min-width: 738px) and (max-width: 1199px) {
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 737px) {
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100%;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100%;
  }
}
.woocommerce-checkout .wc-block-components-sidebar {
  margin-top: 0 !important;
  background: #141722 !important;
  padding: 40px !important;
  border-radius: 20px !important;
  margin-left: 40px;
}
@media only screen and (max-width: 768px) {
  .woocommerce-checkout .wc-block-components-sidebar {
    padding: 30px 20px !important;
  }
}
@media only screen and (max-width: 737px) {
  .woocommerce-checkout .wc-block-components-sidebar {
    margin-bottom: 30px !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .woocommerce-checkout .wc-block-components-sidebar {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .woocommerce-checkout .wc-block-components-sidebar {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-checkout .wc-block-components-sidebar {
    width: 100%;
    margin-left: 0;
  }
}
.woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-cart-items-block, .woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-coupon-form-block, .woocommerce-checkout .wc-block-components-sidebar .wp-block-woocommerce-checkout-order-summary-subtotal-block {
  margin-bottom: 20px;
}
.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-wrapper {
  padding: 0;
}
.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel, .woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-coupon, .woocommerce-checkout .wc-block-components-sidebar .wc-block-components-totals-item {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.woocommerce-checkout .wc-block-components-totals-item__label, .woocommerce-checkout .wc-block-components-totals-item__value, .woocommerce-checkout .wc-block-components-checkbox__label {
  color: #fff !important;
}
.woocommerce-checkout .wc-block-components-checkout-step__description {
  color: #868E96;
}
.woocommerce-checkout .wc-block-components-radio-control .wc-block-components-radio-control__input:checked {
  border: 7px solid #FFCD57 !important;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  display: none;
}
.woocommerce-checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
  padding-left: 0 !important;
}
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  max-width: 200px;
}
.woocommerce-checkout .woocommerce {
  font-family: "Inter Tight", sans-serif;
}
.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  background: #0E101A !important;
  color: #fff !important;
  border-top-color: #FFCD57 !important;
}
.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper .woocommerce-message:before {
  color: #FFCD57 !important;
}
.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper .woocommerce-message .button {
  background: #FFCD57 !important;
  font-size: 14px !important;
  text-transform: uppercase;
  color: #1b1b1b !important;
  padding: 15px 30px !important;
}
.woocommerce-checkout .woocommerce .col2-set {
  width: 50%;
  float: left;
  background: #0E101A !important;
  border-radius: 20px !important;
  padding: 40px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-checkout .woocommerce .col2-set {
    width: 100%;
  }
}
.woocommerce-checkout .woocommerce .col2-set .col-1 {
  width: 100%;
}
.woocommerce-checkout .woocommerce .col2-set .col-2 {
  float: inherit;
  width: 100%;
}
.woocommerce-checkout .woocommerce .col2-set .woocommerce-billing-fields {
  font-family: "Inter Tight", sans-serif;
}
.woocommerce-checkout .woocommerce .col2-set .woocommerce-billing-fields h3 {
  font-size: 22px;
  color: #ffffff;
  line-height: 34px;
  margin: 20px 0 0 0;
}
.woocommerce-checkout .woocommerce .col2-set .woocommerce-billing-fields label {
  padding-bottom: 10px;
}
.woocommerce-checkout .woocommerce #order_review_heading {
  display: none;
}
.woocommerce-checkout .woocommerce .woocommerce-checkout-review-order {
  width: 46%;
  float: right;
  background: #0E101A !important;
  color: #868E96 !important;
  border-radius: 20px !important;
  padding: 40px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-checkout .woocommerce .woocommerce-checkout-review-order {
    width: 100%;
    margin-top: 30px;
  }
}
.woocommerce-checkout .woocommerce .woocommerce-additional-fields {
  font-family: "Inter Tight", sans-serif;
}
.woocommerce-checkout .woocommerce .woocommerce-additional-fields h3 {
  font-size: 22px;
  line-height: 34px;
  color: #ffffff;
  margin-top: 30px;
  margin-bottom: 0;
}
.woocommerce-checkout .woocommerce .woocommerce-additional-fields .woocommerce-checkout-review-order-table th {
  color: #ffffff !important;
  font-size: 18px !important;
}
.woocommerce-checkout .woocommerce .woocommerce-additional-fields label {
  padding-bottom: 10px;
}
.woocommerce-checkout .woocommerce .woocommerce-info {
  width: 50% !important;
  background: #0E101A !important;
  border: none !important;
  border-radius: 20px !important;
  padding: 40px;
  color: #ffffff;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-checkout .woocommerce .woocommerce-info {
    width: 100% !important;
  }
}
.woocommerce-checkout .woocommerce .woocommerce-info:before {
  display: none !important;
}
.woocommerce-checkout .woocommerce .woocommerce-info .showcoupon {
  color: #FFCD57;
}
.woocommerce-checkout #wc-stripe-payment-request-wrapper, .woocommerce-checkout #wc-stripe-payment-request-button-separator, .woocommerce-checkout .checkout_coupon.woocommerce-form-coupon {
  width: 50% !important;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-checkout #wc-stripe-payment-request-wrapper, .woocommerce-checkout #wc-stripe-payment-request-button-separator, .woocommerce-checkout .checkout_coupon.woocommerce-form-coupon {
    width: 100% !important;
  }
}
.woocommerce-checkout #place_order {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  background: #FFCD57;
  text-transform: uppercase;
  padding: 20px 50px;
  border-radius: 8px;
  color: #1b1b1b;
}
.woocommerce-checkout .checkout_coupon .button {
  font-family: "Inter Tight", sans-serif;
  font-size: 14px;
  background: #FFCD57;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 8px;
  color: #1b1b1b;
}
.woocommerce-checkout .woocommerce-checkout-payment {
  background: #171A28 !important;
  border-radius: 8px !important;
}
.woocommerce-checkout .payment_box {
  background: #171A28 !important;
}

.woocommerce table.shop_table th {
  color: #ffffff !important;
  font-size: 18px !important;
}

/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.woocommerce-cart.page-id-8 .site.grid-container {
  position: relative;
  overflow: hidden;
}
.woocommerce-cart.page-id-8 .site.grid-container .solar-system {
  top: -662px;
  transform: translate(-50%, 0);
  z-index: -1;
}
.woocommerce-cart.page-id-8 .site-content {
  color: #868E96;
  margin-top: 100px;
}
.woocommerce-cart.page-id-8 .site-content .content-area {
  width: 100% !important;
}
.woocommerce-cart.page-id-8 .site-content .inside-article {
  background: #03060F !important;
  font-family: "Inter Tight", sans-serif;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-cart.page-id-8 .site-content .inside-article {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .woocommerce-cart.page-id-8 .site-content .inside-article {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .woocommerce-cart.page-id-8 .site-content .inside-article {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .woocommerce-cart.page-id-8 .site-content .inside-article {
    padding: 0 50px;
  }
}
.woocommerce-cart.page-id-8 .site-content .inside-article .entry-header {
  margin-left: -40px;
  margin-bottom: 40px;
}
.woocommerce-cart.page-id-8 .site-content .inside-article .entry-header .entry-title {
  font-family: "Inter Tight", sans-serif;
  font-size: 74px;
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-cart.page-id-8 .site-content .inside-article .entry-header .entry-title {
    font-size: 48px;
    line-height: 24px;
    text-align: center;
  }
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main {
  width: 62% !important;
  background: #141722 !important;
  padding: 30px 40px !important;
  border-radius: 20px !important;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100% !important;
  }
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items__header-image {
  text-align: left;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-item__image {
  display: none;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items__row .wc-block-cart-item__product {
  width: 100%;
  padding-left: 0 !important;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap {
    flex-direction: column;
    align-items: self-end;
  }
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-name {
  color: #ffffff;
  text-decoration: none;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-components-product-name:hover {
  color: #FFCD57;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar-layout .wc-block-components-main .wc-block-cart-items__row .wc-block-cart-item__product .wc-block-cart-item__wrap .wc-block-cart-item__quantity {
  display: flex;
  flex-direction: column;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar {
  background: #141722 !important;
  padding: 30px 40px !important;
  margin-left: 40px;
  border-radius: 20px !important;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .woocommerce-cart.page-id-8 .wc-block-components-sidebar {
    margin-left: 0 !important;
    margin-top: 30px;
  }
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar .wc-block-components-totals-coupon .wc-block-components-totals-coupon-link {
  color: #FFCD57;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar .wc-block-components-totals-coupon .wc-block-components-totals-coupon__form {
  background: #868E96 !important;
}
.woocommerce-cart.page-id-8 .wc-block-components-sidebar .wc-block-cart__submit .wc-block-cart__submit-container .wc-block-components-button {
  background: #FFCD57;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 14px;
  padding: 15px 0;
  text-decoration: none;
  color: #1b1b1b;
  font-weight: 700;
}

.woocommerce-cart-form__cart-item .product-thumbnail a {
  display: none;
}

.coupon-col-start #coupon_code {
  border-radius: 8px;
  border: 2px solid #323038;
  background-color: #171A28;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  color: #868E96;
}

.coupon .button:hover {
  color: #fff !important;
}

.custom-wc-mini-cart .custom-mini-cart-icon {
  position: relative;
  width: 44px;
  height: 44px;
  background-color: transparent;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #323038;
}
.custom-wc-mini-cart .custom-mini-card-count {
  position: absolute;
  background-color: #FFCD57;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: #1b1b1b;
  right: -10px;
  top: -10px;
}

.cart-empty.woocommerce-info {
  background: #171A28 !important;
  color: #ffffff !important;
}

.return-to-shop .button {
  background: #FFCD57 !important;
  border-radius: 8px !important;
  padding: 20px 50px !important;
  text-transform: uppercase;
  font-size: 14px !important;
  color: #1b1b1b !important;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  background: #0E101A !important;
  color: #fff !important;
  border-top-color: #FFCD57 !important;
}
.woocommerce .woocommerce-notices-wrapper .woocommerce-message:before {
  color: #FFCD57 !important;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  .site-header .inside-header .main-navigation .header-right-menu {
    display: flex !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .site-header .inside-header .main-navigation .header-right-menu {
    display: flex !important;
  }
}

/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.error404 .site-content {
  color: #868E96;
}
.error404 .site-content .content-area {
  padding-top: 180px;
}
.error404 .site-content .content-area .inside-article {
  background: #03060F;
  padding: 0 0 80px 0;
  font-family: "Inter Tight";
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .error404 .site-content .content-area .inside-article {
    padding: 0 40px;
  }
}
.error404 .site-content .content-area .inside-article .entry-header .entry-title {
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .error404 .site-content .content-area .inside-article .entry-header .entry-title {
    font-size: 44px;
    line-height: 48px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 576px) {
  .error404 .site-content .content-area .inside-article .entry-header .entry-title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 576px) {
  .error404 .site-content .content-area .inside-article .entry-content p {
    margin-top: 10px;
  }
}
.error404 .site-content .content-area .inside-article .search-form {
  background: #171A28;
  border: 1px solid #323038;
  max-width: 300px;
  border-radius: 20px;
}
.error404 .site-content .content-area .inside-article .search-form .search-field {
  background: transparent;
  border: none;
  border-radius: 20px;
  color: #fff;
}
.error404 .site-content .content-area .inside-article .search-form .search-field:focus {
  outline: none;
}
.error404 .site-content .content-area .inside-article .search-form .search-submit {
  background: transparent;
}

.search-no-results .site-content {
  color: #868E96;
}
.search-no-results .site-content .content-area {
  padding-top: 180px;
}
.search-no-results .site-content .content-area .inside-article {
  background: #03060F;
  padding: 0 0 80px 0;
  font-family: "Inter Tight";
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .search-no-results .site-content .content-area .inside-article {
    padding: 0 40px;
  }
}
.search-no-results .site-content .content-area .inside-article .entry-header .entry-title {
  color: #fff;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .search-no-results .site-content .content-area .inside-article .entry-header .entry-title {
    font-size: 44px;
    line-height: 48px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 576px) {
  .search-no-results .site-content .content-area .inside-article .entry-header .entry-title {
    font-size: 36px;
    line-height: 44px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 576px) {
  .search-no-results .site-content .content-area .inside-article .entry-content p {
    margin-top: 10px;
  }
}
.search-no-results .site-content .content-area .inside-article .search-form {
  background: #171A28;
  border: 1px solid #323038;
  max-width: 300px;
  border-radius: 20px;
}
.search-no-results .site-content .content-area .inside-article .search-form .search-field {
  background: transparent;
  border: none;
  border-radius: 20px;
  color: #fff;
}
.search-no-results .site-content .content-area .inside-article .search-form .search-field:focus {
  outline: none;
}
.search-no-results .site-content .content-area .inside-article .search-form .search-submit {
  background: transparent;
}

.policies-page .site-content {
  max-width: 1170px;
  margin: 0 auto;
}
.policies-page .site-content .content-area {
  width: 100%;
}
.policies-page .site-content .content-area .inside-article {
  background-color: transparent;
  padding: 148px 10px 120px;
}
@media only screen and (max-width: 1024px) {
  .policies-page .site-content .content-area .inside-article {
    padding: 120px 10px 80px;
  }
}
.policies-page .site-content .content-area .inside-article .entry-header {
  margin-bottom: 20px;
}
.policies-page .site-content .content-area .inside-article .entry-header .entry-title {
  color: #fff;
  font-family: "Inter Tight", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .policies-page .site-content .content-area .inside-article .entry-header .entry-title {
    font-size: 46px;
    line-height: 54px;
  }
}
@media only screen and (max-width: 768px) {
  .policies-page .site-content .content-area .inside-article .entry-header .entry-title {
    font-size: 36px;
    line-height: 46px;
  }
}
.policies-page .site-content .content-area .inside-article .entry-content {
  color: #868E96;
}
.policies-page .site-content .content-area .inside-article .entry-content h1, .policies-page .site-content .content-area .inside-article .entry-content h2, .policies-page .site-content .content-area .inside-article .entry-content h3, .policies-page .site-content .content-area .inside-article .entry-content h4, .policies-page .site-content .content-area .inside-article .entry-content h5, .policies-page .site-content .content-area .inside-article .entry-content h6 {
  color: #fff;
}
.policies-page .site-content .content-area .inside-article .entry-content h1, .policies-page .site-content .content-area .inside-article .entry-content h2, .policies-page .site-content .content-area .inside-article .entry-content h3, .policies-page .site-content .content-area .inside-article .entry-content h4, .policies-page .site-content .content-area .inside-article .entry-content h5, .policies-page .site-content .content-area .inside-article .entry-content h6, .policies-page .site-content .content-area .inside-article .entry-content ul, .policies-page .site-content .content-area .inside-article .entry-content li, .policies-page .site-content .content-area .inside-article .entry-content a, .policies-page .site-content .content-area .inside-article .entry-content p {
  font-family: "Inter Tight", sans-serif;
}
.policies-page .site-content .content-area .inside-article .entry-content a {
  color: #FFCD57;
}
.policies-page .site-content .content-area .inside-article .entry-content a:hover {
  color: #FFCD57;
}
.policies-page .site-content .content-area .inside-article .entry-content h2 {
  margin-bottom: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .policies-page .site-content .content-area .inside-article .entry-content h2 {
    font-size: 36px;
    line-height: 44px;
  }
}
@media only screen and (max-width: 768px) {
  .policies-page .site-content .content-area .inside-article .entry-content h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.policies-page .site-content .content-area .inside-article .entry-content table td strong {
  color: #fff;
}
.policies-page .site-content .content-area .inside-article .entry-content h3 {
  margin-bottom: 30px;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .policies-page .site-content .content-area .inside-article .entry-content h3 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (max-width: 768px) {
  .policies-page .site-content .content-area .inside-article .entry-content h3 {
    font-size: 22px;
    line-height: 2px;
  }
}
.policies-page .site-content .content-area .inside-article .entry-content p {
  color: #868E96;
  margin-bottom: 15px;
}
.policies-page .site-content .content-area .inside-article .entry-content p strong {
  color: #fff;
}

body .wc-stripe-elements-field {
  background: #fff;
  border: 2px solid #868E96;
  border-radius: 8px;
  padding: 16px 16px;
  height: 54px;
  color: #868E96;
  font-size: 16px;
  font-family: "Inter Tight", sans-serif;
}

.woocommerce-account .inside-article {
  background-color: #0E101A !important;
  border-radius: 20px;
}
.woocommerce-account .inside-article .entry-header {
  margin-bottom: 40px;
}
.woocommerce-account .inside-article .entry-header .entry-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
}
@media only screen and (max-width: 768px) {
  .woocommerce-account .inside-article .entry-header .entry-title {
    font-size: 36px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 768px) {
  .woocommerce-account .inside-article .woocommerce-MyAccount-navigation {
    margin-bottom: 40px;
  }
}
.woocommerce-account .inside-article .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-navigation ul li {
  font-size: 16px;
  margin-bottom: 20px;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #FFCD57;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-navigation ul li:last-child {
  margin-bottom: 0;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .form-row br {
  display: none;
}
@media only screen and (max-width: 768px) {
  .woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-column--billing-address {
    margin-bottom: 40px;
  }
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-EditAccountForm p:last-of-type {
  display: block;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content p {
  color: #868E96;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content p a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content p a:hover {
  color: #FFCD57;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content p:last-of-type {
  display: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content table {
  border-color: #323038;
  color: #fff !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content table td a {
  color: #FFCD57;
  text-decoration: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content table.subscription_activity_logs tr:first-child td {
  color: #fff !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content table.subscription_activity_logs td {
  color: #1b1b1b !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content table.subscription_activity_logs a {
  color: #FFCD57;
  text-decoration: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content table th {
  color: #fff;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content table, .woocommerce-account .inside-article .woocommerce-MyAccount-content td, .woocommerce-account .inside-article .woocommerce-MyAccount-content th {
  border-color: #323038;
  font-size: 16px;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-info .woocommerce-Button.button {
  width: 185px !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button {
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1B1B1B !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  width: 210px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(-135deg, transparent 14px, #FFCD57 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button:hover {
  color: #fff !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button.woocommerce-Button.woocommerce-Button--alt {
  width: 210px !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button.woocommerce-Button {
  width: 156px !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button.view, .woocommerce-account .inside-article .woocommerce-MyAccount-content .button.default {
  width: auto !important;
  background: #FFCD57 !important;
  padding: 8px 20px !important;
  border-radius: 12px;
  text-transform: none !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button.view:before, .woocommerce-account .inside-article .woocommerce-MyAccount-content .button.view:after, .woocommerce-account .inside-article .woocommerce-MyAccount-content .button.default:before, .woocommerce-account .inside-article .woocommerce-MyAccount-content .button.default:after {
  display: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button.delete {
  width: auto !important;
  background: #ef381c !important;
  padding: 8px 20px !important;
  border-radius: 12px;
  text-transform: none !important;
  color: #fff !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .button.delete:before, .woocommerce-account .inside-article .woocommerce-MyAccount-content .button.delete:after {
  display: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .form-row {
  margin-bottom: 32px !important;
}
@media only screen and (max-width: 768px) {
  .woocommerce-account .inside-article .woocommerce-MyAccount-content .form-row.form-row-last, .woocommerce-account .inside-article .woocommerce-MyAccount-content .form-row.form-row-first {
    width: 100%;
  }
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content legend {
  display: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-info {
  background-color: #1B1B2E !important;
  color: #fff;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content label {
  color: #fff;
  font-size: 18px;
  line-height: 26px;
  font-family: "Inter Tight", sans-serif !important;
  margin-bottom: 16px;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content input[type=text], .woocommerce-account .inside-article .woocommerce-MyAccount-content input[type=password], .woocommerce-account .inside-article .woocommerce-MyAccount-content input[type=email] {
  border: 2px solid #323038;
  background: #171A28;
  height: 54px;
  padding: 10px 16px 10px;
  border-radius: 8px;
  color: #868E96;
  font-size: 16px;
  font-family: "Inter Tight", sans-serif;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content input[type=text]:focus, .woocommerce-account .inside-article .woocommerce-MyAccount-content input[type=password]:focus, .woocommerce-account .inside-article .woocommerce-MyAccount-content input[type=email]:focus {
  box-shadow: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .subscriber-billing-address, .woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-column__title {
  font-size: 38px;
  font-weight: 400;
  line-height: 48px;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content address {
  color: #fff !important;
  border-color: #323038 !important;
  font-family: "Inter Tight", sans-serif;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content address .woocommerce-customer-details--phone {
  color: #fff !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-message {
  background-color: #1B1B2E !important;
  color: #fff;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-message br {
  display: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-message a {
  color: #FFCD57;
  text-decoration: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content .woocommerce-message .button {
  display: none;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment {
  background: #151421 !important;
  border-radius: 20px !important;
  padding: 30px;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .payment_methods {
  border: none !important;
  padding: 0 !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .payment_methods .woocommerce-PaymentMethod--stripe > input {
  margin-right: 5px;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .payment_methods .woocommerce-PaymentMethod--stripe > label {
  font-size: 20px !important;
  font-weight: 500;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .woocommerce-PaymentBox.payment_box {
  background-color: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .woocommerce-PaymentBox.payment_box #wc-stripe-cc-form .form-row {
  margin-bottom: 30px !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .woocommerce-PaymentBox.payment_box:before {
  display: none !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .form-row {
  padding: 0 !important;
  margin: 0 !important;
}
.woocommerce-account .inside-article .woocommerce-MyAccount-content #add_payment_method .woocommerce-Payment .woocommerce-Button:hover {
  background-color: transparent !important;
}
.woocommerce-account .site.grid-container {
  overflow: hidden;
  position: relative;
  padding: 148px 10px 140px;
}
.woocommerce-account .site.grid-container .solar-system {
  top: -662px;
  transform: translate(-50%, 0);
  z-index: -1;
}

.no_subscription_found {
  border: 1px solid #323038;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
  margin-bottom: 20px;
}

.subscribe-area {
  position: relative;
  z-index: 1;
  background: #03060F;
  padding: 80px 10px 0;
  border-top: 1px solid #323038;
}
@media only screen and (max-width: 768px) {
  .subscribe-area {
    padding: 60px 10px 0;
  }
}
.subscribe-area .subscribe-container {
  max-width: 1382px;
  width: 100%;
  margin: 0 auto;
}
.subscribe-area .content-wrapper {
  background-color: #0E101A;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-radius: 20px;
}
@media only screen and (max-width: 1024px) {
  .subscribe-area .content-wrapper {
    flex-direction: column;
    gap: 40px;
    align-items: start;
  }
}
@media only screen and (max-width: 768px) {
  .subscribe-area .content-wrapper {
    padding: 30px 20px;
  }
}
.subscribe-area .content-wrapper .section-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.subscribe-area .content-wrapper .section-title .title {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin-bottom: 0;
}
.subscribe-area .content-wrapper .section-title .desc {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #868E96;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .subscribe-area .content-wrapper .section-title .desc {
    font-size: 16px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .subscribe-form-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .subscribe-form-wrapper .subscribe-form-widget {
    width: 100%;
  }
}
.subscribe-form-wrapper .subscribe-form-widget .mc4wp-response {
  margin-top: 12px;
}
.subscribe-form-wrapper .subscribe-form-widget .mc4wp-response p {
  margin-bottom: 0;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  line-height: 26px;
}
.subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields {
    flex-direction: column;
    align-items: start;
    width: 100%;
  }
}
.subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields .single-field {
  position: relative;
}
.subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields .single-field i, .subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields .single-field .alt-field-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  font-size: 24px;
  color: #868E96;
  z-index: 10;
}
.subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields .single-field input {
  position: relative;
  padding-left: 60px;
  padding-right: 20px;
  width: 315px;
  height: 54px;
  border-radius: 8px;
  border: 2px solid #323038;
  background-color: #171A28;
  outline: none;
  font-family: "Inter Tight", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #868E96;
}
@media only screen and (max-width: 768px) {
  .subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields .single-field input {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields .single-field {
    width: 100%;
  }
}
.subscribe-form-wrapper .subscribe-form-widget .mc4wp-form-fields .header-btn {
  text-decoration: none;
  height: 54px;
  width: 141px;
  background: none;
  border: none;
}

.contact-page .inside-article {
  background: #03060F !important;
  padding: 148px 10px 0 !important;
  max-width: 70%;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .contact-page .inside-article {
    padding: 120px 10px 0 !important;
    max-width: 100%;
  }
}
.contact-page .inside-article .entry-header {
  margin-bottom: 40px;
}
.contact-page .inside-article .entry-header .entry-title {
  color: #fff;
  font-family: "Inter Tight", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .contact-page .inside-article .entry-header .entry-title {
    font-size: 46px;
    line-height: 56px;
  }
}
.contact-page .forminator-row.forminator-row-last {
  margin-bottom: 0 !important;
}
.contact-page .forminator-label {
  font-size: 14px !important;
  margin-bottom: 10px !important;
}
.contact-page .forminator-input {
  border-radius: 8px !important;
  padding: 14px !important;
}
.contact-page .forminator-textarea {
  border-radius: 8px !important;
  padding: 14px !important;
}
.contact-page .forminator-button-submit {
  font-size: 14px !important;
  padding: 15px 30px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
}
.contact-page .forminator-error-message {
  margin-top: 20px !important;
}

.site-footer {
  background-color: #03060F;
  position: relative;
  z-index: 1;
}
.site-footer .footer-widgets, .site-footer .site-info {
  background-color: #03060F;
}
.site-footer .footer-widgets .footer-widgets-container {
  padding: 80px 10px 40px;
}
@media only screen and (max-width: 768px) {
  .site-footer .footer-widgets .footer-widgets-container {
    padding: 60px 10px 20px;
  }
}
.site-footer .footer-widgets .inside-footer-widgets {
  margin: 0 !important;
  gap: 60px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .site-footer .footer-widgets .inside-footer-widgets {
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer .footer-widgets .inside-footer-widgets {
    gap: 0;
  }
}
.site-footer .footer-widgets .inside-footer-widgets .widget {
  padding: 0;
}
.site-footer .footer-widgets .inside-footer-widgets .widget h2 {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 24px;
}
.site-footer .footer-widgets .inside-footer-widgets .widget .menu .menu-item {
  margin-bottom: 16px;
}
.site-footer .footer-widgets .inside-footer-widgets .widget .menu .menu-item.alt-footer-menu-legal-cookies:after {
  content: "UPDATED";
  width: 80px;
  font-weight: 600;
  height: 21px;
  border: 1px solid #D525FF;
  border-radius: 20px;
  color: #D525FF;
  font-family: "Inter Tight", sans-serif;
  display: inline-flex;
  text-align: center;
  font-size: 14px;
  margin-left: 6px;
  align-items: center;
  justify-content: center;
}
.site-footer .footer-widgets .inside-footer-widgets .widget .menu .menu-item:last-child {
  margin-bottom: 0;
}
.site-footer .footer-widgets .inside-footer-widgets .widget .menu .menu-item a {
  font-family: "Inter Tight", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.site-footer .footer-widgets .inside-footer-widgets .widget .menu .menu-item a:hover {
  color: #FFCD57;
}
.site-footer .footer-widgets .inside-footer-widgets > div {
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .site-footer .footer-widgets .inside-footer-widgets .footer-widget-1 {
    width: 100%;
  }
}
.site-footer .footer-widgets .inside-footer-widgets .footer-widget-1 .widget_text p {
  color: #868E96;
  font-size: 20px;
  line-height: 28px;
  font-family: "Inter Tight", sans-serif;
}
@media only screen and (max-width: 768px) {
  .site-footer .footer-widgets .inside-footer-widgets .footer-widget-2, .site-footer .footer-widgets .inside-footer-widgets .footer-widget-3, .site-footer .footer-widgets .inside-footer-widgets .footer-widget-4 {
    width: 100%;
  }
}
.site-footer .site-info {
  border-top: 1px solid #323038;
}
.site-footer .site-info .inside-site-info {
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .site-footer .site-info .inside-site-info {
    flex-direction: column;
    gap: 20px;
  }
}
.site-footer .site-info .inside-site-info .copyright-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .site-footer .site-info .inside-site-info .copyright-bar {
    justify-content: center;
    order: 2;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer .site-info .inside-site-info .copyright-bar {
    flex-direction: column;
    gap: 10px;
  }
}
.site-footer .site-info .inside-site-info .copyright-bar p, .site-footer .site-info .inside-site-info .copyright-bar span {
  font-size: 18px;
  line-height: 28px;
  font-family: "Inter Tight", sans-serif;
  margin-bottom: 0;
  color: #fff;
}
.site-footer .site-info .inside-site-info .copyright-bar span {
  padding-right: 10px;
}
@media only screen and (max-width: 768px) {
  .site-footer .site-info .inside-site-info .copyright-bar span {
    padding-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer .site-info .inside-site-info .copyright-bar span {
    order: 3;
  }
}
@media only screen and (max-width: 768px) {
  .site-footer .site-info .inside-site-info .copyright-bar > img {
    order: 1;
  }
}
.site-footer .site-info .inside-site-info .copyright-bar p {
  padding-left: 10px;
  padding-right: 10px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  border-left: 1px solid #323038;
  border-right: 1px solid #323038;
  gap: 6px;
}
@media only screen and (max-width: 768px) {
  .site-footer .site-info .inside-site-info .copyright-bar p {
    order: 2;
    padding-right: 0;
    padding-left: 0;
    border: none;
  }
}
.site-footer .site-info .inside-site-info .footer-bar {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1024px) {
  .site-footer .site-info .inside-site-info .footer-bar {
    justify-content: center;
    order: 1;
  }
}
.site-footer .site-info .inside-site-info .footer-bar .widget_text {
  height: 40px;
  width: 40px;
  box-shadow: 2px 1000px 1px #0E101A inset !important;
  border: 2px solid transparent !important;
  background: linear-gradient(97.03deg, #6248FF 0%, #D525FF 59.5%, #FFCD57 100%);
  background-origin: border-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .site-info .inside-site-info .footer-bar .widget_text a {
  display: flex;
  align-items: center;
}

.hustle-main-wrapper .hustle-layout {
  background-color: transparent !important;
}
.hustle-main-wrapper .hustle-layout .hustle-button-close {
  color: #fff !important;
  right: 30px !important;
  top: 35px !important;
}

.uwp-register-class, .uwp-login-class {
  font-family: "Inter Tight", sans-serif;
}
.uwp-register-class .uwp_widgets .uwp-registration, .uwp-register-class .uwp_widgets .uwp-login, .uwp-register-class .uwp-content-wrap .uwp-registration, .uwp-register-class .uwp-content-wrap .uwp-login, .uwp-login-class .uwp_widgets .uwp-registration, .uwp-login-class .uwp_widgets .uwp-login, .uwp-login-class .uwp-content-wrap .uwp-registration, .uwp-login-class .uwp-content-wrap .uwp-login {
  max-width: 448px;
  width: 100%;
  margin: 0 auto;
  padding: 40px !important;
  border-radius: 30px !important;
  position: relative;
  box-shadow: 2px 1000px 1px #0e101a inset !important;
  border: 2px solid transparent !important;
  background-image: linear-gradient(97.03deg, #6248ff 0%, #d525ff 59.5%, #ffcd57 100%);
  background-origin: border-box;
}
.uwp-register-class .uwp_widgets .uwp-registration:before, .uwp-register-class .uwp_widgets .uwp-login:before, .uwp-register-class .uwp-content-wrap .uwp-registration:before, .uwp-register-class .uwp-content-wrap .uwp-login:before, .uwp-login-class .uwp_widgets .uwp-registration:before, .uwp-login-class .uwp_widgets .uwp-login:before, .uwp-login-class .uwp-content-wrap .uwp-registration:before, .uwp-login-class .uwp-content-wrap .uwp-login:before {
  position: absolute;
  right: -22px;
  top: 33px;
  background: #1b1b2e;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 66px);
  z-index: -1;
  border-radius: 30px;
}
.uwp-register-class .uwp_widgets .uwp-registration:after, .uwp-register-class .uwp_widgets .uwp-login:after, .uwp-register-class .uwp-content-wrap .uwp-registration:after, .uwp-register-class .uwp-content-wrap .uwp-login:after, .uwp-login-class .uwp_widgets .uwp-registration:after, .uwp-login-class .uwp_widgets .uwp-login:after, .uwp-login-class .uwp-content-wrap .uwp-registration:after, .uwp-login-class .uwp-content-wrap .uwp-login:after {
  position: absolute;
  right: -44px;
  top: 77px;
  background: #151421;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 154px);
  z-index: -2;
  border-radius: 30px;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form input, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form input, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form input, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form input, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form input, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form input, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form input, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form input, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form input, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form input, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form input, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form input, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form input, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form input, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form input, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form input {
  border: 2px solid #323038;
  background: #171a28;
  height: 54px;
  padding: 10px 16px 10px;
  border-radius: 8px;
  color: #868e96;
  font-size: 16px;
  font-family: "Inter Tight", sans-serif;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form input:focus, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form input:focus, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form input:focus, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form input:focus, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form input:focus, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form input:focus, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form input:focus, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form input:focus, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form input:focus, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form input:focus, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form input:focus, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form input:focus, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form input:focus, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form input:focus, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form input:focus, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form input:focus {
  outline: none !important;
  box-shadow: none !important;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form input[type=submit], .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form input[type=submit], .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form input[type=submit], .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form input[type=submit], .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form input[type=submit], .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form input[type=submit], .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form input[type=submit], .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form input[type=submit], .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form input[type=submit], .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form input[type=submit], .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form input[type=submit], .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form input[type=submit], .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form input[type=submit], .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form input[type=submit], .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form input[type=submit], .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form input[type=submit] {
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1b1b1b !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  background: linear-gradient(-135deg, transparent 14px, #ffcd57 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form input[type=submit]:hover, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form input[type=submit]:hover, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form input[type=submit]:hover, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form input[type=submit]:hover, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form input[type=submit]:hover, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form input[type=submit]:hover, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form input[type=submit]:hover, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form input[type=submit]:hover, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form input[type=submit]:hover, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form input[type=submit]:hover, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form input[type=submit]:hover, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form input[type=submit]:hover, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form input[type=submit]:hover, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form input[type=submit]:hover, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form input[type=submit]:hover, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form input[type=submit]:hover {
  box-shadow: none !important;
  color: #fff !important;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-password-wrap .input-group-text, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form .uwp-password-wrap .input-group-text, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-password-wrap .input-group-text, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-password-wrap .input-group-text, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-password-wrap .input-group-text {
  border-radius: 0 8px 8px 0;
  border: 2px solid #323038;
  border-left: 0;
  background: #171a28;
  color: #868e96;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form .mb-3, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form .mb-3, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form .mb-3, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form .mb-3, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form .mb-3, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form .mb-3, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form .mb-3, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form .mb-3, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form .mb-3, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form .mb-3, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form .mb-3, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form .mb-3, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form .mb-3, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form .mb-3, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form .mb-3, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form .mb-3 {
  margin-bottom: 32px !important;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-remember-me, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-remember-me, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-remember-me, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form .uwp-remember-me, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-remember-me, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-remember-me, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-remember-me, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-remember-me, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-remember-me, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-remember-me, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-remember-me, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form .uwp-remember-me, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-remember-me, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-remember-me, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-remember-me, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-remember-me {
  margin-bottom: 20px;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-remember-me label, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-remember-me label, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-remember-me label, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form .uwp-remember-me label, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-remember-me label, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-remember-me label, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-remember-me label, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-remember-me label, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-remember-me label, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-remember-me label, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-remember-me label, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form .uwp-remember-me label, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-remember-me label, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-remember-me label, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-remember-me label, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-remember-me label {
  color: #868E96;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-remember-me input[type=checkbox], .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form .uwp-remember-me input[type=checkbox], .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-remember-me input[type=checkbox], .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form .uwp-remember-me input[type=checkbox], .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form .uwp-remember-me input[type=checkbox] {
  height: 13px;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-registration-form .error-message, .uwp-register-class .uwp_widgets .uwp-registration .uwp-login-form .error-message, .uwp-register-class .uwp_widgets .uwp-login .uwp-registration-form .error-message, .uwp-register-class .uwp_widgets .uwp-login .uwp-login-form .error-message, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-registration-form .error-message, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-login-form .error-message, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-registration-form .error-message, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-login-form .error-message, .uwp-login-class .uwp_widgets .uwp-registration .uwp-registration-form .error-message, .uwp-login-class .uwp_widgets .uwp-registration .uwp-login-form .error-message, .uwp-login-class .uwp_widgets .uwp-login .uwp-registration-form .error-message, .uwp-login-class .uwp_widgets .uwp-login .uwp-login-form .error-message, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-registration-form .error-message, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-login-form .error-message, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-registration-form .error-message, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-login-form .error-message {
  color: red;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-footer-link, .uwp-register-class .uwp_widgets .uwp-login .uwp-footer-link, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-footer-link, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-footer-link, .uwp-login-class .uwp_widgets .uwp-registration .uwp-footer-link, .uwp-login-class .uwp_widgets .uwp-login .uwp-footer-link, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-footer-link, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-footer-link {
  color: #868E96;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-footer-link a, .uwp-register-class .uwp_widgets .uwp-login .uwp-footer-link a, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-footer-link a, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-footer-link a, .uwp-login-class .uwp_widgets .uwp-registration .uwp-footer-link a, .uwp-login-class .uwp_widgets .uwp-login .uwp-footer-link a, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-footer-link a, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-footer-link a {
  color: #d525ff !important;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-footer-link .uwp-login-link, .uwp-register-class .uwp_widgets .uwp-login .uwp-footer-link .uwp-login-link, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-footer-link .uwp-login-link, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-footer-link .uwp-login-link, .uwp-login-class .uwp_widgets .uwp-registration .uwp-footer-link .uwp-login-link, .uwp-login-class .uwp_widgets .uwp-login .uwp-footer-link .uwp-login-link, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-footer-link .uwp-login-link, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-footer-link .uwp-login-link {
  font-size: 16px;
  font-weight: 500;
  color: #868e96;
  font-family: "Inter Tight", sans-serif;
  line-height: 28px;
  margin: 0 !important;
}
.uwp-register-class .uwp_widgets .uwp-registration .uwp-rf-icon, .uwp-register-class .uwp_widgets .uwp-registration .uwp-lf-icon, .uwp-register-class .uwp_widgets .uwp-login .uwp-rf-icon, .uwp-register-class .uwp_widgets .uwp-login .uwp-lf-icon, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-rf-icon, .uwp-register-class .uwp-content-wrap .uwp-registration .uwp-lf-icon, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-rf-icon, .uwp-register-class .uwp-content-wrap .uwp-login .uwp-lf-icon, .uwp-login-class .uwp_widgets .uwp-registration .uwp-rf-icon, .uwp-login-class .uwp_widgets .uwp-registration .uwp-lf-icon, .uwp-login-class .uwp_widgets .uwp-login .uwp-rf-icon, .uwp-login-class .uwp_widgets .uwp-login .uwp-lf-icon, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-rf-icon, .uwp-login-class .uwp-content-wrap .uwp-registration .uwp-lf-icon, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-rf-icon, .uwp-login-class .uwp-content-wrap .uwp-login .uwp-lf-icon {
  display: none;
}
.uwp-register-class .uwp_widgets .uwp-registration h2, .uwp-register-class .uwp_widgets .uwp-login h2, .uwp-register-class .uwp-content-wrap .uwp-registration h2, .uwp-register-class .uwp-content-wrap .uwp-login h2, .uwp-login-class .uwp_widgets .uwp-registration h2, .uwp-login-class .uwp_widgets .uwp-login h2, .uwp-login-class .uwp-content-wrap .uwp-registration h2, .uwp-login-class .uwp-content-wrap .uwp-login h2 {
  color: #868E96;
}

.alt-step-progress-wrapper .alt-slider-range {
  margin-bottom: 10px;
}
.alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-min, .alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-max {
  display: none;
}
.alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-line {
  background-color: #3A404C;
  border-radius: 8px;
}
.alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-bar--single {
  border-radius: 8px 0 0 8px;
}
.alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-single {
  font-size: 14px;
  padding: 2px 20px;
  background-color: #D525FF;
  border-radius: 15px;
  margin-top: -10px;
}
.alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-single:before {
  display: none;
}
.alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-bar {
  background: linear-gradient(97deg, #6248FF 0%, #D525FF 59.5%, #FFCD57 100%);
}
.alt-step-progress-wrapper .alt-slider-range .irs--flat .irs-handle > i:first-child {
  width: 21px;
  background-color: #fff;
  border-radius: 50px;
}
.alt-step-progress-wrapper .alt-slider-range .irs-disabled {
  opacity: 1;
}
.alt-step-progress-wrapper .alt-barfiller-count {
  display: flex;
  justify-content: space-between;
  color: #868E96;
}
.alt-step-progress-wrapper .alt-custom-credit-radio-wrapper {
  display: flex;
  gap: 24px;
  margin-top: 30px;
}
.alt-step-progress-wrapper .alt-custom-credit-radio-wrapper .alt-single-radio {
  display: flex;
  align-items: center;
  color: #fff;
  border: 2px solid #323038;
  padding: 14px 20px;
  border-radius: 8px;
  cursor: pointer;
}
.alt-step-progress-wrapper .alt-custom-credit-radio-wrapper .alt-single-radio.active {
  position: relative;
  box-shadow: 2px 1000px 1px #0e101a inset !important;
  border: 2px solid transparent !important;
  background-image: linear-gradient(97.03deg, #6248ff 0%, #d525ff 59.5%, #ffcd57 100%);
  background-origin: border-box;
}
.alt-step-progress-wrapper .alt-custom-credit-radio-wrapper .alt-single-radio input {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: relative;
}
.alt-step-progress-wrapper .alt-custom-credit-radio-wrapper .alt-single-radio input:after {
  content: "";
  width: 24px;
  height: 24px;
  display: block;
  background: #0E101A;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  border: 1px solid #fff;
}
.alt-step-progress-wrapper .alt-custom-credit-radio-wrapper .alt-single-radio input:checked:after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  background: #D525FF;
  border: 1px solid #D525FF;
}
.alt-step-progress-wrapper .alt-custom-credit-radio-wrapper .alt-single-radio label {
  cursor: pointer;
}
.alt-step-progress-wrapper .choose-text-wrap p {
  color: #fff;
  margin: 10px 0 0 0;
}

.alt-custom-purchase-btn .elementor-button-wrapper .elementor-button {
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1B1B1B !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(-135deg, transparent 14px, #FFF 0) bottom left !important;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.alt-bf-custom-purchase-btn .elementor-button-wrapper .elementor-button {
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1B1B1B !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  margin: 0 auto;
  background: linear-gradient(-135deg, transparent 14px, #FFF 0) bottom left !important;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

sc-cart-button {
  color: #FFCD57;
}

.alt-custom-pricing-card .elementor-widget-wrap {
  background: linear-gradient(117deg, #6248FF 32.99%, #D525FF 72.86%, #FFCD57 100%);
}

.alt-google-login-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  font-size: 14px !important;
  line-height: 22px !important;
  font-weight: 600 !important;
  color: #1b1b1b !important;
  text-transform: uppercase !important;
  font-family: "Inter Tight", sans-serif !important;
  padding: 16px !important;
  border: none !important;
  position: relative;
  z-index: 1;
  background: linear-gradient(-135deg, transparent 14px, #ffffff 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  margin: 10px 0 20px 0;
}
.alt-google-login-btn-wrapper svg {
  width: 24px;
}
.alt-google-login-btn-wrapper button.alt-social-login-google {
  background: transparent;
  padding: 0;
  text-transform: uppercase;
  color: #868E96;
}

.the_champ_login_container {
  display: none;
}

/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
.alt-tab-carousel-wrapper {
  font-family: "Inter Tight", sans-serif;
}
.alt-tab-carousel-wrapper .alt-tab-innner-wrapper .alt-tab-elements-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.alt-tab-carousel-wrapper .alt-tab-innner-wrapper .alt-tab-left {
  width: 35%;
  position: relative;
}
.alt-tab-carousel-wrapper .alt-tab-innner-wrapper .alt-tab-left:before {
  position: absolute;
  right: -22px;
  top: 33px;
  background: #1B1B2E;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 66px);
  z-index: -1;
  border-radius: 30px;
}
.alt-tab-carousel-wrapper .alt-tab-innner-wrapper .alt-tab-left:after {
  position: absolute;
  right: -44px;
  top: 77px;
  background: #151421;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 154px);
  z-index: -2;
  border-radius: 30px;
}
.alt-tab-carousel-wrapper .alt-tab-innner-wrapper .alt-tab-right {
  width: 55%;
}

.alt-info-tab-top-singe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 158px;
}
@media only screen and (max-width: 1024px) {
  .alt-info-tab-top-singe {
    flex-direction: column;
    gap: 40px;
  }
}

.alt-info-tab-top-left {
  width: 35%;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .alt-info-tab-top-left {
    width: 50%;
  }
}
@media only screen and (max-width: 490px) {
  .alt-info-tab-top-left {
    max-width: 360px;
  }
}
.alt-info-tab-top-left:before {
  position: absolute;
  right: -22px;
  top: 33px;
  background: #1B1B2E;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 66px);
  z-index: -1;
  border-radius: 30px;
}
@media only screen and (max-width: 490px) {
  .alt-info-tab-top-left:before {
    right: -5px;
  }
}
.alt-info-tab-top-left:after {
  position: absolute;
  right: -44px;
  top: 77px;
  background: #151421;
  content: "";
  width: calc(100% - 33px);
  height: calc(100% - 154px);
  z-index: -2;
  border-radius: 30px;
}
@media only screen and (max-width: 490px) {
  .alt-info-tab-top-left:after {
    right: -10px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-info-tab-top-left {
    width: 100%;
  }
}

.alt-info-tab-top-left img {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .alt-info-tab-top-right {
    width: 100%;
  }
}
.alt-info-tab-top-right .primary-button {
  color: #1B1B1B;
  padding: 0 30px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(-135deg, transparent 14px, #FFCD57 0) bottom left;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}
.alt-info-tab-top-right .primary-button:hover {
  color: #fff !important;
  transform: translateY(-10px);
}

.alt-info-tab-top-right h6 {
  color: #868E96;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alt-info-tab-top-right h3 {
  color: #FFF;
  font-size: 54px;
  font-weight: 700;
  line-height: 62px;
}

.alt-info-tab-top-right p {
  color: #868E96;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  padding: 20px 0;
}

.alt-info-tab-top-right .alt-custom-btn {
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  text-decoration: none;
  fill: #03060F;
  border: 1px solid #6248FF;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}

.alt-info-tab-top-right .alt-left-angle {
  color: #6248FF;
}

.alt-info-tab-top-right .alt-right-angle {
  color: #D525FF;
}

.alt-info-tab-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
  gap: 30px;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-info-tab-bottom {
    flex-direction: column;
  }
}

.alt-info-tab-bottom .alt-tab-single-tab {
  cursor: pointer;
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
  .alt-info-tab-bottom .alt-tab-single-tab {
    width: 100%;
  }
}

.alt-info-tab-bottom .alt-tab-single-tab .alt-tab-number {
  color: #868E96;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.alt-info-tab-bottom .alt-tab-single-tab h5 {
  color: #FFF;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.alt-info-tab-bottom .alt-tab-divider {
  width: 100%;
  height: 2px;
  background-color: #323038;
  margin-bottom: 30px;
}

.alt-info-tab-bottom .alt-tab-single-tab.activetab .alt-tab-divider {
  background: linear-gradient(97deg, #6248FF 0%, #D525FF 59.5%, #FF8964 100%);
}

.alt-info-tab-top .alt-info-tab-top-singe.hide {
  display: none;
}

.alt-info-tab-top .alt-info-tab-top-singe.active {
  display: flex;
}

/*
0-600px:        Phone
600-991px:      Tablet Portrait
992-1200px:     Tablet Landscape
[1200-1800px:]  is where our normal styles apply
1800px + :      Big Desktop

$breakpoint argument choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/

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