:root {
  --font: "Open Sans", sans-serif;
  --font-awesome: "Font Awesome 6 Pro";
  --fw-light: 300;
  --fw-light-italic: 300;
  --fw-regular: 400;
  --fw-regular-italic: 400;
  --fw-semi-bold: 600;
  --fw-semi-bold-italic: 600;
  --fw-bold: 700;
  --fw-bold-italic: 700;
  --fw-extra-bold: 800;
  --primary: #2b83ed;
  --primary-dark: #d95224;
  --primary-light: #d95224;
  --secondary: #212121;
  --secondary-dark: #737373;
  --secondary-light: #737373;
  --border: #cfd6e3;
  --link: #2b83ed;
  --radius: 4px;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: var(--font);
  background-color: #fff;
  font-size: 13px;
  font-weight: var(--fw-regular);
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: #36364e;
  overflow-y: scroll;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--fw-regular);
}

strong {
  font-weight: var(--fw-semi-bold);
}

a {
  outline: 0;
  border: 0;
  text-decoration: none;
  color: #116ddc;
}

hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border: 0;
  border-top: 1px solid #e3e7f0;
}

.loader {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background: url("../images/loader.gif") no-repeat center center #fff fixed;
  z-index: 4;
}

header.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 55px;
  height: 55px;
  background: #161a1c;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
}
header.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.header .container .header-left a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
header.header .container .header-right {
  position: relative;
  margin-left: auto;
  display: none;
}
header.header .container .header-right .user-menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #fff;
  font-weight: var(--fw-semi-bold);
  text-decoration: none;
}
header.header .container .header-right .user-menu i {
  margin-left: 10px;
}
header.header .container .header-right .user-dropdown {
  position: absolute;
  width: 250px;
  top: 0;
  right: -11px;
  padding: 15px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #cfd6e3;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
          box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
header.header .container .header-right .user-dropdown.active {
  opacity: 1;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  visibility: visible;
}
header.header .container .header-right .user-dropdown::after, header.header .container .header-right .user-dropdown::before {
  bottom: 100%;
  right: 30px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
header.header .container .header-right .user-dropdown::after {
  border-color: transparent;
  border-bottom-color: #fff;
  border-width: 10px;
  margin-right: -10px;
}
header.header .container .header-right .user-dropdown::before {
  border-color: transparent;
  border-bottom-color: #cfd6e3;
  border-width: 11px;
  margin-right: -11px;
}
header.header .container .header-right .user-dropdown .user-details .user-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #36364e;
}
header.header .container .header-right .user-dropdown .user-details .user-info .data-row {
  margin-bottom: 10px;
}
header.header .container .header-right .user-dropdown .user-details .user-info .data-row strong {
  color: #36364e;
  display: block;
  margin-bottom: 5px;
}
header.header .container .header-right .user-dropdown .user-details .user-info .data-row strong i {
  margin-right: 5px;
}
header.header .container .header-right .user-dropdown .user-details .user-info .data-row span {
  display: block;
  color: #36364e;
}
header.header .container .header-right .user-dropdown .user-details .user-action .action-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 10px;
  color: #fff;
  background: #2b83ed;
  border-radius: 3px;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
}

section.wrapper {
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  -webkit-box-flex: 1;
          flex: 1 0 auto;
  padding: 0 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 55px;
}
section.wrapper .content {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767.98px) {
  section.wrapper .content {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 575.98px) {
  section.wrapper .content {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-statusbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -1px;
  margin-bottom: 25px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-statusbar {
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-statusbar .steps {
  text-align: center;
  -webkit-box-flex: 1;
          flex: 1 1 100%;
  -webkit-flex: 1 1 100%;
  -moz-flex: 1 1 100%;
  -ms-flex: 1 1 100%;
  max-width: 100%;
  margin: 0 1px;
}
section.wrapper .content .data-statusbar .steps .step-lbl {
  margin-bottom: 10px;
  font-size: 13px;
  color: #36364e;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-statusbar .steps .step-lbl {
    font-size: 12px;
  }
}
section.wrapper .content .data-statusbar .steps .step-progress {
  background-color: #e7eaf1;
  height: 7px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-statusbar .steps .step-progress {
    height: 4px;
  }
}
section.wrapper .content .data-statusbar .steps .step-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 7px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-statusbar .steps .step-progress::after {
    height: 4px;
  }
}
section.wrapper .content .data-statusbar .steps:first-child .step-progress {
  border-radius: 8px 0 0 8px;
}
section.wrapper .content .data-statusbar .steps:last-child .step-progress {
  border-radius: 0 8px 8px 0;
}
section.wrapper .content .data-statusbar .steps.complete .step-progress::after {
  width: 100%;
  background-color: #349d33;
}
section.wrapper .content .data-statusbar .steps.complete-half .step-progress::after {
  width: 50%;
  background-color: #349d33;
}
section.wrapper .content .account-status {
  padding: 25px 15px;
  padding-top: 0;
  text-align: center;
}
@media (max-width: 575.98px) {
  section.wrapper .content .account-status {
    padding: 15px 0;
    padding-top: 0;
  }
}
section.wrapper .content .account-status .ico i {
  color: #349d33;
  font-size: 45px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .account-status .ico i {
    font-size: 35px;
  }
}
section.wrapper .content .account-status .ac-head {
  color: #36364e;
  font-size: 22px;
  margin-top: 10px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .account-status .ac-head {
    font-size: 18px;
  }
}
section.wrapper .content .account-status .ac-subhead {
  color: rgba(54, 54, 78, 0.6);
  margin-top: 5px;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .account-status .ac-subhead {
    font-size: 13px;
  }
}
section.wrapper .content .skip-dashboard-sec {
  text-align: center;
  padding: 25px 15px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .skip-dashboard-sec {
    padding: 15px 0;
  }
}
section.wrapper .content .skip-dashboard-sec .sk-das-lnk a {
  text-decoration: underline;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .skip-dashboard-sec .sk-das-lnk a {
    font-size: 13px;
  }
}
section.wrapper .content .skip-dashboard-sec .sk-das-desc {
  margin-top: 10px;
  color: #36364e;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .skip-dashboard-sec .sk-das-desc {
    font-size: 13px;
  }
}
section.wrapper .content .data-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-weight: var(--fw-semi-bold);
  color: #36364e;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-title {
    font-size: 20px;
  }
}
section.wrapper .content .data-content {
  padding: 25px;
  border: 1px solid #e3e7f0;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 8px 1px #e3e7f0;
  box-shadow: 0 0 8px 1px #e3e7f0;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content {
    padding: 15px;
  }
}
section.wrapper .content .data-content hr.divider {
  margin-top: 20px;
  margin-bottom: 20px;
  border-top: 1px solid #e3e7f0;
}
section.wrapper .content .data-content hr.divider.full {
  margin-right: -25px;
  margin-left: -25px;
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content hr.divider.full {
    margin-right: -15px;
    margin-left: -15px;
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-content .data-header {
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-header {
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-content .data-header .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  font-size: 20px;
  font-weight: var(--fw-semi-bold);
  color: #36364e;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-header .title {
    font-size: 18px;
  }
}
section.wrapper .content .data-content .data-header .title span {
  margin-right: auto;
  margin-left: 0;
}
section.wrapper .content .data-content .data-header .title .close {
  opacity: 0.5;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  cursor: pointer;
  font-size: 20px;
  -ms-flex-item-align: center;
      align-self: center;
}
section.wrapper .content .data-content .data-header .title .close:hover {
  opacity: 1;
}
section.wrapper .content .data-content .data-header .title .link {
  font-size: 14px;
  text-decoration: none;
  font-weight: var(--fw-regular);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
section.wrapper .content .data-content .data-header .title .link i {
  margin-right: 10px;
  font-size: 20px;
  line-height: normal;
}
section.wrapper .content .data-content .data-header .title .btn {
  padding: 3px 12px;
  font-size: 15px;
  min-width: 70px;
  border-radius: 25px;
  font-weight: 600;
}
section.wrapper .content .data-content .data-header .title .btn i {
  margin-right: 4px;
  font-size: 13px;
}
section.wrapper .content .data-content .data-header .sub-title {
  font-size: 14px;
  color: #36364e;
  margin-top: 3px;
}
section.wrapper .content .data-content .data-header .sub-title p {
  margin-bottom: 10px;
}
section.wrapper .content .data-content .data-header .sub-title p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-header .sub-title {
    font-size: 13px;
  }
}
section.wrapper .content .data-content .data-body .sec-hdr {
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .sec-hdr {
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-content .data-body .sec-hdr .title {
  color: #36364e;
  font-size: 16px;
  font-weight: var(--fw-semi-bold);
  position: relative;
  padding-left: 15px;
}
section.wrapper .content .data-content .data-body .sec-hdr .title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: auto;
  margin: auto;
  height: 18px;
  width: 2px;
  background: #2db42c;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .sec-hdr .title::after {
    top: 3px;
    bottom: auto;
  }
}
section.wrapper .content .data-content .data-body .sec-hdr .sub-title {
  color: #36364e;
  font-size: 13px;
  margin-top: 2px;
  padding-left: 15px;
}
section.wrapper .content .data-content .data-body .account-table {
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .account-table {
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-content .data-body .account-table .table {
  background-color: #f3f4f8;
}
section.wrapper .content .data-content .data-body .account-table .table.table-bordered td {
  border: 2px solid #fff;
  color: #36364e;
  font-size: 14px;
  padding: 12px 15px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .account-table .table.table-bordered td {
    font-size: 13px;
    padding: 8px 10px;
  }
}
section.wrapper .content .data-content .data-body .captcha {
  padding-top: 10px;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
section.wrapper .content .data-content .data-body .already-regd {
  font-size: 14px;
  text-align: center;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .already-regd {
    font-size: 13px;
  }
}
section.wrapper .content .data-content .data-body .tc-accept {
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 23px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .tc-accept {
    margin-bottom: 15px;
  }
  section.wrapper .content .data-content .data-body .tc-accept br {
    display: none;
  }
}
section.wrapper .content .data-content .data-body .resend-otp {
  font-size: 14px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .resend-otp {
    font-size: 13px;
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-content .data-body .director-list {
  margin-bottom: 20px;
}
section.wrapper .content .data-content .data-body .director-list .director-item .form-group {
  margin-bottom: 15px;
}
section.wrapper .content .data-content .data-body .director-list .director-item .form-group .form-control.ownership {
  max-width: 100px;
}
section.wrapper .content .data-content .data-body .director-list .director-item .form-group .input-group .btn {
  padding: 0;
  padding-left: 12px;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
section.wrapper .content .data-content .data-body .director-list .director-item .form-group .input-group .btn:hover, section.wrapper .content .data-content .data-body .director-list .director-item .form-group .input-group .btn:focus, section.wrapper .content .data-content .data-body .director-list .director-item .form-group .input-group .btn:active {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
section.wrapper .content .data-content .data-body .director-list .director-item .form-group .input-group .btn.delete-btn {
  display: none;
}
section.wrapper .content .data-content .data-body .director-list .director-item .form-group .input-group .btn i {
  width: 16px;
}
section.wrapper .content .data-content .data-body .director-list .director-item .form-group .input-group .input-group-text {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
}
section.wrapper .content .data-content .data-body .device-list .device-item {
  background-color: #f5f8fa;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 20px;
}
@media (max-width: 375.98px) {
  section.wrapper .content .data-content .data-body .device-list .device-item {
    padding: 12px;
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 375.98px) {
  section.wrapper .content .data-content .data-body .device-list .device-item .device-data {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #fff;
  border: 1px solid #e4e8f1;
  border-radius: 4px;
  padding: 10px;
  height: 145px;
  width: 145px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-image img {
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-info .device-title {
  color: #252c57;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-info .device-desc {
  font-size: 13px;
  color: #252c57;
  margin-bottom: 10px;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-info .device-link {
  background-color: #fff;
  border: 1px solid #1572e8;
  border-radius: 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 24px;
  padding: 2px 10px;
  padding-right: 30px;
  text-decoration: none;
  outline: 0;
  margin-top: auto;
  font-weight: 600;
  position: relative;
  color: #1572e8;
  min-width: 119px;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-info .device-link:hover {
  color: #1572e8;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-info .device-link::before {
  content: "\f107";
  font-family: var(--font-awesome);
  position: absolute;
  font-size: 14px;
  top: 3px;
  bottom: 0;
  margin: auto;
  right: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-data .device-info .device-link.active::before {
  top: 0;
  bottom: 3px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart {
  background-color: #fff;
  border: 1px solid #e4e8f1;
  border-radius: 4px;
  padding: 6px 20px;
  margin-top: 15px;
  min-height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 375.98px) {
  section.wrapper .content .data-content .data-body .device-list .device-item .device-cart {
    padding: 6px;
    gap: 6px;
  }
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-price,
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-total {
  width: 100px;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-price > small,
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-total > small {
  display: block;
  color: #252c57;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  white-space: nowrap;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-price span,
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-total span {
  display: block;
  color: #252c57;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-price span i,
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-total span i {
  font-size: 12px;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-price span > small,
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-total span > small {
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 375.98px) {
  section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-price span > small,
  section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-total span > small {
    font-size: 12px;
  }
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-total {
  text-align: right;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-control {
  background-color: #fff;
  border: 1px solid #e4e8f1;
  border-radius: 4px;
  min-height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-control button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 2px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #252c57;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  outline: 0;
  border: 0;
  background-color: #fff;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-control button:disabled {
  background-color: #f5f8fa;
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 375.98px) {
  section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-control button {
    padding: 2px 6px;
  }
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-control span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #252c57;
  padding: 2px 10px;
  border-left: 1px solid #e4e8f1;
  border-right: 1px solid #e4e8f1;
  cursor: auto;
  width: 45px;
  font-size: 14px;
  font-weight: 700;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 375.98px) {
  section.wrapper .content .data-content .data-body .device-list .device-item .device-cart .cart-control span {
    padding: 2px 6px;
    width: 28px;
  }
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec {
  margin-top: 15px;
  display: none;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .spec-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .spec-tabs .tab-link {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  min-width: 50%;
  font-weight: 600;
  color: #252c57;
  border-bottom: 3px solid #d0d7e5;
  text-align: center;
  padding: 10px;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .spec-tabs .tab-link.active {
  color: #1572e8;
  border-bottom-color: #1572e8;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data {
  margin-top: 25px;
  display: none;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data.active {
  display: block;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data .list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 20px;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data .list li::before {
  content: "\f105";
  font-family: var(--font-awesome);
  position: absolute;
  left: 0;
  color: #252c57;
  font-size: 13px;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data .table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data .table tr th,
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data .table tr td {
  border: 1px solid #d0d7e5;
  padding: 10px;
  color: #252c57;
  font-size: 13px;
  vertical-align: top;
}
section.wrapper .content .data-content .data-body .device-list .device-item .device-spec .tab-data .table tr th {
  font-weight: 600;
}
section.wrapper .content .data-content .data-body .product-table {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 20px;
}
section.wrapper .content .data-content .data-body .product-table table {
  width: 100%;
  border-collapse: collapse;
}
section.wrapper .content .data-content .data-body .product-table table thead {
  background-color: #f5f8fa;
  border-radius: 4px;
}
section.wrapper .content .data-content .data-body .product-table table thead tr th {
  padding: 12px 12px;
  vertical-align: middle;
  white-space: nowrap;
  color: #252c57;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}
section.wrapper .content .data-content .data-body .product-table table tbody tr td {
  padding: 15px 12px;
  vertical-align: top;
  color: #252c57;
  border-bottom: 1px solid #d0d7e5;
}
section.wrapper .content .data-content .data-body .product-table .text-right {
  text-align: right;
}
section.wrapper .content .data-content .data-body .product-table .text-center {
  text-align: center;
}
section.wrapper .content .data-content .data-body .product-table .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: -12px;
}
section.wrapper .content .data-content .data-body .product-table .product-info .product-image {
  border: 1px solid #d0d7e5;
  padding: 4px;
  border-radius: 4px;
  max-width: 60px;
  max-height: 60px;
  cursor: pointer;
}
section.wrapper .content .data-content .data-body .product-table .product-info .product-image img {
  max-width: 100%;
  max-height: 100%;
}
section.wrapper .content .data-content .data-body .product-table .product-info .product-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 4px;
}
section.wrapper .content .data-content .data-body .product-table .product-info .product-desc label {
  margin: 0;
}
section.wrapper .content .data-content .data-body .product-table .product-info .product-desc a.remove {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #1572e8;
  font-size: 12px;
}
section.wrapper .content .data-content .data-body .product-table .product-amt {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  white-space: nowrap;
  color: #252c57;
}
section.wrapper .content .data-content .data-body .product-table .product-amt i {
  font-size: 12px;
}
section.wrapper .content .data-content .data-body .order-details .order-title {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  padding: 0 15px;
}
section.wrapper .content .data-content .data-body .order-details .order-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 15px;
}
section.wrapper .content .data-content .data-body .order-details .order-summary .summary-item {
  padding: 0 12px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
section.wrapper .content .data-content .data-body .order-details .order-summary .summary-item i {
  font-size: 12px;
}
section.wrapper .content .data-content .data-body .order-details .order-summary .summary-item small {
  font-size: 13px;
}
section.wrapper .content .data-content .data-body .order-details .order-total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  background-color: #f5f8fa;
  padding: 15px 12px;
  border-radius: 4px;
}
section.wrapper .content .data-content .data-body .order-details .order-total i {
  font-size: 13px;
}
section.wrapper .content .data-content .data-body .order-details .order-total small {
  font-size: 14px;
  font-weight: 700;
}
section.wrapper .content .data-content .data-body .payment-terms {
  margin-top: 20px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-head {
  font-weight: 600;
  font-size: 16px;
  color: #36364e;
  margin-bottom: 20px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-head {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-head .radio-group {
  margin-bottom: 0;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-head .radio-group .custom-control-input:checked ~ .custom-control-label::before {
  background: #349d33;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data {
  display: none;
  margin-bottom: 20px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row {
  background-color: #f5f8fa;
  padding: 15px;
  padding-left: 30px;
  margin-bottom: 2px;
  border-radius: 4px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row:last-child {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row {
    padding-left: 15px;
  }
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .radio-group {
  margin-bottom: 0;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .radio-group .custom-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 0;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .radio-group .custom-control .custom-control-input:checked ~ .custom-control-label::before {
  background: #349d33;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .radio-group .custom-control .custom-control-label {
  display: inline-block;
  vertical-align: middle;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .radio-group .custom-control .custom-control-label i {
  font-size: 12px;
  margin-right: 2px;
  margin-left: 2px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .radio-group .custom-control .custom-control-label span {
  margin-right: 2px;
  margin-left: 2px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .term-points {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .term-points li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 4px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .term-points li:last-child {
  margin-bottom: 0;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .term-points li i {
  font-size: 11px;
  margin-right: 4px;
}
section.wrapper .content .data-content .data-body .payment-terms .terms-list .term-opt .opt-data .opt-row .term-points li::before {
  content: "*";
  position: absolute;
  left: 0;
}
section.wrapper .content .data-content .data-body .user-consent {
  color: #252c57;
  font-size: 13px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .user-consent {
    margin-bottom: 15px;
  }
}
section.wrapper .content .data-content .data-body .user-consent .custom-checkbox {
  margin-right: 0;
}
section.wrapper .content .data-content .data-body .payment-response {
  padding: 30px 15px;
  text-align: center;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .payment-response {
    padding: 15px 0;
  }
}
section.wrapper .content .data-content .data-body .payment-response .ico i {
  color: #349d33;
  font-size: 45px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .payment-response .ico i {
    font-size: 35px;
  }
}
section.wrapper .content .data-content .data-body .payment-response .pr-head {
  color: #36364e;
  font-size: 22px;
  margin-top: 15px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .payment-response .pr-head {
    font-size: 18px;
  }
}
section.wrapper .content .data-content .data-body .payment-response .pr-subhead {
  color: #36364e;
  margin-top: 10px;
  font-size: 14px;
  margin-bottom: 30px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-body .payment-response .pr-subhead {
    font-size: 13px;
  }
}
section.wrapper .content .data-content .data-body .payment-response .btn {
  min-width: 120px;
}
section.wrapper .content .data-content .data-footer {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 575.98px) {
  section.wrapper .content .data-content .data-footer {
    margin-top: 0;
    margin-bottom: 0;
  }
}

#ScanCopyUpload,
#DigitalUpload,
#ESignProcess {
  display: none;
}

.image-modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  z-index: 1002;
}
.image-modal .image-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}
.image-modal .image-modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding: 10px;
}
.image-modal .image-modal-content .image-large {
  background-color: #fff;
  max-width: 100%;
  margin: auto;
  padding: 10px;
  border-radius: 4px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

::-ms-clear,
::-ms-reveal {
  display: none;
}

::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

::-webkit-autofill,
::-webkit-contacts-auto-fill-button,
::-webkit-credentials-auto-fill-button {
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.form-row {
  margin-right: -7.5px;
  margin-left: -7.5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 7.5px;
  padding-left: 7.5px;
}

.btn {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: var(--fw-semi-bold);
}
@media (max-width: 575.98px) {
  .btn {
    font-size: 14px;
    padding: 10px 15px;
  }
}

.btn-primary {
  background-color: #2b83ed;
  border-color: none;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  color: #fff;
  background-color: #0f6bd9;
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #2b83ed;
  background-color: #2b83ed;
}

.form-group {
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .form-group {
    margin-bottom: 15px;
  }
}

.form-control {
  border: 1px solid #cfd6e3;
  border-radius: 4px;
  font-size: 13px;
  min-height: 40px;
  padding: 6px 12px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-weight: var(--fw-regular);
  background-color: #fff;
  color: #495057;
  appearance: none;
  outline: 0;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
}
@media (max-width: 575.98px) {
  .form-control {
    padding: 6px 10px;
  }
}
.form-control:focus, .form-control:active {
  border-color: #007bff;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  outline: 0;
}
.form-control:not(:disabled):not(.disabled):active:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #f8f9fa;
  opacity: 1;
}
.form-control:disabled:focus, .form-control:disabled:active, .form-control[readonly]:focus, .form-control[readonly]:active {
  border-color: #cfd6e3;
}
.form-control[type=date] {
  text-transform: uppercase;
}

textarea.form-control {
  height: auto;
  resize: none;
}

.link {
  text-decoration: underline;
}

.control-label {
  color: #36364e;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  position: relative;
}
.control-label.optional::after {
  content: "(Optional)";
  color: #a3a3a3;
  font-size: 13px;
  margin-left: 5px;
}
.control-label .lbl-title {
  font-size: 14px;
  color: #36364e;
}
.control-label .lbl-subtitle {
  font-size: 12px;
  color: rgba(54, 54, 78, 0.6);
  margin-top: 2px;
}
@media (max-width: 575.98px) {
  .control-label {
    font-size: 13px;
  }
}

.control-note {
  color: rgba(54, 54, 78, 0.6);
  font-size: 12px;
  margin-top: 5px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 575.98px) {
  .control-note {
    font-size: 11px;
  }
}

.info-note {
  background-color: #fdf8e4;
  border: 1px solid #f3edd3;
  padding: 10px 12px;
  margin-bottom: 20px;
  border-radius: 4px;
  color: #36364e;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  .info-note {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 8px 10px;
  }
}

.radio-group {
  margin-bottom: 10px;
}
.radio-group .custom-control-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 14px;
}
@media (max-width: 575.98px) {
  .radio-group .custom-control-label {
    font-size: 13px;
  }
}
.radio-group .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.file-upload-area {
  margin: 0;
  margin-top: 10px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  border: 1px dashed #2b83ed;
  background: #fafcff;
  position: relative;
  border-radius: 4px;
}
.file-upload-area:hover {
  border-color: #2b83ed;
  -webkit-box-shadow: inset 0 0 0 4px rgba(128, 189, 255, 0.3);
          box-shadow: inset 0 0 0 4px rgba(128, 189, 255, 0.3);
  outline: 0;
}
.file-upload-area label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  height: 115px;
  min-height: 115px;
  padding: 15px 25px;
  cursor: pointer;
}
@media (max-width: 575.98px) {
  .file-upload-area label {
    padding: 15px;
  }
}
.file-upload-area label input.file-up-input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  visibility: hidden;
}
.file-upload-area label .head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  font-weight: 600;
  width: 100%;
}
@media (max-width: 575.98px) {
  .file-upload-area label .head {
    font-size: 13px;
  }
}
.file-upload-area label .head span {
  color: #2b83ed;
  margin-left: 10px;
}
.file-upload-area label .file-up-ico {
  margin-bottom: 15px;
}
.file-upload-area label .file-up-ico img {
  max-width: none;
}
.file-upload-area .file-sec {
  display: none;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 115px;
  min-height: 115px;
  padding: 15px 25px;
}
@media (max-width: 575.98px) {
  .file-upload-area .file-sec {
    padding: 15px;
  }
}
.file-upload-area .file-sec .filename {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .file-upload-area .file-sec .filename {
    font-size: 13px;
  }
}
.file-upload-area .file-sec .delete-file {
  color: #2b83ed;
  font-weight: var(--fw-semi-bold);
  cursor: pointer;
}
.file-upload-area .file-progress {
  height: 4px;
  width: 0;
  position: absolute;
  bottom: -1px;
  left: 0;
  background: #2b83ed;
}

.password-group {
  position: relative;
}
.password-group .show-password {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: #36364e;
  z-index: 4;
}

.digit-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -5px;
}
.digit-group .digit-input {
  width: 40px;
  height: 40px;
  background-color: #fff;
  outline: 0;
  border: 1px solid #cfd6e3;
  border-radius: 4px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #0d2366;
  margin: 0 5px;
}
.digit-group .digit-input:focus {
  border-color: #80bdff;
}

.docup-sec {
  margin-bottom: 20px;
}
@media (max-width: 575.98px) {
  .docup-sec {
    margin-bottom: 15px;
  }
}
.docup-sec .doc-head a {
  text-decoration: underline;
  font-size: 14px;
}
.docup-sec .doc-desc {
  color: #36364e;
  margin-bottom: 20px;
  margin-top: 10px;
}

.bootstrap-select .dropdown-toggle {
  border: 1px solid #cfd6e3;
  outline: 0;
  border-radius: 4px;
  font-size: 13px;
  min-height: 40px;
  padding: 6px 12px;
  -webkit-transition: all 300ms;
  transition: all 300ms;
  font-weight: var(--fw-regular);
  background-color: #fff;
  color: #495057;
}
@media (max-width: 575.98px) {
  .bootstrap-select .dropdown-toggle {
    padding: 6px 10px;
  }
}
.bootstrap-select .dropdown-menu .dropdown-item {
  white-space: normal;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
  right: auto;
  top: 7px;
  left: 14px;
}

.bootstrap-select .dropdown-menu li a span.check-mark {
  display: inline-block;
  position: absolute;
  right: auto;
  top: 7px;
  left: 14px;
}

.bootstrap-select.show-tick .dropdown-menu li a span.text {
  margin-left: 24px;
  margin-right: 0;
}

.bootstrap-select .bs-ok-default:after {
  border-width: 0 2px 2px 0;
  width: 6px;
  height: 12px;
  color: #ccc;
}

.bootstrap-select .selected .bs-ok-default:after {
  color: #2b83ed;
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #495057;
  background-color: #ffffff;
  border-color: #007bff;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
  outline: 0 !important;
  outline-offset: 0;
}

.bootstrap-select > .dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
  color: #495057;
}

.btn-light:focus,
.btn-light.focus {
  color: #495057;
  background-color: #fff;
  border-color: #007bff;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.btn-light.active,
.btn-light:active {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.dropdown-menu {
  padding: 5px 0;
  margin: 5px 0;
  font-size: 13px;
  color: #212529;
  background-color: #fff;
  border: 1px solid #cfd6e3;
  border-radius: 4px;
}
.dropdown-menu .dropdown-item {
  padding: 6px 12px;
  font-weight: var(--fw-regular);
  color: #616161;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #f1f1f1;
  color: #212529;
}
.dropdown-menu .dropdown-item.active, .dropdown-menu .dropdown-item:active {
  color: #fff;
  background-color: #007bff;
}

.dropdown-toggle::after {
  font-family: var(--font-awesome);
  content: "\f107";
  margin-left: 0;
  font-size: 17px;
  border: 0;
}

.dropup .dropdown-toggle::after {
  content: "\f106";
  border: 0;
}

.input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}
.input-group .input-group-prepend,
.input-group .input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-group .input-group-prepend .input-group-text,
.input-group .input-group-append .input-group-text {
  font-size: 14px;
}
.input-group .form-control {
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  -webkit-box-flex: 1;
          flex: 1 1 auto;
}

.radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio-group .custom-radio {
  padding-left: 30px;
  margin-right: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.radio-group .custom-radio .custom-control-label {
  cursor: pointer;
}
.radio-group .custom-radio .custom-control-label::after,
.radio-group .custom-radio .custom-control-label::before {
  height: 18px;
  width: 18px;
  left: -30px;
  top: 1px;
  -webkit-transition: all 100ms;
  transition: all 100ms;
  cursor: pointer;
  border: 0;
}
.radio-group .custom-radio .custom-control-label::after {
  font-family: var(--font-awesome);
  content: "\f00c";
  background: none;
  font-weight: 500;
  font-size: 10px;
  text-align: center;
  line-height: 18px;
  color: #fff;
}
.radio-group .custom-radio .custom-control-label::before {
  background: #cfd6e3;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.radio-group .custom-radio .custom-control-input {
  height: 18px;
  width: 18px;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.radio-group .custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background: none;
}
.radio-group .custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background: #2b83ed;
}

.checkbox-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkbox-group .custom-checkbox {
  padding-left: 30px;
  margin-right: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkbox-group .custom-checkbox .custom-control-label {
  cursor: pointer;
}
.checkbox-group .custom-checkbox .custom-control-label::after,
.checkbox-group .custom-checkbox .custom-control-label::before {
  height: 18px;
  width: 18px;
  left: -30px;
  top: 0;
  -webkit-transition: all 100ms;
  transition: all 100ms;
  cursor: pointer;
  border: 0;
}
.checkbox-group .custom-checkbox .custom-control-label::after {
  font-family: var(--font-awesome);
  content: "\f00c";
  background: none;
  font-weight: 500;
  font-size: 10px;
  text-align: center;
  line-height: 18px;
  color: #fff;
}
.checkbox-group .custom-checkbox .custom-control-label::before {
  background: #cfd6e3;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.checkbox-group .custom-checkbox .custom-control-input {
  height: 18px;
  width: 18px;
  top: 0;
  left: 0;
  right: auto;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.checkbox-group .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background: none;
}
.checkbox-group .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background: #2b83ed;
}

.tippy-box .tippy-content {
  font-size: 12px;
}
.tippy-box .tippy-arrow {
  -webkit-transform: translate(10px, 0px) !important;
          transform: translate(10px, 0px) !important;
}

footer.footer {
  background-color: #dadbdc;
  color: #606060;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  min-height: 60px;
}
footer.footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer.footer .row .footer-left {
  text-align: left;
}
footer.footer .row .footer-right {
  text-align: right;
}
footer.footer a {
  color: #606060;
  text-decoration: underline;
}/*# sourceMappingURL=merchant-onboarding.css.map */