@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  overflow-x: hidden;
  overflow-y: auto;
}

.loader-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  z-index: 100;
  background-color: #25a269;
  opacity: 0;
  cursor: wait !important;
  transition: all 0.2s ease;
  z-index: 9999 !important;
}
.loader-container .loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nova-shortcode-button {
  height: 50px;
  border-radius: 0;
  background-color: #10466c;
  color: white;
  font-size: 16px;
  text-transform: capitalize;
  padding: 0 35px;
  font-weight: 600;
  transition: all 0.3s ease;
  pointer-events: none;
}
.nova-shortcode-button:hover {
  background-color: #0c3654;
}

.nova-form-container {
  max-width: 100%;
  padding: 0 20px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}
.nova-form-container .nova-form-group {
  position: relative;
  padding: 0 20px;
  margin: 10px 0;
}
.nova-form-container .nova-form-group.n-w-100 {
  width: 100%;
}
.nova-form-container .nova-form-group.n-w-50 {
  width: 50%;
}
.nova-form-container .nova-form-group > input {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  width: 100%;
  height: 45px;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  padding-left: 20px;
  outline: 1px solid #000000;
  background-color: white;
  transition: all 0s;
}
.nova-form-container .nova-form-group > input:-webkit-autofill, .nova-form-container .nova-form-group > input:-webkit-autofill:hover, .nova-form-container .nova-form-group > input:-webkit-autofill:focus, .nova-form-container .nova-form-group > input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
.nova-form-container .nova-form-group label {
  height: 30px;
  position: absolute;
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  left: 20px;
  transform: translate(0, -50%);
  background-color: white;
  padding: 0 10px;
  transition: top 0.2s ease;
  top: 50%;
  pointer-events: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nova-form-container .nova-form-group .error {
  display: none;
  width: 17px;
  height: 19px;
  background-color: #cc3333;
  color: white;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(-50%, -50%);
}
.nova-form-container .nova-form-group .error .icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  padding-bottom: 1px;
}
.nova-form-container .nova-form-group .error .message {
  width: 200px;
  min-height: 50px;
  font-size: 14px;
  line-height: 20px;
  transition: opacity 0.1s ease;
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  background-color: #cc3333;
  color: white;
  position: absolute;
  top: 35px;
  right: -22px;
  padding: 5px;
  padding-left: 10px;
  border-radius: 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.nova-form-container .nova-form-group .error .message::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 16px solid #cc3333;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: -12px;
  right: 22px;
  transform: rotate(90deg);
}
.nova-form-container .nova-form-group.is-textarea textarea {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  width: 100%;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  padding-left: 20px;
  outline: 1px solid #000000;
  background-color: white;
  transition: none;
}
.nova-form-container .nova-form-group.is-textarea label {
  top: -2px;
}
.nova-form-container .nova-form-group.is-password .error {
  right: 55px !important;
}
.nova-form-container .nova-form-group .password-visibility-toggle {
  width: 25px;
  height: 25px;
  font-size: 13px;
  color: white;
  border-radius: 50%;
  background-color: #29b475;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
}
.nova-form-container .nova-form-group .password-visibility-toggle .icon-container {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.nova-form-container .nova-form-group .password-visibility-toggle .icon-container.eye-icon {
  display: none;
}
.nova-form-container .nova-form-group .password-visibility-toggle .icon-container.eye-slash-icon {
  display: flex;
}
.nova-form-container .nova-form-group .password-visibility-toggle.visible .eye-icon {
  display: flex;
}
.nova-form-container .nova-form-group .password-visibility-toggle.visible .eye-slash-icon {
  display: none;
}
.nova-form-container .nova-form-group.active label {
  top: -5%;
}
.nova-form-container .nova-form-group.active.is-textarea label {
  top: -2px;
}
.nova-form-container .nova-form-group.focus input {
  outline: 1px solid #29b475;
}
.nova-form-container .nova-form-group.focus textarea {
  outline: 1px solid #29b475;
}
.nova-form-container .nova-form-group.focus label {
  color: #29b475;
}
.nova-form-container .nova-form-group.error .error {
  display: block;
}
.nova-form-container .nova-form-group.error input {
  outline: 1px solid #cc3333;
}
.nova-form-container .nova-form-group.error textarea {
  outline: 1px solid #cc3333;
}
.nova-form-container .nova-form-group.error label {
  color: #cc3333;
}
.nova-form-container .nova-single-checkbox {
  height: 50px;
  position: relative;
  padding: 0 20px;
  margin: 15px 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.1s ease;
}
.nova-form-container .nova-single-checkbox:hover {
  color: #25a269;
}
.nova-form-container .nova-single-checkbox::before {
  content: "✔";
  font-size: 14px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  border: 2px solid #25a269;
  color: transparent;
  transition: all 0.1s ease;
}
.nova-form-container .nova-single-checkbox.active::before {
  color: white;
  background-color: #25a269;
}
.nova-form-container .nova-single-checkbox input {
  display: none;
}

.nova-container {
  width: 1140px !important;
  margin: auto !important;
}
@media (max-width: 1399px) {
  .nova-container {
    width: 1140px !important;
  }
}
@media (max-width: 1199px) {
  .nova-container {
    width: 960px !important;
  }
}
@media (max-width: 991px) {
  .nova-container {
    width: 720px !important;
  }
}
@media (max-width: 767px) {
  .nova-container {
    width: 540px !important;
  }
}
@media (max-width: 575px) {
  .nova-container {
    width: 100% !important;
  }
}

.nova-custom-dashboard p {
  width: 100% !important;
  line-height: 2 !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 20px !important;
  font-weight: 400 !important;
  color: #000000 !important;
}
.nova-custom-dashboard p a {
  text-decoration: none !important;
  text-transform: none;
  font-size: 22px !important;
  font-weight: 700 !important;
}
.nova-custom-dashboard p .nova-custom-dash-green-url {
  color: #25a269 !important;
}
.nova-custom-dashboard p .nova-custom-dash-green-url:hover {
  color: #10466c !important;
}
.nova-custom-dashboard p .nova-custom-dash-blue-url {
  color: #10466c !important;
}
.nova-custom-dashboard p .nova-custom-dash-blue-url:hover {
  color: #25a269 !important;
}

.nova-my-account-button.nova-active .elementor-icon-box-icon a {
  background-color: #29b475 !important;
}

.nova-h-1 {
  height: 25px !important;
}

.nova-h-2 {
  height: 50px !important;
}

.nova-h-3 {
  height: 75px !important;
}

.nova-h-4 {
  height: 100px !important;
}

.nova-h-5 {
  height: 125px !important;
}

.nova-h-6 {
  height: 150px !important;
}

.nova-h-7 {
  height: 175px !important;
}

.nova-h-8 {
  height: 200px !important;
}

.nova-h-9 {
  height: 225px !important;
}

.nova-h-10 {
  height: 250px !important;
}

.nova-h-11 {
  height: 275px !important;
}

.nova-h-12 {
  height: 300px !important;
}

.nova-h-13 {
  height: 325px !important;
}

.nova-h-14 {
  height: 350px !important;
}

.nova-h-15 {
  height: 375px !important;
}

.nova-h-16 {
  height: 400px !important;
}

.nova-h-17 {
  height: 425px !important;
}

.nova-h-18 {
  height: 450px !important;
}

.nova-h-19 {
  height: 475px !important;
}

.nova-h-20 {
  height: 500px !important;
}

.nova-w-1 {
  width: 25px !important;
}

.nova-w-2 {
  width: 50px !important;
}

.nova-w-3 {
  width: 75px !important;
}

.nova-w-4 {
  width: 100px !important;
}

.nova-w-5 {
  width: 125px !important;
}

.nova-w-6 {
  width: 150px !important;
}

.nova-w-7 {
  width: 175px !important;
}

.nova-w-8 {
  width: 200px !important;
}

.nova-w-9 {
  width: 225px !important;
}

.nova-w-10 {
  width: 250px !important;
}

.nova-w-11 {
  width: 275px !important;
}

.nova-w-12 {
  width: 300px !important;
}

.nova-w-13 {
  width: 325px !important;
}

.nova-w-14 {
  width: 350px !important;
}

.nova-w-15 {
  width: 375px !important;
}

.nova-w-16 {
  width: 400px !important;
}

.nova-w-17 {
  width: 425px !important;
}

.nova-w-18 {
  width: 450px !important;
}

.nova-w-19 {
  width: 475px !important;
}

.nova-w-20 {
  width: 500px !important;
}

.nova-w-21 {
  width: 525px !important;
}

.nova-w-22 {
  width: 550px !important;
}

.nova-w-23 {
  width: 575px !important;
}

.nova-w-24 {
  width: 600px !important;
}

.nova-w-25 {
  width: 625px !important;
}

.nova-w-26 {
  width: 650px !important;
}

.nova-w-27 {
  width: 675px !important;
}

.nova-w-28 {
  width: 700px !important;
}

.nova-w-29 {
  width: 725px !important;
}

.nova-w-30 {
  width: 750px !important;
}

.nova-w-31 {
  width: 775px !important;
}

.nova-w-32 {
  width: 800px !important;
}

.nova-w-33 {
  width: 825px !important;
}

.nova-w-34 {
  width: 850px !important;
}

.nova-w-35 {
  width: 875px !important;
}

.nova-w-36 {
  width: 900px !important;
}

.nova-w-37 {
  width: 925px !important;
}

.nova-w-38 {
  width: 950px !important;
}

.nova-w-39 {
  width: 975px !important;
}

.nova-w-40 {
  width: 1000px !important;
}

/** CUSTOM ELEMENTOR STYLES */
.nova-choose-plan-card-header img {
  margin-bottom: 10px !important;
  height: 40px;
  width: auto;
}
@media (max-width: 767px) {
  .nova-choose-plan-card-header img {
    height: 35px;
  }
}
@media (max-width: 575px) {
  .nova-choose-plan-card-header img {
    height: 40px;
  }
}

.nova-choose-plan-card-button a {
  width: 80% !important;
}

.nova-choose-plan-card-list li {
  line-height: 2.9 !important;
}

.woocommerce-table--custom-fields {
  display: none !important;
}

.woocommerce-order-details h2 {
  font-size: 26px !important;
  font-weight: 300 !important;
  color: var(--e-global-color-primary) !important;
  font-weight: 600 !important;
  margin-bottom: 1rem !important;
}

.wc-floating-error {
  position: fixed;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 98;
  pointer-events: auto;
}
.wc-floating-error .icon {
  width: 17px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  padding-bottom: 1px;
  background: #cc3333;
  color: white;
  font-size: 14px !important;
}
.wc-floating-error .icon:hover ~ .message {
  opacity: 1 !important;
}
.wc-floating-error .message {
  width: 200px;
  min-height: 50px;
  font-size: 14px;
  line-height: 20px;
  transition: opacity 0.1s ease;
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  background-color: #cc3333;
  color: white;
  position: absolute;
  top: 46px;
  right: -8px;
  padding: 5px;
  padding-left: 10px;
  border-radius: 0;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.wc-floating-error .message::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-right: 16px solid #cc3333;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: -12px;
  right: 22px;
  transform: rotate(90deg);
}

.nova-custom-alert {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 30px !important;
  color: white;
  background: #25a269;
  width: 100%;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
  padding: 10px 10px 10px 40px !important;
}
.nova-custom-alert::before {
  color: white;
  top: 10px !important;
  left: 15px !important;
  line-height: 30px !important;
}
.nova-custom-alert.woocommerce-info {
  background: #124e78;
}
.nova-custom-alert.woocommerce-error {
  background: #cc3333;
}
.nova-custom-alert li {
  line-height: 30px !important;
}

.nova-header .elementor-container.elementor-column-gap-default {
  justify-content: center !important;
}

.company-url-notice {
  margin-top: 8px;
  padding: 10px 12px;
  background: #fff8e6;
  border: 1px solid #ffd699;
  border-radius: 4px;
  font-size: 13px;
  color: #663c00;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.company-url-notice:hover {
  background: #fff2d6;
  border-color: #ffc266;
}

/* Optional: Add icon */
.company-url-notice::before {
  content: "⚠️ ";
  margin-right: 4px;
}/*# sourceMappingURL=nova-global-style.css.map */