:root {
  --bs-inp-clr: #c2c3d7;
  --bs-inp-clr-dark: #132134;
  --bs-inp-clr-error: #e70879;
}

.bs-header-hidden {
  display: none;
}

.bs-popup {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: grid;
  display: none !important;
  place-content: center;
  z-index: 9999;
  opacity: 0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.6);
}

@media (max-height: 999px) {
  .bs-popup {
    align-content: flex-start;
    padding: 10px;
    bottom: auto;
    height: 100%;
  }
}

.bs-popup,
.bs-popup * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.bs-popup-open {
  opacity: 1;
  display: grid !important;
}

.bs-popup-open,
.bs-popup-open * {
  pointer-events: auto;
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}

.bs-popup-open {
  overflow: hidden;
  overflow-y: auto;
}

.bs-popup-close {
  position: absolute;
  cursor: pointer;
  right: 26px;
  top: 26px;
  color: #fff;
  border-radius: 50%;
  border: 4px solid #fff;
  width: 45px;
  height: 45px;
  display: grid;
  place-content: center;
  font-size: 32px;
}

.bs-popup-close,
.bs-popup-close i {
  transition: all 0.3s ease;
}

.bs-popup-close:hover {
  border-color: #eca73d;
}

.bs-popup-close:hover i {
  color: #eca73d;
}

.bs-popup-close i {
  font-weight: 100;
}

#bs-system-signup-form {
  margin-bottom: 12px;
}

.bs-system-input {
  box-sizing: border-box;
  color: var(--bs-inp-clr-dark);
  width: 100%;
  padding: 11px 12px 11px 44px;
  border-radius: 4px;
  font-size: 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  box-sizing: border-box;
  border: 1px solid #c2c3d7;
  box-shadow: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  transition: all 0.15s ease-in-out;
  outline: none;
}

.bs-system-input::-webkit-input-placeholder {
  color: var(--bs-inp-clr);
}

.bs-system-input::-moz-placeholder {
  color: var(--bs-inp-clr);
}

.bs-system-input:-ms-input-placeholder {
  color: var(--bs-inp-clr);
}

.bs-system-input::-ms-input-placeholder {
  color: var(--bs-inp-clr);
}

.bs-system-input::placeholder {
  color: var(--bs-inp-clr);
}

.bs-system-input:hover {
  border-color: #888;
  background-color: #fff;
}

.bs-system-input:focus {
  border-color: #af15f1;
  background-color: #fff;
  color: #111017;
}

.bs-system-input:disabled {
  background-color: #f5f5f5;
  border-color: #f5f5f5;
  color: #888;
}

.bs-system-input.error {
  border-color: var(--bs-inp-clr-error);
}

.bs-system-input-pl-normal {
  padding-left: 12px;
}

form[data-response="err-username"] #signupFormLogin {
  border-color: #F00;
}

form[data-response="err-email"] #signupFormEmail {
  border-color: #F00;
}

form[data-response="err-password"] #signupFormPassword,
form[data-response="err-password"] #signupFormPasswordCheck {
  border-color: #F00;
}

form[data-response="err-systemname"] #signupFormSysname {
  border-color: #F00;
}
 
#bs-system-input-container-domain {
  display: none;
}

.bs-system-input-container label {
  font-size: 15px;
  font-weight: 400;
  color: var(--bs-inp-clr-dark);
}

.bs-system-input-container i.toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs-inp-clr-dark);
  cursor: pointer;
}

.bs-system-input-container i.toggle-password-show {
  color: #00e676;
}

.bs-system-input-wrap-sysname .boost-trial-form-domain-placeholder {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--bs-inp-clr);
}

.bs-system-input-wrap-domain .bs-system-input {
  padding-right: 130px;
}

.bs-system-input-container {
  position: relative;
  /* margin-bottom: 10px; */
}

.bs-system-input-wrap {
  position: relative;
}

.bs-system-input-wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  width: 20px;
  height: 20px;
  color: var(--bs-inp-clr);
  font-family: "Font Awesome 5 Pro";
  font-weight: 400;
  line-height: 22px;
  font-size: 19px;
}

.bs-system-input-container-error .bs-system-input {
  border-color: var(--bs-inp-clr-error);
}

.bs-system-input-container-error .bs-system-input-wrap::before {
  color: var(--bs-inp-clr-error);
}

.bs-system-input-wrap.bs-system-input-wrap-email::before {
  content: "";
}

.bs-system-popup-content {
  background: #fefefe;
  box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  text-align: center;
  padding: 36px 50px 36px;
  width: 100%;
  max-width: 470px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .bs-system-popup-content {
    padding: 30px 34px;
  }
}

@media (max-width: 400px) {
  .bs-system-popup-content {
    padding: 30px 14px;
  }
}

.bs-popup-beta .bs-system-popup-content {
  max-width: 620px;
}

.bs-system-popup-content .bs-paragraph {
  margin: 0 auto 0.5rem;
  line-height: 1.33 !important;
}

.bs-system-popup-content #bs-system-popup-para {
  color: rgba(0, 0, 0, 0.6);
  line-height: 22px !important;
}

#bs-popup-subheading {
  margin-bottom: 26px;
}

.bs-system-popup-form {
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: left;
}

.bs-system-popup-form .wpcf7-form p {
  margin-bottom: 20px;
}

.bs-system-popup-form .wpcf7-form p:last-of-type {
  margin-bottom: 0;
}

.bs-system-popup-form .wpcf7-form .bs-btn-bigger {
  margin-top: 10px;
  margin-bottom: 0;
}

.bs-btn-full {
  width: 100%;
}

.bs-system-popup-content .bs-btn-full {
  background: linear-gradient(267.08deg, #eca73d 3.73%, #e0546b 100%);
  border-radius: 4px;
  padding-top: 16px;
  padding-bottom: 16px;
  border: unset;
}

.bs-system-popup-content .bs-btn-full:hover {
  border: unset;
}

.bs-popup-bubble {
  --transition-time: 0.5s;
  --animation-duration: 8s;
  position: absolute;
  z-index: -1;
  transition: all var(--transition-time) ease;
}

.bs-popup-bubble.bs-popup-bubble-bottom {
  transform: translate(100%, 100%);
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 700px;
}

.bs-popup-bubble.bs-popup-bubble-top {
  left: 20%;
  top: 0;
  width: 400px;
  transform: translate(-20%, -100%);
}

/* .bs-popup-bubble-show.bs-popup-bubble-bottom {
  transform: translate(0, 0);
  -webkit-animation: bubble-bottom-float var(--animation-duration) ease-in-out
    infinite;
  animation: bubble-bottom-float var(--animation-duration) ease-in-out
    var(--transition-time) infinite;
}

@-webkit-keyframes bubble-bottom-float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(3%, 4%);
  }

  50% {
    transform: translate(-1%, 5%);
  }

  75% {
    transform: translate(4%, 3%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes bubble-bottom-float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(3%, 4%);
  }

  50% {
    transform: translate(-1%, 5%);
  }

  75% {
    transform: translate(4%, 3%);
  }

  100% {
    transform: translate(0, 0);
  }
}

.bs-popup-bubble-show.bs-popup-bubble-top {
  transform: translate(0, 0);
  -webkit-animation: bubble-top-float var(--animation-duration) ease-in-out
    var(--transition-time) infinite;
  animation: bubble-top-float var(--animation-duration) ease-in-out
    var(--transition-time) infinite;
}

@-webkit-keyframes bubble-top-float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-3%, -1%);
  }

  50% {
    transforom: translate(1%, 2%);
  }

  75% {
    transforom: translate(3%, 2%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes bubble-top-float {
  0% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(-3%, -1%);
  }

  50% {
    transforom: translate(1%, 2%);
  }

  75% {
    transforom: translate(3%, 2%);
  }

  100% {
    transform: translate(0, 0);
  }
} */

.bs-system-popup-content {
  transform: scale(0);
  /* transition: all 0.5s ease 0.2s; */
}

.bs-popup-open .bs-system-popup-content {
  transform: scale(0);
  -webkit-animation: popup-content-popin 0.1s ease forwards 0.2s;
  animation: popup-content-popin 0.1s ease forwards 0.2s;
}

@-webkit-keyframes popup-content-popin {
  0% {
    transform: scale(0);
  }

  80% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes popup-content-popin {
  0% {
    transform: scale(0);
  }

  90% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.bs-popup-system-inner {
  box-sizing: border-box;
  padding: 10px;
}

@media (max-height: 999px) {
  .bs-popup-system-inner {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (max-width: 599px) {
  .bs-popup-system-inner {
    padding: 0;
  }
}
