/*
Theme Name: Flash Money
 */
@font-face {
  font-family: 'opineheavyregular';
  src: url('../fonts/opineheavy_regular-webfont.eot');
  src: url('../fonts/opineheavy_regular-webfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/opineheavy_regular-webfont.woff2') format('woff2'),
  url('../fonts/opineheavy_regular-webfont.woff') format('woff'),
  url('../fonts/opineheavy_regular-webfont.ttf') format('truetype'),
  url('../fonts/opineheavy_regular-webfont.svg#opineheavyregular') format('svg');
  font-weight: normal;
  font-style: normal;

}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  word-break: break-word;
}

.signup {
  color: white;
}

.signup input.form-control {
  color: white;
  border: none;
  border-bottom: 2px solid white;
  background-color: #21201f;
  padding-bottom: 10px;
}

.signup input.form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 1
}

.signup input.form-control::-moz-placeholder {
  color: #fff;
  opacity: 1
}

.signup input.form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 1
}

.signup input.form-control::-ms-input-placeholder {
  color: #fff;
  opacity: 1
}

.signup input.form-control::placeholder {
  color: #fff;
  opacity: 1
}

@media screen and (min-width: 640px) {
  .btn-minwidth {
    min-width: 200px;
  }
}

div.mt-3 {
  padding-top: 1.6rem;
}

.bg-warning {
  background-color: #ffca27 !important;
}

.bg-secondary {
  background-color: #9b9b9b !important;
}

.bg-light {
  background-color: #d6d6d6 !important;
}


@media (min-width: 1410px) {
  .container {
    max-width: 1380px
  }
}

.wrapper {
  overflow: hidden;
}

.fullwidth {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 100vw;
  max-width: 100vw;
  clear: both;
}

/*Header CSS
------------------------------------------------------------------------------*/
.header {
  padding: 15px 0;
  background: #fff;
}

@media screen and (min-width: 992px) {
  .header-wrapper {
    min-height: 86px;
  }

  .header.fix {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 991;
    width: 100%;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }

  .header.fix .logo {
    display: none;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.header .container {
  position: relative;
}

.header .logo {
  position: absolute;
  right: 0;
  top: -15px;
  z-index: 8;
  width: 342px;
}

.header-left {
  float: left;
}

.header-right {
  float: right;
  font-family: Segoe UI;
}

.header-right .ph {
  float: right;
  font-size: 3vw;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 99;
  font-family: Segoe UI;
}

.header-right .ph img {
  vertical-align: middle;
}

@media screen and (min-width: 992px) {
  .top-menu {
    float: left;
    margin-left: 20px;
  }

  .top-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .top-menu ul li {
    float: left;
    position: relative;
    z-index: 991;
  }

  .top-menu ul li a {
    padding: 14px 20px;
    color: #21201f;
    font-size: 20px;
    font-weight: 600;
    display: block;
  }

  .top-menu ul li a:hover,
  .top-menu ul li:hover > a,
  .top-menu ul li.current-menu-item > a {
    color: #ffca27;
    text-decoration: none;
  }

  .top-menu ul ul {
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    left: 0;
    width: 190px;
    background: #001e34;
    padding: 10px 0;
  }

  .top-menu ul ul li {
    float: none;
    padding: 0 15px;
  }

  .top-menu ul ul li a {
    color: #fff;
    display: block;
    padding: 5px;
  }

  .top-menu ul ul li a:hover,
  .top-menu ul ul li:hover > a,
  .top-menu ul ul li.current-menu-item > a {
    color: #ffca27;
  }

  .top-menu ul ul ul {
    left: 100%;
    top: 0;
  }

  .top-menu ul li:hover > ul {
    display: block;
  }

  .top-menu ul li ul {
    opacity: 0;
    z-index: 10;
    top: -9999em;
    -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, .4);
    box-shadow: 0 2px 7px rgba(0, 0, 0, .4);

    -webkit-transform: scale(.9);
    transform: scale(.9);

    -webkit-transform-origin: center top;
    transform-origin: center top;

    -webkit-transition-property: -webkit-transform, opacity, top;
    transition-property: transform, opacity, top;

    -webkit-transition-duration: .3s, .3s, 0s;
    transition-duration: .3s, .3s, 0s;

    -webkit-transition-delay: 0s, 0s, .3s;
    transition-delay: 0s, 0s, .3s;
  }

  .top-menu ul li:hover > ul {
    top: 100%;
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);

    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }

  .top-menu ul ul li:hover > ul {
    top: -10px;
    left: 100%;
  }
}


/*.home-banner{position:relative;}*/
/*.home-slideshow-wrap{position:relative; z-index:7;}*/
/*.home-slideshow-wrap .cycloneslider-template-default .cycloneslider-prev, .home-slideshow-wrap .cycloneslider-template-default .cycloneslider-next{opacity:1;}*/


/*.home-banner .caption{position:absolute; bottom:30px; left:50px; width:calc(100% - 100px); z-index:90;}*/
/*.home-banner .caption .con{width:520px; float:right;}*/
/*.home-banner .caption .con .cell{float:left; width:20%; padding:0 5px;}*/
/*.home-banner .caption .con .btn-outline-dark{padding:13px 5px; background-color:#fff; display:block; text-transform:none; width:100%; font-weight:400;}*/
/*.home-banner .caption .con .btn-outline-dark:hover{color:#000;}*/
/*.home-banner .caption .con .form-control{text-align:center;  font-weight:700; border-color:#21201f; border-radius:3px;}*/
/*.home-banner .caption .con label{text-transform:uppercase; font-weight:700; color:#21201f; display:block; text-align:center;}*/

.home-banner {
  position: relative;
}

.home-slideshow-wrap {
  position: relative;
}

.home-slideshow {
  width: 100%;
  z-index: 7;
}

.home-slideshow .slide {
  width: 100%;
}

.home-slideshow .slide img {
  width: 100%;
}

#HomePrev, #HomeNext {
  color: #423e3e;
  font-size: 60px;
  position: absolute;
  z-index: 99;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  cursor: pointer;
}

#HomePrev {
  left: 40px;
}

#HomeNext {
  right: 40px;
}

.home-banner .caption {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 90;
}

.home-banner .caption .con {
  width: 520px;
  float: right;
}

.home-banner .caption .con .cell {
  float: left;
  width: 20%;
  padding: 0 5px;
}

.home-banner .caption .con .btn-outline-dark {
  padding: 13px 5px;
  background-color: #fff;
  display: block;
  text-transform: none;
  width: 100%;
  font-weight: 400;
}

.home-banner .caption .con .btn-outline-dark:hover {
  color: #000;
}

.home-banner .caption .con .form-control {
  text-align: center;
  font-weight: 700;
  border-color: #21201f;
  border-radius: 3px;
}

.home-banner .caption .con label {
  text-transform: uppercase;
  font-weight: 700;
  color: #21201f;
  display: block;
  text-align: center;
}


.slider-range-min-wrap {
  margin: 0 20px 30px;
}

.slider-range-min-wrap + .slider-range-min-wrap {
  padding-top: 30px;
}

.slider-range-min-wrap .rangelabel {
  border-top: solid 6px #f8f8f8;
  padding: 10px 0;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.slider-range-min-wrap .rangelabel:after, .slider-range-min-wrap .rangelabel:before {
  content: '';
  width: 6px;
  height: 10px;
  background: #f8f8f8;
  display: block;
  position: absolute;
  top: 0;
}

.slider-range-min-wrap .rangelabel label {
  margin: 0 -10px;
  color: #fff !important;
}

.slider-range-min-wrap .rangelabel:after {
  left: 0;
}

.slider-range-min-wrap .rangelabel:before {
  right: 0;
}


.slider-range-min-wrap .ui-slider-handle span {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  margin-bottom: 10px;
  background: #34aa54;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 14px;
  text-shadow: 3px 7px 18px rgba(0, 0, 0, 0.4);
  color: #fff !important;
  white-space: nowrap;
}

.slider-range-min-wrap .ui-slider-handle span:after {
  content: '';
  border-right: 7px dashed transparent;
  border-left: 7px dashed transparent;
  border-top: 7px solid #34aa54;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

#loan_amount_slider, #loan_duration_slider {
  margin-bottom: 20px;
  height: 24px;
  border: solid 4px #f5f5f5;
  border-radius: 50px;
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fcfcfc+0,d5d4d4+100 */
  background: rgb(252, 252, 252); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(252, 252, 252, 1) 0%, rgba(213, 212, 212, 1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(252, 252, 252, 1) 0%, rgba(213, 212, 212, 1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(252, 252, 252, 1) 0%, rgba(213, 212, 212, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fcfcfc', endColorstr='#d5d4d4', GradientType=0); /* IE6-9 */
}

#loan_amount_slider .ui-slider-range-min, #loan_duration_slider .ui-slider-range-min {
  border-radius: 50px 0 0 50px;
  box-shadow: inset 0 2px 1px rgba(0, 0, 0, 0.2);
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,e2e1e1+100 */
  background: rgb(255, 255, 255); /* Old browsers */
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(226, 225, 225, 1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(226, 225, 225, 1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(226, 225, 225, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e2e1e1', GradientType=0); /* IE6-9 */
}

#loan_amount_slider .ui-slider-handle, #loan_duration_slider .ui-slider-handle {
  height: 32px;
  width: 32px;
  border-radius: 100%;
  border: solid 4px #fbfbfb;
  background: #6c6c6c;
  top: -8px;
  margin-left: -23px;
  cursor: pointer;
}


.in-banner {
  background: url(../images/banner-how-it-works.jpg) center 0 no-repeat #ffca27;
  height: 166px;
}


/*Main CSS
------------------------------------------------------------------------------*/
.needmoney-section {
  background-color: #ffca27;
  padding: 50px 0 200px;
  text-align: center;
}

.moneyfor-section {
}

.moneyfor-section .con {
  padding: 25px 0;
  max-width: 75%;
  margin: 0 auto;
  text-align: center;
}

.moneyfor-section .con h3 {
  margin-bottom: 30px;
}

.getflashloan-section {
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.getflashloan-section:before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(50% - 690px);
  background: #f7f7f9;
}

.getflashloan-section .thumb {
  background: #f7f7f9;
  text-align: center;
}

.getflashloan-section-how {
  position: relative;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.getflashloan-section-how:before {
  content: '';
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc(50% - 690px);
  background: #d6efeb;
}

.getflashloan-section-how .thumb {
  background: #d6efeb;
  text-align: center;
}

.getflashloan-section-how .con {
  padding: 40px 0 30px 90px;
}

.getflashloan-section .con {
  padding: 40px 0 30px 90px;
}

.getflashloan-section .con h1 {
  margin: 0;
  font-weight: 700;
}

.getflashloan-section .con h2 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 20px;
}

.h2section {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.signup-section {
  padding: 30px 0;
  background: #21201f;
  color: #fff;
  margin-top: -16px;
}

.signup-section h3 {
  float: right;
  font-weight: 400;
  margin: 10px 0 0;
}

.signup-section .form-control {
  border-radius: 0;
  background: none;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  border: none;
  border-bottom: solid 1px #fff;
  box-shadow: none;
}

.signup-section .form-control::-webkit-input-placeholder {
  color: #fff;
  opacity: 1
}

.signup-section .form-control::-moz-placeholder {
  color: #fff;
  opacity: 1
}

.signup-section .form-control:-ms-input-placeholder {
  color: #fff;
  opacity: 1
}

.signup-section .form-control::-ms-input-placeholder {
  color: #fff;
  opacity: 1
}

.signup-section .form-control::placeholder {
  color: #fff;
  opacity: 1
}

.modal-content {
  border-radius: 0;
  border: none;
}

@media screen and (min-width: 1200px) {
  .modal-login {
    max-width: 968px;
  }
}

.modal-login .modal-content {
  background: url(../images/aussie-girl-australian-dollar-bills.png) right 30px bottom / auto 90% no-repeat #ffca27 !important;
}

.modal-login .modal-content .close {
  position: absolute;
  z-index: 999;
  outline: none;
  top: 15px;
  right: 15px;
  opacity: 1;
  color: #000000;
  font-size: 30px;
}

.modal-login .modal-body {
  padding: 40px;
}

.modal-login .loginform {
  max-width: 300px;
}

.modal-login .form-control {
  margin-bottom: 10px;
  height: 66px;
  border-color: #000;
  background-color: #fff;
}

.modal-login h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.howitworks-section {
  background: #e8e8e8;
  padding: 120px 0 80px;
}

.getmoney-section {
  background: #ffffff;
}

.site-content-section {
  background: #e8e8e8;
  padding: 80px 0;
}

.card-table {
  border-radius: 0;
  border: solid 1px #3f3f3f;
}

.card-table .card-header {
  text-align: center;
  background: #ffca27;
  padding: 25px 20px;
  border: none;
  border-radius: 0;
}

.card-table .card-header h3 {
  color: #21201f;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
}

.card-table .table {
  margin: 0;
}

@media screen and (min-width: 640px) {
  .card-table .table th, .card-table .table td {
    padding: 20px;
  }

  .card-table .table td:first-child {
    border-left: none;
    width: 60%;
  }
}

.card-table .table th {
  background: #3e3a3a;
  border-top: solid 10px #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.card-table .table td {
  border-top: solid 10px #fff;
  background: #dddddd;
  border-left: solid 1px #3f3f3f;
}

.card-table .table td:first-child {
  border-left: none;
}

.accordion {
}

.accordion .card {
  margin-bottom: 10px;
  border-radius: 0;
  background: #dddddd;
  border: none;
}

.accordion .card-header {
  background: none;
  border-radius: 0;
  border: none;
  padding: 0;
}

.accordion .card-body {
  background: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media screen and (min-width: 640px) {
  .accordion .card-body {
    background: none;
    padding: 10px 60px 20px;
  }
}

.accordion .card-header h5 {
  margin: 0;
}

.accordion .card-header a {
  color: #000000;
  display: block;
  text-decoration: none !important;
  position: relative;
  padding: 12px 50px 12px 20px;
}

.accordion .card-header a:after {
  font-family: 'FontAwesome';
  content: "\f056";
  color: #000000;
  font-size: 18px;
  position: absolute;
  right: 20px;
  top: 12px;
}

.accordion .card-header a.collapsed:after {
  content: "\f055";
}

.needhelp-section {
  padding: 30px 0;
}

.needhelp-section h1 {
  font-size: 36px;
}

.needhelp-section h4 {
  font-size: 20px;
}

.needhelp-section h4 a {
  color: #000;
}

.needhelp-section h4 strong {
  font-size: 25px;
  font-weight: 700;
}

.contact-section {
  background: #ffca27;
  color: #000;
  text-align: center;
  padding: 20px 0;
}

.contact-section .cell {
  border-left: solid 1px #000;
}

.contact-section .cell:first-child {
  border: none;
}

.contact-section a {
  color: #000;
}

.contact-section .icon {
  font-size: 0;
  margin-top: -30px;
}

.contact-section .icon:before {
  font-size: 45px;
}

.google_map {
  height: 480px;
  width: 100%;
}

.container-form {
  padding: 62px 150px;
  background: #e1e1e1;
  max-width: 1080px;
  margin: 0 auto;
}

.container-form .heading {
  background: #b8b8b8;
  padding: 10px 150px;
  margin: 0 -150px 25px;
  font-size: 17px;
  font-weight: 700;
  color: #21201f;
}

.container-form label {
  font-size: 17px;
  font-weight: 700;
  color: #21201f;
}

.input-group.type2 .input-group-text {
  padding-left: 0;
  background: none;
  border: none;
  font-size: 17px;
  font-weight: 700;
  color: #21201f;
}

.row-form {
  margin-left: -5px;
  margin-right: -5px;
}

.row-form .cell {
  padding-left: 5px;
  padding-right: 5px;
}


ul.mysteps-nav {
  padding: 0;
  list-style: none !important;
  max-width: 1080px;
  margin: 30px auto 0;
  display: flex;
  flex-flow: row wrap;
}

ul.mysteps-nav li {
  margin: 0;
  padding: 20px 5px 30px;
  list-style: none;
  flex-grow: 1;
  text-align: center;
  position: relative;
  border-top: solid 1px #b6b6b6;
}

ul.mysteps-nav li strong {
  background: #e1e1e1;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

ul.mysteps-nav li.active strong {
  background: #218838;
  color: #fff;
}

ul.loanpurpose-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: list-item;
}

ul.loanpurpose-list li {
  margin: 10px 0;
}

ul.loanpurpose-list li a {
  display: inline-block;
  padding-left: 20px;
  position: relative;
  color: #000;
  text-decoration: none !important;
}

ul.loanpurpose-list li a:before {
  content: '\f10c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 2px;
}

ul.loanpurpose-list li a.active:before {
  content: '\f058';
  color: #0C0;
}

.filebtn-wrap {
  position: relative;
}

.filebtn-wrap input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: pointer;
}

.card-deck-loan-wrapper {
  padding: 20px;
  background: #fff;
}

.card-deck-loan {
}

.card-deck-loan .card {
  border-radius: 0;
  border: none;
  background: #f6f6f6;
  color: #000;
}

.card-deck-loan .card-header {
  padding: 30px 20px 10px;
  background: #ffca00;
  color: #fff;
  border-radius: 0;
  border: none;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  position: relative;
}

.card-deck-loan .card-header .rebon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

.card-deck-loan .card-header h4 {
  background: #ca9200;
  padding: 8px 20px;
  margin: 0 -20px 40px;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}

.card-deck-loan .card-body {
  padding: 0;
  border: none;
  text-align: center;
}

.card-deck-loan .card-body ul.listgroup {
  padding: 0;
  margin: 0;
  list-style: none;
}

.card-deck-loan .card-body ul.listgroup li {
  margin-top: 60px;
  background: #ececec;
  padding: 15px;
}

.card-deck-loan .card-body ul.listgroup li.price {
  font-size: 25px;
  font-weight: 700;
}

.card-deck-loan .card-footer {
  background: none;
  border: none;
  padding: 50px 0 0;
  background: #fff;
  text-align: center;
}

.card-deck-loan .card-footer .btn {
  width: 100%;
}

.card-deck-loan .fortnightlyloan .card-header {
  background: #45a2d4;
}

.card-deck-loan .fortnightlyloan .card-header h4 {
  background: #3690c8;
}

.card-deck-loan .monthlyloan .card-header {
  background: #2871af;
}

.card-deck-loan .monthlyloan .card-header h4 {
  background: #1e5f9e;
}

.sec-heading {
  border-bottom: solid 1px #000;
  border-top: solid 1px #000;
  padding: 20px 0;
  margin-bottom: 30px;
  text-align: center;
}

.sec-heading h2 {
  margin: 0;
}

.sec-heading h4 {
  font-weight: 700;
}

.feedrating {
  max-width: 460px;
  margin: 0 auto;
  margin-bottom: 20px;
  text-align: center;
}

.feedrating table {
  width: 100%;
}

.feedrating table tr:first-child td {
  border-bottom: solid 1px #000;
}

.feedrating table td {
  padding: 5px;
}

table.table2 {
  border: solid 6px #040404;
}

table.table2 th {
  font-size: 18px;
  font-weight: 400;
  padding: 30px 20px;
  border-bottom: solid 6px #040404;
}

table.table2 td {
  padding: 20px;
}

table.table-bordered td, table.table-bordered th {
  border-color: #040404;
}

.modal-custome {
}

.modal-custome .modal-content {
  border: solid 10px #ffcb27;
  border-radius: 0;
}

/* ── Shared font stack (nav + footer) ──────────────────────────────────────── */
:root {
  --fm-font: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', Roboto, sans-serif;
}

/* ── Top navigation ────────────────────────────────────────────────────────── */
.navbar {
  font-family: var(--fm-font);
}

.navbar .nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6) !important;
  padding-left: 0.85rem !important;
  padding-right: 0.85rem !important;
  border-radius: 8px;
  transition: color 0.18s ease, background 0.18s ease;
}

/* Amber underline — hidden until hover */
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: #FFB000;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar .nav-link:hover {
  color: #FFB000 !important;
  background: rgba(255, 176, 0, 0.08);
}

.navbar .nav-link:hover::after {
  transform: scaleX(1);
}

/* Active page — brighter text, dimmed amber underline always visible */
.navbar .nav-item.active .nav-link {
  color: rgba(255,255,255,0.95) !important;
}

.navbar .nav-item.active .nav-link::after {
  transform: scaleX(1);
  opacity: 0.5;
}

/*Footer CSS
------------------------------------------------------------------------------*/
.footer {
  /* Gradient matches the login brand panel: dark → warm amber-dark */
  font-family: var(--fm-font);
  background: linear-gradient(160deg, #0D0F12 0%, #161007 45%, #1E1608 100%);
  color: rgba(255,255,255,0.72);
  padding: 3.5rem 0 2rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

/* Amber radial glow at top-right — identical to login page ::before */
.footer__glow {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,176,0,0.16) 0%, transparent 68%);
  pointer-events: none;
}

/* Top row: brand + 2 link columns */
.footer__top {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 1.75rem;
  margin-left: 0;
  margin-right: 0;
}

/* Brand column */
.footer__brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer__logo {
  height: 36px;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 0.85rem;
  line-height: 1.55;
  max-width: 200px;
}

.footer__licence {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.footer__licence svg {
  color: rgba(255,176,0,0.5);
  flex-shrink: 0;
}

/* Warning button */
.footer__warning-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 1.5px solid rgba(255,176,0,0.35);
  color: #FFB000;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.footer__warning-btn:hover {
  background: rgba(255,176,0,0.08);
  border-color: #FFB000;
}

/* Links columns */
.footer__links-col {
  margin-bottom: 1.5rem;
}

.footer__col-heading {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}

.footer__links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links-col ul li {
  padding: 5px 0;
}

.footer__links-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.15s;
  display: inline-flex;
  align-items: center;
}

.footer__links-col ul li a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1.5px;
  background: #FFB000;
  margin-right: 0;
  transition: width 0.15s, margin-right 0.15s;
  vertical-align: middle;
}

.footer__links-col ul li a:hover {
  color: #FFB000;
}

.footer__links-col ul li a:hover::before {
  width: 10px;
  margin-right: 6px;
}

/* Social row */
.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.75rem;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.12s;
}

.footer__social-link svg {
  width: 16px;
  height: 16px;
}

.footer__social-link:hover {
  background: rgba(255,176,0,0.12);
  border-color: rgba(255,176,0,0.4);
  color: #FFB000;
  transform: translateY(-2px);
}

/* Disclaimer */
.footer__disclaimer p {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.65;
  margin: 0;
}

.footer__disclaimer a {
  color: rgba(255,176,0,0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__disclaimer a:hover {
  color: #FFB000;
}

/* Phone CTA bar */
.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer__contact svg { opacity: 0.6; flex-shrink: 0; }

/* Bottom bar */
.footer-bottom {
  background: #080A0C;
  padding: 14px 0;
  color: rgba(255,255,255,0.35);
  font-size: 12.5px;
}

.footer-bottom ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom ul li {
  display: inline-block;
}

.footer-bottom ul li:before {
  content: '·';
  margin: 0 7px;
  opacity: 0.35;
}

.footer-bottom ul li:nth-child(1):before {
  display: none;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none !important;
  transition: color 0.15s;
}

.footer-bottom a:hover {
  color: #FFB000;
}

.powered-by-text {
  font-size: 11.5px;
  color: rgba(255,255,255,0.2);
  margin-top: 6px;
}

.powered-by-text a {
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.15s;
}

.powered-by-text a:hover {
  color: rgba(255,176,0,0.7);
}

/* ── Warning About Borrowing modal ─────────────────────────────────────────
   Shared between login page and public footer
----------------------------------------------------------------------------- */
#warningModal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.warn-modal-header {
  background: linear-gradient(135deg, #1a1209 0%, #2d1f06 100%);
  padding: 28px 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.warn-modal-header__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(255,202,39,0.15);
  border: 1.5px solid rgba(255,202,39,0.4);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: #FFCA27;
}

.warn-modal-header__text h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 5px;
  letter-spacing: -0.2px;
}

.warn-modal-header__text p {
  color: rgba(255,255,255,0.52);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.5;
}

.warn-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.08);
  border: none;
  border-radius: 8px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}

.warn-modal-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.warn-modal-body {
  padding: 24px 28px 8px;
  background: #fff;
  max-height: 60vh;
  overflow-y: auto;
}

.warn-modal-body__lead {
  font-size: 14.5px;
  color: #444;
  line-height: 1.65;
  margin: 0 0 20px;
}

.warn-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.warn-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f9f8f6;
  border: 1px solid #eeeae2;
  border-radius: 12px;
  padding: 14px 16px;
}

.warn-option__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid #e8e4da;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: #555;
}

.warn-option__body strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #111;
  margin-bottom: 3px;
}

.warn-option__body p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.warn-option__body a {
  color: #b07d00;
  text-decoration: none;
  font-weight: 500;
}

.warn-option__body a:hover { text-decoration: underline; }

.warn-moneysmart {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 12px;
  padding: 13px 16px;
  margin-bottom: 20px;
}

.warn-moneysmart svg { flex-shrink: 0; color: #b45309; }

.warn-moneysmart p {
  font-size: 13px;
  color: #78350f;
  margin: 0;
  line-height: 1.5;
}

.warn-moneysmart a {
  color: #92400e;
  font-weight: 600;
  text-decoration: underline;
}

.warn-legal {
  font-size: 11.5px;
  color: #aaa;
  line-height: 1.6;
  margin: 0 0 24px;
}

.warn-modal-footer {
  display: flex;
  gap: 10px;
  padding: 16px 28px 24px;
  background: #fff;
  border-top: 1px solid #f0ece3;
}

.warn-btn-close {
  flex: 1;
  height: 46px;
  background: #f4f1eb;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: background 0.15s;
}

.warn-btn-close:hover { background: #ebe7df; }

.warn-btn-apply {
  flex: 1;
  height: 46px;
  background: #FFCA27;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(255,202,39,0.3);
}

.warn-btn-apply:hover {
  background: #f5bf10;
  box-shadow: 0 4px 14px rgba(255,202,39,0.4);
  color: #111;
  text-decoration: none;
}

/* Mobile bottom-sheet on ≤576px */
@media (max-width: 576px) {
  #warningModal .modal-dialog.modal-dialog-centered {
    align-items: flex-end;
    min-height: 100%;
    margin: 0;
    max-width: 100%;
  }

  #warningModal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translateY(100%);
  }

  #warningModal.show .modal-dialog { transform: translateY(0); }

  #warningModal .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
  }

  .warn-modal-header { padding: 20px 18px 18px; gap: 12px; flex-shrink: 0; }
  .warn-modal-header__icon { width: 40px; height: 40px; border-radius: 10px; }
  .warn-modal-header__icon svg { width: 18px; height: 18px; }
  .warn-modal-header__text h4 { font-size: 15.5px; }
  .warn-modal-header__text p { display: none; }
  .warn-modal-close { top: 14px; right: 12px; }

  .warn-modal-body {
    padding: 16px 18px 8px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
  }

  .warn-modal-body__lead { font-size: 13.5px; margin-bottom: 16px; }
  .warn-options { gap: 8px; margin-bottom: 14px; }
  .warn-option { padding: 11px 13px; gap: 11px; border-radius: 10px; }
  .warn-option__icon { width: 32px; height: 32px; border-radius: 8px; }
  .warn-option__icon svg { width: 15px; height: 15px; }
  .warn-option__body strong { font-size: 13px; }
  .warn-option__body p { font-size: 12.5px; }
  .warn-moneysmart { padding: 11px 13px; border-radius: 10px; margin-bottom: 14px; }
  .warn-moneysmart p { font-size: 12.5px; }
  .warn-legal { font-size: 11px; }

  .warn-modal-footer {
    padding: 12px 18px 24px;
    flex-direction: column-reverse;
    flex-shrink: 0;
  }

  .warn-btn-close,
  .warn-btn-apply { width: 100%; flex: none; height: 48px; }
}

.powered-by-text a {
  color: inherit !important;
}

.mt-20 {
  margin-top: 20px;
}

#repaymentAmounts {
  display: none;
}

#overlay_opaque {
  background: #ffffff;
  color: #666666;
  position: fixed;
  height: 100% !important;
  width: 100%;
  z-index: 5000;
  top: 0;
  left: 0;
  float: left;
  text-align: center;
  padding-top: 25%;
  opacity: 1;
}

#overlay {
  background: #ffffff;
  color: #000000;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 5000;
  top: 0;
  left: 0;
  float: left;
  text-align: center;
  padding-top: 25%;
  opacity: .85;
}

.spinner {
  margin: 0 auto;
  height: 64px;
  width: 64px;
  animation: rotate 0.8s infinite linear;
  border: 5px solid firebrick;
  border-right-color: transparent;
  border-radius: 50%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slider-tooltip {
  width: 93px;
  height: 35px;
  line-height: 35px;
  position: absolute;
  top: -45px;
  background-color: #34aa54;
  z-index: 20;
  border-radius: 3px;
  color: #fff;
  font-size: .75rem;
  margin-left: -30px;
}

.slider-tooltip:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: calc(50% - 6px);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 6px 0;
  border-color: #34aa54 transparent transparent;
}

.input-icon {
  position: relative;
}

.input-icon > i {
  position: absolute;
  display: block;
  transform: translate(0, -50%);
  top: 24px;
  pointer-events: none;
  width: 25px;
  text-align: center;
  font-style: normal;
}

.input-icon > input {
  padding-left: 25px;
  padding-right: 0;
}

.input-icon-right > i {
  right: 0;
}

.input-icon-right > input {
  padding-left: 0;
  padding-right: 25px;
  text-align: right;
}

#showCurrentAddressField:hover, #showPreviousAddressField:hover,
#showPreviousAddressInput:hover, #showCurrentAddressInput:hover {
  cursor: pointer;
}

#showPreviousAddressInput, #showCurrentAddressInput,
#previous_address_fields, #current_address_fields {
  display: none;
}

.green {
  color: #218838;
}


.toggle input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
}

.toggle label {
  float: left;
}

.toggle label.error {
  border: 0 !important;
  box-shadow: none;
}

.toggle label {
  display: inline-block;
  width: auto;
  background-color: #e4e4e4;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: normal;
  text-align: center;
  text-shadow: none;
  padding: 12px 18px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.toggle label:hover {
  cursor: pointer;
}

.toggle input:checked + label {
  background-color: #218838;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #ffffff;
}

.toggle input[type=radio]:focus + label {
  background-color: #218838;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #ffffff;
}

.toggle label:first-of-type {
  border-radius: 4px 0 0 4px;
}

.toggle label:last-of-type {
  border-radius: 0 4px 4px 0;
}


/*stylish checkbox*/
.stylish-checkbox input[type=checkbox] + label {
  display: block !important;
  margin: 0.2em;
  cursor: pointer;
  padding: 0.2em;
}

.stylish-checkbox input[type=checkbox] {
  display: none;
}

.stylish-checkbox input[type=checkbox] + label:before {
  content: "\2714";
  border: 0.1em solid #000;
  border-radius: 0.2em;
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  padding-left: 0.2em;
  padding-bottom: 0.3em;
  margin-right: 1em;
  vertical-align: bottom;
  color: transparent;
  transition: .2s;
}

.stylish-checkbox input[type=checkbox] + label:active:before {
  transform: scale(0);
}

.stylish-checkbox input[type=checkbox]:checked + label:before {
  background-color: MediumSeaGreen;
  border-color: MediumSeaGreen;
  color: #fff;
}

.stylish-checkbox input[type=checkbox]:disabled + label:before {
  transform: scale(1);
  border-color: #aaa;
}

.stylish-checkbox input[type=checkbox]:checked:disabled + label:before {
  transform: scale(1);
  background-color: #bfb;
  border-color: #bfb;
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
/ / font-size: 22 px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 0.1em solid #000;
  border-radius: 4px;
}

.terms-and-condition label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 1em !important;
}


/* On mouse-over, add a grey background color */
.checkbox-container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container input:checked ~ .checkmark {
  background-color: #218838;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*== start of code for tooltips ==*/
.tool {
  cursor: help;
  position: relative;
}


/*== common styles for both parts of tool tip ==*/
.tool::before,
.tool::after {
  left: 50%;
  opacity: 0;
  position: absolute;
  z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
  opacity: 1;
  transform: scale(1) translateY(0);
  z-index: 100;
}


/*== pointer tip ==*/
.tool::before {
  border-style: solid;
  border-width: 1em 0.75em 0 0.75em;
  border-color: #3E474F transparent transparent transparent;
  bottom: 100%;
  content: "";
  margin-left: -0.5em;
  transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26), opacity .65s .5s;
  transform: scale(.6) translateY(-90%);
}

.tool:hover::before,
.tool:focus::before {
  transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
}


/*== speech bubble ==*/
.tool::after {
  background: #3E474F;
  border-radius: .25em;
  bottom: 180%;
  color: #EDEFF0;
  content: attr(data-tip);
  margin-left: -8.75em;
  padding: 1em;
  transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26) .2s;
  transform: scale(.6) translateY(50%);
  width: 17.5em;
}

.tool:hover::after,
.tool:focus::after {
  transition: all .65s cubic-bezier(.84, -0.18, .31, 1.26);
}

@media (max-width: 760px) {
  .tool::after {
    font-size: .75em;
    margin-left: -5em;
    width: 10em;
  }
}

#pswd_info, #pswd_info2 {
  position: absolute;
  top: 8em;
  right: 55px;
  width: 250px;
  padding: 15px;
  background: #fefefe;
  font-size: .875em;
  border-radius: 5px;
  box-shadow: 0 1px 3px #ccc;
  border: 1px solid #ddd;
  z-index: 5;
  display: none;
}

#pswd_info h4, #pswd_info2 h4 {
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: normal;
}

#pswd_info::before, #pswd_info2::before {
  content: "\25B2";
  position: absolute;
  top: -12px;
  left: 45%;
  font-size: 14px;
  line-height: 14px;
  color: #ffffff;
  text-shadow: none;
  display: block;
}

#pswd_info .invalid, #pswd_info2 .invalid {
  background: url("../images/cancel.png") no-repeat 0 50%;
  padding-left: 22px !important;
  line-height: 24px;
  color: #ec3f41;
}

#pswd_info .valid, #pswd_info2 .valid {
  background: url(../images/accept.png) no-repeat 0 50%;
  padding-left: 22px !important;
  line-height: 24px;
  color: #3a7d34;
}

#previous_address_div {
  display: none;
}

.modal-confirm {
  color: #434e65;
  width: 525px;
}

.modal-confirm .modal-content {
  padding: 20px;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}

.modal-confirm .modal-header {
  background: #e85e6c;
  border-bottom: none;
  position: relative;
  text-align: center;
  margin: -20px -20px 0;
  border-radius: 5px 5px 0 0;
  padding: 35px;
}

.modal-confirm h4 {
  text-align: center;
  font-size: 36px;
  margin: 10px 0;
}

.modal-confirm .form-control, .modal-confirm .btn {
  min-height: 40px;
  border-radius: 3px;
}

.modal-confirm .close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  text-shadow: none;
  opacity: 0.5;
}

.modal-confirm .close:hover {
  opacity: 0.8;
}

.modal-confirm .icon-box {
  color: #fff;
  width: 95px;
  height: 95px;
  display: inline-block;
  border-radius: 50%;
  z-index: 9;
  border: 5px solid #fff;
  padding: 15px;
  text-align: center;
  margin: 0 auto;
}

.modal-confirm .icon-box i {
  font-size: 58px;
  margin: -2px 0 0 -2px;
}

.modal-confirm.modal-dialog {
  margin-top: 80px;
}

.modal-confirm .btn {
  color: #fff;
  border-radius: 4px;
  background: #eeb711;
  text-decoration: none;
  transition: all 0.4s;
  line-height: normal;
  border-radius: 30px;
  margin-top: 10px;
  padding: 6px 20px;
  min-width: 150px;
  border: none;
}

.modal-confirm .btn:hover, .modal-confirm .btn:focus {
  background: #eda645;
  outline: none;
}

.trigger-btn {
  display: inline-block;
  margin: 100px auto;
}

.btn-verify {
  position: absolute;
  top: 0;
  right: 15px;
  height: 48px;
  border-radius: 0 .25rem .25rem 0 !important;
/ / font-size: 13 px;
  padding: 13px 14px;
  text-transform: none;
}

#foresee_reason_div {
  display: none;
}

#children_age_div {
  display: none;
}

#verify_mobile_button {
  display: none;
}

#showPreviousAddressInput {
  display: none;
}

.msg-error {
  color: #d50000;
  font-weight: 700;
  margin-top: auto;
  font-size: 12px !important;
}

.g-recaptcha.error {
  border: solid 2px #d50000;
  padding: .1em;
  display: inline-block;
}

.error {
  color: #d50000;
}

.login-section {
  background-color: #FFCA27
}

/* Remove the footer's top gap below the yellow login panel (scoped to login page) */
.login-section + .footer {
  margin-top: 0;
}

#loan_type_mbl_section {
  display: none;
}

#mini-image, #super-image {
  display: none;
}

#LPbtn {
  height: auto !important;
}

.powered-by-text {
  margin-top: 20px;
}

.hide-on-mobile {
  display: none !important;
}

.input-group-addon {
  background-color: #fff;
  border: 1px solid #E5E6E7;
  border-radius: 1px;
  color: inherit;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 15px 12px 4px 12px;
  text-align: center;
}

.btn-xs {
  font-size: 9px;
  padding: 3px 6px;
}

.right-0 {
  right: 0px !important;
}

.hide {
  display: none !important;
}

.email-with-verify-btn {
  width: calc(100% - 65px);
  border-bottom-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.email-with-verify-btn.verified {
  width: calc(100% - 75px);
}

/*Scrollable bootstrap modal*/
.modal-dialog-scrollable {
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered.modal-dialog-scrollable {
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

@media (min-width: 576px) {
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
}
