@charset "UTF-8";
html,
body {
  min-width: 320px;
  margin: 0;
  background: #f1eff9;
  font: 400 14px/1.45 "Nunito Sans", Helvetica, Arial, sans-serif;
  color: #404040;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-input-placeholder {
  color: #f2f2f2;
}

:-ms-input-placeholder {
  color: #f2f2f2;
}

::placeholder {
  color: #f2f2f2;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: bold;
}

h1 {
  font-family: Bitter, Helvetica, Arial, sans-serif;
  line-height: 1.25;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

ul:last-child {
  margin-bottom: 0;
}

.text-large {
  font-size: 18px;
}

.color-primary {
  color: #9c2fa8;
}

.color-secondary {
  color: #ff9843;
}

.highlight {
  color: #ed2d61;
}

a,
button,
input[type=submit] {
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}

a {
  color: #9c2fa8;
  font-weight: bold;
  text-decoration: underline;
}
a:hover, a:active {
  color: #ff9843;
}
a.disabled {
  pointer-events: none;
  color: #999;
}

a:hover,
a:focus,
a:active {
  outline: 0;
}

.btn-primary,
.btn-secondary,
.btn-white,
.btn-green,
.btn-outline,
input[type=submit] {
  height: 40px;
  padding: 8px 20px;
  background-color: #9c2fa8;
  border: none;
  font: 700 14px/24px "Nunito Sans", Helvetica, Arial, sans-serif;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: 0;
  display: inline-block;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.btn-primary:focus,
.btn-secondary:focus,
.btn-white:focus,
.btn-green:focus,
.btn-outline:focus,
input[type=submit]:focus {
  border: none;
}
.btn-primary:hover, .btn-primary:active,
.btn-secondary:hover,
.btn-secondary:active,
.btn-white:hover,
.btn-white:active,
.btn-green:hover,
.btn-green:active,
.btn-outline:hover,
.btn-outline:active,
input[type=submit]:hover,
input[type=submit]:active {
  background: #84208f !important;
  border: none;
  color: #fff;
}
.btn-primary.close,
.btn-secondary.close,
.btn-white.close,
.btn-green.close,
.btn-outline.close,
input[type=submit].close {
  outline: none;
  background: none !important;
}
.btn-primary[disabled], .btn-primary.disabled,
.btn-secondary[disabled],
.btn-secondary.disabled,
.btn-white[disabled],
.btn-white.disabled,
.btn-green[disabled],
.btn-green.disabled,
.btn-outline[disabled],
.btn-outline.disabled,
input[type=submit][disabled],
input[type=submit].disabled {
  background-color: #999;
  pointer-events: none;
}

.btn-secondary {
  background: #ff9843;
  color: #fff;
}
.btn-secondary:focus {
  background: #ff9843;
  color: #fff;
}
.btn-secondary:hover, .btn-secondary:active {
  background: #ff821c !important;
  color: #fff;
}

.btn-white {
  background: #fff;
  color: #9c2fa8;
}
.btn-white:focus {
  background: #fff;
  color: #9c2fa8;
}
.btn-white:hover, .btn-white:active {
  background: #fff !important;
  color: #ff9843;
}

.btn-green {
  background: #090;
  color: #fff;
}
.btn-green:focus {
  background: #090;
  color: #fff;
}
.btn-green:hover, .btn-green:active {
  background: #008400 !important;
  color: #fff;
}

.btn-outline {
  border: 1px solid #9c2fa8;
  background: none;
  color: #9c2fa8;
}
.btn-outline:focus {
  border: 1px solid #9c2fa8;
  background: none;
  color: #9c2fa8;
}
.btn-outline:hover, .btn-outline:active {
  border: 1px solid #7c1d86;
  background: none !important;
  color: #7c1d86;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
textarea {
  padding: 5px 14px;
  background: #fff;
  border-color: #818181;
  font-size: 14px;
  color: #404040;
  transition: color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: #9c2fa8;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password] {
  height: 40px;
}

input[readonly],
input[disabled],
textarea[disabled],
.form-control[readonly],
.form-control[disabled] {
  border: 1px solid #ccc;
  background: #f9f9f9;
  color: #aaa;
}

.search-box {
  position: relative;
}
.search-box:after {
  content: "\f4a5";
  font: 24px/1 "Ionicons";
  color: #888;
  right: 12px;
}

label {
  margin-bottom: 4px;
  font-weight: bold;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.buttons {
  margin-top: 20px;
}

.secondary-actions {
  margin-top: 30px;
}

form .btn {
  min-width: 120px;
}

.container-narrow {
  max-width: 512px;
}

.expandable .expandable-header {
  margin-bottom: 0;
  color: #9c2fa8;
  position: relative;
  cursor: pointer;
}
.expandable .expandable-header:after {
  margin-left: 8px;
  content: "\f280";
  font: 25px/20px Ionicons;
  display: inline-block;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  transform: translateY(2px);
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.expandable .expandable-content {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.expandable.expanded .expandable-header:after {
  -webkit-transform: translateY(1px) rotate(180deg);
  -moz-transform: translateY(1px) rotate(180deg);
  transform: translateY(1px) rotate(180deg);
}
.expandable.expanded .expandable-content {
  height: auto;
}

.v-center, .right-center, .accordion-heading:after, .left-center, .search-box:after {
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}

.left-center {
  left: 0;
}

.right-center, .accordion-heading:after {
  right: 0;
}

.padding-v-md {
  padding-top: 45px;
  padding-bottom: 45px;
}

.background-grey {
  background: #f2f2f2;
}

.background-white {
  background: #fff;
}

main {
  min-height: calc(100vh - 150px);
}
main > .container {
  padding-top: 45px;
  padding-bottom: 45px;
}

.container.narrow {
  max-width: 512px;
}

.subheading {
  margin-bottom: 30px;
  position: relative;
}
.subheading:after {
  content: "";
  width: 50px;
  height: 4px;
  background: #9c2fa8;
  left: 0;
  bottom: -10px;
  position: absolute;
}

.blurb {
  padding: 10px 0;
  background-color: #511c6c;
  color: #fff;
  vertical-align: middle;
}
.blurb p:only-child {
  margin: 9px 0;
}
.blurb .btn {
  min-width: 120px;
}

.panel {
  padding: 24px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.panel.style-1 {
  background: #fff;
}
.panel.style-2 {
  background: #fff;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.panel.style-2 table:before {
  content: "";
  width: 4px;
  height: 100%;
  background: #9c2fa8;
  left: 0;
  top: 0;
  position: absolute;
}
.panel.style-3 {
  font-size: 11px;
}
.panel.style-4 {
  background: #f2f2f2;
  border: 1px solid #ccc;
}

.accordion {
  border: 1px solid #d3d3d3;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}

.accordion + .accordion {
  margin-top: 15px;
}

.accordion-heading {
  padding: 14px 40px 14px 20px;
  color: #404040;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.accordion-heading:hover, .accordion-heading:active {
  background: #fcfcfc;
}
.accordion-heading:after {
  content: "\f102";
  width: 40px;
  font-family: Ionicons;
  font-size: 25px;
  text-align: center;
  line-height: 50px;
}

.accordion.active .accordion-heading {
  background: #9c2fa8;
  color: #fff;
}
.accordion.active .accordion-heading:after {
  content: "\f1fc";
}

.accordion-body {
  padding: 20px;
  border-top: 1px solid #d3d3d3;
  display: none;
}

.alert-dismissible .close {
  line-height: 0.88;
  padding: 0.75rem 1rem 0.85rem;
}

@media (max-width: 991px) {
  main {
    min-height: calc(100vh - 301px);
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 24px;
  }
}
#header {
  padding: 15px 30px;
  background: #fff;
  position: relative;
  z-index: 999;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
#header .logo {
  display: inline-block;
}
#header .logo img {
  height: 60px;
}
#header .abn-search {
  width: 100%;
  position: relative;
}
#header .abn-search input {
  padding-right: 40px;
  background: none !important;
}
#header .abn-search input:focus {
  box-shadow: none !important;
}
#header .abn-search button {
  width: 44px;
  min-width: unset;
  padding: 8px;
  background: none;
  color: #9c2fa8;
  font-size: 20px;
  line-height: 27px;
  top: 0;
  right: 0;
  position: absolute;
}
#header .abn-search button:hover, #header .abn-search button:active, #header .abn-search button:focus {
  background: none !important;
  color: #84208f !important;
  box-shadow: none !important;
}
@media (min-width: 768px) {
  #header .abn-search {
    width: 375px;
    margin-right: 10px;
    float: right;
  }
}
@media (min-width: 992px) {
  #header .abn-search {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  #header .abn-search {
    margin-top: 15px;
  }
  #header .abn-search input {
    padding-right: 30px;
  }
  #header .abn-search button {
    text-align: right;
  }
}
#header .nav-bar .monthly-usage-wrap {
  padding-bottom: 15px;
  border-top: 1px solid #e6e5e6;
}
#header .site-notice {
  margin: -15px -30px;
  margin-top: 15px;
  padding: 0.5em 1em 0.25em 1em;
  background: linear-gradient(128deg, rgb(156, 47, 168) 0%, rgb(240, 41, 95) 100%);
  color: #ffffff;
  font-weight: bold;
  font-size: 1.3em;
}

.monthly-usage {
  max-width: 100%;
  font-size: 12px;
  display: flex;
  gap: 50px;
}
.monthly-usage .usage {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.monthly-usage .usage .green {
  color: #2A9266;
}
.monthly-usage .usage .red {
  color: #F32480;
}

@media (max-width: 991px) {
  .monthly-usage h5 {
    font-size: 16px;
    font-weight: bold;
    margin: 12px 0;
  }
  .monthly-usage .usage {
    width: 100%;
    max-width: 285px;
    font-size: 16px;
  }
  .monthly-usage .usage span {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .monthly-usage h5 {
    font-size: 16px;
  }
  .monthly-usage .usage {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  #header {
    padding-left: 15px;
    padding-right: 15px;
  }
  #header .container {
    padding-left: 0;
    padding-right: 0;
  }
  #header .site-notice {
    margin: -15px;
    margin-top: 15px;
  }
}
@media (max-width: 459px) {
  #header .btn {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#footer {
  margin: 0 30px;
  padding: 19px 0 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  color: #8c8c8c;
  font-size: 12px;
}
#footer .copyright {
  padding: 3px 0;
  display: inline-block;
}
#footer .copyright a {
  color: inherit;
}
#footer .copyright a:hover, #footer .copyright a:active {
  color: #404040;
  text-decoration: underline;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  float: right;
}
.footer-links li {
  list-style: none;
  display: inline-block;
}
.footer-links li + li {
  margin-left: 35px;
}
.footer-links a {
  padding: 3px 0;
  color: #8c8c8c;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: 0.2s color ease;
  -moz-transition: 0.2s color ease;
  transition: 0.2s color ease;
}
.footer-links a:hover, .footer-links a:active {
  color: #404040;
  text-decoration: underline;
}

@media (max-width: 991px) {
  footer {
    padding: 30px 0;
    text-align: center;
  }
  .footer-links {
    margin-top: 15px;
    float: none;
  }
  .footer-links li {
    display: block;
  }
  .footer-links li + li {
    margin-left: 0;
  }
  .footer-links a {
    padding: 8px 15px;
  }
}
/* Navigation */
.top-bar {
  padding-bottom: 15px;
}

.nav-bar {
  margin-top: 15px;
  margin-bottom: -15px;
  border-top: 1px solid #e6e5e6;
}
.nav-bar .container {
  position: relative;
}

.tab-nav {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
}
.tab-nav li {
  list-style: none;
}
.tab-nav li a {
  height: 40px;
  line-height: 20px;
  padding: 10px 30px;
  border: 1px solid #d8d8d8;
  background: #fff;
  text-align: center;
  text-decoration: none;
  user-select: none;
  display: block;
}
.tab-nav li a.router-link-active {
  background: #9c2fa8;
  border: none;
  color: #fff;
}
.tab-nav li a.disabled {
  pointer-events: none;
  color: #999;
}
.tab-nav li a .grey {
  color: #999;
}
.tab-nav li + li a {
  border-left: none;
}
.tab-nav li.active a {
  background: #9c2fa8;
  border: none;
  color: #fff;
}
.tab-nav li:first-child a {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.tab-nav li:last-child a {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
@media (min-width: 768px) {
  .tab-nav li a {
    min-width: 160px;
  }
}
@media (max-width: 767px) {
  .tab-nav li {
    flex: 1;
  }
  .tab-nav li a {
    padding: 10px 15px;
    font-size: 11px;
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .has-search-form .nav-bar {
    margin-top: 0;
    border-top: none;
  }
}

.nav li {
  position: relative;
}
.nav li a {
  padding: 2px 0;
  color: #777;
  font-family: "Nunito Sans", Helvetica, Arial, sans-serif;
  font-size: 16px;
  text-decoration: none;
  display: block;
}
.nav li a:hover, .nav li a:active {
  color: #ff9843;
}
.nav li.active a {
  color: #9c2fa8;
  pointer-events: none;
}

.main-menu > li > a {
  height: 48px;
  line-height: 44px;
  display: block;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.main-menu > li > a.active {
  color: #ff9843;
}

.m-menu-btn {
  width: 40px;
  height: 40px;
  margin-left: 10px;
  padding: 5px 0 5px 10px;
  cursor: pointer;
  overflow: hidden;
  float: right;
}
.m-menu-btn span {
  height: 2px;
  margin: 6px 0;
  background: #555;
  display: block;
  -webkit-transition: 0.275s all ease;
  -moz-transition: 0.275s all ease;
  transition: 0.275s all ease;
}
.m-menu-btn span#line-2 {
  -webkit-transition: 0.4s all ease-in-out;
  -moz-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}
.m-menu-btn:not(.collapsed) #line-1 {
  -webkit-transform: translateY(8px) rotate(-45deg);
  -moz-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
}
.m-menu-btn:not(.collapsed) #line-2 {
  opacity: 0.5;
  -webkit-transform: translateX(-40px);
  -moz-transform: translateX(-40px);
  transform: translateX(-40px);
}
.m-menu-btn:not(.collapsed) #line-3 {
  -webkit-transform: translateY(-7px) rotate(45deg);
  -moz-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}

.pagination {
  margin-top: 30px;
  justify-content: center;
}
.pagination .page-link {
  height: 32px;
  margin: 0 2px;
  line-height: 1.25;
  color: #9c2fa8;
  box-shadow: none;
  outline: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.pagination .page-link[aria-label="Go to previous page"], .pagination .page-link[aria-label="Go to next page"] {
  font-size: 20px;
  line-height: 17px;
}
.pagination .page-item.active .page-link {
  background-color: #9c2fa8;
  border-color: #9c2fa8;
}

@media (min-width: 992px) {
  .nav-bar:not(.show) {
    display: block;
  }
  .main-menu > li + li {
    margin-left: 52px;
  }
  .useful-links {
    border-left: 1px solid #d3d3d3;
    right: 15px;
    top: 10px;
    position: absolute;
  }
  .useful-links > li + li {
    margin-left: 45px;
  }
}
@media (min-width: 1200px) {
  .main-menu > li + li {
    margin-left: 72px;
  }
}
@media (max-width: 991px) {
  .nav-bar .container {
    padding: 15px 0;
    padding-left: 0;
    padding-right: 0;
  }
  .nav > li {
    width: 100%;
    max-width: 100%;
    float: none;
  }
  .nav > li:after {
    content: none;
  }
  .nav > li > a, .nav > li.active > a {
    padding: 10px 0;
    height: 44px;
    line-height: 24px;
    display: inline-block;
  }
  .nav > li > a:hover,
  .nav > li > a:active, .nav > li.active > a {
    color: #ff9843;
  }
}
.app-loading-wrapper {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  left: 0;
  top: 0;
  position: fixed;
  z-index: 9999;
}

.loader-spinner-container {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed;
  z-index: 10000;
}

.loader-spinner {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader-spinner.pure-center {
  left: 50%;
  top: 50%;
  position: fixed;
  z-index: 10001;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.loader-spinner div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: loader-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #9c2fa8 transparent transparent transparent;
}
.loader-spinner div:nth-child(1) {
  animation-delay: -0.45s;
}
.loader-spinner div:nth-child(2) {
  animation-delay: -0.3s;
}
.loader-spinner div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes loader-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.linked-business-list .add-business-btn i {
  margin-right: 2px;
  font-size: 20px;
  line-height: 24px;
  vertical-align: middle;
}
.linked-business-list .table {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.linked-business-list .table thead {
  border: 1px solid #dee2e6;
}
.linked-business-list .table thead th {
  border: none !important;
}
.linked-business-list .table tr {
  border: 1px solid #dee2e6;
}
.linked-business-list .table td {
  padding: 1.25rem 0.85rem;
}
.linked-business-list .table td .actions {
  height: 100%;
  padding-right: 20px;
  position: relative;
}
.linked-business-list .table td .actions a {
  text-decoration: none;
  font-weight: 600;
  line-height: 1.15;
}
.linked-business-list .table td .actions a.details-button {
  margin: 5px 0;
}
.linked-business-list .table td .actions a.details-button [class^=ion-] {
  margin-right: 4px;
  font-size: 15px;
  vertical-align: middle;
}
.linked-business-list .table td .actions a.details-button.success {
  color: #48C691;
}
.linked-business-list .table td .actions .remove-btn {
  padding: 7px 0 9px 10px;
  font-size: 16px;
  line-height: 1;
}
.linked-business-list .table td .actions .remove-btn:not(:hover, :active) {
  color: #777;
}
.linked-business-list .table td .close-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 18px;
  text-align: center;
  top: 5px;
  right: 5px;
  position: absolute;
  transition: all ease 0.2s;
  cursor: pointer;
}
.linked-business-list .table td .close-btn:not(:hover, :active) {
  opacity: 0.55;
}
@media (min-width: 992px) {
  .linked-business-list .table td:nth-child(2) {
    width: 30.5%;
  }
  .linked-business-list .table td:nth-child(3) {
    width: 17.5%;
  }
  .linked-business-list .table td:nth-child(4) {
    width: 17.5%;
  }
  .linked-business-list .table td:nth-child(5) {
    width: 17.5%;
  }
  .linked-business-list .table td:nth-child(6) {
    width: 17%;
  }
  .linked-business-list .table .product-list {
    margin-left: -0.85rem;
    margin-right: -0.85rem;
  }
  .linked-business-list .table .product-list .row > div {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    position: relative;
  }
  .linked-business-list .table .product-list .row > div:nth-child(1) {
    flex: 0 0 30.5%;
    max-width: 30.5%;
  }
  .linked-business-list .table .product-list .row > div:nth-child(2) {
    flex: 0 0 17.5%;
    max-width: 17.5%;
  }
  .linked-business-list .table .product-list .row > div:nth-child(3) {
    flex: 0 0 17.5%;
    max-width: 17.5%;
  }
  .linked-business-list .table .product-list .row > div:nth-child(4) {
    flex: 0 0 17.5%;
    max-width: 17.5%;
  }
  .linked-business-list .table .product-list .row > div:nth-child(5) {
    flex: 0 0 17%;
    max-width: 17%;
  }
  .linked-business-list .table .product-list .row.t-heading {
    position: relative;
  }
  .linked-business-list .table .product-list .row.t-heading:before, .linked-business-list .table .product-list .row.t-heading:after {
    content: "";
    width: 0.85rem;
    height: 10px;
    left: 0;
    bottom: -5px;
    background: #f4f4f4;
    display: block;
    position: absolute;
  }
  .linked-business-list .table .product-list .row.t-heading:after {
    left: unset;
    right: -1px;
  }
}
@media (max-width: 991px) {
  .linked-business-list .table {
    border: none;
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .linked-business-list .table thead {
    display: none;
  }
  .linked-business-list .table tr {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: block;
  }
  .linked-business-list .table tr td {
    display: block;
    position: relative;
  }
  .linked-business-list .table tr:not(.b-table-has-details) {
    margin-bottom: 15px;
  }
  .linked-business-list .table tr:not(.b-table-details) {
    background: #fff;
  }
  .linked-business-list .table tr:not(.b-table-details) td {
    min-height: 60px;
    padding-left: 50%;
    border-top: 1px solid #dee2e6;
  }
  .linked-business-list .table tr:not(.b-table-details) td:before {
    width: 50%;
    height: 100%;
    padding: 21px 15px 15px;
    color: #999;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    left: 0;
    top: 0;
    position: absolute;
  }
  .linked-business-list .table tr:not(.b-table-details) td:nth-child(2) {
    border-top: none;
  }
  .linked-business-list .table tr:not(.b-table-details) td:nth-child(2):before {
    content: "Name";
  }
  .linked-business-list .table tr:not(.b-table-details) td:nth-child(3):before {
    content: "Number";
  }
  .linked-business-list .table tr:not(.b-table-details) td:nth-child(4):before {
    content: "Late payment risk score";
  }
  .linked-business-list .table tr:not(.b-table-details) td:nth-child(5):before {
    content: "Failure risk score";
  }
  .linked-business-list .table tr:not(.b-table-details) td:nth-child(6):before {
    content: "Actions";
  }
}
@media (max-width: 575px) {
  .linked-business-list .table tr:not(.b-table-details) td:before {
    font-size: 10px;
  }
}

.landing-page {
  background: #fff;
}
.landing-page #welcome {
  min-height: 320px;
  background: url(/assets/landing-hero-banner-bg.jpg) center center no-repeat #fff;
  background-size: cover;
  font-size: 16pt;
  color: #000;
}
.landing-page #welcome h1 {
  margin-top: 5px;
  color: #9c2fa8;
  font-size: 27pt;
}
@media (min-width: 992px) {
  .landing-page #welcome {
    position: relative;
  }
  .landing-page #welcome > .container > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.landing-page #features {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.landing-page #features h3 {
  color: #9c2fa8;
}
.landing-page #features .icon-wrap {
  width: 120px;
  height: 120px;
  margin: 2px auto 18px;
  padding-top: 33px;
  border: 1px solid #9c2fa8;
  text-align: center;
  overflow: hidden;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.landing-page #getting-started {
  padding: 52px 0;
  background: #F1EFF9;
}
.landing-page #report-overview table {
  width: 100%;
}
.landing-page #report-overview table tr + tr {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.landing-page #report-overview table td,
.landing-page #report-overview table th {
  padding: 10px;
}
.landing-page #report-overview table .ion-ios-checkmark-circle-outline {
  font-size: 22px;
  color: #008400;
  display: inline-block;
  vertical-align: middle;
}
.landing-page #report-overview table#report-types {
  background: #f7c9a9;
}
.landing-page #report-overview table#report-features thead {
  background: #f7c9a9;
}
.landing-page #report-overview table#report-features td:nth-child(n+2),
.landing-page #report-overview table#report-features th:nth-child(n+2) {
  text-align: center;
}
.landing-page #additional-info .card-body {
  padding: 35px 20px;
}
.landing-page #additional-info h2 {
  color: #511c6c;
}
.landing-page #additional-info .col-lg-4 {
  display: flex;
  align-items: center;
}
.landing-page #additional-info .icon-wrap {
  max-width: 50px;
  height: 50px;
  margin-right: 15px;
  padding: 1%;
  background: #511c6c;
  text-align: center;
  float: left;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.landing-page #additional-info .icon-wrap img {
  width: 98%;
}
.landing-page #additional-info .icon-wrap + div {
  max-width: calc(100% - 65px);
}
.landing-page #additional-info ul {
  padding-left: 0;
}
.landing-page #additional-info ul li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}
.landing-page #additional-info ul li:before {
  content: "\f3ff";
  color: #9c2fa8;
  font-family: Ionicons;
  font-size: 25px;
  font-weight: normal;
  left: 0;
  top: -6px;
  position: absolute;
}
.landing-page #additional-info ul li + li {
  margin-top: 5px;
}
.landing-page #embedded-main > .container {
  max-width: auto !important;
  padding: 0 !important;
}
.landing-page #embedded-main > .container > .subheading {
  margin-bottom: 15px;
}
.landing-page #embedded-main > .container > .subheading:after {
  content: none;
}
.landing-page #embedded-main .form-group:last-child {
  margin-bottom: 0;
}
.landing-page + #footer {
  border-top: none;
}

.public-layout .top-bar {
  padding-bottom: unset;
}
.public-layout #main {
  min-height: calc(100vh - 134px);
}
.public-layout .has-menu-bar + #main {
  min-height: calc(100vh - 183px);
}

.forgot-password .panel input.validated {
  background-image: none;
}

.change-password .panel .btn {
  min-width: 120px;
}

.grecaptcha-badge {
  width: 0 !important;
}

.checkout-page .order-summary {
  width: 100%;
}
.checkout-page .order-summary ul {
  padding-left: 14px;
}
.checkout-page .order-summary ul li {
  margin: 10px 0;
}
.checkout-page .order-summary .bundle-price:after {
  content: " incl. GST ";
}
.checkout-page .order-summary .bundle-price + strong {
  text-transform: lowercase;
}
.checkout-page .order-notes > div + div {
  margin-top: 15px;
}
.checkout-page .order-notes p {
  margin-bottom: 6px;
}
.checkout-page .order-notes ul {
  padding-left: 20px;
}
.checkout-page .order-notes ul li {
  margin: 4px 0;
}
.checkout-page .ion-ios-arrow-back {
  margin-right: 4px;
  font-size: 17px;
  vertical-align: middle;
  display: inline-block;
}

.credit-card-form #creditCardNumber {
  background-image: none;
}
.credit-card-form #creditCardLogo {
  width: 34px;
  height: 34px;
  background: transparent center center no-repeat;
  background-size: contain;
  top: 27px;
  right: 11px;
  position: absolute;
  z-index: 9;
  display: none;
}
.credit-card-form #creditCardLogo.card-type-10, .credit-card-form #creditCardLogo.card-type-20, .credit-card-form #creditCardLogo.card-type-30 {
  display: block;
}
.credit-card-form #creditCardLogo.card-type-10 {
  background-image: url(/assets/card-logo-visa.png);
}
.credit-card-form #creditCardLogo.card-type-20 {
  background-image: url(/assets/card-logo-master.png);
}
.credit-card-form #creditCardLogo.card-type-30 {
  background-image: url(/assets/card-logo-amex.png);
}
.credit-card-form .credit-card-summary #creditCardLogo {
  margin-right: 8px;
  top: unset;
  right: unset;
  position: unset;
  vertical-align: middle;
}
.credit-card-form .credit-card-summary #creditCardLogo.card-type-10, .credit-card-form .credit-card-summary #creditCardLogo.card-type-20, .credit-card-form .credit-card-summary #creditCardLogo.card-type-30 {
  display: inline-block;
}

.order-details .transaction-details > div {
  margin: 3px 0;
}

.customer-logos {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.customer-logos li {
  width: 30.333%;
  height: 120px;
  margin: 1.5%;
}
.customer-logos li a {
  width: 100%;
  height: 100%;
  border: 1px solid #9c2fa8;
  text-align: center;
  text-decoration: none;
  align-items: center;
  display: flex;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.customer-logos li a:hover {
  border-color: #ff9843;
}
.customer-logos li a img {
  max-width: 78%;
  max-height: 60%;
  margin: 0 auto;
  display: inline-block;
}
.customer-logos li a span {
  max-width: 66.67%;
  margin: 0 auto;
  display: block;
}

.sign-up-form #phonenumber.is-valid {
  background-image: none !important;
}
.sign-up-form .form-control ul {
  padding-left: 12px;
}

.authorisation-form-wrap {
  padding: 20px;
  text-align: center;
}

.invalid-feedback,
.was-validated .form-check-input:invalid ~ .form-check-label {
  color: #F1245C;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #F1245C;
}

.form-control.custom-checkbox {
  height: auto;
  border-style: none;
}
.form-control.custom-checkbox.is-valid {
  background-image: none;
}

.b-tooltip {
  opacity: 0.9;
}

.tooltip-close {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 19px;
  top: 5px;
  right: 0;
  position: absolute;
  cursor: pointer;
  user-select: none;
}

#password-validation-sumary ul {
  list-style-type: none;
}
#password-validation-sumary ul li {
  width: 155px;
  float: left;
  font-size: 12px !important;
}
#password-validation-sumary ul li.item-wide {
  width: 310px;
}
#password-validation-sumary small.valid {
  color: #44c9b4;
}
#password-validation-sumary small.invalid {
  color: #F1245C;
}
#password-validation-sumary small svg {
  display: inline-block;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .abn-search-form .col-md-3 {
    padding-left: 0;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page #password-validation-sumary small {
    font-size: 10px;
  }
  .checkout-page #tooltip-target-cvv {
    font-size: 12px;
  }
}
.reset-password-form {
  max-width: 450px;
}

.static main h3 {
  margin-top: 30px;
}

.dashboard .my-plan {
  line-height: 1.1;
}
.dashboard .my-plan .plan-info h6 {
  margin-bottom: 2px;
  color: #999;
  letter-spacing: 3px;
}
.dashboard .my-plan .plan-info .plan-name {
  color: #9c2fa8;
  font-size: 28px;
  font-weight: bold;
}
.dashboard .my-plan .plan-info label {
  margin-top: 17px;
  font-weight: normal;
  color: #f1245c;
}
.dashboard .my-plan .statistics h4 {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: normal;
}
.dashboard .my-plan .statistics h4 em {
  margin-top: 1px;
  color: #666;
  font-style: normal;
  display: block;
}
.dashboard .my-plan .statistics > div {
  margin: 8px 0;
}
.dashboard .my-plan .statistics label {
  padding: 0 !important;
  font-weight: normal;
}
.dashboard .my-plan .statistics span {
  padding-right: 0 !important;
  color: #9c2fa8;
}
.dashboard .my-plan .statistics span.red {
  color: #f1245c;
}
.dashboard .my-plan .statistics span.grey {
  color: #b7b7b7;
}
.dashboard .my-plan .statistics span.green {
  color: #2A9266;
}
.dashboard .my-plan .statistics span strong {
  font-size: 17px;
  line-height: 13px;
}
@media (min-width: 768px) {
  .dashboard .my-plan .statistics > .row {
    max-width: 285px;
  }
}

.b-table-details {
  background: #f4f4f4 !important;
  position: relative;
}
.b-table-details .b-details-arrow {
  width: 10px;
  height: 10px;
  background: #f4f4f4;
  border-top: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  transform: rotate(-45deg);
  left: 53px;
  top: -6px;
  position: absolute;
  display: block;
}
.b-table-details .b-details-arrow.align-right {
  left: unset;
  right: 120px;
}
.b-table-details h5 {
  margin: 5px 0 18px;
  text-transform: uppercase;
}
.b-table-details .row {
  margin: 0;
}
.b-table-details .t-heading {
  margin-bottom: 7px;
  border-bottom: 1px solid #d8d8d8;
  font-size: 13px;
  font-weight: 600;
}
.b-table-details a {
  font-weight: 600;
}
.b-table-details [class^=col-] {
  padding: 5px 12px 5px 0;
}
.b-table-details .col-lg-5 {
  font-weight: 600;
}
.b-table-details [class^=ion-] {
  font-size: 15px;
  vertical-align: middle;
}
.b-table-details .ion-md-document {
  margin: 0 2px;
  color: #9c2fa8;
}
.b-table-details .ion-md-information-circle-outline {
  padding: 5px 2px 0 1px;
  color: #404040;
  font-size: 17px;
}
.b-table-details .na {
  color: #999;
}
@media (max-width: 991px) {
  .b-table-details td[colspan="4"] {
    display: block;
  }
  .b-table-details td:before {
    border-top-width: 2px;
    border-right-width: 2px;
  }
  .b-table-details .product-list .row {
    margin-right: -5px;
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
  .b-table-details .product-list .row [class^=col-] {
    padding-left: 49.33%;
    padding-right: 0;
    position: relative;
  }
  .b-table-details .product-list .row [class^=col-]:before {
    width: 50%;
    height: 100%;
    padding: 8px 15px 15px 1px;
    color: #999;
    font-size: 11px;
    font-weight: bold;
    display: block;
    left: 0;
    top: 0;
    position: absolute;
  }
  .b-table-details .product-list .row [class^=col-]:nth-child(1):before {
    content: "TYPE";
  }
  .b-table-details .product-list .row [class^=col-]:nth-child(2):before {
    content: "PRICE";
  }
  .b-table-details .product-list .row [class^=col-]:nth-child(3):before {
    content: "BUY NOW";
  }
  .b-table-details .product-list .row [class^=col-]:nth-child(4):before {
    content: "PREVIOUS PURCHASES";
  }
}

@media (max-width: 991px) {
  .product-list-container td {
    display: block;
  }
}

.has-discount {
  color: #dc3545;
  text-decoration: line-through;
}

.empty-state-message {
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.35);
  text-align: center;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.entity-details {
  /*.card:last-of-type {
      margin-bottom: 0;
  }*/
}
.entity-details .retrieval-date {
  font-size: 14px;
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
}
.entity-details .retrieval-date span {
  font-size: 13px;
  text-transform: uppercase;
}
.entity-details .retrieval-date i {
  margin-right: 5px !important;
  font-size: 17px !important;
  display: inline-block;
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  transform: translateY(1px);
}
.entity-details .b-col {
  position: relative;
}
.entity-details .card {
  min-height: calc(100% - 30px);
  margin-bottom: 30px;
}
.entity-details .card h2 {
  margin-left: -1px;
  margin-bottom: 0;
  font-size: 38px;
  text-transform: uppercase;
}
.entity-details .card h3 {
  margin-bottom: 0;
  font-size: 25px;
  font-weight: normal;
}
.entity-details .card h6 {
  margin-bottom: 3px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #999;
}
.entity-details .card p:last-child {
  margin-bottom: 0;
}
.entity-details .card [class^=ion-] {
  margin-left: 1px;
  margin-right: 7px;
  font-size: 38px;
  display: inline-block;
  vertical-align: middle;
}
.entity-details .card.summary .card-header {
  padding: 1rem 1.25rem;
  background-color: #f8f2fc;
}
.entity-details .card.summary .card-header h2 {
  font-size: 25px;
  color: #404040;
}
.entity-details .card.summary .card-header span.last-update {
  color: #999;
  font-size: 0.9em;
  font-weight: 100;
}
.entity-details .card.summary .card-body .detail-item {
  margin-bottom: 1em;
}
.entity-details .card.summary .card-body .detail-item h3 {
  font-size: 1em;
}
.entity-details .card.registration-status h3 {
  color: #FD3E3D;
}
.entity-details .card.registration-status.registered h3 {
  color: #48C691;
}
.entity-details .card.parent-company .card-header {
  background-color: #F4f4f4;
}
.entity-details .card.parent-company .card-header h3 {
  font-weight: 600;
}
.entity-details .card.parent-company h3 {
  font-size: 1em;
}
.entity-details .card.defaults h2, .entity-details .card.notices h2, .entity-details .card.merc-enquiries h2, .entity-details .card.credit-enquiries h2, .entity-details .card.court-actions h2, .entity-details .card.asic-documents h2, .entity-details .card.cross-directorships h2 {
  color: #48C691;
}
.entity-details .card.defaults.has-records h2, .entity-details .card.notices.has-records h2, .entity-details .card.merc-enquiries.has-records h2, .entity-details .card.credit-enquiries.has-records h2, .entity-details .card.court-actions.has-records h2, .entity-details .card.asic-documents.has-records h2, .entity-details .card.cross-directorships.has-records h2 {
  color: #FD3E3D;
}
.entity-details .card.defaults.has-records h2::before, .entity-details .card.notices.has-records h2::before, .entity-details .card.merc-enquiries.has-records h2::before, .entity-details .card.credit-enquiries.has-records h2::before, .entity-details .card.court-actions.has-records h2::before, .entity-details .card.asic-documents.has-records h2::before, .entity-details .card.cross-directorships.has-records h2::before {
  content: "\f276";
  margin-left: 2px;
  margin-right: 7px;
  font-family: Ionicons;
  display: inline-block;
}
.entity-details .card.payment-risk .card-body, .entity-details .card.failure-risk .card-body {
  padding: 1.4rem 1.25rem;
}
.entity-details .card.payment-risk .payment-risk-placeholder:hover, .entity-details .card.failure-risk .payment-risk-placeholder:hover {
  cursor: pointer;
}
.entity-details .card.payment-risk .failure-risk-placeholder:hover, .entity-details .card.failure-risk .failure-risk-placeholder:hover {
  cursor: pointer;
}
.entity-details .card.payment-risk h3, .entity-details .card.failure-risk h3 {
  margin-bottom: 9px;
  font-size: 22px;
  font-weight: 600;
}
.entity-details .card.payment-risk.minimal h2, .entity-details .card.payment-risk.minimal h3, .entity-details .card.payment-risk.minimal .score-dial, .entity-details .card.failure-risk.minimal h2, .entity-details .card.failure-risk.minimal h3, .entity-details .card.failure-risk.minimal .score-dial {
  color: #48C691;
}
.entity-details .card.payment-risk.low h2, .entity-details .card.payment-risk.low h3, .entity-details .card.payment-risk.low .score-dial, .entity-details .card.failure-risk.low h2, .entity-details .card.failure-risk.low h3, .entity-details .card.failure-risk.low .score-dial {
  color: #48C691;
}
.entity-details .card.payment-risk.average h2, .entity-details .card.payment-risk.average h3, .entity-details .card.payment-risk.average .score-dial, .entity-details .card.payment-risk.moderate h2, .entity-details .card.payment-risk.moderate h3, .entity-details .card.payment-risk.moderate .score-dial, .entity-details .card.payment-risk.medium h2, .entity-details .card.payment-risk.medium h3, .entity-details .card.payment-risk.medium .score-dial, .entity-details .card.failure-risk.average h2, .entity-details .card.failure-risk.average h3, .entity-details .card.failure-risk.average .score-dial, .entity-details .card.failure-risk.moderate h2, .entity-details .card.failure-risk.moderate h3, .entity-details .card.failure-risk.moderate .score-dial, .entity-details .card.failure-risk.medium h2, .entity-details .card.failure-risk.medium h3, .entity-details .card.failure-risk.medium .score-dial {
  color: #FF9843;
}
.entity-details .card.payment-risk.high h2, .entity-details .card.payment-risk.high h3, .entity-details .card.payment-risk.high .score-dial, .entity-details .card.failure-risk.high h2, .entity-details .card.failure-risk.high h3, .entity-details .card.failure-risk.high .score-dial {
  color: #FD3E3D;
}
.entity-details .card.payment-risk .risk-factors .show-modal, .entity-details .card.failure-risk .risk-factors .show-modal {
  text-decoration: underline;
}
.entity-details .card.payment-risk .risk-factors .show-modal:hover, .entity-details .card.failure-risk .risk-factors .show-modal:hover {
  cursor: pointer;
}
.entity-details .card.payment-risk .risk-factors .modal-mask, .entity-details .card.failure-risk .risk-factors .modal-mask {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: table;
  transition: opacity 0.3s ease;
}
.entity-details .card.payment-risk .risk-factors .modal-wrapper, .entity-details .card.failure-risk .risk-factors .modal-wrapper {
  display: table-cell;
  vertical-align: middle;
}
.entity-details .card.payment-risk .risk-factors .modal-container, .entity-details .card.failure-risk .risk-factors .modal-container {
  max-width: 25vw;
  margin: 0px auto;
  background-color: #fff;
  border-radius: 0.5em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  transition: all 0.3s ease;
  font-family: Helvetica, Arial, sans-serif;
}
.entity-details .card.payment-risk .risk-factors .modal-header, .entity-details .card.failure-risk .risk-factors .modal-header {
  display: block;
  position: relative;
  margin-top: 0;
  padding: 1em 1.5em;
  background-color: #777;
  color: #fff;
  font-size: 1.5em;
}
.entity-details .card.payment-risk .risk-factors .modal-header.minimal, .entity-details .card.failure-risk .risk-factors .modal-header.minimal {
  background-color: #48C691;
}
.entity-details .card.payment-risk .risk-factors .modal-header.low, .entity-details .card.failure-risk .risk-factors .modal-header.low {
  background-color: #48C691;
}
.entity-details .card.payment-risk .risk-factors .modal-header.average, .entity-details .card.payment-risk .risk-factors .modal-header.moderate, .entity-details .card.payment-risk .risk-factors .modal-header.medium, .entity-details .card.failure-risk .risk-factors .modal-header.average, .entity-details .card.failure-risk .risk-factors .modal-header.moderate, .entity-details .card.failure-risk .risk-factors .modal-header.medium {
  background-color: #FF9843;
}
.entity-details .card.payment-risk .risk-factors .modal-header.high, .entity-details .card.failure-risk .risk-factors .modal-header.high {
  background-color: #FD3E3D;
}
.entity-details .card.payment-risk .risk-factors .modal-header .modal-default-button, .entity-details .card.failure-risk .risk-factors .modal-header .modal-default-button {
  position: absolute;
  top: 1em;
  right: 1em;
  font-size: 0.8em;
}
.entity-details .card.payment-risk .risk-factors .modal-header .modal-default-button:hover, .entity-details .card.failure-risk .risk-factors .modal-header .modal-default-button:hover {
  cursor: pointer;
}
.entity-details .card.payment-risk .risk-factors .modal-body, .entity-details .card.failure-risk .risk-factors .modal-body {
  position: relative;
  margin: 20px 0;
  padding: 1em 2em;
}
.entity-details .card.payment-risk .risk-factors .modal-enter, .entity-details .card.failure-risk .risk-factors .modal-enter {
  opacity: 0;
}
.entity-details .card.payment-risk .risk-factors .modal-leave-active, .entity-details .card.failure-risk .risk-factors .modal-leave-active {
  opacity: 0;
}
.entity-details .card.payment-risk .risk-factors .modal-enter .modal-container,
.entity-details .card.payment-risk .risk-factors .modal-leave-active .modal-container, .entity-details .card.failure-risk .risk-factors .modal-enter .modal-container,
.entity-details .card.failure-risk .risk-factors .modal-leave-active .modal-container {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
.entity-details .score-dial {
  max-width: 200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  pointer-events: none;
}
.entity-details .score-dial .ring {
  transform: scale(1.22);
  transform-origin: center center;
  stroke: #d8d8d8;
  stroke-width: 2px;
}
.entity-details .score-dial .segment {
  transform: scale(1.025) rotate(-90deg);
  transform-origin: center center;
  stroke: currentColor;
  stroke-width: 1.75px;
}
.entity-details .score-dial text {
  opacity: 0;
  display: none;
}
.entity-details .score-dial h2 {
  font-size: 28px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 9;
}
@media (max-width: 575px) {
  .entity-details .score-dial {
    margin-bottom: 20px;
  }
}

.modal-dialog {
  margin-top: 0;
  margin-bottom: 0;
  top: 50%;
  transform: translateY(-50%) !important;
}
.modal-dialog .modal-content {
  border: none;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.modal-dialog .modal-header {
  padding-left: 20px;
  box-shadow: none;
}
.modal-dialog .modal-header h5 {
  padding-left: 28px;
  flex: 1;
  font-size: 20px;
  font-weight: normal;
  text-align: center;
}
.modal-dialog .modal-header button.close {
  height: auto;
  padding: 18px;
  background: none !important;
}
.modal-dialog .modal-header button.close:focus, .modal-dialog .modal-header button.close:active {
  color: #000;
  outline: none;
}
.modal-dialog .modal-body {
  padding: 20px;
  text-align: center;
}
.modal-dialog .modal-body p:last-child {
  margin-bottom: 0;
}
.modal-dialog .modal-footer {
  margin: 0;
  padding: 0 20px 20px;
  border-top: none;
  justify-content: center;
}
.modal-dialog .modal-footer .btn {
  width: 130px;
  max-width: calc(50% - 10px);
}
.modal-dialog .modal-footer > :not(:first-child) {
  margin-left: 6px;
}
.modal-dialog .modal-footer > :not(:last-child) {
  margin-right: 6px;
}

.modal-backdrop {
  opacity: 0.5 !important;
}

.search-business-page {
  min-height: 320px;
  padding-top: 85px;
  background: url(/assets/search-banner-bg.jpg) top center no-repeat #fff;
  background-size: 100% auto;
  color: #000;
}
@media (max-width: 1489px) {
  .search-business-page {
    background-size: auto 382px;
  }
}

.search-business #searchText {
  background-image: none !important;
}

.search-input-wrap {
  position: relative;
}
.search-input-wrap #country-select {
  width: 62px;
  height: 38px;
  padding: 5px 0 5px 14px;
  background-color: transparent;
  border-width: 0 1px 0 0;
  border-color: rgba(0, 0, 0, 0.25);
  left: 0;
  top: 1px;
  position: absolute;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.search-input-wrap #country-select:active, .search-input-wrap #country-select:focus {
  box-shadow: none !important;
}
.search-input-wrap #searchText {
  padding-left: 75px;
  padding-right: 40px;
}
.search-input-wrap #searchText:focus {
  box-shadow: none !important;
}
.search-input-wrap button {
  width: 44px;
  min-width: unset;
  padding: 8px;
  background: none;
  color: #9c2fa8;
  font-size: 20px;
  line-height: 27px;
  top: 0;
  right: 0;
  position: absolute;
}
.search-input-wrap button:hover, .search-input-wrap button:active, .search-input-wrap button:focus {
  background: none !important;
  color: #84208f !important;
  box-shadow: none !important;
}

.searchResults .table {
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.searchResults .table thead {
  border: 1px solid #dee2e6;
}
.searchResults .table thead th {
  border: none !important;
}
.searchResults .table tr {
  border: 1px solid #dee2e6;
}
.searchResults .table td {
  padding: 1.25rem 0.85rem;
}
.searchResults .table td span {
  color: #9c2fa8;
  font-weight: 600;
}
.searchResults .table td:nth-child(2) span {
  min-width: 43px;
  display: inline-block;
}
.searchResults .table td .status-indicator.success {
  color: #48C691;
}
.searchResults .table td .status-indicator.warning {
  color: #FD3E3D;
}
.searchResults .table td .status-indicator [class^=ion-] {
  margin-right: 1px;
  font-size: 17px;
  vertical-align: middle;
  display: inline-block;
}
.searchResults .table td button,
.searchResults .table td .btn {
  height: auto;
  min-width: unset;
  padding: 3px 12px;
  font-size: 12px;
}
.searchResults .table td .details-button i {
  margin-right: 4px;
  font-size: 18px;
  vertical-align: middle;
}
.searchResults .table td .more-details-button {
  margin-top: 10px;
  display: inline-block;
}
.searchResults .table td .more-details-button.success {
  color: #48C691;
}
.searchResults .table td .more-details-button i {
  margin-left: 4px;
  font-size: 16px;
  vertical-align: middle;
}
.searchResults .table td .alert span {
  color: #404040;
}
.searchResults .table td .close-btn {
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #404040;
  font-size: 18px;
  text-align: center;
  top: 5px;
  right: 5px;
  position: absolute;
  transition: all ease 0.2s;
  cursor: pointer;
}
.searchResults .table td .close-btn:not(:hover, :active) {
  opacity: 0.55;
}
@media (min-width: 992px) {
  .searchResults .table tr[id^=search-results-table__] td {
    vertical-align: top;
  }
  .searchResults .table tr[id^=search-results-table__] td:nth-child(1) {
    width: 48%;
  }
  .searchResults .table tr[id^=search-results-table__] td:nth-child(2) {
    width: 18%;
  }
  .searchResults .table tr[id^=search-results-table__] td:nth-child(3) {
    width: 16%;
  }
  .searchResults .table tr[id^=search-results-table__] td:nth-child(4) {
    width: 18%;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list {
    margin-left: -0.85rem;
    margin-right: -0.85rem;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row > div {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
    position: relative;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row > div:nth-child(1) {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row > div:nth-child(2) {
    flex: 0 0 18%;
    max-width: 18%;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row > div:nth-child(3) {
    flex: 0 0 16%;
    max-width: 16%;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row > div:nth-child(4) {
    flex: 0 0 18%;
    max-width: 18%;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row.t-heading {
    position: relative;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row.t-heading:before, .searchResults .table tr[id^=search-results-table__] .product-list .row.t-heading:after {
    content: "";
    width: 0.85rem;
    height: 10px;
    left: 0;
    bottom: -5px;
    background: #f4f4f4;
    display: block;
    position: absolute;
  }
  .searchResults .table tr[id^=search-results-table__] .product-list .row.t-heading:after {
    left: unset;
    right: -1px;
  }
}
@media (max-width: 991px) {
  .searchResults .table {
    border: none;
    background: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
  }
  .searchResults .table thead {
    display: none;
  }
  .searchResults .table tr {
    margin-bottom: 15px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: block;
  }
  .searchResults .table tr:not(.product-list-container) {
    background: #fff;
  }
  .searchResults .table tr[id^=search-results-table__]:not(.b-table-details) td {
    min-height: 60px;
    padding-left: 50%;
    border-top: 1px solid #dee2e6;
    display: block;
    position: relative;
  }
  .searchResults .table tr[id^=search-results-table__]:not(.b-table-details) td:before {
    width: 50%;
    height: 100%;
    padding: 21px 15px 15px;
    color: #999;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    left: 0;
    top: 0;
    position: absolute;
  }
  .searchResults .table tr[id^=search-results-table__]:not(.b-table-details) td:nth-child(1) {
    border-top: none;
  }
  .searchResults .table tr[id^=search-results-table__]:not(.b-table-details) td:nth-child(1):before {
    content: "Name";
  }
  .searchResults .table tr[id^=search-results-table__]:not(.b-table-details) td:nth-child(2):before {
    content: "Entity Numbers";
  }
  .searchResults .table tr[id^=search-results-table__]:not(.b-table-details) td:nth-child(3):before {
    content: "Entity Status";
  }
  .searchResults .table tr[id^=search-results-table__]:not(.b-table-details) td:nth-child(4):before {
    content: "Actions";
  }
  .searchResults .table tr.product-list-container {
    margin-top: -16px;
  }
}
@media (max-width: 575px) {
  .searchResults .table tr[id^=search-results-table__] td:before {
    font-size: 10px;
  }
}
@media (min-width: 992px) {
  .searchResults.logged-in .table tr[id^=search-results-table__] td {
    position: relative;
  }
  .searchResults.logged-in .table tr[id^=search-results-table__] td .more-details-button,
  .searchResults.logged-in .table tr[id^=search-results-table__] td .credit-reports-button {
    bottom: 18px;
  }
}
@media (min-width: 992px) {
  .searchResults:not(.logged-in) tr[id^=search-results-table__] .product-list .row > div:nth-child(2) {
    flex: 0 0 34%;
    max-width: 34%;
  }
  .searchResults:not(.logged-in) tr[id^=search-results-table__] .product-list .row > div:nth-child(3) {
    flex: 0 0 18%;
    max-width: 18%;
  }
}

.business-preview h6 {
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 600;
  color: #999;
}

.credit-report-page .custom-select {
  max-width: 278px;
}
.credit-report-page .custom-select:focus {
  border-color: #ced4da;
  box-shadow: none;
}
.credit-report-page .expandable-pane {
  border: 1px solid #d8d8d8;
  background: #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.credit-report-page .expandable-pane .expandable-list {
  max-height: 150px;
  overflow: auto;
}
.credit-report-page .expandable-pane .expandable-list::-webkit-scrollbar {
  width: 5px;
}
.credit-report-page .expandable-pane .expandable-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.credit-report-page .expandable-pane .expandable-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
.credit-report-page .expandable-pane .expandable-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.credit-report-page .expandable-pane .expandable-list .report-item {
  border-bottom: 1px solid #d8d8d8;
  display: flex;
}
.credit-report-page .expandable-pane .expandable-list .report-item a {
  padding: 13px 20px 11px;
  color: #404040;
  font-weight: 600;
  text-decoration: none;
  display: block;
}
.credit-report-page .expandable-pane .expandable-list .report-item a.router-link-exact-active {
  background: rgba(255, 152, 67, 0.25) !important;
}
.credit-report-page .expandable-pane .expandable-list .report-item a:hover, .credit-report-page .expandable-pane .expandable-list .report-item a:active {
  background: rgba(255, 152, 67, 0.075);
}
.credit-report-page .expandable-pane .expandable-list .report-item a i {
  margin-right: 1px;
  color: #9c2fa8;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  transform: translateY(-1px);
}
.credit-report-page .expandable-pane .expandable-list .report-item .purchase-date {
  width: 60px;
  padding: 8px 15px;
  border-right: 1px solid #d8d8d8;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
}
.credit-report-page .expandable-pane .expandable-list .report-item .report-item-inner {
  width: calc(100% - 60px);
}
.credit-report-page .expandable-pane #expand-btn {
  width: 100%;
  height: 20px;
  line-height: 21px;
  color: #999;
  background: #f6f6f6;
  border-top: 1px solid #e7e7e7;
  text-align: center;
  left: 0;
  bottom: 0;
  position: absolute;
  cursor: pointer;
  display: none;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.credit-report-page .expandable-pane #expand-btn:hover, .credit-report-page .expandable-pane #expand-btn:active {
  background: #f2f2f2;
  color: #666;
}
.credit-report-page .expandable-pane.expandable {
  padding-bottom: 20px;
}
.credit-report-page .expandable-pane.expandable #expand-btn {
  display: block;
}
.credit-report-page .expandable-pane.expandable.expanded .expandable-list {
  max-height: unset;
}
.credit-report-page #download-btn i,
.credit-report-page .ion-md-add {
  margin-right: 2px;
  font-size: 20px;
  line-height: 24px;
  vertical-align: middle;
}
@media (min-width: 992px) {
  .credit-report-page #credit-report-toolbar {
    margin-bottom: -50px;
  }
  .credit-report-page .organisationNameTitle {
    max-width: calc(75% - 240px);
    margin-bottom: 30px;
  }
}

.credit-report * {
  letter-spacing: unset !important;
}
.credit-report #isServiceCallError[value=True] + .row > h2 {
  display: none;
}
.credit-report .page-errors {
  padding: 15px 20px;
  border-radius: 4px;
  background: #fff0f0;
  border: 1px solid #e39393;
}
.credit-report .report-section {
  border-radius: 4px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
}
.credit-report .report-section .tab-label {
  margin-bottom: 0;
  padding: 12px 0 12px 20px !important;
  background: #fff !important;
  border: 1px solid #d8d8d8;
  position: relative;
  user-select: none;
}
.credit-report .report-section .tab-label:before {
  content: "";
  width: 3px;
  height: 100%;
  left: -1px;
  top: 0;
  position: absolute;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  background: #d8d8d8;
  display: block;
}
.credit-report .report-section .tab-label .counter {
  display: none !important;
}
.credit-report .report-section .tab-label .name {
  width: calc(100% - 34px) !important;
  margin-left: 0 !important;
}
.credit-report .report-section .tab-label h3 {
  padding: 4px 0;
  font-family: "Nunito Sans", Arial !important;
  font-size: 14px !important;
  color: #404040 !important;
}
.credit-report .report-section.has-contents:not(#appendix) .tab-label:before {
  background: #9c2fa8;
}
.credit-report .report-section input.tab-checkbox:checked + .tab-label {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.credit-report .report-section input.tab-checkbox:checked + .tab-label:before {
  border-bottom-left-radius: 0 !important;
}
.credit-report .report-section .tab-content {
  border: 1px solid #d8d8d8;
  border-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.credit-report .report-section .tab-content .table {
  background: #fff;
  border: 1px solid #d8d8d8 !important;
}
.credit-report .report-section .tab-content iframe {
  width: 100%;
  height: calc(100% - 15px);
  min-height: 250px;
  margin-bottom: 15px;
}
.credit-report #snapshot {
  margin-bottom: 10px;
  padding: 0 !important;
  border: 1px solid #d8d8d8;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
.credit-report #snapshot .report-header {
  padding: 16px 20px !important;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  position: relative;
  background: #9c2fa8;
  background: -moz-linear-gradient(-45deg, #9c2fa8 0%, #f1245c 100%);
  background: -webkit-linear-gradient(-45deg, #9c2fa8 0%, #f1245c 100%);
  background: linear-gradient(135deg, #9c2fa8 0%, #f1245c 100%);
}
.credit-report #snapshot .report-header h3 {
  font-family: inherit;
  font-size: 15px !important;
}
.credit-report #snapshot .snapshot-background {
  padding: 16px 20px !important;
  background-color: #fff !important;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.credit-report #snapshot .report-nav {
  margin: 0 !important;
  padding: 0 !important;
}
.credit-report #snapshot .report-nav ul {
  margin: 0 !important;
  padding: 0 !important;
}
.credit-report #snapshot .report-nav ul li {
  margin: 0 !important;
  padding: 0 !important;
}
.credit-report #snapshot .report-nav .snapshot-a {
  padding: 5px 0 !important;
  font: 400 14px/1.45 "Nunito Sans", Arial !important;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
}
.credit-report #snapshot .report-nav .snapshot-a:not(:hover, :active) {
  color: #404040 !important;
}
.credit-report #snapshot .report-nav .snapshot-a label {
  padding-right: 40px;
  font-weight: inherit;
  display: block;
  position: relative;
  cursor: pointer;
}
.credit-report #snapshot .report-nav .snapshot-a label span {
  background: #f1245c !important;
  top: 0;
  right: 0;
  position: absolute !important;
}
@media (max-width: 991px) {
  .credit-report #snapshot #snapshot-header {
    position: relative;
    cursor: pointer;
  }
  .credit-report #snapshot #snapshot-header h3:after {
    content: "❯";
    width: 52px;
    height: 48px;
    line-height: 48px;
    right: -28px;
    top: 26px;
    position: absolute;
    color: #fff;
    text-align: center;
    font-weight: normal;
    transform-origin: center center;
    transform: translate(-50%, -50%) rotate(-90deg);
    transition: all 0.25s ease;
    display: block;
  }
  .credit-report #snapshot.collapsed #snapshot-header {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .credit-report #snapshot.collapsed #snapshot-header h3:after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .credit-report #snapshot.collapsed .snapshot-background {
    display: none;
  }
}

@media print {
  html,
  body {
    background: #fff;
  }
  .credit-report {
    background: #fff;
  }
  .credit-report .organisationNameTitle {
    font-size: 28px;
  }
  .credit-report .report-section .tab-label {
    width: 100%;
    margin: 50px 0 20px;
    padding-left: 24px;
    background: #f2f2f2 !important;
  }
  .credit-report .report-section .tab-label:before {
    width: 5px;
    border-radius: 0;
  }
  .credit-report .report-section .tab-label h3 {
    margin: 0;
    padding: 0;
    font-size: 20px !important;
    font-weight: bold;
  }
  .credit-report .report-section.has-contents:not(#appendix) .tab-label {
    border: none;
    background: #9c2fa8 !important;
    background: -moz-linear-gradient(-45deg, #9c2fa8 0%, #f1245c 100%) !important;
    background: -webkit-linear-gradient(-45deg, #9c2fa8 0%, #f1245c 100%) !important;
    background: linear-gradient(135deg, #9c2fa8 0%, #f1245c 100%) !important;
  }
  .credit-report .report-section.has-contents:not(#appendix):before {
    content: none;
  }
  .credit-report .report-section.has-contents:not(#appendix) h3 {
    color: #fff !important;
  }
  .credit-report .report-section .tab-content {
    border: none;
  }
  .credit-report .report-section .tab-content h4 strong {
    font-weight: bold;
  }
  .credit-report #report-summary .col-lg-4 {
    flex: 100%;
    max-width: 100%;
  }
  .credit-report #report-summary .col-lg-4 table[width="100%"] td {
    padding: 18px 10px;
    border: 1px solid #d8d8d8;
  }
  .credit-report #report-summary .col-lg-4 table[width="100%"] td:not(:only-child) {
    width: 50%;
  }
  .credit-report #report-summary .col-lg-4 table[width="100%"] .dnb_color_col_1 {
    background: #2d6f37;
  }
  .credit-report #report-summary .col-lg-4 table[width="100%"] .dnb_color_col_2 {
    background: #75c36b;
  }
  .credit-report #report-summary .col-lg-4 table[width="100%"] .dnbRating,
  .credit-report #report-summary .col-lg-4 table[width="100%"] .dnb_rating_text {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
  }
  .credit-report input.tab-checkbox,
  .credit-report #snapshot {
    display: none;
  }
  .credit-report .infoHeader.header-color14 {
    background-color: #f0f0f0 !important;
  }
  .credit-report .infoHeader.header-navy {
    background-color: #6e688c !important;
    border: none !important;
    color: #fff !important;
  }
  .credit-report .infoHeader td {
    background: none !important;
  }
  .credit-report .infoHeader h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
  }
  .credit-report .keyToScores .infoHeader {
    background-color: transparent !important;
  }
}
.alert-filters {
  background: #fff;
  border: 1px solid #d8d8d8;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.alert-filters h5 {
  font-weight: 600;
}
.alert-filters .collapse-heading {
  min-height: 38px;
  padding: 11px 0 10px 20px;
  position: relative;
  user-select: none;
}
.alert-filters .collapse-heading h5 {
  margin: 0;
}
.alert-filters .collapse-heading .ion-ios-add {
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 0;
  right: 0;
  font-size: 22px;
  text-align: center;
  position: absolute;
}
.alert-filters .collapse-heading.not-collapsed .ion-ios-add:before {
  content: "\f1fc";
}
.alert-filters .collapse {
  border-top: 1px solid #d8d8d8;
}
.alert-filters .collapse .panel {
  padding: 20px;
}
.alert-filters .collapse h5 {
  font-size: 13px;
}
@media (min-width: 992px) {
  .alert-filters .collapse .col-lg-6:first-child {
    padding: 5px 20px 5px 15px;
  }
  .alert-filters .collapse .col-lg-6:last-child {
    padding: 5px 15px 5px 20px;
    border-left: 1px solid #eee;
  }
  .alert-filters .collapse .buttons .btn {
    min-width: 130px;
  }
}
.alert-filters select {
  height: 40px;
  border-color: #999;
}

.b-form-datepicker {
  height: 40px !important;
  padding: 0;
  border-color: #999;
  display: flex;
}
.b-form-datepicker .b-form-btn-label-control.form-control > .dropdown-menu {
  padding: 0.5rem;
}
.b-form-datepicker > button {
  height: 36px !important;
  box-shadow: none !important;
}
.b-form-datepicker > .form-control {
  padding-top: 8px;
  height: auto;
  min-height: calc(1.5em + 0.75rem + 2px - 2px);
  padding-left: 0.25rem;
  margin: 0;
  border: 0;
  outline: 0;
  background: transparent;
  word-break: break-word;
  font-size: inherit;
  white-space: normal;
  cursor: pointer;
}
.b-form-datepicker .b-calendar-grid {
  box-shadow: none !important;
  border: 1px solid #ced4da !important;
}
.b-form-datepicker .b-calendar {
  padding: 0 0.5rem;
}
.b-form-datepicker .b-calendar .b-calendar-grid-body .col[data-date] .btn {
  width: 32px;
  height: 32px;
  font-size: 14px;
  line-height: 1;
  margin: 3px auto;
  padding: 9px 0;
}
.b-form-datepicker .b-form-btn-label-control.form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  height: auto;
  padding: 0;
  background-image: none;
}

.alerts-table th {
  font-size: 13px;
  text-transform: uppercase;
  border: none !important;
}
.alerts-table td {
  background: #fff;
}
.alerts-table .ion-md-alert {
  color: #ff9843;
}
@media (min-width: 992px) {
  .alerts-table tbody {
    border: 1px solid #d8d8d8;
  }
  .alerts-table td:nth-child(1) {
    width: 10%;
  }
  .alerts-table td:nth-child(2) {
    width: 26%;
  }
  .alerts-table td:nth-child(3) {
    width: 16%;
  }
  .alerts-table td:nth-child(4) {
    width: 48%;
  }
}
@media (max-width: 992px) {
  .alerts-table thead {
    display: none;
  }
  .alerts-table tr {
    border: 1px solid #d8d8d8;
    border-top: none;
    display: block;
  }
  .alerts-table tr + tr {
    margin-top: 15px;
  }
  .alerts-table td {
    padding-left: 50%;
    border-top: 1px solid #dee2e6;
    display: block;
    position: relative;
  }
  .alerts-table td:before {
    width: 50%;
    height: 100%;
    padding: 14px 15px;
    color: #999;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    left: 0;
    top: 0;
    position: absolute;
  }
  .alerts-table td:nth-child(1):before {
    content: "Type";
  }
  .alerts-table td:nth-child(2):before {
    content: "Business Entity";
  }
  .alerts-table td:nth-child(3):before {
    content: "Date";
  }
  .alerts-table td:nth-child(4):before {
    content: "Details";
  }
}

.monitoring-status .status-active [class^=ion-] {
  color: #090;
}
.monitoring-status .status-inactive {
  color: #999;
}

.user-profile #subscription .subscription-stats .row + .row {
  margin-top: 6px;
}
.user-profile #subscription .subscription-stats .status {
  color: #999;
}
.user-profile #subscription .subscription-stats .status:before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 4px;
  background: currentColor;
  border-radius: 50%;
  display: inline-block;
}
.user-profile #subscription .subscription-stats .status.active {
  color: #00b700;
}
.user-profile #subscription .subscription-stats [class^=ion-] {
  vertical-align: middle;
  display: inline-block;
}
.user-profile #subscription .billing-history .table {
  margin-bottom: 3px;
}
.user-profile #subscription .billing-history .table th,
.user-profile #subscription .billing-history .table td {
  padding: 7px 0;
}
.user-profile #subscription .billing-history .table th {
  border: none;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
}
.user-profile #subscription .billing-history .table td {
  border-color: rgba(0, 0, 0, 0.06);
}
@media (min-width: 992px) {
  .user-profile #subscription .billing-history .table td:nth-child(1) {
    width: 18%;
  }
  .user-profile #subscription .billing-history .table td:nth-child(2) {
    width: 38%;
  }
  .user-profile #subscription .billing-history .table td:nth-child(3) {
    width: 22%;
  }
  .user-profile #subscription .billing-history .table td:nth-child(4) {
    width: 22%;
  }
}
@media (max-width: 991px) {
  .user-profile #subscription .billing-history .table thead {
    display: none;
  }
  .user-profile #subscription .billing-history .table tr {
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    display: block;
  }
  .user-profile #subscription .billing-history .table td {
    padding: 5px 0 5px 50%;
    border-top: 1px solid #f2f2f2;
    display: block;
    position: relative;
  }
  .user-profile #subscription .billing-history .table td:before {
    width: 50%;
    height: 100%;
    padding: 9px 15px;
    color: #999;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    display: block;
    left: 0;
    top: 0;
    position: absolute;
  }
  .user-profile #subscription .billing-history .table td:nth-child(1) {
    border-top: none;
  }
  .user-profile #subscription .billing-history .table td:nth-child(1):before {
    content: "Date";
  }
  .user-profile #subscription .billing-history .table td:nth-child(2):before {
    content: "DESCRIPTION";
  }
  .user-profile #subscription .billing-history .table td:nth-child(3):before {
    content: "AMOUNT";
  }
  .user-profile #subscription .billing-history .table td:nth-child(4):before {
    content: "INVOICE";
  }
}
.user-profile #subscription .update-card h5 {
  margin: 5px auto 20px;
  font-size: 14px;
  text-transform: uppercase;
}

.plan-selection .card {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.plan-selection .card:not(.bundle-trial) .card-header {
  background: #9c2fa8;
  border: none;
  text-align: center;
}
.plan-selection .card:not(.bundle-trial) h3 {
  padding: 0;
  color: #fff;
}
.plan-selection .card.bundle-trial h3,
.plan-selection .card.bundle-trial h3 span {
  color: #9c2fa8;
}
@media (max-width: 991px) {
  .plan-selection .card.bundle-trial {
    margin-bottom: 1.5rem;
  }
}
.plan-selection .card.bundle-trial .trial-feature {
  position: relative;
}
.plan-selection .card.bundle-trial .trial-feature > div {
  min-height: 42px;
  margin-bottom: 6px;
  padding-left: 53px;
  padding-top: 12px;
  position: relative;
}
.plan-selection .card.bundle-trial .trial-feature > div:before {
  content: "" !important;
  width: 42px;
  height: 42px;
  padding: 2px;
  border: 1px solid #9c2fa8;
  background: center center no-repeat transparent;
  background-size: 37px auto;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
@media (min-width: 992px) {
  .plan-selection .card.bundle-trial .trial-feature > div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.plan-selection .card.bundle-trial .trial-feature:nth-child(1) > div:before {
  background-image: url(/assets/free-trial-icon-2.png);
}
.plan-selection .card.bundle-trial .trial-feature:nth-child(2) > div:before {
  background-image: url(/assets/free-trial-icon-3.png);
}
.plan-selection .card.bundle-trial .trial-feature:nth-child(3) > div:before {
  background-image: url(/assets/free-trial-icon-4.png);
}
.plan-selection .card.bundle-trial .trial-feature:nth-child(4) > div:before {
  background-image: url(/assets/free-trial-icon-5.png);
}
.plan-selection .card.bundle-popular .card-header {
  background: rgb(156, 47, 168);
  background: linear-gradient(128deg, rgb(156, 47, 168) 0%, rgb(240, 41, 95) 100%);
}
.plan-selection .card.bundle-popular .btn-primary:not([disabled]) {
  background: rgb(156, 47, 168);
  background: linear-gradient(128deg, rgb(156, 47, 168) 0%, rgb(240, 41, 95) 100%);
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.plan-selection .card.bundle-popular .btn-primary:not([disabled]):hover, .plan-selection .card.bundle-popular .btn-primary:not([disabled]):active {
  background: rgb(156, 47, 168) !important;
  background: linear-gradient(128deg, rgb(156, 47, 168) 0%, rgb(240, 41, 95) 100%) !important;
  filter: brightness(1.1);
}
.plan-selection .card.bundle-popular:after {
  content: "POPULAR";
  width: 82px;
  padding-top: 1px;
  background: #ff9843;
  color: #fff;
  font-size: 8px;
  line-height: 1.3;
  text-align: center;
  transform-origin: center center;
  right: -20px;
  top: 10px;
  position: absolute;
  transform: rotate(30deg);
  display: block;
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
}
.plan-selection .card h3 {
  margin-bottom: 0;
  padding-bottom: 10px;
}
.plan-selection .card ul {
  margin: 0;
  padding: 0;
}
.plan-selection .card ul li {
  list-style: none;
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
  color: #bbb;
  font-weight: 600;
}
.plan-selection .card ul li:before {
  margin-right: 9px;
  content: "\f14d";
  color: #c7c7c7;
  font-family: Ionicons;
  font-size: 22px;
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
  left: 0;
  top: -5px;
  position: absolute;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  transform: translateY(-1px);
}
.plan-selection .card ul li.active {
  color: inherit;
}
.plan-selection .card ul li.active:before {
  content: "\f149";
  color: #9c2fa8;
}
.plan-selection .card ul li span {
  color: #9c2fa8;
}
.plan-selection .card .pricing {
  margin-top: 5px;
  text-align: center;
}
.plan-selection .card .pricing h2 {
  margin-bottom: 0;
  font-size: 24px;
  color: #9c2fa8;
}
.plan-selection .card .card-footer {
  padding: 0 20px 20px;
  background: none;
  border-top: none;
}
.plan-selection .card .btn {
  min-width: 150px;
}

.product-information .card {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.product-information .card h3 {
  margin-bottom: 12px;
}
.product-information .card h3 i {
  margin-right: 3px;
  color: #ff9843;
}
.product-information .card ul {
  margin: 0;
  padding: 0;
}
.product-information .card ul li {
  list-style: none;
  margin: 3px 0;
  color: #bbb;
  font-weight: 600;
}
.product-information .card ul li:before {
  margin-right: 9px;
  content: "\f14d";
  color: #c7c7c7;
  font-family: Ionicons;
  font-size: 22px;
  font-weight: normal;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  transform: translateY(-1px);
}
.product-information .card ul li.active {
  color: inherit;
}
.product-information .card ul li.active:before {
  content: "\f149";
  color: #9c2fa8;
}
.product-information .card ul li span {
  color: #9c2fa8;
}
.product-information .card .card-footer {
  background: none;
}
.product-information .card .card-footer strong {
  color: #ff9843;
}

.survey {
  /*[id*=column-] {
      padding: 40px 20px;
  }

  #column-left {
      background: #ebedee;

      h1 {
          margin-top: 0;
      }

      .col-sm-4 {
          img {
              margin-bottom: 10px;
          }
      }
  }

  #column-right {
      background: #3c4457;

      h2,
      p {
          color: #fff;
      }

      .buttons {
          .btn {
              min-width: 145px;
          }
      }
  }*/
}
.survey .search-business {
  margin: 0 auto;
}
.survey .search-business label[for=searchText],
.survey .search-business #country-select {
  display: none;
}
.survey .search-business [class^=col-] {
  flex: 1;
  width: 100%;
  max-width: unset;
}
.survey .search-business #searchText {
  padding: 5px 80px 5px 14px;
}
.survey .search-business #searchResults {
  margin-top: 10px !important;
}
.survey .search-business .buttons {
  margin-top: 0;
}
.survey .search-business .btn.btn-primary {
  width: 75px;
  padding: 8px 14px;
  line-height: 24px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  background-color: #9c2fa8;
  font-size: 14px;
  color: #fff;
}
.survey .search-business .btn.btn-primary:hover, .survey .search-business .btn.btn-primary:focus {
  background: #84208f !important;
  border: none;
  color: #fff !important;
}
.survey .search-business .btn.btn-primary:after {
  content: "Search";
}
.survey .search-business .btn.btn-primary i {
  display: none;
}
.survey .text-input input {
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15) inset;
}
.survey .survey-control.custom-control-input {
  position: relative;
  z-index: auto;
  opacity: 1;
}
.survey .survey-control.is-invalid,
.survey .survey-control .was-validated .form-control:invalid {
  border-color: #F1245C;
  border-style: solid;
  border-width: 1px;
  border-radius: 4px;
}
.survey .survey-control.is-invalid #searchText,
.survey .survey-control .was-validated .form-control:invalid #searchText {
  border-width: 0;
}
.survey .survey-control .businessEntityNumber-input button.close-button {
  padding: 8px 15px;
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: auto;
  background: none;
  color: black;
  font-size: 24px;
}
.survey .choices {
  margin: 0 auto;
  text-align: center;
}
.survey .choices a {
  width: auto;
  min-width: 135px;
  height: 42px;
  margin: 8px 5px;
  padding: 10px 20px;
  line-height: 21px;
  background: #fff;
  display: inline-block;
  text-decoration: none;
  color: #404040;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.survey .choices a:hover, .survey .choices a:active {
  background: #9095a2;
}
.survey .choices a.light {
  border: 1px solid #aaa;
  background: #fff;
  color: #404040;
}
.survey .choices a.light:hover, .survey .choices a.light:active {
  border-color: #9c2fa8;
}
.survey .choices a.selected {
  background-color: rgba(156, 47, 168, 0.0784313725);
  border-color: #9c2fa8 !important;
  color: #9c2fa8;
}
.survey .choices a img {
  height: 22px;
  margin-right: 5px;
  vertical-align: middle;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}
.survey .choices label.is-checked {
  border-color: #42afa1 !important;
  background: #42afa1;
  color: #fff;
}
.survey .choices label.is-checked .el-radio__label {
  color: #fff;
}
.survey.survey-wizard > .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
.survey.survey-wizard a:not(.btn) {
  -webkit-transition: 0.2s all ease;
  -moz-transition: 0.2s all ease;
  transition: 0.2s all ease;
}
.survey.survey-wizard a:not(.btn) .fa {
  margin: 0 5px;
  font-size: 18px;
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  transform: translateY(1px);
}
.survey .wizard-question {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  background: #fff;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.survey .wizard-question span.el-radio__input {
  display: none;
}
.survey .wizard-question .borderRed {
  border-color: #fb5149 !important;
  /*.el-input__inner {
      border-color: #fb5149 !important;
  }*/
}
.survey .wizard-question .moneyQuestionComponent input::-webkit-outer-spin-button,
.survey .wizard-question .moneyQuestionComponent input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
.survey .wizard-pagination {
  font-size: 20px;
  text-align: center;
}
.survey .wizard-pagination span {
  color: #9c2fa8;
}
.survey .buttons a:not(.btn),
.survey .links a:not(.btn) {
  margin-left: 15px;
  margin-right: 15px;
}
.survey .buttons i,
.survey .links i {
  vertical-align: middle;
}
.survey .links a:not(.btn) {
  font-size: 13px;
}
@media (min-width: 992px) {
  .survey {
    min-height: calc(100vh - 195px);
  }
  .survey.offer-step {
    display: flex;
    flex-direction: row;
  }
  .survey.offer-step [id*=column-] {
    width: 50%;
    padding: 40px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .survey #column-left .col-sm-4 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .survey #column-left .col-sm-4 + .col-sm-4 {
    margin-top: 12px;
  }
  .survey #column-left .col-sm-4 img {
    max-width: 48px;
    height: 32px;
    align-self: center;
  }
  .survey #column-left .col-sm-4 p {
    width: calc(100% - 55px);
    align-self: center;
  }
  .survey .wizard-question {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .survey .choices a {
    height: auto;
    min-width: calc(50% - 14px);
    margin: 5px 6px;
    padding: 10px;
    font-size: 13px;
  }
  .survey .choices a:nth-child(2n) {
    margin-left: 10px;
  }
  .survey .choices a img {
    height: 19px;
    margin-right: 3px;
  }
  .survey .wizard-question {
    padding: 30px 20px;
  }
  .survey .wizard-question .choices a {
    width: auto;
    min-width: calc(50% - 14px);
  }
  .survey .wizard-question .choices a:nth-child(2n) {
    margin-left: 6px;
  }
}
@media (max-width: 369px) {
  .survey .choices a {
    width: 100%;
    margin: 5px 0;
  }
}
