body {
  padding: 0;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

label {
  font-weight: 500;
  font-size: 16px;
  color: #333333;
}

a {
  text-decoration: none;
  color: #2F41E3;
}

button:hover {
  cursor: pointer;
}

button:disabled {
  opacity: 0.5;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}

.paymentModal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: none; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.paymentModalContents {
  width: calc(100% / 2);
  height: 50vh;
  margin: 12.5% auto;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 32px;
}

.paymentModalContents h1 {
  font-size: 48px;
  line-height: 60px;
  color: #2F41E3;
  font-weight: 900;
  margin: 0;
}

.paymentModalCloseBtn {
  display: inline-block;
  float: right;
  background: none;
  border: none;
  color: #2F41E3;
}

.errorLabel {
  margin-left: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: red;
  display: none;
}

.onboardingDiv {
  animation: fadeIn 1.5s;
  width: 100vw;
  height: 100vh;
}

.skipBtn {
  width: 100%;
  height: 44px;
  color: #2F41E3;
  font-weight: 500;
  border: none;
  background: none;
  margin-top: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.howItWorks {
  background-color: rgb(23, 30, 192);
  height: 100vh;
  width: 100%;
}

.howItWorksSection {
  padding: 32px;
  display: inline-block;
  width: 27%;
  height: calc(64.8% - 64px);
  margin-top: 17.5vh;
  margin-right: 20px;
  border-radius: 16px;
  background-color: #ffffff33;
}

.howItWorksSection img {
  width: 100%;
  height: auto;
}

.howItWorksSection h1 {
  color: white;
  font-weight: 900;
  font-size: 48px;
  margin-bottom: 32px;
  margin-top: 0;
}

.howItWorksSection h3 {
  color: white;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 16px;
  margin-top: 0;
}

.howItWorksSection p {
  color: white;
  font-size: 18px;
  margin-bottom: 0;
  margin-top: 0;
}

.howItWorksNextBtn {
  border-radius: 8px;
  margin: 26px auto 0 auto;
  background: #E9B225;
  color: white;
  display: block;
  width: 9.4%;
  height: 44px;
  border: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.topBar {
  position: fixed;
  height: 100px;
  width: calc(50% - 6rem);
  padding-left: 3rem;
  padding-right: 3rem;
  left: 0;
}

.topBarLogo {
  width: 243px;
  height: 100px;
}

.leftColumn {
  width: 50vw;
  margin-top: 100px;
  position: fixed;
  height: 90.7%;
}

.rightColumn {
  width: 50vw;
  height: 100%;
  position: fixed;
  background-color: #1728C0;
  margin-top: 0;
  right: 0;
}

.rightColumn img {
  width: 50vw;
}

.signUpDiv {
  margin-top: 7.37%;
  margin-bottom: 16.67%;
  margin-left: 12.5%;
  margin-right: 12.5%;
}

.signUpDiv h2 {
  color: #2F41E3;
  font-weight: 900;
  font-size: 48px;
  margin: 0;
}

#submit {
  margin-top: 32px;
  width: 100%;
  height: 44px;
  border: none;
  border-radius: 8px;
  color: white;
  background-color: #2F41E3;
}

.signUpDiv p {
  color: #333333;
  font-size: 16px;
  margin-top: 12px;
}

.orText {
  font-size: 12px !important;
  width: 100%;
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #CECECE;
  border-radius: 8px;
  color: #333333;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  height: 44px;
  padding: 0 24px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin-top: 16px;
}

.google-btn:hover {
  background-color: #2F41E3;
  border-color: #2F41E3;
  color: #fff;
}

.google-icon {
  width: 18px;
  height: 18px;
  background-image: url("https://www.gstatic.com/firebasejs/ui/2.0.0/images/auth/google.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 12px;
}

.google-text {
  margin-left: 4px;
}

.signUpDiv input {
  width: calc(100% - 32px);
  margin-top: 4px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #CECECE;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 16px;
}

.password-input {
  position: relative;
  display: block;
}

.password-input input[type="password"] {
  width: calc(100% - 64px);
  padding-right: 48px;
}

.password-input .toggle-password {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}

.password-input .toggle-password i {
  color: #000000;
}

.password-input .toggle-password.active i {
  color: #000000;
}

.signUpDiv input:focus {
  outline: 1px solid #2F41E3;
}

.signUpBtn {
  width: 100%;
  height: 44px;
  color: white;
  font-weight: 500;
  background: #2F41E3;
  border: 2px solid #2F41E3;
  margin-top: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.signUpBtn:hover {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.02), 0px 8px 16px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.tsAndcsNotice {
  font-size: 12px !important;
  margin-bottom: 44px;
}

.signInText {
  font-size: 14px !important;
  font-weight: 600;
  width: 100%;
  text-align: center;
}

.mainSection {
  width: calc(100vw - 10%);
  height: calc(100vh - 9.3vh);
  padding: 5%;
  float: left;
}

.subscriptionSelectionDiv {
  margin-top: 32px;
}

.subscriptionTextDiv {
  width: 50%;
  height: 100%;
  float: left;
}

.subscriptionTextDiv h1 {
  margin-top: 8.91%;
  font-weight: 900;
  font-size: 36px;
  margin-left: 12.5%;
  color: #2F41E3;
  margin-bottom: 2.96%;
}

.subscriptionTextDiv p {
  color: #333333;
  font-size: 16px;
  margin-left: 12.5%;
  margin-bottom: 15px;
}

.subscriptionTextDiv ul {
  color: #333333;
  font-size: 16px;
  margin-left: 12.5%;
  margin-bottom: 15px;
}

.switchSubscriptionSelection {
  height: 24px;
  margin-top: 0;
  text-align: center;
}

.switchSubscriptionSelection p {
  color: #939393;
  font-size: 18px;
  line-height: 24px;
  display: inline-block;
  font-weight: 600;
  margin: 0;
  letter-spacing: -1.1px;
  width: calc(50% - 25px);
  text-align: center;
}

.switchSubscriptionSelection .active {
  color: #333333;
}

.form-switch {
  display: inline-block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.form-switch i {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
  background-color: #2F41E3;
  border-radius: 12px;
  vertical-align: text-bottom;
  transition: all 0.3s linear;
}
.form-switch i::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 11px;
  transition: all 0.25s linear;
}
.form-switch i::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.2s ease-in-out;
}
.form-switch:active i::after {
  width: 28px;
}
.form-switch:active input:checked + i::after { transform: translate3d(16px, 0, 0); }
.form-switch input { display: none; }
.form-switch input:checked + i { background-color: #2F41E3; }
.form-switch input:checked + i::before { transform: translate3d(24px, 0, 0) scale3d(0, 0, 0); }
.form-switch input:checked + i::after { transform: translate3d(24px, 0, 0); }

.discountText {
  margin-top: 8px;
  width: calc(50% - 24px);
  font-size: 16px;
  text-align: center;
  color: #939393;
}

.annualSelected {
  color: #2F41E3;
}

.subscriptionPricingDiv {
  margin-top: 2.22vh;
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
}

.subscriptionPricingHeader {
  width: 100%;
}

.subscriptionPricingHeader h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  display: inline-block;
  float: left;
}

.counter {
  height: 28px;
  width: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  float: right;
  background-color: #ECECEC;
  padding: 0 10px;
  border-radius: 14px;
}
.counter input {
  width: 28px;
  border: 0;
  margin: 0;
  height: 25px;
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  color: #333333;
  background-color: #ECECEC;
  appearance: none;
  outline: 0;
}
.counter span {
  display: block;
  line-height: 28px;
  font-size: 16px;
  cursor: pointer;
  color: #333333;
  user-select: none;
}

.priceTextDiv {
  margin-top: 16px;
  height: 60px;
}

.pricingSmallText {
  display: inline-block;
  font-weight: 900;
  margin: 0;
  font-size: 32px !important;
  color: #2F41E3 !important;
}

.pricingBigText {
  display: inline-block;
  font-weight: 900;
  margin: 0;
  font-size: 64px !important;
  color: #2F41E3 !important;
}

.perMonthLbl {
  display: block;
  margin-top: 16px;
  font-size: 15px;
}

.subscribeBtn {
  height: 48px;
  line-height: 44px;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: white;
  background-color: #2F41E3;
  border: 2px solid #2F41E3;
  border-radius: 8px;
  margin-top: 32px;
}

.subscribeBtn:hover {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.02), 0px 8px 16px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.planFeaturesList {
  list-style: none;
  text-align: left;
  margin: 0;
  color: #333333;
  padding: 0;
  font-size: 16px;
}

.planFeaturesList li {
  margin-bottom: 12px;
  height: 30px;
}

.planFeaturesList li:last-child {
  margin-bottom: 0;
  height: 30px;
}

.listIcon {
  display: inline-block;
  margin: 0 24px 0 0;
}

.blueWarningLabel {
  color: #2F41E3;
  background: rgba(47, 65, 227, 0.1);
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.onboardingQuestion1 {
  margin-left: 12.5vw;
  margin-right: 12.5vw;
}

.onboardingQuestion1 h1 {
  font-size: 48px;
  line-height: 60px;
  color: #2F41E3;
  font-weight: 900;
  margin: 0;
}

.onboardingQuestion1 p {
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}

.progressStepper {
  width: 100%;
  margin-bottom: 12px;
}

.progressStep {
  display: inline-block;
  background-color: #F7F7F7;
  height: 8px;
  margin: 0;
  border-radius: 6px;
  width: calc((100% / 3) - 8px);
}

.stepCompleted {
  background-color: #25E9AE;
}

.accountOwnerContainer {
  width: calc(100% - 32px);
  background-color: #F7F7F7;
  border-radius: 8px;
  padding: 24px 16px;
}

.accountOwnerContainer img {
  height: 2.29vw;
  width: 2.29vw;
  display: inline-block;
}

.accountOwnerDetails {
  display: inline-block;
  margin-left: 16px;
  margin-top: 0;
  margin-bottom: 0;
  height: 2.29vw;
  vertical-align: top;
}

.accountOwnerDetails h4 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
  margin-top: 0;
  line-height: 20px;
  color: #333333;
}

.accountOwnerDetails p {
  font-weight: 500;
  font-size: 12px;
  margin: 0;
  line-height: 20px;
  color: #939393;
}

.accountTypeSelect {
  width: 100%;
  height: 44px;
  padding: 12px 16px;
  margin-top: 4px;
  border: 1px solid #CECECE;
  border-radius: 8px;
  -webkit-appearance: none;
  appearance: none;
}

.select-wrapper {
  position: relative;
  margin-bottom: 10.37%;
}

.select-wrapper::after {
  content: "⌄";
  font-size: 1rem;
  top: 30%;
  right: 16px;
  position: absolute;
  pointer-events: auto;
}

.previewFileUpload {
  height: 44px;
  width: calc(100% - 32px);
  border-radius: 8px;
  border: 1px solid #333333;
  padding: 24px 16px;
  margin-bottom: 16px;
}

.previewFileUpload:hover {
  cursor: pointer;
}

.previewAvatar {
  display: inline-block;
  margin-right: 16px;
  height: 44px;
  width: 44px;
  border-radius: 8px;
}

.previewText {
  display: inline-block;
  vertical-align: top;
}

.previewText h5 {
  font-weight: 600;
  line-height: 20px;
  font-size: 16px;
  margin-top: 0;
  margin-bottom: 8px;
}

.previewText p {
  margin: 0;
  font-size: 12px;
}

.avatarUploadPreviewWindow {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  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 */
  animation: fadeIn .2s;
}

.avatarUploadPreviewWindow-body-content {
  background-color: #FFFFFF;
  margin: calc(50vh - 250px) auto;
  padding: 32px;
  height: calc(372px - 64px);
  border-radius: 8px;
  box-shadow: 0px 4px 48px rgba(0, 0, 0, 0.1);
  width: calc(304px - 64px); /* Could be more or less, depending on screen size */
}

.avatarUploadDropArea {
  border: 1px dashed #2F41E3;
  border-radius: 8px;
  height: 240px;
  width: 240px;
}

.avatarUploadDropArea:hover {
  cursor: pointer;
}

.avatarUploadDropArea label {
  margin: 90px 70px;
  border-radius: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
}

.avatarUploadDropArea label:hover {
  cursor: pointer;
}

.avatarUploadDropArea p {
  display: inline-block;
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}

.avatarUploadPreviewWindowBtnsDiv {
  height: 44px;
  display: block;
}

.avatarUploadPreviewWindowBtnsDiv-left-btn {
  margin-top: 24px;
  height: 44px;
  width: 47.5%;
  float: left;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid #2F41E3;
  color: #2F41E3;
  background: #FFFFFF;
  padding: 12px 16px;
}

.avatarUploadPreviewWindowBtnsDiv-left-btn:hover {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.02), 0px 8px 16px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.avatarUploadPreviewWindowBtnsDiv-right-btn {
  margin-top: 24px;
  height: 44px;
  width: 47.5%;
  float: right;
  font-weight: 500;
  border-radius: 8px;
  border: 2px solid #2F41E3;
  color: #FFFFFF;
  background: #2F41E3;
  padding: 12px 16px;
}

.avatarUploadPreviewWindowBtnsDiv-right-btn:hover {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.02), 0px 8px 16px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.modelInputFields {
  width: calc(100% - 32px);
  margin-top: 4px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid #CECECE;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.modelInputFields:focus {
  outline: 1px solid #2F41E3;
}

.modelInputFields::placeholder {
  color: #939393;
}

.onboardingQuestionHeader {
  margin-left: 35%;
  margin-right: 35%;
  margin-top: 1.48%;
}

.onboardingQuestionHeader h1 {
  font-size: 48px;
  line-height: 60px;
  color: #2F41E3;
  font-weight: 900;
  margin: 0;
}

.onboardingQuestionHeader p {
  font-size: 16px;
  line-height: 20px;
  color: #333333;
}

.onboardingLargerScreen {
  width: 51.67vw;
  margin-left: 24.17vw;
  margin-right: 24.17vw;
  margin-top: 1.48%;
}

.onboardingProgressStepper {
  width: 30vw;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.onboardingProgressStepper h1 {
  font-size: 48px;
  line-height: 60px;
  color: #2F41E3;
  font-weight: 900;
  margin: 0;
}

.onboardingProgressStepper p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 32px;
  color: #333333;
}

.additionalModelInputs {
  width: calc(100% - 32px);
  margin-top: 4px;
  border-radius: 8px;
  border: 1px solid #CECECE;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
  resize: none;
}

.additionalModelInputs:focus {
  outline: 1px solid #2F41E3;
}

.additionalModelInputs::placeholder {
  color: #939393;
}

.smallModelInput {
  height: 64px;
}

.mediumModelInput {
  height: 84px;
}

.largeModelInput {
  height: 104px;
}

.leftColumnAddInitialModel {
  float: left;
  width: calc(25vw);
}

.rightColumnAddInitialModel {
  float: right;
  width: calc(25vw);
}

.continueAdditionalModelBtn {
  width: 100%;
  height: 44px;
  color: white;
  font-weight: 500;
  background: #2F41E3;
  border: 2px solid #2F41E3;
  margin-top: 16px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.continueAdditionalModelBtn:hover {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.02), 0px 8px 16px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

#addAnotherModelBtn {
  color: #2F41E3;
  background-color: #FFFFFF;
  border: 2px solid #2F41E3;
}

#addAnotherModelBtn:hover {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.02), 0px 8px 16px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.1);
  background: #E2E4F4;
}

.howItWorksLeftColumn {
  width: calc(43.91vw - 10%);
  height: calc(100vh - 9.3vh);
  float: left;
}

.internalHowItWorksLeftColumn {
  margin-left: 12.5vw;
  margin-right: 6.25vw;
  margin-top: 4.44vh;
  width: 25.16vw;
}

.internalHowItWorksLeftColumn h1 {
  color: #2F41E3;
  line-height: 60px;
  font-size: 48px;
  font-weight: 900;
}

.howItWorksRightColumn {
  width: calc(56.09vw - 10%);
  height: calc(100vh - 9.3vh);
  float: right;
}

.howItWorksRightColumn img {
  width: calc(100% - 12.5vw);
  margin-right: 12.5vw;
  margin-bottom: 29.54vh;
  margin-top: 4.44vh;
}

.howItWorksStepper h2 {
  font-weight: 600;
}

.howItWorksStepperExplanation {
  display: none;
  animation: fadeIn 1.5s;
}

.howItWorksStepperExplanation p {
  color: #333333;
}

.howItWorksStepperExplanation button {
  height: 44px;
  background: #2F41E3;
  border-radius: 8px;
  width: 30%;
  border: none;
  color: #ffffff;
  margin-top: 32px;
}

.howItWorksStepperExplanation button:hover {
  box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.02), 0px 8px 16px rgba(0, 0, 0, 0.04), 0px 4px 8px rgba(0, 0, 0, 0.06), 0px 2px 4px rgba(0, 0, 0, 0.08), 0px 1px 2px rgba(0, 0, 0, 0.1);
}

.howItWorksInactive h2 {
  color: #939393;
}

.multi-input-label {
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  line-height: 20px !important;
  margin-top: 16px !important;
  margin-bottom: 4px !important;
  color: #333333 !important;
}

.multi-input-sub-label {
  font-style: normal !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 18px !important;
  margin-top: 0 !important;
  margin-bottom: 4px !important;
  color: #939393 !important;
}

.leftSidePrice {
  display: inline-block;
  float: left;
  width: 49%;
}

.rightSidePrice {
  display: inline-block;
  float: right;
  width: 49%;
}

.currency-wrap {
  position: relative;
}

.currency-code {
  position: absolute;
  left: 8px;
  top: 12px;
}

.text-currency {
  padding: 12px 20px;
  border: solid 1px #333333;
  border-radius: 5px;
  width: calc(99% - 40px);
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  height: 18px;
}

.finishedScreenImg {
  width: 480px;
  height: auto;
  margin: 16px calc(50% - 240px);
}

.offerClaimedImg {
  width: 361.135px;
  height: auto;
  margin: 16px calc(50% - (361.135px/2));
}

.emailVerifiedImg {
  width: 353.85px;
  height: auto;
  margin: 16px calc(50% - (353.85px/2));
}

.joinTelegramImage {
  width: 340px;
  height: auto;
  margin: 16px calc(50% - (340px / 2));
}

.finishedScreenH1 {
  margin: 16px calc(50% - 240px);
  font-style: normal;
  width: 480px;
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
}

.finishedScreenP {
  margin: 16px calc(50% - 240px);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  width: 480px;
}

.finishedScreenBtn {
  width: 480px !important;
  margin: 16px calc(50% - 240px);
}

.finishedScreenWebsiteBtn {
  width: 480px !important;
  margin: 16px calc(50% - 240px);
  background: rgba(47, 65, 227, 0.01) !important;
  border: 2px solid rgba(47, 65, 227, 0.01) !important;
  color: #2F41E3 !important;
  opacity: 1 !important;
}

.emailVerifiedBtn {
  width: 480px !important;
  margin: 16px calc(50% - 240px);
  background: #2F41E3 !important;
  border: 2px solid #2F41E3 !important;
  color: #FFFFFF !important;
  opacity: 1 !important;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.buttonSpinner {
  margin-left: calc(50% - 10px);
  border: 2px solid #ffffff; /* Light grey */
  border-top: 2px solid #2F41E3; /* Blue */
  border-radius: 10px;
  width: 14.6px;
  height: 14.6px;
  animation: spin 2s linear infinite;
}

@media only screen and (max-width: 1500px) {

  .planFeaturesList {
    font-size: 16px;
  }

  .planFeaturesList li {
    margin-bottom: 12px;
  }

  .switchSubscriptionSelection {
    margin-top: 0;
  }

  .subscriptionPricingDiv {
    padding: 25px;
    margin-top: 32px;
  }

  .subscribeBtn {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .onboardingQuestion1 h1 {
    line-height: 50px;
  }

  .avatarUploadPreviewWindow-body-content {
    height: calc(40vh - 48px);
  }

}

@media only screen and (max-width: 1100px) {

  h2 {
    letter-spacing: -0.02em;
    font-size: 32px !important;
    line-height: 40px !important;
  }

  h1 {
    letter-spacing: -0.02em;
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .signUpDiv {
    margin: 16px;
  }

  .signUpDiv p {
    margin-bottom: 32px;
  }


  .topBar {
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
  }

  .topBarLogo {
    width: auto !important;
  }

  .rightColumn {
    width: 100%;
    top: 100%;
    position: relative;
  }

  .rightColumn img {
    width: 100vw;
  }

  #testimonial_slider {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .leftColumn {
    width: 100%;
    position: relative;
    margin-top: 0 !important;
  }

  .orText {
    margin-bottom: 16px !important;
  }

  .password-input .toggle-password {
    top: 50.5%;
  }

  .subscriptionTextDiv {
    width: 100%;
    height: auto !important;
    margin-bottom: 16px;
  }

  .subscriptionTextDiv h1 {
    margin-top: 16px;
    margin-left: 16px !important;
    margin-right: 16px !important;
    font-size: 24px !important;
  }

  .subscriptionTextDiv p {
    margin-left: 16px !important;
    margin-right: 16px !important;
    font-size: 16px !important;
  }

  .subscriptionSelectionDiv {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 32px !important;
  }

  .onboardingQuestion1 {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .accountOwnerContainer img {
    width: 44px;
    height: 44px;
  }

  .previewText {
    width: calc(100% - 92px);
  }

  .previewText p {
    font-size: 10px !important;
  }

  .select-wrapper::after {
    top: 40%;
  }

  .onboardingProgressStepper {
    width: calc(100%);
  }

  .howItWorksLeftColumn {
    width: 100%;
    height: auto;
  }

  .internalHowItWorksLeftColumn {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .howItWorksRightColumn {
    width: 100%;
    height: auto;
  }

  .howItWorksRightColumn img {
    width: 100%;
    height: auto;
  }

  .finishedScreenH1 {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .finishedScreenP {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .finishedScreenBtn {
    width: calc(100% - 32px) !important;
    margin-left: 16px;
    margin-right: 16px;
  }

  #downloadChromeExtension {
    display: none;
  }

  .mainSection {
    height: auto !important;
    overflow-y: scroll;
  }

  .onboardingDiv {
    height: auto !important;
  }

  .subscriptionSelectionDiv {
    height: auto !important;
  }

  .subscriptionPricingDiv {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 1500px) {

  .planFeaturesList {
    font-size: 16px;
  }

  .planFeaturesList li {
    margin-bottom: 12px;
  }

  .switchSubscriptionSelection {
    margin-top: 0;
  }

  .subscriptionPricingDiv {
    padding: 25px;
    margin-top: 16px;
  }

  .subscribeBtn {
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .onboardingQuestion1 h1 {
    line-height: 50px;
  }

  .avatarUploadPreviewWindow-body-content {
    height: calc(40vh - 48px);
  }

}

@media only screen and (max-width: 450px) {

  h2 {
    letter-spacing: -0.02em;
    font-size: 32px !important;
    line-height: 40px !important;
  }

  h1 {
    letter-spacing: -0.02em;
    font-size: 32px !important;
    line-height: 40px !important;
  }

  .signUpDiv {
    margin: 16px;
  }

  .signUpDiv p {
    margin-bottom: 32px;
  }


  .topBar {
    width: calc(100% - 32px);
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
  }

  .topBarLogo {
    width: auto !important;
  }

  .rightColumn {
    display: none;
  }

  #testimonial_slider {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .leftColumn {
    width: 100%;
  }

  .orText {
    margin-bottom: 16px !important;
  }

  .password-input .toggle-password {
    top: 50.5%;
  }

  .subscriptionTextDiv {
    width: 100%;
    height: auto !important;
    margin-bottom: 16px;
  }

  .subscriptionTextDiv h1 {
    margin-top: 16px;
    margin-left: 16px !important;
    margin-right: 16px !important;
    font-size: 24px !important;
  }

  .subscriptionTextDiv p {
    margin-left: 16px !important;
    margin-right: 16px !important;
    font-size: 16px !important;
  }

  .subscriptionSelectionDiv {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
    margin-top: 32px !important;
  }

  .onboardingQuestion1 {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .accountOwnerContainer img {
    width: 44px;
    height: 44px;
  }

  .previewText {
    width: calc(100% - 92px);
  }

  .previewText p {
    font-size: 10px !important;
  }

  .select-wrapper::after {
    top: 40%;
  }

  .onboardingProgressStepper {
    width: calc(100%);
  }

  .howItWorksLeftColumn {
    width: 100%;
    height: auto;
  }

  .internalHowItWorksLeftColumn {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .howItWorksRightColumn {
    width: 100%;
    height: auto;
  }

  .howItWorksRightColumn img {
    width: 100%;
    height: auto;
  }

  .finishedScreenH1 {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .finishedScreenP {
    width: calc(100% - 32px);
    margin-left: 16px;
    margin-right: 16px;
  }

  .finishedScreenBtn {
    width: calc(100% - 32px) !important;
    margin-left: 16px;
    margin-right: 16px;
  }

  #downloadChromeExtension {
    display: none;
  }

  .mainSection {
    height: auto !important;
    overflow-y: scroll;
  }

  .onboardingDiv {
    height: auto !important;
  }

  .subscriptionSelectionDiv {
    height: auto !important;
  }

  .subscriptionPricingDiv {
    margin-bottom: 16px;
  }
}

