/* COLORS */
/* RESET CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

a, a:hover, a:active, a:focus {
  outline: none !important;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  color: #131D26;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* correct 'input buttons' and select for iOS */
select {
  -webkit-appearance: menulist-button;
}

input[type=submit] {
  -webkit-appearance: none;
}

* {
  font-family: "Open Sans", sans-serif;
  -webkit-text-size-adjust: 100%;
}

/* END RESET CSS */
@font-face {
  font-family: "Open Sans";
  font-weight: 400;
  font-style: normal;
  src: local("Open Sans Regular"), local("OpenSans Regular"), url("/resources/font/OpenSans-Regular.d7d5d4588a9f.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: normal;
  src: local("Open Sans Light"), local("OpenSans Light"), url("/resources/font/OpenSans-Light.9ff12f694e59.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 300;
  font-style: italic;
  src: local("Open Sans Light Italic"), local("OpenSans Light Italic"), url("/resources/font/OpenSans-LightItalic.54b444340411.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: normal;
  src: local("Open Sans SemiBold"), local("OpenSans SemiBold"), url("/resources/font/OpenSans-SemiBold.e1c83f9474e0.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 600;
  font-style: italic;
  src: local("Open Sans SemiBoldItalic"), local("OpenSans SemiBoldItalic"), url("/resources/font/OpenSans-SemiBoldItalic.fc17ea62c914.ttf") format("truetype");
}
@font-face {
  font-family: "Open Sans";
  font-weight: 700;
  font-style: normal;
  src: local("Open Sans Bold"), local("OpenSans Bold"), url("/resources/font/OpenSans-Bold.f5331cb6372b.ttf") format("truetype");
}
.container-fluid {
  max-width: 100%;
  padding: 0;
}

.container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 24px;
}

/* COMMON STYLES */
body {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
body.modal-open {
  -webkit-overflow-scrolling: touch;
}

input:not([type=radio]):not([type=submit]):not([type=checkbox]), textarea {
  width: 100%;
  height: 48px;
  appearance: none;
  background-color: #FFFFFF;
  border-radius: 2px;
  border: solid 1px #9ac3fd;
  position: relative;
  padding: 14px 20px;
  font-size: 16px;
  line-height: 18px;
  color: #3a444e;
  transition: border-color 0.3s ease;
  cursor: auto;
}
input:not([type=radio]):not([type=submit]):not([type=checkbox]):focus, textarea:focus {
  outline: 0;
  border-color: #0066ff;
  box-shadow: none;
}

input[type=radio], .callback-modal input[type=checkbox] {
  visibility: hidden;
  position: relative;
  top: -2px;
  margin-right: 5px;
  margin-top: 7px;
  -moz-appearance: none;
}
input[type=radio]:disabled::after, .callback-modal input[type=checkbox]:disabled::after {
  background-color: gray;
}
input[type=radio]:disabled::before, .callback-modal input[type=checkbox]:disabled::before {
  border: 1px solid gray;
}
input[type=radio]::before, .callback-modal input[type=checkbox]::before {
  content: "";
  position: absolute;
  border: 1px solid #0066ff;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background-color: #FFFFFF;
  visibility: visible;
  top: -5px;
  left: 0;
}
input[type=radio]::after, .callback-modal input[type=checkbox]::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: #0066ff;
  visibility: visible;
  left: 4px;
  top: -1px;
  width: 15px;
  height: 15px;
  transform: scale(0);
  transition: transform 0.2s linear;
}
input[type=radio]:checked::after, .callback-modal input[type=checkbox]:checked::after {
  transform: scale(1);
}
input[type=radio]:hover, .callback-modal input[type=checkbox]:hover {
  cursor: pointer;
}

select {
  width: 100%;
  height: 48px;
  appearance: none;
  background-color: #FFFFFF;
  border-radius: 2px;
  border: solid 1px #9ac3fd;
  position: relative;
  padding: 13px 28px 13px 22px;
  font-size: 16px;
  line-height: 18px;
  color: #3a444e;
  background-size: auto;
}
select:focus {
  outline: none;
  box-shadow: none;
}

textarea {
  height: 150px;
  resize: none;
}
textarea#id_children_visitation_schedule {
  height: 300px;
  resize: vertical;
  font-size: 14px;
}

.form-control {
  border: solid 1px #9ac3fd;
}

.light-bg {
  background-color: #F7F9FB;
}

.c-green {
  color: #00CC00;
}

.blue-bg {
  background-color: #0066FF;
}

.btn--space-normal {
  white-space: normal;
}

.btn {
  display: block;
  height: 48px;
  border-radius: 100px;
  border: 2px solid #0066ff;
  font-size: 16px;
  line-height: 1;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.btn:focus {
  box-shadow: none;
  outline: none;
}
.btn--empty, .btn--empty:hover {
  color: #0066ff;
}
.btn--space-normal {
  white-space: normal;
}
.btn--filled {
  color: #FFFFFF;
  background-color: #0066ff;
  transition: background-color 0.1s ease, border-color 0.1s ease;
}
.btn--filled:hover {
  color: #FFFFFF;
}
.btn--filled:active {
  border-color: #0043e2;
  background-color: #0043e2;
}
.btn--payment {
  max-width: 331px;
  width: 100%;
  height: 72px;
}
.btn--thankyou {
  color: #FFFFFF;
  width: 240px;
  height: 72px;
  line-height: 40px;
  text-align: center;
}
.btn--thankyou:hover {
  color: #FFFFFF;
}
.btn--login, .btn--contact {
  width: 120px;
  margin-left: auto;
}
.btn--quiz {
  width: 174px;
  height: 64px;
  margin-top: 50px;
}
.btn--quiz-start {
  display: none;
}
.btn--back {
  width: 119px;
  text-align: right;
  padding-right: 30px;
}
.btn--back::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  border: 2px solid #0066ff;
  border-right: none;
  border-bottom: none;
  left: 24px;
  top: 17px;
  transform: rotate(315deg);
}
.btn--next {
  width: 155px;
  text-align: left;
  padding-left: 30px;
}
.btn--next::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  border: 2px solid #fff;
  border-right: none;
  border-bottom: none;
  right: 24px;
  top: 17px;
  transform: rotate(135deg);
}
.btn--leave-as-is {
  background-color: #FFFFFF;
  color: #0066ff;
  width: 140px;
  font-weight: bold;
}
.btn--leave-as-is::before {
  content: none;
}
.btn--update-it {
  width: 140px;
  font-weight: bold;
}
.btn--update-it::before {
  content: none;
}

.position-relative {
  position: relative;
}

.lz-breadcrumb {
  display: flex;
  font-size: 12px;
  line-height: 16px;
  color: #88888a;
  margin: 15px 0 10px 0;
}
.lz-breadcrumb--delimiter {
  margin: 0 6px;
}
.lz-breadcrumb--link {
  color: #0066ff;
  text-decoration: none;
}

.has-error--mt {
  margin-top: -20px;
}
.has-error input:not([type=radio]):not([type=submit]),
.has-error select, .has-error textarea,
.has-error > table input.error-highlight:not([type=radio]):not([type=submit]) {
  border-color: #e90661 !important;
  color: #e90661 !important;
}
.has-error input:not([type=radio]):not([type=submit]):focus,
.has-error select:focus, .has-error textarea:focus,
.has-error > table input.error-highlight:not([type=radio]):not([type=submit]):focus {
  border-color: #e90661 !important;
}

.error-text {
  color: #e90661;
}

.success-text {
  color: #379607;
}

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

.funnel-label {
  display: block;
  color: #656f7a;
  margin-bottom: 20px;
  width: 100%;
}
.funnel-label b {
  font-weight: normal;
}

.hidden {
  display: none;
}

a.answer-link, a.answer-link:hover {
  color: #007bff;
}

a.answer-link--dark {
  color: #066ede;
}

.default-link, .default-link:hover, .default-link:focus {
  color: #007bff;
}

.link-no-text-decoration, .link-no-text-decoration:hover {
  text-decoration: none;
}

.modal:not(.modal-fullwidth) button.close {
  font-size: 40px;
}
.modal:not(.modal-fullwidth) button.close:focus {
  outline: none;
}

.shadow-0 {
  box-shadow: none !important;
}

.c-656 {
  color: #656F7A;
}

.text-blue, .link-blue, .link-blue:hover, .link-blue:focus {
  color: #0066FF;
}

.text-underline {
  text-decoration: underline;
}

@supports (-moz-appearance: none) {
  input[type=radio] {
    top: -14px !important;
    margin-right: 10px !important;
  }

  .callback-modal input[type=checkbox] {
    left: -6px;
  }

  input {
    box-shadow: none;
  }

  .funnel .form .form-row input, .funnel .form .form-row select {
    color: #3a444e !important;
  }

  .contact-wrapper .radio-btn-wrapper label input {
    margin-right: 40px;
  }

  #platinumLocation input[type=radio] {
    top: 0px !important;
    margin-right: 10px !important;
  }
}
/* END COMMON STYLES */
/* HEADER */
/*before payment*/
.header-lg-need-help {
  color: #131D26 !important;
}
.header-wrap {
  height: 60px;
}
.header-wrap a, .header-wrap a:hover {
  color: #131D26;
  text-decoration: none;
}
.header-wrap .header-lg-need-help::before {
  content: url("/resources/img/info-icon-black.af1d24e0062b.svg");
  height: 20px;
  width: 20px;
  margin-right: 11px;
}
.header-wrap .modal-help-wrapper {
  top: 50px;
  right: 25px;
}
.header-divorce {
  color: #121c24;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 32px;
  margin-left: 60px;
  text-decoration: none;
}
.header-divorce:visited {
  color: #121c24;
}
.header-divorce:hover {
  color: #121c24 !important;
  font-weight: normal !important;
}
.header-phone {
  margin: 0 85px;
}
.header-phone:hover {
  font-weight: bold;
}
.header-login:hover {
  font-weight: bold;
}

/*end before payment*/
.header {
  box-shadow: 0px 2px 1px rgba(0, 0, 0, 0.15);
}
.header-wrapper {
  padding: 32px 24px 20px 24px;
  background-color: #FFFFFF;
}
.header-top {
  margin-bottom: 30px;
  position: relative;
}
.header-link {
  margin-right: 30px;
  color: #131D26;
}
.header-link:hover {
  color: #0066FF;
}
.header-link--profile::before {
  content: url("/resources/img/profile.ac880e4e2485.svg");
}
.header-link--logout::before {
  content: url("/resources/img/logout.625edfc5cffc.svg");
}
.header-link--profile, .header-link--logout {
  color: #0066FF;
}
.header-link--profile::before, .header-link--logout::before {
  margin-right: 10px;
  position: relative;
  top: 3px;
}
.header-link--profile:hover, .header-link--logout:hover {
  color: #0066FF;
}
.header-lg-need-help {
  color: #0066FF;
  font-size: 16px;
  cursor: pointer;
  height: 50px;
}
.header-lg-need-help.no-touch:hover + .modal-help-wrapper {
  display: block;
}
.header-divorce-word {
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.16px;
  color: #636e78;
  padding-bottom: 10px;
  padding-top: 60px;
  text-decoration: none;
}
.header-divorce-word:visited {
  color: #636e78;
}
.header-divorce-word:hover {
  color: #636e78;
  text-decoration: none;
}

.hamburger {
  height: 28px;
  padding-right: 20px;
  cursor: pointer;
  z-index: 1;
}
.hamburger-wrapper {
  width: 18px;
  position: relative;
}
.hamburger-inner {
  transition-timing-function: ease;
  transition-property: transform;
  transition-duration: 0.2s;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
}
.hamburger-inner::before {
  top: -4px;
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger-inner::after {
  bottom: -4px;
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  position: absolute;
  height: 2px;
  width: 18px;
  background-color: #0066FF;
  display: block;
}
.hamburger.active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-3px, -3px, 0) rotate(-30deg) scaleX(0.6);
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}
.hamburger.active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-3px, 3px, 0) rotate(30deg) scaleX(0.6);
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
}

/* END HEADER */
/* HOME */
.home-banner-wrap {
  margin: 0 auto;
  background: url("/resources/img/banner-lg.2e94534d023e.png") no-repeat right;
  background-size: contain;
  height: 655px;
}
.home-banner-wrap .mobile-banner {
  display: none;
}

.home-banner-content {
  padding-bottom: 7px;
}
.home-banner-content .home-h1-wrap {
  max-width: 650px;
  width: 100%;
  padding: 90px 0 20px 0;
  /* in real 25px but wrong sizes in scatch layout */
}
.home-banner-content .home-h1-wrap > .h1 {
  color: #131D26;
  font-size: 60px;
  font-weight: 400;
  line-height: 72px;
  letter-spacing: -0.6px;
  display: inline;
}
.home-banner-content .home-h1-wrap .h1-mobile-br {
  display: none;
}
.home-banner-content .home-h1-wrap .h1-desktop-br {
  display: none;
}
.home-banner-content .btn--learn {
  width: 181px;
  min-height: 66px;
  padding-top: 23px;
  padding-bottom: 23px;
}
.home-banner-content .home-banner-text {
  margin: 30px 0;
}
.home-banner-content .home-banner-text a:hover {
  color: #007bff;
}
.home-banner-content .home-state-form {
  max-width: 506px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.home-banner-content .home-state-form label {
  color: #3A444E;
  margin-bottom: 15px;
}
.home-banner-content .home-state-form .add-margin {
  margin-bottom: 30px;
}
.home-banner-content .home-state-form input[type=button],
.home-banner-content .home-state-form input[type=submit] {
  max-width: 174px;
  width: 100%;
  height: 64px;
  font-size: 16px;
  line-height: 20px;
  padding: 22px 34px;
  background: #0066FF;
  border: 1px #0066FF solid;
  border-radius: 64px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
.home-banner-content .home-state-form input[type=button]:focus,
.home-banner-content .home-state-form input[type=submit]:focus {
  outline: none;
  box-shadow: none;
}
.home-banner-content .subtitle {
  max-width: 616px;
  font-size: 18px;
  line-height: 24px;
  color: #3a444e;
}

.gradient {
  margin: 0 auto;
  background: linear-gradient(#fff, #F0F3F8);
  padding: 60px 0 125px 0;
}

.content-wrap .home-content-icons {
  max-width: 949px;
  width: 100%;
  margin: 0 auto;
}
.content-wrap .home-content-icons .content-title {
  text-align: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: bold;
  color: #3A444E;
}
.content-wrap .home-content-icons .icons-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.content-wrap .home-content-icons .icon {
  margin: 50px 0 0 0;
  max-width: 285px;
  width: 100%;
  text-align: center;
}
.content-wrap .home-content-icons .icon p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.16px;
  color: #636e78;
}
.content-wrap .content-wrap-desktop-br {
  display: block !important;
}
.content-wrap .content-wrap-mobile-br {
  display: none !important;
}

.news-blue-bg {
  width: 1600px;
  margin: 0 auto;
  background: #033AB7;
  padding: 73px 0;
}

.news-wrap {
  display: flex;
  justify-content: space-between;
}
.news-wrap .news {
  max-width: 440px;
  width: 100%;
  height: 166px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-wrap .news-middle {
  border-left: 1px #0066FF solid;
  border-right: 1px #0066FF solid;
}
.news-wrap .news img {
  margin: auto auto 0 auto;
}
.news-wrap .news p {
  color: #0066FF;
  text-align: center;
  margin-top: 30px;
  min-height: calc(50% - 15px);
  /* half of margin-top */
}
.news-wrap .mobile-separator {
  display: none;
  width: 170px;
  max-height: 1px;
  border-top: 1px #0066FF solid;
}

.commitment-left {
  width: 50%;
}
.commitment-right {
  width: 50%;
  max-width: 552px;
}
.commitment-right img {
  position: absolute;
  bottom: 80px;
}
.commitment-title {
  font-size: 40px;
  line-height: 48px;
  color: #131d26;
  font-weight: 300;
  white-space: nowrap;
}
.commitment-list {
  list-style: none;
}
.commitment-list li {
  color: #3a444e;
  font-size: 18px;
  line-height: 1.5;
  white-space: nowrap;
  margin-top: 50px;
  position: relative;
  padding-left: 70px;
}
.commitment-list li::before {
  content: url("/resources/img/list-ok.a19618ded2f7.svg");
  position: absolute;
  left: 0;
  top: 3px;
}
.commitment-border {
  flex-basis: 50%;
  padding: 0 60px 0 40px;
  margin-top: 50px;
  font-size: 20px;
  line-height: 32px;
  font-weight: 300;
  font-style: italic;
  height: 190px;
}
.commitment-border .skew-border {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.commitment-border span {
  width: 90%;
  top: 50%;
  transform: translateY(-50%);
}

.feedbacks-wrap {
  padding-top: 125px;
}
.feedbacks-wrap .feedbacks-title {
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  font-weight: 300;
  color: #121c24;
}
.feedbacks-wrap .feedbacks {
  display: flex;
  justify-content: space-around;
}
.feedbacks-wrap .feedback {
  max-width: 396px;
  width: 100%;
  margin-top: 80px;
}
.feedbacks-wrap .feedback .feedback-title {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  font-weight: bold;
  color: #38424d;
  margin: 15px 0;
}
.feedbacks-wrap .feedback .feedback-content {
  color: #636e78;
  margin: 15px 0;
}
.feedbacks-wrap .feedback .feedback-user {
  font-weight: 600;
  font-style: italic;
  text-align: right;
  color: #38424d;
}

.howto-wrap {
  padding-top: 120px;
  padding-bottom: 240px;
}
.howto-left, .howto-right {
  width: 50%;
}
.howto-left {
  margin-right: 40px;
}
.howto-left img {
  width: 100%;
  max-width: 505px;
}
.howto-right {
  max-width: 505px;
}
.howto-right p {
  color: #131d26;
  font-size: 16px;
  line-height: 1.5;
}
.howto-title {
  font-size: 40px;
  line-height: 48px;
  color: #131d26;
  font-weight: 300;
  margin-bottom: 35px;
}

/* END HOME */
/* FOOTER */
.footer {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.16px;
  color: #656F7A;
}
.footer .copywrite {
  font-weight: bold;
  margin-bottom: 20px;
}
.footer .copy-content a {
  text-decoration: none;
  color: #0066FF;
}
.footer .copy-content a:visited {
  color: #0066FF;
}
.footer .links-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 265px;
  margin: 13px 0 100px;
}
.footer .links-wrap iframe {
  margin-top: -8px;
  width: 135px;
  height: 80px;
}

/* END FOOTER */
/* MODAL HELP */
.modal-help-wrapper {
  display: none;
  position: absolute;
  top: 32px;
  right: 0;
  z-index: 999;
  border: 2px solid #0066FF;
  box-shadow: 0 0 30px 5px rgba(11, 11, 11, 0.25);
  background: #fff;
  max-width: 397px;
  width: 100%;
  padding: 50px 50px 62px;
}
.modal-help-wrapper:hover {
  display: block;
}
.modal-help-wrapper .modal-help-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #3A444E;
  margin-bottom: 30px;
}
.modal-help-wrapper .modal-help-item {
  color: #656F7A;
  width: 100%;
  padding-bottom: 6px;
  margin-top: 22px;
  border-bottom: 1px solid #979797;
  cursor: pointer;
  transition: color 0.3s ease, border-bottom-color 0.3s ease;
}
.modal-help-wrapper .modal-help-item:hover {
  color: #0066FF;
  border-bottom: 1px solid #0066FF;
}
.modal-help-wrapper .modal-help-item a {
  color: inherit;
  text-decoration: none;
}
.modal-help-wrapper .modal-help-item a:visited {
  color: inherit;
}
.modal-help-wrapper .modal-help-item .working-hours {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  letter-spacing: 0.16px;
  white-space: nowrap;
}
.modal-help-wrapper .modal-help-item .working-hours .hours-sep {
  display: none;
}

/* HOMEPAGE MODAL */
.state-choice-wrap {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 81px;
}
.state-choice-wrap .state-choice-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.state-choice-wrap .state-choice-top p {
  margin: 0 auto;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.16px;
  color: #656F7A;
  padding-left: 48px;
}
.state-choice-wrap .country-title {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0px;
  font-weight: 300;
  color: #131D26;
  text-align: center;
  margin: 36px 0 22px;
}
.state-choice-wrap .states {
  display: flex;
  flex-direction: column;
  height: 264px;
  flex-wrap: wrap;
}
.state-choice-wrap .states a:nth-child(10n) {
  margin-bottom: 16px;
}
.state-choice-wrap .states a:nth-child(50n) {
  margin-bottom: unset;
}
.state-choice-wrap .provinces {
  display: flex;
  flex-direction: column;
  height: 72px;
  flex-wrap: wrap;
}
.state-choice-wrap .states a,
.state-choice-wrap .provinces a {
  color: #3A444E;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 24px;
  text-decoration: none;
}
.state-choice-wrap .states a:visited,
.state-choice-wrap .provinces a:visited {
  color: #3A444E;
}
.state-choice-wrap .states a:hover,
.state-choice-wrap .provinces a:hover {
  color: #0066FF;
}

/* MODAL FUNNEL AFTER PAYMENT*/
.modal-dialog.modal-dialog-questions {
  max-width: 640px;
  margin: 0 auto;
}
.modal-content-questions {
  padding: 40px;
}

/* CALLBACK MODAL */
.callback-modal-content {
  padding: 115px 0 125px 0;
}
.callback-modal-dialog {
  margin-top: 30px !important;
}
.callback-modal-title {
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  font-weight: 300;
  color: #131d26;
  margin: 0 0 50px 0;
}
.callback-modal-body {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.75rem !important;
}
.callback-modal-form .form-row {
  margin-bottom: 20px;
}
.callback-modal-form .form-row--inline {
  display: flex;
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
  flex-grow: 1;
}
.callback-modal-form .form-row--inline .group {
  max-width: 175px;
  width: 100%;
}
.callback-modal-form .form-row--inline .group:nth-child(2) {
  margin: 0 46px;
}
.callback-modal-form .form-row .checkbox-label {
  margin-left: 20px;
}
.callback-modal-form .funnel-label {
  margin-bottom: 10px;
}
.callback-modal-form .btn--modal {
  width: 120px;
}
.callback-modal .close {
  position: absolute;
  left: 89%;
  top: 48px;
}
.callback-modal a {
  color: #0066FF;
  text-decoration: none;
}
.callback-modal a:hover {
  text-decoration: underline;
}

#doesNotOfferService .callback-modal-content {
  padding: 0 0 50px 0;
}

/* END CALLBACK MODAL */
/* FUNNEL */
.funnel-progressbar1 {
  width: 10%;
}

.funnel-progressbar2 {
  width: 20%;
}

.funnel-progressbar3 {
  width: 30%;
}

.funnel-progressbar4 {
  width: 40%;
}

.funnel-progressbar5 {
  width: 50%;
}

.funnel-progressbar6 {
  width: 60%;
}

.funnel-progressbar7 {
  width: 70%;
}

.funnel-progressbar8 {
  width: 80%;
}

.funnel-progressbar9 {
  width: 90%;
}

.funnel-progressbar10 {
  width: 100%;
}

.eligibility .funnel-label {
  margin-bottom: 15px;
}
.eligibility .form {
  max-width: 600px;
  width: 100%;
  margin-right: 50px;
  flex-basis: 50%;
  flex-shrink: 0;
}
.eligibility .form-aside {
  max-width: 370px;
  width: 100%;
  padding-left: 10px;
  margin-left: auto;
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .eligibility .form-aside {
    margin-top: 0;
  }
}
.eligibility .form-aside .step {
  position: relative;
  padding: 50px 0 50px 30px;
  border-left: 2px solid rgba(0, 102, 255, 0.25);
}
.eligibility .form-aside .step::before {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  position: absolute;
  left: -11px;
  z-index: 1;
  background-color: #fff;
}
.eligibility .form-aside .step-num {
  font-weight: 700;
}
.eligibility .form-aside .step.active {
  color: #121c24;
}
.eligibility .form-aside .step.active::before {
  content: "";
  border: 2px solid #00cc00;
}
.eligibility .form-aside .step.not-done {
  color: #c7ccd4;
}
.eligibility .form-aside .step.not-done::before {
  content: "";
  border: 2px solid #c7ccd4;
}
.eligibility .form-aside .step2 p.d-step-lg-hide {
  display: none;
}
.eligibility .form-aside .step2 p.d-step-show {
  display: block;
}
.eligibility select {
  color: #636e78 !important;
}
.eligibility input[type=radio] {
  margin-right: 15px;
  width: 23px;
}
.eligibility-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 492px;
  margin-bottom: 40px;
}
.eligibility-top .col-left {
  max-width: 470px;
  width: 100%;
}
.eligibility-top .col-left .h1 {
  display: inline;
  color: #121c24;
  font-weight: 300;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.6px;
}
.eligibility-top .col-left .h1--guarantee {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 30px;
}
.eligibility-top .col-left .h1--guarantee a:hover {
  color: #007bff;
}
.eligibility-top .col-right {
  width: 100%;
}
.eligibility-top .col-right .banner {
  width: 800px;
  position: absolute;
  right: 0;
  top: 0;
}
.eligibility-top .col-right .banner-mobile {
  display: none;
}
.eligibility-form-block {
  display: flex;
  flex-wrap: wrap;
}
.eligibility-form-block .subtitle {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d6d6d6;
  flex-basis: 100%;
  flex-shrink: 0;
}
.eligibility-form-block .subtitle .h2 {
  font-size: 40px;
  line-height: 48px;
  font-weight: 300;
  color: #0338b5;
  letter-spacing: -0.2px;
  margin-bottom: 15px;
}
.eligibility-form-block .subtitle .h2--text {
  color: #636e78;
  font-size: 16px;
  line-height: 1.5;
}
.eligibility .certified-wrapper {
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid #d8d8d8;
}
.eligibility .certified-title {
  color: #3a444e;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: 400;
}
.eligibility .certified-subtitle {
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
  color: #656f7a;
  font-weight: 400;
}
.eligibility .certified-text {
  font-size: 14px;
  line-height: 20px;
  color: #656f7a;
  margin-bottom: 10px;
}
.eligibility .questions-wrapper {
  margin-top: 125px;
}
.eligibility .questions-wrapper .collapse-block {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.eligibility .questions-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 300;
  color: #131d26;
  margin-bottom: 75px;
  text-align: center;
}
.eligibility .modal-elig {
  margin-top: 170px !important;
}
.eligibility .modal-elig--title {
  font-size: 20px;
  line-height: 32px;
  color: #131d26;
  margin-bottom: 20px;
}
.eligibility .modal-elig p {
  margin-bottom: 10px;
  color: #3a444e;
}
.eligibility .modal-elig .btn--modal {
  width: 174px;
  height: 64px;
  margin-top: 20px;
}
.eligibility .modal .hidden {
  display: none;
}
.eligibility .modal-body--elig {
  max-width: 632px;
  width: 100%;
  margin: 0 auto;
}
.eligibility.no-qualified .form {
  max-width: 700px;
  margin-right: 0;
  flex-basis: 60%;
  margin-top: 150px;
}
.eligibility.no-qualified .form p {
  margin-bottom: 15px;
}
.eligibility.no-qualified .form--no-qualified a {
  text-decoration: none;
  color: #0066ff;
}
.eligibility.no-qualified .form--no-qualified a:hover {
  text-decoration: underline;
}
.eligibility.no-qualified .eligibility-form-block {
  margin-bottom: 50px;
}
.eligibility .state-content .state-resources {
  margin-top: 50px;
}
.eligibility .state-content .state-resources em {
  padding-bottom: 10px;
}
.eligibility .state-content .state-resources h3 {
  font-size: 18px;
  line-height: 24px;
  margin: 15px 0;
}
.eligibility .state-content .state-resources p {
  margin-bottom: 7px;
  line-height: 22px;
}

.funnel .address-label-margins {
  margin: 20px 0 10px 0;
}
.funnel .street-fields-wrapper {
  height: 164px;
}
.funnel .zip-fields-wrapper input {
  width: calc(50% - 7.5px) !important;
}
.funnel-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.funnel-buttons--payment {
  margin-top: 70px;
  margin-bottom: 33px;
}
.funnel-buttons .tos {
  font-size: 12px;
}
.funnel .form-chapter {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #3a444e;
  margin-bottom: 30px;
}
.funnel .form-chapter--mt50 {
  margin-top: 50px;
}
.funnel .highlight-price {
  color: #0066ff;
}
.funnel-progressbar {
  width: 100%;
  height: 10px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.funnel-progressbar--gray {
  background-color: #F0F3F8;
  width: 100%;
  max-width: 1232px;
  height: 10px;
}
.funnel-progressbar--green {
  height: 10px;
  background-color: #00CC00;
  max-width: 1232px;
}
.funnel-desc {
  max-width: 500px;
  padding: 75px 0 45px 0;
}
.funnel-desc--title {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: #131d26;
  margin-bottom: 15px;
}
.funnel-desc--text {
  font-size: 16px;
  line-height: 1.5;
  color: #656f7a;
}
.funnel-wrapper {
  display: flex;
  justify-content: space-between;
}
.funnel-main {
  max-width: 505px;
  min-width: 430px;
  width: 100%;
  margin-right: 50px;
}
.funnel-main.w-605 {
  max-width: 605px;
}
.funnel-aside {
  max-width: 395px;
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #3a444e;
}
.funnel-aside--h3 {
  font-size: 20px;
  line-height: 32px;
  color: #131d26;
  margin-left: 38px;
  margin-bottom: 30px;
}
.funnel-aside--list {
  list-style: none;
  counter-reset: item;
}
.funnel-aside--element {
  counter-increment: item;
  padding: 15px 0;
  border-bottom: 1px solid #d8d8d8;
  display: flex;
}
.funnel-aside--element::before {
  content: counter(item);
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #62676d;
  border-radius: 50%;
  background-color: #ecf0f5;
  margin-right: 14px;
  box-sizing: border-box;
  flex-shrink: 0;
}
.funnel-aside--element-last {
  border-bottom: none;
}
.funnel-aside--element.active::before {
  border: 2px solid #00cc00;
  background-color: #FFFFFF;
}
.funnel-aside--element.active.done::before {
  border: none;
}
.funnel-aside--element.done::before {
  content: url("/resources/img/funnel-step-done.4367be801a62.svg");
  position: relative;
  background-color: transparent;
}
.funnel-aside--element a {
  color: #3a444e;
  text-decoration: none;
  line-height: 22px;
}
.funnel-aside .guarantee {
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.funnel-aside .guarantee-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  margin-left: 20px;
  color: #3A444E;
}
.funnel-aside2 {
  max-width: 395px;
  width: 100%;
}
.funnel-aside2--list {
  border-left: 2px solid rgba(0, 102, 255, 0.25);
  margin-left: 45px;
  padding-top: 30px;
  margin-top: -5px;
}
.funnel-aside2--element {
  margin-bottom: 21px;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  line-height: 24px;
}
.funnel-aside2--element:last-child::before {
  box-shadow: 0px 5px 0 white;
}
.funnel-aside2--element::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 5px;
  background-color: #F7F9FB;
  border: 2px solid #e1e2e4;
}
.funnel-aside2--element a {
  color: #656f7a;
  text-decoration: none;
}
.funnel-aside2--element a:hover {
  color: #0066FF;
}
.funnel-aside2--element.active a {
  color: black;
}
.funnel-aside2--element.active::before {
  background-color: #FFFFFF;
  border: 2px solid #00CC00;
}
.funnel-aside2--element.done::before {
  background-color: #00CC00;
  border: 2px solid #00CC00;
}
.funnel-after-payment-main {
  margin-top: 75px;
  margin-bottom: 125px;
}
.funnel .form .form-row {
  position: relative;
  margin-bottom: 20px;
  display: block;
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
}
.funnel .form .form-row input, .funnel .form .form-row select {
  transition: padding 0.3s;
}
.funnel .form .form-row--eligibility {
  margin-bottom: 30px;
}
.funnel .form .form-row--eligibility label:nth-child(2) {
  margin-right: 45px;
}
.funnel .form .form-row-wrapper {
  display: flex;
  margin-bottom: 10px;
}
.funnel .form .form-row-wrapper input::placeholder {
  color: transparent;
}
.funnel .form .form-row-wrapper .month {
  max-width: 174px;
  margin-right: 40px;
  width: 100%;
  margin-bottom: 0;
}
.funnel .form .form-row-wrapper .date, .funnel .form .form-row-wrapper .year {
  max-width: 126px;
  width: 100%;
  margin-bottom: 0;
}
.funnel .form .form-row-wrapper .date {
  margin-right: 40px;
}
.funnel .form .form-row.filled input, .funnel .form .form-row.filled select {
  padding-top: 20px;
  padding-bottom: 8px;
  color: #3a444e;
}
.funnel .form .form-row.filled .field-label {
  top: 3px;
  font-size: 12px;
  line-height: 17px;
}
.funnel .form .form-row--credit {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}
.funnel .form .form-row--credit input {
  max-width: 286px;
  margin-right: 15px;
}
.funnel .form .form-radio-row label:nth-child(2) {
  margin-left: 10px;
}
.funnel .form .field-label {
  position: absolute;
  left: 23px;
  top: 14px;
  font-size: 16px;
  line-height: 20px;
  color: #656f7a;
  pointer-events: none;
  transition: top 0.3s, font-size 0.3s;
}
.funnel .form .field-label--expiration {
  left: 10px;
}
.funnel .form .field-password-sublabel {
  font-size: 14px;
  line-height: 20px;
  color: #656f7a;
  margin-top: 3px;
}
.funnel .form .funnel-description {
  font-size: 14px;
  line-height: 20px;
  color: #656f7a;
  margin-left: 20px;
  margin-right: 10px;
  text-align: justify;
}
.funnel .form .funnel-description-wrapper {
  display: flex;
  align-items: flex-start;
  margin-top: 17px;
}
.funnel .form .funnel-description-wrapper img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.funnel .form .funnel-description-wrapper--bg {
  background-color: #F7F9FB;
  padding: 10px;
}
.funnel .asterisk-pos {
  white-space: pre-wrap;
  padding-left: 5px;
}
.funnel.parenting-class .pp-wrapper p {
  font-size: 16px;
  line-height: 1.5;
  color: #656f7a;
  margin-bottom: 1rem;
}
.funnel.parenting-class .pp-wrapper .chart {
  width: 100%;
  height: 100%;
  text-align: center;
}
.funnel.parenting-class .pp-wrapper .chart span {
  font-size: 52px;
  line-height: 154px;
  color: #333;
}
.funnel.parenting-class .pp-wrapper .chart canvas {
  position: absolute;
  top: 0;
  left: calc(50% - 77px);
}
.funnel.parenting-class .pp-wrapper .form {
  width: 75%;
}
.funnel.parenting-class .pp-wrapper .form label {
  background: #F0F3F8;
}
.funnel.parenting-class .pp-wrapper .form p {
  color: #131d26;
  margin-bottom: 0;
}
.funnel.parenting-class .pp-wrapper .form p.price {
  color: #777777;
  font-weight: bold;
}
.funnel.parenting-class .pp-wrapper .form p.text-danger {
  margin-bottom: -1rem;
}

.text-12 {
  font-size: 12px;
}
.text-14 {
  font-size: 14px;
}
.text-16 {
  font-size: 16px;
}
.text-18 {
  font-size: 18px;
}
.text-20 {
  font-size: 20px;
}
.text-blue {
  color: #0066FF;
}
.text-break {
  overflow-wrap: break-word;
}

.cursor-pointer {
  cursor: pointer;
}

.stepper .progress-bar {
  background: none;
  position: relative;
}
.stepper .progress-bar svg {
  height: 90px;
  width: 90px;
  transform: rotate(-90deg);
}
.stepper .progress-bar__background {
  fill: none;
  stroke: #BFD9FF;
  stroke-width: 2;
}
.stepper .progress-bar__progress {
  fill: none;
  stroke: #0066FF;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  stroke-width: 2;
  transition: stroke-dashoffset 0.5s linear;
}
.stepper .progress-bar__step-of-steps {
  color: black;
  font-size: 16px;
  line-height: 16px;
  position: absolute;
  width: 80px;
  top: calc(50% - 8px);
  left: calc(50% - 40px);
}

.summary-hr {
  margin: 37px 0 20px 0;
  border: 1px solid #033ab7;
  border-bottom-width: 2px;
}
.summary .form-chapter {
  display: flex;
  justify-content: space-between;
}
.summary-step {
  display: flex;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #9ac3fd;
}
.summary-step .step-link {
  color: #0066ff;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
  margin-right: 37px;
  margin-top: 3px;
}
.summary-step .step-info--question {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #3a444e;
  margin-bottom: 3px;
}
.summary-step .step-info--answer {
  font-size: 14px;
  line-height: 20px;
  color: #656f7a;
}
.summary-main {
  max-width: 727px;
  width: 100%;
  margin-right: 50px;
}
.summary .modal .dialog-margins {
  margin-top: 30px !important;
}
.summary .modal-body-summary {
  width: 50%;
  margin: 0 auto;
}
.summary .modal-body-summary h2 {
  font-size: 20px;
  line-height: 32px;
  color: #131d26;
  margin-bottom: 20px;
}
.summary .modal-body-summary p {
  margin-bottom: 10px;
  color: #3a444e;
}
.summary .modal-body-summary .btn--modal {
  width: 115px;
  text-align: left;
  padding-left: 30px;
  margin-left: auto;
}

.payment-alert {
  color: #E90661;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
.payment-hr {
  height: 1px;
  background-color: #d8d8d8;
  margin-bottom: 65px;
}
.payment-trust-icons {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 125px;
}
.payment-trust-icons .ssltrust-ico {
  margin-right: 28px;
}
.payment .form .cardholder {
  max-width: 233px;
  min-width: 200px;
  width: 100%;
}
.payment .form .exp-month, .payment .form .exp-year {
  width: calc(50% - 13px);
  margin-bottom: 0;
}
.payment .form .exp-month select + button, .payment .form .exp-year select + button {
  padding-left: 10px;
  padding-right: 10px;
}
.payment .form .exp-month {
  margin: 0 13px;
}
.payment .form .payment-three-inline {
  display: flex;
}
.payment .form .payment-three-inline .ccexp-wrapper {
  max-width: 272px;
  min-width: 230px;
  width: 100%;
  flex-wrap: wrap;
}
.payment .form .payment-three-inline .ccexp-wrapper select {
  padding: 10px;
  -webkit-appearance: none;
  background: url("/resources/img/select-ico.173061dd6516.svg") no-repeat right 5px center;
}
.payment .form .payment-three-inline .ccexp-wrapper select::-ms-expand {
  display: none;
}
.payment .form .payment-three-inline .ccexp-wrapper .ccexp-error {
  margin-left: 13px;
}

.delete-form {
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  color: #0066FF;
  padding-top: 6px;
  padding-bottom: 20px;
  margin-left: 15px;
}
.delete-form i {
  background: url("/resources/img/delete-entry-ico.79bb3b5467c5.svg") no-repeat;
  display: inline-block;
  height: 20px;
  width: 20px;
  float: left;
  margin-right: 10px;
}
.delete-form span {
  display: inline-block;
  line-height: 20px;
}

.add-form-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  position: relative;
}
.add-form-container::after {
  content: "";
  border: 1px solid #0066FF;
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
}
.add-form-container i {
  background: url("/resources/img/add-entry-ico.212386e78168.svg") no-repeat;
  display: inline-block;
  height: 18px;
  width: 18px;
  float: left;
  margin-right: 10px;
  margin-top: 2px;
  cursor: pointer;
}
.add-form-container a {
  line-height: 20px;
  font-size: 18px;
  color: #0066FF;
}

.add-form-elements {
  display: inline-block;
  background: white;
  padding-left: 20px;
  padding-right: 20px;
  z-index: 1;
}

.questions-block .funnel-form-body {
  margin-top: 11px;
}
.questions-block .label-wrapper {
  color: #656f7a;
}
.questions-block .funnel-description-wrapper {
  margin-left: 15px;
  margin-right: 15px;
}
.questions-block .form-radio-row label:nth-child(1) {
  margin-right: 30px;
}
.questions-block .form-radio-row label input {
  margin-right: 15px;
}
.questions-block .form-radio-row label input[type=radio] {
  top: 0;
}

/* END FUNNEL */
.two-input-inline-gt-sm {
  width: 50%;
}

.thankyou-wrapper {
  margin-top: 76px;
  margin-bottom: 120px;
}
.thankyou-title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 300;
  color: #131d26;
  margin-bottom: 20px;
  text-align: left;
}
.thankyou-p {
  color: #656f7a;
}
.thankyou-left {
  margin-right: 60px;
  max-width: 586px;
  width: 100%;
}
.thankyou-left .link {
  color: #0066FF;
  text-decoration: none;
}
.thankyou-left .link:hover {
  text-decoration: underline;
}
.thankyou-right {
  max-width: 586px;
  width: 100%;
  background-color: #F0F3F8;
  padding: 20px;
  color: #131d26;
}
.thankyou-right-h3 {
  font-weight: 600;
}
.thankyou-info {
  font-size: 14px;
  line-height: 19px;
  color: #000;
  margin-bottom: 10px;
}
.thankyou-info .col1 {
  width: 85px;
  margin-right: 20px;
}

/* FAQ */
.faq-title {
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5;
  color: #131d26;
  margin-top: 95px;
  margin-bottom: 125px;
  text-align: center;
}
.faq-main {
  margin: 0 auto;
  max-width: 837px;
}
.faq-main a, .faq-main a:active {
  color: #0066FF;
}

/* END FAQ */
/* LOGIN */
.login-main {
  max-width: 620px;
  margin: 95px auto 0 auto;
}
.login-main--inner {
  max-width: 395px;
  margin: 0 auto;
}
.login-main a, .login-main a:active {
  color: #0066FF;
}
.login-title {
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  color: #131d26;
  text-align: center;
}
.login-hr {
  height: 1px;
  border: 1px solid #C9CED4;
  margin-bottom: 65px;
}
.login-hr--top {
  margin-top: 70px;
  margin-bottom: 50px;
}
.login-hr--bottom {
  margin-top: 50px;
}
.login-page-desc {
  margin-bottom: 25px;
}
.login-page-desc .title {
  color: #3a444e;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}
.login-page-desc .desc {
  color: #656f7a;
}
.login-form .form-row {
  margin-bottom: 30px;
}
.login-form label {
  display: block;
  color: #656f7a;
  margin-bottom: 20px;
}
.login-form-error {
  color: #e90661;
  margin-bottom: 15px;
}
.login-form .mb15 {
  margin-bottom: 15px;
}
.login-link {
  text-align: right;
  display: block;
  margin-top: 10px;
}
.login-forgot-pass {
  margin-bottom: 20px;
}
.login-forgot-pass .no-wrap a {
  white-space: pre;
}

/* END LOGIN */
.profile-aside--shadow {
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.15);
}
.profile-aside .active a {
  color: #00CC00;
}
.profile-aside a {
  color: #656F7A;
  font-weight: normal;
}
.profile-aside li {
  padding: 15px 15px 15px 28px;
  border-bottom: 1px solid #E7E7E7;
  position: relative;
}
.profile-aside li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12px;
  border: 5px solid transparent;
  border-left: 8px solid #656F7A;
}
.profile-aside li.active::before {
  border-left-color: #00CC00;
}
.profile-radio-wrap label:nth-child(2) {
  margin-right: 30px;
}
.profile-radio-wrap label > input {
  margin-right: 10px;
}

.modal-cc .card-exp-data {
  height: 104px;
}
.modal-cc .card-exp-data .field-label--expiration {
  display: none;
}
.modal-cc .card-exp-data .form-row {
  margin: 0;
}

/* CONTACT */
.contact-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  color: #0338b5;
}
.contact-title--top {
  margin: 70px 0 30px 0;
}
.contact-title--bottom {
  margin: 70px 0 15px 0;
}
.contact-wrapper {
  display: flex;
  justify-content: space-between;
  color: #636e78;
}
.contact-wrapper .gray-bg {
  background-color: #f0f2f7;
  padding: 40px 50px;
  margin: 27px 0 33px 0;
  max-width: 400px;
  width: 100%;
}
.contact-wrapper .columns {
  display: flex;
  margin-top: 15px;
}
.contact-wrapper .radio-btn-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.contact-wrapper .radio-btn-wrapper label:first-child {
  flex-basis: 100%;
}
.contact-wrapper .radio-btn-wrapper label {
  flex-basis: 50%;
}
.contact-wrapper .radio-btn-wrapper label input {
  margin-right: 20px;
}
.contact-wrapper .mr10 {
  margin-right: 10px;
}
.contact-wrapper .mb10 {
  margin-bottom: 10px;
}
.contact-wrapper .mb20 {
  margin-bottom: 20px;
}
.contact-wrapper .mb30 {
  margin-bottom: 30px;
}
.contact-wrapper label {
  display: block;
}
.contact-info {
  max-width: 505px;
  width: 100%;
  margin-right: 50px;
}
.contact-form {
  max-width: 505px;
  width: 100%;
}
.contact-form a:hover {
  color: #0066ff;
  text-decoration: none;
}
.contact-notes {
  font-size: 14px;
  line-height: 20px;
}
.contact-email {
  color: #0066ff;
  text-decoration: none;
}
.contact-email:hover {
  text-decoration: underline;
}

/* END CONTACT */
/* CONTACT SUPPORT */
.contact-support input[type=hidden] + label {
  width: 100%;
  height: 48px;
  appearance: none;
  background-color: #F0F3F8;
  border-radius: 2px;
  border: solid 1px #9ac3fd;
  position: relative;
  padding: 14px 28px 14px 22px;
  font-size: 16px;
  line-height: 18px;
  color: #3a444e;
  cursor: auto;
}
.contact-support input.contactform {
  margin-right: 20px;
}

/* END CONTACT SUPPORT */
/* Collapsing blocks */
.collapse-block {
  width: 100%;
  border: 1px solid transparent;
  padding: 24px 65px 24px 41px;
  cursor: pointer;
  position: relative;
  margin-bottom: 20px;
  transition: border 0.4s;
}
.collapse-block::after {
  content: url("/resources/img/select-ico.173061dd6516.svg");
  position: absolute;
  right: 20px;
  top: calc(50% - 10px);
  width: 16px;
  height: 18px;
  transform: rotate(180deg);
  transition: transform 0.4s;
}
.collapse-block.collapsed {
  border: 1px solid #9ac3fd;
  transition: border 0.4s;
}
.collapse-block.collapsed::after {
  transform: rotate(0deg);
}
.collapse-block--title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #131d26;
}
.collapse-block--text {
  display: none;
  margin-top: 20px;
  max-width: 600px;
}
.collapse-block--text .mb7 {
  margin-bottom: 7px;
}
.collapse-block--last {
  margin-bottom: 0;
}

/* END Collapsing blocks */
.protection {
  padding: 40px 0;
}
.protection h3 {
  margin-bottom: 15px;
}
.protection p {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.protection ul {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 40px;
  list-style: disc;
}
.protection a {
  color: #247bd4;
  text-decoration: none;
}
.protection a:visited {
  color: #247bd4;
}
.protection a:hover {
  text-decoration: underline;
}
.protection .text-in-black-border {
  border: 1px solid #000;
  font-weight: bold;
  padding: 15px 10px;
}

/* REORDER BS-SELECT STYLES */
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.bootstrap-select button.btn {
  width: 100%;
  height: 48px;
  appearance: none;
  background-color: #fff;
  border-radius: 2px;
  border: solid 1px #9AC3FD;
  position: relative;
  padding: 14px 28px 14px 22px;
  font-size: 16px;
  line-height: 18px;
  color: #656F7A;
  background-size: auto;
  transition: border-color 0.3s ease;
}
.bootstrap-select button.btn::before {
  content: url("/resources/img/select-ico.173061dd6516.svg");
  width: 16px;
  position: absolute;
  right: 0.5rem;
  top: 14px;
  z-index: 1;
  transition: transform 0.4s ease;
}
.bootstrap-select button.btn::after {
  content: none;
}
.bootstrap-select button.btn:focus {
  outline: none;
  box-shadow: none;
}
.bootstrap-select button.btn.btn-light:active {
  border-color: #9AC3FD;
}
.bootstrap-select.show button.btn {
  border-color: #0066FF;
}
.bootstrap-select.show button.btn::before {
  transform: rotate(180deg);
}
.bootstrap-select .dropdown-menu {
  color: #3A444E;
  border-color: #0066FF;
  border-radius: 0;
  padding: 0;
  transition: opacity 0.3s ease, z-index 0s ease 0.3s;
  opacity: 0;
  transform: none !important;
  top: 51px !important;
  display: block !important;
  z-index: -1;
  min-width: auto !important;
  width: 100%;
}
.bootstrap-select .dropdown-menu:not([class*=inner]) .inner::-webkit-scrollbar {
  width: 5px;
}
.bootstrap-select .dropdown-menu:not([class*=inner]) .inner::-webkit-scrollbar-track {
  background: 0 0;
}
.bootstrap-select .dropdown-menu:not([class*=inner]) .inner::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.bootstrap-select .dropdown-menu.show {
  opacity: 1;
  z-index: 3;
  transition: opacity 0.3s ease, z-index 0s ease 0s;
  width: 100%;
  min-width: auto !important;
  max-height: 400px;
}
.bootstrap-select .dropdown-menu li a {
  color: #3A444E;
}
.bootstrap-select .dropdown-menu li a.active, .bootstrap-select .dropdown-menu li a:hover, .bootstrap-select .dropdown-menu li a:active {
  color: #FFF;
  background-color: #0066FF;
}
.bootstrap-select .dropdown-menu li a:focus {
  outline: none;
}
.bootstrap-select .dropdown-menu li a span.text {
  white-space: pre-wrap;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
}
.bootstrap-select .dropdown-toggle .filter-option {
  background-color: #FFF;
  color: #3A444E;
  line-height: 1.2;
}
.bootstrap-select .dropdown-toggle .filter-option:focus {
  outline: none;
}

.has-error .bootstrap-select .dropdown-toggle,
.has-error .bootstrap-select.show button.btn {
  border-color: #e90661;
  box-shadow: inherit;
}
.has-error .bootstrap-select .dropdown-toggle:active,
.has-error .bootstrap-select.show button.btn:active {
  outline: #e90661 auto 5px !important;
  outline-offset: -1px;
}

.has-error > table .bootstrap-select select:not(.error-highlight) + button.btn,
.has-error > table input:not(.error-highlight):not([type=radio]):not([type=submit]), .has-error > select {
  border: solid 1px #9AC3FD;
  color: #3a444e;
}

/* END REORDER BS-SELECT STYLES */
/* INVITATION PAGE */
.access-to--table td, .access-to--table th {
  text-align: center;
  vertical-align: middle;
}
.access-to--table thead th {
  vertical-align: middle;
}

/* END INVITATION PAGE */
.promotion-border {
  border: 1px solid #a6caf1;
}

/* PHONE WIDGET */
.phone-wrapper {
  display: flex;
  align-items: center;
  line-height: 1;
}
.phone-wrapper .US-phone-input {
  max-width: 100%;
  height: 46px !important;
}
.phone-wrapper .US-phone-input.US-phone-input-line {
  max-width: 150px;
  margin-right: 10px;
}
.phone-wrapper .international-phone-input {
  max-width: 400px;
  height: 46px !important;
  margin-right: 10px;
}
.phone-wrapper .phone-mask {
  font-size: 24px;
  line-height: 24px;
  color: #333333;
  padding: 0 10px;
}
.phone-wrapper .phone-toggle {
  margin-left: auto;
}

#termsOfServiceModal .choose-lang span {
  color: #007bff;
}
#termsOfServiceModal .choose-lang span.active {
  color: #131D26;
}
#termsOfServiceModal .choose-lang span.active:hover {
  cursor: default;
}
#termsOfServiceModal .choose-lang span:hover {
  cursor: pointer;
}
#termsOfServiceModal ul {
  list-style: disc;
}

.case-progress .case-progress-header {
  padding: 10px 20px 10px 40px;
}

.case-progress h1 {
  font-size: 28px;
}

.case-progress .service-status-block {
  font-size: 16px;
  background: #E1F5FE;
  padding: 8px 25px;
  border-radius: 3px;
  font-weight: bold;
  margin-bottom: 0;
}

.case-progress .welcome-bg .heading-holder-title {
  margin-top: 42px;
}

.case-progress a.case-link {
  font-size: 16px;
  color: #0066FF;
  text-decoration: underline;
  cursor: pointer;
}
.case-progress a.case-link:hover {
  color: #0066FF;
}

.case-progress a.review-my-answers {
  text-decoration: none;
  margin-left: 20px;
  font-size: 16px;
  font-weight: bold;
}

.case-progress .blockquote {
  font-size: 16px;
  padding-left: 28px;
}

.case-progress .progress-list {
  padding-top: 30px;
  padding-right: 0;
}

.list-group-item.progress-list-step {
  padding: 0;
  border: 0;
  border-radius: 4px;
  margin-bottom: 25px;
  z-index: 100;
}

.list-group-item-heading {
  background-color: #0066ff;
  color: #FFFFFF;
  font-size: 16px;
  border-radius: 5px;
  margin: 0;
  padding: 12px 0 12px 13px;
  cursor: pointer;
}

.list-group-item-heading .list-collapse-icon {
  height: 18px;
  width: 18px;
  background: url("/resources/img/case/step-arrow-top.c71641ba5f83.png") no-repeat 0 0;
  margin-bottom: -9px;
  margin-left: 10px;
  display: inline-block;
}

.list-group-item-heading.collapsed .list-collapse-icon {
  background: url("/resources/img/case/step-arrow-down.c19f9969ece3.png") no-repeat 0 0;
}

.progress-list .list-group-item-heading.active.collapsed {
  background-color: #01579B;
}

.list-group-item-heading.collapsed {
  background-color: #0066ff;
  border-radius: 5px;
}

.progress-list-step-disable .list-group-item-heading {
  background-color: #0066ff;
}

.progress-list .progress-data {
  padding: 30px 20px 10px 50px;
  font-size: 16px;
  color: #131d26;
}

.progress-list .progress-data .progress-disable {
  color: #656f7a;
}

.you-are-here-icon:before {
  content: "";
  height: 21px;
  width: 21px;
  float: left;
  background: url("/resources/img/case/you_are_here.4f59c974740d.png") no-repeat 0 0;
}

.you-are-here-icon {
  padding-left: 10px;
  font-size: 16px;
}

.progress-step-done .you-are-here-icon,
.progress-list-step-disable .you-are-here-icon {
  display: none;
}

.progress-list-step .btn.btn--filled {
  padding-left: 3rem;
  padding-right: 3rem;
}

.progress-list-step .btn.btn--filled .diagonal-cross-line {
  color: #fff;
  margin-top: 5px;
  position: relative;
}

.progress-list-step .btn.btn--filled .diagonal-cross-line::after {
  content: "";
  position: absolute;
  border-top: 2px solid orange;
  width: 150%;
  left: -25%;
  top: 45%;
  transform: rotate(-45deg);
}

.progress-list-step .progress-line {
  border-left: 4px solid rgba(0, 102, 255, 0.25);
  height: 100%;
  left: 11px;
  position: relative;
  top: 9px;
  z-index: 1;
}

.progress-list .progress-data .progress-list-sub.progress-disable .progress-line,
.progress-list .progress-data .progress-list-sub.progress-active .progress-line {
  border-left: 3px solid #e1e2e4;
}

.progress-list .progress-data .progress-list-sub:last-child .progress-line {
  display: none;
}

.progress-list-step .progress-icon {
  content: "";
  height: 26px;
  width: 26px;
  float: left;
  background: url("/resources/img/funnel-step-done.4367be801a62.svg") no-repeat 0 0;
  margin-right: 9px;
  margin-top: 3px;
  z-index: 5;
  position: relative;
}

.progress-list-step .progress-active .progress-icon {
  background: #FFFFFF;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 4px solid #00CC00;
}

.progress-list-step .progress-disable .progress-icon {
  height: 26px;
  width: 26px;
  background: #F7F9FB;
  border: 4px solid #e1e2e4;
  border-radius: 50%;
}

.progress-list-sub .progress-list-help {
  margin: 4px 30px 20px 0;
}

.progress-list-sub .progress-list-left {
  width: 30px;
}

.progress-list-sub .progress-list-content {
  margin-bottom: 20px;
  padding-left: 5px;
  width: 90%;
  padding-top: 2px;
}

.progress-list-step .progress-list-sub.progress-disable .progress-list-help,
.progress-list-step .progress-list-sub.progress-disable .progress-list-btn,
.progress-list-step .progress-list-sub.progress-done .progress-list-help,
.progress-list-step .progress-list-sub.progress-done .progress-list-btn {
  display: none;
}

.progress-list-step .progress-list-sub.progress-done .progress-list-help.dont-hide-block {
  display: block;
  margin-bottom: 0;
}

.progress-list .progress-data .progress-active {
  color: #131d26;
}

.progress-list .progress-data .progress-done {
  color: #656f7a;
  font-weight: normal;
  height: 15%;
}

.progress-list .progress-data .progress-disable .progress-list-checkbox,
.progress-list .progress-data .progress-done .progress-list-checkbox {
  font-weight: normal;
}

.progress-list .progress-data .progress-done .progress-text-active {
  display: none;
}

.progress-list .progress-data .progress-text-done {
  display: none;
}

.progress-list .progress-data .progress-done .progress-text-done {
  display: block;
}

.progress-active .checkbox-forms-filed .progress-icon {
  cursor: pointer;
}

.progress-active .checkbox-forms-filed .progress-icon:hover {
  background: url("/resources/img/case/checkbox_disable.1d7587152ffc.png") no-repeat 0 0;
}

.progress-done-icon {
  display: none;
  height: 22px;
  width: 22px;
  background: url("/resources/img/case/step-done.a8eb13ce14f1.png") no-repeat 0 0;
  margin-bottom: -3px;
  margin-right: 7px;
  position: relative;
  top: 3px;
}

.progress-step-done .progress-number-icon {
  display: none;
}

.progress-step-done .progress-done-icon {
  display: inline-block;
}

.progress-list-checkbox {
  font-weight: bolder;
}

.progress-list-help ul {
  padding-left: 19px;
  font-weight: normal;
  color: #01579B;
  list-style-type: none;
  margin: 16px 0 25px;
}

.progress-list-help ul li:before {
  background: url("/resources/img/case/case_progress_star.57d786d7d19f.png") no-repeat 0 0;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  margin-left: -28px;
  margin-top: 1px;
}

.progress-list-help ul li a.case-link {
  font-size: 16px;
}

.progress-list .list-group-file {
  border: 1px solid #01579B;
  background: #fff;
  padding: 7px 32px 7px 40px;
  border-radius: 4px;
  font-size: 16px;
  color: #000000;
}

.relevantInformationModal {
  font-size: 16px;
}

.relevantInformationModal h3 {
  font-size: 24px;
  text-align: center;
  margin: 20px 0 30px;
}

.relevantInformationModal .info-step {
  color: #0066ff;
  font-size: 20px;
  border-radius: 22px;
  border: 2px solid #0066ff;
  padding: 8px 15px;
}

.relevantInformationModal .info-row {
  margin-bottom: 20px;
}

.relevantInformationModal .info-row .info-step-container {
  padding-top: 10px;
}

.relevantInformationModal .info-row b {
  font-size: 16px;
}

.relevantInformationModal .btn.btn--filled {
  font-size: 21px;
  padding: 10px 30px;
  margin-top: 20px;
}

.case-progress-beta {
  background: #D2E6F4;
  font-size: 16px;
  color: #000000;
  padding: 15px 30px;
}

.case-progress-beta > .container {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.case-progress-beta .case-progress-title {
  color: #00345B;
  font-size: 16px;
  margin-bottom: 5px;
}

.heading-holder .case-progress-desc {
  margin-top: 5px;
  font-size: 16px;
}

.confirm-shipping-address .gray-block {
  padding-top: 15px;
  padding-bottom: 15px;
  margin-bottom: 16px;
  background: none;
}

.confirm-shipping-address .form-control-label {
  color: #656f7a;
  margin-bottom: 1rem;
}

.confirm-shipping-address .zip-wrap {
  margin-top: 2rem;
}

.confirm-shipping-address .has-danger .help-block strong,
.confirm-shipping-address .has-danger label {
  color: #e90661;
}

.confirm-shipping-address .has-danger input, .confirm-shipping-address .has-danger select {
  border-color: #e90661 !important;
}

.confirm-shipping-address #submit-id-shipping_form {
  width: auto;
  padding: 14px 1.5rem;
  margin-top: 1rem;
}

input:not([type=radio]):not([type=submit]):not([type=checkbox]).btn--filled {
  color: #FFFFFF;
  background-color: #0066ff;
  transition: background-color 0.1s ease, border-color 0.1s ease;
  display: block;
  height: 48px;
  border-radius: 100px;
  border: 2px solid #0066ff;
  font-size: 16px;
  line-height: 1;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.last_will_testament-body .diagonal-cross-line {
  position: relative;
}
.last_will_testament-body .diagonal-cross-line::after {
  content: "/";
  position: absolute;
  color: #007bff;
  transform: rotate(30deg);
  font-size: 40px;
  font-weight: 300;
  left: 10px;
  top: -19px;
}
.last_will_testament-body .stock-price {
  color: #007bff;
}

.last_will_testament-inner-body {
  border: 1px solid #a6caf1;
  padding: 40px 0;
}

/* CALCULATOR */
.calculator-wrap {
  background: #E1F5FE;
}

.calculator-wrap .table td, .table th {
  border-right: 1px solid #dee2e6;
}

.calculator-wrap .bg-dark-blue {
  background: #BBDEFB;
}

.calculator-wrap .bg-light-blue {
  background: #E1F5FE;
}

.calculator-wrap tr td:first-child {
  position: relative;
  padding-left: 20px;
}

.calculator-wrap tr td:not(:first-child) {
  text-align: center;
}

.calculator-wrap .inline-3 td:nth-child(2) {
  border-left: 1px solid #dee2e6;
  border-right: 1px solid #dee2e6;
}

.calculator-wrap .inline-2 td:nth-child(2) {
  border-left: 1px solid #dee2e6;
}

.calculator-wrap label {
  font-weight: normal !important;
  color: #333 !important;
  cursor: pointer;
  display: flex;
}

.calculator-wrap .price {
  text-align: center;
  color: #01579B;
}

.calculator-wrap .price-link {
  text-align: center;
  color: #01579B;
  text-decoration: underline;
}

.calculator-wrap .input-group-text {
  height: 48px;
  background: white;
  color: #777;
  font-size: 16px;
}

.calculator-wrap input[type=radio] {
  margin-right: 16px !important;
}
.calculator-wrap .select-field-margin label {
  margin-bottom: 8px;
}

.calculator-title {
  padding: 25px 20px 0 20px;
}

.calculator-title h2 {
  font-size: 24px;
}

.calculator-title p {
  font-size: 16px;
  line-height: 1.3;
}

.funnel-form-body-btns .btn1 a.download-worksheet-link {
  font-size: 16px;
  line-height: 36px;
  color: #01579B;
  text-decoration: none;
}

.calc-tooltip {
  position: absolute;
  top: 5px;
  right: 5px;
}

.order-details [data-toggle=collapse] {
  position: relative;
  padding-right: 12px;
  color: #0066FF;
}
.order-details [data-toggle=collapse]::after {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  right: 0;
  top: calc(50% - 2px);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #0066FF;
  transition: all 0.1s linear;
  transform: rotate(-180deg);
}
.order-details [data-toggle=collapse].collapsed::after {
  transform: rotate(0);
}

.border-top-dashed {
  border-top-style: dashed !important;
}

/* COLORS */
.premium-page {
  color: #000;
}
.premium-page h2, .premium-page .h2 {
  font-size: 48px;
  line-height: 60px;
}
.premium-page .h4, .premium-page .common-title {
  font-size: 36px;
  line-height: 49px;
}
.premium-page .fz-26 {
  font-size: 26px;
  line-height: 36px;
}
.premium-page .note {
  font-size: 28px;
  line-height: 38px;
}
.premium-page .btn--filled {
  background-color: #FF8E00 !important;
  border-color: #FF8E00 !important;
  color: #fff !important;
  font-size: 18px;
  height: auto;
}
.premium-page .btn--filled_blue {
  border-color: #0066ff !important;
  background-color: #0066ff !important;
}
.premium-page .btn--filled-secondary {
  background-color: gray !important;
  border-color: gray !important;
}
.premium-page .main * {
  font-weight: 300;
}
.premium-page .custom-ul li {
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  font-weight: 300;
}
.premium-page .custom-ul li::before {
  content: url("/resources/img/premium-exp/list-item.6f92ef76aa9f.svg");
  position: absolute;
  left: 0;
  top: 3px;
}
.premium-page .block-1 {
  padding: 70px 0 40px 0;
  margin: 70px 0 40px 0;
}
.premium-page .block-2 {
  padding: 160px 0 80px 0;
  margin: 80px 0 80px 0;
}
.premium-page .block-4 {
  padding: 100px 0 80px 0;
  margin: 40px 0 40px 0;
}
.premium-page .block-5 {
  padding: 0;
  margin: 100px 0 70px 0;
}
.premium-page .bg-1 {
  background: transparent url("/resources/img/premium-exp/premium-bg1.91142a9cd50d.png") right center/contain no-repeat;
}
.premium-page .bg-2 {
  background: transparent url("/resources/img/premium-exp/premium-bg2.a352fe49bcb4.png") left center/contain no-repeat;
}
.premium-page .bg-3 {
  background: transparent url("/resources/img/premium-exp/premium-bg3.6dab62b18535.png") right center/contain no-repeat;
}
.premium-page .bg-4 {
  background: transparent url("/resources/img/premium-exp/premium-bg4.8c41cb688f46.png") left center/contain no-repeat;
}
.premium-page .bg-5 {
  background: transparent url("/resources/img/premium-exp/premium-bg5.8d9771194701.png") left center/contain no-repeat;
}
.premium-page .platinum-modal-content p {
  font-weight: 300;
}
.premium-page .testimonials {
  padding-bottom: 0;
}
.premium-page .order-details {
  border: 1px solid #808080;
  border-radius: 15px;
}
.premium-page .order-details-title {
  font-size: 24px;
}
.premium-page .order-details-total {
  border-top: 1px dashed #808080;
}
.premium-page .order-details .btn {
  min-height: 56px;
}
.premium-page .unfortunately {
  background-color: #e90661;
}
.premium-page .overflow-hidden {
  overflow: hidden;
}
.premium-page .close.position-absolute {
  top: 0;
  right: 0;
  z-index: 1;
}

.testimonials {
  padding: 50px 24px;
}
.testimonials .title {
  font-size: 18px;
  font-weight: 700;
  color: #3a444e;
}
.testimonials .text {
  color: #656f7a;
}
.testimonials .name {
  font-weight: 700;
  color: #3a444e;
}
.testimonials .slick-list, .testimonials .slick-track {
  display: flex;
}
.testimonials .slick-button-prev, .testimonials .slick-button-next {
  background-image: url("/resources/img/redesign/review-prev.9c96fa1eaacf.svg");
  background-size: auto;
  z-index: 1000;
  width: 17px;
  height: 28px;
  position: absolute;
  top: calc(50% - 10px);
}
.testimonials .slick-button-prev {
  transform: scale(1);
}
.testimonials .slick-button-next {
  transform: rotate(180deg);
  right: 0;
}
.testimonials .slick-wrapper {
  width: 94%;
  margin: 0 3%;
}
.testimonials .slick-slide {
  margin: 0 40px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
.testimonials .slick-slide:focus {
  outline: none;
}

@media (max-width: 1199.98px) {
  .premium-page .block-1, .premium-page .block-2, .premium-page .block-3, .premium-page .block-4, .premium-page .block-5 {
    margin: 0;
  }
  .premium-page .bg-1, .premium-page .bg-2, .premium-page .bg-3, .premium-page .bg-5 {
    background-size: 500px;
  }
  .premium-page .bg-4 {
    background-size: 50%;
  }
}
@media (max-width: 991.98px) {
  .premium-page .block-1, .premium-page .block-2, .premium-page .block-3, .premium-page .block-4, .premium-page .block-5 {
    padding-top: 0;
    padding-bottom: 0;
    margin: 70px 0;
  }
  .premium-page .bg-1, .premium-page .bg-3 {
    background-size: 340px;
  }
  .premium-page .bg-2, .premium-page .bg-4 {
    background-size: 320px;
  }
  .premium-page .bg-5 {
    background-size: 330px;
  }
}
@media (max-width: 767.98px) {
  .premium-page h2, .premium-page .h2 {
    font-size: 36px;
    line-height: 49px;
  }
  .premium-page .h4 {
    font-size: 24px;
    line-height: 39px;
  }
  .premium-page .note {
    font-size: 24px;
    line-height: 34px;
  }
  .premium-page .bg-1, .premium-page .bg-2, .premium-page .bg-3, .premium-page .bg-4, .premium-page .bg-5 {
    background: white;
  }
  .premium-page .block-img {
    margin: 70px auto;
  }
  .premium-page .btn {
    white-space: unset;
    line-height: 1.2;
    width: 100%;
    font-size: 16px;
  }
}
/* COLORS */
.white-text {
  color: #fff !important;
}

.blue-text {
  color: #0066FF !important;
}

.l-blue-text {
  color: #1770d5 !important;
}

.dark-gray-text {
  color: #3a444e;
}

.dark-blue-block {
  background: #080581;
}

.gray-text {
  color: #656F7A;
}

.fz14 {
  font-size: 14px;
}

.border--radius-5 {
  border-radius: 5px;
}
.border--blue {
  border-color: #0066FF !important;
}
.border--blue td, .border--blue th {
  border-color: #0066FF !important;
}

.font-weight-600 {
  font-weight: 600;
}

.gray-block {
  background: #F0F3F8;
}

input[type=checkbox] {
  visibility: hidden;
  position: relative;
  top: -2px;
  margin-right: 5px;
  margin-top: 7px;
  -moz-appearance: none;
}
input[type=checkbox]::before {
  content: "";
  position: absolute;
  border: 1px solid #0066ff;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  background-color: #FFFFFF;
  visibility: visible;
  top: -3px;
  left: 0;
}
input[type=checkbox]::after {
  content: "";
  position: absolute;
  border-radius: 4px;
  background: #0066ff url("/resources/img/checkbox-check.e5c2ac71e14e.svg") no-repeat center;
  visibility: visible;
  left: 0;
  top: -3px;
  width: 20px;
  height: 20px;
  transform: scale(0);
  transition: transform 0.2s linear;
}
input[type=checkbox]:checked::after {
  transform: scale(1);
}
input[type=checkbox]:hover {
  cursor: pointer;
}

@supports (-ms-ime-align: auto) {
  input[type=radio] {
    visibility: visible;
  }
}
input[type=radio] {
  width: 16px;
}

table.border--radius {
  border-radius: 5px;
  border-collapse: inherit;
  overflow: auto;
}
table.border--radius th, table.border--radius td {
  border-top: none !important;
}
table.border--radius .thead-light tr {
  white-space: nowrap;
}

.form-check {
  margin: 16px 0;
}

.modal .modal-title {
  font-size: 1.75rem;
  font-weight: lighter;
}

/* welcome */
.welcome .gray-content {
  padding: 20px;
  margin: 20px 0;
  border-radius: 5px;
}
.welcome .gray-content h3 {
  font-size: 24px;
  font-weight: normal;
  padding-bottom: 10px;
}

/* forms */
.forms .btn {
  display: inline-block;
}
.forms .info-text {
  margin-top: 10px;
  margin-bottom: 10px;
}
.forms .generated-download, .forms .generated-email {
  display: block;
  width: 25px;
  height: 25px;
}
.forms .forms-download, .forms .forms-print, .forms .forms-email, .forms .viewed-td .icon, .forms .forms-download-orange, .forms .forms-print-orange, .forms .forms-email-orange {
  position: relative;
  display: block;
}
.forms .forms-download:before, .forms .forms-print:before, .forms .forms-email:before, .forms .viewed-td .icon:before, .forms .forms-download-orange:before, .forms .forms-print-orange:before, .forms .forms-email-orange:before {
  content: "";
  position: absolute;
  width: 25px;
  height: 16px;
  top: 5px;
  left: 5px;
}
.forms .viewed-td .icon {
  display: none;
}
.forms .viewed-td .icon.forms-viewed {
  display: block;
}
.forms .forms-download.icon:before, .forms .forms-download-orange:before {
  background: url("/resources/img/forms/icons/download.dc0da0a06837.svg") no-repeat;
}
.forms .forms-print.icon:before, .forms .forms-print-orange:before {
  background: url("/resources/img/forms/icons/print.19f31ab376ad.svg") no-repeat;
}
.forms .forms-email.icon:before, .forms .forms-email-orange:before {
  background: url("/resources/img/forms/icons/send-mail.dfa1e8d2ec35.svg") no-repeat;
}
.forms .viewed-td .icon:before {
  background: url("/resources/img/forms/icons/check.ae2a52d17a25.svg") no-repeat;
}
.forms #forms-table-summary .icon:hover {
  cursor: pointer;
}
.forms table {
  border-spacing: 0 4px;
}
.forms table tr {
  background-color: #F0F3F8;
}
.forms .form-banner-wrap {
  border: 1px solid #9AC3FD;
  padding: 50px 35px;
}
.forms .form-banner-wrap .btn--premium-banner {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  height: 56px;
  width: 368px;
}

#shipping-options form .form-group {
  flex-basis: 50%;
}

@media (max-width: 768px) {
  #shipping-options form .form-group {
    flex-basis: 100%;
    width: 100%;
  }

  .forms #forms-table-wrapper {
    margin-left: -24px;
    margin-right: -24px;
  }
  .forms #forms-table-wrapper table th:nth-child(2), .forms #forms-table-wrapper table td:nth-child(2) {
    display: none;
  }
}
input::-ms-clear {
  display: none;
}

.user-notification .alert {
  display: flex;
  justify-content: space-between;
  margin: 20px 10px;
  border-width: 1px;
  border-style: solid;
}
.user-notification .alert-logo-container {
  margin: 10px 17px 0 0;
}
.user-notification .alert-content-container {
  width: 100%;
}
.user-notification .alert__info {
  color: #0066FF;
  border-color: #0066FF;
}
.user-notification .alert__success {
  color: #35B326;
  border-color: #35B326;
}
.user-notification .alert__warning {
  color: #FF7E19;
  border-color: #FF7E19;
}
.user-notification .alert__danger {
  color: #F00F0F;
  border-color: #F00F0F;
}
.user-notification .alert-close {
  font-size: 26px;
  top: -10px;
  background: none;
  border: none;
  line-height: 0.9;
  outline: none;
}
.user-notification .alert-close__info {
  color: #0066FF;
}
.user-notification .alert-close__success {
  color: #35B326;
}
.user-notification .alert-close__warning {
  color: #FF7E19;
}
.user-notification .alert-close__danger {
  color: #F00F0F;
}

.nocc .field-label {
  display: none;
}
.nocc .exp-month, .nocc .exp-year {
  width: calc(50% - 15px);
}
.nocc .exp-month .dropup, .nocc .exp-year .dropup {
  height: 100%;
}
.nocc .exp-month {
  margin-left: 0;
  margin-right: 15px;
}
.nocc .exp-year {
  margin-left: 15px;
  margin-right: 0;
}

.bootstrap-select > select.mobile-device {
  padding: 13px 28px 13px 22px !important;
}

.funnel-hint-wrapper {
  display: flex;
  align-items: flex-start;
  background: #F7F9FB;
  padding: 10px 15px 10px;
}
.funnel-hint-wrapper img {
  flex-shrink: 0;
  max-width: 18px;
  margin-top: 2px;
}

.funnel-hint {
  margin-left: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #656f7a;
  text-align: justify;
}

/* USPS icons */
.ttn {
  margin-left: 10px;
  color: #1d579b;
  cursor: pointer;
}

#onetrust-banner-sdk .ot-sdk-row {
  align-items: center;
}

#onetrust-banner-sdk #onetrust-button-group {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: auto !important;
}
#onetrust-banner-sdk #onetrust-button-group button {
  margin: 0 !important;
}

#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group {
  margin-top: 0 !important;
}

#onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler {
  font-size: 14px !important;
}

#onetrust-banner-sdk.ot-buttons-fw:not(.ot-iab-2) #onetrust-button-group button {
  width: auto !important;
}

#onetrust-reject-all-handler {
  margin-bottom: 0 !important;
}

@media (max-width: 400px) {
  #onetrust-banner-sdk #onetrust-accept-btn-handler, #onetrust-banner-sdk #onetrust-reject-all-handler, #onetrust-banner-sdk #onetrust-pc-btn-handler {
    font-size: 12px !important;
  }

  #onetrust-banner-sdk #onetrust-pc-btn-handler {
    min-width: 80px !important;
  }
}
/* COLORS */
.modal.modal-fullwidth {
  padding-right: 0 !important;
}
.modal.modal-fullwidth button.close {
  appearance: none;
  border-radius: 50%;
  border: 2px solid #0066FF;
  padding: 0;
  height: 48px;
  width: 48px;
  font-size: 32px;
  line-height: 48px;
  font-weight: 400;
  color: #0066FF;
  background-color: #FFFFFF;
  outline: none;
  position: relative;
  flex-shrink: 0;
  font-family: "Open Sans", sans-serif;
  float: none;
  text-shadow: none;
  opacity: 1;
  z-index: 99;
}
.modal.modal-fullwidth button.close:active {
  outline: none;
}
.modal.modal-fullwidth button.close span {
  position: absolute;
  height: 46px;
  left: 13px;
  top: 0;
  display: block;
  line-height: 46px;
}
.modal.modal-fullwidth .modal-header, .modal.modal-fullwidth .modal-footer {
  border: none !important;
}
.modal.modal-fullwidth .modal-dialog {
  margin-top: 96px !important;
}
.modal.modal-fullwidth .close:not(:disabled):not(.disabled):focus, .modal.modal-fullwidth .close:not(:disabled):not(.disabled):hover {
  cursor: pointer;
  color: #0066FF;
  opacity: 1;
}
.modal.modal-fullwidth .modal-content {
  border: 0;
  border-radius: 0;
}
.modal.modal-fullwidth .modal-dialog {
  max-width: 100%;
  margin: 0;
}

.modal .choices {
  font-size: 14px;
  line-height: normal;
}

#review-form label {
  font-size: 14px;
}

/* COLORS */
@media (max-width: 1600px) {
  .home-banner-content .home-h1-wrap {
    max-width: 616px;
  }
  .home-banner-content .home-h1-wrap .h1-desktop-br {
    display: block;
  }

  .home-banner-wrap {
    height: 595px;
  }

  .gradient {
    padding-top: 150px;
  }
}
@media (max-width: 1366px) {
  .home-banner-wrap {
    height: 515px;
  }

  .gradient {
    padding-top: 240px;
  }

  .eligibility-top {
    height: 405px;
  }
  .eligibility-top .col-right .banner {
    width: 700px;
  }
}
@media (max-width: 1199.98px) {
  .eligibility-top {
    height: 295px;
  }
  .eligibility-top .col-left {
    max-width: 460px;
  }
  .eligibility-top .col-left .h1 {
    font-size: 54px;
    line-height: 62px;
  }
  .eligibility-top .col-right .banner {
    width: 510px;
  }

  .commitment-border {
    padding: 0px 40px 0px 30px;
    width: 100%;
    max-width: 525px;
    height: 156px;
  }

  .hero-section, .event-section {
    height: auto !important;
  }
}
@media (max-width: 1175px) {
  .home-banner-wrap {
    background-position-x: calc(100% + 8vw);
  }
}
@media (max-width: 1100px) {
  .home-banner-wrap {
    background-position-x: calc(100% + 16vw);
  }
}
@media (max-width: 991.98px) {
  .btn--quiz {
    margin: 40px 0 40px auto;
  }
  .btn--quiz-start {
    display: block;
    margin: 30px 0 50px 0;
  }

  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    height: 56px;
    max-width: 100%;
  }

  .header {
    /*before payment*/
    /*end before payment*/
  }
  .header-wrap {
    margin-top: 0;
  }
  .header-wrap .header-need-help {
    height: 32px;
  }
  .header-need-help {
    padding: 5px 10px 5px 10px;
    margin-right: -10px;
    height: 28px;
    cursor: pointer;
  }
  .header-need-help > img {
    pointer-events: none;
  }
  .header-wrapper {
    padding-top: 14px;
    padding-bottom: 14px;
    z-index: 999;
    cursor: pointer;
  }
  .header-top {
    margin-bottom: 0;
  }
  .header-nav {
    display: flex;
    position: fixed;
    left: -100vw;
    width: 90vw;
    height: 100%;
    margin-right: 10vw;
    padding: 30px;
    background-color: #FFFFFF;
    overflow-y: scroll;
    transition: left 0.5s ease;
  }
  .header-nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    transition: background-color 0.3s ease, z-index 0.1s ease 0.5s;
    width: 100%;
    z-index: -1;
  }
  .header-nav-wrapper.show {
    background-color: rgba(153, 149, 149, 0.77);
    z-index: 999;
    transition: z-index 0s ease 0s;
  }
  .header-nav.show {
    left: 0;
  }
  .header-link {
    margin: 5px 0;
    padding: 10px 0;
  }
  .header-logo {
    width: 114px;
  }
  .header-profile-wrapper {
    position: fixed;
    top: 56px;
    left: -100vw;
    right: 0;
    bottom: 0;
    background-color: #FFFFFF;
    width: 100%;
    z-index: 999;
    transition: left 0.5s ease;
    transition-delay: 0s;
  }
  .header-profile-wrapper.show {
    left: 0;
  }
  .header-profile-link {
    padding: 14px 20px;
    border-bottom: 1px solid #E7E7E7;
    color: #131D26;
    display: flex;
    justify-content: space-between;
  }
  .header-profile-link::after {
    content: url("/resources/img/arrow-right-blue.c215442e3de2.svg");
    color: #0066FF;
  }
  .header-profile-link--shadow {
    box-shadow: inset 0px 2px 1px rgba(0, 0, 0, 0.15);
  }

  .eligibility-top {
    height: auto;
    flex-direction: column;
  }
  .eligibility-top .col-left {
    text-align: center;
    max-width: 360px;
  }
  .eligibility-top .col-left .h1 {
    font-size: 42px;
    line-height: 50px;
  }
  .eligibility-top .col-left .h1--guarantee {
    margin-bottom: 0;
  }
  .eligibility-top .col-right .banner {
    display: none;
  }
  .eligibility-top .col-right .banner-mobile {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
    height: auto;
  }
  .eligibility-form-block .subtitle {
    order: 1;
    text-align: center;
    letter-spacing: 0;
    margin: 30px 0 40px 0;
    padding: 0;
    border: none;
  }
  .eligibility-form-block .subtitle .h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .eligibility .form {
    order: 2;
    max-width: 100%;
    flex-basis: 100%;
    margin-right: 0;
    border-bottom: 1px solid #d6d6d6;
  }
  .eligibility .form-aside {
    order: 0;
    max-width: 100%;
    flex-basis: 100%;
    flex-direction: row;
    padding: 50px 0 40px 0;
    background-color: #f0f2f7;
    box-shadow: 30px 0px 0 #f0f2f7, -30px 0 0 #f0f2f7;
  }
  .eligibility .form-aside .step {
    width: 5%;
    padding: 0px;
    border-left: none;
    border-top: 2px solid rgba(0, 102, 255, 0.25);
  }
  .eligibility .form-aside .step.not-done::before {
    left: 50%;
    top: -11px;
  }
  .eligibility .form-aside .step.active::before {
    left: 0;
    top: -11px;
  }
  .eligibility .form-aside .step1 p, .eligibility .form-aside .step3 p {
    display: none;
  }
  .eligibility .form-aside .step2 {
    width: 90%;
    padding-top: 45px;
  }
  .eligibility .form-aside .step2 p {
    max-width: 200px;
    margin: 0 auto;
  }
  .eligibility .form-aside .step2 p.d-step-lg-hide {
    display: block;
    color: #121c24;
  }
  .eligibility .form-aside .step2 p.d-step-show {
    display: none;
  }
  .eligibility .certified-wrapper {
    margin-top: 40px;
    padding-top: 0;
    border-top: none;
  }
  .eligibility .certified-title {
    margin-bottom: 20px;
  }
  .eligibility .certified-subtitle {
    margin-bottom: 10px;
  }
  .eligibility .certified-text {
    margin-bottom: 20px;
  }
  .eligibility .questions-wrapper {
    margin-top: 50px;
  }
  .eligibility .questions-title {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 50px;
  }
  .eligibility .modal-elig {
    margin-top: 70px !important;
  }
  .eligibility.no-qualified .form--no-qualified {
    margin-top: 30px;
    flex-basis: 100%;
    max-width: 100%;
    border-bottom: none;
  }
  .eligibility.no-qualified .col-right {
    margin-top: 30px;
  }

  .funnel-aside {
    max-width: 300px;
  }
  .funnel-aside .guarantee-text {
    margin-left: 10px;
  }
  .funnel .form .form-row-wrapper .month {
    max-width: 278px;
    margin-right: 18px;
  }
  .funnel .form .form-row-wrapper .month select {
    padding-right: 20px;
  }
  .funnel .form .form-row-wrapper .date, .funnel .form .form-row-wrapper .year {
    max-width: 96px;
  }
  .funnel .form .form-row-wrapper .date {
    margin-right: 18px;
  }
  .funnel .form .form-row--credit {
    flex-direction: column;
    align-items: flex-start;
  }
  .funnel .form .form-row--credit input {
    margin-right: 0;
    max-width: 100%;
  }
  .funnel .form .form-row--credit img {
    margin-top: 10px;
  }
  .funnel.parenting-class .form {
    width: 100%;
  }
  .funnel.parenting-class .pp-wrapper .form {
    width: 100%;
  }

  .summary .modal-body-summary {
    width: 75%;
  }

  .faq-title {
    margin-top: 65px;
    margin-bottom: 90px;
  }

  .login-main {
    margin-top: 65px;
  }
  .login-hr--top {
    margin-top: 55px;
    margin-bottom: 40px;
  }

  .contact-title--top {
    margin: 65px 0 70px 0;
  }
  .contact-wrapper .gray-bg {
    padding: 40px 25px;
  }

  .collapse-block--title {
    font-size: 16px;
    line-height: 20px;
  }

  .home-banner-wrap {
    background: unset;
    height: unset;
  }
  .home-banner-wrap .home-h1-wrap {
    max-width: 527px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 110px 0 0 0;
  }
  .home-banner-wrap .home-h1-wrap > .h1 {
    color: #131D26;
    font-size: 42px;
    font-weight: 300;
    line-height: 50px;
    letter-spacing: -0.6px;
    display: inline;
  }
  .home-banner-wrap .home-h1-wrap .h1-desktop-br {
    display: none;
  }
  .home-banner-wrap .home-h1-wrap .h1-mobile-br {
    display: block;
  }
  .home-banner-wrap .home-banner-text {
    text-align: center;
    letter-spacing: 0.08px;
    color: #38424d;
    margin: 20px 0;
  }
  .home-banner-wrap .home-state-form {
    margin: 0 auto;
  }
  .home-banner-wrap .home-state-form label {
    letter-spacing: 0.08px;
    color: #38424d;
  }
  .home-banner-wrap .home-state-form input[type=button],
.home-banner-wrap .home-state-form input[type=submit] {
    align-self: center;
  }
  .home-banner-wrap .mobile-banner {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    display: block;
    margin-top: 43px;
  }

  .home-banner-content .subtitle {
    margin: 20px auto 0 auto;
  }

  .gradient {
    padding: 70px 0 60px 0;
  }

  .content-wrap .home-content-icons .content-title {
    color: #1a1a1c;
  }
  .content-wrap .home-content-icons .icons-wrap {
    padding-top: 50px;
  }
  .content-wrap .home-content-icons .icon {
    margin: 0 0 50px 0;
  }

  .home .modal.modal-fullwidth .modal-state-choice {
    margin-top: 60px;
  }

  /* MOBILE MENU AFTER PAYMENT */
  .modal-mobile-menu {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0px;
    top: 0px;
  }
  .modal-mobile-menu-show {
    display: block;
  }

  .mobile-menu-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
  }
  .mobile-menu-wrapper .mobile-menu-items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    background: #fff;
    width: 80%;
    padding: 30px;
  }
  .mobile-menu-wrapper .mobile-menu-items li {
    margin-top: 30px;
  }
  .mobile-menu-wrapper .mobile-menu-items li a {
    color: #131D26;
    text-decoration: none;
  }
  .mobile-menu-wrapper .mobile-menu-items li a:visited {
    color: #131D26;
  }
  .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-left: 5px;
  }
  .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu a, .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu .profile {
    color: #0066FF;
    padding-left: 25px;
    text-decoration: none;
  }
  .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu a:visited, .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu .profile:visited {
    color: #0066FF;
  }
  .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu .profile {
    margin-bottom: 30px;
  }
  .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu .profile:before {
    position: absolute;
    left: 0px;
    top: 2px;
    content: url("/resources/img/profile.ac880e4e2485.svg");
  }
  .mobile-menu-wrapper .mobile-menu-items .mobile-user-menu .logout:before {
    position: absolute;
    left: 0px;
    bottom: -2px;
    content: url("/resources/img/logout.625edfc5cffc.svg");
  }
  .mobile-menu-wrapper .mobile-menu-gray {
    background: #808080;
    width: 20%;
  }

  .modal-mobile-profile-menu {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0px;
    top: 64px;
  }
  .modal-mobile-profile-menu-show {
    display: block;
  }

  .mobile-menu-profile-wrapper {
    width: 100vw;
    height: calc(100vh - 64px);
    background: #fff;
  }
  .mobile-menu-profile-wrapper .menu-profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    box-shadow: 0 1px 0 0 rgba(50, 50, 50, 0.1);
  }
  .mobile-menu-profile-wrapper .menu-profile-item a {
    text-decoration: none;
    color: #131D26;
  }
  .mobile-menu-profile-wrapper .menu-profile-item a:visited {
    color: #131D26;
  }

  .mobile-menu-arrow {
    display: none;
  }

  .commitment-left {
    width: 100%;
  }
  .commitment-right {
    width: 100%;
    margin: 70px auto 0;
  }
  .commitment-right img {
    position: inherit;
    max-width: 100%;
  }
  .commitment-border {
    margin: 50px auto 0;
  }
  .commitment-title {
    white-space: normal;
  }
  .commitment-list li {
    white-space: normal;
    margin-top: 40px;
    padding-left: 50px;
  }

  .news-wrap {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .news-wrap .news {
    max-width: 410px;
  }
  .news-wrap .news-middle {
    border-right: unset;
  }

  /* Case progress */
  .you-are-here-icon {
    display: none;
  }

  .list-group-item-heading {
    font-size: 16px;
    padding: 12px 0 12px 0px;
  }

  .progress-list .progress-data {
    font-size: 16px;
    padding: 20px 10px 0 30px;
  }

  .case-progress a.case-link {
    font-size: 16px;
  }

  .list-group-item-heading .list-collapse-icon {
    display: none;
  }

  .relevantInformationModal .btn.btn--filled {
    font-size: 16px;
  }

  table.access-to--table {
    display: block;
  }

  .access-to--table thead, .access-to--table tbody, .access-to--table th, .access-to--table td, .access-to--table tr {
    display: block;
  }
  .access-to--table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .access-to--table tr:nth-child(odd) {
    background: #f6f6f6;
  }
  .access-to--table td {
    position: relative;
    padding-left: 150px;
    text-align: left;
  }
  .access-to--table td:first-child {
    padding-left: 70px;
  }
  .access-to--table td::before {
    position: absolute;
    left: 5px;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
  }
  .access-to--table td:nth-of-type(1)::before {
    content: "Person";
  }
  .access-to--table td:nth-of-type(2)::before {
    content: "Can Edit?";
  }
  .access-to--table td:nth-of-type(3)::before {
    content: "Change Access";
    top: 24px;
  }
  .access-to--table td:nth-of-type(4)::before {
    content: "Remove Access";
    top: 24px;
  }

  .ccnum-ccexp-wrap {
    flex-direction: column;
  }
  .ccnum-ccexp-wrap .form-row--credit {
    width: 100%;
  }
  .ccnum-ccexp-wrap .ccexp-wrapper {
    max-width: 100% !important;
  }
  .ccnum-ccexp-wrap .ccexp-wrapper .exp-month, .ccnum-ccexp-wrap .ccexp-wrapper .exp-year {
    width: 100% !important;
    max-width: 100% !important;
  }
  .ccnum-ccexp-wrap .ccexp-wrapper .exp-month {
    margin: 0 0 20px 0;
  }
}
@media (max-width: 867px) {
  .content-wrap .content-wrap-desktop-br {
    display: none !important;
  }
  .content-wrap .content-wrap-mobile-br {
    display: block !important;
  }

  .feedbacks-wrap {
    padding: 50px 0;
  }
  .feedbacks-wrap .feedbacks-title {
    margin-bottom: 10px;
  }
  .feedbacks-wrap .feedbacks {
    flex-wrap: wrap;
  }
  .feedbacks-wrap .feedbacks .feedback {
    min-width: 100%;
    margin-top: 40px;
  }

  .footer .links-wrap {
    margin: 13px 0 25px;
  }

  .state-choice-wrap .states {
    height: 312px;
  }
  .state-choice-wrap .states a:nth-child(10n) {
    margin-bottom: unset;
  }

  .news-blue-bg {
    padding: 8px 0 40px;
  }

  .news-wrap .news {
    height: 186px;
  }
  .news-wrap .news-middle {
    border-top: 1px #0066FF solid;
    border-bottom: 1px #0066FF solid;
    border-left: unset;
  }
}
@media (max-width: 767.98px) {
  .eligibility-top .col-right .banner-mobile {
    width: 75%;
  }

  .funnel-desc {
    max-width: 100%;
    padding: 40px 0 50px 0;
  }
  .funnel-desc--title {
    line-height: 30px;
  }
  .funnel-main {
    max-width: initial;
    min-width: initial;
    width: 100%;
    margin-right: 0;
  }
  .funnel-aside:not(.steps) {
    display: none;
  }
  .funnel-aside2--list {
    margin-left: 0;
    padding-top: 0;
    border-left: none;
  }
  .funnel-aside2--element {
    border-bottom: 1px solid rgba(196, 196, 196, 0.17);
    padding-left: 27px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin-bottom: 0;
  }
  .funnel-aside2--element::before {
    left: 0;
    top: calc(50% - 7px);
  }
  .funnel-aside2--element.done a {
    color: #00CC00;
  }
  .funnel-after-payment-main {
    margin-top: 20px;
    margin-bottom: 60px;
  }
  .funnel .form .form-row-wrapper .month {
    max-width: 40%;
    margin-right: 20px;
  }
  .funnel .form .form-row-wrapper .date, .funnel .form .form-row-wrapper .year {
    max-width: calc(30% - 20px);
  }
  .funnel .form .form-row--credit {
    flex-direction: row;
    align-items: center;
  }
  .funnel .form .form-row--credit input {
    max-width: 69%;
    margin-right: 15px;
  }
  .funnel .form .form-row--credit img {
    margin-top: 0px;
  }
  .funnel-buttons {
    margin-top: 20px;
  }

  .stepper .progress-bar-wrap {
    background-color: #F7F9FB;
    margin-top: -20px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(196, 196, 196, 0.17);
    box-shadow: -30px 0 0 0 #F7F9FB, 30px 0 0 0 #F7F9FB;
  }

  .summary-main {
    margin-right: 0;
  }
  .summary .modal-body-summary {
    width: 90%;
  }
  .summary .modal-body-summary .btn--modal {
    width: 220px;
    text-align: center;
    padding-right: 30px;
  }
  .summary .modal-body-summary h2 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .summary .modal-body-summary p {
    font-size: 14px;
  }

  .payment .form .cardholder {
    max-width: 400px;
  }
  .payment .form .exp-month, .payment .form .exp-year {
    max-width: 135px;
  }
  .payment-trust-icons {
    margin-bottom: 50px;
  }

  .faq-title {
    margin-top: 45px;
    margin-bottom: 60px;
  }

  .login-main {
    margin-top: 45px;
  }
  .login-hr--top {
    margin-top: 35px;
    margin-bottom: 25px;
  }

  .contact-wrapper {
    flex-direction: column-reverse;
  }
  .contact-title--top {
    margin: 45px 0;
  }
  .contact-title--bottom {
    margin-top: 30px;
  }
  .contact-info {
    max-width: 100%;
    margin-right: 0;
  }
  .contact-form {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .callback-modal-content {
    padding: 50px 0 50px 0;
  }
  .callback-modal-title {
    margin-bottom: 30px;
  }
  .callback-modal-form .form-row--inline .group {
    max-width: 190px;
  }
  .callback-modal-form .form-row--inline .group:nth-child(2) {
    margin: 0 23px;
  }
  .callback-modal .close {
    top: -10px;
  }

  #doesNotOfferService .callback-modal-content {
    padding: 50px 0;
  }

  .thankyou .btn--thankyou {
    width: 100%;
  }
  .thankyou-wrapper {
    margin-top: 20px;
    margin-bottom: 80px;
  }
  .thankyou-left {
    margin-bottom: 40px;
    margin-right: 0;
    max-width: 100%;
  }
  .thankyou-right {
    max-width: 100%;
  }

  .state-choice-wrap .states {
    height: 408px;
  }
  .state-choice-wrap .provinces {
    height: 96px;
  }

  .modal-dialog.modal-dialog-questions {
    margin-left: 20px;
    margin-right: 20px;
  }

  .howto-wrap {
    padding-top: 60px;
    padding-bottom: 100px;
  }
  .howto-left {
    margin-right: 0;
    width: 100%;
  }
  .howto-left img {
    margin: 0 auto;
  }
  .howto-right {
    margin: 0 auto 80px auto;
    width: 100%;
  }

  .home-banner-wrap .mobile-banner {
    width: 75%;
  }

  /* Case progress */
  .confirm-shipping-address .zip-wrap #id_zip_code_2 {
    margin-top: -1.5rem;
  }

  .payment .bootstrap-select .dropdown-toggle .filter-option-inner-inner {
    width: 100%;
  }

  .relevantInformationModal .info-row .info-step-container {
    display: none;
  }

  .calculator-wrap .price {
    font-size: 14px;
  }

  .forms .form-banner-wrap {
    padding: 30px 10px;
  }
  .forms .form-banner-wrap .btn--premium-banner {
    width: 100%;
    font-size: 18px;
    line-height: 22px;
  }

  .form-row--credit input {
    max-width: 100% !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 627px) {
  .news-wrap .news-middle {
    border-top: unset;
    border-bottom: unset;
  }
  .news-wrap .mobile-separator {
    display: block;
  }
}
@media (max-width: 575.98px) {
  .btn--formpage {
    width: 100%;
  }

  .home-banner-wrap .home-h1-wrap {
    text-align: left;
  }
  .home-banner-wrap .home-banner-text {
    text-align: left;
  }

  .w-sm-100 {
    width: 100% !important;
  }

  .two-input-inline-gt-sm {
    width: 100%;
  }

  input:not([type=radio]):not([type=submit]):not([type=checkbox]), textarea, select,
.contact-support input[type=hidden] + label {
    padding-right: 16px;
    padding-left: 16px;
  }

  .bootstrap-select select[name*=state] {
    padding-left: 16px !important;
  }
  .bootstrap-select button.btn {
    padding-left: 16px;
    padding-right: 16px;
  }

  .funnel .btn--payment {
    max-width: 100%;
  }
  .funnel-buttons {
    margin-top: 20px;
  }
  .funnel-buttons--payment {
    margin-top: 13px;
  }
  .funnel .form .field-label {
    left: 17px;
  }
  .funnel .form .form-row--credit {
    flex-direction: column;
    align-items: flex-start;
  }
  .funnel .form .form-row--credit input {
    margin-right: 0;
    max-width: 100%;
  }
  .funnel .form .form-row--credit img {
    margin-top: 10px;
  }

  .payment .form .cardholder {
    max-width: 100%;
  }
  .payment .form .exp-month, .payment .form .exp-year {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  .payment .form .exp-month select + button, .payment .form .exp-year select + button {
    padding-left: 16px;
    padding-right: 16px;
  }
  .payment .form .exp-month {
    margin-bottom: 20px;
  }
  .payment .form .payment-three-inline {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .payment .form .payment-three-inline .ccexp-wrapper {
    max-width: 100%;
  }
  .payment .form .payment-three-inline .ccexp-wrapper .ccexp-error {
    margin: 0;
  }

  .contact-wrapper .gray-bg {
    max-width: 100%;
  }

  .state-choice-wrap .state-choice-top p {
    margin: unset;
    padding-left: unset;
  }
  .state-choice-wrap .states {
    height: 624px;
  }
  .state-choice-wrap .provinces {
    height: 145px;
  }

  .commitment-border .skew-border {
    top: -20px;
  }

  /* Case progress */
  .progress-list-sub .progress-list-content {
    width: 87%;
  }

  .progress-list .progress-data {
    padding: 20px 0 0 0;
  }

  .access-to--table td:first-child {
    overflow-x: scroll;
    word-wrap: break-word;
  }

  .nocc .exp-month {
    width: 100%;
    margin: 0 0 1.5rem 0;
  }
  .nocc .exp-year {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  table.border--radius {
    font-size: 95%;
  }
}
@media (max-width: 520px) {
  .commitment-border .skew-border {
    top: -10px;
  }
}
@media (max-width: 465.98px) {
  .eligibility-top .col-right .banner-mobile {
    width: 100%;
  }
  .eligibility .modal-elig .btn--modal {
    width: 100%;
  }

  .summary .modal-body-summary .btn--modal {
    width: 100%;
  }

  .btn--login, .btn--thankyou {
    width: 100%;
  }

  .btn--payment {
    display: inline-block;
  }

  .btn--long {
    white-space: normal;
    line-height: 1.3;
    height: auto;
  }

  .faq-title {
    margin-top: 25px;
    margin-bottom: 30px;
  }

  .login-main {
    margin-top: 25px;
  }
  .login-form label {
    margin-bottom: 10px;
  }
  .login-hr--top {
    margin-top: 25px;
  }

  .callback-modal-content {
    padding: 60px 0 25px 0;
  }
  .callback-modal-title {
    margin: 0 0 25px 0;
  }
  .callback-modal-form .form-row--inline {
    flex-direction: column;
  }
  .callback-modal-form .form-row--inline .group {
    max-width: 100%;
  }
  .callback-modal-form .form-row--inline .group:nth-child(2) {
    margin: 10px 0;
  }
  .callback-modal .close {
    left: 85%;
  }

  .phone-wrapper {
    flex-wrap: wrap;
  }
  .phone-wrapper input {
    padding-left: 5px;
    padding-right: 5px;
  }
  .phone-wrapper .US-phone-input {
    max-width: 20%;
  }
  .phone-wrapper .US-phone-input.US-phone-input-line {
    margin-right: 0;
    max-width: calc(60% - 84px);
  }
  .phone-wrapper .international-phone-input {
    max-width: 100%;
    margin-right: 0;
  }
  .phone-wrapper .phone-toggle {
    width: 100%;
    margin-top: 5px;
  }

  .modal-submit-form-confirmation .modal-footer {
    flex-direction: column;
  }
  .modal-submit-form-confirmation .modal-footer .btn {
    width: 100%;
    margin: 0;
  }
  .modal-submit-form-confirmation .modal-footer .submit {
    margin-bottom: 20px;
  }

  .commitment-border {
    padding-left: 20px;
  }

  .forms .viewed-td .icon:before {
    left: 35%;
  }
  .forms .forms-print.icon:before, .forms .forms-print-orange:before {
    left: 28%;
  }

  #forms-table.table td, #forms-table.table th {
    padding: 0.25rem;
  }

  .home-banner-wrap .mobile-banner {
    width: 100%;
  }
  .home-banner-wrap .btn--learn {
    width: 100%;
  }
}
@media (max-width: 439px) {
  .modal-help-wrapper {
    width: calc(100vw - 48px);
    padding: 30px 30px 40px 30px;
  }
  .modal-help-wrapper .modal-help-item .working-hours .hours-sep {
    display: block;
  }
  .modal-help-wrapper .modal-help-item .working-hours .hours-symbol {
    display: none;
  }

  .commitment-border .skew-border {
    top: -35px;
  }

  .access-to--table {
    overflow-x: scroll;
  }
  .access-to--table td {
    padding-left: 150px;
  }
  .access-to--table td:first-child {
    padding-top: 30px;
    padding-left: 12px;
    text-align: center;
  }
  .access-to--table td:first-child::before {
    top: 5px;
    left: calc(50% - 26px);
  }
}
@media (max-width: 420px) {
  .state-choice-wrap .states,
.state-choice-wrap .provinces {
    height: unset;
  }

  .progress-list-step .btn.btn--filled {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    height: 100%;
    white-space: normal;
    display: inline-block;
    line-height: 1.5;
  }
}
@media (max-width: 374.98px) {
  .btn--xs-wrap {
    white-space: normal;
    line-height: 1.5;
    height: auto;
  }

  input:not([type=radio]):not([type=submit]):not([type=checkbox]), textarea, select,
.payment .form .exp-month select, .payment .form .exp-year select, .contact-support input[type=hidden] + label {
    padding-left: 10px;
    padding-right: 10px;
  }

  .bootstrap-select button.btn {
    padding-left: 10px;
    padding-right: 10px;
  }

  .funnel .btn--back {
    width: 100px;
    padding-right: 25px;
  }
  .funnel .btn--back::before {
    left: 15px;
  }
  .funnel .btn--next {
    width: 135px;
    padding-left: 25px;
  }
  .funnel .btn--next::before {
    right: 15px;
  }
  .funnel .form .field-label {
    left: 10px;
  }

  .summary .modal .dialog-margins {
    margin-top: 10px !important;
  }

  .callback-modal .close {
    left: 80%;
  }

  .modal-content-questions {
    padding: 20px;
  }

  .commitment-border {
    padding-left: 20px;
  }
}
@media (min-width: 1930px) {
  .eligibility-top .col-right .banner {
    right: initial;
  }

  .home-banner-wrap {
    max-width: 1600px;
    background-position-x: 930px;
  }
}
@media (min-width: 576px) {
  .ml-sm-13 {
    margin-left: 13px !important;
  }
}
.ppc-landing .home-banner-wrap {
  background: url("/resources/img/landings/ppc/mainbanner-lg.8511032dc987.png") no-repeat right;
  height: 580px;
}
.ppc-landing .home-banner-content .home-state-form input[type=button] {
  width: 174px;
  height: 81.06px;
  background: #FF9900;
  border: 1px #FF9900 solid;
}
.ppc-landing .gradient {
  padding-top: 120px;
  padding-bottom: 65px;
}
.ppc-landing .number {
  top: 20%;
}
.ppc-landing .block-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
.ppc-landing .block-content h2 {
  font-weight: 300;
  font-size: 40px;
  margin-bottom: 24px;
}
.ppc-landing .block-content p {
  font-size: 16px;
  margin-bottom: 16px;
}
.ppc-landing .block-content .block-text {
  width: 55%;
}
.ppc-landing .block-content .block-text ul {
  margin-top: 25px;
}
.ppc-landing .block-content .block-text li {
  background: url("/resources/img/list-ok.a19618ded2f7.svg") 0 0 no-repeat;
  list-style-type: none;
  padding-left: 40px;
  margin-bottom: 17px;
}
.ppc-landing .block-content .block-banner {
  width: 35%;
}
.ppc-landing #howitworks {
  padding-top: 100px;
}
.ppc-landing .start-divorce {
  background-color: #0066FF;
  margin-top: 50px;
  margin-bottom: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.ppc-landing .start-divorce p {
  color: #FFFFFF;
  font-size: 40px;
  text-align: center;
  padding-bottom: 30px;
}
.ppc-landing .start-divorce input[type=button] {
  width: 320px;
  height: 50px;
  border-radius: 100px;
  background: #FFFFFF;
  border: 1px #FFFFFF solid;
  font-size: 16px;
  color: #0066FF;
  font-weight: bold;
  cursor: pointer;
}
.ppc-landing .feedbacks-wrap {
  padding-top: 50px;
  padding-bottom: 100px;
}

@media (max-width: 991.98px) {
  .ppc-landing .home-banner-wrap {
    background: none;
    height: auto;
  }
  .ppc-landing .home-banner-wrap .home-state-form input[type=button] {
    align-self: auto;
  }
}
@media (max-width: 767.98px) {
  .ppc-landing .header-wrap > div {
    flex-direction: column;
  }
  .ppc-landing .header-login, .ppc-landing .header-phone {
    margin: 0;
  }
  .ppc-landing .home-banner-wrap {
    background: none;
    height: auto;
  }
  .ppc-landing .home-h1-wrap {
    padding: 0;
  }
  .ppc-landing .gradient {
    background: none;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .ppc-landing .number {
    top: 0;
  }
  .ppc-landing .block-content {
    flex-direction: column;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .ppc-landing .block-content h2 {
    font-size: 30px;
    margin-bottom: 7px;
  }
  .ppc-landing .block-content p, .ppc-landing .block-content li {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .ppc-landing .block-content .block-text {
    width: 100%;
    order: 1;
    margin-bottom: 35px;
  }
  .ppc-landing .block-content .block-banner {
    width: 100%;
    order: 2;
  }
  .ppc-landing #howitworks {
    padding-top: 50px;
  }
  .ppc-landing #howitworks h2, .ppc-landing #howitworks p {
    text-align: center;
  }
  .ppc-landing #commitment h2 {
    text-align: center;
  }
  .ppc-landing .start-divorce {
    margin-top: 25px;
    margin-bottom: 25px;
  }
  .ppc-landing .start-divorce p {
    font-size: 30px;
    padding-bottom: 30px;
  }
  .ppc-landing .start-divorce input[type=button] {
    width: 280px;
  }
  .ppc-landing .feedbacks-wrap {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .ppc-landing .feedbacks-wrap .feedbacks-title {
    font-size: 25px;
  }
  .ppc-landing .feedbacks-wrap .feedback {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ppc-landing .feedbacks-wrap .feedback .feedback-title {
    font-size: 16px;
  }
  .ppc-landing .feedbacks-wrap .feedback .feedback-content {
    text-align: center;
    font-size: 14px;
  }
  .ppc-landing .d-sd-none {
    display: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .eligibility-top .col-left {
    max-width: 600px;
  }

  .eligibility input[type=radio] {
    width: 16px;
  }

  input[type=radio], input[type=checkbox] {
    visibility: visible;
    position: inherit;
    margin-top: 0;
  }

  .callback-modal .close {
    position: absolute !important;
  }

  .funnel-after-payment-main .field-row-wrapper table {
    display: flex;
  }
  .funnel-after-payment-main .field-row-wrapper table tr {
    height: 120px;
  }
  .funnel-after-payment-main .field-row-wrapper table tr td {
    display: flex;
  }

  .testimonials .slick-list, .testimonials .slick-track {
    display: block !important;
  }
  .testimonials .slick-initialized .slick-slide {
    display: block !important;
  }
}
@media screen and (-ms-high-contrast: active) and (max-width: 1199.98px), (-ms-high-contrast: none) and (max-width: 1199.98px) {
  .eligibility-top .col-left {
    max-width: 900px;
  }
}
