/* ******************************************************** !!
/* CSS CONTENTS ----------------------------------------------
--------------------------------------------------------------
--| General/Utlity
--| Header
------| Secondary Header
------| Headline
--| Flat & Shadow Cards
--| Membership Benefits
--| Buttons
------| Radio Buttons
-----------| Overrides for Payment Methods
------| Checkboxes
-----------| Overrides for Terms & Conditions
-----------| Overrides for FCRA Modal
--| Payment
------| Plan Options
-----------| Plan Selected State
-----------| Plans Include
------| Error Container
------| Secure Header
------| Credit Card Input Area
------| PayPal
------| Terms & Conditions
--| Sidebar
------| Order Summary
------| Billing FAQ
------| Testimonials
------| Satisfaction Guaranteed
--| Footer
--| Modals
------| FCRA Modal
------| PayPal Success Modal
--| Popovers
--------------------------------------------------------------
----------------------------------------------------------- */

/* ************************************************************
***************************************************************
--- General/Utility ---
***************************************************************
************************************************************ */

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Lato", sans-serif;
  color: #4A4A4A;
  background-color: #EFEFEF;
  background-image: linear-gradient(0deg, #EFEFEF 0%, #EFEFEF 35%, #FFFFFF 80%);
}

strong {
  font-weight: bold;
}

a {
  color: #0F2D8F;
}

a:hover {
  color: #4451E5;
}

h2 {
  font-size: 24px;
  color: #4A3B8F;
  margin-bottom: 10px;
}

h3 {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

h4 {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1.5px;
  margin: 10px 0;
}

h5 {
  font-size: 18px;
  font-weight: bold;
}

h6 {
  font-size: 16px;
  font-weight: bold;
  color: #4A3B8F;
}

.subtitle {
  margin: 20px 0 10px;
  font-size: 18px;
  color: #4a3b8f;
  font-weight: bold;
}

.hidden {
  display: none !important;
}

.text-primary {
  color: #4A3B8F !important;
}

.highlight-text {
  color: #638a3a;
}

@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

@media (min-width: 601px) {
  h6 {
    font-size: 18px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 930px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 18px;
    padding-left: 5px;
  }
  h4 {
    font-size: 16px;
    margin: 5px 0;
  }
}

@media (max-width: 480px) {
  .container,
  .main-column,
  .sidebar-column {
    padding-left: 10px;
    padding-right: 10px;
  }
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
}

/* ************************************************************
***************************************************************
--- Header ---
***************************************************************
************************************************************ */
.header {
  display: flex;
  background: linear-gradient(135deg, #353167, #4A3B8F);
  justify-content: space-between;
  padding: 12px 15px;
}

.header__logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__logo-bv {
  width: 140px;
  height: auto;
}

.header__logo-badge {
  background: #EF2742;
  margin-top: 6px;
  border-radius: 4px;
  padding: 2px 4px;
  text-transform: uppercase;
  line-height: initial;
  color: #FFF;
  font-size: 10px;
  font-weight: bold;
}

.header__logo-mtv {
  width: 94px;
  height: auto;
}

@media (min-width: 768px) {
  .header {
    justify-content: flex-start;
    padding: 10px 25px;
  }
  .header__logo-bv {
    width: 180px;
  }
  .header__logo-mtv {
    margin-left: 28px;
  }
}

/* -----------------------------------------------------------
--- Secondary Header ---
------------------------------------------------------------ */
.secondary-header {
  background: linear-gradient(90deg, #7E6FC3, #9758A7);
  padding: 12px 16px;
  height: 62px;
}

.secondary-header__text {
  text-align: left;
  line-height: 1.2;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

@media (min-width: 768px) {
  .secondary-header__img {
    width: 45px;
    height: 32px;
  }
  .secondary-header__text {
    text-align: center;
    font-size: 24px;
  }
}

/* -----------------------------------------------------------
--- Headline ---
------------------------------------------------------------ */

.headline {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin: 8px 0;
}

.headline__icon {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  background: url('//frcdn.beenverified.com/assets/img/9c75c7af2112fe989ca5efab619808c5.svg') no-repeat center/contain;
}

.headline__text {
  margin: 0 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.headline__highlight {
  color: #4A3B8F;
}

@media (min-width: 768px) {
  .headline {
    margin: 24px 0 16px;
  }
  .headline__icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
  .headline__text {
    margin-left: 24px;
    font-size: 38px;
  }
}

/* ************************************************************
***************************************************************
--- Flat & Shadow Cards ---
***************************************************************
************************************************************ */

.shadow-card,
.flat-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
}

.flat-card {
  border: 1px solid #EFEFEF;
  margin-bottom: 20px;
}

.shadow-card {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.shadow-card:first-of-type {
  margin-bottom: 30px;
}

.shadow-card__title,
.flat-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #81B44C;
  padding-bottom: 12px;
  margin-bottom: 0;
  border-bottom: 2px solid #E5E3E3;
}

.flat-card__title.billing-title {
  font-size: 24px;
}

.shadow-card__image,
.flat-card__image {
  width: 150px;
  margin-bottom: 15px;
}

.flat-card__text {
  padding: 0 20px;
  line-height: 1.2;
}

.standout-card {
  background: #FDFCF0;
  border: 3px solid #F2DA56;
  border-radius: 12px;
  padding: 15px;
  margin: 20px 0;
}

.standout-card__image {
  margin: 5px;
}

@media (max-width: 991px) {
  .shadow-card,
  .flat-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .flat-card {
    margin-bottom: 20px;
  }
  .shadow-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 600px) {
  .shadow-card:first-of-type {
    margin-bottom: 25px;
  }
  .shadow-card:not(.final) {
    padding: 15px;
  }
}

/* ************************************************************
***************************************************************
--- Membership Benefits ---
***************************************************************
************************************************************ */

.icon-list > li {
  padding-bottom: 6px;
}

.icon-list > li:last-of-type {
  padding-bottom: 15px;
}

.icon-list__icon {
  color: #CACEE3;
  padding-right: 15px;
  font-size: 20px;
}

.bonus-benefit {
  margin-top: 5px;
  padding-bottom: 10px;
}

.bonus-benefit__title {
  font-size: 18px;
  margin-bottom: 5px;
}

.bonus-benefit .icon-list__icon {
  color: #F2DA56;
  padding-right: 10px;
}

.bonus-benefit .icon-list__text,
.bonus-benefit .icon-list__icon {
  line-height: initial;
}

.icon-list__text {
  font-size: 18px;
  line-height: 22px;
}

@media (max-width: 767px) {
  .icon-list {
    line-height: 27px;
  }
  .icon-list__icon {
    padding-right: 10px;
  }
  .bonus-benefit {
    padding-bottom: 5px;
  }
}

@media (max-width: 600px) {
  .icon-list {
    line-height: 24px;
  }
  .icon-list__icon,
  .icon-list__text {
    font-size: 16px;
  }
}

/* ************************************************************
***************************************************************
--- Buttons ---
***************************************************************
************************************************************ */

[class^="bv-btn"] {
  display: inline-block;
  background: #81B44C;
  color: #FFF;
  border: 0;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-weight: bold;
  font-size: 26px;
  padding: 15px 30px;
  text-align: center;
  transition: all 0.25s ease-out
}

[class^="bv-btn"][disabled]:hover {
  box-shadow: none;
}

[class^="bv-btn"]:hover {
  background: #638A3A;
  text-decoration: none;
  color: #FFF;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.3), 0 4px 8px 3px rgba(60, 64, 67, 0.15);
}

[class^="bv-btn"]:focus {
  background: #638A3A;
  outline: none;
  box-shadow: none;
}

[class^="bv-btn"][disabled],
[class^="bv-btn"].disabled {
  background: #D3D2D7;
  color: #9b9b9b;
  border: none;
  -webkit-appearance: none;
}

[class^="bv-btn"][disabled]:hover,
[class^="bv-btn"].disabled:hover {
  cursor: not-allowed;
  box-shadow: none;
}

[class^="bv-btn"][disabled]:focus,
[class^="bv-btn"].disabled:focus {
  box-shadow: none;
}

.bv-btn--small {
  padding: 10px 20px;
  font-size: 18px;
}

.btn-form-submit {
  max-width: 275px;
  width: 100%;
}

.bv-btn.disabled-state {
  background: #D3D2D7;
  color: #9b9b9b;
  border: none;
  -webkit-appearance: none;
}

@media (max-width: 500px) {
  [class^="bv-btn"]:not(.disabled-state) {
    display: inline-block;
  }
}

/* -----------------------------------------------------------
--- Radio Buttons ---
------------------------------------------------------------ */

.bv-rb [type="radio"]:checked,
.bv-rb [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.bv-rb [type="radio"]:checked + label,
.bv-rb [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #4A4A4A;
}

.bv-rb [type="radio"]:checked + label:before,
.bv-rb [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #979797;
  border-radius: 100%;
  background: #fff;
  transition: all 0.25s ease;
}

.bv-rb [type="radio"]:checked + label:before {
  border-color: #4A4A4A;
}

.bv-rb [type="radio"]:checked + label:after,
.bv-rb [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #81B44C;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.25s ease;
}

.bv-rb [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.bv-rb [type="radio"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.bv-rb [type="radio"]:not(:checked):hover + label:before {
  border-color: #99D161;
}

/* ______________________________________________________ */
/* --- Overrides for Payment Methods --- */

.bv-rb [type="radio"]:checked + label,
.bv-rb [type="radio"]:not(:checked) + label {
  padding-left: 35px;
  height: 20px;
  margin: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  .bv-rb [type="radio"]:checked + label,
  .bv-rb [type="radio"]:not(:checked) + label {
    padding-left: 28px;
  }
}

/* -----------------------------------------------------------
--- Check Boxes ---
------------------------------------------------------------ */

/* Base for label styling */
.bv-cb [type="checkbox"]:not(:checked),
.bv-cb [type="checkbox"]:checked {
  position: absolute;
  left: -9999px;
}
.bv-cb [type="checkbox"]:not(:checked) + label,
.bv-cb [type="checkbox"]:checked + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

/* checkbox aspect */
.bv-cb [type="checkbox"]:not(:checked) + label:before,
.bv-cb [type="checkbox"]:checked + label:before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  border: 2px solid #979797;
  background: #fff;
  border-radius: 4px;
  transition: all 0.25s ease;
}
/* checked mark aspect */
.bv-cb [type="checkbox"]:not(:checked) + label:after,
.bv-cb [type="checkbox"]:checked + label:after {
  content: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/2362575/checkmark.svg');
  position: absolute;
  left: 9px;
  line-height: 0.8;
  color: #09ad7e;
  transition: all .2s;
  font-family: Helvetica, Arial, sans-serif;
}
/* checked mark aspect changes */
.bv-cb [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.bv-cb [type="checkbox"]:checked + label:before {
  border-color: #4A4A4A
}
.bv-cb [type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1.8);
}
/* disabled checkbox */
.bv-cb [type="checkbox"]:disabled:not(:checked) + label:before,
.bv-cb [type="checkbox"]:disabled:checked + label:before {
  box-shadow: none;
  border-color: #bbb;
  background-color: #ddd;
}
.bv-cb [type="checkbox"]:disabled:checked + label:after {
  color: #999;
}
.bv-cb [type="checkbox"]:disabled + label {
  color: #aaa;
}

/* hover style just for information */
.bv-cb [type="checkbox"]:not(:checked):hover + label:before {
  border-color: #99D161;
}

/* ______________________________________________________ */
/* --- Overrides for Terms & Conditions --- */

.terms-container .bv-cb [type="checkbox"]:not(:checked) + label:before,
.terms-container .bv-cb [type="checkbox"]:checked + label:before,
.terms-container .bv-cb [type="checkbox"]:not(:checked) + label:after,
.terms-container .bv-cb [type="checkbox"]:checked + label:after {
  top: 3px;
}

/* ______________________________________________________ */
/* --- Overrides for FCRA Modal --- */

.fcra-modal .bv-cb [type="checkbox"]:not(:checked) + label:before,
.fcra-modal .bv-cb [type="checkbox"]:checked + label:before,
.fcra-modal .bv-cb [type="checkbox"]:not(:checked) + label:after,
.fcra-modal .bv-cb [type="checkbox"]:checked + label:after {
  top: 2px;
}

.fcra-modal .label--cb {
  margin-top: 10px;
}

/* ************************************************************
***************************************************************
--- Payment ---
***************************************************************
************************************************************ */

.shadow-card.final {
  padding: 20px 0 0 0;
}

.details-and-payment-method {
  padding: 20px;
}

@media (max-width: 767px) {
  .details-and-payment-method {
    padding: 15px;
  }
}

/* -----------------------------------------------------------
--- Plan Options ---
------------------------------------------------------------ */

.plans-container {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  margin: 16px 0;
}

.plan-selection {
  position: relative;
  flex: 1 1 0;
  margin: 0 4px 0 0;
}

.plan-selection:last-child {
  margin: 0;
}

.plan-card  {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0 16px 16px;
  border: 0;
  border-radius: 12px;
  background: #5B3464;
  color: #fff;
  text-align: center;
}

.plan-card:focus {
  outline: none;
}

.plan-card:focus .plan-card__btn {
  outline: 1px solid #fff;
  outline-offset: -1px;
}

.plan-card:hover {
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.5);
}

.plan-card:hover .plan-card__btn {
  background: #67903C;
}

.plan-card--plus {
  background: #382D6C;
}

.plan-card--plus .plan-card__badge {
  background: #4A3B8F;
  border-color: #4A3B8F;
}

.plan-card__badge {
  display: inline-block;
  background: #8B519A;
  padding: 4px 12px;
  border-radius: 100px;
  border: 2px solid #8B519A;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.plan-card__title {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.plan-card__price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 4px;
}

.plan-card__list {
  display: block;
  width: 100%;
  list-style: none;
  margin: 8px 0 16px;
  padding: 0;
  text-align: left;
}

.plan-card__item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 4px 0;
}

.plan-card__item::before {
  display: block;
  content: '';
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: url('//frcdn.beenverified.com/assets/img/b14cdfefd9bb2c94baab38494c339592.svg') no-repeat center/contain;
  margin: 0 4px 0 0;
}

.plan-card__item--sub {
  font-weight: 400;
  align-items: flex-start;
}

.plan-card__item--sub::before {
  content: '\02022';
  background: none;
  text-align: center;
}

.plan-card__btn {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 6px;
  background: #81B44C;
  color: #fff;
  margin: auto 0 0;
  border: 0;
  padding: 0;
}

.plan-card__btn-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

@media (min-width: 768px) {
  .plans-container {
    margin: 35px 0 24px;
  }
  .plan-card__badge {
    padding: 6px 12px;
    font-size: 20px;
  }
  .plan-card__price {
    font-size: 48px;
    margin-bottom: 8px;
  }
  .plan-card__title {
    font-size: 18px;
  }
  .plan-card__item {
    font-size: 18px;
    padding: 8px 0;
  }
  .plan-card__item::before {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
  }
  .plan-card__btn {
    min-height: 60px;
  }
  .plan-card__btn-text {
    font-size: 22px;
  }
}

/* -----------------------------------------------------------
--- Plan Selected State ---
------------------------------------------------------------ */

.plan-card.plan-card--selected {
  background: #794686;
}

.plan-card--plus.plan-card--selected {
  background: #4A3B8F;
}

.plan-card.plan-card--selected .plan-card__badge {
  background: #fff;
  color: #5B3565;
}

.plan-card--plus.plan-card--selected .plan-card__badge {
  color: #4A3B8F;
}

.plan-card.plan-card--selected .plan-card__btn {
  background: #67903C;
}

/* Toggle button text between 'Select' and 'Selected' */
.plan-card.plan-card--selected .plan-card__btn-text::after {
  display: inline;
  content: 'ed';
}

/* -----------------------------------------------------------
--- Plans Include ---
------------------------------------------------------------ */

.plans-include__heading {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
}

.plans-include__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0 0 0 5px;
}

.plans-include__item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  margin: 4px 0 0;
  font-size: 16px;
  line-height: 1.2;
}

.plans-include__item::before {
  display: block;
  content: '';
  width: 16px;
  height: 16px;
  background: url('//frcdn.beenverified.com/assets/img/3f47a28c68e68764ff99fc46f44f7257.svg') no-repeat center/contain;
  margin: 0 8px 0 0;
}

/* -----------------------------------------------------------
--- Error Container ---
------------------------------------------------------------ */

.error-container {
  margin: 15px 0 20px;
  border: 3px solid #DC0015;
  border-radius: 12px;
}

.error-container .error-top-part {
  padding: 20px;
  text-align: center;
}

.error-container .error-top-part h3 {
  font-size: 22px;
  color: #DC0015;
  letter-spacing: 0;
  margin: 10px 0 10px 0;
  text-transform: uppercase;
  font-weight: 700;
}

.error-container .error-top-part p {
  font-size: 20px;
  color: #4A4A4A;
  letter-spacing: 0;
}

.error-container ul {
  background: rgba(220, 0, 21, 0.1);
  padding: 20px 20px 20px 40px;
  border-radius: 0 0 12px 12px;
  list-style: none;
  margin-bottom: 0px;
}

.error-container ul li {
  font-size: 18px;
  color: #333333;
  letter-spacing: 0;
  margin-bottom: 10px;
  line-height: 22px;
}

.error-container ul li::before {
  content: "\2022";
  color: red;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* -----------------------------------------------------------
--- Secure Header ---
------------------------------------------------------------ */

.secure-server {
  position: relative;
  cursor: pointer;
}

.secure-server img {
  z-index: 1;
}

.secure-text {
  background-color: #81B44C;
  border-radius: 0 10px 10px 0;
  padding: 0 5px;
  margin: 0;
  position: absolute;
  top: 16px;
  left: 25px;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 120px;
  pointer-events: none;
  z-index: 0;
}

.secure-popover-title {
  position: relative;
  top: 3px;
}

/* Digicert/Norton Badge Overrides */

.digicert-norton-badge img {
  width: 80px !important;
}

/* CSS hack to target chrome only and NOT safari */
/* image-rendering Used to prevent .png image from appearing blurry when scaled down */
@media all and (-webkit-min-device-pixel-ratio:0) and (min-resolution: .001dpcm) {
  .digicert-norton-badge img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* -----------------------------------------------------------
--- Credit Card Input Area ---
------------------------------------------------------------ */
.cc-wrapper-header {
  margin-bottom: 20px;
}

.payment-inputs-area {
  background-color: #EFEFEF;
  padding: 10px 20px 20px;
}

.card-input-and-terms-container {
  display: none;
}

@media (max-width: 767px) {
  .payment-inputs-area {
    padding: 15px;
  }
}

/* -----------------------------------------------------------
--- PayPal ---
------------------------------------------------------------ */

.paypal.spinner {
  margin: 0 auto;
  width: 128px;
}

.paypal.spinner,
.paypal-submitter,
.paypal-canceled-bar {
  display: none;
}

.paypal-canceled-bar.alert {
  margin-bottom: 0;
  border: none;
  border-radius: 0;
}

.paypal-confirm-error {
  display: none;
  margin-top: 10px;
  font-weight: bold;
  color: #DC0015;
}

.cancel-paypal-payment {
  cursor: pointer;
}

/* -----------------------------------------------------------
--- Terms & Conditions ---
------------------------------------------------------------ */

.terms-container {
  padding: 40px 20px;
  margin-bottom: 20px;
  font-size: 18px;
}

.terms-container label {
  line-height: 18px;
}

@media (max-width: 600px) {
  .terms-container {
    padding: 15px 15px 30px;
    font-size: 16px;
  }
}

/* ************************************************************
***************************************************************
--- Sidebar ---
***************************************************************
************************************************************ */

@media (min-width: 768px) {
  .sidebar-column {
    margin-top: 35px;
  }
}

/* -----------------------------------------------------------
--- Order Summary ---
------------------------------------------------------------ */

.order-summary {
  background: #F6F6F6;
  border: 1px solid #EFEFEF;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.order-summary__title {
  font-size: 20px;
  font-weight: bold;
  color: #638A3A;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #E5E3E3;
}

.order-summary__item {
  padding: 10px 2px;
  border-bottom: 1px solid #E5E3E3;
  font-size: 18px;
  font-weight: bold;
}

.order-summary__item:last-of-type {
  border: 0;
  padding: 18px 0 0;
}

/* -----------------------------------------------------------
--- Billing FAQ ---
------------------------------------------------------------ */

.faq-item {
  padding: 15px 0;
  font-size: 16px;
  line-height: 1.2;
  border-bottom: 1px solid #E5E3E3;
}

.faq-item:last-of-type {
  border: 0;
}

.faq-item__title {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.1;
}

.faq-item a {
  color: #0F2D8F;
  text-decoration: underline;
}

.faq-mobile {
  margin-top: 15px;
  border-top: 1px solid #EEE;
}

.faq-mobile .faq-item {
  padding: 21px 0 0;
  border-bottom: 0;
}

@media (min-width: 768px) {
  .faq-item {
    font-size: 18px;
  }
  .faq-item__title {
    margin-bottom: 5px;
    font-size: 22px;
  }
  .faq-item a {
    text-decoration: none;
  }
}

/* -----------------------------------------------------------
--- Testimonials ---
------------------------------------------------------------ */

.testimonials-card p {
  line-height: 22px;
}

/* -----------------------------------------------------------
--- Satisfaction Guaranteed ---
------------------------------------------------------------ */

.satisfaction,
.confidential-searching {
  line-height: 1.3;
}

@media (max-width: 767px) {
  .satisfaction {
    padding: 20px 20px 30px;
  }
}

/* ************************************************************
***************************************************************
--- Footer ---
***************************************************************
************************************************************ */

footer {
  text-align: center;
  margin-top: 10px;
}

.disclaimer,
.disclaimer-terms,
.service {
  font-size: 15px;
  line-height: 18px;
}

.disclaimer {
  margin-top: 30px;
  padding-bottom: 5px;
}

.disclaimer-terms {
  background: #E2E2E2;
  padding: 12px 0;
}

.disclaimer-terms .links {
  min-width: 200px;
}

/* ADA Widget Fine Tuning */
.acsb-container {
  background-color: #e2e2e2;
}

@media (max-width: 767px) {
  footer {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  footer {
    margin-top: 0;
  }
  .disclaimer,
  .disclaimer-terms {
    font-size: 14px;
    margin-top: 10px
  }
}

/* ************************************************************
***************************************************************
--- Modals ---
***************************************************************
************************************************************ */

.modal-dialog {
  margin-top: 50px;
}

.modal-header {
  border-bottom: none;
}

.modal-header-icon {
  width: 80px;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.modal-header-icon--large {
  width: 150px;
  top: -50px;
}

.modal-content {
  background: #FFF;
  border-radius: 10px;
}

.modal-content--border-top {
  border-top: 10px solid #F2DA56;
}

.modal h1 {
  font-size: 33px;
  font-weight: 300;
  color: #4A3B8F;
}

.modal [class^="bv-btn"] {
  padding: 13px 40px;
  font-size: 24px;
  margin: 5px 0;
}

@media (max-width: 600px) {
  .modal-header-icon--large {
    width: 125px;
  }
  .modal h1 {
    font-size: 25px;
  }
}

/* -----------------------------------------------------------
--- FCRA Modal ---
------------------------------------------------------------ */

.fcra-modal .modal-dialog {
  max-width: 760px;
  margin-top: 60px;
}

.fcra-modal h3 {
  font-size: 23px;
  color: #5C5C5C;
  margin: 25px 0 0;
}

.fcra-modal p {
  font-size: 19px;
  margin: 10px 0 20px;
}

.fcra-area {
  line-height: 22px;
  border: 1px solid #EFEFEF;
  border-radius: 4px;
  padding: 11px 25px 0;
  margin: 0 -11px 20px;
  box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

.fcra-modal label.error {
  width: 100%;
  border: 1px solid #DC0015;
  border-radius: 4px;
  color: #DC0015;
  padding: 5px;
  display: none;
}

.fcra-modal .bv-btn {
  width: 100%;
  font-size: 24px;
  padding: 13px 30px;
}

@media (min-width: 768px) {
  .fcra-area {
    margin: 0 60px 20px;
  }
  .fcra-modal h3 {
    margin-top: 15px;
  }
}

@media (max-width: 767px) {
  .fcra-modal .modal-dialog {
    margin: 50px 10px 10px;
  }
  .fcra-modal .modal-prompt {
    margin: 6px 0 4px;
    line-height: 20px;
  }
  .fcra-modal h3 {
    display: inline;
  }
  .fcra-modal p {
    display: inline;
    font-size: 23px;
    font-weight: bold;
    color: #5C5C5C;
    line-height: 1.1;
  }
}

@media (max-width: 600px) {
  .fcra-modal h3,
  .fcra-modal p {
    font-size: 18px;
  }
}

/* -----------------------------------------------------------
--- PayPal Success Modal ---
------------------------------------------------------------ */
.paypal-success.modal .modal-content {
  padding: 15px;
}

.paypal-success.modal h1 {
  font-size: 30px;
  font-weight: normal;
  color: #3A763B;
  margin: 20px 0 10px;
}

.paypal-success.modal .bv-btn {
  font-size: 24px;
  margin: 10px 25px 10px;
}

.paypal-success.modal .fa-check {
  margin-right: 10px;
  color: #81b44c;
}

.cancel-paypal-payment {
  cursor: pointer;
  color: #777 !important;
  font-size: 15px;
}

@media (min-width: 768px) {
  .paypal-success.modal .modal-content {
    padding: 15px 40px;
  }
}

@media (max-width: 575px) {
  .paypal-success.modal .bv-btn {
    margin: 0 0 25px;
    font-size: 18px;
  }
 }

 /* ************************************************************
***************************************************************
--- Popovers ---
***************************************************************
************************************************************ */

.popover {
  font-family: 'Lato', sans-serif;
}

.popover-body {
  font-size: 16px;
  color: #333333;
  letter-spacing: 0;
  line-height: 19px;
  z-index: 9999;
  padding: 9px 14px;
}

.popover-body h4 {
  font-size: 16px;
  color: #81B44C;
  letter-spacing: 0;
}

.close-popover {
  position: relative;
  top: -3px;
}

@media (min-width: 768px) {
  .close-popover {
    display: none;
  }
}
