/* Root Variables */
:root {
  --fontOpenSans: "Open Sans", sans-serif;
  --fontTodaySansNowLight: "TodaySansNow Pro Light";
	--fontTodaySansNow: "TodaySansNow Pro Regular";
  --screenWidth: 100vw;
  --buttonRadius: 4px;
  --fontSizeSmall: 14px;
  --fontSizeMedium: 16px;
  --fontSizeLarge: 18px;
  --fontSizeHeadline3: 24px;
  --fontSizeHeadline4: 28px;
  --fontSizeHeadline2: 30px;
  --fontSizeHeadline1: 32px;
  --lineHeightLarge: 24px;
  --lineHeightHeadline1: 36px;
  --lineHeightHeadline2: 36px;
  --lineHeightHeadline3: 30px;
  --lineHeightHeadline4: 34px;
  --lineHeightSmall: 20px;
  --lineHeightMedium: 22px;
  --fontWeightRegular: 400;
  --fontWeightSemiBold: 600;
  --fontWeightBold: 700;
  --myIHGrey: #373737;
  --myIHNeutralGrey: #676767;
  --myIHRed: #d31145;
  --lightGrey: #e0e0e0;
  --darkRed: #a1052f;
  --buttonHover: #a1052f;
  --buttonDisabled: #e9e9e9;
  --verifyButtonDisabled: #989898;
  --disabledFields: #f4f3f0;
  --darkPurple: #711471;
  --headerPurple: #721471;
  --purpleHover: #460C45;
  --neutralGray: #ccc;
  --tooltipBorderColor: #67676775;
  --tooltipBackgroundColor: #fff;
  --errorBackgroundColor: #fcf0e8;
  --errorBorderColor: #e26e1c;
  --inputReadonlyColor: #f4f3f0;
  --successColor: #71974a;
  --tealColor: #055D67;
  --white: #FFFFFF;
}

@font-face {
  font-family: 'TodaySansNowPro-Regular';
  src: url("https://content-branding.test.auth.myih.com/fonts/TodaySansNowProRegular.otf") format('opentype');
}

@font-face {
  font-family: 'TodaySansNowPro-ExtraLight';
  src: url("https://content-branding.test.auth.myih.com/fonts/31A815_9_0.woff") format('woff');
}

@font-face {
  font-family: GothamMedium;
  src: url("https://content-branding.test.auth.myih.com/fonts/GothamMedium.otf") format('opentype');
}

@font-face {
  font-family: GothamBook;
  src: url("https://content-branding.test.auth.myih.com/fonts/GothamBook.otf") format('opentype');
}

@font-face {
  font-family: GothamBold;
  src: url("https://content-branding.test.auth.myih.com/fonts/GothamBold.otf") format('opentype');
}

@font-face {
  font-family: TodaySansNowProRegular;
  src: url('https://content-branding.test.auth.myih.com/fonts/TodaySansNowProRegular.otf') format('opentype');
}

@font-face {
  font-family: 'TodaySansNowPro-Light';
  src: url('https://content-branding.test.auth.myih.com/fonts/TodaySansNowProLight.otf') format('opentype');
  font-display: block;
}

/* #### General Styles #### */
body {
  font-family: var(--fontOpenSans);
  margin: 0;
  padding: 0;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.mfa-modal {
  overflow: hidden;
}

.container {
  padding: 0px;
}

.grid {
	margin-right: 0;
  margin-left: 0;
	margin-top: 0;
}

/* #### Header #### */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border-bottom: 10px solid var(--myIHRed);
  border-top: 5px solid var(--myIHGrey);
  box-shadow: 0px 3px 4px 0px #0000001C;
  height: 110px;
}

.header-logo img {
  height: 55px;
  margin-top: auto;
  margin-bottom: auto;
  left: 150px;
  position: relative;
  max-width: 250px;
}

.header-link {
  font-size: var(--fontSizeMedium);
  line-height: var(--lineHeightMedium);
  color: var(--myIHNeutralGrey);
  right: 150px;
  position: relative;
}

.header-link a {
  color: var(--myIHRed);
  text-decoration: none;
  font-weight: var(--fontWeightBold);
  font-size: var(--fontSizeSmall);
  line-height: var(--lineHeightSmall);
  padding-left: 5px;
}

.header-link a.pbdrx {
  color: var(--headerPurple);
}

h1 {
  font-size: var(--fontSizeHeadline1);
  line-height: var(--lineHeightHeadline1);
}

h2 {
  font-size: var(--fontSizeHeadline2);
  line-height: var(--lineHeightHeadline2);
}

h3 {
  font-size: var(--fontSizeHeadline3);
  line-height: var(--lineHeightHeadline3);
}

h4 {
  font-size: var(--fontSizeHeadline4);
  line-height: var(--lineHeightHeadline4);
}

li::marker {
  content: "";
  display: none;
}

ul,
li {
  list-style-type: none;
}

/* #### Content #### */
.content {
  margin-top: 48px;
  margin-bottom: 20px;
  padding: 0px !important;
  min-height: calc(100vh - 158px);
  max-width: 370px;
}

.content .content-title {
  color: var(--myIHGrey);
  margin-bottom: 16px;
  font-size: var(--fontSizeHeadline4);
  font-weight: var(--fontWeightRegular);
  line-height: var(--lineHeightHeadline4);
  text-align: center;
}

.content .content-subtitle {
  font-size: var(--fontSizeMedium);
  color: var(--myIHNeutralGrey);
  margin-bottom: 20px;
  line-height: var(--lineHeightMedium);
  text-align: center;
}

.content .content-image {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.content .content-note {
  background-color: var(--disabledFields);
  font-weight: var(--fontWeightRegular);
  font-style: italic;
  text-align: center;
  padding: 8px 16px;
  border-radius: 2px;
  color: var(--myIHNeutralGrey);
  line-height: var(--lineHeightMedium);
  max-width: 370px;
  margin: auto;
  margin-bottom: 24px;
  font-size: var(--fontSizeMedium);
}

.mobile-device .content, .mobile-device .content .content-note {
  max-width: 100%;
  width: 100%;
}

/* #### Form #### */
form {
  margin: 0 auto;
}

form .required {
  color: var(--myIHRed);
}

.isPbdrx .required {
	color: var(--headerPurple);
}

form .required.pbdrx {
  color: var(--headerPurple);
}

form .label {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  align-self: stretch;
  color: var(--myIHNeutralGrey);
}

.login-container {
  position: relative;
  max-width: 370px;
  margin: auto;
  top: 153px;
  text-align: center;
}

label {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  color: var(--myIHNeutralGrey);
  font-size: var(--fontSizeSmall);
}

input {
  width: 100%;
  height: 42px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--buttonRadius);
  box-sizing: border-box;
  font-size: var(--fontSizeMedium);
  line-height: var(--lineHeightMedium);
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--myIHGrey);
}

input[type="password"],
input#password,
input#newPassword,
input#currentPassword {
  padding-right: 48px !important;
}

input::placeholder {
  color: var(--myIHNeutralGrey);
}

input[type="email"]:hover:not(:disabled, :read-only),
input[type="password"]:hover:not(:disabled, :read-only),
input[type="number"]:hover:not(:disabled, :read-only),
input[type="date"]:hover:not(:disabled, :read-only),
input[type="text"]:hover:not(:disabled, :read-only) {
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15) inset;
}

input::-webkit-input-placeholder {
  color: var(--myIHNeutralGrey);
}

input:-moz-placeholder {
  color: var(--myIHNeutralGrey);
  opacity: 1;
}

input::-moz-placeholder {
  color: var(--myIHNeutralGrey);
  opacity: 1;
}

input:-ms-input-placeholder {
  color: var(--myIHNeutralGrey);
}

input::-ms-input-placeholder {
  color: var(--myIHNeutralGrey);
}

#userEnteredVerificationCode_label {
  color: var(--myIHGrey);
}

.tip-icon {
  cursor: pointer;
}

.terms-container input[type="checkbox"] {
  padding: 0px !important;
}

input::placeholder {
  color: var(--verifyButtonDisabled);
}

input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: var(--buttonRadius);
  box-sizing: border-box;
  font-size: var(--fontSizeMedium);
  line-height: var(--lineHeightMedium);
}

input[type="email"]:focus {
  border: 1px solid var(--myIHNeutralGrey);
}

input,
input[type="checkbox"],
textarea,
select {
  outline: none;
}

.ssn-input {
  max-width: calc(100% - 120px);
}

@media (min-width: 768px) {
  .grid-2 .col-sm-6 {
    width: 50%;
  }
}

@media (min-width: 768px) {

  .grid-2 .col-sm-1,
  .grid-2 .col-sm-2,
  .grid-2 .col-sm-3,
  .grid-2 .col-sm-4,
  .grid-2 .col-sm-5,
  .grid-2 .col-sm-6,
  .grid-2 .col-sm-7,
  .grid-2 .col-sm-8,
  .grid-2 .col-sm-9,
  .grid-2 .col-sm-10,
  .grid-2 .col-sm-11,
  .grid-2 .col-sm-12 {
    float: left;
  }
}

.grid-2 .col-xs-12 {
  width: 100%;
}

select {
  width: 100%;
  padding: 10px;
  height: 42px;
  color: var(--myIHGrey);
  font-size: var(--fontSizeMedium);
  font-style: normal;
  font-weight: 400px;
  line-height: var(--lineHeightMedium);
}

.something-wrong-desc {
  color: var(--myIHNeutralGrey);
  text-align: center;
  font-size: var(--fontSizeMedium);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lineHeightMedium);
  padding-top: 16px;
}

.something-wrong-title {
  color: var(--myIHGrey);
  text-align: center;
  font-size: var(--fontSizeHeadline4);
  font-style: normal;
  font-weight: 400;
  line-height: var(--lineHeightHeadline4);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0px 1000px white inset !important;
  border-color: var(--myIHGrey);
}

input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--myIHGrey);
  box-shadow: none !important;
}

input:-internal-autofill-selected {
  box-shadow: 0 0 0px 1000px white inset !important;
  color: var(--myIHGrey);
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background: #e9e9e9;
  margin-top: -5px;
  margin-bottom: 24px;
}

/* #### Button Styles #### */
.btn {
  display: flex;
  width: 100%;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--buttonRadius);
  background: var(--myIHRed);
  color: white;
  font-size: var(--fontSizeMedium);
  font-weight: var(--fontWeightBold);
  line-height: var(--lineHeightMedium);
  transition: background-color 0.3s;
  border: none;
}

.btn.timeout-stay {
  width: 30%;
  float: right;
}

.btn.timeout-leave {
  float: right;
  background: transparent;
  color: var(--myIHRed);
  width: 30%;
}

.isPbdrx .btn.timeout-leave {
  float: right;
  background: transparent;
  color: var(--headerPurple);
  width: 30%;
}

.isPbdrx .btn.timeout-leave:hover {
  color: var(--purpleHover);
}

.btn.get-started {
  width: 160px;
  height: 42px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn:hover {
  color: var(--buttonHover);
}

.isPbdrx .btn:hover {
  color: var(--purpleHover);
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn:focus-visible {
  background: var(--myIHRed);
  color: white;
}

.btn-secondary {
  display: flex;
  width: 100%;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--buttonRadius);
  background: #fff;
  color: var(--myIHRed);
  font-size: var(--fontSizeMedium);
  font-weight: var(--fontWeightSemiBold);
  line-height: var(--lineHeightMedium);
  transition: background-color 0.3s;
  border: 2px solid var(--myIHRed);
}

.isPbdrx .btn-secondary {
  color: var(--headerPurple);
  border: 2px solid var(--headerPurple);
}

.isPbdrx .btn-secondary:hover {
  color: var(--purpleHover);
  border: 2px solid var(--purpleHover);
}

.btn-secondary.timeout-stay {
  width: 30%;
  float: right;
}

.btn-secondary.get-started {
  width: 190px;
  height: 42px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.btn-secondary.timeout-leave {
  float: right;
  background: transparent;
  color: var(--myIHRed);
  width: 30%;
}

.btn-secondary:hover {
  color: var(--buttonHover);
  border-color: var(--buttonHover);
}

.btn-secondary:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--buttonHover);
}

.btn-secondary:focus-visible {
  background: var(--myIHRed);
  color: white;
}

.isPbdrx .btn:not(.timeout-leave):not(.textLink) {
  background-color: var(--headerPurple);
  color: white;
}

.isPbdrx .btn:hover:not(:disabled):not(.timeout-leave):not(.textLink) {
  background-color: var(--purpleHover);
}

.btn:disabled {
  background-color: var(--buttonDisabled) !important;
  color: var(--verifyButtonDisabled) !important;
  opacity: 1 !important;
}

.btn.disabled {
  background-color: var(--buttonDisabled) !important;
  color: var(--verifyButtonDisabled) !important;
  opacity: 1 !important;
}

.btn:hover:not(:disabled):not(.timeout-leave):not(.textLink) {
  background-color: var(--buttonHover);
  color: white;
}

.isPbdrx .btn:hover:not(:disabled):not(.timeout-leave):not(.textLink) {
  background-color: var(--darkPurple);
}

button#resendPin {
  margin-top: 16px;
}

.textLink {
  margin: auto;
  display: flex;
  border: none;
  background-color: transparent;
  gap: 10px;
  color: var(--myIHRed);
  font-size: var(--fontSizeSmall);
  font-weight: var(--fontWeightSemiBold);
  line-height: var(--lineHeightSmall);
  transition: background-color 0.3s;
}

.textLink:hover {
  color: var(--buttonHover);
}

.isPbdrx .textLink {
  color: var(--headerPurple);
}

.isPbdrx .textLink:hover {
  color: var(--purpleHover);
}

.isPbdrx .edit-link-no-label {
  fill: var(--headerPurple);
}
.isPbdrx .edit-link-no-label:hover {
  fill: var(--purpleHover);
}

.textLink:disabled {
  color: var(--verifyButtonDisabled) !important;
}

.verify-btn {
  color: var(--myIHRed);
  text-align: center;
  font-size: var(--fontSizeSmall);
  font-weight: var(--fontWeightSemiBold);
  line-height: var(--lineHeightSmall);
  background: none;
  border: none;
  margin-top: 24px;
}

.verify-btn:hover:not(:disabled) {
  color: var(--buttonHover);
}

.verify-btn:disabled {
  color: var(--verifyButtonDisabled) !important;
  opacity: 1;
}

input::-ms-reveal {
  display: none !important;
}

.toggle-password {
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 35px;
  padding: 0;
  margin: 0;
  padding-top: 1px;
}

/* #### Validation Messages #### */
#verificationCodeWrapper+.validation-message.error {
  display: none;
}

#requiredFieldMissing {
  display: none !important;
}

.validation-message {
  font-size: var(--fontSizeSmall);
  line-height: var(--lineHeightSmall);
  color: var(--errorBorderColor);
  display: flex;
  align-items: flex-start;
  margin-top: 6px;
}

.validation-message svg {
  margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
}

.validation-message img {
	margin-right: 8px;
  margin-top: 2px;
  flex-shrink: 0;
}

.highlight-orange {
  border-color: var(--errorBorderColor) !important;
}

input.highlight-orange::placeholder {
  color: var(--errorBorderColor) !important;
}

.validation-message.success {
  color: var(--successColor);
}

.content-warning {
  color: var(--errorBorderColor) !important;
}

.password-toggle-icon {
  height: 24px;
  width: 24px;
}

/* #### Error / Validation #### */
.email-validation-text {
  display: flex;
  padding: 10px 8px 0px 0px;
  align-items: center;
  gap: var(--layout-padding-size-8, 8px);
  align-self: stretch;
  max-height: 20px;
}

.blank-email-icon {
  display: flex;
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  height: 20px;
}

.blank-email-text {
  height: 20px;
}

.blank-email-text p {
  font-size: var(--fontSizeSmall);
  line-height: var(--lineHeightSmall);
  overflow: hidden;
  color: var(--errorBorderColor);
  text-overflow: ellipsis;
  height: 20px;
  margin: 0px;
}

.error-message {
  display: flex;
  gap: 12px;
  text-align: left;
  background-color: #fcf0e8;
  border-left: 4px solid var(--errorBorderColor);
  padding: 16px;
  border-radius: 2px;
  font-size: 13px;
  color: #333;
  margin-bottom: 24px;
}

.error-message a {
  color: var(--myIHRed);
  font-weight: var(--fontWeightSemiBold) !important;
  text-decoration: none;
}

.error-icon {
  color: #e74c3c;
  font-size: 18px;
  font-weight: bold;
  margin-right: 0px !important;
  margin-left: -4px;
  margin-top: -3px;
}

.error-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#claimVerificationServerError {
  visibility: hidden;
  height: 10px;
}

.error-text strong {
  font-size: var(--fontSizeMedium);
  line-height: var(--lineHeightMedium);
  font-weight: var(--fontWeightSemiBold);
}

.error-text p {
  color: var(--myIHGrey);
  font-size: var(--fontSizeSmall);
  line-height: var(--lineHeightSmall);
  margin: 0px;
}

/* ### Footer #### */
.footer {
  text-align: center;
  padding: 16px;
  font-size: var(--fontSizeSmall);
  color: var(--myIHNeutralGrey);
  line-height: var(--lineHeightSmall);
}

.footer a {
  color: var(--myIHRed);
  text-decoration: none;
  cursor: pointer;
}

/* Loading overlay styles */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .90);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
}

.loader-container { 
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  padding: 36px 24px;
  background-color: #ffffff;
}

.loader-container p {
  font-size: 28px;
  line-height: 34px;
  color: #373737;
  font-family: 'TodaySansNowPro-Light';
  margin: 0;
}

.mobile-device .loader-container p {
  font-size: 24px;
  line-height: 30px;
}

.loader-svg {
  width: 48px; 
  height: 48px;
  margin-top: 10px; 
  animation: spin 1s linear infinite; /* Rotate the SVG in a circle */
}

/* CSS animation for circular rotation */
@keyframes spin {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}


/* Modal Styles */
.modal {
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  margin: auto;
  border: 1px solid #888;
  width: 370px;
  border-radius: 8px;
}

.mobile-device .modal-content {
  width: 100%;
  max-width: 100%;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 24px 15px 24px;
}

#timeoutModal .modal-header {
  border: none;
}

.modal-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--myIHGrey);
  font-size: var(--fontSizeLarge);
  line-height: var(--lineHeightLarge);
  font-weight: var(--fontWeightSemiBold);
}

.close-btn {
  border: none;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  font-weight: bold;
  color: #888;
  padding-right: 12px;
}

.bodyText {
  color: var(--myIHGrey);
  font-size: var(--fontSizeMedium);
  line-height: var(--lineHeightMedium);
}

.modal-body {
  font-size: var(--fontSizeMedium);
  padding: 20px 24px;
  font-size: var(--fontSizeMedium);
  padding: 20px 24px;
}

.modal-body button {
  margin-top: 40px;
}

input.phone-input:read-only:-webkit-autofill {
  box-shadow: 0 0 0px 1000px var(--inputReadonlyColor) inset !important;
}

input.email-input:read-only {
	background: #F4F3F0;
}

.tip-icon {
  position: absolute;
  right: 0;
  top: 2px;
}

/* Get App Modal */
.app-backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.30);
  z-index: 10;
}
.qr-modal {
  position: fixed;
  background: white;
  padding: 30px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  border-radius: 16px 8px 16px 16px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.10);
  width: 188px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
}

.qr-svg {
  width: 12px;
  height: 12px;
}

.svg-red {
  fill: var(--myIHRed);
}

.svg-purple {
  fill: var(--headerPurple);
}

.svg-red:hover {
  fill: var(--buttonHover);
}

.svg-:hover {
  fill: var(--darkPurple);
}

.qr-modal-close {
  display: flex;
  width: 12px;
  height: 12px;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 12px;
  top: 12px;
  flex-shrink: 0;
  cursor: pointer;
}
.qr-footer-text {
  color: #676767;
  text-align: center;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.app-qr, .app-qr svg {
  width: 100%;
}

/* Modal backdrop */
.help-modal-backdrop {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f4f3f0;
  z-index: 999;
  display: none;
}

.help-modal {
  position: absolute;
  z-index: 1000;
  display: none;
  background-color: #f4f3f0;
  border-radius: 8px;
  top: -6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.help-modal.show {
  opacity: 1;
  visibility: visible;
}

.help-modal .modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.help-modal .help-modal-title {
  color: var(--myIHGrey);
  margin-bottom: 16px;
}

.help-modal .help-modal-header .help-close-icon,
.help-modal .tip-icon, .close-modal {
  cursor: pointer;
}

.help-modal .help-modal-body {
  margin-top: 10px;
  font-size: 16px;
  color: #676767;
  line-height: 22px;
}

.help-modal .help-close-icon {
  float: right;
  position: absolute;
  right: 0;
  top: 8px;
}

.help-modal .help-ok {
  padding: 0px;
  margin: 16px 0px 0px 0px;
}

.dim {
  opacity: 0.2;
}

.toast {
  border: none !important;
  max-width: 370px;
  width: 100%;
  position: fixed;
  bottom: 24px;
}


/* #### Bootstrap Toast Overrides #### */
.toast-icon {
  margin-right: 12px;
  margin-top: -3px;
}

.toast-body {
  padding: var(--bs-toast-padding-x);
  word-wrap: break-word;
  background-color: rgba(55, 55, 55, 0.95);
  color: white;
  border-radius: 6px;
  font-size: var(--fontSizeSmall);
  line-height: var(--lineHeightSmall);
}

/* #### Iframe CSS #### */
.iframe-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.iframe-container .content {
  margin-top: 32px !important;
  max-width: 370px !important;
  margin-bottom: 0px !important;
  width: 100% !important;
}

.iframe-container .content-title {
  font-weight: var(--fontWeightSemiBold);
  font-size: var(--fontSizeHeadline3);
  line-height: 30px;
}

.modal-mobileView .iframe-container .content {
	margin-top: 24px !important;
	padding: 0px 24px !important;
}

.modal-mobileView .iframe-container .content-title {
	font-weight: var(--fontWeightSemiBold) !important;
	font-size: var(--fontSizeLarge) !important;
	line-height: var(--fontSizeHeadline3) !important;
}

/* #### Loader CSS #### */
.main-content-opacity {
  opacity: 0.2;
}

.in-app-main-content {
  display: none;
}

.circle-loader-title {
  margin-bottom: 24px;
  font-family: 'TodaySansNowPro-ExtraLight';
  font-weight: 300;
  color: var(--myIHGrey);
}

.circle-loader {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.mobile-device .circle-loader-title {
  font-family: 'TodaySansNowPro-ExtraLight';
  font-size: var(--fontSizeHeadline3);
  line-height: var(--lineHeightHeadline3);
}

.loader {
  background: white;
  padding: 24px;
  height: 22%;
  z-index: 10;
  width: 100%;
}

.mobile-device .loader {
  height: 22px !important;
}

/* #### Mobile Version #### */

.mobile-device .modal-header {
  padding: 15px 16px;
}

.mobile-device .header {
  display: flex;
  background-color: #fff;
  border-bottom: none;
  box-shadow: 0px 3px 3px 0px rgba(55, 55, 55, 0.15);
  height: 60px;
  padding: 4% 0px 3% 0px;
}

.mobile-device .login-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  top: 33px;
  text-align: center;
}

.mobile-device .content p {
  color: var(--myIHNeutralGrey);
}

.mobile-device .content h1 {
  color: var(--myIHGrey);
  margin-bottom: 10px;
  font-size: var(--fontSizeHeadline1);
  line-height: var(--lineHeightHeadline1);
  text-align: center;
}

.mobile-device .header-logo img {
  margin: auto;
  height: 43px;
}

.mobile-device .header-link {
  display: none;
}

.isPbdrx .header-link {
  display: none;
}

.mobile-device form {
  max-width: 767px;
  width: 100%;
}

.mobile-device .container {
  padding: 0px 16px;
}

.mobile-device .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mobile-device .content {
  max-width: 100%;
  width: 100%;
}

/* ### TEXT LINK ### */
.text-link-large {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.text-link-medium {
  font-size: 1rem;
  line-height: 1.375rem;
}

.text-link-medium2 {
  font-size: 1rem;
  line-height: 1.375rem;
}

.text-link-small {
  font-size: .875rem;
  line-height: 1.25rem;
}

.text-link-xsmall {
  font-size: .75rem;
  line-height: 1rem;
}

@media screen and (max-width: 1024px) {
  .header-link {
    right: 20px;
  }

  .header-logo img {
    left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .content {
    margin-top: 24px;
  }

  .horizontal-line {
    width: 100%;
    height: 1px;
    background: #e9e9e9;
    margin-top: 32px;
    margin-bottom: 24px;
  }

  .text-link-xsmall {
    font-size: .625rem;
    line-height: 1.5rem;
    font-weight: var(--fontWeightRegular);
  }

  .text-link-medium2 {
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: var(--fontWeightSemiBold);
  }

  .text-link-large {
    font-size: .875rem;
    line-height: 1.25rem;
  }

  .header-link {
    right: 10px;
  }

  .header-logo img {
    left: 10px;
  }

  .content-image {
    margin-top: 0px !important;
    margin-bottom: 24px;
    height: 100% !important;
  }

  .content-image svg {
    height: 114px;
    width: 114px;
  }

  .container {
    padding-right: 15px;
    padding-left: 15px;
  }

  .modal-header {
    padding: 15px 16px;
  }

  .modal-body {
    padding: 24px 16px 16px 16px;
  }

  .modal-body button {
    margin-top: 32px;
  }
}

@media screen and (max-width: 450px) {

  .modal-content {
    margin: auto;
    border: 1px solid #888;
    width: 100%;
    border-radius: 8px;
    margin: auto 16px;
  }

  .modal-content {
    margin: auto;
    border: 1px solid #888;
    width: 100%;
    border-radius: 8px;
    margin-right: 16px;
    margin-left: 16px;
  }
}

.error-msg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

@media screen and (min-width: 1440px) {
  .error-msg {
    width: 370px;
  }

  .mobile-device .error-msg {
    width: 100%;
  }

  .btn-secondary.get-started {
    width: 190px;
  }
}

.header-white {
  height: 44px !important;
  background-color: white !important;
}

.header-pink {
  height: 44px !important;
  background-color: #d31145 !important;
}

.mobile-app-loader {
  margin-top: 0px !important;
}

.pbdrx-header {
  border-bottom: 10px solid var(--headerPurple);
}

.pbdrx-img {
  max-width: 450px !important;
}

.header-color,
.header-color:hover:not(:disabled):not(.timeout-leave) {
  background: var(--headerPurple) !important;
}

.pbdrx-color:not(:disabled) {
  color: var(--darkPurple) !important;
  fill: var(--darkPurple) !important;
}

.footer a:not(.pbdrx-secondary-color) {
  color: var(--myIHRed) !important;
}

.pbdrx-secondary-color {
  color: var(--headerPurple) !important;
}

.footer a:not(.pbdrx-secondary-color):hover {
  color: var(--darkRed) !important;
}

/* #### Bootstrap Container Overrides #### */
@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1170px !important;
  }
}



@media (min-width: 992px) and (max-width: 1199px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 970px !important;
  }

  .text-link-xsmall {
    font-size: .625rem;
    line-height: 1.5rem;
    font-weight: var(--fontWeightSemiBold);
  }

  .btn-secondary.get-started {
    width: 160px;
  }
}

@media (min-width: 767px) and (max-width: 991px) {
  .text-link-xsmall {
    font-size: .75rem;
    line-height: 1rem;
    font-weight: var(--fontWeightRegular);
  }
}

@media (max-width: 991px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 750px !important;
  }

  .btn-secondary.get-started {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .container, .container-md, .container-sm {
      max-width: 100% !important;
  }

  .pbdrx-img {
    max-width: 250px !important;
  }
}

button.secondary.wrong-enrollment,
.secondary-link.wrong-enrollment {
  background-color: var(--white) !important;
  color: var(--headerPurple) !important;
}

button.secondary.myih-wrong-enrollment {
  background-color: var(--white) !important;
  color: var(--myIHRed) !important;
}