@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700;800;900&display=swap");

:root {
  --default-text-color: #333335;
  --default-border: #f3f3f3;
  --light-rgb: 243, 246, 248;
  --gray-1: #f9fafb;
  --gray-2: #f2f4f5;
  --gray-3: #e6eaeb;
  --gray-4: #dbdfe1;
  --gray-5: #949eb7;
  --gray-6: #7987a1;
  --gray-7: #4d5875;
  --gray-8: #383853;
  --gray-9: #323251;
  --white-1: rgba(255, 255, 255, 0.1);
  --white-2: rgba(255, 255, 255, 0.2);
  --white-3: rgba(255, 255, 255, 0.3);
  --white-4: rgba(255, 255, 255, 0.4);
  --white-5: rgba(255, 255, 255, 0.5);
  --white-6: rgba(255, 255, 255, 0.6);
  --white-7: rgba(255, 255, 255, 0.7);
  --white-8: rgba(255, 255, 255, 0.8);
  --white-9: rgba(255, 255, 255, 0.9);
  --black-1: rgba(0, 0, 0, 0.1);
  --black-2: rgba(0, 0, 0, 0.2);
  --black-3: rgba(0, 0, 0, 0.3);
  --black-4: rgba(0, 0, 0, 0.4);
  --black-5: rgba(0, 0, 0, 0.5);
  --black-6: rgba(0, 0, 0, 0.6);
  --black-7: rgba(0, 0, 0, 0.7);
  --black-8: rgba(0, 0, 0, 0.8);
  --black-9: rgba(0, 0, 0, 0.9);
  --success-rgb: 38, 191, 148;
  --secondary-rgb: 35, 183, 229;
  --pending-rgb: 241, 141, 20;
  --danger-rgb: 230, 83, 60;
}

:root {
  --white: #ffffff;
  --darkblue: #000d4d;
  --darkblue-t: #2b47d3;
  --blue: #0068dd;
  --lightblue: #6ec2fa;
  --lightblue-t: #b6defa;
  --orange: #ff7941;
  --lightorange: #fbb89d;
  --navLinks: #5f5f5f;
  --default-color: #8c9097;
  --default-font: "Poppins", sans-serif;
  --body-bg: #f0f1f7;
  --border-input: #e9edf6;
  --green: #2cbf94;
  --red: red;
  --primary-rgb: #000d4d;
  --primary03: rgba(var(--primary-rgb), 0.3);
  --bs-border-radius: 0.375rem;
  --bs-border-width: 1px;
  --bs-card-inner-border-radius: calc(
    var(--bs-border-radius) - (var(--bs-border-width))
  );
  --account-color: #8c9097;
  --success: #226094;
  --black: #000;
  --text-muted: #92969c;
  --placeholder: #ccc;
  --default-text-color: #333335;
  --default-border: #f3f3f3;
  --light-rgb: 243, 246, 248;
  --danger: rgb(230, 83, 60);
  --default-text-color: #333335;
}

body {
  font-family: var(--default-font);
  font-size: 14px;
  font-weight: 400;
  color: var(--default-text-color);
  background: var(--body-bg);
  line-height: 25px;
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow-x: hidden;
}

.container {
  /* max-width: 95%; */
}

*:focus,
input:focus {
  outline: none;
}

.form-control:focus,
.form-control:hover,
.btn-link:focus,
.form-select:hover,
.form-check-input:focus,
.form-check-input:hover {
  outline: none;
  box-shadow: none;
  border-color: var(--lightblue);
}

::placeholder {
  color: var(--placeholder) !important;
  opacity: 1;
  font-weight: 400 !important;
}

:-ms-input-placeholder {
  color: var(--placeholder) !important;
}

::-ms-input-placeholder {
  color: var(--placeholder) !important;
}

a {
  color: var(--darkblue);
  text-decoration: none;
}

b,
strong {
  font-weight: 600;
}

.h-100 {
  height: 100%;
}

.relative {
  position: relative;
}

.lightblue {
  color: var(--lightblue);
}

.orange {
  color: var(--orange);
}

.green {
  color: var(--green);
}

.red {
  color: var(--red);
}

.blue {
  color: var(--blue);
}

.darkblue {
  color: var(--darkblue);
}

.text-normal {
  color: var(--default-color);
}

.absolute {
  position: absolute;
  right: 15px;
  top: 15px;
}

h2 {
  color: var(--darkblue);
  font-size: 22px;
  font-weight: 400;
}

h3 {
  color: var(--blue);
  font-size: 19px;
}

h4 {
  color: var(--darkblue);
  font-size: 15px;
}

p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.btn-primary,
.btn-primary-c {
  color: var(--white);
  background-color: var(--darkblue);
  border-color: var(--darkblue);
  padding: 14px 25px;
  font-size: 14px;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary-c:hover,
.btn-primary-c:focus {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  outline: 0;
  box-shadow: none;
}

.btn-secondary {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  padding: 8px 25px;
  font-size: 14px;
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--white);
  background-color: var(--darkblue);
  border-color: var(--darkblue);
  outline: 0;
  box-shadow: none;
}

.btn-nav {
  color: var(--white);
  background-color: var(--darkblue);
  border-color: var(--blue);
  padding: 9px 18px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
}

.btn-nav:hover,
.btn-nav:focus {
  color: var(--white);
  background-color: var(--darkblue);
  border-color: var(--darkblue);
  outline: 0;
  box-shadow: none;
}

.btn-added {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  padding: 9px 18px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
}

.btn-added:hover,
.btn-added:focus {
  color: var(--white);
  background-color: var(--blue);
  border-color: var(--blue);
  outline: 0;
  box-shadow: none;
}

.btn-cancel {
  color: var(--darkblue);
  background-color: transparent;
  border-color: transparent;
  padding: 5px;
  border-radius: 0px;
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
}

.btn-cancel:hover,
.btn-cancel:focus {
  color: var(--darkblue);
  background-color: transparent;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.btn-cancel-c {
  color: var(--white);
  background-color: var(--text-muted);
  border-color: var(--text-muted);
  padding: 9px 18px;
  border-radius: 5px;
  font-weight: 400;
  font-size: 14px;
}

.btn-primary-c {
  padding: 9px 18px;
  font-weight: 400;
}

.btn-cancel-c:hover,
.btn-cancel-c:focus {
  color: var(--white);
  background-color: var(--default-color);
  border-color: var(--default-color);
  outline: 0;
  box-shadow: none;
}

.form-control {
  display: block;
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.5;
  color: var(--default-color);
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--border-input);
  border-radius: 5px;
}

.form-select {
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--default-color);
  border: 1px solid var(--border-input);
  border-radius: 5px;
}

.country-img.form-select {
  padding: 15px 20px 15px 40px !important;
}

.navbar {
  padding-top: 4px;
  padding-bottom: 4px;
  border-block-end: 1px solid #f3f3f3;
  inset-block-start: 0;
  inset-inline: 0;
  background: var(--white);
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-menu[data-bs-popper] {
  right: 0;
  left: auto;
}

.navbar .navbar-nav .nav-link {
  color: var(--navLinks);
  font-weight: 400;
  font-size: 14px;
  padding-right: 15px;
  padding-left: 15px;
}

.navbar .navbar-nav .nav-link:hover {
  color: var(--navLinks);
}

.navbar-light .navbar-toggler {
  color: var(--blue);
  border-color: transparent;
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230068DD' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler:focus {
  box-shadow: none;
}

.dropdown-menu {
  font-size: 14px;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--orange);
  content: var(--bs-breadcrumb-divider, "/");
}

.section-content {
  min-height: 70vh;
}

.card.custom-card {
  border-radius: 5px;
  border: 0;
  background-color: var(--white);
  box-shadow: 0 0.125rem 0 rgba(10, 10, 10, 0.04);
  position: relative;
  margin-block-end: 1.5rem;
  width: 100%;
  padding: 50px;
}

.mob-e {
  flex: 0 0 auto;
  width: 80%;
  padding: 0;
}

.mob-w {
  flex: 0 0 auto;
  width: 20%;
  padding: 0;
}

.indicators-centric {
  background: var(--darkblue);
  margin-left: -3%;
  margin-right: -3%;
  padding: 20px;
}

#signUpForm {
  box-shadow: none;
  border-radius: 0px;
}

#signUpForm .form-header {
  gap: 5px;
  text-align: center;
}

#signUpForm .form-header .stepIndicator {
  position: relative;
  flex: 1;
  padding-bottom: 30px;
  color: var(--body-bg);
}

#signUpForm .form-header .stepIndicator.active {
  font-weight: 600;
}

#signUpForm .form-header .stepIndicator.finish {
  font-weight: 600;
  color: var(--white);
}

#signUpForm .form-header .stepIndicator::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  border: 2px solid var(--lightblue);
}

#signUpForm .form-header .stepIndicator.active::before {
  background-color: var(--lightblue);
  border: 2px solid var(--blue);
}

#signUpForm .form-header .stepIndicator.finish::before {
  background-color: var(--orange);
  border: 2px solid var(--lightorange);
}

#signUpForm .form-header .stepIndicator::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 100%;
  height: 3px;
  background-color: #f3f3f3;
}

#signUpForm .form-header .stepIndicator.active::after {
  background-color: var(--lightblue);
}

#signUpForm .form-header .stepIndicator.finish::after {
  background-color: var(--blue);
}

#signUpForm .form-header .stepIndicator:last-child:after {
  display: none;
}

#signUpForm input {
  padding: 15px 20px;
  width: 100%;
  font-size: 1em;
  border-radius: 5px;
}

#signUpForm input.form-check-input {
  padding: 7px;
  width: auto;
}

#signUpForm input:focus {
  border: 1px solid var(--lightblue);
  outline: 0;
}

#signUpForm input.invalid {
  border: 1px solid #ffaba5;
}

#signUpForm .step {
  display: none;
  padding-left: 20%;
  padding-right: 20%;
  height: calc(100vh - 268px);
  overflow-y: scroll;
  margin-bottom: 20px;
  position: relative;
  overflow-x: hidden;
}

#signUpForm .step.second-one {
  padding-left: 10px;
  padding-right: 10px;
}

.second-one .btn-secondary {
  position: absolute;
  right: 10px;
  top: 0;
}

#signUpForm .form-footer {
  overflow: auto;
  gap: 20px;
}

#signUpForm .form-footer button {
  background-color: var(--white);
  border: 0px solid #009688 !important;
  color: var(--darkblue);
  border: none;
  padding: 10px 30px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 5px;
  /* flex: 1; */
  margin-top: 5px;
}

#signUpForm .form-footer button:hover {
  opacity: 0.8;
}

#signUpForm .form-footer #prevBtn {
  background-color: var(--white);
  color: var(--blue);
}

.plan-box {
  background: var(--white);
  padding: 20px;
  font-size: 12px;
  border-radius: 5px;
  font-weight: 400;
  min-height: 345px;
  position: relative;
  border: 1px solid var(--white);
  margin-bottom: 15px;
}

.plan-box:hover {
  box-shadow: 0px 14px 59px 0px rgba(54, 56, 72, 0.07);
  background: #fff;
  border: 1px solid var(--primary-rgb);
}

.plan-box.active {
  border: 1px solid var(--primary-rgb);
}

.plan-box h2,
.addon-content h2,
.summary-centric h2,
.summary-content h2 {
  font-size: 18px;
  margin-top: 5px;
}

.plan-box h3,
.addon-content h3,
.summary-content h3 {
  font-size: 14px;
}

.plan-c {
  background: var(--orange);
  color: var(--white);
  padding: 3px 5px;
  border-radius: 5px;
  font-size: 12px;
}

.modal-header {
  flex-direction: column;
  align-items: start;
}

.modal-header .btn-close {
  position: absolute;
  right: 15px;
  top: 30px;
}

.modal-body {
  padding: 12px;
}

.modal-body p {
  color: var(--default-color);
}

.counts {
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
}

.border-bottom {
  border-bottom: 1px solid var(--border-input) !important;
}

.footer {
  border-top: 1px solid var(--border-input);
  font-size: 13px;
}

.addons-centric {
  margin-left: 15%;
  margin-right: 15%;
}

.addons-centric.nav-fill .nav-item {
  padding: 15px;
}

.addons-centric.nav-fill .nav-item .nav-link {
  padding: 15px;
  background: var(--darkblue);
  color: var(--white);
  border-radius: 5px;
}

.addons-centric.nav-pills .nav-link.active,
.addons-centric.nav-pills .show > .nav-link {
  color: var(--white);
  background-color: var(--blue);
}

.tab-content {
  margin-top: 30px;
}

.addon-content {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
  padding: 10px 15px;
}

.create-account {
  /* margin-left: 10%; */
  /* margin-right: 10%; */
  margin-top: 30px;
  background: #fff;
}

#signUpForm .create-account input,
.create-account .form-select {
  padding: 15px 20px;
}

#signUpForm .create-account input.form-check-input {
  padding: 7px;
}

.account-border {
  border: 1px #ddd solid;
  padding: 20px;
  border-radius: 4px;
}

.account-border:hover {
  border: 1px var(--lightblue) solid;
}

.flag-centric {
  position: absolute;
  top: 15px;
  left: 21px;
  width: 23px;
}

.summary-centric {
  background: var(--white);
  padding: 30px;
}

.summary-content {
  border-radius: 2px;
  background: var(--white);
  box-shadow: none;
  margin-bottom: 20px;
  border: 1px solid var(--default-border);
  padding: 10px 15px;
}

.dropdown-menu-lg {
  min-width: 20rem;
}

.dropdown-menu-header {
  border-bottom: 0px solid #dee2e6;
  font-weight: 600;
  padding: 0.75rem;
  text-align: center;
}

.list-group-item {
  border-left: 0;
  border-right: 0;
}

.dropdown .list-group .list-group-item:first-child,
.dropdown .list-group .list-group-item:last-child {
  border-radius: 0;
}

.dropdown-menu-footer {
  display: block;
  font-size: 0.75rem;
  padding: 0.5rem;
  text-align: center;
}

.nav-item .indicator {
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.05);
  color: #fff;
  display: block;
  font-size: 0.675rem;
  height: 18px;
  padding: 1px;
  position: absolute;
  right: -8px;
  text-align: center;
  top: 0;
  transition: top 0.1s ease-out;
  width: 18px;
}

.nav-icon {
  color: #6c757d;
  display: block;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 0.1rem 0.8rem;
  transition: background 0.1s ease-in-out, color 0.1s ease-in-out;
}

.footer-centric {
  background: var(--white);
  line-height: 20px;
  padding: 40px 0;
}

.footer-centric h3 {
  color: var(--darkblue);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-below {
  margin-top: 30px;
}

.breadcrumb-item.active {
  font-weight: 500;
}

.card.custom-card1 {
  color: var(--navLinks) !important;
  border-radius: 0.5rem;
  border: 0;
  background-color: var(--white);
  box-shadow: 0 0.125rem 0 rgba(10, 10, 10, 0.04);
  position: relative;
  margin-block-end: 1.5rem;
  width: 100%;
}

.team-member-card .teammember-cover-image {
  position: relative;
  /* background: #000D4D; */
}

.team-member-card .teammember-cover-image:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--primary03);
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 0;
  inset-block-end: 0;
}

.team-member-card .teammember-cover-image .card-img-top {
  width: 100%;
  height: auto;
}

.team-member-card {
  overflow: hidden;
}

.card-img-top {
  border-top-left-radius: var(--bs-card-inner-border-radius);
  border-top-right-radius: var(--bs-card-inner-border-radius);
}

.avatar.avatar-xl {
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.25rem;
}

.list-unstyled {
  line-height: normal;
}

.team-member-card .avatar {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 1rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}

.avatar.avatar-rounded img {
  border-radius: 50%;
}

.team-member-card .teammember-cover-image .team-member-star {
  position: absolute;
  inset-block-start: 0.75rem;
  padding: 0.375rem;
  inset-inline-end: 0.75rem;
  background-color: rgba(243, 236, 248, 1);
  border-radius: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 60px;
}

.team-member-details {
  margin-top: -40px;
}

.team-member-details {
  margin-top: -60px;
  z-index: 10;
  color: var(--white);
  padding-left: 23%;
}

.team-member-card .card-body {
  color: var(--account-color) !important;
  font-weight: 300;
  min-height: 273px;
}

.card.custom-card1 .btn-primary {
  font-size: 13px;
  padding: 5px 10px;
}

.bg-orange {
  background: var(--orange);
  padding: 2px 3px;
  border-radius: 5px;
  font-weight: 400;
  color: var(--white);
}

.custom-card1 p.text-success {
  color: var(--success) !important;
}

.custom-card1 p.text-orange {
  color: var(--orange) !important;
}

input#switch[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}

label.switch {
  cursor: pointer;
  text-indent: -9999px;
  width: 26px;
  height: 16px;
  background: grey;
  border-radius: 100px;
  position: relative;
  vertical-align: middle;
}

label.switch:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

input:checked + label.switch {
  background: #0068dd;
}

input:checked + label:after {
  left: calc(100% - 3px);
  transform: translateX(-100%);
}

label:active:after {
  width: 130px;
}

.mb-5.mb-n {
  margin-bottom: 27px !important;
}

.self-service .card-header {
  background: var(--white);
  border-bottom: 1px #f3f3f3 solid;
}

.self-service .card-header h2,
.add-ons .card-title,
.card-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0;
}

.custom-card1 p,
.text-muted {
  color: var(--text-muted) !important;
  font-weight: 300;
}

.lmenu-items .text-muted {
  color: var(--black) !important;
  font-weight: 400;
}

.add-ons .card-header {
  background: var(--white);
  border-bottom: 1px #f3f3f3 solid;
}

.add-ons .fw-semibold {
  color: var(--primary-rgb) !important;
  font-weight: 400 !important;
}

.underline {
  text-decoration: underline;
}

.available-check {
  border: 1px #ccc solid;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.available-check.form-check .form-check-input[type="radio"] {
  margin-left: 10px;
  margin-right: 25px;
  border-radius: 50% !important;
}

.available-check.form-check input:checked + label {
  background: transparent;
}

.available-check h4 {
  margin-bottom: 0;
}

.register-account {
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 30px;
}

.title_lines {
  position: relative;
  font-size: 18px;
  z-index: 1;
  font-weight: 500;
  overflow: hidden;
  text-align: left;
  width: 100%;
  color: var(--darkblue);
}

.title_lines:after {
  position: absolute;
  top: 51%;
  overflow: hidden;
  width: 98%;
  height: 2px;
  content: "\a0";
  background-color: var(--blue);
  margin-left: 2%;
}

.et_pb_contact_form_label {
  display: block;
  color: black;
  font-weight: bold;
  letter-spacing: 1.2px;
  font-size: 18px;
  padding-bottom: 5px;
}

input[id="et_pb_contact_brand_file_request_0"] {
  display: none;
}

label[for="et_pb_contact_brand_file_request_0"] {
  background: #fff;
  height: 110px;
  border: 1px solid var(--lightblue);
  box-sizing: border-box;
}

label[for="et_pb_contact_brand_file_request_0"]:after {
  display: block;
  content: "+ Add Signature";
  background: var(--blue);
  width: 150px;
  height: 27px;
  line-height: 30px;
  font-size: 13px;
  color: white;
  font-weight: 400;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

label[for="et_pb_contact_brand_request_0"]:after {
  content: " (Provide link or Upload files if you already have guidelines)";
  font-size: 12px;
  letter-spacing: -0.31px;
  color: #7a7a7a;
  font-weight: normal;
}

label[for="et_pb_contact_design_request_0"]:after {
  content: " (Provide link or Upload design files)";
  font-size: 12px;
  letter-spacing: -0.31px;
  color: #7a7a7a;
  font-weight: normal;
}

label[for="et_pb_contact_brand_file_request_0"].changed,
label[for="et_pb_contact_brand_file_request_0"]:hover {
  background-color: #e3f2fd;
}

label[for="et_pb_contact_brand_file_request_0"] {
  cursor: pointer;
  transition: 400ms ease;
  padding-top: 41px;
}

.file_names {
  display: block;
  color: black;
  left: 0;
  font-size: 13px;
  font-weight: 300;
}

.file_names {
  text-align: center;
}

.pright-22 {
  padding-right: 22%;
}

/*search*/
.search-tags {
  font-size: 0.75rem;
  color: var(--default-text-color);
  border: 1px solid var(--default-border);
  border-radius: 0.25rem;
  background-color: rgb(var(--light-rgb));
  padding: 0.125rem 0.55rem;
  line-height: 1.2rem;
  display: inline-flex;
  align-items: center;
  cursor: default;
  font-weight: 400;
  margin: 0.25rem 0;
}

.searchBox-c .modal-body {
  padding: 35px;
}

.searchBox-c .modal-footer {
  padding: 0 0 35px 0;
}

.search-tags a.tag-addon {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  padding: 0 0.5rem;
  color: inherit;
  font-size: 7px;
  text-decoration: none;
  background: rgb(var(--light-rgb));
  margin-inline-end: -0.4rem;
  margin-inline-start: 0.5rem;
  text-align: center;
  min-width: 1.5rem;
}

.small-btn .btn-primary,
.small-btn .btn-secondary,
.small .btn-cancel-c {
  font-size: 14px;
  padding: 9px 18px;
}

.verify-c .modal-body {
  padding: 35px;
}

.verify-c .modal-footer {
  padding: 0 35px 35px 35px;
}

.authentication {
  min-height: 100vh;
  /* background: #fff; */
}

.h-100 {
  height: 100% !important;
}

.authentication .btn-light {
  background-color: var(--white);
  border-color: rgb(var(--light-rgb));
  color: var(--default-text-color);
  border-left: 1px var(--white) solid;
}

#button-addon2 i,
.text-05 {
  color: var(--black-5);
}

.authentication .authentication-cover {
  background-image: url(../images/centric-bg-login.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30% 0 0 30%;
}
.authentication .authentication-cover.signup {
  background-image: url(../images/centric-bg-signup.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 30% 0 0 30%;
}

.authentication .authentication-cover:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  inset-inline-end: 0;
  inset-block-start: 0;
  inset-block-end: 0;
  background-color: var(--primary02);
}

.authentication .authentication-cover .aunthentication-cover-content {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  /* -webkit-backdrop-filter: blur(0.3rem);
    backdrop-filter: blur(0.3rem); */
  padding: 2rem;
  position: relative;
  border-radius: 30% 0 0 30%;
}

.cont-centric-c {
  background: #fff;
  padding: 30px;
  border-radius: 5px;
}

.btn-danger {
  color: var(--white);
  background-color: var(--danger);
  border-color: var(--danger);
  font-size: 12px;
  padding: 2px 7px;
}

.btn-danger:hover,
.btn-danger:focus {
  color: var(--white);
  background-color: var(--orange);
  border-color: var(--orange);
  outline: 0;
  box-shadow: none;
}

.avatar {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.avatar.avatar-xxl {
  width: 5rem;
  height: auto;
  line-height: 5rem;
  font-size: 1.5rem;
}

.bg-success-transparent {
  background-color: rgba(var(--success-rgb), 0.1) !important;
  color: rgb(var(--success-rgb)) !important;
}
.bg-danger-transparent {
  background-color: rgba(var(--danger-rgb), 0.1) !important;
  color: rgb(var(--danger-rgb)) !important;
}

.bg-secondary {
  background-color: rgb(var(--secondary-rgb)) !important;
}

.card.custom-card.summary-cart {
  border-radius: 0px;
  border: 0;
  box-shadow: 0;
  padding: 50px 0 0 0;
}

.coupon-code {
  margin-bottom: 10px;
}

.coupon-code input {
  padding: 8px 12px !important;
}

.verify-c .form-control {
  padding: 15px 0.75rem;
  font-size: 17px;
  text-align: center;
  font-weight: 400;
  color: #000;
}

.modal-footer {
  border-top: 0;
  justify-content: center;
}

.search-cf .form-control {
  background-color: transparent;
  padding: 5px 0.5rem;
  text-transform: none;
}

.search-cf.border-bottom {
  border-bottom: 1px solid var(--placeholder) !important;
}

.form-select.filter-cf {
  padding: 10px 30px 10px 10px;
  width: auto;
  display: inline;
}

.btn.btn-success-light {
  background-color: rgba(var(--success-rgb), 0.1);
  color: rgb(var(--success-rgb));
}

.btn.btn-danger-light {
  background-color: rgba(var(--danger-rgb), 0.1);
  color: rgb(var(--danger-rgb));
}

.btn.btn-pending-light {
  background-color: rgba(var(--pending-rgb), 0.1);
  color: var(--orange);
}

.table thead tr th {
  font-weight: 500;
  font-size: 0.85rem;
}

.table td,
.table th {
  padding: 0.75rem;
  vertical-align: middle;
  line-height: 1.462;
  font-weight: 300;
}

.table > :not(caption) > * > * {
  color: var(--default-text-color);
}

.btn-group-sm > .btn,
.btn-sm {
  font-weight: 500;
  --bs-btn-font-size: 0.75rem;
}

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

.formbold-mb-5 {
  margin-bottom: 20px;
  background: #f6f9ff;
  border-radius: 10px;
}

.formbold-pt-3 {
  padding-top: 12px;
}

.formbold-main-wrapper {
  display: flex;
  align-items: top;
  justify-content: center;
}

.formbold-form-wrapper {
  margin: 0 auto;
  width: 100%;
  background: white;
}

.formbold-form-label {
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #07074d;
  margin-bottom: 12px;
}

.formbold-form-label-2 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 20px;
}

.formbold-form-input {
  width: 100%;
  padding: 12px 24px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background: white;
  font-weight: 500;
  font-size: 16px;
  color: #6b7280;
  outline: none;
  resize: none;
}

.formbold-form-input:focus {
  border-color: #6a64f1;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold-btn {
  text-align: center;
  font-size: 16px;
  border-radius: 6px;
  padding: 14px 32px;
  border: none;
  font-weight: 600;
  background-color: #6a64f1;
  color: white;
  cursor: pointer;
}

.formbold-btn:hover {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
}

.formbold--mx-3 {
  margin-left: -12px;
  margin-right: -12px;
}

.formbold-px-3 {
  padding-left: 12px;
  padding-right: 12px;
}

.formbold-file-input input {
  opacity: 0;
  position: absolute;
  /* width: 100%;
    height: 100%; */
}

.formbold-file-input label {
  position: relative;
  border: 2px dashed var(--lightblue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.formbold-file-input .fa {
  font-size: 18px;
  color: var(--blue);
}

.formbold-drop-file {
  display: block;
  font-weight: 400;
  font-size: 14px;
  color: #505251;
  margin-bottom: 0px;
}

.formbold-or {
  font-weight: 500;
  font-size: 14px;
  color: #505251;
  display: block;
  margin-bottom: 8px;
}

.formbold-browse {
  font-weight: 500;
  font-size: 14px;
  color: #1c374c;
  display: inline-block;
  padding: 0 8px;
  cursor: pointer;
}

.formbold-file-list {
  border-radius: 6px;
  background: #f5f7fb;
  padding: 16px 32px;
}

.formbold-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.formbold-file-item button {
  color: #07074d;
  border: none;
  background: transparent;
  cursor: pointer;
}

.formbold-file-name {
  font-weight: 400;
  font-size: 14px;
  color: #505251;
  padding-right: 10px;
  padding-left: 10px;
}

.formbold-progress-bar {
  margin-top: 20px;
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 8px;
  background: #e2e5ef;
}

.formbold-progress {
  position: absolute;
  width: 75%;
  height: 100%;
  left: 0;
  top: 0;
  background: #1c374c;
  border-radius: 8px;
}

.tooltip-inner {
  border-radius: 4px;
  background: rgba(var(--danger-rgb), 0.1);
  box-shadow: none;
  opacity: 1 !important;
  color: rgb(var(--danger-rgb));
  font-weight: 500 !important;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}

.tooltip.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: rgba(var(--danger-rgb), 0.1);
}

.tooltip.bs-tooltip-bottom .tooltip-arrow::before {
  border-bottom-color: rgba(var(--danger-rgb), 0.1);
}

.tooltip.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: rgba(var(--danger-rgb), 0.1);
}

.tooltip.bs-tooltip-end .tooltip-arrow::before {
  border-right-color: rgba(var(--danger-rgb), 0.1);
}

a.btn-pending-light {
  background-color: transparent;
  color: var(--orange);
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--white);
}

.subaccount-acrdn .accordion-button {
  padding: 10px 0px;
  font-size: 14px;
}

.subaccount-acrdn .accordion-body {
  padding: 10px;
  position: relative;
}

.subaccount-acrdn .accordion-button .table > :not(caption) > * > *,
.subaccount-acrdn .accordion-button .table {
  border-bottom: 0;
}

.subaccount-acrdn .accordion-button .table td {
  padding: 0 10px;
}

.subaccount-acrdn .accordion-button .table {
  margin-bottom: 0;
}

.subaccount-acrdn .accordion-button::after {
  position: absolute;
  right: 0;
}

.subaccount-acrdn .accordion-button .table-responsive {
  width: 100%;
}
.subaccount-acrdn .accordion-body .nav-pills .nav-link {
  color: var(--default-text-color);
}
.subaccount-acrdn .accordion-body .nav .nav-item button.active {
  background-color: transparent;
  color: var(--blue) !important;
}

.subaccount-acrdn .accordion-body .nav .nav-item button.active::after {
  content: "";
  border-bottom: 4px solid var(--blue);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
  border-radius: 5px 5px 0 0;
}

.subaccount-acrdn.accordion .three-dots:after {
  cursor: pointer;
  color: var(--orange);
  content: "\2807";
  font-size: 20px;
  padding: 0 5px;
}

.subaccount-acrdn.accordion .dropdown {
  position: absolute;
  right: 10px;
  background-color: var(--white);
  border: 1px solid var(--default-border);
  box-shadow: none;
  outline: none;
  opacity: 0;
  padding: 10px;
  z-index: -1;
  max-height: 0;
  border-radius: 4px;
}

.subaccount-acrdn.accordion .dropdown-container:focus {
  outline: none;
}

.subaccount-acrdn.accordion .dropdown-container:focus .dropdown,
.accordion .dropdown-container:hover .dropdown {
  opacity: 1;
  z-index: 1000;
  max-height: 100vh;
}
.subaccount-acrdn.accordion .dropdown a div {
  padding: 4px 0;
  font-size: 13px;
  color: var(--default-color);
}
.subaccount-acrdn.accordion .dropdown a div:hover {
  color: var(--default-text-color);
}
.subaccount-acrdn .tab-content {
  margin-top: 0px;
}
.subaccount-acrdn .card-content {
  border: 1px solid var(--gray-2);
  background: var(--gray-1);
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
}
.subaccount-acrdn .card-content h4 {
  color: var(--black);
  font-size: 14px;
  font-weight: 500;
}
.subaccount-acrdn .card-content p {
  margin-bottom: 0;
  color: var(--default-color);
  font-weight: 300;
}
.badge {
  font-size: 14px;
  font-weight: 400;
}
.subaccount-acrdn .badge {
  font-weight: 500;
  font-size: 0.75rem;
}
.subaccount-acrdn .btn-request-add {
  position: absolute;
  right: 11px;
  top: 6px;
}
.btn-info,
.btn-info:hover {
  background-color: var(--lightblue);
}
.btn-serviceline,
.btn-serviceline:hover {
  background-color: var(--darkblue);
}
.btn-grequest,
.btn-grequest:hover {
  background-color: var(--blue);
}
.btn-minstall,
.btn-minstall:hover {
  background-color: var(--green);
}
.btn-fservice,
.btn-fservice:hover {
  background-color: var(--success);
}

.label-btn {
  position: relative;
  margin-right: 5px;
  margin-bottom: 12px;
  font-size: 14px;
  padding: 9px;
}
.label-btn-icon {
  position: absolute;
  width: 2.25rem;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  inset-inline-start: -1px;
  inset-block-start: -1px;
  inset-block-end: -1px;
  background-color: var(--white-2);
}
.label-btn.dropdown-toggle::after,
.payment-btn.dropdown-toggle::after {
  display: inline-block;
  margin-inline-start: 0.25rem;
  vertical-align: 0;
  content: "\f078";
  font-family: var(--fa-style-family, "Font Awesome 6 Pro") !important;
  border: 0;
  font-size: 0.6rem;
  font-weight: 600;
}
.card.subAcnt-card {
  color: var(--navLinks) !important;
  border-radius: 0.5rem;
  border: 0;
  background-color: var(--darkblue);
  box-shadow: 0 0.125rem 0 rgba(10, 10, 10, 0.04);
  position: relative;
  margin-block-end: 1.5rem;
  width: 100%;
}
.card-header:first-child {
  background: var(--white) !important;
}
.card.card-mh {
  min-height: 350px;
}
.payment-btn {
  position: relative;
  margin-right: 7px;
  margin-bottom: 5px;
  font-size: 13px;
  padding: 5px 6px;
}
.btn.btn-third {
  font-size: 13px;
}
.signature {
  background: #fff;
  border: 1px solid var(--lightblue);
  padding: 20px;
}
.available-check.form-check .form-check-input[type="checkbox"] {
  margin-left: 10px;
  margin-right: 25px;
  border-radius: 25% !important;
}
.btn-offer {
  color: #fff;
  text-decoration: none;
  background: #6ec2fa;
  position: absolute;
  right: -1px;
  font-size: 12px;
  padding: 5px;
  bottom: -1px;
  border-radius: 5px 0px 0px 0px;
}
.btn-offer:hover {
  color: #fff;
  text-decoration: none;
  background: #6ec2fa;
}
.cfb {
  font-size: small;
  line-height: 1.4;
  border: 0px solid #000;
  float: left;
  padding: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: #fff;
}
.cfb section {
  border-bottom: 2px solid #000;
  padding: 0 0 0.25rem;
  margin: 0 0 0.5rem;
}
.cfb section h4 {
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 0.1rem;
}
.cfb section h5 {
  font-weight: 400;
  font-size: 0.8rem;
  padding-left: 1em;
  margin: 0;
}
.cfb section ul {
  padding: 0 0 0 1em;
  margin: 0 0 0.5rem;
}
.cfb section ul li {
  list-style-type: none;
  padding: 0 0 0 0.8em;
}
.cfb section h4 span,
.cfb section h5 span,
.cfb section ul li span:last-of-type,
.cfb section p span:last-of-type,
.cfb section p a {
  float: right;
  font-weight: 700;
}
.cfb section.monthly {
  border-bottom: 2px solid #000;
  padding: 0 0 0.25rem;
  margin: 0 0 0.5rem;
}
.cfb section.monthly h4 {
  font-weight: 700;
  font-size: 1rem;
  border-bottom: 5px solid #000;
  margin: 0 0 0.1rem;
}
.cfb section.monthly p {
  margin-top: 0.4em;
}
.abso-imgor {
  position: absolute;
  right: -33px;
  top: 44px;
  width: 30px;
}
.customer-v {
  font-weight: 600;
  color: var(--darkblue);
  font-size: 17px;
  margin-top: 20px;
  margin-bottom: 15px;
}
.validated-u {
  background: var(--lightblue);
  color: #fff;
  border-radius: 5px;
  padding: 6px 10px;
  margin-right: 10px;
  font-weight: 400;
  font-size: 15px;
}
.card-headusr {
  border: 1px solid var(--white);
  background: var(--white);
  padding: 0px 10px;
  margin-top: 0px;
  border-radius: 4px;
  font-weight: 500;
  color: #454444;
}
.card-verfdusr {
  border: 1px solid var(--gray-4);
  background: var(--white);
  padding: 5px 10px;
  margin-top: 2px;
  border-radius: 4px;
  font-weight: 300;
  color: #454444;
}
.indicator-m {
  background: var(--orange);
  border-radius: 50%;
  color: #fff;
  font-size: 0.675rem;
  display: inline-block;
  height: 20px;
  text-align: center;
  width: 20px;
  position: relative;
  top: -2px;
  line-height: 20px;
  margin-left: 10px;
}
.form-select.filter-small {
  padding: 4px 30px 4px 10px;
  width: auto;
  display: inline;
}
.b-c {
  border: 1px #ccc solid;
  background: #ccc;
  padding: 5px !important;
  border-radius: 5px;
}
.minh-105 {
  min-height: 105px;
}
.viewall-btn {
  position: absolute;
  bottom: 0px;
  width: 100%;
  border-radius: 10px;
}
.active-requests th {
  background: var(--darkblue);
  color: #fff;
}
.messageListing td {
  border: 0;
}
.left-border {
  background: var(--darkblue);
  width: 50px;
  height: 80%;
}
.form-check-input:disabled {
  background: #999;
  opacity: 0.5;
}
.accordion-button.message-center {
  display: block;
}
.accordion-button.message-center p {
  width: 80%;
}
.subaccount-acrdn .accordion-button.message-center::after {
  position: absolute;
  right: 0;
  top: 50%;
}
.accordion-button.message-center p.small,
.m-date {
  color: var(--black-3);
}
.accordion-button.message-center div.absolute {
  position: absolute;
  top: 50%;
  right: 37px;
  color: var(--blue);
}
.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 49px;
  line-height: 49px;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}
.bg-none {
  background: transparent;
}
.fa-message {
  font-size: 16px;
}
.accordion-button.messagelist:not(.collapsed)::after {
  background-image: none;
}
.accordion-button.messagelist p {
  width: 100%;
}
.card.card-announcements {
  min-height: 180px;
}
.card-announcements .card-body {
  height: 170px;
  overflow-y: scroll;
}
.column,
.columns {
  margin-left: 10px;
  margin-right: 10px;
}
.new-ol {
  width: calc(100% - 20px);
}
.new-ol ol {
  padding-left: 0px;
}
.accordion-item,
.accordion-item:hover,
.accordion-item:focus {
  border-radius: 0;
  border: 0;
  border-bottom: 1px #ddd solid;
}
.accordion-item:first-of-type .accordion-button,
.accordion-item:last-of-type .accordion-button.collapsed,
.accordion-item:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion-item:first-of-type .accordion-button,
.accordion-item:first-of-type .accordion-button.collapsed {
  border-bottom: 0px #ddd solid;
  outline: 0;
}
.accordion-item:last-of-type {
  border-bottom: 0px #ddd solid;
}

@media (min-width: 540px) {
  .sm\:w-half {
    width: 50%;
  }
}

@media screen and (max-width: 1536px) {
  .summary-content {
    padding: 14px 15px;
  }
}
@media screen and (max-width: 1505px) {
  .card.card-mh {
    min-height: 400px;
  }
}

@media screen and (max-width: 1440px) {
  .summary-content {
    padding: 16px 15px;
  }
}

@media screen and (max-width: 1280px) {
  .summary-content {
    padding: 10px 15px;
  }
}

@media screen and (max-width: 1240px) {
  .label-btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 1060px) {
  #signUpForm .step {
    padding-left: 15%;
    padding-right: 15%;
  }
}

@media screen and (max-width: 991px) {
  .mob-w,
  .mob-e {
    flex: 0 0 auto;
    width: 50%;
  }

  .navbar-nav.navicon-centric {
    flex-direction: row;
    padding-right: 0;
  }

  .navbar-nav.navicon-centric .dropdown-menu {
    position: absolute;
  }

  .navbar-light .navbar-toggler {
    padding-left: 0;
  }

  .navicon-centric .nav-icon {
    padding: 0.1rem 0.5rem;
  }

  .dropdown-menu-lg {
    min-width: 18rem;
  }

  .navicon-centric .dropdown-menu[data-bs-popper] {
    right: 0;
    left: 0;
    transform: translateX(-80%);
  }

  .navicon-centric .dropdown-item {
    white-space: pre-wrap;
  }
}

@media screen and (max-width: 885px) {
  .addons-centric {
    margin-left: 0;
    margin-right: 0;
  }

  #signUpForm .step {
    padding-left: 10px;
    padding-right: 10px;
    height: auto;
  }

  .create-account {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .create-account .ps-4 {
    padding-left: 12px !important;
    padding-top: 15px;
  }

  .create-account .ps-0 {
    padding-left: 0 !important;
    padding-right: 0;
  }

  .create-account .col-8 {
    padding-right: 0;
  }

  .second-one .btn-secondary {
    position: static;
    margin-bottom: 20px;
  }

  .footer-centric h3 {
    margin-top: 20px;
  }

  .formbold-file-list {
    padding: 16px;
  }
}
