/* COLORS */
/* BORDERS */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@font-face {
  font-family: 'CircularBlack';
  src: url(../fonts/Circular/Circular-Black.ttf);
  font-weight: 700;
}
@font-face {
  font-family: 'CircularBook';
  src: url(../fonts/Circular/Circular-Book.ttf);
  font-weight: 400;
}
@font-face {
  font-family: 'CircularMedium';
  src: url(../fonts/Circular/Circular-Medium.ttf);
  font-weight: 100;
}
* {
  margin: 0;
  padding: 0;
}

html,
body {
  background: #ededf3;
  font-family: 'CircularBook', 'Open Sans', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  background: none;
  font-family: 'CircularMedium', 'Open Sans', sans-serif;
}

p {
  font-family: 'CircularBook', 'Open Sans', sans-serif;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  box-shadow: 0 0 0 30px white inset !important;
}

#pie {
  height: 150px;
}

.hfd-primary1 {
  color: #040741;
  font-size: 150%;
}
@media screen and (max-width: 620px) {
  .hfd-primary1 {
    font-size: 1.2rem;
  }
}

.hfd-primary2 {
  color: #040741;
}

.hfd-past-due {
  color: #ffc557;
}

.hfd-missed {
  color: #dd4026;
}

.hfd-primary-button {
  display: block;
  width: 100%;
  border-radius: 5px;
  padding: 0.5rem 0;
}

.hfd-past-due-button {
  display: block;
  width: 100%;
  border: none;
  border-radius: 5px;
  background: #ffc557;
  padding: 0.5rem 0;
  outline: none;
  color: white;
}
.hfd-past-due-button:hover {
  background: #ffa400;
}

.hfd-text-button {
  color: #1a8aac !important;
  border: none;
  background: none !important;
  margin: 0;
  padding: 0;
  font-size: 0.8rem !important;
}

.hfd-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 33.33%;
  height: 100vh;
  padding: 2rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.hfd-sidebar.medium {
  max-width: 33.33%;
}
.hfd-sidebar.customer-side {
  background: #00b189;
}
.hfd-sidebar .pay-now-button {
  background: #ffffff;
  color: #003894;
  outline: #003894;
  border-radius: 6px;
  border: #003894 1px solid;
}
.hfd-sidebar .pay-now-button:hover {
  background: #003894;
  color: #ffffff;
  outline: #ffffff;
  border: #ffffff 1px solid;
}

.logo.white {
  color: white;
  fill: white;
}

.white-text {
  color: white;
}

.center-flex {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hfd-rounded-box {
  background: white;
  border-radius: 15px;
  border: 1px solid #ccc;
  padding: 1rem;
  width: 50%;
}

.sign-up-from-sign-in {
  margin-top: 0.5rem;
  font-size: 12px;
  color: #999;
}

.align-right {
  text-align: right;
}

.right {
  float: right;
}

.error {
  color: #ee3b33;
}
.error.full-width {
  float: left;
  width: 100%;
}

.error-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-container .error-message {
  margin-bottom: 4rem;
  padding: 10px;
  background: #f0c5bc;
  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;
  border-radius: 10px;
}
.error-container .error-message p {
  padding: 0;
  margin: 0;
  color: #dd4026;
  font-family: 'CircularMedium';
  text-align: center;
}
.error-container .error-message.small {
  margin: 0;
  padding: 5px;
  border-radius: 5px;
}

.hfd-outline-button.btn-primary.btn {
  background: white;
  color: #1b69ce;
  outline: #1b69ce;
  border-radius: 0;
  border-color: #1b69ce;
  min-width: 100px;
}

.hfd-row-title {
  color: #333;
}

.hfd-card {
  position: relative;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 25px;
  background: #212121;
  color: white;
  height: 230px;
}
.hfd-card .priority-indicator {
  background: #fff;
  color: #999;
  position: absolute;
  top: 15px;
  left: 18px;
  border-radius: 25px;
  font-size: 12px;
  min-width: 65px;
  text-align: center;
  padding: 0.25rem;
}
.hfd-card .card-logo {
  position: absolute;
  top: 15px;
  right: 30px;
  max-width: 70px;
}
.hfd-card .card-number {
  position: absolute;
  bottom: 50px;
  left: 18px;
}
.hfd-card .card-name {
  position: absolute;
  bottom: 20px;
  left: 18px;
}
.hfd-card.VISA {
  background: #1653a5;
}
.hfd-card.MASTER {
  background: #e10000;
}
.hfd-card.DISCOVERY {
  background: #eb7d00;
}
.hfd-card.AMEX {
  background: #3498d8;
}
.hfd-card.hfd-ach {
  background: #fff;
  color: #999;
}
@media screen and (max-width: 620px) {
  .hfd-card {
    background: none !important;
    color: #7b868c;
    padding: 0rem 1rem !important;
    height: 90px;
    display: flex;
    margin-top: 1rem !important;
    box-shadow: -1px 9px 17px -4px rgba(0, 0, 0, 0.41);
    -webkit-box-shadow: -1px 9px 17px -4px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: -1px 9px 17px -4px rgba(0, 0, 0, 0.41);
  }
  .hfd-card .has-priority {
    margin-top: -15px !important;
  }
  .hfd-card .priority-indicator {
    position: relative;
    margin-top: -10px;
    padding: 0;
    min-width: 0;
    top: unset;
    left: unset;
    background: #323e48;
    color: #fff;
    border-radius: 5px;
  }
  .hfd-card .card-type {
    margin-right: 1rem;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
  }
  .hfd-card .card-logo {
    position: relative;
    top: unset;
    right: unset;
  }
  .hfd-card .card-logo img {
    width: 55px;
  }
  .hfd-card .card-info {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    font-size: 0.9rem;
    color: #7b868c;
  }
  .hfd-card .card-info .card-number {
    position: relative;
    bottom: unset;
    left: unset;
  }
  .hfd-card .card-info .card-name {
    position: relative;
    bottom: unset;
    left: unset;
  }
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  /*background-image: url(../images/close.svg) !important;*/
}

.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: url(../images/checkmark.svg) !important;
}

.icon {
  height: 50px;
  width: 50px;
  background-repeat: no-repeat;
}
.icon.ok {
  background-image: url(../images/checkmark.svg) !important;
  background-position: center;
}
.icon.warning {
  background-image: url(../images/warningOrange.svg) !important;
  background-position: center;
}
.icon.hand {
  background-image: url(../images/handMoney.svg) !important;
}
.icon.phone {
  background-image: url(../images/phone.svg) !important;
}
.icon.mobilephone {
  height: 25px;
  width: 100%;
  background-image: url(../images/mobilephone.svg) !important;
  background-size: 11px !important;
  background-position: center center;
}
.icon.warningWhite {
  background-image: url(../images/warningWhite.svg) !important;
  background-position: center;
}

.close-icon {
  background-image: url(../images/close.svg);
  background-position: center center;
  background-repeat: no-repeat;
  height: 20px;
  width: 20px;
  position: absolute;
  right: 35px;
  top: 50px;
}

.main-body-content {
  padding-top: 75px;
  padding-left: 90px !important;
  background-image: url('../images/bgImage.svg');
  background-position: bottom 55px right 55px;
  background-repeat: no-repeat;
  min-height: 100vh;
}
@media screen and (max-width: 480px) {
  .main-body-content {
    padding-top: 0.45rem !important;
  }
}

.horizontalScroll {
  -webkit-overflow-scrolling: touch;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap !important;
}
.horizontalScroll::-webkit-scrollbar {
  display: none;
}
.horizontalScroll .card {
  flex: 0 0 auto;
}

/* --- Home Components --- */
.quick-actions {
  margin-bottom: 1.3rem !important;
  align-items: center !important;
  display: flex !important;
}
.quick-actions p {
  margin-right: 0.65rem !important;
}
.quick-actions a {
  color: #7b868c !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quick-actions a ion-icon {
  font-size: 1.2rem !important;
  font-weight: 600;
}
.quick-actions a:hover {
  color: #0055b8 !important;
}

/* --- breadcrumb component --- */
.hfd-widget-card {
  border-radius: 15px !important;
  min-height: 100px;
}
.hfd-widget-card .payment-status-header {
  height: 60px;
  background: #00b189;
  color: white;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 1rem;
  padding-top: 0.75rem;
  font-size: 20px;
  font-family: CircularMedium;
  font-weight: 100;
}
.hfd-widget-card.past-due {
  border-color: #ffb324;
  background: #ffc557;
}
.hfd-widget-card.past-due .payment-status-header {
  background: #ffc557;
}
.hfd-widget-card.danger {
  border-color: #b4321c;
  background: #ffc557;
}
.hfd-widget-card.danger .payment-status-header {
  background: #dd4026;
}
.hfd-widget-card.current {
  border-color: #00b189;
  background: #00b189;
}
.hfd-widget-card .payment-status-body {
  background: white;
  min-height: 100px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.hfd-widget-card .card-widget-title {
  margin-left: 20px;
  margin-top: 20px;
  font-family: CircularMedium;
  font-weight: 100;
  font-size: 25px;
  color: #333;
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.hfd-widget-card .card-widget-title .blueme {
  margin-right: 8px;
  color: #0047ba;
}
.hfd-widget-card p.paymentOption-description {
  margin-top: 0.75rem;
}

.padding-1 {
  padding: 1rem;
}

.fixed-sn {
  position: fixed !important;
  top: 0;
  left: 0;
  max-width: 18%;
}
@media screen and (max-width: 480px) {
  .fixed-sn {
    display: none !important;
  }
}

@media screen and (max-width: 480px) {
  .p-5 {
    padding: 0.45rem !important;
  }
}
.p-5.no-padding {
  padding-bottom: 0 !important;
}

@media screen and (max-width: 480px) {
  .pr-3,
  .px-3 {
    padding: 0.45rem !important;
  }
}

.fake-status-selector {
  height: 25px !important;
}
@media screen and (max-width: 480px) {
  .fake-status-selector {
    display: none !important;
  }
}

.hfd-bar-loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 5rem;
}

.loader-bar {
  animation: loading infinite 1s;
  width: 1rem;
  height: 4rem;
  margin: 0 0.2rem;
}

.loader-bar:nth-child(1) {
  animation-delay: 0.6s;
  background: #0047ba;
}

.loader-bar:nth-child(2) {
  animation-delay: 1s;
  background: #ffa400;
}

.loader-bar:nth-child(3) {
  animation-delay: 1.4s;
  background: #00b189;
}

@keyframes loading {
  25% {
    height: 1rem;
    background-color: lightgrey;
  }
  75% {
    height: 5rem;
    background-color: lightgrey;
  }
}
.page-title {
  font-size: 35px;
  font-family: CircularMedium;
  color: #333;
  font-weight: 300;
  margin-bottom: 0;
}
.page-title.mobile {
  text-align: center;
  font-size: 24px;
  margin-top: 1rem;
}
.page-title.desktop {
  text-align: left;
  font-size: 36px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 300px;
}

.page-description {
  font-size: 20px;
  font-family: CircularMedium;
  color: #333;
  font-weight: 300;
  margin-top: 20px;
  color: #999;
}
.page-description.mobile {
  margin-top: 0;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}
.page-description.mobile p {
  margin: 0 !important;
}
.page-description.mobile .blue-text {
  color: #0055b8;
}
.page-description.mobile .blue-text.step-text {
  margin-right: 25px;
}

.mobile-wrapper {
  background: #fff;
}
.mobile-wrapper .container-fluid:not(.heading) {
  padding-top: 275px !important;
  padding-left: 20px;
  padding-right: 20px;
}
.mobile-wrapper .container-fluid:not(.heading):not([data-scroll='0']) {
  padding-top: 107px !important;
}
.mobile-wrapper .container-fluid {
  padding-left: 20px;
  padding-right: 20px;
}
.mobile-wrapper .main-body-content {
  padding: 0 !important;
  background: white;
}

.temp-container-height {
  min-height: 90vh;
}

.hfd-icon img {
  width: 50px;
}

/*# sourceMappingURL=hfd.css.map */
