* {
  font-family: "Fira Sans", sans-serif;
}

body {
  height: 100vh;
  position: relative;
}

.text-red,
.enrollment-content .text-error {
  color: #ff4368;
}
.text-blue {
  color: #094158;
}

.enrollment-content .text-error {
  margin-top: -10px;
  margin-bottom: 15px;
  font-size: 14px;
}

/* button */
.btn-primary {
  color: #fff;
  background-color: #ff4368;
  border: 0;
  border-bottom: 3px solid #da3152;
  border-radius: 6px;
  height: 60px;
  font-size: 20px;
  box-sizing: border-box;
  font-weight: 700;
  padding-inline: 15px;
  cursor: pointer;
}
.btn-primary:hover,
.btn-primary:focus {
  color: #fff;
  background-color: #da3152;
  border-color: #ff4368;
}

/* display */
.d-desktop,
.d-tablet,
.d-mobile {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .d-tablet {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .d-mobile {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .d-desktop {
    display: block;
  }
}

/* container */
.container--step-1 {
  width: 100%;
  max-width: 1070px;
  box-sizing: border-box;
  padding-inline: 15px;
  margin-inline: auto;
}

/* header */
.header {
  position: relative;
  background: #fff;
  padding: 12px;
  z-index: 10;
  box-shadow: 0px 0px 9px 2px rgba(0, 0, 0, 0.233);
  border-top: 4px solid #ed2048;
}
.header__logo {
  width: 370px;
}
.header__right {
  gap: 20px;
}
.header__text {
  font-size: 18px;
  color: #068dff;
  max-width: 240px;
  line-height: 1.2;
}
.header__contact-number {
  position: relative;
  color: #ed2048;
  font-size: 36px;
  line-height: 1;
}
.header__contact-number::before {
  content: url("../images/red-phone-icon.svg");
  width: 26px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
}
.header__contact-day {
  font-size: 16px;
  color: #909090;
  line-height: 1;
  text-align: right;
}
.header__contact-number2 {
  border: 1px solid #ed2048;
  padding: 5px 8px 7px;
  border-radius: 8px;
}
.icon-phone {
  content: url("../images/red-phone-icon.svg");
  width: 18px;
  display: inline-block;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
  .header__logo {
    width: 300px;
  }
  .header__text {
    font-size: 14px;
    max-width: 138px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    padding: 15px 5px;
  }
  .header__logo {
    width: 250px;
  }
  .header__right {
    gap: 5px;
  }
  .header__text {
    font-size: 11px;
    max-width: 110px;
    line-height: 1;
  }
}

/* accordion */
.accordion-item {
  border: 0;
}
.accordion-button,
.accordion-button:not(.collapsed) {
  background: none;
  color: #094158;
  font-size: 30px;
  font-weight: 700;
  padding: 15px 0;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  display: none;
}
.accordion-button::before {
  content: url("../images/expand-icon.svg");
  display: inline-block;
  width: 20px;
  min-width: 20px;
  margin-right: 15px;
}
.accordion-button:not(.collapsed)::before {
  content: url("../images/collapse-icon.svg");
  margin-top: -12px;
}
.accordion-body {
  padding-left: 35px;
  padding-block: 0;
  color: #094158;
  font-size: 18px;
}
.accordion-button:focus,
.accordion-button:not(.collapsed) {
  box-shadow: none;
  border: 0;
}
@media screen and (max-width: 767px) {
  .accordion-button::before {
    width: 15px;
    min-width: 15px;
  }
  .accordion-button,
  .accordion-button:not(.collapsed) {
    font-size: 22px;
  }
  .accordion-body {
    font-size: 12px;
  }
}

.footer {
  margin-top: 100px;
}
.footer-container {
  width: 100%;
  max-width: 1280px;
  padding-inline: 15px;
  margin-inline: auto;
}
.footer p {
  color: #000;
  font-size: 12px;
  line-height: 1.1;
}
.footer .footer-links,
.footer .footer-links a {
  color: #000;
  text-decoration: none;
}
.footer .footer-links {
  margin-block: 30px;
}

/* slide */
.slide-animation.active {
  -webkit-animation: slide 0.6s forwards;
  animation: slide 0.6s forwards;
}
@-webkit-keyframes slide {
  from {
    -webkit-transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(0);
  }
}
@keyframes slide {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* sms optin */
.sms-optin {
  border: 2px solid #ff4368;
  border-radius: 10px;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 45px;
  padding-right: 15px;
  background: url(../images/arrow-red.svg);
  background-size: 35px auto;
  background-position: left 3px center;
  background-repeat: no-repeat;
  margin-bottom: 15px;
  cursor: pointer;
}
.sms-optin.checked {
  background-color: #509c34;
  border-color: #509c34;
  background-image: none;
  padding-left: 17px;
}
.sms-optin.checked .sms-optin__label {
  color: #fff;
}
.sms-optin input {
  display: none;
}
.sms-optin input:checked ~ .sms-optin__checkbox {
  background-color: #0075ff;
  border-color: #004ead;
}
.sms-optin input:checked ~ .sms-optin__checkbox::after {
  display: block;
}
.sms-optin .sms-optin__checkbox {
  display: inline-block;
  min-width: 32px;
  width: 32px;
  height: 32px;
  border: 1px solid #333;
  border-radius: 3px;
  background-color: #fff;
  margin-right: 10px;
}
.sms-optin .sms-optin__checkbox::after {
  content: "";
  height: 20px;
  width: 10px;
  display: flex;
  border-right: solid 5px #fff;
  border-bottom: solid 5px #fff;
  transform: rotate(45deg);
  margin-top: 3px;
  margin-left: 10px;
  opacity: 1;
  display: none;
}
.sms-optin .sms-optin__label {
  font-size: 14px;
  color: #ff4368;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .sms-optin {
    padding-left: 34px;
    background-size: 26px auto;
  }
  .sms-optin .sms-optin__label {
    font-size: 12px;
  }
}

/* STEP 1 START */
/* banner */
.banner--step-1 {
  background-color: #c8d0d7;
  background-image: url("../images/home-banner.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: auto 100%;
  padding-top: 70px;
  padding-bottom: 150px;
}
.banner--step-1 .text-header {
  font-size: 60px;
  font-weight: 700;
  color: #094158;
  text-wrap: balance;
}
.banner--step-1 .text-sub-header {
  color: #ffffff;
  font-size: 25px;
  font-weight: 600;
}
.banner--step-1__form {
  margin-block: 60px;
}
.banner--step-1__form .input {
  width: 376px;
  background: #fff;
  border: 0;
  border-radius: 8px;
  height: 60px;
  margin-right: 15px;
  color: #919191;
  font-size: 22px;
  padding-inline: 15px;
  box-sizing: border-box;
}
.banner--step-1__form .input::placeholder {
  color: #919191;
}
.banner--step-1__form input[type="submit"] {
  width: 200px;
  color: #fff;
  background-color: #ff4368;
  border: 0;
  border-bottom: 2px solid #da3152;
  border-radius: 8px;
  height: 60px;
  font-size: 25px;
  box-sizing: border-box;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .banner--step-1 {
    background-image: url("../images/home-banner-mobile.png");
    background-position: bottom right;
    background-size: 100% auto;
    padding-bottom: 230px;
    padding-top: 20px;
  }
  .banner--step-1 .text-header {
    font-size: 32px;
  }
  .banner--step-1 .text-sub-header {
    font-size: 17px;
    line-height: 1.4;
  }
  .banner--step-1__form {
    margin-top: 20px;
  }
  .banner--step-1__form .input,
  .banner--step-1__form input[type="submit"] {
    width: 80%;
    margin: 0 0 10px;
    font-size: 20px;
    height: 55px;
  }
}

/* medicare-assets */
.medicare-assets {
  margin-top: -150px;
}
.medicare-assets .text-header {
  font-size: 24px;
  color: #094158;
  margin-bottom: 30px;
}
.medicare-assets__box-wrap .col {
  padding-inline: 20px;
}
.medicare-assets__box {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: -1px -1px 7px 3px rgba(0, 0, 0, 0.068);
  margin-bottom: 30px;
}
.medicare-assets__box .box-icon {
  width: 69px;
  height: 69px;
  margin-inline: auto;
}
.medicare-assets__box .box-header {
  margin-top: 30px;
  color: #068dff;
  font-weight: 500;
  line-height: 1.2;
  font-size: 19px;
}
.medicare-assets__box .box-description {
  color: #094158;
  line-height: 1.2;
  font-size: 19px;
}
@media screen and (max-width: 767px) {
  .medicare-assets {
    padding-inline: 0;
    margin-top: -110px;
  }
  .medicare-assets .text-header {
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    padding: 10px 5px;
    margin-bottom: 15px;
  }
  .medicare-assets .text-header strong {
    color: #068dff;
  }
  .medicare-assets__box-wrap .col {
    padding-inline: 10px;
  }
  .medicare-assets__box {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
  }
  .medicare-assets__box .box-header,
  .medicare-assets__box .box-description {
    font-size: 14px;
  }
}

/* medicare-state */
.medicare-state {
  width: 100%;
  max-width: 1195px;
  padding-inline: 15px;
  margin-inline: auto;
}
.medicare-division {
  max-width: 580px;
  width: 100%;
  height: 8px !important;
  border: 0;
  border-radius: 10px;
  background-color: #ff4368;
  margin-top: 35px;
  opacity: 1;
  margin-inline: auto;
}
.medicare-state .text-header {
  color: #094158;
  font-size: 48px;
  font-weight: 700;
}
.medicare-state .text-sub-header {
  color: #ff4368;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 700;
}
.medicare-state__lists {
  list-style-type: none;
  margin: 0;
  padding: 0;
  column-count: 5;
}
.medicare-state__lists li {
  color: #094158;
  font-size: 22px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  cursor: pointer;
  line-height: 1.8;
}
.medicare-state__lists li:hover {
  color: #ff4368;
  text-decoration: underline;
}
.medicare-state__select-wrap select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../images/blue-drop-arrow-icon.svg") #fff no-repeat;
  background-size: 4%;
  background-position: right 20px center;
  border: 2px solid #efefef;
  border-radius: 8px;
  height: 55px;
  margin-right: 15px;
  color: #909090;
  font-size: 16px;
  padding-inline: 15px;
  box-sizing: border-box;
  margin-bottom: 10px;
  letter-spacing: 1px;
}
.medicare-state__select-wrap input[type="submit"] {
  width: 100%;
  color: #fff;
  background-color: #ff4368;
  border: 0;
  border-bottom: 2px solid #da3152;
  border-radius: 8px;
  height: 55px;
  font-size: 20px;
  box-sizing: border-box;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .medicare-state__lists {
    column-count: 4;
  }
}
@media screen and (max-width: 767px) {
  .medicare-state {
    padding-inline: 15px;
    background-image: url("../images/map.png");
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: bottom 55px center;
  }
  .medicare-state__select-wrap {
    margin-top: 50px;
  }
  .medicare-state .text-header {
    font-size: 28px;
  }
  .medicare-state .text-sub-header {
    font-size: 13px;
  }
  .medicare-division--top {
    margin-top: 30px;
  }
}

/* review plans */
.medicare-review {
  max-width: 1300px;
  margin-top: 70px;
  margin-inline: auto;
  background-color: #d2cac3;
  background-image: url("../images/guy.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: bottom left;
  border-radius: 22px;
  box-shadow: 1px 1px 15px 1px rgba(0, 0, 0, 0.3);
}
.medicare-review__col {
  flex: 0 0 auto;
  width: 50%;
  margin-right: 5%;
  padding-block: 100px;
}
.medicare-review .text-header {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.medicare-review .text-sub-header {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}
.medicare-review .description {
  color: #241e20;
  font-size: 20px;
}
.medicare-review__contact {
  display: inline-block;
  color: #241e20;
  font-size: 40px;
  line-height: 1;
  background: #fff;
  border-bottom: 3px solid #b1b1b1;
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  margin-top: 10px;
  font-weight: 600;
}
.icon-phone-blue {
  content: url("../images/blue-phone-icon.svg");
  width: 35px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.medicare-review__contact-description {
  color: #fff;
  font-size: 20px;
  margin-top: 10px;
  margin-left: 65px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .medicare-review__col {
    width: 90%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1299px) {
  .medicare-review__col {
    width: 65%;
    margin-right: 0;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1399px) {
  .medicare-review__col {
    width: 60%;
    margin-right: 0;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1500px) {
  .medicare-review__col {
    width: 55%;
    margin-right: 0;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .medicare-review {
    max-width: 90%;
    background-image: url("../images/guy-mobile.png");
    background-size: 100% auto;
    background-position: bottom right;
  }
  .medicare-review__col {
    width: 100%;
    margin-right: 0;
    padding: 25px 20px 400px;
  }
  .medicare-review .text-header {
    text-align: center;
    font-size: 30px;
    line-height: 1.2;
  }
  .medicare-review .text-sub-header {
    text-align: center;
    font-size: 17px;
    margin-top: 5px;
  }
  .medicare-review .description {
    font-size: 13px;
    text-align: center;
  }
  .medicare-review__contact-wrap {
    text-align: center;
  }
  .medicare-review__contact {
    font-size: 20px;
    padding: 10px 25px;
  }
  .icon-phone-blue {
    width: 20px;
  }
  .medicare-review__contact-description {
    margin-left: 0;
    text-align: center;
    font-size: 14px;
  }
}

/* FQA */
.medicare-faq {
  width: 100%;
  max-width: 1195px;
  padding-inline: 15px;
  margin-inline: auto;
  padding-block: 90px;
}
.medicare-faq .text-header {
  font-size: 48px;
  color: #094158;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .medicare-faq .text-header {
    font-size: 30px;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 15px;
  }
}


div#access-message-container {
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
}
img#access-message-img {
    width: 40px;
    margin-bottom: 7px;
}
p#access-message-text {
    color: #068dff;
    font-weight: 500;
    font-size: 1.05rem;
}
a.access-link {
  text-decoration: none;
}

/* STEP 1 END */

/* ENROLLMENT START */
.enrollment {
  padding-top: 90px;
  padding-bottom: 200px;
}

/* progress */
.progress-text {
  color: #909090;
  font-size: 16px;
  margin-bottom: 10px;
}
.progress-text strong {
  color: #068dff;
}
.progress {
  width: 305px;
  height: 10px;
  background: #dfdfdf;
  border-radius: 50px;
  margin-inline: auto;
}
.progress-bar {
  background: #068dff;
  border-radius: 50px;
}

/*  */
.enrollment-box {
  padding-inline: 15px;
}
.enrollment .text-header {
  font-size: 40px;
  color: #094158;
  margin-top: 50px;
}
.enrollment-content {
  width: 100%;
  max-width: 468px;
  margin-inline: auto;
  margin-top: 15px;
}
.enrollment-content p {
  color: #909090;
  font-size: 16px;
  text-align: center;
}
.enrollment-content .btn {
  position: relative;
  overflow: hidden;
}
.enrollment-content .btn input {
  /* display: none; */
  opacity: 0;
  position: absolute;
  z-index: 2;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.custom-select {
  width: 100%;
  border: 2px solid #d1d1d1;
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 62px;
  font-size: 1rem;
  padding: 1rem 0.75rem;
  color: #7f7f7f;
  appearance: none;
  background-image: url(../images/select-icon.png);
  background-size: 8px auto;
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.enrollment-content input[type="text"],
.enrollment-content input[type="tel"],
.enrollment-content input[type="email"],
.enrollment-content input[type="number"] {
  color: #509c34;
  width: 100%;
  border: 2px solid #d1d1d1;
  background: #f8f8f8;
  border-radius: 10px;
  margin-bottom: 15px;
  height: 62px;
  font-size: 25px;
}
.enrollment-content input[type="text"]::placeholder,
.enrollment-content input[type="tel"]::placeholder,
.enrollment-content input[type="email"]::placeholder {
  color: #757575;
}
.enrollment-content__input .label {
  position: absolute;
  color: #7f7f7f;
  padding-top: 7px;
  padding-left: 15px;
}
.enrollment-content__input.form-floating .label {
  padding: 1rem 0.75rem;
}
.enrollment-content__input input[type="text"],
.enrollment-content__input input[type="tel"],
.enrollment-content__input input[type="email"] {
  font-size: 19px;
  padding-top: 20px;
  padding-inline: 12px;
}
.enrollment-content #dob {
  text-align: center;
}
.enrollment-content-check {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 25px;
  margin-top: -17px;
}
.form-floating .enrollment-content-check {
  margin-top: -10px;
}
.enrollment-content .btn-primary {
  width: 100%;
}
.btn-blue,
.btn-phone,
.btn-gender {
  width: 100%;
  background: #068dff;
  border: 0;
  border-bottom: 3px solid #0061b3;
  height: 68px;
  font-size: 25px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
  text-decoration: none;
  border-radius: 8px;
  line-height: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.btn-gender {
  background: #aaa;
  border-color: #888;
  height: 55px;
  font-size: 20px;
}
input:checked ~ .btn-gender {
  background: #068dff;
  border-color: #0061b3;
}
.btn-blue:hover,
.btn-blue:focus,
.btn-gender:hover,
.btn-gender:focus {
  color: #fff;
}
.btn-phone {
  color: #094158;
  background: #dfdfdf;
  border-color: #dfdfdf;
}
.btn-phone:hover,
.btn-phone:focus {
  color: #094158;
}
.btn-phone::before {
  content: url("../images/blue-phone-icon.svg");
  width: 23px;
  margin-top: 9px;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.gender-wrap {
  position: relative;
}
.gender-wrap input {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.enrollment-content .text-disclaimer {
  font-size: 12px;
  line-height: 1.2;
  text-align: left;
}
.enrollment-content .text-disclaimer,
.enrollment-content .text-disclaimer a,
.enrollment-content .text-disclaimer a:hover,
.enrollment-content .text-disclaimer a:focus {
  color: #000;
  font-family: "Fira Sans", sans-serif;
}
@media screen and (max-width: 767px) {
  .enrollment {
    padding-top: 30px;
  }
  .enrollment .text-header {
    font-size: 28px;
    margin-top: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }
  .enrollment-content {
    margin-top: 10px;
  }
  .enrollment-content input[type="text"],
  .enrollment-content input[type="tel"],
  .enrollment-content input[type="email"],
  .enrollment-content input[type="number"] {
    margin-bottom: 10px;
    height: 52px;
    font-size: 16px;
  }
  .enrollment-content .btn-primary,
  .btn-blue,
  .btn-phone {
    font-size: 20px;
    height: 52px;
  }
  .enrollment-content p {
    font-size: 16px;
    margin-top: 0;
  }
  .enrollment-content-check {
    margin-top: -14px;
  }
  .enrollment-content__input .label {
    font-size: 16px;
    padding-left: 14px;
  }
  .enrollment-content__input.form-floating .label {
    padding: 0.8rem 0.75rem;
  }
}
/* ENROLLMENT END */

/* OFFERWALL START */
.offerwall {
  padding-top: 50px;
}
.offerwall-container {
  width: 100%;
  max-width: 1280px;
  padding-inline: 15px;
  margin-inline: auto;
}
.offerwall .text-header {
  font-size: 36px;
  color: #068dff;
}

/* provider */
.partner-provider-wrap {
  margin-top: 30px;
}
.partner-provider {
  display: flex;
  border: 1px solid #ededed;
  border-radius: 8px;
  background: #fafafa;
  gap: 30px;
  padding: 15px 30px;
  margin-bottom: 20px;
}
.parter-provider__img-wrap,
.parter-provider__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.parter-provider__img-wrap {
  width: 180px;
  min-width: 180px;
  justify-content: flex-start;
}
.parter-provider__btn-wrap {
  width: 176px;
  min-width: 176px;
}
.parter-provider__img-wrap .parter-provider__img,
.parter-provider__btn-wrap .btn {
  width: 100%;
}
.parter-provider__text-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.parter-provider__parter-provider {
  background: #fff;
  padding: 2px 15px;
  border-radius: 50px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #4582c3;
  font-weight: bold;
}
.parter-provider__parter-provider::before {
  content: url("../images/mfusa-icon.svg");
  display: inline-block;
  width: 27px;
  vertical-align: middle;
}
.parter-provider__text-header {
  color: #094158;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.parter-provider__text-lists {
  margin: 0;
  padding-left: 10px;
  color: #323232;
  font-size: 14px;
  font-family: Arial;
  line-height: 1.2;
}

.confirmation-modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.4s;
  z-index: 12;
}

.confirmation-modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 16px;
  position: relative;
  width: min(90%, 550px);
  background: #fff;
  padding: 2rem 2.25rem 8rem;
  text-align: center;
}

.modal__title {
  color: #068dff;
  font-size: 1.75rem;
  font-weight: 800;
}

.modal__subtitle {
  color: #252525;
  font-size: 1.125rem;
  line-height: 1.2;
}

.modal__call-btn {
  width: 100%;
  max-width: 280px;
}

.modal__hours {
  border: 1px solid #d5d5d5;
  border-radius: 2rem;
  background: #fafafa;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  margin-inline: auto;
  max-width: max-content;
  padding: 0.75rem 1.25rem;
}

.modal__hours-label {
  color: #ff4368;
  font-weight: 700;
}

.modal__hours-value {
  color: #8e8e8e;
}

.modal__call-number {
  letter-spacing: 1px;
  line-height: 1.1;
  padding-top: 0.25rem;
}

.modal__call-text {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: start;
}

.modal__divider {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 1.25rem;
  margin-block: 0.25rem;
}

.modal__divider::before,
.modal__divider::after {
  content: "";
  border-bottom: 1px solid #ccc;
  flex: 1;
  margin: 0 0.75rem;
}

.modal__divider::before {
  margin-left: 1.75rem;
}

.modal__divider::after {
  margin-right: 1.75rem;
}

.modal__alt-contact {
  background-color: #fafafa;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  color: #068dff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 auto;
  padding-inline: 0.9375rem;
  max-width: 280px;
  width: 100%;
  height: 60px;
}

.modal__click-link {
  cursor: pointer;
  color: #ff4368;
}

.modal__click-link:is(:hover, :active) {
  color: #cc3653;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 20px;
  text-decoration: none;
}

.modal__close:is(:hover, :active) {
  opacity: 0.6;
}

/* CONFIRMATION MODAL MQ STYLES */
@media screen and (min-width: 768px) {
  .modal__content {
    padding: 3rem 3.5rem 10rem;
  }

  .modal__title {
    font-size: 2rem;
  }

  .modal__subtitle {
    font-size: 1.25rem;
  }

  .modal__divider::before {
    margin-left: 1.75rem;
  }

  .modal__divider::after {
    margin-right: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .offerwall {
    padding-top: 20px;
  }
  .offerwall .text-header {
    font-size: 21px;
  }
  .partner-provider-wrap {
    margin-top: 18px;
  }
  .partner-provider {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-inline: 20px;
  }
  .parter-provider__text-header {
    text-align: center;
    font-size: 20px;
  }
  .parter-provider__btn-wrap {
    width: 100%;
    min-width: 100%;
  }
  .parter-provider__text-lists {
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .partner-provider {
    gap: 15px;
    padding-inline: 15px;
  }
}
/* OFFERWALL END */

@media screen and (min-width: 768px) {
  .text-speak-agent {
    font-size: 1.2em;
  }
}

.span-skip {
  display: block;
  margin: auto;
  text-align: center;
  font-size: 16px;
  color: #888;
  cursor: pointer;
  margin-top: 15px;
}
