@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

body {
  font-family: "Montserrat", sans-serif;
}

header {
  box-shadow: 0 1px 6px 0 rgb(9 47 86 / 20%);
  /*	-moz-box-shadow: 0 1px 1px 0 rgba(9,47,86,0.25);
    -webkit-box-shadow: 0 1px 1px 0 rgba(9,47,86,0.25);*/
  color: #111;
}

.hide-mobile {
  display: none;
}

/* header */

header {
  border-bottom: 1px solid #d9e2ec;
}

header nav {
  padding-top: 20px;
  padding-bottom: 15px;
  display: flex;
    justify-content: space-between;
    align-items: center;
    clear: both;
}

.header__cta img {
  width: 15px;
  border-radius: 50px;
  margin: 5px;
  padding: 0px;
}

.header__cta {
  font-weight: 600;
  text-align: center;
  padding-top: 5px;
}

.header__cta a {
  /* background: #007bff;
  border-radius: 41px;
  margin-left: 10px;
  padding: 9px 17px 9px 13px;
  color: white;
  font-size: 13px;
  position: relative; */
  text-decoration: none;
}

.header__cta a:before {
  /* content: "";
  -webkit-animation: ripple 0.6s linear infinite;
  animation: ripple 0.6s linear infinite;
  border-radius: 100%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  position: absolute;
  width: 2px;
  height: 2px;
  left: 15px;
  top: 50%;
  transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
  border-radius: 50%; */
}

.header__cta a {
}

.text-gray-700{
  color: #374151;
  font-size: 12px;
}

.primary-text-dark{
  color: #1e40af;
  font-size: 20px;
}


.header__cta span {
  /* color: #334e68; */
}
.mdlogo {
  display: block;
}
.smlogo {
  display: none;
  max-width: 30px !important;
}


@media only screen and (max-width: 330px) {
  header .container {
    padding: 0 5px;
  }

  .header__logo img {
    max-width: 134px;
  }
}

header .sponsored {
  position: absolute;
  top: 3px;
  font-size: 10px;
  color: #666;
}

.header__cta p {
  line-height: 38px;
  color: #334e68;
  margin: 0 6px 0 0;
  padding-left: 12px;
  letter-spacing: 0.5px;
  position: relative;
  text-align: right;
  font-size: 12px;
  margin-top: -25px;
}
.header__cta p b {
  font-size: 12px;
}

.header__cta p span:before {
  content: "";
  position: relative;
  left: -5px;
  top: calc(50% - 3px);
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: #007bff;
  display: inline-block;
}

#cta-bottom {
  text-decoration: none;
}

/* FORM WRAPPER */

.form-wrapper {
  /*margin-top: 4.6rem;*/
  /*margin-top: 2.6rem;*/
  margin-top: 1.2rem;
  margin-bottom: 1.6rem;
  min-height: 66vh;
}

@-webkit-keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12),
      0 0 0 20px rgba(255, 255, 255, 0.12), 0 0 0 40px rgba(255, 255, 255, 0.12),
      0 0 0 60px rgba(255, 255, 255, 0.12);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.12),
      0 0 0 40px rgba(255, 255, 255, 0.12), 0 0 0 60px rgba(255, 255, 255, 0.12),
      0 0 0 80px rgba(255, 255, 255, 0);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12),
      0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 40px rgba(255, 255, 255, 0.1),
      0 0 0 60px rgba(255, 255, 255, 0.1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.12),
      0 0 0 40px rgba(255, 255, 255, 0.12), 0 0 0 60px rgba(255, 255, 255, 0.12),
      0 0 0 80px rgba(255, 255, 255, 0);
  }
}

/* PROGRESS BAR */

.progress-wrapper {
  max-width: 380px;
}

.progress {
  width: 100%;
  height: 6px;
  margin-top: 5px;
  background: #f5f8fa;
  border: 1px solid #c4cad6;
  margin-bottom: 40px;
}

.progress-bar {
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  transition: width 0.6s ease;
  max-width: 100% !important;
}

/* FORM STEPS */

.step {
  display: none;
}

.step.show {
  display: block;
}

.step h2 {
  font-size: 28px;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #111;
  font-weight: 700;
}

.input-wrap {
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.input-form {
  background: #fff;
  border: 1px solid #c4cad6;
  box-sizing: border-box;
  border-radius: 4px;
  height: 68px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  display: block;
  margin: 1rem 0 0;
  padding: 22px 30px 15px;
  width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

.input-form--small {
  width: 30%;
}

.input-form--large {
  width: 40%;
}

/* radio button */

.radio-button {
  box-sizing: border-box;
  box-shadow: inset 0 -4px 4px rgb(21 46 83 / 70%);
  padding-top: 15px;
  font-size: 20px;
  background: #007bff;
  border: 1px solid #c4cad6;
  border-radius: 4px;
  width: 100%;
  height: 68px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.radio-button:hover {
  cursor: pointer;
}

.radio-button input {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  z-index: 999;
  cursor: pointer;
}

.radio-button:hover {
  cursor: pointer;
  background: #076cd8;
}

/* FORM BUTTONS */

.form-buttons {
  margin-top: 30px;
}

#btn-next {
  background: #007bff;
  color: #fff;
  box-shadow: 0 2px 4px rgb(0 0 0 / 24%);
  border-radius: 6px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  display: block;
  width: 100%;
  max-width: 380px;
  margin: auto;
  margin-right: auto;
  padding: 15px 10px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.next-arrow {
  display: inline-block;
  margin-left: 13px;
  margin-bottom: 3px;
}

#btn-back {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  display: block;
  /* margin: 0 auto; */
  align-items: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 15px 10px;
  color: #a9b3cb;
  width: 100%;
  max-width: 380px;
  /* margin: auto; */
  margin-right: auto;
}

.back-arrow {
  display: inline-block;
  margin-right: 13px;
  margin-bottom: 3px;
}

/* VALIDATION */

.input-wrap > div {
  position: relative;
}

.validate-text {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 145.31%;
  color: #eb1010;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 7px;
  display: none;
}

.input-wrap > div.error .validate-text {
  display: block;
}

div.error input {
  border: 1px solid #eb1010;
}

.icon-val {
  position: absolute;
  bottom: 24px;
  left: 10px;
}

.icon-error {
  color: rgb(235, 16, 16);
  display: none !important;
}

div.error .icon-error {
  display: block !important;
}

.icon-good {
  color: rgb(0, 193, 179);
  display: none !important;
}

div.good .icon-good {
  display: block !important;
}

.icon-edit {
  display: inline-block;
  margin-left: 10px;
}

#show-adress {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  margin-top: 15px;
}

#show-adress svg:hover {
  cursor: pointer;
}

#show-adress svg:hover path {
  fill: #007bff;
}

#street-address {
  font-family: Montserrat;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  color: #9fa9b5;
}

#zip-code {
  padding-left: 30px;
  padding-right: 10px;
}

.dob-prefix {
  position: relative;
}

.dob-prefix input {
  padding-left: 48px;
}

.dob-prefix label {
  position: absolute;
  top: 40px;
  left: 30px;
  font-weight: 600;
  font-size: 18px;
}

/* DISCLAIMER */

.disclaimer {
  font-size: 14px;
  text-align: left;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

.disclaimer.show {
  display: block !important;
}

/* FOOTER */

footer {
  color: #333;
}

footer a {
  text-decoration: underline;
  color: #316fff;
}



.cta-button {
	color: white;
	max-width: 349px;
	margin: auto;
	width: 100%;
	padding: 18px 23px 18px 50px;
	display: inline-block;
	border-radius: 70px;
	position: relative;
	text-align: center;
	text-decoration: none;
	border: 2px solid #007bff;
	transition: 0.4s all;
  }
  
  .cta-button b {
	font-size: 18px;
	color: white;
	font-weight: 500;
  }
  
  .cta-button span {
	letter-spacing: 1.1px;
  }
  
  .cta-button small {
	font-size: 15px;
	letter-spacing: 0px;
	margin-top: 4px;
	display: block;
  }
  
  .cta-button img {
	position: absolute;
	left: 25px;
	top: 50%;
	transform: translatey(-50%);
  }
  
  .cta-button:before {
	content: "";
	-webkit-animation: ripple 0.6s linear infinite;
	animation: ripple 0.6s linear infinite;
	border-radius: 100%;
	-webkit-filter: brightness(0) invert(1);
	filter: brightness(0) invert(1);
	position: absolute;
	width: 2px;
	height: 2px;
	left: 29px;
	top: 50%;
	transform: translatey(-50%);
	-webkit-transform: translatey(-50%);
	border-radius: 50%;
  }
  
  .phone_wave:before {
	left: 12px;
	top: 20px;
  }

/* bottom bar */

.bottom-bar {
  position: fixed;
  /* position: sticky; */
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 10px;
  background-color: white;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.bottom-bar__text {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
  color: #0d1c48;
  margin-bottom: 0;
}

.bottom-bar__text:before {
  content: "";
  background-color: #007bff;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 1px;
  margin-right: 6px;
}

.bottom-bar .cta-button b {
  font-size: 16px;
}

.bottom-bar .cta-button {
  margin-top: 5px;
  padding: 6px 11px 6px 30px;
  width: auto;
}

.bottom-bar .cta-button img {
  display: inline-block;
  width: 10px;
  left: 12px;
  top: 52%;
}

.bottom-bar .cta-button:before {
  left: 13px;
}

.input-wrap #btn-skip{
  font-family: Montserrat;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  display: block;
  /* margin: 0 auto; */
  align-items: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 15px 10px;
  color: #a9b3cb;
  width: 100%;
  max-width: 380px;
  /* margin: auto; */
  margin-right: auto;
  text-align: right;
 }

.input-wrap #btn-back, .input-wrap #btn-skip{
  width: 49%;
} 
.input-wrap #btn-back{
  text-align: left;
}


@media only screen and (min-width: 800px) {
	.hide-mobile {
	  display: inline-block !important;
	}

	  /* header */
	  header nav {
		padding-top: 15px;
		padding-bottom: 15px;
	  }


	
	  .header__cta a {
		font-size: 15px;
	  }
	
	  .header__cta a img {
		/* width: 14px;
		margin-bottom: -1px; */
	  }

	  .bottom-bar {
		padding-top: 10px;
		padding-bottom: 15px;
	  }
	
	  .bottom-bar__text {
		font-size: 16px;
	  }
	
	  .bottom-bar__text:before {
		width: 8px;
		height: 8px;
		margin-bottom: 2px;
	  }

}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  .header-phone p {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .mdlogo {
    display: none;
  }
  .smlogo {
    display: block;
  }
  .header-phone p {
    font-size: 17px;
  }

  .header-phone-icon {
    max-width: 23px;
  }

  .header-phone span {
    font-size: 9px;
    line-height: 1.3em;
  }

  .step h2 {
    font-size: 22px;
  }

  .input-form {
    height: 53px;
    font-size: 16px;
    padding: 10px 25px 10px 10px !important;
    margin-top: 1.5rem;
  }

  .icon-val {
    left: unset;
    right: 10px;
    top: 42px;
  }

  .good.pr-3 .icon-val,
  .error.pr-3 .icon-val {
    right: 20px;
  }

  .validate-text {
    top: unset;
    left: 0;
  }

  .dob-prefix label {
    position: absolute;
    top: 39px;
    left: 22px;
    font-size: 16px;
  }

  .dob-prefix input {
    padding-left: 38px !important;
  }

  .header__cta{
	padding-top: 0;
}
}

.logoimg {
  max-width: 180px;
}

@media only screen and (max-device-width: 320px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
  /*.header-phone-icon{
		  max-width: 28px;
	  }*/

  .headrow {
    display: flex;
    display: -webkit-flex;
    /*justify-content: center;
		-webkit-justify-content: center;*/
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    flex: 1;
    -webkit-flex: 1 1 0%;
  }

  .ma-xx-small {
    min-width: 0 !important;
    padding: 0 !important;
  }
}

/**Loader css**/
#loader,
.loading {
  display: none;
}
#loader {
  position: absolute;
  z-index: 1;
  text-align: center;
  margin: 0 auto;
  width: 20%;
  height: 80vh;
  left: 0;
  right: 0;
}

.thankyou {
  color: #000;
  z-index: 1000;
  position: absolute;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  font-weight: 600;
  bottom: 20%;
}
h1.thankyou.ml13 {
  bottom: 10%;
}
.loading:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  background: #fff;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  #loader {
    width: 55%;
  }
  .thankyou {
    padding: 0px 5px;
    font-size: 25px;
  }

  
.tty{
  display: none;
}

.primary-text-dark{
  font-size: 18px;
}



}

/***endof loader css***/


.phoneimg-container{

  background: #007bff;
  border-radius: 50px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  position: relative;
}


.phoneimg-container:before {
  content: "";
  -webkit-animation: ripple 0.6s linear infinite;
  animation: ripple 0.6s linear infinite;
  border-radius: 100%;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  position: absolute;
  width: 2px;
  height: 2px;
  /* left: 29px; */
  top: 50%;
  transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
  border-radius: 50%;
}

@media only screen and (max-width: 768px) {
  .bottom-bar #cta-bottom {
    text-align: center;
    flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }

  .header__logo {
    /* margin-top: 15px; */
  }

  header .sponsored {
    top: 10px;
  }
}


