*,
html,
body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

/*---------Root variables custom----------*/

:root {
  --color-primary: #08164e;
  --color-secondary: #49c0a0;
  --color-white: #fff;
  --color-text: #526892;
}

/*---------Root variables custom----------*/

main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.newaccount--text p {
  font-size: 16px;
  margin-bottom: 0px;
  line-height: normal;
  font-weight: 500;
  color: var(--color-primary);
}

.newaccount--text p>a {
  text-decoration: none;
  line-height: normal;
  display: inline-block;
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 16px;
  margin-left: 3px;
}

.custom-navbar {
  /* position: fixed; */
  /* top: 38px; */
  /* left: 0; */
  /* right: 0; */
  width: 100%;
  padding: 10px 0px;
  background: #fff;
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.1);
}

.custom-navbar-v2 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 10px 0px 0px 0px;
  background: #fff;
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.1);
}

.survey-custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 10px 0px;
  background: #fff;
  box-shadow: 0px 2px 24px rgba(0, 0, 0, 0.1);
}

.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
}

.height-cover {
  min-height: 100vh;
}

.item-centered {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.login--box {
  border: 1px solid #d3e1f5;
  border-radius: 8px;
  background: #fff;
  width: 90%;
  padding: 30px 25px;
  margin-top: 100px;
  margin-bottom: 60px;
}

.maxw-400 {
  max-width: 410px;
}

.maxw-800 {
  max-width: 800px;
}

.login--title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: normal;
  margin-bottom: 10px;
}

.maintenance--title {
  font-size: 24px;
  font-weight: 600;
  color: #49c0a0;
  line-height: normal;
  margin-bottom: 10px;
}

.login--support--text {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  line-height: normal;
  margin-bottom: 10px;
}

.devider--shape {
  border: 1px dashed #b7cceb;
  margin-top: 25px;
  margin-bottom: 30px;
}

.custom-login-field .svg--icon {
  position: absolute;
  top: 18px;
  left: 19px;
  display: inline-block;
  z-index: 1;
  line-height: 0;
}

.custom-login-field {
  position: relative;
}

.custom-email-box {
  /* background-color: var(--color-secondary); */
  background-color: #f1f7fe;
  font-weight: 400;
  overflow-wrap: break-word;
  border-radius: 4px;
  background-size: 50% auto;
}

.login--box .two {
  display: flex;
  align-items: center;
  justify-self: space-around;
}

.two .custom-login-field--inputs {
  padding: 0px 8px;
}

.two p {
  margin: 0px 0px;
  display: inline-block;
  max-width: 85%;
  padding-left: 3%;
  padding-right: 3%;
}

.two p:nth-child(1) {
  float: left;
  font-size: 14px;
  margin-left: -10px;
}

.two p:nth-child(2) {
  float: right;
  font-size: 13px;
}

.custom-login-field--inputs {
  border: 1px solid #d3e1f5;
  border-radius: 4px;
  background: #f1f7fe;
  padding: 12px 50px;
  line-height: normal;
  color: var(--color-primary);
  font-size: 16px;
  height: auto;
  transition: 0.2s ease-in-out all;
}

.custom-login-field--inputs:focus {
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: none;
  background: #f1f7fe;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: var(--color-secondary);
  background: #f1f7fe;
  box-shadow: none;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: var(--color-secondary);
  background: #f1f7fe;
  box-shadow: none;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  background: #f1f7fe;
  box-shadow: none;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  background: #f1f7fe;
}

.custom-login-field--inputs::placeholder {
  color: rgba(82, 104, 146, 0.6);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group:last-child {
  margin-bottom: 0px;
}

.btn--submit {
  padding: 12px 5px;
  text-align: center;
  background: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: auto;
  border: 1px solid var(--color-secondary);
  color: var(--color-white);
  border-radius: 4px;
  transition: 0.2s ease-in-out all;
  width: -webkit-fill-available;
}

.btn--submit:focus,
.btn--submit:hover {
  background: var(--color-white);
  color: var(--color-secondary);
  outline: none;
}

.filter__btn {
  padding: 0.25rem 0.5rem;
  /* margin-top: 1rem; */
  height: 48px !important;
  text-align: center;
  background: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: auto;
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  border-radius: 4px;
  transition: 0.2s ease-in-out all;
  width: 100%;
}

.filter__btn:hover,
.filter__btn:active {
  background: var(--color-white);
  color: var(--color-primary);
  outline: none;
}

.forgot--password--text {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.forgot--password--text:focus,
.forgot--password--text:hover {
  text-decoration: none;
  color: var(--color-secondary);
}

.toggle-password {
  top: 17px;
  right: 15px;
  position: absolute;
  color: #526892;
  z-index: 1;
  cursor: pointer;
}

.login--box form {
  width: 100%;
}

.invalid-feedback {
  margin-top: 0.45rem;
  font-size: 12px;
}

.custom-login-field--label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 7px;
  color: var(--color-primary);
  line-height: normal;
  text-transform: capitalize;
}

.theme-checkbox .custom-control-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text);
  padding-left: 5px;
  line-height: 25px;
}

.theme-checkbox .custom-control-label::before {
  border-radius: 2px;
  border-color: #526892;
}

.theme-checkbox+.theme-checkbox {
  margin-top: 3px;
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
  border-color: var(--color-secondary);
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgb(73 192 160 / 24%);
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label,
.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label,
.custom-control-input.is-invalid~.custom-control-label,
.was-validated .custom-control-input:invalid~.custom-control-label {
  color: var(--color-text);
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
  border-color: var(--color-secondary);
  background-color: var(--color-secondary);
}

.theme-checkbox .custom-control-label+.invalid-feedback {
  margin-top: 0.1rem;
  font-size: 12px;
  margin-bottom: 0.5rem;
  padding-left: 5px;
}

.theme-checkbox a {
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-block;
}

.theme-checkbox a:hover,
.theme-checkbox a:focus {
  text-decoration: none;
  color: var(--color-secondary);
}

.resend--text {
  color: #000;
  font-size: 16px;
  margin-bottom: 10px;
  line-height: normal;
}

.resend--text a {
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
}

.custom-navlinks .nav-item+.nav-item {
  margin-left: 35px;
}

.custom-navlinks .nav-item .nav-link {
  font-size: 16px;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  padding: 0px !important;
}

.custom-navlinks .nav-item .nav-link::after {
  border: 0px !important;
}

.navdrop--menu {
  border: 1px solid #d3e1f5;
  box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.11);
  border-radius: 4px;
  margin-top: 15px;
  padding: 0px;
  left: -4rem;
}

.navdrop--menu::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent #c4c4c4 transparent;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -22px;
  position: absolute;
  right: 15px;
}

.navdrop--menu::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -21px;
  position: absolute;
  right: 15px;
  border-color: transparent transparent #fff transparent;
}

.navdrop--menu>a {
  font-size: 16px;
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  padding: 15px 15px 12px;
  line-height: normal;
}

.navdrop--menu>a:hover,
.navdrop--menu>a:focus {
  color: #e12d2d;
  background: #fff;
}

.navdrop--menu>a+a {
  border-top: 1px solid #d3e1f5;
}

/* .nav-item.dropdown.show .arr-stroke path {
  stroke: var(--color-secondary);
} */

.bg-e5 {
  background: #f1f7fe;
}

.response-save-text {
  color: var(--color-secondary);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}

.color--primary {
  color: var(--color-primary) !important;
}

.color--text {
  color: var(--color-text) !important;
}

.questionpaper--outer {
  width: 100%;
  max-width: 940px;
  margin: 50px auto 30px;
}

.questionpaper--text--heading {
  font-weight: 600;
  margin-bottom: 20px;
  line-height: normal;
  color: var(--color-primary);
  font-size: 24px;
}

.questionpaper--text--heading--badge {
  display: inline-block;
  vertical-align: middle;
  background: #d1e0f6;
  padding: 0px 8px;
  border-radius: 4px;
  text-align: center;
  color: #273256;
  font-weight: 500;
  font-size: 18px;
  line-height: normal;
  margin-left: 10px;
}

.searchbar--box {
  position: relative;
}

.searchbar--box input[type="search"] {
  border: 1px solid #d3e1f5;
  background: #fff;
  padding: 11px 45px;
  padding-right: 0px;
  color: var(--color-primary);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  height: auto;
  width: 100%;
  max-width: 315px;
}

.searchbar--box input[type="search"]:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.searchbar--box input[type="search"]::placeholder {
  color: rgba(82, 104, 146, 0.6);
}

.searchbar--box--svg {
  position: absolute;
  left: 15px;
  top: 15px;
  line-height: 0;
  display: inline-block;
}

.selectnice-custom {
  width: 32%;
  float: right;
}

.selectnice-custom .nice-select {
  float: none;
  display: inline-block;
  border: 1px solid #d3e1f5;
  border-radius: 4px;
  background: #fff;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-text);
  height: 50px;
  line-height: 50px;
  width: 200px;
}

.selectnice-custom .nice-select:after {
  border-bottom: 2px solid var(--color-text);
  border-right: 2px solid var(--color-text);
  width: 8px;
  height: 8px;
}

.selectnice-custom .list {
  box-shadow: 4px 4px 23px rgba(145, 170, 205, 0.38);
  width: 100%;
}

.selectnice-custom .list li {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 400;
}

.selectnice-custom .list li.selected {
  font-weight: 400;
  background: transparent !important;
  color: var(--color-secondary);
}

.selectnice-custom .list li+li {
  border-top: 1px solid #d3e1f5;
}

.list--result--items ul {
  padding-left: 0px;
  margin-bottom: 0px;
  list-style-type: none;
}

.list--result--items {
  margin-top: 20px;
}

.list--result--items li {
  display: block;
}

.list--result--items li+li {
  margin-top: 15px;
}

.subject-text-node {
  color: var(--color-primary);
  margin-bottom: 0px;
  line-height: normal;
  font-weight: 500;
  font-size: 16px;
  margin-left: 5px;
}

.subject-calendar-node i {
  margin-right: 5px;
}

.subject-calendar-node {
  color: var(--color-text);
  margin-bottom: 0px;
  line-height: normal;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}

.stage--icon {
  border-radius: 28px;
  display: inline-block;
  text-align: center;
  line-height: normal;
  font-size: 14px;
  font-weight: 500;
}

.qu--pd {
  padding: 8px 30px;
}

.othr--pd {
  padding: 8px 40px;
}

.queue-loader {
  margin-left: 5px;
  position: relative;
  margin-bottom: 2px;
}

.stage--draft {
  color: #fe3f33;
  background: #fcf4f2;
}

.stage--completed {
  color: #49c0a0;
  background: #e7fbf5;
}

.format--message {
  color: #fe3f33;
  font-size: 14px;
  font-weight: 500;
}

.list--result--eachitem {
  background: #fff;
  border: 1px solid #d3e1f5;
  box-shadow: 0px 12px 26px rgba(16, 30, 115, 0.06);
  border-radius: 8px;
  padding: 25px 22px;
}

.preview--button {
  border: 1px solid var(--color-text);
  background: #fff;
  color: var(--color-text);
  border-radius: 4px;
  display: inline-block;
  padding: 7px 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: normal;
  width: 160px;
}

.preview--button:hover {
  background: #fff;
  color: var(--color-text);
}

.preview--button:hover,
.preview--button:focus {
  text-decoration: none;
  outline: none;
}

.preview--button-main {
  width: 200px;
}

.btn--group--theme .btn.btn-secondary {
  background: var(--color-secondary);
  border-radius: 4px;
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  padding-top: 7px;
  padding-bottom: 7px;
  border: 1px solid var(--color-secondary);
}

.qp-options {
  background: none !important;
  border: none !important;
}

.btn--group--theme .btn.btn-secondary:active {
  /* border: 1px solid var(--color-secondary); */
  /* background: var(--color-secondary); */
  box-shadow: none !important;
}

.btn--group--theme .btn.btn-secondary:focus {
  box-shadow: none !important;
}

.btn--group--theme .btn.dropdown-toggle {
  /* background: #40af91; */
  border-radius: 0px 4px 4px 0px;
  padding-left: 5px;
  /* padding-right: 20px; */
}

.btn--group--theme .btn.dropdown-toggle:focus {
  box-shadow: none !important;
}

.btn--group--theme .btn.dropdown-toggle:active,
.btn--group--theme .btn.dropdown-toggle:focus {
  box-shadow: none !important;
  /* background: #40af91; */
}

.btn--group--theme .btn.dropdown-toggle::before {
  content: "\f107";
  transition: 0.2s ease-in-out all;
  border: 0px;
  vertical-align: -0.1em;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 1;
  /* font-family: "Font Awesome 5 Free"; */
  /* font-family: "Font Awesome 5 Brands"; */
  font-family: "Font Awesome 5 Free";
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--group--theme .btn-group.show .btn.dropdown-toggle::before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

.btn--group--theme .dropdown-menu {
  border: 1px solid #d3e1f5;
  box-shadow: 0px 0px 45px rgb(0 0 0 / 11%);
  border-radius: 4px;
  margin-top: 15px;
  padding: 0px;
  left: -120px !important;
}

.btn--group--theme .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent #c4c4c4 transparent;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -22px;
  position: absolute;
  right: 15px;
}

.btn--group--theme .dropdown-menu::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -21px;
  position: absolute;
  right: 15px;
  border-color: transparent transparent #fff transparent;
}

.btn-secondary:hover {
  color: #857e7e !important;
}

.btn--group--theme .dropdown-menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 15px 15px 12px;
  color: var(--color-text);
}

.btn--group--theme .dropdown-menu a+a {
  border-top: 1px solid #d3e1f5;
}

.bg--overlay--top {
  background: var(--color-primary);
  height: 460px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.generate--bg--title {
  max-width: 590px;
  width: 90%;
  margin: 0px auto 92px;
}

.generate--bg--title h3 {
  font-weight: 700;
  font-size: 44px;
  line-height: 52px;
  color: var(--color-white);
  margin-bottom: 0px;
  letter-spacing: -1px;
  text-align: center;
}

.generate--bg--title span {
  color: white;
  text-align: center;
  justify-content: center;
  display: flex;
  margin-top: 5px;
  font-size: 20px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-50 {
  margin-top: 50px;
}

.question-generate-tab-outer {
  box-shadow: 0px 12px 26px rgba(16, 30, 115, 0.06);
  border: 1px solid #d3e1f5;
  background: var(--color-white);
  padding: 20px;
  border-radius: 8px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}

.maxw-820 {
  max-width: 820px;
}

.resize--none {
  resize: none;
}

button[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
}

.navtab--outer .nav.nav-tabs {
  border: 1px solid var(--color-text);
  border-radius: 4px;
  background: var(--color-white);
}

.navtab--outer .nav-tabs .nav-item {
  margin-bottom: 0px;
  flex: 1 0 0;
}

.navtab--outer .nav-tabs .nav-item .nav-link {
  border: 0px;
  border-radius: 0px;
  background-color: transparent;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
}

.navtab--outer .nav-tabs .nav-item .nav-link.active {
  background: var(--color-primary);
  color: var(--color-white);
}

.navtab--outer .nav-tabs .nav-item .nav-link.active-pro {
  background: #ffaa0f !important;
  color: var(--color-white);
}

.navtab--outer .nav-tabs .nav-item+.nav-item .nav-link {
  border-left: 1px solid var(--color-text);
}

.navtab--outer .tab-content {
  margin: 15px auto 0px;
}

.dz-default.dz-message button.dz-button {
  background: #49c0a0;
  border: 0px;
  padding: 8px 24px;
  font-weight: 400;
  color: #fff;
  font-size: 15px;
  border-radius: 4px;
}

.dz-default.dz-message {
  width: 100%;
  height: auto;
  padding: 30px 0px;
  text-align: center;
  background: #f1f7fe;
  border: 1px dashed #526892;
}

.scanned--content {
  color: var(--color-primary);
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 400;
}

.scanned--content>span {
  display: inline-block;
  background: #eaf2fd;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 400;
  line-height: normal;
  border-radius: 15px;
}

.scanned--content>span i {
  margin-right: 3px;
}

textarea:disabled {
  background: #f1f7fe !important;
}

.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.video--content {
  min-height: 120px;
  padding: 15px 10px;
  background: #f1f7fe;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.voideourl--text {
  border: 1px solid #d3e1f5;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  line-height: normal;
  padding: 8px 15px;
  color: var(--color-text);
  margin: 20px auto 0px;
  width: 100%;
  display: block;
}

.voideourl--text:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.section--padding {
  padding: 30px 0px;
}

.section-generated-title {
  font-size: 24px;
  line-height: normal;
  font-weight: 600;
  margin-bottom: 0px;
  color: var(--color-primary);
}

.preview--paper--btn {
  background: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  color: #fff;
  padding: 7px 24px;
  border: 1px solid var(--color-secondary);
  transition: 0.2s ease-in-out all;
}

.preview--paper--btn:focus,
.preview--paper--btn:hover {
  outline: none;
  box-shadow: none;
  /* background: #fff;
    color: var(--color-secondary); */
  opacity: 0.9;
}

.question-wrapper--outer {
  background: #fafcff;
  border-radius: 8px;
  box-shadow: 0px 12px 26px rgba(16, 30, 115, 0.06);
  border: 1px solid #d3e1f5;
  padding: 27px 23px;
  margin-bottom: 30px;
}

.each-question-wrapper-box {
  box-shadow: 4px 4px 23px rgba(145, 170, 205, 0.38);
  border-radius: 4px;
  border: 1px solid #d3e1f5;
  background: #ffffff;
}

.each-question-wrapper-box+.each-question-wrapper-box,
.each-question-wrapper-box-outer+.each-question-wrapper-box-outer {
  margin-top: 25px;
}

.each-question-wrapper-box--body {
  padding: 20px 25px;
}

.each-question-wrapper-box--body>p {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.rate--question {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}

.rate--question>div {
  vertical-align: text-bottom;
  margin-left: 8px;
}

.custom--ol--question ol {
  margin-bottom: 0px;
  padding-left: 20px;
  margin-top: 20px;
}

.custom--ol--question ol li {
  margin-bottom: 0px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-text);
  word-break: break-all;
}

.custom--ol--question ol li.selected {
  color: var(--color-secondary);
}

.card-bootstrap>span.selected {
  color: var(--color-secondary);
}

/* .custom--ol--question ol li.selected-assessment {
  background: #e2ffe2;
  
} */

.custom--ol--question ol li+li {
  margin-top: 15px;
}

.each-question-wrapper-box--footer {
  padding: 0px 20px;
  border-top: 1px solid #d3e1f5;
}

.content--pill--btn {
  font-weight: 500;
  margin-bottom: 0px;
  line-height: normal;
  color: var(--color-primary);
  font-size: 14px;
  border: 0px;
  padding: 11px 10px;
  background: transparent;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

.content--pill--btn:focus {
  outline: none;
}

.content--pill--btn span {
  display: inline-block;
  vertical-align: middle;
  background: #d1e0f6;
  padding: 0px 5px;
  border-radius: 4px;
  text-align: center;
  color: #273256;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  margin-left: 5px;
}

.content--pill {
  padding: 0px 0px;
}

.left-widget-area {
  width: 100%;
  position: relative;
}

.p-10 {
  padding: 10px 0px;
}

.mordern-radiobox-label {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  margin: 5px 0;
  cursor: pointer;
  position: relative;
}

.mordern-radiobox-label input {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.mordern-radiobox-label span.design {
  width: 16px;
  height: 16px;
  border: 2px solid #b7cceb;
  border-radius: 100%;
  margin-right: 5px;
  flex-shrink: 0;
  position: relative;
}

.mordern-radiobox-label input:checked+span.design {
  border-color: var(--color-secondary);
}

.mordern-radiobox-label span.design::before,
.mordern-radiobox-label span.design::after {
  content: "";
  top: -2px;
  left: -2px;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  position: absolute;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.mordern-radiobox-label span.design::before {
  background: var(--color-secondary);
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.mordern-radiobox-label input:checked+span.design::before {
  opacity: 1;
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
}

.mordern-radiobox-label span.design::after {
  background: var(--color-secondary);
  opacity: 0.4;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.mordern-radiobox-label .text {
  color: var(--color-primary);
  display: inline-block;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
}

/* .mordern-radiobox-label > div > div > div {
  color: white;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.mordern-radiobox-label > div > .react-switch-bg {
  border-radius: 8px !important;
}
.mordern-radiobox-label > div > .react-switch-handle {
  border-radius: 25% !important;
} */

.font-0 {
  font-size: 0;
}

.hidden-more-options ol {
  padding-top: 20px;
  border-top: 2px dashed #d1e0f6;
}

.each-question-wrapper-box--footer .mordern-radiobox-label .text {
  font-size: 14px;
}

.each-question-wrapper-box--footer .rate--question {
  font-size: 14px;
}

.each-question-wrapper-box--footer .rate--question>div {
  margin-left: 5px;
}

.content--pill--btn.active {
  background: #f1f7fe;
  border-left: 1px solid #d1e0f6;
  border-right: 1px solid #d1e0f6;
  color: var(--color-secondary);
}

.content--pill--btn.active span {
  background: var(--color-secondary);
  color: #fff;
}

.col-175 {
  max-width: 165px;
  flex: 0 0 165px;
}

.hidden-more-options li {
  background-color: #f1f7fe;
  padding: 6px 10px;
  padding-right: 35px;
  position: relative;
  background-image: url("../img/sortable-bg.png");
  background-position: right 18px center;
  background-repeat: no-repeat;
}

.hidden-more-options li span {
  position: absolute;
  top: 5px;
  right: 15px;
}

.category-widget {
  box-shadow: 0px 12px 26px rgba(16, 30, 115, 0.06);
  border-radius: 8px;
  border: 1px solid #d3e1f5;
  background: #fff;
  padding: 18px;
  margin-bottom: 20px;
}

.category-widget p {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: normal;
  padding-left: 15px;
}

.custom-nav-pills-column .nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: #f1f7fe;
}

.custom-nav-pills-column .nav-pills .nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 18px;
  color: var(--color-primary);
  position: relative;
}

.custom-nav-pills-column .nav-pills .nav-link+.nav-link {
  margin-top: 8px;
}

.custom-nav-pills-column .nav-pills .nav-link span {
  position: absolute;
  right: 15px;
  top: 12px;
  display: inline-block;
  background: #d3e1f5;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  padding: 1px 7px 0px;
  text-align: center;
  border-radius: 4px;
  line-height: normal;
  text-align: center;
}

.add-quetsion--btn {
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white);
  padding: 12px;
  border-radius: 4px;
  transition: 0.2s ease-in-out all;
}

.add-quetsion--btn:focus,
.add-quetsion--btn:hover {
  opacity: 0.9;
  outline: none;
}

.quetsion--edit {
  position: relative;
  padding-left: 50px;
  margin: 15px 0px 15px;
}

.quetsion--edit .quetsion--edit--markquee {
  top: 11px;
}

.quetsion--edit--markquee {
  position: absolute;
  top: 9px;
  left: 0px;
  width: 45px;
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  padding-left: 8px;
}

.quedtion--text--fields {
  padding: 0px;
  border: 0px;
  border-bottom: 1px solid #b7cceb;
  padding: 6px 0px;
  line-height: normal;
  font-size: 16px;
  color: var(--color-primary);
  width: calc(100% - 45px);
  white-space: pre;
}

.editable--questions .quedtion--text--fields {
  font-size: 14px;
  color: var(--color-text);
}

.editable--questions {
  position: relative;
  padding-left: 50px;
  margin: 0px 0px;
}

.editable--questions+.editable--questions {
  margin-top: 15px;
}

.editable--questions .mordern-radiobox-label span.design {
  margin-right: 0px;
}

.quedtion--text--fields:focus {
  outline: none;
  /* border-bottom-color: var(--color-secondary); */
}

.editable-question-submitbox {
  border-top: 1px solid #d3e1f5;
  margin-top: 30px;
  padding: 17px 30px;
}

.w-110 {
  width: 110px;
}

.font--400 {
  font-weight: 400 !important;
}

.font--14 {
  font-size: 14px !important;
}

.custom--tooltip--nobox {
  border: 1px solid #d3e1f5;
  border-radius: 4px;
  padding: 20px;
  height: 200px;
  position: absolute;
  top: 0;
  margin-top: 27px;
  margin-bottom: 50px;
  z-index: 2;
  background: #fff;
  width: 475px;
  right: -89px;
}

/* .mordern-radiobox-label input:checked~.custom--tooltip--nobox {
    display: block;
} */
.what--wrong {
  font-size: 16px;
  margin-left: 3px;
  color: #e12d2d;
  line-height: 0;
}

.videoImg-content {
  position: relative;
}

.videoImg-content img {
  position: absolute;
  top: 9px;
  width: 30px;
  left: 13px;
}

.videoImg-content>input {
  padding-left: 55px;
  margin-top: 0px;
}

.video--content-font label {
  text-align: left;
  font-size: 15px;
  display: block;
  font-weight: 400;
}

.custom--tooltip--nobox .closebtn {
  font-size: 13px;
  border: 0px;
  background: #2b3955;
  color: #fff;
  border-radius: 50%;
  padding: 0px;
  width: 27px;
  height: 27px;
  line-height: 27px;
  text-align: center;
  position: absolute;
  top: -12px;
  right: -12px;
}

.custom--tooltip--nobox .closebtn:focus {
  outline: none;
}

.inside-question-box {
  margin: 0px -15px;
}

.each-question-wrapper-box--body .editable-question-submitbox {
  margin-left: -25px;
  margin-right: -25px;
  padding-bottom: 0px;
}

.descriptive-qs .editable-question-submitbox {
  margin-left: 0px;
  margin-right: 0px;
}

.descriptive-qs .inside-question-box {
  margin: 0px;
  padding: 0px 5px;
}

/* .custom--tooltip--nobox .closebtn i {
    margin-right: 1px;
} */

.custom--tooltip--nobox textarea {
  width: 100%;
  height: 90%;
  background: #f1f7fe;
  border-radius: 4px;
  resize: none;
  padding: 10px;
  position: relative;
  font-size: 16px;
  color: var(--color-primary);
  z-index: 1;
  border: 1px solid #d3e1f5;
}

.comment-save-btn {
  padding: 2px;
  width: 50px;
  float: right;
  margin-top: 5px;
}

.custom--tooltip--nobox textarea:focus {
  outline: none;
}

.custom--tooltip--nobox textarea::placeholder {
  color: var(--color-primary);
}

.custom--tooltip--nobox span::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent #d3e1f5 transparent;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -22px;
  position: absolute;
  right: 120px;
}

.custom--tooltip--nobox span::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -21px;
  position: absolute;
  right: 120px;
  border-color: transparent transparent #fff transparent;
}

.what--text {
  position: relative;
  margin-left: 5px;
}

.what--text:hover {
  cursor: pointer;
}

.what--textbox {
  background: #ffffff;
  border: 1px solid #d3e1f5;
  box-shadow: 4px 4px 23px rgba(145, 170, 205, 0.38);
  border-radius: 4px;
  position: absolute;
  top: 0;
  margin-top: 35px;
  width: 500px;
  padding: 15px;
  right: -20px;
  z-index: 5;
  display: none;
}

.what--text:hover .what--textbox {
  display: block;
}

.what--textbox span::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -21px;
  position: absolute;
  right: 15px;
  /* transform: translateX(-50%); */
  border-color: transparent transparent #fff transparent;
}

.what--textbox span::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent #d3e1f5 transparent;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -22px;
  position: absolute;
  right: 15px;
  /* transform: translateX(-50%); */
}

.what--textbox--content {
  color: var(--color-text);
  line-height: normal;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.what--info--textbox {
  background: #ffffff;
  border: 1px solid #d3e1f5;
  box-shadow: 4px 4px 23px rgba(145, 170, 205, 0.38);
  border-radius: 4px;
  position: absolute;
  top: 0;
  margin-top: 35px;
  width: 300px;
  padding: 15px;
  right: -20px;
  z-index: 5;
  display: none;
}

.what--text:hover .what--info--textbox {
  display: block;
}

.what--info--textbox span::after {
  content: "";
  width: 0;
  height: 0;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -21px;
  position: absolute;
  right: 15px;
  /* transform: translateX(-50%); */
  border-color: transparent transparent #fff transparent;
}

.what--info--textbox span::before {
  content: "";
  width: 0;
  height: 0;
  border-color: transparent transparent #d3e1f5 transparent;
  border-width: 11px;
  border-style: solid;
  display: block;
  top: -22px;
  position: absolute;
  right: 15px;
  /* transform: translateX(-50%); */
}

.each-question-wrapper-box-pagination {
  background: #ffffff;
  border: 1px solid #d3e1f5;
  box-sizing: border-box;
  box-shadow: 0px 12px 26px rgba(16, 30, 115, 0.06);
  border-radius: 4px;
  padding: 12px 25px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.showing-page-results {
  font-size: 14px;
  font-weight: 16px;
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 0px;
}

.page-count-navigation a {
  background: #f1f7fe;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f1f7fe;
  display: inline-block;
}

.prev-navigation a {
  display: inline-block;
  border: 1px solid #d3e1f5;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  line-height: 30px;
  text-align: center;
}

.list-unstyled-pagination {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-end;
}

.next-navigation a {
  display: inline-block;
  border: 1px solid #d3e1f5;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  line-height: 30px;
  text-align: center;
}

.show-pointer {
  cursor: pointer;
}

.list-unstyled-pagination li a:hover,
.list-unstyled-pagination li a:focus {
  text-decoration: none;
  outline: none;
}

.list-unstyled-pagination li+li {
  margin-left: 8px;
}

.editable--questions .quedtion--text--fields::placeholder,
.quedtion--text--fields::placeholder {
  color: rgba(82, 104, 146, 0.6);
}

.maxw-1090 {
  max-width: 1090px;
  width: 90%;
}

.fullbox--question-preview {
  background: #ffffff;
  border: 1px solid #d3e1f5;
  box-shadow: 0px 12px 26px rgba(16, 30, 115, 0.06);
  border-radius: 8px;
  padding: 25px 35px;
  margin-bottom: 35px;
}

.fullbox--question-preview-header {
  border-bottom: 1px solid #b7cceb;
  padding-bottom: 25px;
  margin-bottom: 25px;
  text-align: center;
}

.fullbox--question-preview-body {
  overflow: hidden;
  position: relative;
}

.fullbox--question-preview-header h4 {
  color: var(--color-primary);
  font-size: 30px;
  margin-bottom: 5px;
  line-height: normal;
  font-weight: 600;
}

.fullbox--question-preview-header p {
  color: var(--color-text);
  font-size: 16px;
  margin-bottom: 0px;
  line-height: normal;
  font-weight: 400;
}

.each-question-type--box {
  word-break: break-word;
  padding: 0 4rem;
}

.each-question-type--box+.each-question-type--box {
  margin-top: 50px;
}

.each-question-type--box h6 {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--color-primary);
}

.each-question-type--box h6 span {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
}

.each-question-type--set,
.card-bootstrap .card-body {
  word-break: break-word;
}

.each-question-type--set p {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 13px;
}

.custom--ol--question {
  margin-left: 1.5rem;
}

.each-question-type--set .custom--ol--question li {
  font-size: 16px;
}

.each-question-type--set .custom--ol--question ol {
  margin-top: 0px;
}

.each-question-type--set+.each-question-type--set {
  margin-top: 25px;
}

.each-question-type--box li:hover {
  cursor: default;
}

/* .each-question-type--box {
  max-width: 550px;
} */

.list-group-item-each.highlight {
  background: #f3f3f3;
  padding: 5px 8px;
}

.hidden-more-options-bar {
  border-top: 1px solid #d3e1f5;
  margin-top: 20px;
}

.no-grab li:hover {
  cursor: default;
}

.prep-question-modal .modal-dialog {
  background: #ffffff;
  border: 1px solid #d3e1f5;
  border-radius: 8px;
  padding: 45px;
}

.prep-question-modal .modal-dialog .modal-content {
  border: 0px;
  text-align: center;
}

.prep-question-modal .modal-body h6 {
  font-weight: 400;
  font-size: 24px;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  color: var(--color-text);
  line-height: 34px;
  margin-top: 25px;
}

.show-modal {
  display: block;
}

.progress.modal-theme-pgbar {
  background: #f1f7fe;
  border-radius: 25px;
  height: 13px;
}

.progress.modal-theme-pgbar .progress-bar {
  background: var(--color-secondary);
}

.pgbar-status {
  color: var(--color-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 13px;
}

.complete-pgbar {
  display: flex;
  margin-top: 35px;
}

.complete-pgbar>.modal-theme-pgbar {
  flex-basis: 88%;
}

.complete-pgbar>.pgbar-status {
  flex-basis: 12%;
}

.custom-login-field label.error {
  margin-top: 0.45rem;
  font-size: 12px;
  color: #fe3f33;
  display: block;
}

.theme-checkbox label.error {
  position: absolute;
  bottom: -30px;
  left: -0px;
}

.response-error-text {
  color: #fe3f33;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}

.custom-login-field--inputs.error {
  border-color: #fe3f33;
}

.fa-eye-slash-prep .show-eye {
  display: none;
}

.fa-eye-slash-prep .cut-eye {
  display: inline-block;
}

.resend--text button {
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  padding: 0px;
  border: 0px;
  background: transparent;
}

.resend--text button:focus,
.resend--text button:hover {
  outline: none;
  border: 0px;
}

.btn--group--theme .dropdown-menu a:active {
  background: transparent;
}

.btn-flex100 {
  display: flex;
  /* margin-top: 13px; */
}

/* .btn-flex100 > * {
  /* flex-basis: 100%; */

.btn-flex100>*+* {
  margin-left: 20px;
}

.large-star .ratyli .rate {
  font-size: 19px;
}

.large-star .ratyli .rate+.rate {
  margin-left: 5px;
}

.ratyli .rate.rate-empty {
  color: #d3e1f5;
}

.ratyli .rate.rate-full {
  color: var(--color-secondary);
}

.large-star1 .ratyli1 .rate1 {
  font-size: 25px;
  text-align: center;
}

.large-star1 .ratyli1 .rate1+.rate1 {
  margin-bottom: 20px;
  margin-left: 5px;
  margin-top: 5px;
  margin-right: 5px;
  text-align: center;
}

.ratyli1 .rate.rate-empty1 {
  color: #45b184;
}

.ratyli1 .rate.rate-empty2 {
  margin: 20px;
  font-size: 50px;
}

.ratyli1 .rate.rate-empty3 {
  margin: 5px;
  font-size: 30px;
}

.ratyli1 .rate.rate-full1 {
  color: var(--color-secondary);
}

.large-star1 .ratyli1 .rate.rate-active1 {
  color: var(--color-secondary);
  cursor: pointer !important;
}

.line-height-0 {
  line-height: 0;
}

.line-height-1 {
  line-height: 0;
  text-align: center;
}

.content--pill--btn[aria-expanded="true"] {
  background: #f1f7fe;
  border-left: 1px solid #d1e0f6;
  border-right: 1px solid #d1e0f6;
  color: var(--color-secondary);
}

.content--pill--btn[aria-expanded="true"] span {
  background: var(--color-secondary);
  color: #fff;
}

.custom-dropzone {
  background: #f1f7fe;
  border: 1px dashed #526892;
  border-radius: 8px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropfile--text {
  font-weight: 400;
  line-height: normal;
  text-align: center;
  display: block;
  margin: 10px 0px 0px;
  color: var(--color-text);
}

.finger-pointing-down {
  margin-bottom: 5px;
  animation: bounce 2s infinite;
  height: 30px;
  margin-top: 23px;
  position: relative;
}

.finger-pointing-down::after {
  content: "\1F447";
  font-size: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-20px);
  }

  60% {
    transform: translateY(-15px);
  }
}

.large-star .ratyli .rate.rate-active {
  color: var(--color-secondary);
  cursor: pointer !important;
}

.table--result--items thead {
  display: none;
}

.dataTables_filter,
.dataTables_info {
  display: none;
}

.table--result--items table {
  border: 0px !important;
}

.table--result--items tr {
  background: transparent;
  border: 0px !important;
}

.table--result--items td {
  background: #fff;
  padding: 25px 10px;
  vertical-align: middle;
  border: 0px;
  border-bottom: 1px solid #d3e1f5 !important;
  border-top: 1px solid #d3e1f5 !important;
}

.table--result--items td:nth-child(4) {
  padding-right: 5px;
  text-align: left;
}

.table--result--items td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-left: 1px solid #d3e1f5 !important;
}

.table--result--items td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-right: 1px solid #d3e1f5;
}

.table--result--items table {
  margin-top: -15px !important;
  margin-bottom: 0px;
}

.px-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.table--result--items table {
  border-spacing: 0 20px;
}

.table--result--items table tr:first-child {
  border-spacing: 0px;
}

.cusror-mover li:hover {
  cursor: move;
}

.list-group-item-each.sortable-chosen {
  background: #eef6ff;
}

.sortable-swap-highlight {
  background: #f1f7fe;
  padding: 8px 0px;
}

.box-size {
  width: 80px;
  height: 50px;
}

.svg--icon-1 {
  position: absolute;
  top: 25px;
  bottom: 15px;
  left: 15px;
  display: inline-block;
  z-index: 1;
  line-height: 0;
}

.box-size-number {
  width: 250px;
  height: 50px;
}

.inlineElements {
  display: inline;
}

.modal-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  transform: translateZ(0);
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2.5em 1.5em 1.5em 1.5em;
  background-color: #ffffff;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (min-width: 500px) {

  /* Center the Modal! */
  .modal-area {
    left: 50%;
    top: 50%;
    height: auto;
    transform: translate(-50%, -50%);
    max-width: 30em;
    max-height: calc(100% - 1em);
  }
}

._modal-close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5em;
  line-height: 1;
  background: #f6f6f7;
  border: 0;
  box-shadow: 0;
  cursor: pointer;
}

._modal-close-icon {
  width: 25px;
  height: 25px;
  fill: transparent;
  stroke: black;
  stroke-linecap: round;
  stroke-width: 2;
}

.modal-body {
  padding-top: 0.25em;
}

._hide-visual {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.scroll-lock {
  overflow: hidden;
  margin-right: 17px;
}

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

@media only screen and (min-width: 576px) {}

@media only screen and (min-width: 768px) {}

@media only screen and (min-width: 992px) {}

@media only screen and (min-width: 1200px) {}

.social-login img {
  width: 24px;
}

a {
  text-decoration: none;
}

.card {
  font-family: sans-serif;
  margin: 70px auto;
  width: 400px;
  border-radius: 10px;
  background-color: #ffff;
  padding: 1.8rem;
  box-shadow: 2px 5px 20px rgba(0, 0, 0, 0.1);
  width: 500px;
}

.card-bootstrap {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
  margin-top: 1rem;
}

.new-refer-card {
  height: 22rem;
  width: 15rem;
}

.demo-pricing-title {
  font-size: 44px;
  line-height: 56px;
  letter-spacing: -0.04em;
  padding-top: 70px;
  padding-bottom: 15px;
  color: #08164e;
}

.title {
  text-align: center;
  font-weight: bold;
  margin: 0;
}

.subtitle {
  text-align: center;
  font-weight: bold;
}

.btn-text {
  margin: 0;
}

.social-login {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.google-btn {
  background: #fff;
  border: solid 2px rgb(245 239 239);
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  padding: 10px 10px;
  flex: auto;
  align-items: center;
  gap: 5px;
  justify-content: center;
}

.fb-btn {
  background: #fff;
  border: solid 2px rgb(69, 69, 185);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  align-items: center;
}

.or {
  text-align: center;
  font-weight: bold;
  border-bottom: 2px solid rgb(245 239 239);
  line-height: 0.1em;
  margin: 25px 0;
}

.or span {
  background: #fff;
  padding: 0 10px;
}

.email-login {
  display: flex;
  flex-direction: column;
}

.email-login label {
  color: rgb(133, 116, 116);
}

.email-login1 {
  display: flex;
  flex-direction: column;
}

.email-login1 label {
  color: rgb(133, 116, 116);
}

/*css for login_page_row class*/
.login_page_row {
  margin-left: unset !important;
  margin-right: unset !important;
}

/*css for login_page_row class ends here*/
.loginpage input[type="text"],
.loginpage input[type="password"] {
  padding: 15px 20px;
  margin-top: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-sizing: border-box;
}

.cta-btn {
  background-color: #49c0a0;
  font-weight: bold;
  color: white;
  padding: 18px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  border: none;
}

.cta-btn2 {
  background-color: #263159;
  font-weight: bold;
  color: white;
  padding: 18px 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  width: 100%;
  border-radius: 10px;
  border: none;
}

.forget-pass {
  text-align: center;
  display: block;
  color: #49c0a0;
  font-weight: bold;
}

.center {
  display: block;
  margin-top: 6%;
  width: 75%;
  /* vertical-align: middle; */
  position: relative;
  padding: 0 14%;
}

.heading {
  font-size: 14px;
  color: grey;
  font-weight: 300;
  padding: 12px 14%;
}

.alltext {
  font-size: 14px;
  text-align: center;
}

.freesvg {
  font-weight: bold;
}

.poweredtext svg {
  fill: #263159;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  .heading {
    font-size: 14px;
  }
}

@media only screen and (min-device-width: 481px) and (max-device-width: 1024px) {
  .heading {
    font-size: 15px;
  }
}

/*Country code styling */

/*@import "./common/high-res-flags.less";*/

.react-tel-input .form-control {
  border: 1px solid #d3e1f5;
  border-radius: 4px;
  background: #f1f7fe;
  padding: 12px 50px;
  line-height: normal;
  color: var(--color-primary);
  font-size: 16px;
  height: auto;
  transition: 0.2s ease-in-out all;
}

.react-tel-input :disabled {
  cursor: not-allowed;
}

.react-tel-input:focus {
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.react-tel-input:invalid-number {
  box-shadow: 0 0 0 0.2rem rgba(222, 0, 0, 0.25);
}

.react-tel-input:invalid-number {
  border: 1px solid #f44336;
}

.react-tel-input .flag-dropdown {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  border-radius: 3px 0 0 3px;
}

.react-tel-input .flag-dropdown:hover,
.react-tel-input .flag-dropdown:focus {
  cursor: pointer;
}

.react-tel-input .flag-dropdown:open {
  z-index: 2;
}

/* input[disabled] {
    .flag-dropdown {
      &:hover {
        cursor: default;
        .selected-flag {
          background-color: transparent;
        }
      }
    }
  } */
.react-tel-input .selected-flag {
  outline: none;
  position: relative;
  width: 52px;
  height: 100%;
  padding: 0 0 0 11px;
  border-radius: 3px 0 0 3px;
}

.react-tel-input .selected-flag :before {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 100%;
  border-radius: 4px 2px 2px 4px;
  border: 1px solid transparent;
  transition: box-shadow ease 0.25s, border-color ease 0.25s;
}

.react-tel-input .selected-flag:focus,
.react-tel-input .selected-flag.open .react-tel-input .selected-flag:before {
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.react-tel-input .flag {
  top: 1px;
  width: 25px;
  height: 20px;
  background-image: url("./high-res.png");
  background-repeat: no-repeat;
  display: inline-block;
}

.ad {
  background-position: -48px -24px;
}

.ae {
  background-position: -72px -24px;
}

.af {
  background-position: -96px -24px;
}

.ag {
  background-position: -120px -24px;
}

.ai {
  background-position: -144px -24px;
}

.al {
  background-position: -168px -24px;
}

.am {
  background-position: -192px -24px;
}

.an {
  background-position: -216px -24px;
}

.ao {
  background-position: -240px -24px;
}

.aq {
  background-position: -264px -24px;
}

.ar {
  background-position: -288px -24px;
}

.as {
  background-position: -312px -24px;
}

.at {
  background-position: -336px -24px;
}

.au {
  background-position: -360px -24px;
}

.aw {
  background-position: -384px -24px;
}

.ax {
  background-position: -0px -48px;
}

.az {
  background-position: -24px -48px;
}

.ba {
  background-position: -48px -48px;
}

.bb {
  background-position: -72px -48px;
}

.bd {
  background-position: -96px -48px;
}

.be {
  background-position: -120px -48px;
}

.bf {
  background-position: -144px -48px;
}

.bg {
  background-position: -168px -48px;
}

.bh {
  background-position: -192px -48px;
}

.bi {
  background-position: -216px -48px;
}

.bj {
  background-position: -240px -48px;
}

.bl {
  background-position: -264px -48px;
}

.bm {
  background-position: -288px -48px;
}

.bn {
  background-position: -312px -48px;
}

.bo {
  background-position: -336px -48px;
}

.br {
  background-position: -360px -48px;
}

.bs {
  background-position: -384px -48px;
}

.bt {
  background-position: -0px -72px;
}

.bw {
  background-position: -24px -72px;
}

.by {
  background-position: -48px -72px;
}

.bz {
  background-position: -72px -72px;
}

.ca {
  background-position: -96px -72px;
}

.cc {
  background-position: -120px -72px;
}

.cd {
  background-position: -144px -72px;
}

.cf {
  background-position: -168px -72px;
}

.cg {
  background-position: -192px -72px;
}

.ch {
  background-position: -216px -72px;
}

.ci {
  background-position: -240px -72px;
}

.ck {
  background-position: -264px -72px;
}

.cl {
  background-position: -288px -72px;
}

.cm {
  background-position: -312px -72px;
}

.cn {
  background-position: -336px -72px;
}

.co {
  background-position: -360px -72px;
}

.cr {
  background-position: -384px -72px;
}

.cu {
  background-position: -0px -96px;
}

.cv {
  background-position: -24px -96px;
}

.cw {
  background-position: -48px -96px;
}

.cx {
  background-position: -72px -96px;
}

.cy {
  background-position: -96px -96px;
}

.cz {
  background-position: -120px -96px;
}

.de {
  background-position: -144px -96px;
}

.dj {
  background-position: -168px -96px;
}

.dk {
  background-position: -192px -96px;
}

.dm {
  background-position: -216px -96px;
}

.do {
  background-position: -240px -96px;
}

.dz {
  background-position: -264px -96px;
}

.ec {
  background-position: -288px -96px;
}

.ee {
  background-position: -312px -96px;
}

.eg {
  background-position: -336px -96px;
}

.eh {
  background-position: -360px -96px;
}

.er {
  background-position: -384px -96px;
}

.es {
  background-position: -0px -120px;
}

.et {
  background-position: -24px -120px;
}

.eu {
  background-position: -48px -120px;
}

.fi {
  background-position: -72px -120px;
}

.fj {
  background-position: -96px -120px;
}

.fk {
  background-position: -120px -120px;
}

.fm {
  background-position: -144px -120px;
}

.fo {
  background-position: -168px -120px;
}

.fr {
  background-position: -192px -120px;
}

.ga {
  background-position: -216px -120px;
}

.gb {
  background-position: -240px -120px;
}

.gd {
  background-position: -264px -120px;
}

.ge {
  background-position: -288px -120px;
}

.gg {
  background-position: -312px -120px;
}

.gh {
  background-position: -336px -120px;
}

.gi {
  background-position: -360px -120px;
}

.gl {
  background-position: -384px -120px;
}

.gm {
  background-position: -0px -144px;
}

.gn {
  background-position: -24px -144px;
}

.gq {
  background-position: -48px -144px;
}

.gr {
  background-position: -72px -144px;
}

.gs {
  background-position: -96px -144px;
}

.gt {
  background-position: -120px -144px;
}

.gu {
  background-position: -144px -144px;
}

.gw {
  background-position: -168px -144px;
}

.gy {
  background-position: -192px -144px;
}

.hk {
  background-position: -216px -144px;
}

.hn {
  background-position: -240px -144px;
}

.hr {
  background-position: -264px -144px;
}

.ht {
  background-position: -288px -144px;
}

.hu {
  background-position: -312px -144px;
}

.ic {
  background-position: -336px -144px;
}

.id {
  background-position: -360px -144px;
}

.ie {
  background-position: -384px -144px;
}

.il {
  background-position: -0px -168px;
}

.im {
  background-position: -24px -168px;
}

.in {
  background-position: -48px -168px;
}

.iq {
  background-position: -72px -168px;
}

.ir {
  background-position: -96px -168px;
}

.is {
  background-position: -120px -168px;
}

.it {
  background-position: -144px -168px;
}

.je {
  background-position: -168px -168px;
}

.jm {
  background-position: -192px -168px;
}

.jo {
  background-position: -216px -168px;
}

.jp {
  background-position: -240px -168px;
}

.ke {
  background-position: -264px -168px;
}

.kg {
  background-position: -288px -168px;
}

.kh {
  background-position: -312px -168px;
}

.ki {
  background-position: -336px -168px;
}

.km {
  background-position: -360px -168px;
}

.kn {
  background-position: -384px -168px;
}

.kp {
  background-position: -0px -192px;
}

.kr {
  background-position: -24px -192px;
}

.kw {
  background-position: -48px -192px;
}

.ky {
  background-position: -72px -192px;
}

.kz {
  background-position: -96px -192px;
}

.la {
  background-position: -120px -192px;
}

.lb {
  background-position: -144px -192px;
}

.lc {
  background-position: -168px -192px;
}

.li {
  background-position: -192px -192px;
}

.lk {
  background-position: -216px -192px;
}

.lr {
  background-position: -240px -192px;
}

.ls {
  background-position: -264px -192px;
}

.lt {
  background-position: -288px -192px;
}

.lu {
  background-position: -312px -192px;
}

.lv {
  background-position: -336px -192px;
}

.ly {
  background-position: -360px -192px;
}

.ma {
  background-position: -384px -192px;
}

.mc {
  background-position: -0px -216px;
}

.md {
  background-position: -24px -216px;
}

.me {
  background-position: -48px -216px;
}

.mf {
  background-position: -72px -216px;
}

.mg {
  background-position: -96px -216px;
}

.mh {
  background-position: -120px -216px;
}

.mk {
  background-position: -144px -216px;
}

.ml {
  background-position: -168px -216px;
}

.mm {
  background-position: -192px -216px;
}

.mn {
  background-position: -216px -216px;
}

.mo {
  background-position: -240px -216px;
}

.mp {
  background-position: -264px -216px;
}

.mq {
  background-position: -288px -216px;
}

.mr {
  background-position: -312px -216px;
}

.ms {
  background-position: -336px -216px;
}

.mt {
  background-position: -360px -216px;
}

.mu {
  background-position: -384px -216px;
}

.mv {
  background-position: -0px -240px;
}

.mw {
  background-position: -24px -240px;
}

.mx {
  background-position: -48px -240px;
}

.my {
  background-position: -72px -240px;
}

.mz {
  background-position: -96px -240px;
}

.na {
  background-position: -120px -240px;
}

.nc {
  background-position: -144px -240px;
}

.ne {
  background-position: -168px -240px;
}

.nf {
  background-position: -192px -240px;
}

.ng {
  background-position: -216px -240px;
}

.ni {
  background-position: -240px -240px;
}

.nl {
  background-position: -264px -240px;
}

.no {
  background-position: -288px -240px;
}

.np {
  background-position: -312px -240px;
}

.nr {
  background-position: -336px -240px;
}

.nu {
  background-position: -360px -240px;
}

.nz {
  background-position: -384px -240px;
}

.om {
  background-position: -0px -264px;
}

.pa {
  background-position: -24px -264px;
}

.pe {
  background-position: -48px -264px;
}

.pf {
  background-position: -72px -264px;
}

.pg {
  background-position: -96px -264px;
}

.ph {
  background-position: -120px -264px;
}

.pk {
  background-position: -192px -264px;
}

.pl {
  background-position: -216px -264px;
}

.pn {
  background-position: -240px -264px;
}

.pr {
  background-position: -264px -264px;
}

.ps {
  background-position: -288px -264px;
}

.pt {
  background-position: -312px -264px;
}

.pw {
  background-position: -336px -264px;
}

.py {
  background-position: -360px -264px;
}

.qa {
  background-position: -384px -264px;
}

.ro {
  background-position: -0px -288px;
}

.rs {
  background-position: -24px -288px;
}

.ru {
  background-position: -48px -288px;
}

.rw {
  background-position: -72px -288px;
}

.sa {
  background-position: -96px -288px;
}

.sb {
  background-position: -120px -288px;
}

.sc {
  background-position: -144px -288px;
}

.sd {
  background-position: -168px -288px;
}

.se {
  background-position: -192px -288px;
}

.sg {
  background-position: -216px -288px;
}

.sh {
  background-position: -240px -288px;
}

.si {
  background-position: -264px -288px;
}

.sk {
  background-position: -288px -288px;
}

.sl {
  background-position: -312px -288px;
}

.sm {
  background-position: -336px -288px;
}

.sn {
  background-position: -360px -288px;
}

.so {
  background-position: -384px -288px;
}

.sr {
  background-position: -0px -312px;
}

.ss {
  background-position: -24px -312px;
}

.st {
  background-position: -48px -312px;
}

.sv {
  background-position: -72px -312px;
}

.sy {
  background-position: -96px -312px;
}

.sz {
  background-position: -120px -312px;
}

.tc {
  background-position: -144px -312px;
}

.td {
  background-position: -168px -312px;
}

.tf {
  background-position: -192px -312px;
}

.tg {
  background-position: -216px -312px;
}

.th {
  background-position: -240px -312px;
}

.tj {
  background-position: -264px -312px;
}

.tk {
  background-position: -288px -312px;
}

.tl {
  background-position: -312px -312px;
}

.tm {
  background-position: -336px -312px;
}

.tn {
  background-position: -360px -312px;
}

.to {
  background-position: -384px -312px;
}

.tr {
  background-position: -0px -336px;
}

.tt {
  background-position: -24px -336px;
}

.tv {
  background-position: -48px -336px;
}

.tw {
  background-position: -72px -336px;
}

.tz {
  background-position: -96px -336px;
}

.ua {
  background-position: -120px -336px;
}

.ug {
  background-position: -144px -336px;
}

.us {
  background-position: -168px -336px;
}

.uy {
  background-position: -192px -336px;
}

.uz {
  background-position: -216px -336px;
}

.va {
  background-position: -240px -336px;
}

.vc {
  background-position: -264px -336px;
}

.ve {
  background-position: -288px -336px;
}

.vg {
  background-position: -312px -336px;
}

.vi {
  background-position: -336px -336px;
}

.vn {
  background-position: -360px -336px;
}

.vu {
  background-position: -384px -336px;
}

.wf {
  background-position: -0px -360px;
}

.ws {
  background-position: -24px -360px;
}

.ye {
  background-position: -48px -360px;
}

.za {
  background-position: -96px -360px;
}

.zm {
  background-position: -120px -360px;
}

.zw {
  background-position: -144px -360px;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

.hide {
  display: none;
}

.v-hide {
  visibility: hidden;
}

.react-tel-input .arrow {
  position: relative;
  top: 50%;
  margin-top: -1px;
  left: 29px;
  width: 0;
  height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #555;
}

.react-tel-input .arrow:up {
  border-top: none;
  border-bottom: 4px solid #555;
}

.react-tel-input .country-list {
  outline: none;
  z-index: 999;
  list-style: none;
  position: absolute;
  padding: 0;
  margin: 10px 0 10px -1px;
  box-shadow: 1px 2px 18px rgba(0, 0, 0, 0.25);
  background-color: #f1f7fe;
  width: 300px;
  max-height: 220px;
  overflow-y: scroll;
  border-radius: 7px;
}

.react-tel-input .country-list:flag {
  display: inline-block;
  position: absolute;
  left: 13px;
  top: 8px;
}

.react-tel-input .divider {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.react-tel-input .country {
  position: relative;
  padding: 5px 10px 5px 15px;
}

.react-tel-input .country:dial-code {
  color: #6b6b6b;
}

.react-tel-input .country:hover {
  background-color: #f1f1f1;
}

.react-tel-input .country:highlight {
  background-color: #f1f1f1;
}

.react-tel-input .flag {
  margin-right: 2px;
  margin-top: 14px;
}

.react-tel-input .country-name {
  margin-right: 6px;
}

.react-tel-input .search {
  z-index: 2;
  position: sticky;
  top: 0;
  background-color: #fff;
  padding: 10px 0 6px 10px;
}

.react-tel-input .search-emoji {
  display: none;
  font-size: 15px;
}

.react-tel-input .search-box {
  border: 1px solid #cacaca;
  border-radius: 3px;
  font-size: 15px;
  line-height: 15px;
  margin-left: 6px;
  padding: 3px 8px 5px;
  outline: none;
}

.react-tel-input .no-entries-message {
  padding: 7px 10px 11px;
  opacity: 0.7;
}

.react-tel-input .invalid-number-message {
  position: absolute;
  z-index: 1;
  font-size: 13px;
  left: 25px;
  top: -7px;
  background: #fff;
  padding: 0 5px;
  color: #de0000;
}

.react-tel-input .special-label {
  display: none;
  position: absolute;
  z-index: 1;
  font-size: 13px;
  left: 25px;
  top: -7px;
  background: #fff;
  padding: 0 5px;
  white-space: nowrap;
}

.sweet-alert {
  width: 850px !important;
}

.instruction-points {
  text-align: left;
  font-size: 20px;
  padding: 5px;
  word-spacing: 5px;
}

.referral-box {
  width: 80%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d3e1f5;
  border-radius: 0.25rem;
}

.referral-button {
  text-align: center;
  background: #17a2b0;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: auto;
  border: 1px solid #17a2b8;
  color: var(--color-white);
  border-radius: 4px;
}

.referral-div {
  margin-top: 50px;
  margin-left: 330px;
  display: flex;
}

.free-gold-plan-div {
  margin-top: 30px;
}

.free-gold-plan-headings {
  text-align: center;
  margin-top: 50px;
}

.rating-outer-div {
  position: absolute;
  z-index: 10;
}

.emoji {
  color: #bdbebf;
  margin: 20px;
  font-size: 50px;
  cursor: pointer;
}

.emoji-scale:hover .highlight {
  color: #45b184;
}

.highlight-emoji {
  color: #45b184;
}

.emoji-scale .describeEmoji {
  visibility: hidden;
  top: 190px;
  width: 92px;
  color: #190202;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
}

.emoji-scale:hover .describeEmoji {
  visibility: visible;
}

.styleEmoji {
  color: #bdbebf;
  margin: 5px;
  font-size: 30px;
}

.display-inline {
  display: inline-flex;
}

.rating-1 {
  color: #45b184;
}

.word-break {
  word-break: break-all;
}

.input-required {
  border-bottom: 1px solid #ff0505;
}

/*loginpage css here*/
.left-blog-container {
  right: -10%;
  max-width: 470px;
  /* width: 500px; */
  background: #fff;
  position: relative;
  /* top: 56%; */
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  display: grid;
  grid-template-rows: 150px auto;
  max-height: 600px;
  /* transform: translate(0,-50%); */
  --ms-transform: translate(-50%, -50%);
  /* width: 90%; */
  margin-top: 3%;
  height: 558px;
  margin: 70px 50px;
}

.loginformright {
  left: 3%;
}

.loginblogdetails h2 {
  display: none;
  color: #03a84e;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  /* text-align: center; */
  font-size: 18px;
  /* margin-bottom: 0; */
  padding: 0 11%;
}

.loginblogdetails a.loginblogtitle {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  color: inherit;
  line-height: 25px;
  text-decoration: none;
  font-family: Lato, Arial, sans-serif;
}

.loginblogcontent {
  color: #3f4547;
  font-size: 13px;
  line-height: 18px;
}

.learn_more_link a {
  color: #03a84e !important;
  font-size: 13px;
  text-decoration: underline;
}

/*
.loginblogdetails {
  display: none;
}
.loginformright {
  left: unset !important;
}

.left-blog-container {
  right: unset;
  max-width: unset;
} */
/*logipage css ends here*/

.instructions {
  cursor: pointer;
  font-size: x-large;
  color: #366099;
  margin-top: 10px;
}

.home_wrapper {
  /*padding: 140px 0 70px;*/
  padding: 60px 0 120px;
}

.title {
  font-weight: bold;
  font-size: 44px;
  line-height: 56px;
  letter-spacing: -0.04em;
  padding-bottom: 36px;
  color: #08164e;
}

.second_title {
  font-weight: normal;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 48px;
  color: #4a596a;
}

.third_title {
  font-weight: normal;
  font-size: 18px;
  line-height: 58px;
  margin-bottom: 48px;
  color: #4a596a;
}

.mt_80 {
  margin-top: 80px;
}

.button {
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  transition: 0.3s;
  min-width: 128px;
  height: 48px;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  line-height: 48px;
  letter-spacing: 0.5px;
  background: #49bfa1;
  border-radius: 50px;
  border: 1px solid transparent;
  margin-top: 10px;
}

.button:hover {
  text-decoration: none;
  color: #ffffff;
  background: #263159;
}

.button.v2 {
  text-align: center;
  display: inline-block;
  text-transform: capitalize;
  transition: 0.3s;
  min-width: 158px;
  height: 48px;
  color: #ffffff;
  font-weight: 400;
  font-size: 15px;
  line-height: 48px;
  letter-spacing: 0.5px;
  background: #49bfa1;
  border-radius: 50px;
  border: 1px solid transparent;
  margin-top: 10px;
}

/*a:hover{
    text-decoration: none;
	color:#ffffff;
}*/
.home_ab {
  position: absolute;
  z-index: -1;
}

.home_left {
  /*left: 160px;*/
  left: -30px;
  top: 20px;
}

.home_right {
  /*right: 160px;*/
  right: -30px;
  top: 20px;
}

.theme_bg {
  background: #fafafd;
}

/*.step_join_area.section_padd{
	padding: 60px 0 75px;
    margin-bottom: 60px;
}*/
.step_join_area.section_padd .container {
  background: #263159;
  padding: 80px 0;
}

.step_join_area.section_padd .title_two {
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #fff;
}

.title_two.v1 {
  margin-bottom: 50px;
}

.mb_48 {
  margin-bottom: 48px;
}

.main_step_join {
  position: relative;
  padding: 0px 0;
}

.main_step_join:before {
  content: "";
  width: 0px;
  height: 91%;
  border: 1px solid #08164e;
  border-style: dashed;
  background: #c5cddc;
  position: absolute;
  top: 9%;
  left: 50%;
}

.main_step_join .step_join_box {
  width: 50%;
  clear: both;
  position: relative;
}

.step_join_box .step_join_icon {
  position: absolute;
  top: 120px;
  right: -14px;
  z-index: 1;
}

.step_join_box .step_join_content {
  width: calc(100% - 60px);
  padding: 30px 33px 33px 33px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0px 94px 118px rgb(129 144 173 / 9%);
  box-shadow: 0px 94px 118px rgb(129 144 173 / 9%);
  border-radius: 12px;
  background: #ffffff;
}

.mt-0 {
  margin-top: 0px;
}

.join_head {
  margin-bottom: 16px;
}

.join_head h4 {
  /*  font-family: CircularStd-Book;*/
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: inline-block;
  color: #49bfa1;
}

.free {
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  background: #ebfbf7;
  border-radius: 2px;
  color: #30d1a6;
  margin-left: 12px;
  padding: 2px 9px;
  display: inline-block;
}

.step_join_content p {
  font-weight: normal;
  font-size: 16px;
  color: #4a596a;
}

.main_step_join .step_join_box:nth-child(2n),
.main_step_join .step_join_box:nth-child(2n) .step_join_content {
  float: right;
  text-align: left;
}

.main_step_join .step_join_box:nth-child(2n) .step_join_icon {
  position: absolute;
  top: 120px;
  z-index: 1;
  left: -10px;
}

.step_img img {
  margin-bottom: 24px;
}

.step_img img.f-right {
  margin-right: 15px;
  margin-top: 22px;
}

.f-right {
  float: right;
}

.faq_wrapper {
  padding-bottom: 80px;
}

.title_two {
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #2b3d53;
}

.title_two.v2 {
  margin: 60px 0 40px;
}

.faq_wrapper .card {
  background-color: #fff;
  border-radius: 4px !important;
  border: none;
  color: #2b3d53;
  width: unset;
  margin-top: unset;
  margin-bottom: 1em;
  padding: unset;
  /*	box-shadow: 2px 2px 0px rgb(0 0 0 / 10%);*/
  box-shadow: 1px 1px 3px rgb(0 0 0 / 12%);
}

.faq_wrapper .card-header {
  background: #fff;
  border-radius: 4px;
  border: none;
  padding: 0;
}

.faq_wrapper .card .card-body {
  font-size: 14px;
}

.faq_wrapper .card-header button {
  width: 100%;
  padding: 0;
  text-align: left;
  font-size: 16px;
  padding: 0.75rem 1.25rem;
}

.faq_wrapper .card-header button p {
  margin-bottom: 0;
  font-size: 16px;
}

.faq_wrapper .card-header img {
  --webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 24px;
  float: right;
  position: absolute;
  top: 20px;
  right: 25px;
  width: 12px;
}

.subscribe_area {
  height: 200px;
  background-repeat: no-repeat;
  background: #08164e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-image: url(img/subscribe_bg.svg);
}

/*.mt_120 {
    margin-top: 120px;
}*/
.subscribe_box {
  font-weight: 500;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #ffffff;
  position: relative;
}

.subscribe_box h3 {
  margin-bottom: 36px;
  color: #fff;
}

.subscribe_input {
  position: relative;
}

.subscribe_input input[type="email"] {
  font-weight: normal;
  font-size: 16px;
  color: #4a596a;
  border: 2px solid #e8ebf1;
}

.subscribe_input input {
  width: 404px;
  height: 48px;
  border: none;
  border-radius: 2px;
  background: #ffffff;
  border: 1px solid rgba(197, 205, 220, 0.4);
  padding-left: 20px;
}

.mr_25 {
  margin-right: 25px;
}

.faq_wrapper .card-header button:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mt_10 {
  margin-top: 10px;
}

.faq_wrapper .card .card-body {
  font-size: 16px;
  line-height: 1.8em;
}

@media (max-width: 767px) {
  .home_ab {
    display: none;
  }

  .main_step_join:before {
    display: none;
  }

  .main_step_join .step_join_box {
    width: 100%;
    margin: 17px;
  }

  .step_join_box .step_join_icon {
    display: none;
  }

  .main_step_join .step_join_box:nth-child(2n) {
    float: unset;
  }

  .main_step_join .step_join_box:nth-child(2n) .step_join_content {
    float: unset;
  }

  .step_join_box .step_join_content {
    width: calc(100% - 35px);
  }

  .faq_wrapper .card .card-body {
    font-size: 15px;
  }

  .faq_wrapper .card-header button p {
    font-size: 15px;
  }
}

.referal-page {
  margin-top: 60px;
}

.referral-code {
  width: 80%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  outline: none;
}

/*Tooltip for plans limit*/
.tool-tip {
  position: relative;
  display: inline-block;
  margin-left: 3px;
}

.tool-tip .tooltiptext {
  visibility: hidden;
  background-color: #08164e;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  top: -5px;
  width: 100px;
  right: 10px;
}

.tool-tip:hover .tooltiptext {
  visibility: visible;
}

.tool-tip-icon {
  cursor: pointer;
  font-size: small;
  color: #366099;
}

#qustn_tooltip {
  font-size: 11px;
  color: #43bea1;
  cursor: pointer;
}

/* notification */
.notification {
  cursor: pointer;
  font-size: x-large;
  color: #343a40;
  margin-top: 10px;
}

.style-badge {
  background-color: #eb2f06;
  margin-top: -5px;
  margin-left: 13px;
}

.beamerLoader {
  width: 60vh;
  position: fixed;
  height: -webkit-fill-available;
  background-position: center;
  background-size: 200px;
  background-repeat: no-repeat;
  right: 0;
  background-color: #fff;
  border-style: solid;
  border-width: thin;
  border-bottom: 1px solid #e5e5e5;
  border-color: #e3e3e3;
  overflow-y: scroll;
  overflow-x: hidden;
}

/* Removed scrollbar of notification bar */
.beamerLoader::-webkit-scrollbar {
  display: none;
}

.header {
  min-height: 56px;
  border-color: #e3e3e3;
  background: #fff;
  z-index: 100;
  position: sticky;
  top: 0;
  height: 50px;
  padding: 12px 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16px;
  display: flex;
  justify-content: space-between;
}

.header_option {
  padding: 0 12px;
  height: 40px;
  border-bottom: 4px solid transparent;
  transition: all 0.2s;
}

.newer_requests {
  font-size: 12px;
  background-color: #c41717;
  color: white;
  padding: 4px 5px;
  border-radius: 50%;
  margin: 0 0 8px 5px;
}

.requests {
  display: flex;
  align-items: center;
}

.header_option-active,
.header_option:hover {
  border-bottom: 4px solid rgb(46, 80, 122);
}

.notify-link {
  cursor: pointer;
}

.notify-link:hover,
.notify-active {
  color: rgb(46, 80, 122);
}

/* Feature Requests */
.feature_requestBox {
  display: flex;
  /* align-items: center; */
  padding: 0.7rem 1rem;
}

.feature_header {
  margin-top: 0.5rem;
}

.feature_votes {
  margin-right: 10px;
}

.circle {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
}

.progress_circle {
  background-color: #ec5a16;
}

.pending_circle {
  background-color: gray;
}

.completed_circle {
  background-color: #1da75b;
}

.votes {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.request__btn {
  margin-top: 15px !important;
  width: 100%;
  padding: 10px !important;
  outline: none !important;
  background-color: #242a46 !important;
  font-weight: 600 !important;
}

.feature__text {
  font-size: 91%;
  line-break: anywhere;
}

.feature__content {
  margin-top: 0.8rem;
}

.feature__num {
  font-size: 75%;
}

.notif-content {
  display: block;
  padding: 15px;
  border-bottom: 1px solid #f6f7f8;
  position: relative;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}

.notif-header {
  font-size: large;
}

.notif-msg {
  color: #000;
  line-height: 18px;
}

.notif-date {
  display: block;
  margin-top: 8px;
  color: #666;
}

.notify-tile-color {
  background-color: #e9ecef;
}

.close-btn {
  margin-left: 40%;
  color: red;
  cursor: pointer;
}

.notify-tool-tip {
  position: relative;
  display: inline-block;
}

.notify-tool-tip .hoverText {
  visibility: hidden;
  background-color: #08164e;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  top: 28px;
  width: 140px;
}

.notify-tool-tip:hover .hoverText {
  visibility: visible;
}

.no-notify-found {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 50% 50% 0 50%;
}

.bell {
  font-size: 70px;
  color: #dee2e6;
}

/* Premium Prompt Messages */
.style-text {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  overflow-wrap: break-word;
}

/*Register page asteric symbol styling*/
.required {
  color: red;
}

.toast-main {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.7);
  z-index: 10;
}

.toast-main .toast {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

/* Style prepAI logo */
.style-logo {
  margin-top: -15px;
}

/* Plan text below PrepAI logo */
.premium {
  position: absolute;
  margin-top: 30px;
  margin-left: 62px;
  font-size: small;
  color: #ffaa0f;
}

.basic {
  position: absolute;
  margin-top: 30px;
  margin-left: 87px;
  font-size: small;
  color: #7e7d7d;
}

/*social media css*/
.socialbutton a {
  color: #263159;
}

.socialsection {
  display: grid;
  place-items: center;
}

.socialbutton {
  float: left;
  width: 60px;
  height: 60px;
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  padding-right: 10px;
  color: #263159;
  margin-right: 9px;
}

.socialbutton span {
  font-size: 20px;
  font-weight: 500;
  line-height: 60px;
  margin-left: 10px;
}

.socialbutton:hover {
  width: 200px;
  /* width: 60px; */
}

.socialbutton:nth-child(1):hover .icon {
  background: #128c7e;
}

.socialbutton:nth-child(2):hover .icon {
  background: #4267b2;
}

.socialbutton:nth-child(3):hover .icon {
  background: #1da1f2;
}

.socialbutton:nth-child(4):hover .icon {
  background: #0e76a8;
}

.socialbutton:nth-child(5):hover .icon {
  background: #bd1414;
}

.socialbutton:nth-child(6):hover .icon {
  background: #333;
}

.socialbutton:nth-child(1) span {
  color: #128c7e;
}

.socialbutton:nth-child(2) span {
  color: #4267b2;
}

.socialbutton:nth-child(3) span {
  color: #1da1f2;
}

.socialbutton:nth-child(4) span {
  color: #0e76a8;
}

.socialbutton:nth-child(5) span {
  color: #bd1414;
}

.socialbutton:nth-child(6) span {
  color: #333;
}

.socialbutton .icon {
  width: 60px;
  height: 60px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.socialbutton .icon i {
  font-size: 25px;
  line-height: 60px;
  transition: all 0.3s ease-in-out;
}

.socialbutton:hover i {
  color: #fff;
}

#referraltopbutton {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.2 !important;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0em;
  border-radius: 2.3em;
  padding: 0.8em 1.9em;
  background: #263159;
  border-color: transparent;
  color: #ffffff !important;
  box-shadow: 0 0em 0em rgb(0 0 0 / 20%);
  transition-duration: 0.4s;
}

#referraltopbutton:hover {
  background-color: #49bfa1;
}

/*referal page ends here*/

#free-dialog-box {
  background-color: rgba(255, 255, 255, 0.9) !important;
}

.cancel-subscription-btn {
  background: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  color: #fff;
  padding: 7px 24px;
  border: 1px solid var(--color-secondary);
  transition: 0.2s ease-in-out all;
}

.step_join_box .freesection {
  padding: 33px 10px 31% 10px;
}

.socialtxt {
  font-size: 15px;
  color: #fff;
  padding-left: 10px;
}

.popupbtn .us-btn-style_3 {
  background: #263159;
}

.step_join_box .referrallinksection {
  padding: 33px 10px 29px 10px;
}

.step_join_box .limitsection {
  padding: 33px 10px 34px 10px;
}

.step_join_box .spreadsection {
  padding: 33px 10px 33px 10px;
}

.step_img .step3img {
  margin-bottom: 15px;
}

.step_img .step4img {
  margin-bottom: 17px;
}

.step_img .step1img {
  margin-bottom: 33px;
}

.unlimitedruns:before {
  content: " ";
  width: 11.5%;
  line-height: 1;
  display: block;
  text-align: center;
  position: absolute;
  height: 0.5em;
  background-color: yellow;
  top: 48%;
  font-size: 1em;
  font-weight: 900;
  /*z-index: -1;*/
  margin-left: 0;
  right: 58.5%;
  justify-content: center;
  align-items: center;
}

.freerunreferal .us-btn-style_4 {
  padding: 0.8em 2.9em;
}

.mb_48 {
  margin-bottom: 48px;
}

.actionbtnclass .w-actionbox-controls {
  padding-top: 0rem !important;
}

.faqaccordion h3 {
  text-align: left;
  font-size: 16px;
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  background-color: #fff;
  border: none;
  color: #2b3d53;
  width: unset;
  margin-top: 15px;
  box-shadow: 1px 1px 3px rgb(0 0 0 / 12%) !important;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.faqaccordion .mega-panel {
  background-color: rgb(255, 255, 255);
  border-style: unset !important;
  border-bottom-left-radius: 4px;
  color: rgb(43, 61, 83);
  width: unset;
  margin-bottom: 1em;
  box-shadow: rgb(0 0 0 / 12%) 1px 1px 3px;
  border-bottom-right-radius: 4px;
}

.main_step_join {
  position: relative;
  padding: 0px 0;
  /* width: 300px; */
}

.main_step_join .step_join_box {
  clear: both;
  position: relative;
  width: 100%;
}

.step_join_box .step_join_icon {
  position: absolute;
  top: 120px;
  right: -14px;
  z-index: 1;
}

.step_join_box .step_join_content {
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-shadow: 0px 94px 118px rgb(129 144 173 / 9%);
  box-shadow: 0px 94px 118px rgb(129 144 173 / 9%);
  border-radius: 12px;
  background: #ffffff;
}

.mt-0 {
  margin-top: 0px;
}

.join_head {
  margin-bottom: 16px;
}

.join_head h4 {
  font-style: normal;
  font-weight: 450;
  font-size: 18px;
  letter-spacing: -0.02em;
  display: inline-block;
  color: #49bfa1;
}

.free {
  font-weight: normal;
  font-size: 12px;
  line-height: 15px;
  background: #ebfbf7;
  border-radius: 2px;
  color: #30d1a6;
  margin-left: 12px;
  padding: 2px 9px;
  display: inline-block;
}

.step_join_content p {
  font-weight: normal;
  font-size: 15px;
  color: #4a596a;
}

.main_step_join .step_join_box:nth-child(2n),
.main_step_join .step_join_box:nth-child(2n) .step_join_content {
  float: right;
  text-align: left;
}

.main_step_join .step_join_box:nth-child(2n) .step_join_icon {
  position: absolute;
  top: 120px;
  z-index: 1;
  left: -10px;
}

.step_img img {
  margin-bottom: 24px;
  display: initial;
}

.step_img img.f-right {
  margin-right: 15px;
  margin-top: 22px;
}

.f-right {
  float: right;
}

.faq_wrapper {
  padding-bottom: 80px;
}

.title_two {
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: #2b3d53;
}

.title_two.v2 {
  margin: 60px 0 40px;
}

.faq_wrapper .card {
  background-color: #fff;
  border-radius: 4px !important;
  border: none;
  color: #2b3d53;
  width: unset;
  margin-top: unset;
  margin-bottom: 1em;
  padding: unset;
  /*	box-shadow: 2px 2px 0px rgb(0 0 0 / 10%);*/
  box-shadow: 1px 1px 3px rgb(0 0 0 / 12%);
}

.referrals-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1.5rem auto;
  /* padding: 1rem; */
  overflow-x: hidden;
  background-color: #49bfa1;
  /* margin-left: -121px; */
  /* padding: 50px 100px; */
}

.referrals-section h1 {
  color: #fff;
  text-align: center;
  font-size: 2.15rem;
  font-weight: 300;
  margin: 30px 0px;
  color: #49bfa1;
}

.referrals-section .referral-cards {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}

.referrals-section .referral-cards .referral-card {
  width: 280px;
  height: 380px;
  background-color: #fff;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}

.referrals-section .referral-cards .referral-card .referral-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  width: 80%;
}

.referrals-section .referral-cards .referral-card .referral-card-header .referral-steps {
  width: 25px;
  height: 50px;
  margin-top: 30px;
}

.row .referral-steps {
  width: 30px;
  height: 50px;
  margin-left: 80%;
}

.referrals-section .referral-cards .referral-card .referral-card-header .card-icon {
  margin-top: 20px;
}

.referrals-section .referral-cards .referral-card .referral-card-body {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-left: -50px;
}

/* .referrals-section .referral-cards .referral-card .referral-card-body h4 {
  font-size: 1rem;
  color: #49bfa1;
} */

.referral-card-body h4 {
  font-size: 1rem;
  color: #49bfa1;
  margin-bottom: 10%;
  margin-top: 20px;
}

.referral-card-body p {
  font-size: 0.85rem;
  /* text-align: justify; */
  /* color: red; */
}

.referrals-section .referral-cards .referral-card .referral-card-body p {
  font-size: 0.85rem;
}

.demo-content-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* <<<<<<< HEAD */
.filter__box.MuiFormGroup-root {
  width: 60% !important;
  margin: auto;
}

.filterOptions {
  display: flex;
  width: 80%;
  margin: 0.25rem auto;
  /* flex-direction: column; */
}

.filter__heading {
  color: var(--color-primary);
}

.filter__subheading {
  text-align: left;
  margin: 1rem 0 1rem 5rem;
}

span.MuiTypography-root.MuiTypography-body1.MuiFormControlLabel-label.css-ahj2mt-MuiTypography-root {
  font-family: "Poppins", sans-serif !important;
}

.btn-primary {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary);
  box-shadow: 0px 2px 7px 0px rgba(0, 0, 0, 0.24);
}

.btn-link {
  color: var(--color-text);
  border: 1px solid transparent;
}

.btn-link:hover {
  color: var(--color-text);
  text-decoration: none;
  border-color: var(--color-primary);
}

.filter {
  position: relative;
  flex: 0.1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter_count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(207, 25, 25);
  color: white;
  margin-left: 12px;
  padding: 5px;
  height: 20px;
  width: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* 
@media (min-width: 1400px) {
  .referrals-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
    background-color: #49bfa1;
    margin-left: -121px; 
    padding: 50px 100px;
  }
} */
/* >>>>>>> 233fbb30bcedf978fda2e13c67a62e5cba493dcf */

.selected_filters {
  display: flex;
  margin: 1rem 0.25rem;
}

.selected_filter {
  margin-right: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: rgb(163, 163, 163);
  font-size: 70%;
  color: white;
  cursor: pointer;
}

.video--content,
#wikiContent,
#contentForQuestions {
  margin-bottom: 1.5rem;
}

.btn-flex100>button {
  flex: 1;
}

.check__row {
  display: flex;
  align-items: center;
  margin-right: 2.5rem;
}

.check__row--text {
  width: 80%;
  font-size: 16px;
  font-weight: normal;
  margin-right: 12px;
  text-align: left;
}

.notify-bell {
  position: relative;
}

.notify-bell>i {
  background-color: white;
}

.notify-new-icon {
  position: absolute;
  top: -7px;
  right: -22px;
  background-color: rgb(248, 33, 4);
  color: white;
  font-size: 65%;
  padding: 4px;
  text-align: center;
  border-radius: 0.5rem;
}

/* Adding responsiveness to Refer-Prepai  */

@media screen and (max-width: 768px) {
  .new-refer-card {
    width: 22rem !important;
    height: unset !important;
  }
}

.balance-container {
  width: 75%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-left: 11px;
}

.balance-container .balance-amount {
  background-color: #f8fbfc;
  border-radius: 10px;
  padding: 10px 10px;
}

/* .balance-information {
} */

.balance-information .referral-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5rem;
  background-color: #f8fbfc;
  padding: 30px 20px;
  border-radius: 10px;
}

.balance-information .referral-info p {
  /* #9bcd77 */
  color: #9bcd77;
  font-weight: 460;
}

.balance-container .balance-amount p {
  font-weight: 400;
  font-size: 13px;
}

.balance-container .balance-amount h3 {
  font-weight: 300;
}

/* Address form css */
.show-message {
  color: red;
  font-size: medium;
}

@media screen and (min-width: 769px) and (max-width: 992px) {
  .new-refer-card {
    width: 17rem !important;
  }
}

@media screen and (min-width: 993px) and (max-width: 1200px) {
  .new-refer-card {
    width: 22rem !important;
  }
}

/* Referral Popup */
.referral__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.content__email {
  background-color: rgb(211, 211, 211);
  /* padding: 0.25rem; */
}

.content__email>input {
  background: none;
  outline: none;
  border: none;
  padding: 0.5rem;
}

.content__email>button,
.referral__invite {
  background-color: rgba(155, 155, 155, 0.6);
  outline: none;
  border: none;
  padding: 0.5rem;
}

.referral__invite {
  background-color: rgb(236, 213, 147);
  padding: 0.5rem 0.7rem;
}

.close__link {
  margin-top: 2.5rem;
  text-decoration: underline;
  cursor: pointer;
  font-size: 80%;
  color: rgb(5, 79, 190);
}

.MuiDialogActions-root {
  justify-content: center !important;
  -webkit-justify-content: center !important;
}

.close__referral {
  position: absolute;
  top: 5px;
  right: 9px;
}

.line {
  position: absolute;
  top: 3.5rem;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: rgb(167, 167, 167, 0.4);
}

.helper {
  font-size: 80%;
  position: absolute;
  bottom: 3.5rem;
}

.referral-info>p {
  margin: 0;
}

/* Start of Register Page */

/* @extend display-flex; */

.registerForm .booking-content {
  display: flex;
  display: -webkit-flex;
}

.registerForm ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins/poppins-v5-latin-300.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Light"), local("Poppins-Light"),
    url("../fonts/poppins/poppins-v5-latin-300.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-300.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-300.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-300.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-300.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-300italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  src: url("../fonts/poppins/poppins-v5-latin-300italic.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Light Italic"), local("Poppins-LightItalic"),
    url("../fonts/poppins/poppins-v5-latin-300italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-300italic.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-300italic.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-300italic.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-300italic.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins/poppins-v5-latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Regular"), local("Poppins-Regular"),
    url("../fonts/poppins/poppins-v5-latin-regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-regular.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-regular.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-regular.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-regular.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/poppins/poppins-v5-latin-italic.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Italic"), local("Poppins-Italic"),
    url("../fonts/poppins/poppins-v5-latin-italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-italic.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-italic.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-italic.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-italic.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins/poppins-v5-latin-500.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Medium"), local("Poppins-Medium"),
    url("../fonts/poppins/poppins-v5-latin-500.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-500.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-500.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-500.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-500.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-500italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/poppins/poppins-v5-latin-500italic.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Medium Italic"), local("Poppins-MediumItalic"),
    url("../fonts/poppins/poppins-v5-latin-500italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-500italic.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-500italic.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-500italic.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-500italic.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-600 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins/poppins-v5-latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Poppins SemiBold"), local("Poppins-SemiBold"),
    url("../fonts/poppins/poppins-v5-latin-600.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-600.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-600.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-600.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-600.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-700 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins/poppins-v5-latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Bold"), local("Poppins-Bold"),
    url("../fonts/poppins/poppins-v5-latin-700.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-700.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-700.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-700.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-700.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-700italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/poppins/poppins-v5-latin-700italic.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Bold Italic"), local("Poppins-BoldItalic"),
    url("../fonts/poppins/poppins-v5-latin-700italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-700italic.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-700italic.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-700italic.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-700italic.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-800 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/poppins/poppins-v5-latin-800.eot");
  /* IE9 Compat Modes */
  src: local("Poppins ExtraBold"), local("Poppins-ExtraBold"),
    url("../fonts/poppins/poppins-v5-latin-800.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-800.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-800.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-800.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-800.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-800italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 800;
  src: url("../fonts/poppins/poppins-v5-latin-800italic.eot");
  /* IE9 Compat Modes */
  src: local("Poppins ExtraBold Italic"), local("Poppins-ExtraBoldItalic"),
    url("../fonts/poppins/poppins-v5-latin-800italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-800italic.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-800italic.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-800italic.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-800italic.svg#Poppins") format("svg");
  /* Legacy iOS */
}

/* poppins-900 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/poppins/poppins-v5-latin-900.eot");
  /* IE9 Compat Modes */
  src: local("Poppins Black"), local("Poppins-Black"),
    url("../fonts/poppins/poppins-v5-latin-900.eot?#iefix") format("embedded-opentype"),
    url("../fonts/poppins/poppins-v5-latin-900.woff2") format("woff2"),
    url("../fonts/poppins/poppins-v5-latin-900.woff") format("woff"),
    url("../fonts/poppins/poppins-v5-latin-900.ttf") format("truetype"),
    url("../fonts/poppins/poppins-v5-latin-900.svg#Poppins") format("svg");
  /* Legacy iOS */
}

.registerForm a:focus,
.registerForm a:active {
  text-decoration: none;
  outline: none;
  transition: all 300ms ease 0s;
  -moz-transition: all 300ms ease 0s;
  -webkit-transition: all 300ms ease 0s;
  -o-transition: all 300ms ease 0s;
  -ms-transition: all 300ms ease 0s;
}

.registerForm input,
.registerForm select,
.registerForm textarea {
  outline: none;
  appearance: unset !important;
  -moz-appearance: unset !important;
  -webkit-appearance: unset !important;
  -o-appearance: unset !important;
  -ms-appearance: unset !important;
}

.registerForm input::-webkit-outer-spin-button,
.registerForm input::-webkit-inner-spin-button {
  appearance: none !important;
  -moz-appearance: none !important;
  -webkit-appearance: none !important;
  -o-appearance: none !important;
  -ms-appearance: none !important;
  margin: 0;
}

.registerForm input:focus,
.registerForm select:focus,
.registerForm textarea:focus {
  outline: none;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -o-box-shadow: none !important;
  -ms-box-shadow: none !important;
}

.registerForm input[type="checkbox"] {
  appearance: checkbox !important;
  -moz-appearance: checkbox !important;
  -webkit-appearance: checkbox !important;
  -o-appearance: checkbox !important;
  -ms-appearance: checkbox !important;
}

.registerForm input[type="radio"] {
  appearance: radio !important;
  -moz-appearance: radio !important;
  -webkit-appearance: radio !important;
  -o-appearance: radio !important;
  -ms-appearance: radio !important;
}

.registerForm img {
  max-width: 100%;
  height: auto;
}

.registerForm figure {
  margin: 0;
}

.registerForm p {
  margin-bottom: 0px;
}

.registerForm .booking-form h2 {
  line-height: 1.8;
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: #fff;
  font-family: "Poppins";
  font-size: 40px;
  text-align: center;
  margin-bottom: 5px;
}

.registerForm .registersubtitle {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 0;
  color: white;
}

.registerForm .clear {
  clear: both;
}

.registerForm .main {
  padding: 35px 0;
  position: relative;
}

.registerForm .container {
  width: 1150px;
  margin: 10px auto;
  box-shadow: 0px 2px 9.9px 0.1px #7ce1c5;
  -moz-box-shadow: 0px 2px 9.9px 0.1px #7ce1c5;
  -webkit-box-shadow: 0px 2px 9.9px 0.1px #7ce1c5;
  -o-box-shadow: 0px 2px 9.9px 0.1px #7ce1c5;
  -ms-box-shadow: 0px 2px 9.9px 0.1px #7ce1c5;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  background-image: url("../img/designnew.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-right: 0;
}

.registerForm .booking-content {
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.registerForm .textfree {
  background: url("../img/squiggle.svg") no-repeat bottom / 100%;
  background-size: contain;
}

.registerForm .freetext h3 {
  margin-top: 7px;
  margin-bottom: 0px;
}

.registerForm .booking-image {
  width: 40%;
  margin-bottom: -8px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.registerForm .freetext {
  color: #444444;
  font-size: 19px;
  text-align: center;
}

.registerForm .freesubtext {
  font-size: 17px;
  text-align: left;
  padding-left: 5%;
  padding-right: 5%;
  color: #606782;
}

.registerForm .booking-img {
  transform: translate(-50%, -50%);
  position: relative;
  height: 100px;
  left: 50%;
  top: 15%;
}

.fa-check-circle {
  font-size: 20px;
  vertical-align: middle;
}

.registerForm .fa-check-circle {
  color: #49bfa1;
  padding-right: 8px;
}

.registerForm .booking-form {
  width: 60%;
  background: #504e4efa;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: linear-gradient(90deg, #1a213d, #2b3664) !important;
}

.registerForm .active {
  position: relative;
  background: #edb77d;
  padding: 14px 1px;
  margin-right: 7px;
  margin-left: 3px;
  border-radius: 24px;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  -o-border-radius: 24px;
  -ms-border-radius: 24px;
}

.registerForm .active:after {
  position: absolute;
  content: "Person";
  right: 17px;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 11px;
  color: #222;
  font-weight: bold;
}

.registerForm .active input+label {
  margin-right: 59px;
}

.registerForm .freesubtext p {
  margin-top: 16px;
}

.registerForm form {
  padding: 10px 40px;
}

.registerForm .form-group {
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  width: 48%;
}

.registerForm .form-input {
  padding-top: 22px;
}

.registerForm .form-label {
  position: absolute;
  transition: 0.25s ease;
  -moz-transition: 0.25s ease;
  -webkit-transition: 0.25s ease;
  -o-transition: 0.25s ease;
  -ms-transition: 0.25s ease;
  color: #ffffffd1;
  left: 0;
  top: 19px;
}

.registerForm input {
  transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  -ms-transition: 0.3s ease;
  padding-top: 10px;
  -webkit-appearance: none;
}

.registerForm input:focus+.form-label,
.registerForm input:valid+.form-label {
  top: 1px;
  font-size: 11px;
  color: #edb77d;
}

.registerForm input[type="email"]+.form-label span {
  visibility: hidden;
}

.registerForm input[type="email"]:focus+.form-label span {
  visibility: visible;
}

.registerForm input,
.registerForm select {
  box-sizing: border-box;
  width: 90%;
  display: block;
  border: none;
  font-family: "Poppins";
  color: #fff;
  background: transparent;
  border-bottom: 1px solid #999;
  padding: 8px 6px;
}

.registerForm input:focus,
.registerForm select:focus {
  border-bottom: 1px solid #edb77d;
}

.registerForm input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px transparent inset;
  box-shadow: 0 0 0 30px transparent inset;
  background-color: transparent !important;
  color: white !important;
}

.registerForm input::-webkit-input-placeholder {
  color: #bebebe;
}

.registerForm input::-moz-placeholder {
  color: #bebebe;
}

.registerForm input:-ms-input-placeholder {
  color: #bebebe;
}

.registerForm input:-moz-placeholder {
  color: #bebebe;
}

.registerForm .submit {
  width: auto;
  background: #49bfa1;
  color: #fff;
  padding: 10px 7rem;
  font-weight: bold;
  border: none;
  border-radius: 2.3em;
  -moz-border-radius: 2.3em;
  -webkit-border-radius: 2.3em;
  -o-border-radius: 2.3em;
  -ms-border-radius: 2.3em;
  cursor: pointer;
  font-size: 16px;
}

.registerForm .loginsubmit:hover {
  background: #ffffff;
  color: #1a213d;
  border: 1px solid #1a213d;
}

.registerForm .loginsubmit {
  width: auto;
  background: transparent;
  color: #fff;
  padding: 9px 35px;
  font-weight: bold;
  border: 1px solid #ffffff;
  border-radius: 2.3em;
  -moz-border-radius: 2.3em;
  -webkit-border-radius: 2.3em;
  -o-border-radius: 2.3em;
  -ms-border-radius: 2.3em;
  cursor: pointer;
  font-size: 16px;
  margin-right: 15px;
}

.registerForm .btnsection {
  text-align: center;
  padding-top: 15px;
}

.registerForm .vertify-booking {
  color: #49bfa1;
  font-size: 11px;
  text-decoration: none;
  margin-top: 14px;
  /*display: block;*/
  transition: all 0.3s;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
}

.registerForm .vertify-booking:hover {
  text-decoration: underline;
}

.registerForm .select-list {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 47px;
  margin-top: 8px;
}

/* .registerForm .list-item {
  position: absolute;
  width: 100%;
} */

.registerForm #time {
  z-index: 99;
  max-height: 140px;
  overflow-y: auto;
}

.registerForm #food {
  z-index: 9;
  max-height: 140px;
  overflow-y: auto;
}

.registerForm .termscondition {
  display: inline-block;
  width: 100%;
  padding-top: 15px;
  text-align: center;
  margin-bottom: 2px;
}

.registerForm .react-tel-input .form-control {
  background-color: transparent;
  color: white;
}

.registerForm .source_from option {
  color: #222;
}

.registrationBtn {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.login-text {
  font-size: 15px;
}

@media screen and (max-width: 1200px) {
  .registerForm .container {
    width: calc(100% - 30px);
    max-width: 100%;
    background: transparent;
  }

  .registerForm .booking-content {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
  }

  .registerForm .booking-image,
  .registerForm .booking-form {
    width: 100%;
  }

  .registerForm .booking-image {
    order: 2;
    text-align: center;
    margin-bottom: 30px;
  }

  .registerForm .booking-form {
    order: 1;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .registerForm .submit {
    margin-bottom: 20px;
  }

  .registerForm .booking-img {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    width: 100%;
    transform: unset;
    width: 40%;
    position: unset;
    height: auto;
    left: unset;
    top: unset;
    display: none;
  }

  .registerForm .freetext {
    padding-top: unset;
  }

  .registerForm .freetext h3 {
    margin-top: 40px;
  }

  .registerForm .select-list {
    width: 100%;
  }

  .registerForm .form-group {
    width: 100%;
  }

  .registerForm input,
  .registerForm select {
    width: 100%;
  }

  .registerForm .form-input {
    width: 100%;
  }

  .registerForm .freesubtext {
    padding-left: 8%;
    padding-right: 8%;
    font-size: 13px;
  }

  .registerForm form {
    padding: 20px 20px 0px 20px;
  }

  .registerForm .loginsubmit {
    margin-right: 0px;
    margin-bottom: 15px;
  }

  .registerForm .termscondition {
    margin-bottom: 10px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .registerForm .form-group {
    width: 48%;
  }
}

@media screen and (max-width: 480px) {
  .registerForm .radio-item {
    display: block;
    margin-bottom: 15px;
    width: 150px;
  }

  .registerForm .active {
    padding: 7px 1px;
  }

  .registerForm form {
    padding: 72px 40px 70px 40px;
  }
}

/* End of Register Page */

/* app sumo verification page */
.show--note {
  color: #e8e6e6;
  font-size: small;
  font-style: italic;
}

/* Footer CSS */
#footer-liveplan {
  position: fixed;
  bottom: 0;
  left: 0;
  margin-bottom: 0;
  width: 100%;
  z-index: 1030;
  font-style: normal;
  background-color: #fff;
  color: #393f44;
  border-top: 2px solid #49bfa1;
  max-height: 49px;
  letter-spacing: unset;
  padding-bottom: 52px;
}

#footer-liveplan-wrapper {
  position: relative;
}

#footer-liveplan-main {
  padding: 0;
  margin: 0 auto;
  overflow: hidden;
  width: auto;
  text-align: center;
}

#footer-liveplan-hide-footer {
  font-size: 10px;
  font-weight: bold;
  color: #000;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  left: 0;
  cursor: pointer;
}

#footer-liveplan-copy {
  display: inline-block;
  font-size: 18px;
  line-height: 32px;
  margin-top: 8px;
  padding-right: 10px;
}

.bookdemobtn {
  margin-top: 8px;
  display: inline-block !important;
  cursor: pointer;
}

.ush_btn_1 {
  color: #fff !important;
  font-size: 13px !important;
  background: #49bfa1 !important;
  border: 1 solid #49bfa1 !important;
}

.us-btn-style_3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 1.2 !important;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0em;
  border-radius: 2.3em;
  padding: 0.8em 1.9em;
  background: #49bfa1;
  border-color: transparent;
  color: #fff !important;
  box-shadow: 0 0em 0em rgb(0 0 0 / 20%);
}

/*new pricing table css startshere*/
.block-quarterly {
  display: none;
}

.block-monthly {
  display: none;
}

.enterpriseheading {
  text-align: center;
  background: #263159;
  width: 34%;
  margin-left: 18px;
  border-bottom: none !important;
  border-spacing: 15px;
}

.conactsalesbtn a {
  color: #ffffff !important;
}

.comparefeature {
  font-size: 28px;
  font-weight: 300;
  line-height: 38px;
}

.cfeature {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1.5px;
}

.conactsalesbtn {
  background: #49bfa1 !important;
}

.pricing-2 {
  padding: 90px 0 60px 0;
}

.block-pricing {
  text-align: center;
}

.block-plain {
  background: transparent;
  box-shadow: none;
}

.enterprise-block {
  display: inline-block;
  position: relative;
  width: 100%;
  /* margin-bottom: 30px; */
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
}

.block {
  display: inline-block;
  position: relative;
  width: 100%;
  /* margin-bottom: 30px; */
  border-radius: 6px;
  color: rgba(0, 0, 0, 0.87);
  background: #fff;
  height: 935px;
}

.block-pricing .table {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.enterprisebluetable .table {
  padding-bottom: 55px !important;
}

.enterprisebluetable ul li {
  padding: 16px 0 !important;
  line-height: 30px;
  font-weight: 600 !important;
  color: #08164e !important;
}

.enterprisebluetable {
  box-shadow: 0px 0px 10px 0px #263159 !important;
  transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s !important;
  background: #ffffff !important;
}

.enterpriseplan {
  background-color: #08164e !important;
}

.enterprisetable {
  background-color: #08164e0d !important;
}

.plantable .table {
  padding-bottom: 40px;
}

.enterpriseplan::after {
  border-color: #08164e transparent transparent !important;
}

.core_features {
  padding: 20px;
  position: relative;
  margin: 0;
  font-size: 24px !important;
  padding-top: 30px !important;
}

.freeplan {
  color: #1a1a1a;
  padding: 20px;
  position: relative;
  margin: 0;
  padding-top: 30px !important;
  background: #80808061;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.cur_sign {
  font-size: 13px;
}

.enterpriseblue {
  background: #08164e;
  color: #ffffff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 30px !important;
}

.block-month {
  padding-top: 26px !important;
  font-size: 25px;
  font-weight: 400 !important;
  /* margin-bottom: 32px; */
  margin-bottom: 15px;
}

.plancaption {
  font-size: 30px;
  font-weight: 700;
  background: #8080809c;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  color: #1a1a1a;
  padding: 30px !important;
}

.captionfeatures {
  font-weight: 400;
  font-size: 28px;
  margin-bottom: 38px;
  margin-top: 86px !important;
}

.featuretable {
  border: 1px solid #d3d3d312 !important;
}

.captionfree {
  padding: 26px;
  font-size: 22px;
  font-weight: 400;
  /* margin-bottom:36px; */
  margin-top: 15px;
}

.getstarted,
.monthlyplanprice a {
  font-weight: normal;
  border: none;
  background: #08164e;
  color: #fff !important;
  font-size: 13px;
  border-radius: 2.3rem;
  padding: 10px 18px;
  top: 18px;
  position: relative;
}

.planpricebtn a {
  font-weight: normal;
  border: none;
  background: #08164e;
  color: #fff !important;
  font-size: 13px;
  border-radius: 2.3rem;
  padding: 10px 18px;
  margin-top: 10px;
  margin-left: 20px;
  width: -webkit-fill-available;
}

.contactsales a {
  font-weight: normal;
  border: none;
  background: #49bfa1;
  color: #fff;
  font-size: 13px;
  border-radius: 2.3rem;
  padding: 12px 50px;
}

.contactsales {
  padding: 12px 10px !important;
}

.block .category:not([class*="text-"]) {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  padding-bottom: 30px;
  font-family: "Poppins";
  margin-bottom: 16px;
}

.pricingcolwidth {
  width: 23% !important;
}

.pricingenterprisecolwidth {
  width: 31% !important;
}

.block-caption {
  margin-top: 10px;
  color: #333333;
}

.block-pricing ul {
  list-style: none;
  padding: 0;
  margin: 35px 13px;
}

.block-pricing ul li {
  color: #333333;
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(153, 153, 153, 3%);
  line-height: 25px;
  font-size: 15px;
}

.plantable ul li {
  font-weight: 400;
}

.plantable {
  background: rgba(227, 219, 219, 0.14);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  box-shadow: 0px 0px 4px 0px lightgrey;
  height: fit-content;
}

.category {
  padding-top: 20px;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 1.5px;
}

.block-raised {
  background: rgba(161, 153, 153, 0.05);
  box-shadow: 0px 0px 5px 0px grey;
}

[class*="table-"] .block-caption {
  color: #333333;
  font-weight: 500;
}

/*.block-pricing ul li:last-child{
	border:none;
}*/
.block-pricing.block-background ul li,
.block-pricing [class*="table-"] ul li {
  color: #333333;
  border-color: 1px solid rgb(153 153 153 / 11%);
}

.btn:not([disabled]):not(.disabled) {
  cursor: pointer;
}

.btn.btn-white {
  border-color: #fff;
  box-shadow: 0 2px 2px 0rgba (153, 153, 153, 14%),
    0 3px 1px -2px rgba(153, 153, 153, 20%),
    0 1px 5px 0 rgba(153, 153, 153, 12%);
}

.btn.btn-round {
  border-radius: 30px;
}

/*new pricing table css ends here*/
@media (max-width: 767px) {
  .block-pricing ul li {
    font-size: 15.5px;
  }

  .block-pricing ul {
    max-width: 318px;
    margin: 35px auto;
  }

  .freeplan::after {
    border-width: 40px 349px 0 0;
  }

  .pricingtabledesktopview {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .pricingtablemobileview {
    display: none !important;
  }
}

.plans-page-background {
  background: white;
}

.pricingcolwidth {
  width: 23% !important;
}

/* Update Profile Pop Up */
.form--label {
  font-size: larger;
  font-weight: 400;
}

/* New Verification page */
.verify-content {
  padding: 10% 2%;
}

.verifycontainer {
  width: 45%;
  margin: 0 auto;
  box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  -o-border-radius: 40px;
  -ms-border-radius: 40px;
  background: #fefefe;
  margin-top: 110px;
}

.verify-form {
  width: 100%;
  border-radius: 24px;
}

.verifyfreetext {
  text-align: center;
  vertical-align: middle;
}

.mailicon {
  font-size: 75px;
  color: #43be9a;
}

.verifyptext {
  color: #5f6368;
  font-size: 36px;
  font-weight: 500;
  margin-top: 25px;
  letter-spacing: 0.5px;
  text-align: center;
}

.checktxt {
  color: #5f6368;
  font-weight: 300;
  font-size: 18px;
  margin-top: 0;
}

.form--verify {
  padding: 8% 17% 5%;
  background: transparent;
}

.verify--input {
  box-sizing: border-box;
  width: 100%;
  display: block;
  border: none;
  font-family: Poppins;
  color: #202124;
  background: transparent;
  padding: 8px 17px;
  border-bottom: 1px solid #00000052;
  border-radius: 0px;
}

.verify--input,
.verify--input::placeholder {
  font-size: 23px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.verify-submit {
  width: 100%;
  background: #49bfa1;
  color: #fff;
  padding: 6px 35px;
  font-weight: 500;
  border: none;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  cursor: pointer;
  font-size: 21px;
  box-shadow: 0px 4px 5px rgb(0 0 0 / 25%);
}

.recvmail {
  font-size: 16px;
  text-align: center;
  color: #868890b8;
}

.verifytxt {
  font-size: 16px;
}

@media screen and (max-width: 1200px) {
  .verifycontainer {
    width: 95%;
  }

  .verifyptext {
    font-size: 24px;
  }

  .verify-content {
    padding: 10% 5%;
  }

  .checktxt {
    font-size: 13px;
  }

  .form--verify {
    padding: 8% 15px 2%;
  }
}

/* referall code page design */
.referral--form {
  padding: 8% 17% 5%;
  background: transparent;
}

.referral--input {
  box-sizing: border-box;
  width: 100%;
  display: block;
  border: none;
  font-family: Poppins;
  color: #202124;
  background: transparent;
  padding: 8px 17px;
  border-bottom: 1px solid #00000052;
  border-radius: 0px;
}

.referral--input,
.referral--input::placeholder {
  font-size: 23px;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.skiptext {
  color: rgba(95, 99, 104, 0.38);
  fill: solid;
  -webkit-text-fill-color: rgba(95, 99, 104, 0.35);
  font-size: 16px;
  float: right;
  margin-right: 35px;
  display: flex;
  margin-top: 24px;
  font-weight: 500;
  cursor: pointer;
}

.referral-submit {
  width: 100%;
  background: #49bfa1;
  color: #fff;
  padding: 6px 35px;
  font-weight: 500;
  border: none;
  border-radius: 15px;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  cursor: pointer;
  font-size: 21px;
  box-shadow: 0px 4px 5px rgb(0 0 0 / 25%);
}

/* New Login Page Css */
.logincontainer {
  width: 65%;
  margin: 0 auto;
  box-shadow: 0px 2px 9.9px 0.1px rgb(0 0 0 / 25%);
  -moz-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 9.9px 0.1px rgb(0 0 0 / 25%);
  -o-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  -o-border-radius: 0px;
  -ms-border-radius: 0px;
  background: transparent;
  padding: 35px 50px;
  margin-top: 55px;
}

.loginbooking-form {
  background: transparent;
}

.booking--image {
  width: 100%;
  width: 54%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.booking--image,
.login-booking-form {
  width: 100%;
}

.login--form {
  padding: 0% 0% 0%;
  background: #ffffff;
  border-radius: 4px;
}

.loginsubtitle {
  color: #5f6368;
  font-weight: 500;
  text-align: center;
  font-size: 35px;
  line-height: 40px;
  letter-spacing: 0.5px;
  top: 15px;
  position: relative;
}

.logingoogle {
  width: 40%;
  outline: none;
}

.login--input {
  box-sizing: border-box;
  width: 40%;
  display: block;
  border: none;
  font-family: Poppins;
  color: #202124;
  background: rgba(217, 217, 217, 0.34);
  padding: 8px 17px;
  border-radius: 16px;
  margin: auto;
  outline: none;
}

.login--page--input {
  margin: auto;
  display: block;
  outline: none;
}

.btnsection {
  text-align: center;
  padding-top: 15px;
}

.btn-submit {
  width: 40%;
  background: #49bfa1;
  color: #fff;
  padding: 10px 35px;
  font-weight: bold;
  border: none;
  border-radius: 2.3em;
  -moz-border-radius: 2.3em;
  -webkit-border-radius: 2.3em;
  -o-border-radius: 2.3em;
  -ms-border-radius: 2.3em;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.25);
  outline: none;
}

.loginchecklabel a {
  color: #868890b8;
}

.logintc {
  padding-bottom: 20px;
}

.ortxt {
  color: #43be9a;
  text-align: center;
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin: 3% 0;
}

.accountxt {
  margin-right: 38px;
}

.login-booking-content {
  flex-direction: column;
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -o-flex-direction: column;
  -ms-flex-direction: column;
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

display-flex,
.login-booking-content {
  display: flex;
  display: -webkit-flex;
}

.root {
  padding: 35px 0;
  position: relative;
}

.logintc {
  padding-bottom: 20px;
}

.termscondition {
  display: inline-block;
  width: 100%;
  padding-top: 15px;
  text-align: center;
  margin-bottom: 2px;
}

@media screen and (max-width: 1200px) {
  .logincontainer {
    width: 67%;
    padding: 35px;
  }

  .logingoogle {
    width: 100%;
  }

  .logingoogle {
    width: 40%;
  }

  .logingoogle p {
    padding-left: 20px;
  }

  .googlecontinue123 {
    border: 1px solid #43be9adb;
    border-radius: 16px;
    width: 55%;
    margin: auto;
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
  }

  .main {
    padding: 22px 0;
  }

  .login--input {
    width: 100%;
  }

  .logintc {
    display: grid;
    padding-bottom: 0px;
  }

  .loginchecklabel {
    margin-right: unset;
  }

  .accountxt {
    margin-right: 0px;
  }

  .termscondition {
    margin-bottom: 0px;
  }

  .login--form {
    padding: 8% 15px 2%;
  }
}

/* register page new design css */

.container--register {
  width: 82%;
  margin: 0 auto;
  box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -o-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  -ms-box-shadow: 0px 2px 9.9px 0.1px rgba(0, 0, 0, 0.25);
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  -o-border-radius: 40px;
  -ms-border-radius: 40px;
  background: linear-gradient(360deg, #1a213e, #070914, #1a213e) !important;
}

.sign-up-google {
  width: 60%;
}

/* @extend display-flex; */
display-flex,
.register-booking-content {
  display: flex;
  display: -webkit-flex;
}

.register-booking-content {
  flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}

.register-booking-form {
  width: 45%;
  background: #504e4efa;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  background: linear-gradient(360deg, #1a213e, #070914, #1a213e) !important;
}

#register-booking-form {
  padding: 14% 10%;
  background: #ffffff;
  border-radius: 40px;
}

/* .freetext h3 {
  margin-top: 7px;
  text-align: left;
  color: #fefefe;
  font-weight: 600;
  font-size: 30px;
  line-height: 45px;
} */

.freetext {
  color: #fefefe;
  padding: 20% 9% 2%;
  font-size: 19px;
  /* text-align: center; */
  vertical-align: middle;
}

.freesubtext {
  font-size: 19px;
  text-align: left;
  padding-left: 3%;
  padding-right: 3%;
  color: #fefefe;
  font-weight: 300;
  margin-top: 20px;
}

.freesubtext p {
  margin-top: 0px;
  margin-bottom: 0px;
  line-height: 36px;
  font-size: 18px;
}

/* .freetext{
  padding-top:unset;
}
.freetext h3{
margin-top:40px;
} */

.displayimg {
  height: 200px;
}

.feature_section {
  text-align: center;
  display: table;
  width: 100%;
  padding-bottom: 12%;
}

.featuresdiv {
  display: table-cell;
  color: #43be9a;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
}

.register-booking-image {
  width: 55%;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.logoimg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
}

.registersubtitle {
  color: #202124;
  font-weight: 500;
  text-align: center;
  font-size: 21px;
  line-height: 30px;
}

.firstfield {
  width: 100% !important;
}

.register-submit-btn {
  width: 100%;
  background: #49bfa1;
  color: #fff;
  padding: 10px 35px;
  font-weight: bold;
  border: none;
  border-radius: 2.3em;
  -moz-border-radius: 2.3em;
  -webkit-border-radius: 2.3em;
  -o-border-radius: 2.3em;
  -ms-border-radius: 2.3em;
  cursor: pointer;
  /* margin: auto; */
  font-size: 16px;
  box-shadow: 0px 4px 5px rgb(0 0 0 / 25%);
}

.termsandconditions {
  display: inline-block;
  width: 100%;
  padding-top: 15px;
  text-align: center;
  margin-bottom: 2px;
}

.register-input {
  box-sizing: border-box;
  width: 100%;
  display: block;
  border: none;
  font-family: Poppins;
  color: #202124;
  background: rgba(217, 217, 217, 0.34);
  padding: 7px 17px;
  border-radius: 16px;
  outline: none;
}

.trustedby {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #43be9a;
  vertical-align: center;
  line-height: 27px;
  margin-top: 25px;
}

.trustedrow {
  display: flex;
  text-align: center;
}

.column {
  flex: 33.33%;
  padding: 0 20px;
}

@media screen and (max-width: 1200px) {
  .googlecontinue {
    width: 70%;
  }

  .container--register {
    max-width: 100%;
    background: transparent;
    border-radius: 0px;
    -webkit-border-radius: 0px;
  }

  .register-booking-content {
    flex-direction: column;
    -moz-flex-direction: column;
    -webkit-flex-direction: column;
    -o-flex-direction: column;
    -ms-flex-direction: column;
  }

  .register-booking-form {
    order: 2;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .register-booking-image,
  .register-booking-form {
    width: 100%;
  }

  .register-booking-image {
    order: 1;
    text-align: center;
  }
}

/* Bloom's Taxanomy Bar*/
.countdown_msg_bt {
  font-family: poppins;
  text-align: -webkit-right;
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.5px;
  padding-right: 26px;
  padding-top: 3px;
}

.countdwn-bt {
  background: #08164e;
  padding: 10px;
  margin-top: 85px;
}

.countdwn-bt:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

.learnmorebtn-bt {
  font-size: 13px;
  line-height: 1.2 !important;
  font-weight: 400;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0em;
  border-radius: 2.3em;
  padding: 0.5em 1em;
  background: #ffffff;
  border-color: transparent;
  color: #08164e;
  box-shadow: 0 0em 0em rgb(0 0 0 / 20%);
  margin-left: 5px;
  text-decoration: none;
}

.progress-bar-position {
  position: fixed;
  z-index: 2;
  top: 40%;
  left: 45%;
}

.overlay {
  background-color: #efefef;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0px;
  left: 0px;
  opacity: 0.9;
  /* in FireFox */
  filter: alpha(opacity=50);
  /* in IE */
}

.btn--upbar,
.btn--upbar:hover {
  padding: 5px 10px;
  text-align: center;
  background: var(--color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  height: auto;
  border: 1px solid var(--color-secondary);
  color: var(--color-white);
  border-radius: 4px;
  transition: 0.2s ease-in-out all;
  /* width: auto; */
  text-decoration: none;
}

.coupon-code--input {
  border: 1px solid #d3e1f5;
  border-radius: 4px;
  background: #fbfafa;
  /* padding: 12px 50px; */
  line-height: normal;
  color: var(--color-primary);
  font-size: 16px;
  height: auto;
  width: 170px;
  /* margin-left: 55px; */
  margin-bottom: 15px;
  transition: 0.2s ease-in-out all;
}

.coupon-code--input:focus {
  border-color: var(--color-secondary);
  outline: none;
  box-shadow: none;
  /* background: #f1f7fe; */
}

.applyCoupon {
  font-weight: normal;
  border: none;
  background: #49bfa1;
  color: #fff;
  font-size: 13px;
  border-radius: 2.3rem;
  padding: 10px 18px;
  margin-bottom: 13px;
  margin-left: 10px;
}

.applyCoupon:focus {
  outline: none;
}

.coupon-text {
  font-size: 15px;
  position: absolute;
  margin-top: -14px;
  margin-left: -78px;
}

.text--danger {
  color: red;
}

.prepai-color {
  color: #49c0a0;
}

.discount-coupon-text {
  color: #49c0a0;
  font-size: 15px;
  position: absolute;
  margin-top: -15px;
  margin-left: -111px;
}

.pp-btn {
  color: #fff;
  background-color: #49c0a0;
  border-color: #49c0a0;
}

.ppn-btn {
  color: #49c0a0;
  background-color: #fff;
  border-color: #49c0a0;
}

.word_limit {
  color: red;
  margin-left: 68.5%;
  margin-top: -3%;
  margin-bottom: 14%;
  position: absolute;
}

.close_button {
  top: -4px !important;
  position: relative;
  right: 4px;
  z-index: 101;
}

.share-modal-close {
  position: absolute;
  right: -38px;
  top: -50px;
  border-bottom: 0;
}

.share-modal-close :focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.close_buttons {
  outline: none;
  top: -45px !important;
  position: relative;
  right: -12px;
}

.feedback {
  float: right;
  position: fixed;
  top: 25%;
  right: 0;
  left: 78%;
}

.search-hots {
  margin-top: 23px;
  /* margin-right: -12px; */
  position: absolute;
  margin-left: 96.5%;
  color: #49bfa1;
  font-size: larger;
  cursor: pointer;
}

.CreditsInfo {
  font-size: 12px;
  font-weight: 500;
  line-height: 26px;
  color: #818181;
  /* left: 370px; */
}

.credit-box {
  text-align: center;
  width: 10%;
  outline: none;
  border: 2px solid #ccc;
  border-radius: 4px;
}

.test-score-container {
  top: 60px;
  position: relative;
  width: 80%;
  left: 10%;
}

.test-title {
  outline: none;
}

.test-title:focus {
  outline: none;
}

.test-marks-note {
  margin-left: 18px;
  position: relative;
  top: 20px;
  font-size: small;
  font-weight: 600;
}

.monthlyplanpricee a {
  font-weight: normal;
  border: none;
  background: #49c0a0;
  color: #fff !important;
  font-size: 13px;
  border-radius: 2.3rem;
  padding: 10px 45px;
  top: 0 !important;
}

.separator {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 0.5rem auto;
  width: 40%;
  font-size: 13px;
  color: #868890b8;
}

.separator::before,
.separator::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #868890b8;
}

.separator:not(:empty)::before {
  margin-right: 0.25em;
}

.separator:not(:empty)::after {
  margin-left: 0.25em;
}

.btn-outline-success {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}

.btn-outline-success:hover {
  background-color: var(--color-secondary);
  color: white;
}

.pro-tag {
  font-size: 11px;
  background: orange;
  padding: 3px 6px;
  position: absolute;
  /* left: 10rem; */
  right: 6px;
  top: 5px;
  font-weight: 500;
  color: rgb(255 255 255);
}

.fl-center {
  display: flex;
  align-items: center;
}

.sets-standard-close {
  top: 10px;
  position: absolute;
  right: 18px;
  font-size: xx-large;
}

.fl-center {
  display: flex;
  align-items: center;
}

.set-container {
  display: flex;
  left: 24%;
  position: relative;
}

.subset-icon {
  font-size: xx-large;
  color: rgba(0, 0, 0, 0.54);
  cursor: pointer;
  font-weight: bold;
}

.subset-que_maxlimit {
  font-size: medium;
  color: red;
  font-size: 11px;
  position: relative;
}

.subset-sub--text {
  font-size: small;
  font-weight: 500;
  top: -20px;
  position: relative;
}

.subset-note {
  font-size: small;
  font-weight: 500;
  position: relative;
}

.subset-topic {
  text-align: center;
  border: 2px solid #49c0a0;
  border-radius: 4px;
  padding: 5px 9px;
  line-height: normal;
  font-size: 16px;
  height: auto;
  transition: 0.2s ease-in-out all;
  width: 35%;
  align-self: center;
}

.subset-topic:focus {
  outline: none;
  border-color: var(--color-secondary);
}

.form-control:disabled,
.form-control[readonly] {
  background-color: white;
  opacity: 1;
}

.discount-tag {
  background: pink;
  font-size: 15px;
  padding: 4px 10px;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 5px;
}

.discount-tag-normal {
  background: yellow;
  font-size: 10px;
  padding: 4px 10px;
  font-weight: 600;
  vertical-align: middle;
  margin-left: 5px;
}

.header-parent {
  position: sticky;
  /* flex-direction: column; */
  gap: 1;
  width: 100%;
  top: 0;
  z-index: 99;
}

.easy-med-hard {
  box-shadow: 0 0 10px 3px;
  border-radius: 11px;
  color: #cdc6c6;
  width: fit-content;
}

.px-custom {
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  font-weight: 600 !important;
  width: 12.65rem;
}

.active-diff-btn {
  color: white;
  background-color: #49c0a0;
  /* background-color: #f5b82e; */
}

.active-diff-btn-sub {
  background-color: #08164e;
  color: white;
}

.active-diff-btn-sub:hover {
  color: white;
}

.border-radius-left-diff {
  border-radius: 11px 0 0 11px;
}

.border-radius-right-diff {
  border-radius: 0 11px 11px 0;
}

.active-diff-btn:focus,
.active-diff-btn:active {
  outline: none !important;
  box-shadow: none;
}

.error-msg-expertise {
  color: red;
  font-weight: 500;
  font-size: 15px;
}

.rotate-accordion {
  transform: rotate(90deg);
}

.accordion-button {
  display: flex;
  min-width: 8.5rem;
  height: 2rem;
  justify-content: space-between;
  align-items: center;
}

.accordion-custom {
  margin-right: 5px;
  font-size: 20px;
  margin-top: 1px;
}

.position-absolute.rounded-pill.badge.style-badge.text-white {
  top: -9px !important;
}

.btn-group-sm>.btn,
.btn-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0.5rem !important;
}

.sweet-alert-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: white;
  font-weight: 700;
}

.countdown-timer-assessment {
  top: 10rem;
  right: 4rem;
  position: fixed;
  display: flex;
  align-items: center;
  /* width: 10rem; */
  padding-right: 1rem;
  z-index: 9;
  border-radius: 0%;
  box-shadow: 5px 4px 5px #49c0a0;
  background: white;
}

.assessment-icon-right {
  color: white;
  background: green;
  /* max-width: 2rem; */
  border-radius: 50%;
  padding: 2px;
  font-size: 25px;
}

.assessment-icon-wrong {
  color: white;
  background: red;
  /* max-width: 2rem; */
  border-radius: 50%;
  padding: 2px;
  font-size: 25px;
}

.retake-assessment-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  /* justify-content: flex-end; */
  /* align-items: center; */
  right: 3%;
  bottom: 0;
  position: absolute;
}

.sweet-alert-assessment {
  width: 530px;
}

.dropdown-main {
  transform: translate3d(-213px, 40px, 0px) !important;
  left: 90px !important;
}

.dropdown-title-front {
  background: #49c0a0;
  color: white;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  padding: 7px 18px;
  font-weight: 500;
}

.dropdown-title-front:hover {
  color: white;
}

.front-action-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2rem;
}

.btn-success.sweet-alert-confirm-btn {
  color: #fff;
  background-color: #49c0a0;
  border-color: #49c0a0;
  width: 13rem;
}

.btn-success.sweet-alert-confirm-btn:hover {
  color: #fff;
  background-color: #49c0a0;
  border-color: #49c0a0;
}

.w-13,
.h1-8 {
  height: 2.5rem !important;
  width: 13rem !important;
}

.format-time>div>input {
  height: 2.5rem !important;
  width: 13rem !important;
  padding: 0;
  text-align: center;
}

.my-test-btn,
.my-assessment-btn {
  border-radius: 0;
  background-color: white;
  color: #8080808f;
  font-size: 15px;
  font-weight: 500;
}

.my-assessment-btn {
  border-right-width: medium;
  border-right-color: #dadada;
}

.my-test-btn:hover,
.my-assessment-btn:hover {
  color: #49c0a0;
  border-bottom-color: #49c0a0;
  border-bottom-width: medium;
}

.beta-tag-test {
  position: absolute !important;
  top: -9px !important;
}

.beta-tag-assessment {
  position: absolute !important;
  top: -9px !important;
}

.active-btn {
  color: #49c0a0;
  border-bottom-color: #49c0a0;
  border-bottom-width: medium;
}

.format-time>label.css-1jy569b-MuiFormLabel-root-MuiInputLabel-root {
  color: rgb(0 0 0 / 85%) !important;
  font-weight: 700 !important;
}

.seats-left {
  color: white;
  font-size: 11px;
  position: absolute;
  white-space: nowrap;
  left: -11%;
  display: flex;
  flex-direction: column;
  bottom: -20px;
  align-items: center;
}

.seats-left>i {
  color: rgb(255, 49, 49);
  margin-top: -6px;
  font-size: 11px;
}

.seats-filled {
  background-color: #08164e;
  padding: 1rem;
  margin-top: -6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
}

.seats-filled h1 {
  color: #FF5400;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  margin-top: 6px;
}

.seats-filled .footer {
  font-size: 7px;
}

.animated-progress,
.animated-progress-text {
  width: 15rem;
}

.animated-progress {
  height: 5px;
  border-radius: 5px;
  margin: 1rem 0;
  overflow: hidden;
  position: relative;
  background-color: white;
}

.animated-progress-cancel {
  height: 5px;
  width: 100%;
  border-radius: 5px;
  margin: 1rem 0;
  overflow: hidden;
  position: absolute;
  background-color: white;
  bottom: -28px;
}

@media (min-width: 1450px) {

  /* Apply styles when the screen width is greater than or equal to 1024px */
  .seats-filled h1 {
    font-size: 1.2rem;
    /* Increase the font size of the child element using vw unit */
  }

  .animated-progress,
  .animated-progress-text {
    width: 17rem;
  }

  .seats-filled .footer {
    font-size: 9px;
  }
}

@media (min-width: 1623px) {

  /* Apply styles when the screen width is greater than or equal to 1024px */
  .seats-filled h1 {
    font-size: 1.35rem;
    /* Increase the font size of the child element using vw unit */
  }

  .animated-progress,
  .animated-progress-text {
    width: 19rem;
  }

  .seats-filled .footer {
    font-size: 10px;
  }
}

@media (min-width: 1706px) {

  /* Apply styles when the screen width is greater than or equal to 1024px */
  .seats-filled h1 {
    font-size: 1.5rem;
    /* Increase the font size of the child element using vw unit */
  }

  .seats-filled .footer {
    font-size: 11px;
  }

  .animated-progress,
  .animated-progress-text {
    width: 20rem;
  }
}

.animated-progress span {
  height: 100%;
  display: block;
  width: 0;
  color: rgb(255, 251, 251);
  line-height: 30px;
  position: absolute;
  text-align: end;
  padding-right: 5px;
}

.animated-progress-cancel span {
  height: 100%;
  display: block;
  width: 0;
  color: rgb(255, 251, 251);
  line-height: 30px;
  position: absolute;
  text-align: end;
  padding-right: 5px;
}

.progress-red span {
  background-color: #FF3131;
}

.progress-violet span {
  background-color: #08164e;
}

.toggle-gq {
  position: relative;
  overflow: hidden;
}

.beta-tag-toggle-gq {
  position: absolute !important;
  top: 8px !important;
  transform: rotate(315deg);
  width: 5rem;
  font-size: 68%;
  right: 143px;
  /* padding-bottom: 16px; */
  /* padding-top: 16px; */
  background: #656567;
}

.author-name {
  /* white-space: nowrap; */
  top: 32px;
  position: relative;
  left: 5px;
  font-weight: 500;
}

/* Dashboard KPI CSS */
.set-top-margin {
  margin-top: 90px;
}

.order-card {
  color: #fff;
}

.bg-c-blue {
  background: linear-gradient(45deg, #4099ff, #73b4ff);
}

.bg-c-green {
  background: linear-gradient(45deg, #2ed8b6, #59e0c5);
}

.bg-c-yellow {
  background: linear-gradient(45deg, #ffb64d, #ffcb80);
}

.bg-c-pink {
  background: linear-gradient(45deg, #ff5370, #ff869a);
}

.card-kpi {
  border-radius: 5px;
  -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
  box-shadow: 0 1px 2.94px 0.06px rgba(4, 26, 55, 0.16);
  border: none;
  margin-top: 10px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.card-kpi .card-block {
  padding: 25px;
}

.plan-card-block {
  padding: 12px;
}

.order-card i {
  font-size: 26px;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.kpi-vis {
  position: relative;
  z-index: 1;
  color: black;
  padding: 20px;
}

.e-badge-info {
  color: #fff;
  background-color: #08164E;
  padding: 3px 3px 2px 4px;
  font-size: 8px;
  position: relative;
  top: -1.8px;
}

.enterprise-member {
  position: absolute;
  margin-top: 30px;
  margin-left: 8px;
  font-size: 12px;
  color: #7e7d7d;
}

.nodata-outer-container {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.nodata-inner-container {
  width: 300px !important;
  height: 300px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  /* border: 1px solid black; */
}

.nodata-inner-container p {
  margin: 0 !important;
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

@media (max-width: 768px) {
  .nodata-inner-container {
    width: 200px !important;
    height: 200px !important;
  }
}

.cancellation-header {
  background: #08164e;
  color: white;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 5rem;
}

.cancellation-header>h2 {
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 0;
}

.cancellation-body {
  padding: 1rem 3rem;
  text-align: left;
  font-size: 15px;
  font-weight: 500;
}

.cancellation-body>.list-group {
  gap: 10px;
  cursor: pointer;
}

.cancellation-body .list-group-item+.list-group-item {
  border-top-width: 1px;
}

.cancellation-footer {
  bottom: -12px;
  position: absolute;
  width: 100%;
}

.cancellation-footer>p {
  font-size: 15px;
  color: #49c0a0;
  font-weight: 400;
  text-decoration: underline;
  cursor: pointer;
}

.sweet-alert-cancellation {
  width: 26em !important;
  padding: 0 !important;
  height: 28.5em;
}

.sweet-alert-cancellation>h2 {
  height: 100%;
  margin: 0;
}


.ml-3-5 {
  margin-left: 3.5rem !important;
}

.display-flex-ques {
  display: flex;
  word-break: break-word !important;
}

.display-flex-ques>span:nth-child(1) {
  flex: none;
}

.display-flex-ques>span:nth-child(2) {
  margin-left: 5px;
}

.watermark {
  background-image: url("../img/preapai-wm.png");
  background-repeat: space;
  background-position: center center;
  position: absolute;
  background-size: 47rem;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.07;
}

.disabled-link {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.8;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.dropdown-main-list {
  margin-left: -9.3rem !important;
  margin-top: -246px !important;
}

.set-input {
  text-align: center;
  width: 20%;
  color: #49c0a0;
  border: 2px solid #3f4042;
}

.set-input:focus {
  color: #49c0a0;
}

.set-input:disabled,
.disabled-set {
  opacity: 0.3;
}

.set-input-container {
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disabled-link {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.8;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.dropdown-main-list {
  margin-left: -9.3rem !important;
  margin-top: -246px !important;
}

.set-input {
  text-align: center;
  width: 20%;
  color: #49c0a0;
  border: 2px solid #3f4042;
}

.set-input:focus {
  color: #49c0a0;
}

.set-input:disabled,
.disabled-set {
  opacity: 0.3;
}

.set-input-container {
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-sweetalert {
  width: fit-content !important;
  max-width: 80% !important;
  background-color: #F6F7FA !important;
}

.checkbox-label {
  font-size: 15px;
}

#addOnCheckbox {
  transform: scale(1.2);
}

.ff-tdd {
  text-decoration: none;
}

.ff-tdd :hover {
  text-decoration: underline;
  text-decoration-color: #dcdcdc;
}