@charset "UTF-8";
/*=== abstracts css start === */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@font-face {
  font-family: "GOTHIC";
  src: url(../fonts/GOTHIC.TTF);
}
@font-face {
  font-family: "GOTHICB";
  src: url(../fonts/GOTHICB.TTF);
}
@font-face {
  font-family: "Infinite-Beyond";
  src: url(../fonts/Infinite-Beyond.otf);
}
@font-face {
  font-family: "KozGoPro";
  src: url(../fonts/KozGoPro-ExtraLight.otf);
}
@font-face {
  font-family: "TahomaBold";
  src: url(../fonts/Tahoma-bold.ttf);
}
@font-face {
  font-family: "ArialNarrow";
  src: url(../fonts/ARIALN.TTF);
}
/*===// end of abstracts css === */
/*=== base css start === */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

::after, ::before {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, ol, ul, p, address, strong, i {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul, li {
  list-style: none;
}

a, a:hover {
  text-decoration: none;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.main-body {
  margin-top: 110px;
  width: calc(100% - 300px);
  margin-left: auto;
}
@media screen and (max-width: 1399px) {
  .main-body {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1199px) {
  .main-body {
    width: 100%;
    margin-top: 80px;
  }
}
@media screen and (max-width: 575px) {
  .main-body {
    margin-top: 68px;
  }
}

/*===// end of base css === */
/*=== layouts css start === */
.home-header .navbar .nav-link {
  font-family: "ArialNarrow";
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
}
.home-header .brand-logo {
  max-width: 150px;
}

.backoffice-header {
  background: #fff;
}
.backoffice-header .brand-logo {
  max-height: 70px;
}
@media screen and (max-width: 575px) {
  .backoffice-header .brand-logo {
    max-width: 100px;
  }
}
.backoffice-header .heading {
  font-family: "KozGoPro";
  font-size: 50px;
  color: #585555;
  font-weight: 300;
}
@media screen and (max-width: 1399px) {
  .backoffice-header .heading {
    font-size: 35px;
  }
}
@media screen and (max-width: 575px) {
  .backoffice-header .heading {
    font-size: 20px;
  }
}
.backoffice-header .profile-image {
  width: 100%;
  max-width: 85px;
}
@media screen and (max-width: 1399px) {
  .backoffice-header .profile-image {
    max-width: 70px;
  }
}
@media screen and (max-width: 575px) {
  .backoffice-header .profile-image {
    max-width: 45px;
  }
}

.sideNav {
  background: #019b6e;
  width: 280px;
  height: 100vh;
  padding-top: 100px;
  overflow: auto;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.1s linear;
}
@media screen and (max-width: 1199px) {
  .sideNav {
    position: fixed;
    overflow: hidden;
    width: 0;
  }
}
.sideNav .body-content ul {
  padding-top: 25px;
}
.sideNav .body-content ul li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  font-weight: 400;
  padding-bottom: 20px;
}
@media (max-width: 1399px) {
  .sideNav .body-content ul li {
    font-size: 18px;
    padding-bottom: 15px;
  }
}
.sideNav .body-content ul li a {
  display: block;
  padding: 5px;
  color: #ffffff;
}
.sideNav .body-content ul li a:hover {
  background: #fff;
  color: #000;
}
.sideNav .body-content ul li a:hover img {
  filter: invert(1);
}

.home-footer {
  background: linear-gradient(0deg, #000, #76dec0);
  padding: 60px 0 20px 0;
}
@media (min-width: 991px) {
  .home-footer .footer-content {
    display: flex;
    justify-content: space-between;
  }
}
.home-footer .footer-content .copyright {
  font-size: 20px;
  text-align: center;
  color: #fff;
}
.home-footer .footer-content .nav .nav-item {
  padding: 10px;
  font-size: 20px;
  color: #fff;
}
.home-footer .footer-content .nav .nav-item:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .backoffice-footer .footer-copyright {
    font-size: 1rem !important;
  }
}

/*===// end of layouts css === */
/*=== components css start === */
.back-office .btn-green {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  background: #019b6e;
  padding: 0 20px;
  margin-top: 5px;
  border-radius: 0;
}
.back-office .btn-green:hover {
  background-color: #019b6e;
}
@media screen and (max-width: 1399px) {
  .back-office .btn-green {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .back-office .btn-green {
    font-size: 16px;
  }
}

.back-office .btn-pink {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  background: #ca00b8;
  padding: 0 20px;
  margin-top: 5px;
  border-radius: 0;
}
.back-office .btn-pink:hover {
  background-color: #ca00b8;
}
@media screen and (max-width: 1399px) {
  .back-office .btn-pink {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .back-office .btn-pink {
    font-size: 16px;
  }
}

.button-groups .button-parent {
  background: linear-gradient(90deg, #0e63c3 0%, #fdfcfd 50%, #0e63c3 100%);
  padding: 5px;
}
@media screen and (max-width: 991px) {
  .button-groups .button-parent {
    padding: 3px;
  }
}
.button-groups .button-parent .btn-transactions {
  color: #000;
  background: linear-gradient(90deg, #fff 0%, #fff 50%, #fff 100%);
  font-family: "TahomaBold";
  font-size: 24px;
  border-radius: 0;
  padding: 15px 10px;
  width: 100%;
  display: block;
}
.button-groups .button-parent .btn-transactions:hover {
  background: linear-gradient(90deg, #0c56a9 0%, #0e63c3 50%, #0c56a9 100%);
  color: #fff;
}
@media screen and (max-width: 1399px) {
  .button-groups .button-parent .btn-transactions {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .button-groups .button-parent .btn-transactions {
    font-size: 16px;
  }
}

/*===// end of components css === */
/*=== pages css start === */
.main-home .banner {
  background: url("../../assets/images/home/nature-green-background.png") no-repeat center bottom/cover;
  padding-bottom: 120px;
}
.main-home .banner .banner-img {
  max-width: 50%;
}
@media screen and (max-width: 1199px) {
  .main-home .banner .banner-img {
    max-width: 75%;
  }
}
.main-home .video .video-box {
  max-width: 75%;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .main-home .video .video-box {
    max-width: 100%;
  }
}
.main-home .home-details .subtitle {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  color: #000;
}
@media screen and (max-width: 767px) {
  .main-home .home-details .subtitle {
    max-width: 100%;
    font-size: 1.2rem;
  }
}
.main-home .home-details .description {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  white-space: pre-line;
  color: #000;
}
@media screen and (max-width: 767px) {
  .main-home .home-details .description {
    max-width: 100%;
    font-size: 1.2rem;
  }
}
.main-home .home-details .description-list li {
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2rem;
  white-space: pre-line;
  color: #000;
}
.main-home .home-details .description-list li::before {
  content: "✅";
}
@media screen and (max-width: 767px) {
  .main-home .home-details .description-list li {
    max-width: 100%;
    font-size: 1.2rem;
  }
}
.main-home .home-details .indicator-img {
  max-width: 40px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .main-home .home-details .indicator-img {
    max-width: 20px;
  }
}

.home-page {
  font-family: "Bebas Neue", cursive;
}
.home-page .title-image-box {
  max-width: 80%;
  margin: 0 auto;
}
.home-page .title-image-box img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .home-page .title-image-box {
    max-width: 40%;
  }
}
@media (min-width: 1600px) {
  .home-page .title-image-box {
    max-width: 55%;
  }
}
.home-page .login-form i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  color: #000;
  background-color: #fff;
  padding: 5px;
}
@media (min-width: 768px) {
  .home-page .login-form i {
    font-size: 1.5rem;
  }
}
.home-page .login-form .col-form-label {
  color: #fff;
  font-style: italic;
  font-size: 1.75rem;
  padding: 0;
}
@media (min-width: 768px) {
  .home-page .login-form .col-form-label {
    font-size: 2rem;
    width: 80px;
  }
}
@media (min-width: 1600px) {
  .home-page .login-form .col-form-label {
    font-size: 2.5rem;
  }
}
.home-page .login-form .form-control {
  min-width: 170px;
  border-radius: 5px;
  font-size: 1rem;
}
@media (min-width: 575px) {
  .home-page .login-form .form-control {
    min-width: 200px;
    width: 100%;
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .home-page .login-form .form-control {
    min-width: 400px;
  }
}
.home-page .login-form .btn-red {
  color: #fff;
  background: linear-gradient(#ff6969 50%, #960000 50%);
  border: none;
  font-size: 2rem;
  line-height: 1;
  font-style: italic;
}
@media (min-width: 768px) {
  .home-page .login-form .btn-red {
    min-width: 150px;
  }
}
@media (min-width: 1600px) {
  .home-page .login-form .btn-red {
    min-width: 200px;
    font-size: 3rem;
  }
}
.home-page .login-form .btn-blue {
  color: #fff;
  background: linear-gradient(#6993ff 50%, #002a96 50%);
  border: none;
  font-size: 2rem;
  line-height: 1;
  font-style: italic;
}
@media (min-width: 768px) {
  .home-page .login-form .btn-blue {
    min-width: 150px;
  }
}
@media (min-width: 1600px) {
  .home-page .login-form .btn-blue {
    min-width: 200px;
    font-size: 3rem;
  }
}

.income-projection {
  background-color: #328b82;
  color: #fff;
  text-align: center;
  font-family: impact;
}
@media screen and (max-width: 1199px) {
  .income-projection {
    margin-top: 1rem;
  }
}
.income-projection .title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .income-projection .title {
    font-size: 1.2rem;
  }
}
.income-projection .income-projection-box {
  border: 2px solid #fff;
  border-radius: 8px;
  font-style: italic;
  padding: 10px;
}
.income-projection .income-projection-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .income-projection .income-projection-box h2 {
    font-size: 0.75rem;
  }
}
.income-projection .income-projection-box p {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .income-projection .income-projection-box p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 767px) {
  .income-projection .income-projection-box {
    letter-spacing: 2px;
  }
}
.income-projection .note {
  font-family: "ArialNarrow";
  font-size: 1.5rem;
  margin-top: 6px;
  font-style: italic;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .income-projection .note {
    font-size: 1rem;
  }
}

.spnsor-n-profile .person-details-parent,
.spnsor-n-profile .sponsor-details-parent {
  background: linear-gradient(0deg, #1165c4 0%, #ffffff 50%, #1165c4 100%);
  padding: 4px;
  height: 100%;
  border-radius: 10px;
}
.spnsor-n-profile .person-details,
.spnsor-n-profile .sponsor-details {
  padding: 20px 20px 10px 20px;
  border-radius: 10px;
  background: #fff;
  height: 100%;
}
.spnsor-n-profile .person-details .text h2,
.spnsor-n-profile .sponsor-details .text h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #000;
  margin-bottom: 10px;
}
@media screen and (max-width: 1599px) {
  .spnsor-n-profile .person-details .text h2,
  .spnsor-n-profile .sponsor-details .text h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 575px) {
  .spnsor-n-profile .person-details .text h2,
  .spnsor-n-profile .sponsor-details .text h2 {
    font-size: 20px;
  }
}
.spnsor-n-profile .person-details .text .sp-name,
.spnsor-n-profile .person-details .text .sp-username,
.spnsor-n-profile .person-details .text .sp-email,
.spnsor-n-profile .person-details .text .name,
.spnsor-n-profile .person-details .text .username,
.spnsor-n-profile .person-details .text .email,
.spnsor-n-profile .sponsor-details .text .sp-name,
.spnsor-n-profile .sponsor-details .text .sp-username,
.spnsor-n-profile .sponsor-details .text .sp-email,
.spnsor-n-profile .sponsor-details .text .name,
.spnsor-n-profile .sponsor-details .text .username,
.spnsor-n-profile .sponsor-details .text .email {
  font-family: "ArialNarrow";
  font-weight: 700;
  font-size: 26px;
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 1399px) {
  .spnsor-n-profile .person-details .text .sp-name,
  .spnsor-n-profile .person-details .text .sp-username,
  .spnsor-n-profile .person-details .text .sp-email,
  .spnsor-n-profile .person-details .text .name,
  .spnsor-n-profile .person-details .text .username,
  .spnsor-n-profile .person-details .text .email,
  .spnsor-n-profile .sponsor-details .text .sp-name,
  .spnsor-n-profile .sponsor-details .text .sp-username,
  .spnsor-n-profile .sponsor-details .text .sp-email,
  .spnsor-n-profile .sponsor-details .text .name,
  .spnsor-n-profile .sponsor-details .text .username,
  .spnsor-n-profile .sponsor-details .text .email {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .spnsor-n-profile .person-details .text .sp-name,
  .spnsor-n-profile .person-details .text .sp-username,
  .spnsor-n-profile .person-details .text .sp-email,
  .spnsor-n-profile .person-details .text .name,
  .spnsor-n-profile .person-details .text .username,
  .spnsor-n-profile .person-details .text .email,
  .spnsor-n-profile .sponsor-details .text .sp-name,
  .spnsor-n-profile .sponsor-details .text .sp-username,
  .spnsor-n-profile .sponsor-details .text .sp-email,
  .spnsor-n-profile .sponsor-details .text .name,
  .spnsor-n-profile .sponsor-details .text .username,
  .spnsor-n-profile .sponsor-details .text .email {
    font-size: 16px;
  }
}
.spnsor-n-profile .person-details .avatar-box,
.spnsor-n-profile .sponsor-details .avatar-box {
  background: linear-gradient(0deg, #1165c4 0%, #ffffff 50%, #1165c4 100%);
  margin-right: 15px;
  padding: 2px;
}
.spnsor-n-profile .person-details .avatar-box .avatar,
.spnsor-n-profile .sponsor-details .avatar-box .avatar {
  width: 100%;
  max-width: 160px;
  border: none;
  background-color: #fff;
}
@media screen and (max-width: 1399px) {
  .spnsor-n-profile .person-details .avatar-box .avatar,
  .spnsor-n-profile .sponsor-details .avatar-box .avatar {
    max-width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .spnsor-n-profile .person-details .avatar-box .avatar,
  .spnsor-n-profile .sponsor-details .avatar-box .avatar {
    max-width: 110px;
  }
}
.spnsor-n-profile .person-details .profile-level,
.spnsor-n-profile .sponsor-details .profile-level {
  font-family: "ArialNarrow";
  font-weight: 700;
  font-size: 26px;
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 1399px) {
  .spnsor-n-profile .person-details .profile-level,
  .spnsor-n-profile .sponsor-details .profile-level {
    font-size: 20px;
  }
}
@media screen and (max-width: 575px) {
  .spnsor-n-profile .person-details .profile-level,
  .spnsor-n-profile .sponsor-details .profile-level {
    font-size: 16px;
  }
}
.spnsor-n-profile.personal-profile {
  padding: 45px 0 25px 0;
}
@media screen and (max-width: 1399px) {
  .spnsor-n-profile.personal-profile {
    padding: 20px 0 16px 0;
  }
}
@media screen and (min-width: 1600px) {
  .spnsor-n-profile.personal-profile .person-details .avatar-box .avatar {
    max-width: 260px;
  }
}

.money-app-box {
  background: linear-gradient(0deg, #1165c4 0%, #ffffff 50%, #1165c4 100%);
  padding: 4px;
  height: 100%;
  border-radius: 10px;
}
.money-app-box .money-app-box-inner {
  padding: 20px 20px 10px 20px;
  border-radius: 10px;
  background: #fff;
  height: 100%;
  display: grid;
  place-items: center;
}
.money-app-box .money-app-box-content {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .money-app-box .money-app-box-content {
    max-width: 80%;
  }
}
@media screen and (min-width: 1400px) {
  .money-app-box .money-app-box-content {
    max-width: 60%;
  }
}

.refferral-link {
  background: #019b6e;
}
.refferral-link p {
  font-family: "TahomaBold";
  font-size: 24px;
  color: #fff;
  padding-left: 15px;
}
@media screen and (max-width: 1399px) {
  .refferral-link p {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .refferral-link p {
    font-size: 16px;
  }
}

.economy .referral,
.economy .balance,
.economy .reward,
.economy .reward-date {
  text-align: center;
  padding: 20px 10px;
  color: #000;
  border: 4px solid #0076a3;
  border-radius: 4px;
}
.economy .referral h6,
.economy .balance h6,
.economy .reward h6,
.economy .reward-date h6 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 65px;
}
@media screen and (max-width: 1399px) {
  .economy .referral h6,
  .economy .balance h6,
  .economy .reward h6,
  .economy .reward-date h6 {
    font-size: 45px;
  }
}
.economy .referral p,
.economy .balance p,
.economy .reward p,
.economy .reward-date p {
  font-family: "ArialNarrow";
  font-weight: 700;
  font-size: 26px;
}
@media screen and (max-width: 1399px) {
  .economy .referral p,
  .economy .balance p,
  .economy .reward p,
  .economy .reward-date p {
    font-size: 16px;
  }
}

.backoffice-video-section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  color: #000;
  text-align: center;
  padding-bottom: 10px;
}
@media screen and (max-width: 1399px) {
  .backoffice-video-section h2 {
    font-size: 22px;
  }
}

.payment {
  font-family: "GOTHICB";
}
@media (max-width: 1399px) {
  .payment .heading-3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 991px) {
  .payment .heading-3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .payment h3,
  .payment .heading-3 {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .payment .preline-lg {
    white-space: pre-line;
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .payment .payment-proof label {
    font-size: 1.25rem;
  }
}
.payment .payment-proof .btn {
  color: #fff;
  border: none;
  padding-inline: 1.5rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .payment .payment-proof .btn {
    font-size: 2rem;
    min-width: 150px;
  }
}
.payment .payment-proof .btn.btn-red {
  background: linear-gradient(#fa7171, #910909);
}
.payment .payment-proof .btn.btn-red:hover {
  background: linear-gradient(#910909, #fa7171);
}
.payment .payment-proof .btn.btn-blue {
  background: linear-gradient(#70b3f8, #0c4f94);
}
.payment .payment-proof .btn.btn-blue:hover {
  background: linear-gradient(#0c4f94, #70b3f8);
}
.payment .form-select,
.payment .form-control {
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.75);
  border-radius: 0;
}

.pending-payment {
  font-family: "GOTHICB";
}
.pending-payment .heading-bg {
  background-color: #000;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 98% 100%, 0 100%);
  padding: 10px;
  max-width: 90%;
}
@media (min-width: 768px) {
  .pending-payment .heading-bg {
    max-width: 80%;
  }
}
@media (min-width: 1200px) {
  .pending-payment .heading-bg {
    max-width: 60%;
  }
}
@media (max-width: 767px) {
  .pending-payment .heading-bg {
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .pending-payment .table-heading {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .pending-payment .table-heading {
    font-size: 0.875rem;
  }
}
.pending-payment .table.table-bordered > :not(caption) > * {
  border-width: 1px;
}
.pending-payment .table tbody,
.pending-payment .table td,
.pending-payment .table tfoot,
.pending-payment .table th,
.pending-payment .table thead,
.pending-payment .table tr {
  border-color: #000;
}
.pending-payment .table th,
.pending-payment .table td {
  text-align: center;
  vertical-align: middle;
}
@media (min-width: 1200px) {
  .pending-payment .table th,
  .pending-payment .table td {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .pending-payment .table th,
  .pending-payment .table td {
    font-size: 0.75rem;
  }
}
.pending-payment .table .btn {
  color: #fff;
  border: none;
  text-transform: uppercase;
  min-width: 100px;
}
@media (max-width: 768px) {
  .pending-payment .table .btn {
    font-size: 0.75rem;
  }
}
.pending-payment .table .btn.btn-green {
  background: linear-gradient(#60e181, #038424);
}
.pending-payment .table .btn.btn-green:hover {
  background: linear-gradient(#038424, #60e181);
}
.pending-payment .table .btn.btn-red {
  background: linear-gradient(#fa7171, #910909);
}
.pending-payment .table .btn.btn-red:hover {
  background: linear-gradient(#910909, #fa7171);
}
.pending-payment .table .btn.btn-cyan {
  background: linear-gradient(#50d3eb, #03869d);
}
.pending-payment .table .btn.btn-cyan:hover {
  background: linear-gradient(#03869d, #50d3eb);
}

.downline-builder {
  max-width: 600px;
  margin: 0 auto;
  font-family: "GOTHICB";
}
.downline-builder .title {
  font-weight: bold;
  padding: 10px;
  background-color: #d7fa31;
}
@media (min-width: 768px) {
  .downline-builder .title {
    font-size: 3rem;
  }
}
.downline-builder label,
.downline-builder .subtitle {
  font-weight: bold;
  font-size: 1rem;
}
.downline-builder .form-control {
  background-color: rgb(255, 255, 255);
  box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.75);
}
.downline-builder .join-btn {
  color: #fff;
  font-weight: semibold;
  background: linear-gradient(#eb6b6b 50%, #7f0000 50%);
  border: none;
  font-size: 2rem;
  line-height: 1;
  min-width: 250px;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .downline-builder .join-btn {
    font-size: 2.5rem;
    min-width: 320px;
  }
}
.downline-builder .save-btn {
  color: #fff;
  font-weight: semibold;
  background: linear-gradient(#e968dd 50%, #7f0075 50%);
  border: none;
  font-size: 2rem;
  line-height: 1;
  min-width: 250px;
  padding-inline: 1rem;
}
@media (min-width: 768px) {
  .downline-builder .save-btn {
    font-size: 2.5rem;
    min-width: 320px;
  }
}

/*===// end of pages css === */
/*=== ? css start === */
/*===// end of ? css === *//*# sourceMappingURL=style.css.map */