@import url("https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@300;400;500;600;700&family=Fredoka:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400&display=swap");

:root {
  --gray-offset: rgba(0, 0, 0, 0.03);
  --gray-border: rgba(0, 0, 0, 0.15);
  --gray-light: rgba(0, 0, 0, 0.4);
  --gray-mid: rgba(0, 0, 0, 0.7);
  --gray-dark: rgba(0, 0, 0, 0.9);
  --body-color: var(--gray-mid);
  --headline-color: var(--gray-dark);
  --accent-color: #ed5f74;
  --radius: 6px;
}

body {
  padding: 20px;
  display: flex;
  justify-content: center;
  font-size: 1.2em;
  background: #042d87 url(../images/body-bg.jpg) no-repeat center;
  background-size: cover !important;
  font-family: "Nunito", sans-serif;
  min-height: 100vh;
  align-items: center;
  flex-direction: column;
  margin: 0;
  background-attachment: fixed;
}
body.longonboarding {
  background:white;
}
body.pricecontainer {
  background: #042d87 url(../images/pricebg.jpg) no-repeat center;
  background-size: cover !important;
  position: relative;
  background-attachment: fixed;
}
body.pricecontainer.long-onboarding {
  background:white;
}
body.subscribecontainer {
  background: #042d87 url(../images/subscribebg.jpg) no-repeat center;
  background-size: cover !important;
  background-attachment: fixed;
}
body.subscribecontainer.long-onboarding {
  background:white;
}
body.accountcontainer {
  background: #ffffff;
}
body.confirmcontainer {
  background: #ffffff;
}
body.home {
  background-color: #fff;
}
* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Fredoka One", cursive;
  font-weight: 400;
}

h1 {
  color: #ab66ff;
  font-size: 42px;
  line-height: 52px;
  text-align: center;
  margin: 20px 0;
  margin-top: 10px;
}

h1.longonboarding {
  color: #000000; 
  font-weight: 600; 
  font-size: 28px; 
  line-height: 100%;
  font-family: "Fredoka", sans-serif;
}

h6.longonboarding {
  color: #000000;
  font-size: 18px; 
  font-weight: 400;
  line-height: 25px;
  font-family: "Nunito", sans-serif;
  text-align: center;
  margin: 0 0 10px 0;
}

main {
  background: #fff;
  padding: 30px 100px;
  box-sizing: border-box;
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
}

form > * {
  margin: 10px 0;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/* button {
  background-color: #ed5f74;
} */
/* 
button {
  background: var(--accent-color);
  border-radius: var(--radius);
  color: white;
  border: 0;
  padding: 12px 16px;
  margin-top: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: block;
} */

button {
  background: #fffd6b;
  width: 100%;
  border-radius: 100px;
  padding: 20px;
  box-shadow: 0px 4px 2px 0 rgba(0, 0, 0, 0.3);
  color: #002a47;
  font-weight: 400;
  font-size: 26px;
  border: 1px solid #ff8d02;
  outline: inherit;
  cursor: pointer;
  font-family: "Fredoka One", cursive;
  transition: 0.5s;
}

button.longonboarding {
  background: #FF8D02;
  width: 100%;
  border-radius: 12px;
  padding: 0px 0px 0px 0px;
  box-shadow: 0px 0px 0px #FF8D02;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 24px;
  border: 1px solid #ff8d02;
  max-width: 560px;
  height: 50px;
  font-family: "Fredoka", sans-serif;
  line-height: 100%;
}

button:hover {
  filter: contrast(95%);
  transition: 0.5s;
}

button:active {
  transform: translateY(0px) scale(0.98);
  filter: brightness(0.9);
}

button:disabled {
  opacity: 0.5;
  cursor: none;
}
.button.loading .text {
  display: none;
}
.button .spinner {
  display: none;
}
.button.loading .spinner {
  display: block;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  margin-left: auto;
  margin-right: auto;
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  max-width: 560px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  border-radius: 20px;
}
.modal-error-content {
  /* justify-content: center;
  align-items: center; */
  background-color: #fefefe;
  margin: 15% auto;
  border: 1px solid #888;
  width: fit-content;
  height: fit-content;
  max-width: 450px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
.modal-content input {
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  width: 80%;
  padding: 12px 20px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  outline: inherit;
}
.modal-content .signup-form {
  text-align: center;
}
.modal-content h3 {
  text-align: center;
}
/* The Close Button */
.close {
  color: rgb(63, 57, 57);
  float: right;
  margin-right: 10px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color: #5cb85c;
  color: white;
}

.socialButton {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #016eb8;
  box-shadow: none;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
}

.socialButton.long-onboarding {
  border: 1px solid #1D1D1DB2;
  border-radius: 5px;
}

.socialButton img {
  width: 30px;
  height: 30px;
  display: flex;
  margin-bottom: -24px;
  margin-left: 50px;
  margin-top: -5px;
}

.or p {
  text-align: center;
  height: 9px;
  margin-top: 0;
}

.or hr {
  width: 42%;
  margin-left: 0;
  margin-top: -15px;
  border: none;
  padding: 1px;
  background-color: black;
}

hr {
  width: 42%;
  margin-right: 0;
  margin-top: -12.2px;
  border: none;
  padding: 1px;
  background-color: black;
}

/* plans.html */
/* .price-list {
  display: flex;
  flex-direction: column;

} */

.price-list h3 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 15px 0;
  padding: 0;
  line-height: 36px;
}
.price-list h3.price {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}
.price-list .timeperiod-sub {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin: 0px 0 5px 0;
  font-size: 20px;
  color: #007fa6;
}
.price-list p {
  font-size: 16px;
  line-height: 26px;
  padding: 0;
  margin: 0 0 15px 0;
  color: #fff;
  font-weight: 400;
}
.price-list .prevmontlyprice {
  margin-right: 10px;
  text-decoration: line-through;
  color: #fffb00;
}
.price-list .pricebox {
  width: 100%;
  padding: 20px;
  background: #1fccc0;
  border: 2px solid #0086a8;
  border-radius: 20px;
  margin: 25px 0;
}
.price-list .pricebox.color1 .timeperiod-sub {
  color: #007fa6;
}
.price-list .pricebox .btnone {
  font-size: 25px;
}
.price-list .pricebox.color2 {
  background: #f126ff;
  border: 2px solid #b500af;
}
.price-list .pricebox.color2 .timeperiod-sub {
  color: #a100b0;
}
.price-list .pricebox.color3 {
  background: #ff9d27;
  border: 2px solid #e65400;
  margin-top: 50px;
}
.price-list .pricebox.color3 .timeperiod-sub {
  color: #a64800;
}
.price-list {
  text-align: center;
  padding: 0;
  font-size: 16px;
}
.price-list .price {
  font-size: 30px;
}

.price-list button {
  margin: 10px 0;
}
.basicBox {
  text-align: center;
  background: #1fccc0;
  border: 2px solid #0086a8;
  border-radius: 30px;
  padding: 20px 30px;
  display: block;
  margin: 0 0 40px 0;
}

.premiumBox {
  text-align: center;
  background: #f126ff;
  border: 2px solid #b500af;
  border-radius: 30px;
  padding: 20px 30px;
  display: block;
}

.btn {
  background: #fffd6b;
  width: 100%;
  border-radius: 100px;
  padding: 25px 20px;
  box-shadow: 0px 4px 2px 0 rgba(0, 0, 0, 0.3);
  color: #002a47;
  font-family: "Fredoka One", cursive;
  font-weight: 400;
  font-size: 20px;
  border: 1px solid #ff8d02;
  outline: inherit;
  display: block;
  text-decoration: none;
  cursor: pointer;
  font-family: "Fredoka One", cursive;
  text-align: center;
}

.signup-form {
  text-align: center;
}
.signup-form .error {
  font-weight: 700;
}

.signup-form button {
  max-width: 250px;
}

input {
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  width: 100%;
  padding: 12px 20px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  outline: inherit;
}

input.longonboarding {
  border: 2px solid #00A9BF;
  background: #FFFFFF;
  border-radius: 5px;
}

::placeholder {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  opacity: 0.5;
}

.title {
  color: #000;
  text-align: center;
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
  margin: 0 0 10px 0;
}

.circle-img {
  width: 100%;
  text-align: center;
  display: block;
  margin: 0 0 5px 0;
}

.circle-img img {
  width: 100%;
  max-width: 300px;
}

.subscribeDetail {
  width: 100%;
  background: #b3feff;
  border: 2px solid #0079bf;
  font-size: 16px;
  padding: 20px;
  border-radius: 10px;
  margin: 0 0 20px 0;
}

#card-element {
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  width: 100%;
  padding: 20px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  outline: inherit;
}

#subscribe-form label {
  display: block;
  font-size: 16px;
}

#subscribe-form input {
  margin-top: 5px;
}

#messages {
  text-align: center;
  font-size: 16px;
}

#error-messages {
  text-align: center;
  font-size: 22px;
  line-height: 32px;
}

.errorpage #error-messages p {
  text-align: center;
  font-size: 22px;
  line-height: 32px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

.spinner {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #333;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.appbtnssect .icon {
  width: 90px;
  margin: 0 auto;
  display: block;
  margin-bottom: 14px;
}
.appbtnssect .icon img {
  width: 100%;
  display: block;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}

@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.error-page {
  width: 100%;
  display: block;
}

.error-page img {
  width: 100%;
  border-radius: 20px;
}

.form-group {
  text-align: left;
  max-width: 280px;
  margin: 10px auto;
  padding-left: 25px;
  position: relative;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  cursor: pointer;
  font-size: 16px;
  font-family: "Fredoka One", cursive;
  color: #042d87;
}

.form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #042d87;
  background: #fff;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  left: 0;
  top: 5px;
}

.form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0px;
  width: 16px;
  height: 16px;
  background: #042d87 url(../images/checked.png) no-repeat center;
  background-size: 12px;
}

.w-100 {
  width: 100% !important;
}

.activation-code-input {
  display: none;
}

.activation-code > span {
  position: absolute;
  display: block;
  font-size: 13px;
  color: #ccc;
  top: 0;
  right: 0;
  transition: all 0.3s ease;
}

.activation-code .activation-code-inputs {
  display: flex;
  /*flex-direction: row;*/
  /*flex-wrap: nowrap;*/
  flex-flow: row nowrap;
}

.activation-code .activation-code-inputs input {
  display: flex;
  flex-flow: column nowrap;
  padding: 0;
  outline: 0;
  min-width: 0;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  align-items: center;
  transition: all 0.3s ease;
  margin-right: 8px;
  min-height: 60px;
}

.activation-code .activation-code-inputs input:last-child {
  margin-right: 0;
}

.activation-code.active::before {
  opacity: 0;
}

.activation-code.active .activation-code-inputs input {
  opacity: 1 !important;
}

.activation-code .activation-code-inputs input:focus {
  border-color: #46b2f0 !important;
}

.activation-code.active > span {
  transform: translate(0, -100%);
  line-height: 30px;
  opacity: 0.6;
}

#verification-form {
  text-align: center;
}

#verification-form button {
  max-width: 200px;
  margin-top: 30px;
}

.more-link {
  color: #0011ff;
  font-family: "Fredoka One", cursive;
  font-size: 26px;
  text-align: center;
  display: block;
  margin-top: 25px;
}

.subscriptions p {
  font-size: 16px;
}
.subscriptions table {
  width: 100%;
  text-align: left;
}
.subscriptions table tr td {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  padding: 4px 14px;
}
.subscriptions h2 {
  font-size: 24px;
  text-align: center;
  margin: 10px 0;
}
.subscriptions .bluebox {
  background: #b3feff;
  padding: 10px;
  border: 2px solid #0079bf;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 26px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}
.subscriptions .bluebox.mb-0 {
  margin-bottom: 0;
}
.subscriptions .faqtext {
  margin: 0;
  margin-bottom: 30px;
  font-size: 14px;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
}
.subscriptions .faqtext a {
  text-decoration: none;
  color: #0079bf;
  font-weight: 700;
}
.subscriptions .blueboxtwo {
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 15px;
  text-align: center;
  overflow: hidden;
}

.subscriptions .blueboxtwo .planheading {
  background: #1fccc0;
  margin: 0;
  color: #fff;
  padding: 10px 0;
}
.subscriptions .blueboxtwo .planheading.pink {
  background: #981fcc;
}
.subscriptions .blueboxtwo .planheading.red {
  color: red;
  background: #b3feff;
}
.accountcontainer .subscriptions {
  min-height: 290px;
  position: relative;
}
.managesubsrciptionbtn {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #001eff;
  width: auto;
  padding: 10px;
  position: relative;
  margin: 30px 0;
  transition: 0.5s;
}
.managesubsrciptionbtn:hover {
  opacity: 0.8;
  transition: 0.5s;
}
.managesubsrciptionbtn:after {
  content: "";
  width: 100%;
  height: 2px;
  background: #001eff;
  position: absolute;
  left: 0;
  top: calc(100% - 5px);
}
.subscriptions .getstartedbtn {
  background: #fffd6b;
  border-radius: 100px;
  padding: 20px 40px;
  box-shadow: 0px 4px 2px 0 rgb(0 0 0 / 30%);
  color: #002a47;
  font-weight: 400;
  font-size: 20px;
  border: 1px solid #ff8d02;
  outline: inherit;
  cursor: pointer;
  font-family: "Fredoka One", cursive;
  display: inline-block;
  width: auto;
  text-decoration: none;
  margin: 20px 0;
}
.logoubtn {
  background: #9c9c9c;
  border: 1px solid #9c9c9c;
  padding: 15px 60px;
  display: inline-block;
  width: auto;
}
.text-center {
  text-align: center;
}
.subscribe-form {
  position: relative;
}
.subscribecontainermain {
  position: relative;
}
.subscribecontainermain .pageloader {
  display: none;
}
.subscribecontainermain .pageloader.loading {
  display: block;
  z-index: 1;
  background: rgb(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.subscribe-form .subtitle {
  color: #ab66ff;
  font-size: 42px;
  line-height: 52px;
  text-align: center;
  margin-top: 20px;
}
.subscribe-form .ccarddetails {
  border: 2px solid #bfbfbf;
  padding: 14px 10px;
  position: relative;
  margin-top: 40px;
}

.subscribe-form .ccarddetails .card-only {
  font-size: 20px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  color: #000;
  position: absolute;
  top: -16px;
  background: #fff;
  padding: 0 10px;
}
.subscribe-form .payment-request-available {
  font-size: 18px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  color: #000;
  text-align: center;
}

.error {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: #ff0808;
  text-align: center;
}
.sucess {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  color: #02726a;
  text-align: center;
}

.subscribe-form .termsconditions {
  font-size: 9px;
  line-height: 1.4;
  color: #9c9c9c;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
}
.subscribe-form .termsconditions a {
  color: #001eff;
}
.plandetails {
  background: #b3feff;
  border: 2px solid #0079bf;
  padding: 20px;
  border-radius: 20px;
}
.plandetailsnocommit {
  background: #b3feff;
  border: 2px solid #0079bf;
  padding: 20px;
  border-radius: 20px;
}
.plandetailsnocommit2 {
  border:none;
  padding: 20px;
  background: none;
}
.subscribenocommit .button {
  max-width: 260px;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
}
.subscribenocommit .btmtext {
  font-size: 14px;
  text-align: center;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  color: #000;
  margin-top: 20px;
}
.subscribenocommit .btmtext a {
  color: #0008ff;
  text-decoration: none;
}
.plandetails tr td {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  padding: 5px 8px;
}
.plandetails tr td:nth-child(2) {
  text-align: right;
}
.withborder td {
  border-top: 2px solid #0079bf;
}
.plandetails .red {
  color: #ff0040;
}
.plandetailstable {
  width: 100%;
  border-collapse: collapse;
}
.subscribe-form .cardnumber {
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  width: 100%;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  outline: inherit;
}
.subscribe-form .expsect {
  display: flex;
  justify-content: space-between;
}
.subscribe-form .cardexpiry {
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  outline: inherit;
  width: calc(100% / 3 - 10px);
  height: 53px;
}
.subscribe-form .cardcvc {
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  outline: inherit;
  width: calc(100% / 3 - 10px);
  height: 53px;
}
.subscribe-form .card-postalCode {
  width: calc(100% / 3 - 10px);
  background: #b3feff;
  border: 2px solid #0079bf;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
}
.subscribe-form .card-postalCode input {
  margin-top: 0 !important;
}

.home {
  padding: 0;
  margin: 0;
  justify-content: flex-start;
  background: #fff;
  background-image: none;
}

.home main {
  padding: 30px 50px;
  border-radius: 0;
}
.home .mainOuter .btn {
  font-size: 30px;
}
.topBar {
  font-family: "Nunito", sans-serif;
  display: flex;
  background: #63f7c6;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.home .topBar {
  font-size: 20px;
  font-weight: 700;
}
.home .header {
  width: 100%;
}
.home .headerBarouter {
  background: #042d87;
}
.home .headerBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 15px;
}

.menu {
  display: flex;
}

.menu img {
  width: auto;
  max-height: 50px;
}

.logo-sec {
  width: 40%;
}

.logo-sec img {
  width: auto;
  max-height: 80px;
}

.headerBar .btn {
  max-width: 200px;
  padding: 18px 20px;
}

.wonster-image {
  width: 100%;
}

.wonster-image img {
  width: 100%;
}

.homeDes {
  width: 100%;
  padding: 20px;
  text-align: center;
  position: relative;
}

.homeDes::after {
  content: "";
  position: absolute;
  right: 0;
  top: 35px;
  width: 30px;
  height: 120px;
  background: url(../images/stars.png) no-repeat center;
  background-size: 100%;
}

.homeDes::before {
  content: "";
  position: absolute;
  left: 0;
  top: 35px;
  width: 30px;
  height: 120px;
  background: url(../images/stars.png) no-repeat center;
  background-size: 100%;
  transform: rotate(172deg);
}

.homeDes p {
  font-size: 20px;
  line-height: 36px;
  color: #000;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
}

.desBox p {
  font-size: 16px;
  line-height: 26px;
}

.desBox {
  padding: 20px;
  background: #cafeff;
  border: 2px solid #57c3e6;
  border-radius: 15px;
}

.linkSec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
}

.linkSec a {
  color: #0000ff;
  font-size: 20px;
  line-height: 30px;
  padding: 3px 0;
  font-family: "Fredoka One", cursive;
  text-decoration: none;
}

.centerbtn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.centerbtn .btn {
  max-width: 250px;
}
.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}
.confrm-sectone p {
  margin: 40px 0;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
.confrm-sectone h3 {
  margin: 40px 0;
  text-align: center;
}
.confrm-sectone h4 {
  margin: 20px 0;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  line-height: 26px;
  font-weight: 700;
}
.playstorebtn {
  max-width: 230px;
  margin: 0 auto;
  display: block;
  margin-top: 15px;
}
.playstorebtn img {
  width: 100%;
  display: block;
}
.appstorebtn {
  max-width: 230px;
  margin: 0 auto;
  display: block;
  margin-top: 15px;
}
.appstorebtn img {
  width: 100%;
  display: block;
}
.pricecontainer .price-list {
  min-height: 460px;
  position: relative;
}
.pricecontainer .subtitle1 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  margin: 0;
}
.pricecontainer .price-list .subtitle {
  font-size: 20px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  margin: 0;
  margin: 25px 0;
}
.mySpinner {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.pageloader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.resentcode {
  color: #0011ff;
  font-family: "Fredoka One", cursive;
  font-size: 26px;
  text-align: center;
  display: block;
  margin-top: 25px;
  text-decoration: underline;
  cursor: pointer;
}
.home .topBar .textone {
  display: none;
}
.home .headerBar .link {
  display: none;
}
.submanag_container .desBox p {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
.submanag_container .linkSec a {
  text-decoration: underline;
}

.price-list-nocommit {
  /* min-height: 460px; */
  position: relative;
}

.pricebox-nocommit {
  position: relative;
  background: #b7bbc9;
  border-radius: 25px;
  padding: 8px;
  overflow: hidden;
  margin-top: 20px;
  display: block;
  cursor: pointer;
}
.pricebox-nocommit .pltitle h2 {
  font-family: "Fredoka One", cursive;
  font-size: 38px;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding-bottom: 5px;
  letter-spacing: 1px;
}
.pricebox-nocommit .tag {
  position: absolute;
  right: 0;
  background: #ff002c;
  width: 80px;
  padding: 5px;
  display: block;
  top: 36px;
}
.pricebox-nocommit .tag:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-right: 18px solid #ff002c;
  border-bottom: 21px solid transparent;
  position: absolute;
  left: -18px;
  top: 1px;
}
.pricebox-nocommit .btmbox {
  background: #fff;
  border-radius: 0px 0px 25px 25px;
  padding: 10px 5%;
}
.pricebox-nocommit .btmbox h3 {
  font-size: 20px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.pricebox-nocommit .btmbox h4 {
  font-size: 17px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  color: #7e8f94;
  margin: 0;
  max-width: 208px;
}
.pricebox-nocommit .tag h4 {
  font-family: "Nunito", sans-serif;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.pricebox-nocommit .tag h5 {
  font-family: "Fredoka One", cursive;
  font-weight: 500;
  color: #fff;
  font-size: 14px;
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.pricebox-nocommit .pricbox {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding-top: 20px;
}
.pricebox-nocommit .pricbox h5 {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #7d5cff;
  margin: 0;
}
.pricebox-nocommit .pricbox .price {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #000;
  position: relative;
}
.pricebox-nocommit .pricbox .price .oldpric {
  position: absolute;
  top: -100%;
  right: 0%;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #7e8f94;
  text-decoration: line-through;
}

.pricebox-nocommit.active:before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  width: 38px;
  height: 38px;
  background: url(../images/planactiveicon.png) no-repeat;
  background-size: contain;
}
.nocommitcheckbox {
  width: 0;
  height: 0;
  margin: 0;
  position: absolute;
  padding: 0;
  visibility: hidden;
}
.nocommitcheckbox:checked + label:before {
  content: "";
  position: absolute;
  left: 24px;
  top: 12px;
  width: 38px;
  height: 38px;
  background: url(../images/planactiveicon.png) no-repeat;
  background-size: contain;
}
.nocommitcheckbox:checked + .bgclr1 {
  background: #01dbdc;
}
.nocommitcheckbox:checked + .bgclr2 {
  background: #f126fe;
}
.nocommitcheckbox:checked + .bgclr3 {
  background: #01dc29;
}
.price-list-nocommit .noprices {
  text-align: center;
  font-size: 16px;
  color: #7e8f94;
}

.price-list-nocommit .btnone {
  width: 216px;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
}

.price-list-nocommit .trialtext {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 16px;
  max-width: 90%;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}

.subscribenocommit .subtitle1 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  margin: 0;
}
.subscribenocommit .ccarddetails {
  margin-top: 20px;
  padding: 0;
  border: 0;
}
.subscribenocommit .ccarddetails .card-only {
  display: none;
}
.plandetailsnocommit .secttp {
  display: flex;
  padding-bottom: 10px;
  justify-content: space-between;
}
.plandetailsnocommit .sectbtm {
  border-top: 2px solid #1790ca;
}
.plandetailsnocommit .sectbtm p {
  max-width: 287px;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 10px;
  padding-bottom: 0;
  font-family: "Nunito", sans-serif;
}
.plandetailsnocommit .secttp .imgsect {
  width: 68px;
}
.plandetailsnocommit .secttp .imgsect img {
  width: 100%;
  display: block;
}
.plandetailsnocommit .dataset ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plandetailsnocommit .dataset li {
  list-style: none;
  font-size: 18px;
  font-weight: 700;
  padding: 0 10px;
  font-family: "Nunito", sans-serif;
  position: relative;
  color: #000000;
}
.plandetailsnocommit .dataset li span {
  font-size: 17px;
  position: absolute;
  color: #7e8f94;
  bottom: calc(100% - 4px);
  right: 10px;
  text-decoration: line-through;
}
.plandetailsnocommit .dataset {
  width: calc(100% - 74px);
}
.plandetailsnocommit ul.priceulsect {
  padding-top: 20px;
}
.plandetailsnocommit .trialulsect li {
  color: #ff191d;
}
.edu_subtitl_value {
  font-size: 16px;
  text-align: center;
  color: #010101;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}
.reg_value .reg_subtitl_value {
  font-size: 18px;
  text-align: center;
  color: #010101;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin-bottom: 30px;
}
.reg_value {
  background: url(../images/regpagebg.jpg) no-repeat;
  background-size: 100%;
  background-position: bottom;
  padding-bottom: 105px;
  background-position: center 70%;
}
.reg_value .socialButton {
  font-family: "Nunito", sans-serif;
  color: #010101;
  font-weight: 700;
  border: 2px solid #0079bf;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reg_value .socialButton img {
  width: 24px;
  height: auto;
  margin: 0;
  margin-right: 20px;
}
.reg_value .socialButton .btnalign {
  width: 220px;
  display: flex;
}
.reg_value .or {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
.reg_value .or hr,
.reg_value .or + hr {
  background-color: #818181;
}
.reg_value input {
  background: #fff;
  border: 2px solid #57c3e6;
}
.valuepitch .pitch-list-values {
  margin-bottom: 30px;
}
.valuepitch .pitch-list-values .listitem {
  display: flex;
  align-items: center;
}
.valuepitch .pitch-list-values .listitem .listimg {
  width: calc(28% - 20px);
  margin-right: 20px;
}
.valuepitch .pitch-list-values .listitem .listimg img {
  width: 100%;
  display: block;
}
.valuepitch .pitch-list-values .listitem h4 {
  font-size: 17px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  color: #010101;
  line-height: 1.4;
}
.valuepitch .pitch-list-values .listitem:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}
.valuepitch .pitch-list-values .listitem:nth-child(even) .listimg {
  margin-right: 0;
  margin-left: 20px;
}
.valuepitch {
  padding-bottom: 100px;
}
.valuepitch .btn {
  font-size: 26px;
}
.plans-value-list {
  padding: 0;
  margin: 0;
}
.plans-value-list li {
  list-style: none;
  font-size: 20px;
  font-weight: 700;
  font-family: "Nunito", sans-serif;
  padding-left: 30px;
  position: relative;
}
.plans-value-list li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/listtik.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 7px;
}
.plans-value-list li.onboarding {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Nunito", sans-serif;
  padding-left: 30px;
  position: relative;
}
.plans-value-list li.onboarding:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/listtik2.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 7px;
}
.plans-value-list li.ugly-paywall {
  list-style: none;
  font-size: 15px;
  font-weight: 400;
  font-family: "Nunito", sans-serif;
  padding-left: 35px;
  padding-top: 5px;
  position: relative;
  margin-bottom: 20px;
  line-height: 18px;
}
.plans-value-list li.ugly-paywall:before {
  content: "";
  width: 22px;
  height: 19px;
  background: url(../images/listtik3.png) no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: 7px;
}
.welcomepage .button {
  max-width: 250px;
  margin: 30px auto 0 auto;
  display: block;
  padding: 20px 20px;
  font-size: 26px;
}
.welcomepage .centerimage img {
  width: 100%;
}
.welcomepage .centerimage {
  width: 50%;
  margin: 24px auto 0 auto;
  max-width: 180px;
}
.welcomepage {
  padding: 50px 100px 70px 100px;
}
.welcomepage p {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}
.childnamepage button {
  max-width: 250px;
  margin: 20px auto 0 auto;
  display: block;
}
.childnamepage .centerimage img {
  width: 100%;
}
.childnamepage .centerimage {
  width: 86%;
  margin: 64px auto 0 auto;
}
.childnamepage {
  padding: 50px 100px 70px 100px;
}
.childnamepage .error {
  font-weight: 700;
  margin: 10px 0;
}
.childnamepage p {
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
}
.childgradepage {
  padding: 50px 72px 70px 72px;
}
.childgradepage button {
  max-width: 250px;
  margin: 60px auto 0 auto;
  display: block;
  padding: 14px;
}
.childgradepage .gradeselector input {
  width: 0;
  opacity: 0;
  height: 0;
  margin: 0;
  display: none;
}
.childgradepage .gradeselector label {
  width: 62%;
  display: block;
  text-align: center;
  padding: 8px;
  font-size: 20px;
  color: #fff;
  margin: 0 auto;
  border-radius: 15px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  margin: 14px auto;
  min-width: 216px;
  background: #00acc2;
  border: 4px solid #007a99;
}
.childgradepage .gradeselector label:hover {
  background: #006078;
}
.childgradepage .gradeselector input:checked + label {
  background: #006078;
}
.childgradepage .error {
  display: none;
}
.accountoverview .subhead {
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 50px;
}
.accountoverview .actionbox {
  border: 2px solid #247896;
  background: #00a9bf;
  padding: 20px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  text-decoration: none;
  margin-top: 30px;
  align-items: center;
}
.accountoverview .actionbox .img {
  width: 52px;
  margin-right: 20px;
}
.accountoverview .actionbox .img img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: contain;
  max-height: 60px;
}

.accountoverview .actionbox .content h4 {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: #ffffff;
  margin: 0;
}
.accountoverview .actionbox .content h5 {
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}
.accountoverview .dtplay {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #000000;
  margin-top: 40px;
}
.accountoverview .lgbtn {
  margin-top: 45px;
}
.childprofilepage .profilelist {
  display: flex;
  margin: 50px 0;
  flex-wrap: wrap;
}
.childprofilepage .profilelist.align-center {
  justify-content: center;
}
.childprofilepage .profilelist .prof_item {
  width: 50%;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
}
.childprofilepage .profilelist .prof_item img {
  width: 100%;
}
.childprofilepage .profilelist .prof_item .img {
  max-width: 100px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.childprofilepage .profilelist .prof_item h4 {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: #000000;
  margin: 0;
}
.childprofilepage .profilelist .prof_item h5 {
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #000000;
  margin: 0;
}
.childprofilepage .profilelist .prof_item h6 {
  text-align: center;
  font-family: "Fredoka One", cursive;
  font-weight: 500;
  font-size: 20px;
  color: #4e5b71;
  margin: 0;
}
.centerbtn .btnback {
  max-width: 193px;
  padding: 16px 16px;
}
.popup_outer {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.popup_outer .editprofilepopup {
  max-width: 500px;
  width: 86%;
  background: #fff;
  border-radius: 10px;
  position: relative;
  padding: 18px 10px;
}
.popup_outer .editprofilepopup .img {
  width: 100px;
  margin: 0 auto;
  position: relative;
  padding-bottom: 14px;
}
.popup_outer .editprofilepopup .img .editicon {
  background: #e8eefd;
  width: 100px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.popup_outer .editprofilepopup .img img {
  width: 100%;
  display: block;
}
.popup_outer .editprofilepopup .section {
  border-top: 1px solid #ebeef2;
  border-bottom: 1px solid #ebeef2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}
.popup_outer .editprofilepopup .section h3 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
.popup_outer .editprofilepopup .section h4 {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.2;
}
.popup_outer .editprofilepopup .delsect {
  padding: 20px 0;
  width: 200px;
  font-family: "Nunito", sans-serif;
  font-size: 20px;
  color: #e23222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 155px;
  margin: 0 auto;
  font-weight: 700;
  cursor: pointer;
}
.popup_outer .editprofilepopup .delsect .icon {
  width: 25px;
}
.popup_outer .editprofilepopup .delsect .icon img {
  width: 100%;
  display: block;
}
.popup_outer .editprofilepopup .section .edit {
  display: flex;
  align-items: center;
  background: #e8effd;
  padding: 6px 20px;
  border-radius: 10px;
  color: #4f70b6;
  font-size: 20px;
  font-family: "Nunito", sans-serif;
  cursor: pointer;
  font-weight: 700;
}
.popup_outer .editprofilepopup .section .edit .icon {
  width: 18px;
  margin-right: 18px;
}
.popup_outer .editprofilepopup .section .edit img {
  width: 100%;
  display: block;
}
.popup_outer .close img {
  width: 100%;
}
.popup_outer .close {
  width: 35px;
  position: absolute;
  top: -13px;
  right: -13px;
  margin: 0;
}
.popup_outer .childname_edit {
  max-width: 500px;
  width: 86%;
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  position: relative;
}
.popup_outer .childname_edit .firstnameerror {
  text-align: center;
  font-size: 15px;
  text-align: center;
  color: red;
  padding-top: 20px;
}

.popup_outer .childname_edit .wrapper {
  max-width: 300px;
  margin: 0 auto;
  padding: 48px 0;
}
.popup_outer .childname_edit .wrapper h2 {
  font-size: 20px;
  font-family: "Nunito", sans-serif;
  color: #000000;
  font-weight: 700;
  margin: 0;
}
.popup_outer .childname_edit .wrapper .btn {
  margin-top: 60px;
  font-size: 27px;
  padding: 14px 10px;
}
.popup_outer .delprofile {
  max-width: 500px;
  width: 86%;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  padding: 30px 20px;
}
.popup_outer .delprofile h2 {
  font-size: 20px;
  color: #000000;
  font-family: "Nunito", sans-serif;
  text-align: center;
  margin: 0;
  margin-bottom: 20px;
  font-weight: 700;
}
.popup_outer .delprofile .img {
  width: 90px;
  margin: 0 auto;
}
.popup_outer .delprofile .img img {
  width: 100%;
}
.popup_outer .delprofile h4 {
  font-size: 20px;
  color: #000000;
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  text-align: center;
}
.popup_outer .delprofile h5 {
  font-size: 18px;
  color: #000000;
  margin-bottom: 30px;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}
.popup_outer .delprofile .btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup_outer .delprofile .btns .delete {
  font-size: 20px;
  color: #fff;
  background: #e33222;
  padding: 10px 25px;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  display: block;
  cursor: pointer;
}
.popup_outer .delprofile .btns .cancel {
  font-size: 20px;
  color: #fff;
  background: #bababa;
  padding: 10px 25px;
  border-radius: 10px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  cursor: pointer;
  display: block;
}

.popup_outer .gradelevel {
  max-width: 500px;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  padding: 60px 20px;
}
.popup_outer .gradelevel h2 {
  color: #ab66ff;
  margin: 0;
  margin-bottom: 30px;
  font-size: 40px;
  text-align: center;
}
.editprofilepic {
  max-width: 500px;
  width: 86%;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  position: relative;
  padding-bottom: 72px;
}
.editprofilepic #profilepicmessages {
  font-size: 15px;
  text-align: center;
  color: red;
}
.editprofilepic #servererrors {
  font-size: 15px;
  text-align: center;
  color: red;
  margin-top: 20px;
}
.editprofilepic h2 {
  text-align: center;
  color: #ab66ff;
  font-size: 40px;
  text-align: center;
}
.editprofilepic .profpic_items {
  display: flex;
  flex-wrap: wrap;
  padding: 0 30px;
}
.editprofilepic img {
  width: 100%;
  display: block;
}
.editprofilepic .profpic_items .pp_item {
  width: calc((100% / 3) - 20px);
  border: 10px solid #fff;
  margin: 10px;
  cursor: pointer;
  border-radius: 50%;
}
.editprofilepic button {
  max-width: 250px;
  margin: 60px auto 0 auto;
  display: block;
}
.editprofilepic .swiper-prev {
  top: 50%;
  width: 30px;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}
.editprofilepic .swiper-next {
  top: 50%;
  width: 30px;
  right: 0;
  position: absolute;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 2;
}

.editprofilepic .profpic_items .pp_item.active {
  transform: scale(1.1);
  transition: 0.5s;
  border: 10px solid #00e2da;
}

.childpic_page {
  padding: 20px;
}
.childpic_page button {
  max-width: 250px;
  margin: 60px auto 0 auto;
  display: block;
  padding: 14px;
}
.ppcontainer {
  width: 100%;
  max-width: 100%;
}
.ggl_signin_btn .nsm7Bb-HzV7m-LgbsSe {
  width: 100% !important;
  max-width: 100% !important;
  min-width: min-content;
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 15px;
  font-size: 16px;
  border: 2px solid #016eb8 !important;
  box-shadow: none;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  height: 53px;
}
.ggl_signin_btn .nsm7Bb-HzV7m-LgbsSe .oXtfBe-l4eHX {
  justify-content: left;
  left: 57px;
}
.ggl_signin_btn .nsm7Bb-HzV7m-LgbsSe .nsm7Bb-HzV7m-LgbsSe-Bz112c {
  margin-right: 22px;
  width: 22px;
}
.background-white {
  background: #fff !important;
}

@media screen and (max-width: 767px) {
  main {
    padding: 24px;
  }

  h1 {
    font-size: 32px;
    line-height: 40px;
    margin: 12px 0;
  }

  .title {
    font-size: 18px;
    line-height: 26px;
  }

  .form-group label {
    font-size: 14px;
  }
  .more-link {
    font-size: 22px;
  }
  .resentcode {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }
  .price-list button {
    padding: 12px 5px;
    font-size: 17px;
  }
  .signup-form button {
    max-width: 210px;
  }
  #messages {
    margin: 5px 0;
  }
  .price-list h3.price {
    font-size: 22px;
  }
  .price-list .pricebox {
    padding: 15px;
  }
  .price-list .pricebox .btnone {
    font-size: 19px;
    margin: 5px 0;
  }
  .subscribe-form .subtitle {
    font-size: 32px;
  }
  .plandetails tr td {
    font-size: 16px;
    line-height: 1;
  }
  .plandetails {
    padding: 15px;
  }
  .acountmain {
    padding: 12px;
  }
  .subscriptions h2 {
    font-size: 20px;
  }
  .subscriptions .bluebox {
    font-size: 18px;
  }
  .subscriptions table tr td {
    font-size: 16px;
  }
  .managesubsrciptionbtn {
    font-size: 22px;
  }
  .logoubtn {
    font-size: 22px;
    padding: 10px 60px;
  }
  .error,
  .sucess {
    font-size: 18px;
  }

  .linkSec a {
    font-size: 18px;
  }

  .home main {
    padding: 30px;
  }
  .home .mainOuter .btn {
    font-size: 26px;
  }
  .welcomepage {
    padding: 40px 24px 62px 24px;
  }
  .welcomepage .button {
    max-width: 210px;
  }
  .childgradepage {
    padding: 40px 15px 62px 15px;
  }
  .childgradepage h1 {
    font-size: 30px;
  }
  .childgradepage button {
    max-width: 210px;
    margin: 30px auto 0 auto;
  }
  .childnamepage {
    padding: 40px 24px 62px 24px;
  }
  .childnamepage button {
    max-width: 210px;
  }
  .childnamepage .centerimage {
    margin: 45px auto 0 auto;
  }
}

@media screen and (max-width: 520px) {
  body {
    justify-content: flex-start;
    padding: 20px 10px;
  }
  .home .headerBar .btn {
    font-size: 15px;
    max-width: 150px;
    padding: 15px;
  }

  .logo-sec {
    width: auto;
  }

  .logo-sec img {
    max-height: 55px;
  }

  .menu img {
    max-height: 35px;
  }

  .home main {
    padding: 30px 20px;
  }
  .activation-code .activation-code-inputs input {
    min-height: 50px;
  }
  .pricebox-nocommit .pltitle h2 {
    font-size: 25px;
  }
  .nocommitcheckbox:checked + label:before {
    left: 24px;
    top: 12px;
    width: 22px;
    height: 22px;
  }
  .pricebox-nocommit .pricbox .price {
    font-size: 18px;
  }
  .pricebox-nocommit .pricbox .price .oldpric {
    font-size: 18px;
  }
  .pricebox-nocommit .btmbox h3 {
    font-size: 16px;
  }
  .pricebox-nocommit .btmbox h4 {
    font-size: 16px;
  }
  .pricebox-nocommit .tag {
    top: 20px;
  }
  .subscribenocommit .subtitle1 {
    font-size: 16px;
  }
  .plandetailsnocommit .dataset li {
    font-size: 16px;
  }
  .plandetailsnocommit .dataset li span {
    font-size: 16px;
  }
  .childgradepage .gradeselector label {
    margin: 10px auto;
    padding: 6px;
  }
}

@media screen and (max-width: 440px) {
  .homeDes p {
    font-size: 16px;
    line-height: 34px;
  }

  .homeDes::after,
  .homeDes::before {
    top: 25px;
  }
  .home .mainOuter .btn {
    font-size: 20px;
  }
  .home .topBar {
    font-size: 16px;
  }
  .subscribecontainer input {
    font-size: 12px;
    height: 48px;
  }
  .subscribecontainer input::placeholder {
    font-size: 12px;
  }
  .subscribecontainer #card-element {
    height: 48px;
    padding: 14px 10px;
  }
  .confrm-sectone h3 {
    margin: 20px 0;
  }
  .confrm-sectone p {
    margin: 20px 0;
  }
  .reg_value .signup-form button {
    padding: 14px 0;
  }
  .valuepitch .pitch-list-values .listitem h4 {
    font-size: 15px;
  }
  .valuepitch .btn {
    padding: 13px;
  }
  .plans-value-list li {
    font-size: 16px;
    padding-left: 22px;
  }
  .plans-value-list li:before {
    width: 16px;
    top: 5px;
  }
  .reg_value .socialButton {
    padding: 10px;
  }
  .accountoverview .actionbox {
    padding: 12px;
    margin-top: 15px;
  }
  .accountoverview .actionbox .content h4 {
    font-size: 20px;
  }
  .accountoverview .actionbox .content h5 {
    font-size: 16px;
  }
  .accountoverview .subhead {
    margin-bottom: 30px;
  }
  .accountoverview .lgbtn {
    margin-top: 20px;
  }
  .accountoverview .dtplay {
    margin-top: 20px;
  }
  .childprofilepage .profilelist .prof_item h4 {
    font-size: 20px;
  }
  .childprofilepage .profilelist .prof_item h5 {
    font-size: 16px;
  }
  .childprofilepage .profilelist .prof_item h6 {
    font-size: 16px;
  }
  .childprofilepage .profilelist {
    margin: 20px 0;
  }
  .childprofilepage .profilelist .prof_item .img {
    max-width: 85px;
  }
  .childprofilepage .profilelist .prof_item {
    padding: 6px;
  }
  .popup_outer .editprofilepopup .img {
    width: 80px;
  }
  .popup_outer .editprofilepopup .img .editicon {
    width: 32px;
    height: 32px;
    padding: 7px;
  }
  .popup_outer .editprofilepopup .section h3 {
    font-size: 15px;
  }
  .popup_outer .editprofilepopup .section h4 {
    font-size: 20px;
  }
  .popup_outer .editprofilepopup .section .edit {
    font-size: 16px;
    padding: 4px 12px;
  }
  .popup_outer .editprofilepopup .section .edit .icon {
    width: 14px;
  }
  .popup_outer .editprofilepopup .delsect {
    width: 141px;
    font-size: 17px;
  }
  .editprofilepic h2 {
    font-size: 30px;
  }
  .editprofilepic .profpic_items .pp_item {
    width: calc(100% / 3);
    margin: 10px 0;
    border: 6px solid #fff;
  }
  .editprofilepic .profpic_items .pp_item.active {
    border: 6px solid #00e2da;
  }
  .editprofilepic .profpic_items {
    padding: 0px 10px;
  }
  .editprofilepic {
    padding-left: 0;
    padding-right: 0;
  }
  .editprofilepic button {
    max-width: 195px;
    margin: 30px auto 0 auto;
    font-size: 24px;
    padding: 12px;
  }
  .popup_outer .childname_edit .wrapper .btn {
    max-width: 195px;
    margin: 30px auto 0 auto;
    font-size: 24px;
    padding: 12px;
  }
  .popup_outer .gradelevel h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .popup_outer .gradelevel {
    padding: 20px 20px;
  }
  .popup_outer .delprofile h5 {
    font-size: 16px;
  }
  .popup_outer .childname_edit .wrapper {
    max-width: 257px;
  }
  .popup_outer .childgradepage .gradeselector label {
    font-size: 16px;
  }
  .popup_outer .childgradepage button {
    padding: 10px;
    font-size: 22px;
  }
}

@media screen and (max-width: 360px) {
  main {
    padding: 20px;
  }

  .logo-sec img {
    max-height: 45px;
  }

  .headerBar .btn {
    font-size: 14px;
    max-width: 136px;
    padding: 12px;
  }

  .menu img {
    max-height: 30px;
  }

  .mainOuter .btn {
    padding: 20px;
    font-size: 16px;
  }

  .homeDes::after {
    right: -10px;
  }

  .homeDes::before {
    left: -10px;
  }

  .homeDes p {
    font-size: 14px;
  }

  button {
    font-size: 24px;
    padding: 15px;
  }
}

@media (min-width: 768px) {
  .home .header {
    max-width: 100%;
  }
  .home .headerBar {
    max-width: 560px;
    margin: 0 auto;
  }
  .home .headerBarouter {
    background: #042d87;
  }
  .home .topBar .textone {
    margin-right: 8px;
    display: inline-block;
  }
  .home .logo-sec {
    width: auto;
  }
  .home .logo-sec img {
    max-height: 70px;
  }
  .home .headerBar a {
    font-size: 18px;
    line-height: 36px;
    color: #fff;
    font-weight: 700;
    font-family: "Nunito", sans-serif;
    text-decoration: none;
  }
  .home .headerBar .btn {
    max-width: 164px;
    padding: 8px 5px;
    color: #042d87;
    font-family: "Fredoka One", cursive;
    font-weight: 500;
  }
  .home .headerBar .link {
    display: inline-block;
  }
}

.paymentIssue {
  margin-top: 20px;
  margin-left: 20px;
  visibility: hidden;
  position: relative;
}
.paymentIssueBtn {
  width: 30px;
  height: 30px;
}
.paymentIssue .tooltiptext {
  visibility: hidden;
  width: 320px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  font-size: small;
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -15px;
  left: 9%;
}
.paymentIssue:hover .tooltiptext {
  visibility: visible;
}

.plan-label-monthly,
.plan-label-yearly {
  display: flex;
  flex-direction: row;
  align-items: center;           /* Vertically center items */
  justify-content: space-between;/* Push items to edges */
  border: 2px solid #ABABAB;
  border-radius: 10px;
  padding: 18px 32px;
  margin: 12px 0;
  background: #FFFFFF;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  position: relative;
  min-width: 303px;
  height: 75px;
  z-index: 1;
}
.plan-label-monthly.ugly-paywall,
.plan-label-yearly.ugly-paywall {
  border: none;
  background: #00000033;
}

.plan-title {
  font-family: "Fredoka One", cursive;
  font-weight: 400;
  font-size: 24px;
  color: #000000;
  margin-right: 21.44px;
}
.plan-title.ugly-paywall{
  color: #FFFFFF;
}

.plan-price-tag {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding-right: 15px;
  width: 110px;
  height: 54px;
  align-items: end;
  background: url(../images/price_unselected.png);
}
.plan-price-tag.ugly-paywall {
  background: none;
}
.plan-radio:checked + .plan-label-monthly.ugly-paywall,
.plan-radio:checked + .plan-label-yearly.ugly-paywall {
  border: 3px solid #FFFFFF;;
  background: #00000033;
}
/* Switch to selected background when plan is selected */
.plan-radio:checked + .plan-label-monthly .plan-price-tag,
.plan-radio:checked + .plan-label-yearly .plan-price-tag {
  background: url(../images/price_selected.png);
}
.plan-radio:checked + .plan-label-monthly .plan-price-tag.ugly-paywall,
.plan-radio:checked + .plan-label-yearly .plan-price-tag.ugly-paywall {
  background: none;
}

.plan-price-main {
  font-family: "Fredoka One", cursive;
  font-weight: 400;
  font-size: 30px;
  line-height: 1;
  color: white;
}

.plan-price-desc {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 10px;
  margin-top: 2px;
  opacity: 0.9;
  color: white;
}

/* Hide the radio input */
.plan-radio {
  width: 0;
  height: 0;
  margin: 0;
  position: absolute;
  padding: 0;
  display: none;
}

.plan-radio:checked + .plan-label-monthly {
  background: #D9FFFD;
  border-color: #00A9BF;
}
.plan-radio:checked + .plan-label-yearly {
  background: #D9FFFD;
  border-color: #00A9BF;
}

/* Add focus style for accessibility */
.plan-radio:focus + .plan-label {
  outline: 2px solid #e53935;
  outline-offset: 2px;
}

.plan-badge {
  position: absolute;
  top: -25px;
  right: 0px;
  background: red;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  font-size: 15px;
  padding: 4px 8px 8px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(94,195,216,0.08);
  z-index: 0;
  line-height: 1;
  letter-spacing: 0.5px;
  border: 2px solid red;
  width: 93px;
  height: 45px;
}
.plan-badge.popup-style {
  top: -15px;
  right: 10px;
  font-weight: 700;
  font-size: 11px;
  background: #FFFFFF;
  color: #00A9BF;
  border: none;
  width: 107px;
  height: 19px;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 0px 0px 0px;
}
.plan-badge.popup-style.money-back {
  color: #9A50F4;
}

.plan-badge.selected {
  background: #00A9BF;
  border-color: #5DB0AF;
}

/* Yearly pricing row */
.plan-yearly-pricing {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 0;
}

.plan-old-price {
  font-family: 'Nunito', sans-serif;
  font-size: 12.82px;
  color: #808D92;
  text-decoration: line-through;
  font-weight: 400;
}
.plan-old-price.ugly-paywall {
  color: #FFFFFF;
}

.plan-current-price {
  font-family: 'Nunito', sans-serif;
  font-size: 12.82px;
  color: #000000;
  font-weight: 400;
}
.plan-current-price.ugly-paywall {
  color: #FFFFFF;
}
.discount-unlocked {
  display: flex;
  justify-content: center;
  flex-direction: column;
  background:#F91C3D; 
  color:#fff; 
  border-radius:5px; 
  font-family:'Nunito',sans-serif; 
  font-size:16px; 
  font-weight:700; 
  margin:0 auto 8px auto; 
  width:185px; 
  height:30px; 
  text-align:center;
}
.old-price {
  font-size:15px; 
  color:#b3b3b3; 
  text-decoration:line-through; 
  font-family:'Nunito',sans-serif; 
  font-weight:500; 
  margin-right:12px;
}
.new-price {
  font-size:15px; 
  color:#111; 
  font-family:'Nunito',sans-serif; 
  font-weight:700
}
.interval {
  font-size:15px; 
  color:#111; 
  font-family:'Nunito',sans-serif; 
  font-weight:500; 
  margin-left:6px;
}
.join-now {
  display:block; 
  margin:0 auto 32px auto; 
  background: #00A9BF; 
  color: #FFFFFF; 
  font-family: "Fredoka", sans-serif; 
  font-size: 21px; 
  font-weight: 600; 
  border: none; 
  border-radius: 12px; 
  padding: 0px 0px 0px 0px;
  width: 100%; 
  max-width:520px;
  height: 50px; 
  box-shadow:0 4px 0 #CCECEC; 
  cursor:pointer; 
  transition:background 0.2s;
  line-height: 100%;
}
.view-plans {
  font-family:'Nunito',sans-serif; 
  font-size:16px; 
  font-weight:700; 
  color: #000000; 
  text-decoration: none; 
  border-bottom: 2px solid #000000; 
  padding-bottom: 2px; 
  cursor: pointer;
  line-height: 18px; 
}
.bill-yearly {
  font-family: 'Nunito', sans-serif; 
  font-size: 18px; 
  font-weight: 400; 
  color: #FFFFFF;
  line-height: 25px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}
.ugly-button{
  background: #FFFFFF;
  width: 100%;
  border-radius: 12px;
  padding: 0px 0px 0px 0px;
  box-shadow: 0px 4px 0px #00000040;
  color: #00A9BF;
  font-weight: 600;
  font-size: 24px;
  border: none;
  max-width: 560px;
  height: 50px;
  font-family: "Fredoka", sans-serif;
  line-height: 100%;
}
.disclaimer {
  font-family: "Nunito Sans", sans-serif;
  text-align: center;
  margin-top: 10px;
  font-weight: 400;
  font-style: normal;
  font-size: 11px;
  line-height: 25px;
  letter-spacing: 0;
}
.ugly-disclaimer{
  font-family: "Nunito", sans-serif; 
  font-weight: 400; 
  font-size: 13px; 
  line-height: 25px; 
  color: #FFFFFF; 
  max-width: 100%; 
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}
.price-desc {
  font-family: "Nunito", sans-serif;
  text-align: center;
  margin-top: 100px;
  font-weight: 600;
  font-style: normal;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0;
  color: black;
}
