@import url('https://fonts.googleapis.com/css2?family=Noto+Serif&family=Poppins:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&display=swap');

html {
  /* --background-color: #e1e1e1; */
  --white: #ffffff;
  --primary-dash: #4615D6;
  --primary-dash-hover: #3509b9;
  --primary-dash-active: #220088;
  --primary-dash-light: #E1DDFD;
  --secondary-dash: #FF4D63;
  --secondary-dash-hover: #cc2d40;
  --accent-dash: #FFDE40;
  --footer-bg: #DBDFE3;
  --footer-text: #868787;
  --black: #252525;
  --pg-bg-grey: #F1F2F6;
  --pg-text-color: #595959;
  --form-focus-border-color: #ABA0F7;
  --form-focus-shadow-color: #aca0f74d;
}



body {
  background-color: var(--pg-bg-grey);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  color: var(--primary-dash);
  font-weight: 600;
}

h1, .h1, h2, .h2, h3, .h3 {
  letter-spacing: -0.03em;
}

.body-wrapper {
  padding-block-start: 3rem;
  padding-block-end: 4rem;
}

.container-fluid:has(header) {
  background-color: var(--white);
}

.header-logo-link {
  width: 100%;
  max-width: 190px;
}

.header-logo-link img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .header-logo-link {
    width: 100%;
    max-width: 237px;
  }
}

#main-navigation {
  justify-content: end;
}

.navbar {
  --bs-navbar-padding-y: 1rem;
}

.navbar .navbar-nav {
  --bs-nav-link-font-size: 0.81rem;
  --bs-nav-link-font-weight: 700;
  --bs-navbar-nav-link-padding-x: 6px;
  --bs-navbar-active-color: var(--secondary-dash);
  text-transform: uppercase;
}

.nav-item.active > .nav-link {
  color: var(--bs-navbar-active-color);
}

/* @media (max-width: 991px) {
  .navbar .navbar-nav {
    margin-block-start: 10px; 
  }
} */

.nav-item {
  display: flex;
  align-items: center;
}


.nav-item .btn-link {
  color: var(--secondary-dash);
  text-decoration: underline;
}


.nav-item .btn-link:hover {
  color: var(--secondary-dash-hover);
}



.modal-content > .btn-close {
  position: absolute;
  top: .5em;
  right: .5em;
  z-index: 1;
}

.modal-body {
  --bs-modal-padding: 1.4rem;
}

@media (min-width: 768px) {
  .modal-body {
    --bs-modal-padding: 2rem;
  }
}

.modal-body p {
  margin-bottom: .3em;
}

.modal-body *:last-child {
  margin-bottom: 0;
}

.modal-body a {
  color: var(--secondary-dash);
}

.modal-body a:hover{
  color: var(--secondary-dash-hover);
}

.sidebar {
  width: 100%;
  padding-inline-end: 0;
}

@media (min-width: 768px) {
  .sidebar {
    max-width: 265px;
    padding-block-start: 30px;
  }
}

.sidebar .list-group {
  border-radius: 0;
}

.sidebar .list-group-item {
  gap: .5rem;
}

.sidebar a {
  border: none;
  border-inline-start: 4px solid var(--secondary-dash);
}

.sidebar a:hover {
  opacity: 0.9;
}

.sidebar a[aria-current="to-do"] {
  background-color: var(--footer-bg);
  color: var(--pg-text-color);
  border-inline-start-color: var(--footer-bg);
  --primary-dash: var(--pg-text-color);
}

.sidebar .list-group-icon-wrapper {
  --icon-size: 32px;
  width: var(--icon-size);
  height: var(--icon-size);
}

.sidebar .list-group-icon-wrapper svg {
  width: var(--icon-size);
  height: var(--icon-size);
  fill: var(--primary-dash);
}

.sidebar a[aria-current="to-do"] .list-group-icon-wrapper svg {
  --primary-dash: var(--pg-text-color);
}

.sidebar a[aria-current="true"] .list-group-icon-wrapper svg {
  --primary-dash: var(--secondary-dash);
}

.list-group-details h6 {
  font-size: 0.85rem;
}
.list-group-details p {
  font-size: 0.85rem;
  margin-block-end: 0;
}

.body-row:has(.main) {
  background: white;
}

.main {
  padding: 2rem;
}

.main-content {
  padding-inline-start: 0;
  padding-inline-end: calc(var(--bs-gutter-x)* .5);
  
}

.main-content .form-wrapper {
  --bs-btn-border-color:var(--primary-dash);
  --bs-btn-bg:var(--primary-dash);
  background-color: var(--white);
  padding: 1.5rem 0.6rem;
  
}

@media (min-width: 768px) {
  .main-content .form-wrapper {
    padding: 1.5rem;
    min-height: 23rem;
  }
}

@media (min-width: 992px) {
  .main-content .form-wrapper {
    padding: 3rem;
  }
}

.main-content a {
  color: var(--secondary-dash);
}

.main-content a:hover {
  color: var(--secondary-dash-hover);
}

.main-content .btn-primary,
.main .btn-primary {
  --bs-btn-border-color: var(--primary-dash);
  --bs-btn-bg: var(--primary-dash);
  --bs-btn-hover-bg: var(--primary-dash-hover);
  --bs-btn-hover-border-color: var(--primary-dash-hover);
  --bs-btn-active-bg: var(--bs-btn-active-border-color);
  --bs-btn-active-border-color: var(--primary-dash-active);
  --bs-btn-border-radius: 3em;
}

.form-check-label {
  line-height: 1.3;
}

@media (max-width: 767.98px) {
  .body-row {
    flex-direction: column;
  }
  .sidebar, .main-content {
    padding-inline: calc(var(--bs-gutter-x)* .5);
  }
  .sidebar a {
    border-inline-start: none;
    border-block-start: 4px solid var(--secondary-dash);
  }
  .sidebar a[aria-current="to-do"] {
    border-block-start: 4px solid var(--footer-bg);
    --primary-dash: var(--pg-text-color);
  }
  .sidebar a[aria-current="true"], .sidebar a[aria-current="done"] {
    border-block-start: 4px solid var(--secondary-dash);
  }
  .list-group {
    flex-direction: row;
    padding-inline-start: 15px;
  }
  .sidebar .list-group-item {
    width: initial;
    gap: 0;
  }
  .list-group-details {
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  .sidebar .list-group-icon-wrapper {
    justify-items: center;
  }
}

.bf-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding-block: 1rem;
  margin-block-start: auto;
}
.bf-footer p {
  font-size: 0.8rem;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
  max-width: 110ch;
  margin-inline: auto;
}

@media (min-width: 576px) {
  .bf-footer {
    padding-block: 2rem;
  }
  
  .bf-footer p {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .bf-footer {
    padding-block: 2rem;
  }
}

/* choose loan radios */

.radio-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bs-gutter-x);
  grid-template-rows: repeat(1, minmax(0, 1fr));
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

@media (max-width: 767.98px) {
  .radio-card-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
  }
}

.radio-card {
  padding: 20px 20px 20px 40px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  position: relative; /* position only needed for clickable parent hack for radio label ::after */
}

.radio-card:has(input[type="radio"]:checked) {
  box-shadow: 0 0 0 .25rem var(--form-focus-shadow-color);
  border: var(--bs-border-width) solid var(--form-focus-border-color);
}

/* clickable parent hack */
.radio-card__label::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}

.radio-card__title,
.radio-card__description {
  display: inline-block;
}

.radio-card__title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1;
  /* color: var(--primary-dash); */
}

.radio-card__description {
  font-size: 14px;
  line-height: 1.4;
}

/* form overrides */

.form-control:focus, 
.form-check-input:focus,
.form-select:focus {
  border-color: var(--form-focus-border-color);
  box-shadow: 0 0 0 .25rem var(--form-focus-shadow-color);
}

.form-check-input:checked {
  border-color: var(--primary-dash);
  background-color: var(--primary-dash);
}

.my-details > table span:not(:first-of-type) {
  margin-inline-start: .3em;
}


.eoy-promo-card, .promo-card {
  background-color: var(--primary-dash);
  color: #fff;
  margin-bottom: 25px;
  padding: 20px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 480px) {
  .eoy-promo-card, .promo-card {
    padding: 20px;
  }
}
.eoy-promo-card a, .promo-card a {
  color: var(--secondary-dash);
}
.eoy-promo-card a:hover, .eoy-promo-card a:focus, .promo-card a:hover, .promo-card a:focus {
  color: var(--secondary-dash-hover);
}
.eoy-promo-card .scotpac-logo, .promo-card .scotpac-logo {
  width: 100%;
  max-width: 170px;
  margin-bottom: 1em;
}
.eoy-promo-card p:last-of-type, .promo-card p:last-of-type {
  margin-bottom: 0;
}
.eoy-promo-card h5, .promo-card h5 {
  text-transform: uppercase;
  color: var(--secondary-dash);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.help-card {
  background-color: #E1DDFD;
  padding: 20px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (min-width: 480px) {
  .help-card {
    padding: 20px;
  }
}
.help-card h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-dash);
}
.help-card h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dash);
  margin-top: 1.4em;
}
.help-card ul {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
  padding-left: 15px;
}
.help-card li::marker {
  color: var(--primary-dash);
}
.help-card li:not(:last-child) {
  margin-bottom: 7px;
}

.help-card p:last-child {
  margin-bottom:0;
}
.help-card p {
  color: #000000;
  /* margin-bottom: 25px; */
}
.help-card ul a {
  color: var(--primary-dash-hover);
}

.info-blocks-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  align-content: space-between;
}

.info-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #4615D6;
  border-radius: 5px;
  width: 100%;
  margin-right: 1.5%;
  margin-bottom: 15px;
  padding: 10px;
  text-decoration: none;
  min-width: 135px;
  max-width: 18.79%;
}
.info-block:last-of-type {
  margin-right: 0px;
}
.info-block:hover, .info-block:visited, .info-block:focus {
  text-decoration: none;
  opacity: 0.9;
}
@media only screen and (max-width: 991px) {
  .info-block {
    max-width: 31.8%;
  }
}
@media only screen and (max-width: 575px) {
  .info-block {
    max-width: 47.9%;
    margin-right: 4%;
  }
  .info-block:nth-of-type(even) {
    margin-right: 0;
  }
}
.info-block span.h3 {
  color: #FF4D63;
  line-height: 1;
  margin: 0;
  margin-bottom: 5px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none !important;
}
.info-block span.h4 {
  color: #fff;
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  position: relative;
  padding: 0;
}

.info-commission span.h4 {
  font-size: 30px;
  margin-bottom: 2px;
}

.action-blocks-container {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  align-content: space-between;
}
.action-blocks-container .action-block {
  background: #fff;
  border-radius: 5px;
  border: 1px solid #F1F2F6;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.action-blocks-container .action-block:nth-of-type(even) {
  margin-right: 0;
}
@media (min-width: 992px) {
  .action-blocks-container .action-block {
    width: 49.24%;
    margin-right: 1.5%;
  }
}
.action-blocks-container .action-block a {
  background: #FF4D63;
  color: #fff;
  padding: 10px 30px;
  display: inline-block;
  text-decoration: none;
  border-radius: 5px;
}
.action-blocks-container .action-block a:hover {
  background: #ff6779;
}
.action-blocks-container h4 {
  margin: 10px 0px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 1.1;
  color: #4615D6;
  font-weight: 600;
}


/* Old application form stlying */

::-moz-selection {
  background-color: #FF4D63;
  color: #fff;
}

::selection {
  background-color: #FF4D63;
  color: #fff;
}

body {
  font-family: "Poppins", sans-serif;
}

h1, h2 {
  font-family: "Noto Serif", serif;
}

.bf-brand-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .bf-brand-wrapper {
    display: block;
    margin-bottom: 0;
  }
}
.bf-brand-wrapper .logo {
  order: 1;
  width: 100%;
  max-width: 173px;
}
@media screen and (min-width: 768px) {
  .bf-brand-wrapper .logo {
    margin-bottom: 25px;
    max-width: 173px;
  }
}

.bf-brand-wrapper-lower .logo {
  width: 100%;
  max-width: 173px;
}

.bf-header {
  background: #4615D6;
  background-size: contain;
  color: #fff;
  border-bottom: 6px solid #FFDE40;
}
.bf-header h1 {
  color: #fff;
  font-weight: 400;
  font-size: 2.3rem;
  line-height: 1;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bf-header h1 {
    font-size: 2.7rem;
  }
}
.bf-header h4 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1;
}
.bf-header .lead {
  font-size: 1rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .bf-header .lead {
    font-size: 1.2rem;
  }
}
.bf-header .lead a {
  color: #fff;
  text-decoration: underline;
}
.bf-header .lead a:focus, .bf-header .lead a:hover {
  opacity: 0.8;
}
.bf-header .help-toggle {
  color: #FF4D63;
  font-size: 0.8rem;
}
@media screen and (min-width: 768px) {
  .bf-header .help-toggle {
    font-size: 1rem;
  }
}
.bf-header .card-body {
  background: #3e13bf;
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .bf-header .card-body {
    font-size: 1rem;
  }
}
.bf-header .card-body h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: #252525;
  font-weight: 700;
  color: #FFDE40;
}
@media screen and (min-width: 768px) {
  .bf-header .card-body h4 {
    font-size: 1rem;
  }
}
.bf-header .card-body ul {
  -webkit-padding-start: 1.2rem;
          padding-inline-start: 1.2rem;
}
.bf-header .card-body a {
  color: #FFDE40;
  text-decoration: underline;
}
.bf-header .card-body a:hover {
  opacity: 0.9;
}

.modal {
  line-height: 1.3;
  font-size: 0.95rem;
}
.modal h5 {
  color: #4615D6;
  font-weight: 700;
  letter-spacing: 0;
}
.modal .close {
  color: #FF4D63;
  opacity: 1;
}
.modal h6 {
  font-size: 1rem;
  text-transform: none;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.modal .btn-primary {
  background-color: #FF4D63;
  border-color: #FF4D63;
}
.modal .btn-primary:hover, .modal .btn-primary:focus {
  background-color: #ff6779;
  border-color: #ff6779;
}
.modal .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #ff344d;
  border-color: #ff344d;
}

.bf-form-section {
  background-color: #F1F2F6;
}
.bf-form-section label, .bf-form-section .label {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.bf-form-section .custom-control-inline label {
  font-size: 1rem;
}
.bf-form-section .custom-control-inline label a {
  color: #252525;
  text-decoration: underline;
}
.bf-form-section .custom-control-inline label a:hover {
  opacity: 0.9;
}
.bf-form-section .custom-control-input {
  border-radius: 3px;
}
.bf-form-section .custom-control-input ~ .custom-control-label::before {
  border-radius: 5px;
  border-color: #BAC2CB;
  background-color: #BAC2CB;
}
.bf-form-section .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #FF4D63;
  background-color: #FF4D63;
}
.bf-form-section .btn-primary {
  background-color: #FF4D63;
  border-color: #FF4D63;
}
.bf-form-section .btn-primary:hover, .bf-form-section .btn-primary:focus {
  background-color: #ff6779;
  border-color: #ff6779;
}
.bf-form-section .btn-primary:not(:disabled):not(.disabled):active {
  background-color: #ff344d;
  border-color: #ff344d;
}
.bf-form-section ol {
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-padding-start: 1.25em;
          padding-inline-start: 1.25em;
}
.bf-form-section ol li {
  padding-left: 0.25em;
}

/* START new styles for Dec 2020 update */
.page-content-wrap {
  background-color: #F1F2F6;
  min-height: 100vh;
}

.bf-accept-proceed-section {
  background: #fff;
}
.bf-accept-proceed-section h4 {
  font-size: 1.5rem;
  color: #727272;
}
@media screen and (min-width: 992px) {
  .bf-accept-proceed-section h4 {
    font-size: 1.9rem;
    letter-spacing: -1px;
  }
}
.bf-accept-proceed-section .lead {
  font-size: 1.125rem;
  font-weight: 400;
}
.bf-accept-proceed-section a {
  color: #252525;
  text-decoration: underline;
}
.bf-accept-proceed-section a:hover, .bf-accept-proceed-section a:focus {
  opacity: 0.9;
}

a.bf-text-link {
  color: #252525;
  text-decoration: underline;
}
a.bf-text-link:hover, a.bf-text-link:focus {
  opacity: 0.9;
}

.bf-form-section-w-iframe {
  background-color: #F1F2F6;
}

.file-upload-border {
  border: 4px #e1e4ec dashed;
  padding: 1.25rem;
}

.transparent-bg {
  /* The .transparent-bg class is for the body tag only - added to the body for iframe embed form(s) that are to be placed on the website  */
  background-color: transparent;
}
.transparent-bg .page-content-wrap, .transparent-bg .bf-form-section {
  /* makes the .page-content-wrap transparent if present AND the element is a child of element with .transparent-bg class */
  background-color: transparent;
}

/* END new styles for Dec 2020 update */
.bf-results-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.bf-results-card h4 {
  color: #4615D6;
  font-weight: 700;
  font-size: 1.6rem;
}
.bf-results-card p {
  font-size: 0.95rem;
}
.bf-results-card .loan-value {
  font-weight: 700;
  font-size: 3.2rem;
  color: #585858;
  margin-bottom: 0;
  line-height: 1;
}
.bf-results-card .loan-repayments {
  font-size: 0.85rem;
}
.bf-results-card .btn-primary,
.bf-results-card .btn-sm {
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 0.8rem;
  padding-right: 0.8rem;
}
.bf-results-card .loan-note {
  font-size: 0.78rem;
  line-height: 1.25;
  margin-bottom: 0;
}

.bf-income-wrapper {
  background-color: #fff;
  width: 100%;
  min-height: 100px;
  padding: 1rem;
}

.thanks-col p {
  font-size: 1.1rem;
}
@media screen and (min-width: 576px) {
  .thanks-col p {
    font-size: 1.25rem;
  }
}
.thanks-col a {
  color: #252525;
  text-decoration: underline;
}
.thanks-col a:hover {
  opacity: 0.9;
}

.bf-testimonial-card {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #727272;
  line-height: 1.3;
}
.bf-testimonial-card .testimonial-icon {
  width: 70px;
  height: auto;
}
@media screen and (min-width: 576px) {
  .bf-testimonial-card .testimonial-icon {
    width: 90px;
  }
}
.bf-testimonial-card .quote {
  font-size: 1.1rem;
  font-weight: 100;
  max-width: 650px;
}
@media screen and (min-width: 576px) {
  .bf-testimonial-card .quote {
    font-size: 1.35rem;
  }
}
.bf-testimonial-card .quote-source {
  margin-bottom: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Quick quote May 2021 version specific styles */
.bf-header-sm {
  background-color: #4615D6;
}
.bf-header-sm h1 {
  color: #fff;
  font-weight: 400;
}
.bf-header-sm .logo {
  width: 100%;
  height: auto;
  max-width: 150px;
}
@media screen and (min-width: 576px) {
  .bf-header-sm .logo {
    max-width: 200px;
  }
}

@media screen and (min-width: 768px) {
  .text-center-md {
    text-align: center;
  }
}
.bf-qq-btn-group-wrapper .btn-primary {
  border: solid 1px #252525;
  border-color: #323232;
  background-color: #656565;
}
@media screen and (min-width: 320px) {
  .bf-qq-btn-group-wrapper .btn-primary {
    margin-right: 8px;
  }
  .bf-qq-btn-group-wrapper .btn-primary:last-of-type {
    margin-right: 0;
  }
}
.bf-qq-btn-group-wrapper .btn-primary:not(:disabled):not(.disabled).active {
  background-color: #FF4D63;
  border-color: #ff344d;
}
.bf-qq-btn-group-wrapper .btn-group-toggle {
  justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .bf-qq-btn-group-wrapper .btn-group-toggle {
    justify-content: center;
  }
}

.bf-qq-btn-group-wrapper-stacked .btn-group-toggle {
  max-width: 510px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .bf-qq-btn-group-wrapper-stacked .btn-group-toggle {
    max-width: 430px;
  }
}
@media screen and (min-width: 576px) {
  .bf-qq-btn-group-wrapper-stacked .btn-group-toggle {
    justify-content: center;
  }
}
.bf-qq-btn-group-wrapper-stacked .btn-primary {
  width: 100%;
  margin-bottom: 5px;
}
@media screen and (min-width: 440px) {
  .bf-qq-btn-group-wrapper-stacked .btn-primary {
    width: initial;
    margin-bottom: 0;
  }
}

.bf-qq-left-col {
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  .bf-qq-left-col {
    text-align: right;
    justify-content: flex-end;
    padding-right: 0;
  }
}

.bf-qq-right-col {
  text-align: right;
  padding-left: 5%;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .bf-qq-right-col {
    text-align: left;
    padding-left: 0;
    justify-content: initial;
  }
}

.bf-qq-right-col, .bf-qq-left-col {
  line-height: 1.2;
  align-items: top;
  padding-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .bf-qq-right-col, .bf-qq-left-col {
    align-items: center;
    padding-top: 0;
  }
}
.bf-qq-right-col .small, .bf-qq-left-col .small {
  font-size: 0.7rem;
}

/* range slider styles */
@media screen and (min-width: 768px) {
  .bf-qq-left-col-rs {
    text-align: left;
    justify-content: initial;
  }
}

@media screen and (min-width: 768px) {
  .bf-qq-right-col-rs {
    text-align: right;
    justify-content: flex-end;
  }
}

.bf-term-btn-group label {
  font-size: 12px;
  padding: 0.375rem 0.5rem;
}
@media screen and (min-width: 415px) {
  .bf-term-btn-group label {
    font-size: 0.9rem;
    padding: 0.375rem 0.75rem;
  }
}
.bf-term-btn-group .btn-secondary:not(:disabled):not(.disabled).active, .bf-term-btn-group .btn-secondary:not(:disabled):not(.disabled):active {
  background-color: #FFDE40;
  border-color: #ffd50d;
  color: #252525;
}

.bf-term-btn-group > .btn:not(:first-child):not(.dropdown-toggle) {
  border-left: 1px solid #585858;
}

.noUi-tooltip {
  font-size: 12px;
  line-height: 1.1;
  opacity: 0.9;
}

.noUi-tooltip {
  display: none;
}

.noUi-active .noUi-tooltip {
  display: block;
}

.noUi-connect {
  background: #BAC2CB;
  background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(255, 192, 0) 15%, rgb(250, 237, 1) 40%, rgb(218, 237, 29) 65%, rgb(30, 150, 0) 100%);
}

#slider-tradinglength.noUi-connect {
  background: #BAC2CB;
  background: linear-gradient(90deg, rgb(255, 0, 0) 0%, rgb(255, 192, 0) 15%, rgb(250, 237, 1) 40%, rgb(218, 237, 29) 65%, rgb(30, 150, 0) 100%);
}

/*
#slider-rating.noUi-connect {
    background: $bf-grey-darker;
    background: linear-gradient(90deg, rgba(255,0,0,1) 0%, rgba(255,0,0,1) 32%, rgba(255,255,255,1) 32%, rgba(255,255,255,1) 32.5%, rgba(255,192,0,1) 32.5%, rgba(255,192,0,1) 45%, rgba(250,237,1,1) 55%, rgba(218,237,29,1) 70%, rgba(30,150,0,1) 100%);
}

*/
#slider-rating.noUi-connect {
  background: #BAC2CB;
  background: linear-gradient(90deg, #BAC2CB 0%, #BAC2CB 7%, rgb(255, 255, 255) 7%, rgb(255, 255, 255) 7.5%, rgb(255, 123, 0) 7.5%, rgb(255, 123, 0) 7.5%, rgb(250, 237, 1) 35%, rgb(218, 237, 29) 50%, rgb(30, 150, 0) 100%);
}

#slider-property.noUi-connect {
  background: #BAC2CB;
  background: linear-gradient(90deg, rgb(255, 192, 0) 0%, rgb(255, 192, 0) 25%, rgb(250, 237, 1) 47%, rgb(218, 237, 29) 65%, rgb(30, 150, 0) 100%);
}

/* End range slider styles */

.multi-boxshadow {
  box-shadow: 0 1.1px 2.2px rgba(0, 0, 0, 0.014), 0 2.7px 5.3px rgba(0, 0, 0, 0.02), 0 5px 10px rgba(0, 0, 0, 0.025), 0 8.9px 17.9px rgba(0, 0, 0, 0.03), 0 16.7px 33.4px rgba(0, 0, 0, 0.036), 0 40px 80px rgba(0, 0, 0, 0.05);
}