/* ******************************************************** !!
/* CSS CONTENTS ----------------------------------------------
--------------------------------------------------------------
--| General/Utlity
--| Header
------| Searched Data (Mobile)
--| Flat & Shadow Cards
--| Buttons
------| Radio Buttons
-----------| Overrides for Payment Methods
------| Checkboxes
-----------| Overrides for Terms & Conditions
-----------| Overrides for FCRA Modal
--| Payment
------| Error Container
------| Secure Header
------| Credit Card Input Area
------| PayPal
------| Terms & Conditions
--| Sidebar
------| Order Summary
------| List Styles
------| Testimonials
------| Satisfaction Guaranteed
--| Footer
--| Modals
------| Downsell Modal
------| Discount Modal
------| 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: -o-linear-gradient(bottom, #EFEFEF 0%, #EFEFEF 35%, #FFFFFF 80%);
  background-image: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), color-stop(35%, #EFEFEF), color-stop(80%, #FFFFFF));
  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: #659731;
}

@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;
  }
}

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

.banner {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 10px 0;
  background-color: #F2DA56;
  color: #4A4A4A;
}

.logo-bar {
  padding: 10px 0;
  background-color: #353067;
}

.header-badge {
  padding: 3px 10px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  color: #FFF;
  background: #EF2742;
  margin: 6px 0 0;
  white-space: nowrap;
}

.logo-bar__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.headline {
  margin: 30px 5px;
  font-size: 30px;
  font-weight: 300;
  text-align: center;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .discount-banner {
    font-size: 18px;
    letter-spacing: -0.3px;
  }
  .headline {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .headline {
    font-size: 20px;
    margin: 24px 5px;
  }
  .header-badge {
    margin: 6px 0 0;
  }
}

@media (max-width: 374px){
  .header-badge {
    font-size: 9px;
    padding: 3px 7px;
  }
}

/* -----------------------------------------------------------
--- Searched Data (Mobile) ---
------------------------------------------------------------ */

.searched-data-mobile {
  font-size: 18px;
  background-color: #F6F6F6;
  border-radius: 12px;
  padding: 10px 20px;
  margin-bottom: 15px;
}

.searched-data-mobile .icon-area {
  font-size: 22px;
  color: #659731;
  margin-right: 10px;
}

.searched-data-mobile .icon-area .icon-rotate {
  transform: rotate(90deg);
}

/* ************************************************************
***************************************************************
--- 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 {
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.3);
  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: #659731;
  padding-bottom: 12px;
  margin-bottom: 0;
  border-bottom: 2px solid #E5E3E3;
}

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

.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;
}
}

/* ************************************************************
***************************************************************
--- 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;
  -webkit-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out
}

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

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

[class^="bv-btn"][disabled]:focus,
[class^="bv-btn"].disabled:focus {
  -webkit-box-shadow: none;
          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;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    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%;
    -webkit-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

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

.bv-rb [type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(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;
  -webkit-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  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;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  font-family: Helvetica, Arial, sans-serif;
}
/* checked mark aspect changes */
.bv-cb [type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.bv-cb [type="checkbox"]:checked + label:before {
  border-color: #4A4A4A
}
.bv-cb [type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1.8);
      -ms-transform: scale(1.8);
          transform: scale(1.8);
}
/* disabled checkbox */
.bv-cb [type="checkbox"]:disabled:not(:checked) + label:before,
.bv-cb [type="checkbox"]:disabled:checked + label:before {
  -webkit-box-shadow: none;
          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 ---
------------------------------------------------------------ */

.plan-selection  {
  margin: 0 20px 20px;
  padding: 20px 10px;
  border: 3px solid #E5E3E3;
  border-radius: 6px;
  background: #FFF;
  cursor: pointer;
}

.plan-selection--selected {
  border-color: #81B44C;
  background: #F7FCF1;
}

.plan-selection-text {
  margin: 0;
  font-size: 20px;
  color: #4a4a4a;
}
.plan-selection__plan-text,
.plan-selection__plan-text h3,
.plan-price {
  margin: 0;
}
.plan-selection__plan-text {
  font-size: 18px;
  line-height: 22px;
}
.plan-selection__plan-text h3 {
  font-size: 20px;
  font-weight: bold;
  color: #4A4A4A;
}
.plan-benefit-icon {
  color: #638A3A;
  font-size: 16px;
  margin-right: 8px;
}
.plan-price {
  font-size: 20px;
  line-height: 20px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .plan-price--total-today {
    font-size: 10px;
  }
  .plan-selection__plan-text {
    padding-left: 8px;
  }
}
@media (max-width: 991px) {
  .plan-price {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .plan-selection__plan-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .plan-selection__price {
    padding-left: 35px;
    margin-top: 5px;
  }
  [class^="plan-price"]:not(.plan-price--total-today) {
    display: inline-block;
  }
  .plan-selection__plan .bv-rb [type="radio"]:checked + label,
  .plan-selection__plan .bv-rb [type="radio"]:not(:checked) + label {
    height: 0;
  }
  .plan-benefit-icon {
    font-size: 14px;
    margin-right: 4px;
  }
  .plan-price {
    font-size: 14px;
  }
  .plan-price strong {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .plan-selection__plan-text {
    font-size: 16px;
  }
}
.trial-conditions {
  font-size: 18px;
}

@media (min-width: 768px) {
  .plan-selection-text {
    padding-left: 10px;
  }
}

@media (max-width: 991px) {
  
  .plan-selection-text {
    font-size: 18px;
  }
  .plan-selection-plan-type {
    width: 43%;
  }
}

@media (max-width: 767px) {
  .plan-selection {
    margin-bottom: 30px;
  }
  .plan-selection-text {
    font-size: 17px;
  }
  .plan-selection-plan-type {
    width: 100%;
  }
  .trial-conditions {
    font-size: 16px;
  }
}

/* -----------------------------------------------------------
--- 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;
}

.terms-container label {
  font-size: 18px;
}

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

/* ************************************************************
***************************************************************
--- 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: #659731;
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #E5E3E3;
}

[class^="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;
}

.order-summary__item--search-subject {
  border-bottom: 0;
}

@media (min-width: 768px) and (max-width: 991px) {
  [class^="order-summary__item"] {
    font-size: 16px;
  }
}

/* -----------------------------------------------------------
--- List Styles ---
------------------------------------------------------------ */

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

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

.icon-list__text {
  font-size: 16px;
  line-height: 19px;
}

.order-summary li {
  padding: 8px 0;
}

.order-summary svg {
  color: #659731;
}

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

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


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

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

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

.satisfaction {
  line-height: 21px;
}

@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;
}

.disclaimer__important {
  line-height: 19px;
  font-size: 16px;
}

/* 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%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-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;
  }
}

/* -----------------------------------------------------------
--- Downsell Modal ---
------------------------------------------------------------ */

.downsell-modal .modal-dialog {
  max-width: 600px;
}

.downsell-modal .modal-header .close {
  position: relative;
  top: -10px;
}

.downsell-modal h1 {
  font-size: 55px;
  font-weight: 300;
  color: #4A3B8F;
  margin-top: 20px;
}

.downsell-modal p {
  font-size: 18px;
}

@media (min-width: 768px) {
  .downsell-modal .bv-btn {
    max-width: 70%;
    margin: 10px auto 5px;
    padding: 15px;
  }
}

@media (max-width: 767px) {
  .downsell-modal .modal-body {
    padding-top: 0;
  }
  .downsell-modal h1 {
    font-size: 37px;
  }
  .downsell-modal .bv-btn {
    font-size: 17px;
  }
}

/* -----------------------------------------------------------
--- Discount Modal ---
------------------------------------------------------------ */

.discount-modal .modal-dialog {
  max-width: 350px;
  margin: 100px auto 0;
}

.discount-modal .modal-content {
  border: 0;
  font-size: 18px;
}

.discount-modal .modal-header-icon {
  width: 100px;
}

.discount-modal .text-muted {
  color: #9F9F9F !important;
  font-size: 18px;
  margin: 25px 0 0;
}

/* -----------------------------------------------------------
--- 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;
  -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);
          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;
  }
}
