/*************************************/
/* GLOBAL PORTAL CSS VARIABLES */
/*************************************/
/* For the theme colors and fonts */
:root {
  /*Teal*/
  --HPSP-button-main-color: #007680;
  --HPSP-button-font-color: #fff;
  --HPSP-button-main-color-hover: #3d3d3d;
  --HPSP-button-font-color-hover: #3d3d3d;
  /* Teal */
  --HPSP-accordion-border-color: #E0E0E0;
  --HPSP-accordion-background-color: #FCFCFC;
  --HPSP-accordion-background-color-hover: #FFF;
  /* validation red */
  --HPSP-invalid-error-color: #d60000;
}
/* Primary button */
.hpsp-btn {
  background: var(--HPSP-button-main-color);
  color: var(--HPSP-button-font-color);
  border: 3px solid var(--HPSP-button-main-color);
  margin-right: 1em;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  border-radius: 4px;
  vertical-align: middle;
  -webkit-transition: border 0.1s ease, color 0.1s ease;
  -o-transition: border 0.1s ease, color 0.1s ease;
  transition: border 0.1s ease, color 0.1s ease;
}
.hpsp-btn:hover {
  background-color: var(--HPSP-button-main-color-hover) !important;
  color: #fff !important;
  border-color: var(--HPSP-button-main-color-hover);
  text-decoration: underline;
}
/* Transparent button */
.hpsp-btn-transparent {
  background-color: transparent !important;
  color: var(--HPSP-button-main-color) !important;
}
.hpsp-btn-transparent:hover {
  background-color: transparent !important;
  color: var(--HPSP-button-font-color-hover) !important;
  border-color: var(--HPSP-button-main-color-hover) !important;
  text-decoration: underline;
}
.hpsp .entity-form-conainer {
  width: 100%;
}
.hpsp .entity-form-conainer .entity-form-frame {
  width: 100%;
  height: 100%;
  border: none;
}
/* Link button */
.hpsp-link-button {
  background: none;
  border: none;
  padding: 0;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
  color: var(--HPSP-button-main-color);
  margin-bottom: 0.5em;
}
/* Link button hover */
.hpsp-link-button:hover {
  font-weight: bolder;
}
/* Back button */
.back-button {
  font-weight: 700;
}
.au-text-input {
  width: 100%;
}
.numbersOnly::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/**********************************************/
/* styles for the MultiForm Step Progress Bar */
/**********************************************/
.multi-progress-bar {
  background-color: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: #F3F3F3 1px solid;
}
ol.progress.left {
  margin: 0;
  padding: 0;
}
.multi-progress-bar li {
  padding: 0;
  margin: 0;
  height: 4.5em;
  display: block;
}
.multi-progress-bar li.current {
  background-color: rgba(0, 118, 128, 0.1);
  color: inherit;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.multi-progress-bar span {
  text-align: left;
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}
.multi-progress-bar div.pg-tab {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
  padding: 1em;
  height: 100%;
}
.multi-progress-bar div.current {
  border-left: #007680 5px solid;
}
div.pg-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25em;
  margin: 0.25em 0.5em;
}
div.pg-tab > img {
  height: 1.2em;
  width: 1.2em;
}
.pg-tab:hover {
  background-color: rgba(0, 118, 128, 0.05);
}
.multi-progress-bar div.pg-tab-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
  padding: 0.25em;
}
span.pg-header-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #222;
}
span.pg-tab-heading {
  font-weight: 500;
}
span.pg-tab-status {
  font-size: 0.95em;
}
/**********************************************/
/* styles for accordion */
/**********************************************/
.hpsp-accordion-container {
  border: var(--HPSP-accordion-border-color) 1px solid;
  border-radius: 0.25em;
  overflow: hidden;
  background: var(--HPSP-accordion-background-color);
  display: inline-block;
  width: 100%;
  margin-bottom: 0.25em;
}
.hpsp-accordion-container:hover {
  background: var(--HPSP-accordion-background-color-hover);
}
.hpsp-accordion-panel {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5em;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.hpsp-accordion-panel > a {
  text-decoration: none;
}
.hpsp-accordion-panel span {
  color: var(--HPSP-button-main-color);
  font-size: 2em;
}
.hpsp-accordion-panel > a:focus {
  outline-offset: 4px !important;
  outline: 2px solid #ea9c50 !important;
}
.hpsp-accordion-body {
  padding: 0.25em 1em;
}
.hpsp-accordion-container:has(.in) .hpsp-accordion-panel {
  background: var(--HPSP-button-main-color);
}
.hpsp-accordion-container:has(.in) .hpsp-accordion-panel > h3 {
  color: var(--HPSP-button-font-color);
}
.hpsp-accordion-container:has(.in) .hpsp-accordion-panel span {
  color: var(--HPSP-button-font-color);
}
/**********************************************/
/* styles for the hpsp readonly card  */
/**********************************************/
.hpsp-readonly-card {
  background: #F0F3F5;
  padding: 1em;
  margin-top: 1em;
  font-family: "Segoe UI", Helvetica, Arial, sans-serif;
}
.hpsp-readonly-card-data {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: left;
  -webkit-align-items: left;
      -ms-flex-align: left;
          align-items: left;
  gap: 5em;
}
.hpsp-readonly-card-col {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.col-section {
  margin-left: 1em;
}
.hpsp-h2-as-h3 {
  font-size: 24px;
}
.hpsp-readonly-card-col > h2 {
  font-weight: 500;
  font-size: 1.2em;
}
.hpsp-readonly-card-field {
  margin-top: 1em;
}
.hpsp-readonly-card-field > h3 {
  font-size: 0.9em;
  margin: 0;
  font-weight: 600;
}
.hpsp-readonly-card-field-h2-as-h3 {
  font-size: 14.4px;
  font-weight: 600;
}
.hpsp-readonly-card-field > label {
  color: var(--HPSP-text-font-color);
  font-weight: normal;
  font-size: 0.8em;
}
.hpsp-readonly-card-footer {
  margin-top: 1.5em;
  padding-top: 0.5em;
  color: var(--HPSP-text-font-color);
  font-size: 0.9em;
  border-top: #A0A0A0 solid 1px;
}
/**********************************************/
/* styles for the hpsp inline validation      */
/**********************************************/
.datetimepicker.hpsp-invalid-field {
  border-color: var(--HPSP-invalid-error-color);
}
.hpsp-invalid-field.datetimepicker > input[type=text] {
  border-color: var(--HPSP-invalid-error-color);
}
.hpsp-invalid-field.input-group-addon {
  border-color: var(--HPSP-invalid-error-color);
}
.form-control.hpsp-invalid-field {
  border-color: var(--HPSP-invalid-error-color);
}
.hpsp-invalid-feedback {
  color: var(--HPSP-invalid-error-color);
}
/**********************************************/
/* styles for the hpsp mandatory fields  */
/**********************************************/
.crmEntityFormView .cell div.info.required label:after {
  content: ' (mandatory)';
  color: var(--HPSP-invalid-error-color) !important;
  font-weight: 400;
}
.html-required::after {
  content: "(mandatory)";
  color: var(--HPSP-invalid-error-color) !important;
  font-weight: bold;
}
.html-required-lower::after {
  content: "(mandatory)";
  color: var(--HPSP-invalid-error-color) !important;
  font-weight: 400;
  display: inline;
}
.html-required-lower > h3 {
  display: inline;
}
/**********************************************/
/* styles for HomePage  Contents */
/**********************************************/
.au-header.au-header {
  padding: 0px 2px 0px 2px !important;
}
.quicklinks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.card {
  vertical-align: top;
  display: inline-block;
  padding: 1em;
  margin: 1.5%;
  border-radius: 10px;
  max-width: 16rem;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
}
.card-body {
  min-height: 200px;
  position: relative;
}
.card-container.card-width-md .card {
  max-width: 18rem;
}
.card-container.card-width-md .card-body {
  width: 280px;
}
.card-link {
  text-decoration: none !important;
  color: #007680 !important;
  position: absolute;
  bottom: 4px;
}
.separator {
  border: 0;
  clear: both;
  display: block;
  width: 100%;
  background-color: #cbcbcb;
  height: 0.5px;
}
/**********************************************/
/* styles related to Service Page  Contents */
/**********************************************/
.service-card {
  display: inline-block;
  padding: 1em;
  margin-top: 1.5%;
  margin-right: 4%;
  border-radius: 10px;
  max-height: 13rem;
  max-width: 26rem;
  vertical-align: top;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.5);
}
.service-card-title {
  height: 3rem;
}
.service-card-text {
  height: 3rem;
}
/**********************************************/
/* styles related to Navigation bar           */
/**********************************************/
.nav-pills > li {
  float: inherit;
}
.nav > li > a:focus {
  background-color: #e9f4f3;
}
.nav .open > a {
  background-color: #e9f4f3 !important;
  border-left-color: #007b89 !important;
}
.nav > li > a {
  border-left: 0.5rem solid transparent;
}
.nav > li.current > a,
.nav > li > a:hover {
  background-color: #e9f4f3;
  border-left-color: #007b89;
  border-radius: 10px;
}
.homenavleft {
  margin-left: 1rem;
  margin-top: 0.5rem;
  margin-right: 1rem;
  /*
    background-color:#FCFCFC;
    box-shadow: 2px 0px 4px 0px rgba(7, 42, 100, 0.10);
    border-right: 0.5rem solid transparent;
    border-right-color: #eee;
    */
}
.dropdown-menu > li > a:focus {
  background-color: #e9f4f3;
}
.dropdown-menu > li > a {
  border-left: 0.5rem solid transparent;
}
.dropdown-menu > li > a:hover {
  background-color: #e9f4f3;
  border-left: 0.5rem solid transparent;
  border-left-color: #007b89;
}
.clientaccount {
  padding: 10px 15px 10px 15px;
}
/*************************************************************/
/* styles related to Top navigation - User profile           */
/*************************************************************/
.hpspuserprofilenav {
  border-radius: 50%;
  background: #49417c;
  color: #ffffff;
  text-align: center;
  padding: 0.25rem;
  font-weight: normal;
  font-size: small;
  text-decoration: none;
  word-break: keep-all;
}
.hpsp-dropdown {
  text-decoration: none !important;
}
.hpspuserprofilepopup {
  min-width: 350px;
  padding: 25px 0 2px 0;
  font-size: 13px;
  font-weight: 400;
}
/* ODC sharepoint subgrid styles*/
#odc_sharepoint_subgrid.subgrid .sharepoint-grid .view-grid .btn {
  display: none;
}
#odc_sharepoint_subgrid.subgrid .sharepoint-grid .view-grid .dropdown-menu {
  display: block;
  position: static !important;
  position: initial !important;
  border: 0 !important;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  text-align: center;
  max-width: 95px;
  min-width: 95px;
  width: 95px;
  left: auto !important;
  top: auto !important;
}
#odc_sharepoint_subgrid.subgrid .sharepoint-grid .view-grid .dropdown-menu li {
  display: inline-block;
  text-align: center;
}
#odc_sharepoint_subgrid.subgrid .sharepoint-grid .view-grid .dropdown-menu li a {
  padding: 2px !important;
  margin: 0;
  border-left: none;
}
#odc_sharepoint_subgrid.subgrid .sharepoint-grid .view-grid .dropdown-menu li a > span {
  font-size: inherit !important;
  margin-right: 4px;
}
#odc_sharepoint_subgrid.subgrid .sharepoint-grid .view-grid .dropdown-menu li a:hover {
  color: inherit;
  background: transparent;
  border: none;
}
#odc_sharepoint_subgrid.subgrid input::file-selector-button {
  background: var(--HPSP-button-main-color) !important;
  color: var(--HPSP-button-font-color) !important;
  border: 3px solid var(--HPSP-button-main-color);
  margin-right: 1em;
  font-weight: 500;
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  border-radius: 4px;
  vertical-align: middle;
  -webkit-transition: border 0.1s ease, color 0.1s ease;
  -o-transition: border 0.1s ease, color 0.1s ease;
  transition: border 0.1s ease, color 0.1s ease;
}
#odc_sharepoint_subgrid.subgrid input::file-selector-button:hover {
  background-color: var(--HPSP-button-main-color-hover) !important;
  color: #fff !important;
  border-color: var(--HPSP-button-main-color-hover);
  text-decoration: underline;
}
.btn:active,
.btn.active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.checkbox input[type="checkbox"] {
  margin-left: -2px !important;
}
#submit-agreement {
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #ffffff;
  text-decoration: none;
  border-radius: 0px;
  background-color: #49417c !important;
  cursor: pointer;
  vertical-align: middle;
  outline: 2px solid transparent;
  outline-offset: 4px;
  border: 3px solid #49417c;
}
#submit-agreement:active:not(:disabled),
#submit-agreement:focus:not(:disabled),
#submit-agreement:hover:not(:disabled) {
  border: 3px solid #49417c;
  outline: 2px solid #ea9c50 !important;
  text-decoration: none !important;
}
.hpsp .mobile-only {
  display: block;
}
.hpsp .none-mobile {
  display: none;
}
.hpsp .centered {
  text-align: center !important;
}
.hpsp .clear-both {
  clear: both;
}
.hpsp .full-width,
.hpsp.full-width {
  width: 100% !important;
}
.hpsp .hidden {
  display: none;
}
.hpsp .ml-15p {
  margin-left: 15px;
}
.hpsp .mr-15p {
  margin-right: 15px;
}
.hpsp .mt-8p {
  margin-top: 8px;
}
.hpsp .mt-20p {
  margin-top: 20px;
}
.hpsp .mb-10p {
  margin-bottom: 10px;
}
.hpsp .gap-8p {
  min-height: 8px;
}
.hpsp .gap-16p {
  min-height: 16px;
}
.hpsp .gap-24p {
  min-height: 24px;
}
.hpsp .gap-32p {
  min-height: 32px;
}
.hpsp .top-gap-lg {
  margin-top: 40px;
}
.hpsp .top-gap-md {
  margin-top: 30px;
}
.hpsp .bottom-gap-md {
  margin-bottom: 30px;
}
.hpsp .top-gap-sm {
  margin-top: 20px;
}
.hpsp .no-word-break {
  word-break: keep-all;
}
.hpsp .help-section {
  margin-top: 20px;
  margin-bottom: 20px;
}
.hpsp .help-section ul.help-content {
  padding-left: 0px;
}
.hpsp .help-section ul.help-content li {
  list-style: none;
  margin-top: 10px;
  margin-bottom: 10px;
}
.hpsp .external-link::after {
  content: '';
  background: url(/external-link.svg) no-repeat;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
  vertical-align: middle;
  -webkit-filter: invert(17%) sepia(3%) saturate(8%) hue-rotate(354deg) brightness(93%) contrast(91%);
  filter: invert(17%) sepia(3%) saturate(8%) hue-rotate(354deg) brightness(93%) contrast(91%);
}
.hpsp.icon.external-link-icon {
  width: 11px;
  height: 11px;
  margin-left: 5px;
}
.hpsp .page-title {
  margin-top: 24px;
  margin-bottom: 30px;
}
.hpsp .page-content {
  margin-bottom: 20px;
}
.hpsp .page-content .page-section {
  margin-top: 16px;
}
.hpsp .field-edit .crmEntityFormView {
  margin-left: -28px;
}
.hpsp .field-edit fieldset {
  margin-bottom: 0px;
}
.hpsp .field-edit .form-custom-actions {
  display: none !important;
}
.hpsp .field-edit .validation-summary {
  margin-left: 25px;
}
.hpsp .dropdown-menu.profile-menu li {
  margin-top: 4px;
  margin-bottom: 6px;
  margin-left: 4px;
  margin-right: 8px;
}
.hpsp .dropdown-menu.profile-menu li > a {
  padding: 6px 20px;
  color: #313131;
  border-left: 2px solid transparent;
  border-right: none;
  border-top: none;
  border-bottom: none;
  outline-offset: 4px;
  outline: 2px solid transparent;
}
.hpsp .dropdown-menu.profile-menu li > a:active,
.hpsp .dropdown-menu.profile-menu li > a:focus,
.hpsp .dropdown-menu.profile-menu li > a:hover {
  background-color: rgba(73, 65, 124, 0.1) !important;
  border-left-color: #49417c !important;
  outline-offset: 4px;
  outline: 2px solid #ea9c50;
}
.hpsp .checkbox label.field-label {
  margin-left: 30px;
}
.hpsp .job-title-edit .action-container {
  margin-top: -24px;
}
.hpsp .crmEntityFormView .cell div.info.required label:after {
  color: #d60000 !important;
  font-weight: 400;
}
.hpsp .field-validation-message {
  margin-top: 40px;
  padding-top: 15px;
  color: #d60000;
}
.hpsp .page-header {
  padding: 0.8rem;
  background-color: #e9f4f3;
  margin-top: 16px;
  border-radius: 10px;
  margin-bottom: 16px;
}
.hpsp .page-header > h1 {
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 0px;
}
.hpsp .grid .row .card {
  min-width: 100%;
}
.hpsp .card.child-service .card-body,
.hpsp .card.parent-service .card-body {
  min-height: 220px;
}
.hpsp .card.child-service .card-body h2,
.hpsp .card.parent-service .card-body h2 {
  font-size: 24px;
}
.hpsp a:focus {
  outline-offset: 4px !important;
  outline: 2px solid #ea9c50 !important;
}
.hpsp.pillars-container {
  height: 12px;
  width: 100%;
  padding-left: 120px;
  background-color: #49417c;
}
.hpsp.pillars-container .pillar {
  width: 300px;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#6d6796), color-stop(9%, #6d6796), color-stop(9%, #c9c6d8), color-stop(21%, #c9c6d8), color-stop(21%, #807aa4), color-stop(33%, #807aa4), color-stop(33%, #6d6796), color-stop(39%, #6d6796), color-stop(39%, #a39fbd), color-stop(46%, #a39fbd), color-stop(46%, #c9c6d8), color-stop(66%, #c9c6d8), color-stop(66%, #6d6796), color-stop(72%, #6d6796), color-stop(72%, #a39fbd), color-stop(92%, #a39fbd), color-stop(92%, #807aa4), to(#807aa4)) !important;
  background: -webkit-linear-gradient(left, #6d6796 0%, #6d6796 9%, #c9c6d8 9%, #c9c6d8 21%, #807aa4 21%, #807aa4 33%, #6d6796 33%, #6d6796 39%, #a39fbd 39%, #a39fbd 46%, #c9c6d8 46%, #c9c6d8 66%, #6d6796 66%, #6d6796 72%, #a39fbd 72%, #a39fbd 92%, #807aa4 92%, #807aa4 100%) !important;
  background: -o-linear-gradient(left, #6d6796 0%, #6d6796 9%, #c9c6d8 9%, #c9c6d8 21%, #807aa4 21%, #807aa4 33%, #6d6796 33%, #6d6796 39%, #a39fbd 39%, #a39fbd 46%, #c9c6d8 46%, #c9c6d8 66%, #6d6796 66%, #6d6796 72%, #a39fbd 72%, #a39fbd 92%, #807aa4 92%, #807aa4 100%) !important;
  background: linear-gradient(to right, #6d6796 0%, #6d6796 9%, #c9c6d8 9%, #c9c6d8 21%, #807aa4 21%, #807aa4 33%, #6d6796 33%, #6d6796 39%, #a39fbd 39%, #a39fbd 46%, #c9c6d8 46%, #c9c6d8 66%, #6d6796 66%, #6d6796 72%, #a39fbd 72%, #a39fbd 92%, #807aa4 92%, #807aa4 100%) !important;
}
.hpsp.main-content-container {
  margin-left: 98px;
  margin-right: 15px;
}
.hpsp.main-nav-container {
  display: block;
}
.hpsp.main-nav-container:after {
  display: block;
  content: '';
  width: 100%;
  height: 8px;
  background: #49417c;
}
.hpsp.main-nav-container .client-context {
  margin-right: 40px;
}
.hpsp.main-nav-container .user-profile-container {
  width: 100%;
  padding: 12px 120px 2px 120px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hpsp.main-nav-container .user-profile-container .user-profile-menu .dropdown-menu {
  right: 0px;
  left: unset;
}
.hpsp.main-nav-container .user-profile-container a.dropdown-toggle:hover,
.hpsp.main-nav-container .user-profile-container a.dropdown-toggle:focus,
.hpsp.main-nav-container .user-profile-container a.dropdown-toggle.active {
  outline-offset: 4px !important;
  outline: 2px solid #ea9c50 !important;
}
.hpsp .banner-logo {
  width: 100%;
  padding: 8px 120px;
  display: inline-block;
}
.hpsp .banner-logo > a {
  display: inline-block;
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  outline: 2px solid transparent !important;
  outline-offset: 4px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hpsp .banner-logo > a:hover,
.hpsp .banner-logo > a:focus,
.hpsp .banner-logo > a:active {
  outline: 2px solid #ea9c50 !important;
  outline-offset: 2px;
}
.hpsp .banner-logo > a > img {
  display: inline-block;
  border-right: 2px solid #959595;
  padding-right: 20px;
  width: 450px;
}
.hpsp .banner-logo .banner-heading {
  display: inline-block;
  margin-left: 10px;
}
.hpsp .banner-logo .beta-badge {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: 5px;
  background-color: #49417c;
  color: #ffffff;
  width: 80px;
  height: 36px;
  border-radius: 24px;
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.hpsp.feedback-info {
  background-color: #fcf8c3;
  border: 1px solid #faebcc;
  padding: 4px 15px;
  font-size: 14px;
  margin-left: -96px;
  margin-right: -15px;
}
.hpsp.feedback-info p {
  margin-top: 0;
  margin-bottom: 0;
}
.hpsp .left-nav-menu-wrapper {
  margin-right: 0px;
}
.hpsp .left-nav-menu-wrapper .main-nav-container {
  padding-right: 20px;
}
.hpsp .main-nav-container .homenavleft {
  width: 100%;
  padding-left: 2px;
  margin-left: 0px;
  margin-right: 0px;
}
.hpsp div button.btn:not(:first-child) {
  margin-left: 16px;
}
.hpsp button.btn.btn-default.launchentitylookup {
  margin-left: 0px !important;
}
.hpsp .left-nav-menu .nav-item {
  margin-top: 13px;
  margin-bottom: 13px;
  margin-left: 2px;
}
.hpsp .nav > li > a {
  border-radius: 0px;
  border-left: 2px solid transparent;
  color: #313131;
  padding: 4px 15px;
}
.hpsp .nav > li > a:active,
.hpsp .nav > li > a:focus,
.hpsp .nav > li > a:hover {
  background-color: rgba(73, 65, 124, 0.1);
  border-left-color: #49417c;
  outline: 2px solid #ea9c50;
  outline-offset: 4px;
}
.hpsp .nav > li.current > a {
  background-color: rgba(73, 65, 124, 0.1);
  border-left-color: #49417c;
}
.hpsp a.nav-link.client-accounts:before {
  content: '';
  background: url('/client_accounts.svg');
}
.hpsp .help-content a {
  color: #0077C8;
}
.hpsp .page-header.home-welcome {
  background-color: rgba(73, 65, 124, 0.1);
  border-radius: 0px;
  color: #313131;
}
.hpsp .page-header.home-welcome h2 {
  margin-bottom: 10px;
  margin-top: 10px;
  color: #313131;
}
.hpsp .callout {
  border-left: 4px solid #49417c;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  background: #F5F5F5;
}
.hpsp .form-control.test-control {
  color: red;
  border: 1px solid red;
}
.hpsp .create-personal-client-account {
  width: 65%;
  position: relative;
}
.hpsp .create-personal-client-account #telephone1_label,
.hpsp .create-personal-client-account #telephone2_label {
  visibility: hidden;
}
.hpsp .create-personal-client-account td.form-control-cell:has(select#doh_countrycodeid),
.hpsp .create-personal-client-account td.form-control-cell:has(select#doh_dialingcodeid_billing) {
  padding-right: 15px;
}
.hpsp .create-personal-client-account td.form-control-cell:has(input#telephone1),
.hpsp .create-personal-client-account td.form-control-cell:has(input#telephone2) {
  padding-left: 15px;
}
.hpsp .user-registration .crmEntityFormView .cell,
.hpsp .create-client-account .crmEntityFormView .cell {
  padding-left: 0;
}
.hpsp .user-registration .crmEntityFormView .actions > div,
.hpsp .create-client-account .crmEntityFormView .actions > div {
  padding-left: 0;
}
.hpsp .user-registration .crmEntityFormView #telephone1_label,
.hpsp .create-client-account .crmEntityFormView #telephone1_label,
.hpsp .user-registration .crmEntityFormView #telephone2_label,
.hpsp .create-client-account .crmEntityFormView #telephone2_label {
  color: transparent;
}
.hpsp .user-registration .crmEntityFormView .cell div.info.required label#telephone1_label:after,
.hpsp .create-client-account .crmEntityFormView .cell div.info.required label#telephone1_label:after,
.hpsp .user-registration .crmEntityFormView .cell div.info.required label#telephone2_label:after,
.hpsp .create-client-account .crmEntityFormView .cell div.info.required label#telephone2_label:after {
  color: transparent !important;
}
.hpsp .user-registration .crm-card.login-email-card,
.hpsp .create-client-account .crm-card.login-email-card {
  margin-bottom: 25px;
}
.hpsp .hpsp-theme .btn {
  font-size: 14px;
  line-height: 1.5;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  text-decoration: none;
  border-radius: 0px;
  cursor: pointer;
  vertical-align: middle;
  outline: 2px solid transparent;
  outline-offset: 4px;
  border: 3px solid transparent;
}
.hpsp .hpsp-theme .btn-primary {
  color: #ffffff;
  background-color: #49417c !important;
}
.hpsp .hpsp-theme .btn-primary:active:not(:disabled),
.hpsp .hpsp-theme .btn-primary:focus:not(:disabled),
.hpsp .hpsp-theme .btn-primary:hover:not(:disabled) {
  border-color: #49417c;
}
.hpsp .hpsp-theme .btn-secondary {
  color: #49417c;
  background-color: #f7f8f9 !important;
  border: 0.5px solid #49417c;
  padding-top: 10px;
  padding-bottom: 10px;
}
.hpsp .hpsp-theme .btn-link {
  color: #49417c !important;
  background-color: #ffffff;
  font-weight: bold;
  padding: 0px 3px;
}
.hpsp .hpsp-theme .btn-link:after {
  content: '';
  background: url(/purple-arrow.svg) no-repeat;
  display: inline-block;
  width: 32px;
  height: 22px;
  margin-left: 6px;
  vertical-align: middle;
}
.hpsp .hpsp-theme .btn-primary:active:not(:disabled),
.hpsp .hpsp-theme .btn-secondary:active:not(:disabled),
.hpsp .hpsp-theme .btn-link:active:not(:disabled),
.hpsp .hpsp-theme .btn-primary:focus:not(:disabled),
.hpsp .hpsp-theme .btn-secondary:focus:not(:disabled),
.hpsp .hpsp-theme .btn-link:focus:not(:disabled),
.hpsp .hpsp-theme .btn-primary:hover:not(:disabled),
.hpsp .hpsp-theme .btn-secondary:hover:not(:disabled),
.hpsp .hpsp-theme .btn-link:hover:not(:disabled) {
  outline: 2px solid #ea9c50 !important;
  text-decoration: none !important;
}
.hpsp .hpsp-theme .form-control {
  outline: 2px solid transparent;
  outline-offset: 4px;
}
.hpsp .hpsp-theme .form-control:focus {
  outline: 2px solid #ea9c50 !important;
  outline-offset: 4px !important;
}
select#doh_rdm_country.lookup.form-control {
  margin-top: 24px;
}
div#certdoc .col-sm-12,
div#letterdoc .col-sm-12,
div#otherdoc .col-sm-12,
div#certdoc .col-md-9,
div#letterdoc .col-md-9,
div#otherdoc .col-md-9,
div#certdoc .col-lg-9,
div#letterdoc .col-lg-9,
div#otherdoc .col-lg-9 {
  width: unset;
}
