/*Patient Support Program*/

.txt-grey-bar {
  width: 40px;
  height: 5px;
  border: 1px solid #edecec;
  border-radius: 5px;
  background-color: #d4d4d4;
  margin-top: 50px;
}

.overflow-y {
  overflow-y: auto;
}

/* Custom Raiod Button starts*/
/* Customize the label (the container) */
.form-group .container {
  display: block;
  position: relative;
  padding-left: 40px;
  padding-right: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.form-group .container input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #edecec;
  border-radius: 50%;
  border: 1px solid #bbbbbb;
}

/* On mouse-over, add a grey background color */
/*.container:hover input[type=radio] ~ .checkmark {
		  background-color: #ccc;
		}*/

/* When the radio button is checked, add a blue background */
.form-group .container input[type="radio"]:checked ~ .checkmark {
  background: white;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.form-group .container input[type="radio"]:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.form-group .container .checkmark:after {
  top: 3px;
  left: 3px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background-color: #1a265c;
}

/*Custom radio button ends*/

/*Custom checkbox button*/
.form-group .container.chkbox {
  display: block;
  position: relative;
  padding-left: 60px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* #reminderForProlia .form-group .container.chkbox {
  margin-left: -60px;
} */

/* Hide the browser's default checkbox */
.form-group .container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.checkboxmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  width: 40px;
  background: url("/-/media/Themes/Amgen/Prolia-com-Redesign/Prolia-com-Redesign/images/Common/checkbox-default.png") no-repeat 0 0;
  background-size: cover;
  border-radius: 3px;
}

/* When the checkbox is checked, add a blue background */
.form-group .container input[type="checkbox"]:checked ~ .checkboxmark {
  background: url("/-/media/Themes/Amgen/Prolia-com-Redesign/Prolia-com-Redesign/images/Common/checkbox-checked.png") no-repeat 0 0;
  background-size: cover;
}

/* Create the checkmark/indicator (hidden when not checked) */
/*.checkboxmark:after {
    content: "";
    position: absolute;
    display: none;
}*/

/* Show the checkmark when checked */
/*.form-group .container input[type=checkbox]:checked ~ .checkboxmark:after {
    display: block;
}*/

/* Style the checkmark/indicator */
/*.form-group .container .checkboxmark:after {
    left: 14px;
    top: 4px;
    width: 10px;
    height: 25px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}*/
/*Custom checkbox button ends*/

/*Text box starts*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
select.form-control {
  width: 320px;
  padding: 10px 12px;
  border-radius: 5px;
  border: 1px solid #bbbbbb;
  background-color: #edecec;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "Lato"!important;
  color: #6c757d!important;
  font-weight: normal;
}

select.form-control {
  height: auto !important;
}

/* #zipInput {
  width: 20.5%;
} */

/* #stateInput {
  width: 9%;
} */
#userFirstProliaInjection {
  width: 30%;
}

#dobInput {
  width: 30%;
}

#phoneInput,
#mobileInput,
#phoneNumInput {
  width: 50.5%;
}

#mobileInputTellStory {
  width: 42%;
}

#yearInput {
  width: 16%;
}

::placeholder {
  color: #6c757d;
  font-family: "DIN Next W01 Regular" !important;
  font-size: 20px;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #6c757d;
  font-family: "DIN Next W01 Regular" !important;
  font-size: 20px;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #6c757d;
  font-family: "DIN Next W01 Regular" !important;
  font-size: 20px;
}
/*Text box ends*/
.sign-me {
  border-radius: 50px;
  font-size: 17px;
  font-family: 'DINNextLTProBold';
  padding: 10px 0px 10px 50px;
  background-color: #0a7ab2;
  border: 1px solid #0a7ab2;
  color: #fff;
  line-height: 1.06;
  min-width: 290px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.sign-me:hover,
.sign-me:focus,
.sign-me:visited {
  background-color: #54b948;
  border-color: #54b948;
}
.sign-me:after{
	content: "";
	background-image: url(/-/media/Themes/Amgen/Prolia-com-Redesign/Prolia-com-Redesign/images/icons/ui-button-arrow.png);
	background-repeat: no-repeat;
	padding: 0;
	text-align: center;
	width: 20px;
	height: 18px;
	background-size: 100%;
}
.sign-me .fa.fa-chevron-right {
  display:none;
}

.privacyStatement {
  text-decoration: underline;
}

/*Errors*/
#signUpFormSubmit div.error,
#signUpFormSubmit div.error-custom {
  color: #e02020;
  font-size: 20px;
  font-style: italic;
  font-family: "DINNextLTProMedium";
}
#signUpFormSubmit span.error {
  display: block;
  color: #e02020;
  font-size: 12px;
  font-style: italic;
  font-family: "Lato";
} 
#signUpFormSubmit input + div.error,
#signUpForm div.error-custom {
  margin-top: 5px;
}
#signUpFormSubmit input + span.error {
  margin-top: 5px;
}

#signUpFormSubmit input[type="text"].error,
#signUpFormSubmit input[type="email"].error {
  border: 1px solid #e02020;
}

#signUpFormSubmit input[type="text"].valid,
#signUpFormSubmit input[type="email"].valid {
  background-color: #fbfffb;
}

#signUpFormSubmit input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fbfffb inset !important;
  -webkit-text-fill-color: #6c757d;
}

#signUpFormSubmit span.valid-checkmark {
  position: relative;
  display: block;
  top: 20px;
  left: 4px;
}

#signUpFormSubmit span.valid-checkmark::before {
  content: "";
  display: block;
  position: absolute;
  font-size: 12px;
  height: 20px;
  width: 20px;
  right: -25px;
  top: -43px;
}

#signUpFormSubmit input.valid + span.valid-checkmark::before,
#signUpFormSubmit span.valid-checkmark.active::before {
  border-radius: 10px;
  border: 2px solid #54b948;
}

#signUpFormSubmit span.valid-checkmark::after {
  content: "";
  display: block;
  width: 5px;
  height: 8px;
  position: absolute;
  right: -18px;
  top: -38px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#signUpFormSubmit input.valid + span.valid-checkmark::after,
#signUpFormSubmit span.valid-checkmark.active::after {
  border: solid #54b948;
  border-width: 0 2px 2px 0;
}

#signUpFormSubmit label.label-error {
  color: #e02020;
}

#signUpFormSubmit label.label-error span {
  color: #e02020 !important;
}

.printIcon {
  right: 17%;
  font-size: 25px;
  font-weight: 100;
}

/*Pop up inside foem*/
#formMobileTermsAndCondtions .modal-dialog {
  max-width: 800px !important;
}

#formMobileTermsAndCondtions .modal-body {
  max-height: 300px;
  overflow-y: auto;
}

#formMobileTermsAndCondtions .modal-header {
  border-bottom: 1px solid #e9ecef !important;
}

#formMobileTermsAndCondtions .modal-title {
  line-height: 1;
  font-family: "DIN Next W01 Bold" !important;
  padding-right: 30px;
}

#formMobileTermsAndCondtions ul li {
  list-style-type: decimal;
}

#formMobileTermsAndCondtions button.close {
  font-size: 1.5em;
  top: 15px !important;
  right: 20px !important;
}

/*Custom scroll bar for terms and conditions form*/
/* width */
#formMobileTermsAndCondtions ::-webkit-scrollbar {
  width: 8px;
}

/* Track */
#formMobileTermsAndCondtions ::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #c7c7c7;
}

/* Handle */
#formMobileTermsAndCondtions ::-webkit-scrollbar-thumb {
  background: #0074a6;
  border-radius: 10px;
}

/* Handle on hover */
#formMobileTermsAndCondtions ::-webkit-scrollbar-thumb:hover {
  background: #0074a6;
}

body #formMobileTermsAndCondtions {
  scrollbar-face-color: #0074a6;
  scrollbar-track-color: #c7c7c7;
}

/*Custom scroll bar for terms and conditions form ends*/

/*IPad Pro*/
@media only screen and (min-width: 1024px) and (max-width: 1300px) {
  .printIcon {
    right: 5%;
  }

  #mobileInputTellStory {
    width: 57%;
  }

  #yearInput {
    width: 23%;
  }

  #dobInput {
    width: 38%;
  }

  #userFirstProliaInjection {
    width: 38%;
  }

  #phoneInput,
  #mobileInput,
  #phoneNumInput {
    width: 67%;
  }

  /* #stateInput {
    width: 60px;
  } */

  /* #zipInput {
    width: 26.5%;
  } */
}

/*IPad Pro landscape orientation*/
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  .printIcon {
    right: 14%;
  }

  /* #stateInput {
    width: 55px;
  } */
}

/*IPad landscape orientation*/
@media only screen and (max-width: 1024px) and (orientation: landscape) {
  .printIcon {
    right: 5%;
  }
}

/*IPad */
@media only screen and (max-width: 1023px) {
  #mobileInputTellStory {
    width: 61%;
  }

  #yearInput {
    width: 24%;
  }

  #dobInput {
    width: 41%;
  }

  #userFirstProliaInjection {
    width: 41%;
  }

  #phoneInput,
  #mobileInput,
  #phoneNumInput {
    width: 73%;
  }

  /* #stateInput {
    width: 60px;
  } */

  /* #zipInput {
    width: 28.5%;
  } */
}

@media only screen and (max-device-width: 767px) {
  .sign-me.btn-success {
    margin-left: 0;
    white-space: unset;
    padding: 10px 70px 10px 40px; /* Made changes for the 4.3 form view and print btn */
  }

  /* input[type="text"],
  input[type="tel"],
  input[type="email"],
  input[type="date"],
  select.form-control {
    width: 100%;
  } */

  .printIcon {
    right: 0%;
  }

  #mobileInputTellStory {
    width: 87%;
  }

  #yearInput {
    width: 35%;
  }

  #dobInput {
    width: 59%;
  }

  /* #zipInput {
    width: 40%;
  } */

  #userFirstProliaInjection {
    width: 59%;
  }

  #phoneInput,
  #mobileInput,
  #phoneNumInput {
    width: 99%;
  }

  /* #stateInput {
    width: 60px;
  } */

  #reminderForProlia .form-group .container.chkbox {
    margin-left: -15px;
  }
}

.form-control {
  color: #004a64 !important;
}

/*Patient Support Program ends*/

#signUpFormSubmit .accept-error-msg,
#signUpFormSubmit .support-reminder-error-msg {
  display: none;
  color: #e02020 !important;
  font-size: 20px;
  font-family: DIN Next W01 Bold;
}

#signUpFormSubmit .accept-error-msg + .accept-error-msg,
#signUpFormSubmit .support-reminder-error-msg + .support-reminder-error-msg {
  display: none !important;
}

#signUpFormSubmit input::placeholder {
  font-family: "DIN Next W01 Regular" !important;
}

#signUpFormSubmit input::-webkit-input-placeholder {
  font-family: "DIN Next W01 Regular" !important;
}
#signUpFormSubmit input::-moz-placeholder {
  font-family: "DIN Next W01 Regular" !important;
}
#signUpFormSubmit input:-ms-input-placeholder {
  font-family: "DIN Next W01 Regular" !important;
}
#signUpFormSubmit input:-moz-placeholder {
  font-family: "DIN Next W01 Regular" !important;
}

#signUpFormSubmit #FirstName,
#signUpFormSubmit #LastName,
#signUpFormSubmit #cityInput,
#signUpFormSubmit #emailInput,
#signUpFormSubmit #addressInput,
#signUpFormSubmit #address2Input {
  max-width: 320px;
  width: 100%;
  padding: 7px 12px 7px 12px;
  line-height: 24px;
}

/* #signUpFormSubmit #FirstName,
#signUpFormSubmit #LastName {
  max-width: 300px;
} */

@media only screen and (min-width: 768px) {
  #signUpFormSubmit #nameInput .row .col-md-6:last-of-type {
    margin-left: -22px;
  }
  #signUpFormSubmit #FirstName,
  #signUpFormSubmit #LastName,
  #signUpFormSubmit #cityInput,
  #signUpFormSubmit #emailInput,
  #signUpFormSubmit #addressInput,
  #signUpFormSubmit #address2Input {
    padding: 9px 12px 8px 12px;
    /* max-width: 335px; */
  }

  /* #signUpFormSubmit #FirstName,
  #signUpFormSubmit #LastName {
    max-width: 230px;
  } */
}

/* #signUpFormSubmit #LastName {
  margin-top: 44px !important;
} */

/* @media only screen and (min-width: 768px) {
  #signUpFormSubmit #LastName {
    margin-top: 5px !important;
  }
} */

/* @media only screen and (max-width: 767px) {
  #signUpFormSubmit #FirstName-error {
    margin-bottom: -21px;
  }
} */

#signUpFormSubmit #dobInput {
  max-width: 169px;
  width: 100%;
  padding: 7px 12px 7px 12px;
}

#signUpFormSubmit #stateInput {
  /* width: 54px; */
  padding: 7px 12px 7px 12px;
}

#signUpFormSubmit #zipInput {
  max-width: 192px;
  width: 100%;
  padding: 7px 12px 7px 12px;
}

@media only screen and (min-width: 768px) {
  #signUpFormSubmit #dobInput {
    max-width: 168px;
    padding: 9px 12px 8px 12px;
  }

  #signUpFormSubmit #stateInput {
    /* width: 56px; */
    padding: 9px 12px 8px 12px;
  }

  #signUpFormSubmit #zipInput {
    padding: 9px 12px 8px 12px;
  }
}

#signUpFormSubmit .checkmark {
  height: 23px;
  width: 23px;
}

#signUpFormSubmit .form-group .container .checkmark:after {
  top: 3px;
  left: 3px;
  width: 15px;
  height: 15px;
}

#signUpFormSubmit #phoneInput,
#signUpFormSubmit #mobileInput,
#signUpFormSubmit #phoneNumInput {
  width: 100%;
  max-width: 243px;
}

#signUpFormSubmit label {
  font-size: 16px;
  font-family: 'Lato';
  font-weight: bold;
  color: #1a265c;
}

/* @media (min-width: 768px) {
  #signUpFormSubmit label {
    font-size: 20px;
  }
} */

#signUpFormSubmit label span {
  color: #6d6d6d !important;
  text-transform: none !important;
  font-family: "Lato" !important;
  font-style: italic !important;
}

#signUpFormSubmit label span a,
#signUpFormSubmit label span sup {
  font-style: normal !important;
}

#signUpFormSubmit label span sup {
  margin-left: 2px;
}

#signUpFormSubmit label.label-error.form-check-label {
  color: #e02020 !important;
}

#signUpFormSubmit label.form-check-label.container.if-error {
  padding-left: 30px;
  padding-top: 2px;
  padding-right: 0px;
  text-transform: capitalize;
  color: #6d6d6d;
  font-size: 16px;
  font-family: 'Lato';
  font-weight: bold;
}

.txt-darkBlue.sub-title {
  font-family: "DINNextLTProRegular";
  font-size: 18px;
}

.pn p,
.pn ul li {
  font-size: 18px;
}
@media (min-width: 768px) {
  .txt-darkBlue.sub-title,
  .pn p,
  .pn ul li {
    font-size: 20px;
  }
  .mobile-tc {
    font-family: "DINNextLTProMedium";
    font-style: italic;
    color: #6d6d6d;
    margin-right: -80px;
    margin-left: -20px;
  }
  .mobile-tc a {
    color: #6d6d6d !important;
  }
}

/* #dateOfInjectionNo p {
  font-family: "DINNextLTProMedium";
  font-style: italic;
  color: #6d6d6d;
  font-size: 19px;
  max-width: 420px;
  padding-bottom: 18px;
  margin-bottom: 0px;
} */

#dateOfInjectionNo p strong {
  font-family: "DIN Next W01 Bold";
  font-weight: normal;
  font-style: normal;
}

#signUpFormSubmit .form-check.p-l-10rem {
  padding-left: 15px !important;
}

@media (min-width: 768px) {
  #signUpFormSubmit label.form-check-label.container.if-error {
    padding-left: 40px;
  }
  #signUpFormSubmit .form-check.p-l-10rem {
    padding-left: 61px !important;
  }
}

#signUpFormSubmit label.form-check-label.container.if-error.chkbox.pt-3.eyebrow,
label.form-check-label.container.if-error.chkbox.reg-font {
  padding-left: 60px !important;
}

#signUpFormSubmit select.form-control {
  width: 100% !important;
}

#signUpFormSubmit .form-control.error::-webkit-input-placeholder {
  color: #e02020;
}

#signUpFormSubmit .form-control.error::-moz-placeholder {
  color: #e02020;
}

#signUpFormSubmit .form-control.error:-ms-input-placeholder {
  color: #e02020;
}

#signUpFormSubmit .form-control.error:-moz-placeholder {
  color: #e02020;
}

#signUpFormSubmit #nameInput .form-control.error::-webkit-input-placeholder,
#signUpFormSubmit .form-control.error.dateInput::-webkit-input-placeholder {
  color: #6c757d;
}

#signUpFormSubmit #nameInput .form-control.error::-moz-placeholder,
#signUpFormSubmit .form-control.error.dateInput::-moz-placeholder {
  color: #6c757d;
}

#signUpFormSubmit #nameInput .form-control.error:-ms-input-placeholder,
#signUpFormSubmit .form-control.error.dateInput:-ms-input-placeholder {
  color: #6c757d;
}

#signUpFormSubmit #nameInput .form-control.error:-moz-placeholder,
#signUpFormSubmit .form-control.error.dateInput:-moz-placeholder {
  color: #6c757d;
}

#signUpFormSubmit label[for="userReceivedProlia"].label-error {
  margin-bottom: 0;
}

#signUpFormSubmit #ReceivedProlia-error {
  margin-bottom: 7px;
}

#signUpFormSubmit .most-recent.label-error {
  color: #e02020 !important;
}

#signUpFormSubmit #inputDateModalToggle.form-control.error {
  border: 1px solid #e02020 !important;
}

#signUpFormSubmit select,
#signUpFormSubmit option {
  font: -moz-pull-down-menu !important;
  font-size: 20px !important;
  line-height: 28.5px !important;
}

#signUpFormSubmit select {
  font-family: "DIN Next W01 Bold" !important;
  background: #ffffff;
  color: #6e757c !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

#signUpFormSubmit .select-wrapper {
  width: 100%;
  max-width: 288px;
  position: relative;
}

#signUpFormSubmit .select-wrapper:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 35px;
  position: absolute;
  top: 19px;
  right: 10px;
  color: #aaaaaa;
  pointer-events: none;
  width: 21px;
  height: 12px;
  line-height: 12px;
}

#signUpFormSubmit select::-ms-expand {
  display: none;
}

#signUpFormSubmit .bottom-content .overflow-y {
    padding-right: 7px;
    margin-right: -3px;
}

#signUpFormSubmit .recaptcha-error-message {
  color: #e02020;
  font-size: 20px;
  text-transform: none;
  font-family: "DIN Next W01 Regular";
  font-weight: 600;
  font-style: italic;
  margin-top: 5px;
}

.most-recent {
  color: #6d6d6d !important;
  text-transform: none !important;
}

#inputDateModalToggle {
  width: 199px;
  background: url(../images/Common/date-default.png) no-repeat 0 0;
  border: 0 !important;
  background-size: cover;
  font-size: 16px;
  /*padding-left: 45px !important;
    width: 100% !important;
    color: #717073 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    font-size: 18px !important;
    font-family: DIN2014DemiBold !important;
    position: relative !important;
    top: 1px !important;*/
}

#inputDateModalToggle.selected {
  background: url(../images/Common/date-selected.png) no-repeat 0 0;
  background-size: cover;
  font-family: "DIN Next W01 Regular" !important;
}

.modal-dialog {
  max-width: 280px !important;
  margin: 0 auto !important;
}

@media (min-width: 321px) {
  .modal-dialog {
    max-width: 320px !important;
  }
}

@media (min-width: 768px) {
  .modal-dialog {
    max-width: 653px !important;
  }
}

@media (min-width: 768px) {
  #mobileTermsModal .modal-dialog {
    max-width: 652px !important;
  }
}

#mobileTermsModal .modal-dialog,
#mobileTermsModal .modal-content {
  height: auto !important;
  padding: 25px 20px 20px 20px !important;
}

@media (max-width: 768px) {
  #mobileTermsModal .modal-dialog,
  #mobileTermsModal .modal-content {
    padding: 25px 0 20px 0 !important;
  }
}

#mobileTermsModal .modal-body {
  overflow: auto !important;
  border: 1px solid #e1e2e1 !important;
  margin: 0 15px 20px !important;
}

.modal-body #datepicker {
  padding-top: 15px !important;
}

.modal-header {
  color: #004963 !important;
  font-size: 30px !important;
  line-height: 1.13 !important;
  font-family: "DIN Next W01 Regular" !important;
  border: none !important;
  flex: none !important;
  text-align: left !important;
}

.modal-body .sub-title {
  display: block !important;
  color: #717073 !important;
}

button.close {
  opacity: 1 !important;
  text-shadow: none !important;
  width: 25px !important;
  border-radius: 30px !important;
  position: absolute !important;
  right: -15px !important;
  top: -17px !important;
  height: 25px !important;
}

img.modal-close-btn {
  width: 25px !important;
}

body#ProliaSupportProgramPage .modal-backdrop {
  background-color: #878787;
  opacity: 0.56 !important;
}

#dateModal .modal-content {
  position: relative;
  max-width: auto !important;
  max-height: auto !important;
}

@media (min-width: 768px) {
  #dateModal .modal-dialog {
    transform: scale(0.9);
  }

  #dateModal .modal-content {
    position: relative;
    min-width: 653px !important;
    min-height: 653px !important;
  }
}

button.close:hover {
  color: #fff !important;
}

.ui-widget.ui-widget-content {
  border: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  color: #717073 !important;
  font-family: "DIN Next W01 Regular" !important;
}

.ui-widget-header {
  background: transparent !important;
  border: none !important;
}

.ui-datepicker th {
  font-family: "DIN Next W01 Bold" !important;
}

.ui-state-default {
  height: 33px !important;
  width: 33px !important;
  border-radius: 100px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  border: none !important;
  background: transparent !important;
  font-size: 13px !important;
}

@media (min-width: 768px) {
  .ui-state-default {
    height: 90px !important;
    width: 90px !important;
    font-size: 18px !important;
  }
  .ui-datepicker table {
    position: relative !important;
    left: -10px !important;
    margin-top: 40px !important;
  }
  .ui-datepicker .ui-datepicker-prev {
    left: 30px !important;
  }
  .ui-datepicker .ui-datepicker-next {
    right: 25px !important;
  }
}

.ui-state-active {
  border: solid 1px #54b948 !important;
  background: #54b948 !important;
}

.ui-datepicker-prev-hover,
.ui-datepicker-next-hover {
  background: transparent !important;
  border: none !important;
}

.ui-state-highlight {
  border: solid 1px #009bdb !important;
  background-color: #e6f2fa !important;
}

.ui-state-highlight::after {
  content: "Today" !important;
  font-size: 9px !important;
  line-height: 0.2em !important;
  color: #009bdb !important;
  display: block !important;
}

.ui-datepicker .ui-datepicker-title {
  color: #004963 !important;
  font-size: 18px !important;
  line-height: 1 !important;
  margin-bottom: 15px !important;
}

@media (min-width: 768px) {
  .ui-state-highlight::after {
    font-size: 14px !important;
  }
  .ui-datepicker table {
    font-size: 18px !important;
  }
  .ui-datepicker .ui-datepicker-title {
    font-size: 30px !important;
  }
}

.ui-datepicker-prev::before {
  content: "<" !important;
  color: #004963 !important;
  position: absolute !important;
  font-size: 18px !important;
  left: 0 !important;
}

.ui-datepicker-next::after {
  content: ">" !important;
  color: #004963 !important;
  position: absolute !important;
  font-size: 18px !important;
  right: 0 !important;
}

.ui-icon-circle-triangle-w,
.ui-icon-circle-triangle-e {
  background-image: none !important;
}

#femaleSignUpBM {
  background-image: url("/-/media/1B58CEF511914E50B5E8CF5D48E179D7");
  background-repeat: no-repeat;
  height: 786px;
  background-size: contain !important;
  background-position-y: bottom;
}

#femaleSignUpBM img {
  width: 214px;
  margin-bottom: 28px;
}

#femaleSignUpBM .p-y-20 {
  display: none;
}

#femaleSignUpBM .banner-title {
  font-size: 18px;
  padding-top: 12px;
}

#femaleSignUpBM .heading1 {
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 14px !important;
  font-family: "DINNextLTProRegular";
}

#femaleSignUpBM .btn-success .fa.fa-chevron-right {
  transform: rotate(90deg);
}

#watchStories {
  height: 560px;
  background-image: url("/-/media/5A774C2F2D1D4DCA90B46E294E121F42");
  background-size: contain !important;
  background-position-y: bottom;
  background-repeat: no-repeat;
  background-color: #eaf6e9;
}

#watchStories .eyebrow.txt-green {
  font-size: 32px;
  line-height: 38px;
}

#watchStories h1 {
  margin-top: 25px;
}

#watchStories .linkButtons {
  min-height: 47px;
}

#watchStories .linkButtons span {
  height: 43px;
  width: 43px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#signingUpMale a.txt-blue1 {
  color: #004a64 !important;
  font-size: 18px;
  line-height: 22px;
}

#signingUpFemale .heading1 {
  font-family: "DIN Next W01 Regular";
}

#signingUpMale .heading1 {
  font-family: "DINNextLTProRegular";
}

#signingUpMale .heading1 .eyebrow {
  display: block;
}

@media (max-width: 767px) {
  #signingUpMale {
    height: 607px;
    background-image: url("/-/media/1B58CEF511914E50B5E8CF5D48E179D7");
    background-repeat: no-repeat;
    background-size: contain !important;
    background-position-y: bottom;
  }

  #signingUpMale a.txt-blue1 .fa-stack-2x {
    font-size: 42px;
  }

  #signingUpMale .xs-cta-btn {
    width: 65%;
    margin-top: 16px;
  }

  #signingUpMale .fa-stack {
    float: right;
    margin-top: -20px;
    color: #0074a6;
  }

  #signingUpMale .fa-chevron-right {
    font-size: 18px;
  }

  #signingUpMale .eyebrow1 {
    font-size: 15px;
    padding-bottom: 12px;
  }

  #signingUpMale .p-y-20 {
    padding-top: 12px;
  }

  #signingUpMale .eyebrow2 {
    font-size: 18px;
  }

  #signingUpMale .heading1 {
    font-size: 32px;
  }

  #signingUpFemale {
    height: 520px;
    background-image: url("/-/media/5649457F2000465DB9D3D146ACFC67F3");
    background-repeat: no-repeat;
    background-size: contain !important;
    background-position-y: bottom;
  }

  #signingUpFemale .heading1 {
    font-size: 32px;
    font-family: "DIN Next W01 Regular";
  }

  #signingUpFemale .heading1 .eyebrow {
    display: block;
  }

  #signingUpFemale .eyebrow2 {
    font-size: 16px;
  }

  #signingUpFemale .p-y-20 {
    display: none;
  }

  #signingUpFemale .eyebrow1 {
    font-size: 15px;
    line-height: 19px;
    padding-top: 17px;
    padding-bottom: 9px;
  }

  #femaleSignUpBM .banner-title {
    line-height: 21px;
  }
}

@media (min-width: 768px) {
  #femaleSignUpBM {
    background: url("../images/Desktop/4-0/4-1-thank-you-for-signing-up-bg2.jpg")
      no-repeat 51% 0;
    height: 613px;
    background-size: cover !important;
  }

  #femaleSignUpBM img {
    width: 235px;
    margin-bottom: 22px;
  }

  #femaleSignUpBM .banner-title {
    font-size: 16px;
    padding-top: 23px;
  }

  #femaleSignUpBM .heading1 {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 26px !important;
  }

  #femaleSignUpBM .btn-success {
    height: 50px;
    max-height: 50px;
  }

  #watchStories {
    height: 435px;
    background-image: url("/-/media/75C9ED97228D45F9AA2C638EB2D3C8F5");
    background-size: cover !important;
  }

  #watchStories .eyebrow.txt-green {
    font-size: 36px;
    line-height: 43px;
  }

  #watchStories h1 {
    margin-top: -78px;
  }

  #signingUpMale a.txt-blue1 {
    font-size: 20px;
    line-height: 1;
  }

  #signingUpMale a.txt-blue1 span {
    width: 47px;
    height: 47px;
  }

	#signingUpMale .xs-cta-btn {
		margin-top: 10px;
	}
}


#signUpFormSubmit .accept-container strong {
  font-family: DIN Next W01 Bold;
}

#signUpFormSubmit .sub-title {
  padding: 0 30px;
}

/* Sharing Strength */
#inspireSharingStrengthForm .form-control.is-invalid ~ .invalid-feedback {
  display: none
}

#inspireSharingStrengthForm .form-control.is-invalid + .invalid-feedback {
  display: block
}

#inspireSharingStrengthForm .is-invalid {
  border: 1px solid #f00
}

#inspireSharingStrengthForm .is-invalid-label {
  color: #f00
}

#inspireSharingStrengthForm .is-invalid-label .invalid-feedback {
  display: inline-block;
  width: auto
}

#inspireSharingStrengthForm .is-invalid-label span.invalid-feedback {
  margin-left: -8px
}

#inspireSharingStrengthForm .invalid-feedback {
  color: #f00;
  font-size: 20px
}

#inspireSharingStrengthForm input[type="text"].form-control,
#inspireSharingStrengthForm input[type="tel"].form-control,
#inspireSharingStrengthForm input[type="email"].form-control,
#inspireSharingStrengthForm input[type="date"].form-control ,
#inspireSharingStrengthForm select.form-control {
  color: #004a64 !important;
  font-family: 'DIN Next W01 Bold' !important;
}
@media screen and (max-width: 767px){
    .prolia-bone-matters #dateModal .modal-content button.close{
        top: 0 !important;
        right: 0 !important;
    }
.prolia-bone-matters #dateModal .modal-content img.modal-close-btn {
    top: -10px;
    position: absolute;
    right: -10px;
}
}
.bv-errorInput{
  border: 2px solid red !important;
}