:root {
    --color-dark: #104060;
    --color-light: #236eb3;
    --color-third: #24bca0;
    --color-light-opacity: rgba(16,64,96,0.35);
    --color-third-opacity: rgba(36,188,160,0.35);
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #000;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.2 !important;
}

h1, h2, h3, h4, h5, h6, b {
    font-weight: 700;
}

img {
    max-width: 100%;
}

/* MARGIN */
.mt0 {
    margin-top: 0;
}

.mb0 {
    margin-bottom: 0;
}

.mb5 {
    margin-bottom: 5px;
}

.ml0 {
    margin-left: 0;
}

.mr0 {
    margin-right: 0;
}

.mt10 {
    margin-top: 10px;
}

.mb10 {
    margin-bottom: 10px;
}

.ml10 {
    margin-left: 10px;
}

.mr10 {
    margin-right: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mb20 {
    margin-bottom: 20px;
}

.ml20 {
    margin-left: 20px;
}

.mr20 {
    margin-right: 20px;
}
/* /MARGIN */

/* PADDING */
.pt0 {
    padding-top: 0;
}

.pb0 {
    padding-bottom: 0;
}

.pl0 {
    padding-left: 0;
}

.pr0 {
    padding-right: 0;
}

.pt10 {
    padding-top: 10px;
}

.pb10 {
    padding-bottom: 10px;
}

.pl10 {
    padding-left: 10px;
}

.pr10 {
    padding-right: 10px;
}

.pt20 {
    padding-top: 20px;
}

.pb20 {
    padding-bottom: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pr20 {
    padding-right: 20px;
}
/* /PADDING */

.fw300 {
    font-weight: 300 !important;
}

.fw400 {
    font-weight: 400 !important;
}

.fw500 {
    font-weight: 500 !important;
}

.fw600 {
    font-weight: 600 !important;
}

.fw700 {
    font-weight: 700 !important;
}

.lh20 {
    line-height: 20px;
}

u {
    text-decoration-thickness: from-font;
}

.inline {
    display: inline-block !important;
}

.textlight {
    color: var(--color-light);
}

.textdark {
    color: var(--color-dark);
}

.textthird {
    color: var(--color-third);
}

.redtext {
    color: red;
}

.noborder {
    border: none !important;
}

.mtop {
    margin-top: 50px;    
}

nav {
    padding: 10px 0;
    background-color: #ffffff;
}

nav a.nav-link {
    color: inherit;
}

nav li > a:before {
    -webkit-transform: scale(0,1);
    -ms-transform: scale(0,1);
    transform: scale(0,1);
    background-color: var(--color-light);
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    transition: all .3s;
    margin-top: 3px;
    position: relative;
    bottom: -25px;
}

nav li:hover > a:before {
    -webkit-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
}

.navfix {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
}

.collapse.navbar-collapse {
    justify-content: flex-end;
}

.hero {
    color: #ffffff;
    padding: 60px 0;
}

.toprows {
    margin-bottom: 0;
}

.toprows p {
    margin: 0;
    padding: 5px 0;
}

.bigfont {
    font-size: 120%;
    font-weight: 700;
}

.missold {
    margin: 0 auto;
    background-color: var(--color-third);
    display: block;
    padding: 2px 24px;
    border-radius: 10px 10px 0 0;
    width: fit-content;
    text-align: center;
}

.discalimer {
    margin-top: 10px;
    margin-bottom: 0;
    font-size: 11px;
}

#resend {
    text-decoration: underline;
    border: none;
    background: none;
    padding: 0;
}

.discalimerbox {
    border-radius: 5px;
    padding: 15px 15px 0px 15px;
    border: 1px solid #ced4da;
    position: relative;
    margin-top: 20px;
}

.infocircle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    color: var(--color-third);
    background-color: #fff;
}

.smallest {
    font-weight: 400;
    font-size: 68%;
}

.optincheck {
    padding-top: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.plainbutton:hover {
    cursor: pointer;
}

.noshow {
    display: none !important;
}

section {
    padding: 60px 0;
}

.small-section {
    padding: 20px 0;
}

.greybg {
    background-color: #f5f5f5;
}

.darkbg {
    background-color: var(--color-dark) !important;
    color: #fff;
}

.lightbg {
    background-color: var(--color-light) !important;
    color: #fff;
}

.button {
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    line-height: normal;
    padding: 12px 24px;
    width: auto;
    border: none;
    transition: all .3s;
    font-weight: 500;
}

.btnlight {
    border: 1px solid var(--color-light);
    background-color: var(--color-light);
    color: #ffffff;
}

.btndark {
    border: 1px solid var(--color-dark);
    background-color: var(--color-dark);
    color: #ffffff;
}

.btnthird {
    border: 1px solid var(--color-third);
    background-color: var(--color-third);
    color: #ffffff;
}

.btn-plain {
    border: 1px solid var(--color-light);
    background-color: transparent;
    color: var(--color-light);
}

.button-lg {
    padding: 15px 50px;
    font-size: 17px;
    /*text-transform: uppercase;*/
    font-weight: 700;
}

.button-sm {
    padding: 7px 12px;
}

.button-block {
    display: block;
    width: 100%;
    padding: 25px 50px;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
}

.button:hover {
    color: #fff;
    text-decoration:none;
    background-color: var(--color-dark);
    border: 1px solid var(--color-dark);
}

.btn-full:focus {
    color: #fff;
    text-decoration: none;
}

.btn-plain:focus {
    color: var(--color-light);
    text-decoration: none;
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: none !important;
}

.nobulletstick {
    padding: 0;
    list-style: none;
}

.nobulletstick li {
    padding: 5px 0;
}

.greyboxsmall {
    background: #f5f5f5;
    border-radius: 20px;
    padding: 20px;
    min-height: 120px;
    margin-bottom: 20px;
}

.whiteboxsmall {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px;
    min-height: 120px;
    margin-bottom: 20px;
}

.whiteboxsmall i, .greyboxsmall i {
    color: var(--color-light);
    font-size: 27px;
    margin-bottom: 10px;
    background: var(--color-light-opacity);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

form {
    /*border: 1px solid #ccc;*/
    border-radius: 10px;
    background-color: #ffffff;
    color: #000;
    padding: 20px;
    margin-bottom: 40px;
}

select {
    -webkit-appearance: none; 
    -moz-appearance: none;
    appearance: none;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: url('../images/droparrow.svg') no-repeat;
    background-position: right center;
    background-size: 17px;
}

select:hover{
    cursor: pointer;
}

.progress {
    border-radius: 20px;
    height: 18px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.progress-bar {
    border-radius: 20px;
}

.find-add {
    background-color: var(--color-light);
}

.find-add:hover {
    background-color: var(--color-dark);
    color: #fff;
}

.form-control {
    border: 1px solid #ced4da;
    font-size: 14px;
    height: auto;
    padding: 12px 12px;
    font-weight: 500;
}

.form-control.inputamount {
    background-image: url('../images/pound.svg');
    background-repeat: no-repeat;
    background-position: 15px;
    background-size: 16px;
    padding-left: 40px !important;
}

.uppercase {
    text-transform: uppercase;
}

.radio-img img {
    height: 20px;
}

.radio-img .noradio + label, .radio-img-round .noradio + label, .singlelabel.radio-img .noradio + label, .singlelabel.radio-img-round .noradio + label {
    background-color: var(--color-light);
    border: none !important;
}

.radio-img .noradio:hover + label, .radio-img-round .noradio:hover + label, .singlelabel.radio-img .noradio:hover + label, .singlelabel.radio-img-round .noradio:hover + label {
    background-color: var(--color-dark);
}

.radio-img .noradio:checked + label, .radio-img-round .noradio:checked + label, .singlelabel.radio-img .noradio:checked + label, .singlelabel.radio-img-round .noradio:checked + label {
    background-color: var(--color-dark);
}

.radio-img-round label {
    position: relative;
    width: 50px !important;
    height: 50px !important;
    padding: 0px !important;
    border-radius: 50% !important;
}

.radio-img-round img {
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.onelinebtn {
    display: block;
    width: 80%;
    text-align: center;
    margin: 0 auto 5px !important;
}

.onelinebtn .noradio {
    display:none;
}

.onelinebtn .noradio + label {
    width: 100%;
    position: relative;
    display: inline-block !important;
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    background-color: var(--color-light);
    border-radius: 5px;
    box-shadow: none;
    transition: all .3s;
    border: none;
    color: #fff;
}

.onelinebtn .noradio:hover + label {
    background-color: var(--color-dark);
}

.onelinebtn .noradio:checked + label {
    background-color: var(--color-dark);
    color: #fff;
}

label {
    margin: 0;
    font-size: 15px;
}

label.labfull {
    display: block;
}

.field-error {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: red;
    margin: 0;    
}

.error-active {
    border-color: red !important;
}

.singlelabel {
    display: inline-block;
}

.singlelabel:first-of-type {
    margin-left: 0 !important;
}

.singlelabel .noradio {
    display:none;
}

.singlelabel .noradio + label {
    position: relative;
    display: inline-block !important;
    padding: 7px 20px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: none;
    transition: all .3s;
    border: 2px solid #ced4da;
}

.singlelabel .noradio:hover + label {
    background-color: #f5f5f5;
}

.singlelabel .noradio:checked + label {
    border: 2px solid var(--color-dark);
    background: var(--color-dark);
    color: #fff;
}

.singlelabel .radio-inline span {
    padding-left: 17px;
}

.singlelabel .radio-inline span:before {
    display: inline-block;
    content: "";
    height: 15px;
    width: 15px;
    margin-right: 0.625rem;
    box-shadow: 0 0 0 2px var(--color-dark);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
}

.singlelabel .noradio:hover + label span:before {
    border: 4px solid #fff;
    background: var(--color-dark);
}

.singlelabel .noradio:checked + label span:before {
    background-color: rgba(0,0,0,.4);
    box-shadow: none;
    border: none;
    background-image: url('../images/tick.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px;
}

/* ----- singlelabel-full ----- */
.singlelabel-full {
    display: inline-block;
    width: 100%;
}

.singlelabel-full:first-of-type {
    margin-left: 0 !important;
}

.singlelabel-full .noradio {
    display:none;
}

.singlelabel-full .noradio + label {
    position: relative;
    display: inline-block !important;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    text-align: left;
    vertical-align: middle;
    cursor: pointer;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: none;
    transition: all .3s;
    border: 2px solid #ced4da;
}

.singlelabel-full .noradio:hover + label {
    background-color: #f3f5f6;
}

.singlelabel-full .noradio:checked + label {
    border: 2px solid var(--color-dark);
    background: var(--color-dark);
    color: #fff;
}

.singlelabel-full .radio-inline span {
    padding-left: 35px;
}

.singlelabel-full .radio-inline span:before {
    display: inline-block;
    content: "";
    height: 20px;
    width: 20px;
    margin-right: 0.625rem;
    box-shadow: 0 0 0 2px var(--color-dark);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 15px;
    background: #fff;
}

.singlelabel-full .noradio:hover + label span:before {
    border: 4px solid #fff;
    background: var(--color-dark);
}

.singlelabel-full .noradio:checked + label span:before {
    background-color: rgba(0,0,0,.4);
    box-shadow: none;
    border: none;
    background-image: url('../images/tick.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px;
}
/* ----- ----- */

/* ----- singlelabel-slimg ----- */
.singlelabel.slimg {
    width: 150px;
    min-height: 180px;
    display: inline-flex;
}

.singlelabel.slimg .noradio + label {
    border: none;
    background: none;
}

.singlelabel.slimg .radio-inline span:before {
    background-image: none !important;
    display: none;
}

.singlelabel.slimg .radio-inline span {
    padding: 0;
    font-size: 18px;
}

.singlelabel.slimg .noradio:hover + label img {
    background-color: var(--color-light);
    transition: all .25s;
    transform: scale(1.05);
}

.singlelabel.slimg .noradio:checked + label img {
    background-color: var(--color-light);
    color: inherit;
}

.slimg img {
    height: 100px;
    margin-bottom: 20px;
    border: 2px solid var(--color-dark);
    border-radius: 50%;
    padding: 20px;
    width: 100px;
    background: var(--color-light-opacity);
}

.slimg img:hover {
    transition: all .25s;
}
/* ----- ----- */

.lenders-list {
    display: block;
    max-height: 240px;
    overflow: scroll;
}

.lender {
    width: 100%;
    border: 1px solid #ced4da;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 7px;
    position: relative;
}

.lender-text {
    color: inherit;
    line-height: 15px;
    display: block;
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 25px;
    position: relative;
}

.lender-text:hover {
    cursor: pointer;
}

.lender-input:checked ~ span:before {
    background-color: var(--color-light);
    border: 2px solid var(--color-light);
    background-image: url('../images/tick.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px;
}

.lender-text:before {
    background-image: none;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    content: "";
    position: absolute;
    top: 2px;
    left: -2px;
    border: 2px solid var(--color-dark);
    border-radius: 5px;
}

.grouplink {
    position: absolute;
    top: 14px;
    right: 10px;
    background: none;
    border: none;
}

.grouplist p {
    margin: 0;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.panel p {
    margin: 0;
}

.grouplink:after {
    font-family: 'Font Awesome\ 6 Free';
    content: "\f078";
    font-weight: bold;
    font-size: 12px;
    margin-left: 3px;
}

.grouplink.active:after {
    font-family: 'Font Awesome\ 6 Free';
    content: "\f077";
}

/* ----- CIRCLE STEPS ----- */
.circlestep-number {
    background-color: #dddddd;
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 5px;
    text-align: center;
    padding-top: 3px;
    transition: all .3s;
}

.circlestep-number-active {
    background-color: var(--color-light);
    color: #ffffff;
}

.circlestep-number img {
    width: 13px;
    padding-top: 5px;
}

.circlestep {
    display: inline-block;
    padding: 10px;
    font-weight: 500;
}

.stepseparator {
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: #eee;
    position: relative;
    bottom: 28px;
}

.circle-number {
    color: #ffffff;
    background-color: var(--color-light);
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: 5px;
    text-align: center;
    padding-top: 3px;
}

.accordion .card-header button.collapsed::after {
    content: "";
    background-image: url('../images/arrow-up.svg');
    transform: rotate(180deg);
    transition: all .25s;
}

.accordion .card-header button::after {
    content: "";
    background-image: url('../images/arrow-up.svg');
    position: absolute;
    right: 33px;
    top: 23px;
    width: 16px;
    height: 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    transition: all .25s;
}

#faq button {
    font-weight: 600;
}

.step-img img {
    height: 30px;
}

.step-img, .step-text {
    float: left;
}

.imgsub-right {
    border-radius: 20px;
    box-shadow: 12px 12px 0px var(--color-third);
}

.imgshadow-right {
    box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
    border-radius: 20px;
    background: var(--color-light);
}

.imgsub-left {
    border-radius: 20px;
    box-shadow: -12px 12px 0px var(--color-third);
}

.imgshadow-left {
    box-shadow: -3px 3px 5px rgba(0,0,0,0.5);
    border-radius: 20px;
    background: var(--color-light);
}

.rowhite {
    background-color: #ffffff;
    padding: 40px;
}

.getstartedbox {
    padding: 60px;
    background-color: rgba(72,185,136,0.125);
    border-radius: 20px;
    max-height: 360px;
    overflow: hidden;
}

.confirm {
    font-size: 12px;
    line-height: 15px;
    padding-left: 40px;
}

#signaturebox {
    justify-content: space-between;
}

#message {
    margin-top: 10px;
    margin-bottom: 0;
    padding: 10px 15px;
}

.prev-btn-abs {
    position: absolute;
    top: 10px;
}

.prev-btn-rel {
    position: relative;
    top: 7px;
}

.back {
    background: #eee;
    border: none;
    border-radius: 4px;
    padding: 2px 8px;
}

.find-add {
    height: 47px;
    font-size: 12px;
    border: none;
    color: #fff;
    border-radius: 4px;
    padding: 0 14px;
    transition: all .25s;
    width: 100%;
}

.find-add:hover {
    text-decoration: none;
}

.addresscontainer select {
    width: 100% !important;
    background-color: inherit;
    border: 1px solid #ced4da;
    border-radius: 3px;
    color: inherit;
    padding: 8px 12px;
    margin-top: 5px;
}

.sel-add {
    display: none !important;
}

.newsletterOptin-input {
    display: none;
}

.newsletterOptin-text {
    font-size: 13px;
    color: inherit;
    line-height: 15px;
    display: block;
    padding-left: 25px;
    position: relative;
}

.newsletterOptin-text:hover {
    cursor: pointer;
}

.newsletterOptin-input:checked ~ span:before, .optout-input:checked ~ span:before {
    background-color: var(--color-light);
    border: 2px solid var(--color-light);
    background-image: url('../images/tick.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 10px;
}

.newsletterOptin-text:before, .optout-text:before {
    background-image: none;
    width: 20px;
    height: 20px;
    background-size: 20px 20px;
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    border: 2px solid var(--color-dark);
    border-radius: 5px;
}

.optout-row {
    margin-top: 60px;
    margin-bottom: 100px;
}

.optout {
    position: relative;
    display: inline-block !important;
}

.optout-input {
    display: none;
}

.optout-text {
    font-size: 13px;
    color: inherit;
    line-height: 15px;
    display: block;
    padding-left: 24px;
    padding-top: 5px;
}

footer {
    border-top: 5px solid var(--color-light);
    font-size: 12px;
    padding: 60px 0;
    /*background-color: var(--color-dark);
    color: #ffffff;*/
}

footer a {
    /*color: #ffffff;*/
}

footer a:hover {
    /*color: #ffffff;*/
    text-decoration: underline;
}

.policy {
    font-size: 14px;
}

/* ----- ACCORDION ON CLICK ----- */
.accordionbox {
    margin-bottom: 20px;
    border-radius: 3px;
    border: 2px solid #e7e9f6;
}

.accordionbtn {
    position: relative;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    border: none;
    background: transparent;
    border-radius: 5px;
    font-weight: 700;
}

.accordionbtn span {
    font-weight: 500;
    font-style: italic;
    font-size: 12px;
}
.accordionpanel {
    padding: 0 18px;
    border-radius: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.form-check-input {
    width: 19px;
    height: 19px !important;
    margin: 0 5px 0 0 !important;
}

.accordionpanel .form-check-input {
    display: none;
}

.accordionpanel .form-check-input:hover + label, .accordionpanel .form-check-input:checked + label {
    border-color: var(--color-orange);
    cursor: pointer;
}

.form-check-label {
    margin: 0 !important;
    font-size: 12px;
    border: 2px solid #e7e9f6;
    width: 100%;
    padding: 10px;
    background: #ffffff;
    border-radius: 5px;
}

.form-check-label img {
    max-height: 27px;
}

.form-check-input:hover {
    cursor: pointer;
}

.btop {
    border-top: 1px solid #e7e9f6;
}

.accordionbtn:after {
    font-family: 'Font Awesome\ 6 Free';
    content: "\2b";
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    position: absolute;
    right: 20px;
    top: 16px;
    font-size: 17px;
}

.accordionbtn.expansion.expactive:after {
    font-family: 'Font Awesome\ 6 Free';
    content: "\f068";
}

/* fake loading animation  */
#loading {
    position: fixed;
    z-index: 1040;
    color: #fff;
    background: rgba(0,0,0,0.9);
    text-align: center;
    padding: 10px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin-top: 0;
    margin-left: 0;
    transition: all .3s;
    border-radius: 0px;
}

.loadingbox {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -150px;
    width: 300px;
    height: 80px;
}

/* Back to top button  */
#back-top {
    position: fixed;
    bottom: 10px;
    right: 15px;
    /* border-radius: 20px; */
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out 0s;
    z-index: 9999;
    /* background-color: rgba(0, 0, 0, 0.7) !important; */
    height: auto;
    width: auto;
}
#back-top a {
	width: auto;
	display: block;
	-webkit-transition: 1s;
	-moz-transition: 1s;
	transition: 1s;
}
#back-top a:hover {
	color: #000;
}

#back-top span {
    background-color: #222222;
    background-image: url('../images/top.svg') !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 30px;
    display: block;
    width: 35px;
    height: 35px;
    margin-bottom: 0;
    transition: all 1s ease 0s;
    background-size: 60% auto;
}
#back-top a:hover span {
	background-color: #888;
}

/* ----- BUTTONS PULSE ANIMATION ----- */
.pulse {
    animation: pulse 1.5s infinite;
    -webkit-animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% {
        box-shadow:0 0 0 0 rgba(36,188,160,.7)
    }
    70% {
        box-shadow:0 0 0 10px rgba(36,188,160,.01)
    }
    to {
        box-shadow:0 0 0 20px rgba(36,188,160,0)
    }
}

@-webkit-keyframes pulse {
    0% {
        box-shadow:0 0 0 0 rgba(36,188,160,.7)
    }
    70% {
        box-shadow:0 0 0 10px rgba(36,188,160,.01)
    }
    to {
        box-shadow:0 0 0 20px rgba(36,188,160,0)
    }
}

/* ----- RESPONSIVE ----- */
@media (max-width:480px) {
    .button-lg {
        padding: 15px 25px;
    }
    .prev-btn-abs, .prev-btn-rel {
        position: relative;
        top: 7px;
    }
    .section-mobile {
        padding: 20px 0;
    }
    .hero {
        padding: 60px 0;
    }
    form {
        margin-bottom: 20px;
    }
    .accordion .card-header button::after {
        right: 15px;
    }
    #faq .card-header {
        padding-right: 40px;
    }
    .copyright {
        margin-bottom: 20px;
    }
    .copyright .copy, .copyright .copy-links {
        text-align: center !important;
    }
    .missold {
        max-width: 320px;
    }
    .lender-text {
        max-width: 240px;
    }
}

@media (min-width:481px) {
    .flex {
        display: flex;
        align-items: center;
    }
    .form-bigger .form-control, .form-bigger label, .form-bigger .find-add {
        font-size: 120%;
    }
}

@media (min-width:481px) and (max-width:767px) {
    
}

@media (max-width:575px) {

}

@media (min-width:576px) and (max-width:767px) {
    
}

@media (max-width:767px) {
    .imgsub-left, .imgsub-right {
        margin-bottom: 20px;
    }
    .card {
        margin-bottom: 20px;
    }
    #faq .card {
        margin-bottom: 0;
    }
}

@media (min-width:768px) and (max-width:991px) {
    #getstarted .button {
        padding: 15px 25px;
    }
}

@media (max-width:991px) {
    .getstartedbox {
        padding: 40px;
    }
}
/* ----- RESPONSIVE ----- */