@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  src: local('Lato Light'), local('Lato-Light'), url(../fonts/lato.woff) format('woff');
}

@font-face {
  font-family: 'Varela Round';
  font-style: normal;
  font-weight: 400;
  src: local('Varela Round'), local('VarelaRound-Regular'), url(../fonts/varela-round.woff) format('woff');
}

.new-btn {
  background-color: #FCFBE3; /* fallback for old browsers */
  border:0px solid white;
  width:100%;
  margin-top: 5px;
  border-radius: 5px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .9), inset 0px 0px 5px rgba(0, 0, 0, 0.9);
  color:black;
}
.newer-btn {
  background-color: #FCFBE3; /* fallback for old browsers */
  border:1px solid lightgrey;
  border-left:none;
  border-right:none;
  width:100%;
  margin-top: 5px;
  border-radius: 2px;
  color:black;
  text-align: left;
}

/* testing new dropdown */

.custom-dropdown--large {
    font-size: 1.5em;
}

.custom-dropdown--small {
    font-size: .7em;
}

.custom-dropdown__select{
    font-size: inherit; /* inherit size from .custom-dropdown */
    padding: .5em; /* add some space*/
    width:100%;
}

.custom-dropdown__select--ft {
    background-color: #fff;
    color: #444;
    width:100%;
}

.breadcrumb {
  margin-bottom:0px;
}

@supports (pointer-events: none) and
      ((-webkit-appearance: none) or
      (-moz-appearance: none) or
      (appearance: none)) {

    .custom-dropdown {
        position: relative;
        display: inline-block;
        vertical-align: middle;
        font-size:16px;
        width:100%;
    }

    .custom-dropdown__select {
        padding-right: 2.5em; /* accommodate with the pseudo elements for the dropdown arrow */
        border:2px solid orange;
        border-radius: 6px;
        -webkit-border-radius: 6px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        display: block;
        box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.2);
        font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
        font-size:13px;
        -webkit-box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2), inset 0px 0px 5px rgba(0, 0, 0, 0.2);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .2), inset 0px 0px 5px rgba(0, 0, 0, 0.2);
        width:100%;
    }

    .custom-dropdown::before,
    .custom-dropdown::after {
        content: "";
        position: absolute;
        pointer-events: none;
    }

    .custom-dropdown::after { /*  Custom dropdown arrow */
        content: "\25BC";
        height: 1em;
        font-size: .625em;
        line-height: 1;
        right: 1.2em;
        top: 50%; margin-top: -.5em;
    }

    .custom-dropdown::before { /*  Custom dropdown arrow cover */
        width: 2em;
        right: 0; top: 0; bottom: 0;
        border-radius: 0 3px 3px 0;
    }

    .custom-dropdown__select[disabled] {
        color: rgba(0,0,0,.3);
    }

    .custom-dropdown.custom-dropdown--disabled::after {
        color: rgba(0,0,0,.1);
    }

    /* White dropdown style */
    .custom-dropdown--white::before {
        background-color: #fff;
        border-left: 1px solid rgba(0,0,0,.1);
    }

    .custom-dropdown--white::after {
        color: rgba(0,0,0,.9);
    }

    /* FF only temp fix */
    @-moz-document url-prefix() {
        .custom-dropdown__select             { padding-right: .9em }
        .custom-dropdown--large .custom-dropdown__select { padding-right: 1.3em }
        .custom-dropdown--small .custom-dropdown__select { padding-right: .5em }
    }
}

/* end test of new dropdown */



body {
    font-weight: 100;
    font-family: "Lato","Helvetica Neue",Helvetica,sans-serif;
    background-color: #EDEBE9;
}

h1,h2,h3 {
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
}

h1 {
  font-size: 2.5rem;
}

.header {
    background-color: #828A95; /* fallback for old browsers */
    z-index: 1;
    position: fixed;
    box-shadow: 0px 0px 10px 3px rgba(0,0,0,0.3);
    width:100%;
    height: 60px;
    padding-top:10px;
    padding-bottom: 10px;
    display:block;
}

.headder a {
    background: center center no-repeat transparent;
    background-image: url(../images/global/menu-hamburger.svg);
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    left: 10px;
}

.alert {
  padding: 8px;
}

.alert-dismissible {
    padding-right: 35px;
}

.searchbox {
  border-radius: 3px;
  position: absolute;
  margin-top:60px;
  top:2vw;
  padding:15px;
  padding-top:0px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1), 0 3px 12px rgba(0, 0, 0, 0.1);
  background: #abbaab; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #abbaab , #ffffff); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #abbaab , #ffffff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.zeropadding {
  padding-left:0px;
  padding-right:0px;
}

strong {
    font-weight: 400
}

.adnav {
    background-color:#cccccc;
    border-top: 1px solid grey;
    margin-top:2px;
    color: #00235F;
    height:26px;
    font-size: 13pt;
}
.line {
  border-bottom:1px solid lightgrey;
}

.user-input-section {
  margin-left: -10px;
  margin-bottom: 90px;
}

.menu-icon {
    float:right;
}
.red {
  color: red;
}

.yellow {
  color: #F8AC00;
}

.green {
  color: green;
}

.white {
  color: #ffffff;
}

.black {
  color: black;
}


.orange {
  color: orange;
}

.blue {
  color:#00235F;
}

.grey {
  color:#EDEBE9;
}

.com-input {
  padding-left: 0px;
  padding-right: 0px;
  border:2px solid #F8AC00;
  border-radius: 6px;
  text-align: center;
  height: 58px;
  width:20%;
  min-width: 260px;
  margin-left: 10px;
  background-color: #F8AC00;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}

.com-input-btn {
  padding-left: 0px;
  padding-right: 0px;
  border-radius: 6px;
  text-align: center;
  height: 58px;
  width:20%;
  min-width: 260px;
  margin-left: 10px;
  border:0;
  background-color:transparent;

}

.com-input input:disabled {
  background-color: #fff;
  color: black;
  z-index: 9999;
  opacity: 1;
}


.eval {
    list-style: initial;
    list-style-type: circle;
    display: list-item;
    padding-left: 0px;
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
    font-size: 9pt;
    list-style: none;
}

.filter::before {
  content: url('../images/global/icons/controls.svg');
}

.loader {
  content: url('../images/global/icons/tail-spin.svg');
}

.dot::after {
  content: "•";
  font-size: 80%;
  text-align: right;
  color:#15CD72;
  margin-right:10px;
}

.thumbsup-small {
  content: url('../images/global/icons/thumbs-up.svg');
  width:10px;
  height:10px;
}

.hand-small {
  content: url('../images/global/icons/hand.svg');
  width:10px;
  height:10px;
}


@keyframes spin {
to {
transform: rotate(1turn);
-webkit-transform: rotate(1turn);
}
}

.ps-progress {
position: relative;
display: inline-block;
width: 5em;
height: 5em;
margin: 0 .5em;
font-size: 12px;
text-indent: 999em;
overflow: hidden;
animation: spin 1s infinite steps(8);
-webkit-animation: spin 1s infinite steps(8);
}

.small.ps-progress {
font-size: 5px;
vertical-align: middle;
width:25px;
}

.large.ps-progress {
font-size: 24px;
}

.ps-progress:before,
.ps-progress:after,
.ps-progress > div:before,
.ps-progress > div:after {
content: '';
position: absolute;
top: 0;
left: 2.25em; /* (container width - part width)/2 */
width: .5em;
height: 1.5em;
border-radius: 0.2em;
background: #eee;
box-shadow: 0 3.5em #eee; /* container height - part height */
transform-origin: 50% 2.5em; /* container height / 2 */
-webkit-transform-origin: 50% 2.5em;
}

.ps-progress:before {
background: #555;
}

.ps-progress:after {
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
background: #777;
}

.ps-progress > div:before {
transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
background: #999;
}

.ps-progress > div:after {
transform: rotate(-135deg);
-webkit-transform: rotate(-135deg);
background: #bbb;
}


.input-amount {
  padding: 5px 2px;
  width: 100%;
  font-size: 16pt;
  font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
  text-align: center;
  border-bottom-left-radius:4px;
  border-bottom-right-radius:4px;
  -webkit-appearance: textfield;
  background-color: white;
  border-image-source: initial;
  border-image-slice: initial;
  border-image-width: initial;
  border-image-outset: initial;
  border-image-repeat: initial;
  -webkit-rtl-ordering: logical;
  -webkit-user-select: text;
  cursor: auto;
  padding: 1px;
  border: 0px solid #F8AC00;
  border-top: 2px solid #F8AC00;
  box-shadow: inset 0px 0px 5px rgba(0,0,0,0.2);
}

.label {
  color: #ffffff;
  font-size: 10pt;
  font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
}

li {
    display: block;
    text-align: -webkit-match-parent;
}

.dl {
  margin-bottom: 10px;
}

.logo {
    color: #FCFBE3;
    font-size: 3.0rem;
    text-shadow: 0px 1px 1px #4d4d4d;
    font-family: 'Dancing Script', cursive;
    margin-top: 20px;
}


.logo:hover {
    color: #F8AC00;
    text-decoration: none;
}

.logo:focus {
    text-decoration: none;
}

.brand {
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
}

.brand-blue {
    color: #00235F;
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
}

.cream {
    color: #FCFBE3;
}

.social-icon {
    width: 15%;
    hight: 15%;
    max-width: 50px;
    max-height: 50px;
    padding-left:5px;
    padding-right:5px;
    float:right;
}

.social-share {
  padding-top:5px;
  padding-bottom: 5px;
}

.journalist-image {
  width: 50px;
  hight: 50px;
}


.front-nav {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 40px;
    margin-bottom: 40px;
}


.front-nav-btn {
    color: #F8AC00;
    padding-bottom:10px;
    padding-top:10px;
    text-align:center;
    font-family: Varela Round, Helvetica Neue ,Helvetica,sans-serif;
    font-size:13pt;
}

.front-nav-btn:hover, .front-nav-btn:focus {
    text-decoration: none;
}

.front-nav-btn:visited {
    text-decoration: none;
    color: #23527c;
}

.frontpage-nav-btn {
    border-top:1px solid grey;
    border-right:1px solid grey;
    color: #F8AC00;
    padding-bottom: 10px;
    padding-top: 10px;
    text-align: center;
    font-family: Varela Round, Helvetica Neue ,Helvetica,sans-serif;
    font-size: 13pt;
}

.frontpage-nav-btn:active {
    box-shadow: inset 0px 0px 10px rgba(0,35,95,0.5);
    text-decoration: none;
    /*-webkit-tap-highlight-color: transparent;*/
}
.frontpage-nav-btn:visited, .front-nav-btn:hover, .frontpage-nav-btn:focus {
  text-decoration: none;
  color: #23527c;
}
.frontpage-nav:hover {
  text-decoration: none;
}


.side-nav {
    background-color: #fff;
    margin-top: 0px;
    margin-bottom: 15px;
    padding-left: 0px;
    padding-right: 0px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
}

.sidebar-headline {
  margin-top:10px;
  text-align: center;
}

.sidebar-nav-btn {
    background-color: #fff;
    color: #F8AC00;
    padding-bottom:10px;
    padding-left:8px;
    padding-top:10px;
    text-align:center;
    font-family: Varela Round, Helvetica Neue ,Helvetica,sans-serif;
    font-size:10pt;
    border-top:1px solid lightgrey;
    border-right:1px solid lightgrey;
}

.sidebar-nav-btn:hover {
    background-color: #79ACFF;
    text-decoration: none;
    color: #F8AC00;
}

.btn {
  font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
  font-weight: 800;
  font-size: 18px;
  padding: 0 18px;
  height: 42px;
  border-radius: 4px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.btn:active:focus, .btn:hover, .btn:focus {
  outline: 0;
  color:#fff;
}

.btn-lg {
  font-size: 18px;
  line-height: 52px;
  height: 54px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.btn-primary {
    color: white;
    background: -webkit-linear-gradient(left, #06aea7, #21b38c);
    /*background: linear-gradient(to right, #06aea7, #21b38c);*/
    background: linear-gradient(to right, #F8AC00, #FB710F);
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}

.btn-primary:hover {
  text-decoration: none;
  background: -webkit-linear-gradient(left, #07ccc2, #25d1a3);
  background: linear-gradient(to right, #07ccc2, #25d1a3);
  border: 1px solid transparent;
  color: white;
  background: #76b852; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #76b852 , #8DC26F); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #76b852 , #8DC26F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.btn-opd {
  width:100%;
  height:34px; !important
  box-shadow:0;
  margin-top:8px;
  float:left;
}

.btn-primary-red {
    color: white;
    background: #EB3349; /* fallback for old browsers */
    background: -webkit-linear-gradient(to left, #EB3349 , #F45C43); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to left, #EB3349 , #F45C43); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.btn-primary-red:hover {
  text-decoration: none;
  background: #76b852; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #76b852 , #8DC26F); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #76b852 , #8DC26F); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;

}

.apply-now {
  width: 100%;
  border-radius: 10px;
  margin-bottom:16px;
}

.notice {
    font-size: 10pt;
}

.btn-primary-green {
    color: white;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(108, 197, 81);
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    border: 1px solid transparent;
}

.btn-primary-green:hover {
    color: white;
    background-image: initial;
    background-position-x: initial;
    background-position-y: initial;
    background-size: initial;
    background-repeat-x: initial;
    background-repeat-y: initial;
    background-attachment: initial;
    background-origin: initial;
    background-clip: initial;
    background-color: rgb(110, 209, 79);
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}





.search-criteria {
  font-size: 14pt;
  margin-left: 12px;
  margin-top: 0px;
}


.finance-listing {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
  /*background-image: linear-gradient(#dde1e4,#a3a7ac);
  background: -webkit-linear-gradient(#dde1e4,#a3a7ac);
  background: -o-linear-gradient(#dde1e4,#a3a7ac);
  background: -moz-linear-gradient(#dde1e4,#a3a7ac);
  background: linear-gradient(#dde1e4,#a3a7ac);*/
  margin-top: 1%;
  margin-bottom: 1%;
  background: white;
  border-bottom: 2px solid lightgrey;
  min-height:130px;
  list-style:none;
  width: 100%;
  padding: 0px;
  border-radius: 10px;
  background: #ECE9E6; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #ECE9E6 , #FFFFFF); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #ECE9E6 , #FFFFFF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.finance-listing:focus {
  outline: 0;
  border: 0px solid rgba(81, 203, 238, 1);
}

.finance-listing:hover {
  background: white;
  border-bottom: 2px solid lightgrey;
  box-shadow: 0 7px 22px 6px rgba(0, 0, 0, 0.23), 0 7px 22px rgba(0, 0, 0, 0.16);
  width:100%;

}

  .cost-section {
    border: 0px solid red;
    /*background-color: #f8f8f8; */
    height: 100%;
    text-align:center;
  }

  .product-details {
    padding-top: 15px;
    padding-bottom:5px;
    padding-right:0px;
  }

  .provider-logo-section {
    width: 30%;
    padding-right: 0px;
    padding-left: 0px;
  }

  .provider-logo {
    width:100%;
    height:100%;
    min-width: 60px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.23), 0 3px 12px rgba(0, 0, 0, 0.16);
  }

  .provider-name-section {
    width: 65%;
    margin-left:5px;
    padding-right: 0px;
    padding-left: 0px;
  }

  .provider-name {
    height: 100%;
    font-size: 1.8vw;
    text-align: left;
    line-height: 1.0;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .product-name {
    height: 100%;
    font-size: 1.2vw;
    text-align: left;
    margin-top: 0px;
    margin-bottom: 0px;
  }

  .prosncons {
    margin-left:0px;
    padding-left:0px;
    padding-right:0px;
    padding-top:5px;
    padding-bottom:5px;
    /*background-color: #f8f8f8;*/
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
    border-top:1px solid lightgrey;
    margin-bottom: 20px;

  }

  .cons {

  }

  .pros {
    margin-bottom: 10px;

  }

*:focus {
    outline: 0;
}

input:disabled {
    color: black;
    background: #fff;
}

.checkbox {
  padding-left: 5px;
}

.checkbox label {
    display: inline-block;
    position: relative;
    padding-left: 5px;
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
}
.checkbox label::before {
      content: "";
      display: inline-block;
      position: absolute;
      width: 24px;
      height: 24px;
      left: 0;
      margin-left: -20px;
      border: 2px solid #cccccc;
      border-radius: 3px;
      background-color: #fff;
      -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
      -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
      transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
      display: inline-block;
      position: absolute;
      width: 23px;
      height: 23px;
      left: 0;
      top: 0;
      margin-left: -17px;
      padding-left: 3px;
      padding-top: 3px;
      font-size: 14px;
      color: #555555;
      }
.checkbox input[type="checkbox"] {
    opacity: 0; }
.checkbox input[type="checkbox"]:focus + label::before {
      outline: thin dotted;
      outline: 5px auto -webkit-focus-ring-color;
      outline-offset: -2px;
      outline: 0;
}
.checkbox input[type="checkbox"]:checked + label::after {
      content: url(../images/global/icons/check.svg);
     }
.checkbox input[type="checkbox"]:disabled + label {
      opacity: 0.65; }
.checkbox input[type="checkbox"]:disabled + label::before {
        background-color: #eeeeee;
        cursor: not-allowed; }
.checkbox.checkbox-circle label::before {
    border-radius: 50%; }
.checkbox.checkbox-inline {
    margin-top: 0; }

.checkbox-primary input[type="checkbox"]:checked + label::before {
  background-color: #fff;
  border-color: #F8AC00;
}
.checkbox-primary input[type="checkbox"]:checked + label::after {
  color: #fff;
}




.rate-headline {
  display: none;
}

.rate-output {
  text-align: center;
  font-size: 150%;
  color: black;
  padding-top: 15px;
}

.apr-headline {
  display: none;
}

.apr-output {
  text-align: center;
  font-size: 150%;
  color: black;
  padding-top: 15px;
}

.main {
  padding: 15px;

}

.discription {
  min-height: 20px;
  padding: 5px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  font-size: 8pt;

}

.example {
  min-height: 20px;
  padding: 5px;
  margin-left: 15px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
  font-size: 8pt;

}

.datasection {
  margin-bottom:-15px;
  padding-left:0px;
  padding-right:0px;
}

.monthly-cost-headline {
  display: none;
}

.monthly-cost {
  font-size: 180%;
  font-weight: 400;
  text-align:center;
  color: green;
  font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
  padding-top: 15px
}

.controls {
  background: #232526; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #232526 , #414345); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #232526 , #414345); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding-top: 0px;
  height: 100vh;
  padding-left:0px;
  padding-right:0px;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, .3);
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, .3);
}

.controls-filter-headline-button {
  font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
  font-size: 1.5em;
  padding:15px;
  padding-bottom: 0px;
  border-bottom: 1px solid lightgrey;
}

/*----- Accordion -----*/
.accordion, .accordion * {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}

.accordion {
    overflow:hidden;
    border-radius:3px;
    background-color: #EDEBE9;
    width: 100%;
}

/*----- Section Titles -----*/
/*.accordion-section-title {
    width:100%;
    padding:15px;
    display:inline-block;
    border-bottom:1px solid #1a1a1a;
    background:#333;
    transition:all linear 0.15s;
    /* Type */
    font-size:1.200em;
    color:#fff;
}*/

.accordion-section-title.active, .accordion-section-title:hover {
    display: none;
    background:#4c4c4c;
    /* Type */
    text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
  display:none;
}

.form-control-stepper {
    display: block;
    width: 100%;
    min-width: 75px;
    height: 34px;
    padding: 2px 2px;
    font-size: 16pt;
    line-height: 1.42857143;
    color: lightgrey;
    background-color: #fff;
    border-right:3px solid #F8AC00;
    border-left:3px solid #F8AC00;
    border-bottom:0px solid #F8AC00;
    border-top: 2px solid #F8AC00;
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
    outline: 0;
    -webkit-appearance: none;
    border-radius: 0px;
}

.form-control-stepper:disabled {
    display: block;
    width: 100%;
    min-width: 50px;
    height: 34px;
    padding: 2px 2px;
    font-size: 16pt;
    line-height: 1.42857143;
    color: black;
    background-color: #fff;
    border-right:3px solid #F8AC00;
    border-left:3px solid #F8AC00;
    border-bottom:0px solid #F8AC00;
    border-top: 2px solid #F8AC00;
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
    outline: 0;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0px;
}

.form-control-stepper:focus {
  outline: 0;
}

.form-control-stepper:active {
  outline: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.btn-stepper {
  color: lightgrey;
  height: 34px;
  width: 100px;
  font-size: 25pt;
  line-height: 1.1;
  background-color: #fff;
  border:0px solid #F8AC00;
  border-top:2px solid #F8AC00;
  border-left:0px solid grey;
  border-right:0px solid grey;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  margin-right: 0px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.0), 0 3px 6px rgba(0,0,0,0.0);
}

.btn-stepper:active {
  box-shadow: inset 0px 0px 5px rgba(0,35,95,0.8);
}

.btn-stepper:hover {
  color:lightgrey;
}
.btn-stepper:focus {
  color:lightgrey;
}

/*.btn-stepper:focus:active {
  color:lightgrey;
}*/

/* Footer */

.first-footer {
    color: #ffffff;
    background-color: #45474e;
    font-size: 15px;
    padding: 40px 0px 35px 0px;
}

.first-footer a {
    color: #d0d0d2;
}

.first-footer ul li {
    line-height: 1.4em;
    position: relative;
}

.first-footer ul {
    padding: 0px;
    margin: 0px;
}

.second-footer {
    background-color: #45474e;
}

.second-footer, ul.inline li {
    color: #ffffff;
    font-size: 15px;
    padding: 0px;
    margin: 0px;
    display: inline;
    margin-right: 20px;
    line-height: 1.55em;
}

.right {
    text-align: right;
}

.textwidget {
    line-height: 1.55em;
}

.widget-title {
    margin-bottom: 25px;
    line-height: 26px;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #F8AC00;
    font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
}

.widget_recent_entries ul li {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.15);
    padding-top: 5px;
    padding-bottom: 15px;
    margin-bottom: 10px;
    padding-left: 0px;
}

.widget_recent_entries ul li:first-child {
    padding-top: 0px;
    margin-top: -3px;
}

.post-date {
    display: block;
    font-size: 0.85em;
    opacity: 0.3;
    margin-top: 1px;

}

.divider {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0px 15px 25px 15px;
}

.footer {
    background-color: #45474e;
    color: #abacaf;
    font-size: 13px;
    padding: 15px 0px 20px 0px;
}

.footer-copyright {
    text-align: center;
}

.btn-prosncons {
  width:100%;
  height:100%;
  color: green;
  font-size:12pt;
  background: #ECE9E6; /* fallback for old browsers */
  border-radius: 4px;
  border:0px solid red;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}

.btn-prosncons:hover {
  color: green;
  background: #ECE9E6; /* fallback for old browsers */
}

.btn-prosncons:active {
  box-shadow: inset 0px 0px 5px rgba(0,35,95,0.8);
}

.btn-prosncons:active:focus {
  background: #ECE9E6; /* fallback for old browsers */
  box-shadow: inset 0px 0px 10px rgba(0,35,95,0.5);
  text-decoration: none;
  outline:0;
}

.accordion-section-content {
  box-shadow: inset 0px 0px 10px 1px rgba(0,0,0,0.1);
}




@media (max-width:991px) {

    .checkbox {
      padding-left: 20px;
    }

    .btn-primary:hover {
      background-color: none;
    }
    .btn:hover {
      background-color: none;
    }

    .btn-opd {
      height:34px; !important
      box-shadow:0;
      margin-top:8px;
      float:clear;
    }

    .finance-listing {
      background: #ECE9E6; /* fallback for old browsers */
      background: -webkit-linear-gradient(to top, #ECE9E6 , #FFFFFF); /* Chrome 10-25, Safari 5.1-6 */
      background: linear-gradient(to top, #ECE9E6 , #FFFFFF); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    }

    .front-nav-btn:active {
        box-shadow: inset 0px 0px 10px rgba(0,35,95,0.5);
        text-decoration: none;
        /*-webkit-tap-highlight-color: transparent;*/
    }
    .front-nav-btn:visited , .front-nav-btn:focus {
      text-decoration: none;
    }

    .com-input, .com-input-btn  {
      width: 100%;
      margin-left: 0px;
    }

    .user-input-section {
      margin-left: 0px;
      margin-bottom: 30px;
    }

    .apply-now {
      width: 100%;
      border-radius: 10px;
      margin-bottom:16px;
    }

    .notice {
        font-size: 8pt;
    }

    .side-nav {
      height:350px;
    }

    .sidebar-headline {
      padding-top:8px;
      text-align: center;
    }

    .social-share {
        padding-left:15px;
        padding-right:15px;
    }

    .main {
      padding: 5%;
      padding-top: 0px;
    }


    .finance-listing {
      border-radius: 10px;
      margin-bottom: 7%;
    }

    .provider-logo-section {
      width:20%;
      min-width:75px;
      min-height:75px;
      max-width:140px;
      max-height:140px;
      padding: 0px;
      padding-bottom: 5px;
    }
    .provider-logo {
      width:100%;
      height:100%;
      min-width:75px;
      min-height:75px;
      max-width:140px;
      max-height:140px;
    }

    .provider-name-section {
      width:70%;
      min-height:75px;
      max-height:140px;
      padding: 0px;
    }

    .provider-name {
      max-height:90px;
      font-size: 7.0vw;
      min-height:25px;
      padding-left: 2%;
    }

    .product-name {
      font-size: 4.5vw;
      min-height:34px;
      padding-left: 2%;
      margin-top: 0px;
      margin-bottom: 0px;
    }

    .prosncons {
      border-bottom:1px solid lightgrey;
    }

    .cons {

    }

    .pros {

    }

    .eval {
        display: list-item;
        padding-left: 0px;
        font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
        font-size: 9pt;
    }

    .monthly-cost-headline {
      display: block;
      text-align: center;
    }
    .monthly-cost {
      padding-top: 0px;
    }

    .datasection {
      clear: both;
      padding-right: 5px;
      padding-left: 5px;
    }


    .dl {
      display:table;
      width: 100%;
      padding-top: 10px;
      padding-right: 10px;
      padding-left: 10px;
      margin-bottom: 20px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.0), 0 3px 6px rgba(0,0,0,0.0);
    }

    .searchbox {
      position:relative;
      margin-top: 0px;
      top:0px;
    }

    .rate-headline {
        display: table-header-group;
        text-align: center;
        background: #ECE9E6;
        font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
      }

    .rate-output {
      display: table-cell;
      text-align: center;
      font-size: 12pt;
      border-top:1px solid lightgrey;
      padding-top: 0px;
    }

    .apr-headline {
        display: table-header-group;
        text-align: center;
        background: #ECE9E6;
        font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif;
      }

    .apr-output {
      text-align: center;
      font-size: 12pt;
      border-top:1px solid lightgrey;
      padding-top: 0px;
    }

    .example {
      margin-left: 2px;
    }

.accordion, .accordion * {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;

}

.accordion-section-title {
    width:100%;
    padding:15px;
    display: inline-block;
    border-bottom:1px solid #1a1a1a;
    background:#fff;
    transition:all linear 0.15s;
    /* Type */
    font-size:1.600em;
    color: #333;
    text-align: center;
    line-height: 0;
    box-shadow:0px 1px 3px rgba(0,0,0,0.25);
}

.accordion-section-title.active, .accordion-section-title:hover {
    display: block;
    background:#fff;
    /* Type */
    text-decoration:none;
}

.accordion-section-content {
  box-shadow: inset 0px 0px 10px 1px rgba(0,0,0,0.1);
  padding-bottom: 15px;
  padding-top: 5px;
  color:#F8AC00;
  background: #232526; /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #232526 , #414345); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #232526 , #414345); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.controls-filter-headline-button {
  display: none;
}

.controls {
  padding-bottom:0%;
  border-right: 0px solid #F8AC00;
  box-shadow:0px 0px 10px rgba(0,0,0,0.3);
}

.front-nav-btn {
    border-top:1px solid grey;
    border-right:1px solid grey;
}

.btn-prosncons {
  width:100%;
  height:100%;
  color: green;
  font-size:12pt;
  background: #ECE9E6; /* fallback for old browsers */
  border-radius: 4px;
  border:0px solid red;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2);
}

.btn-prosncons:hover {
  color: green;
  background: #ECE9E6; /* fallback for old browsers */
}
.btn-prosncons:active:focus {
  background: #ECE9E6; /* fallback for old browsers */
  box-shadow: inset 0px 0px 10px rgba(0,35,95,0.5);
  -webkit-box-shadow: inset 0px 0px 10px rgba(0,35,95,0.5);
  text-decoration: none;
  outline:0;
}

}


@media (max-width:767px) {

.form-group {
  margin-top: 10px;
  margin-bottom: 10px;
}

.btn-primary {
  width:100%;
}

.social-share {

    padding-top:50px;
    padding-bottom: 5px;
    border-top: 2px solid lightgrey;

}


.social-icon {
  width: 35px;
  height:35px;
  padding-left: 1px;
  padding-right: 1px;
  float:initial;
}

}

// Specific to the AccSys!

.pure-table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb;
    font-size: 16pt;
    font-family: "lato","Helvetica Neue",Helvetica,sans-serif;
}

.pure-table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center;
}

.pure-table td, .pure-table th {
    border-left: 1px solid #cbcbcb;
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: .5em 1em
}

.pure-table td:first-child, .pure-table th:first-child {
    border-left-width: 0
}

.pure-table thead {
    background-color: #e0e0e0;
    color: #006;
    text-align: left;
    vertical-align: bottom;
    font-family: "lato","Helvetica Neue",Helvetica,sans-serif;
}

.pure-table td {
    background-color: transparent
}

.pure-table-odd td {
    background-color: #f2f2f2
}

.pure-table-striped tr:nth-child(2n-1) td {
    background-color: #f2f2f2
}

.pure-table-bordered td {
    border-bottom: 1px solid #cbcbcb;
}

.pure-table-bordered tbody>tr:last-child>td {
    border-bottom-width: 0
}

.pure-table-horizontal td, .pure-table-horizontal th {
    border-width: 0 0 1px;
    border-bottom: 1px solid #cbcbcb
}

.pure-table-horizontal tbody>tr:last-child>td {
    border-bottom-width: 0
}

/*Cookie Consent*/

.cc-cookies { position:fixed; font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif; width: 100%; box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3); left: 0; top: 0; padding: 0.5em 5%; background: #EDEBE9; background: rgba(237, 235, 233,0.80); color: #00235F; font-size: 13px; font-weight: 700; z-index: 99999; text-align: left; color: #45474E; }
.cc-cookies a, .cc-cookies a:hover { color: #00235F; text-decoration: underline; }
.cc-cookies a:hover { text-decoration: none; }
.cc-overlay { height: 100%; padding-top: 25%; }
.cc-cookies-error { float: left; width: 90%; text-align: center; margin: 1em 0 2em 0; background: #fff; padding: 2em 5%; border: 1px solid #ccc; font-size: 18px; color: #333; }
.cc-cookies a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset { display: inline-block; color: #fff; text-decoration: none; background: #7DAF3B; padding: 0.5em 0.75em; border-radius: 3px; box-shadow: 0 0 2px rgba(0,0,0,0.25); font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif; -o-transition: background 0.5s ease-in; -webkit-transition: background 0.25s ease-in; -moz-transition: background 0.25s ease-in; }
.cc-cookies a.cc-cookie-decline, .cc-cookies-error a.cc-cookie-decline { background: #af3b3b; margin-left: 0.5em; }
.cc-cookies a.cc-cookie-reset { background: #f15b00; }
.cc-cookies a:hover.cc-cookie-accept, .cc-cookies-error a:hover.cc-cookie-accept, .cc-cookies a:hover.cc-cookie-decline, .cc-cookies-error a:hover.cc-cookie-decline, .cc-cookies a:hover.cc-cookie-reset  { background: #000; -o-transition: background 0.5s ease-in; -webkit-transition: background 0.25s ease-in; -moz-transition: background 0.25s ease-in; }
.cc-cookies-error a.cc-cookie-accept, .cc-cookies-error a.cc-cookie-decline { display: block; margin-top: 1em; }
.cc-cookies.cc-discreet { width: auto; padding: 0.5em 1em; left: auto; top: auto; }
.cc-cookies.cc-discreet a.cc-cookie-reset { background: none; text-shadow: none; padding: 0; text-decoration: underline; }
.cc-cookies.cc-discreet a:hover.cc-cookie-reset { text-decoration: none; }

@media screen and (max-width: 768px) {
/*.cc-cookies a.cc-cookie-accept, .cc-cookies a.cc-cookie-decline, .cc-cookies a.cc-cookie-reset { display: block; margin: 1em 0; }*/
}

@media screen and (max-width: 480px) {
.cc-cookies {padding: 0.5em 1%; float: left; text-align: center;}
.cc-overlay { height: 100%; padding-top: 25%; }
.cc-cookies a.cc-cookie-accept { display: inline-block; color: #fff; text-decoration: none; background: #7DAF3B; padding: 0.5em 0.75em; border-radius: 3px; box-shadow: 0 0 2px rgba(0,0,0,0.25); font-family: "Varela Round","Helvetica Neue",Helvetica,sans-serif; -o-transition: background 0.5s ease-in; -webkit-transition: background 0.25s ease-in; -moz-transition: background 0.25s ease-in; }
}
