/* mixin to support multiple browsers transition property, dots at the end mean "variable argument list
 usage:
 a {
	@include transition(border 0.3s, margin 0.5s);
 }
*/
/* global styles for the entire app */
body, html {
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  color: #212121;
}

a[role="link"] {
  cursor: pointer;
}

.page-headline-container {
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  color: #212121;
}

@media (max-width: 767px) {
  .page-headline-container {
    margin-bottom: 15px;
    font-size: 18px;
  }
}

.breadcrumbContainer .breadcrumb {
  font-size: 12px;
  background-color: transparent;
  padding: 0;
  margin: 5px 0;
  border-radius: 0;
}

.step-indicators {
  margin: 5px 0;
}

.nowrap {
  white-space: nowrap;
}

.foundErrors {
  color: #cc0000;
  font-weight: 500;
  margin-bottom: 5px;
}

.form-group .form-control {
  height: 34px;
  font-size: 14px;
}

.form-group .fieldLabel {
  font-weight: 500;
}

.form-group .fieldLabelError {
  color: #cc0000;
  font-weight: 500;
}

.inlineErrorHelp {
  color: #cc0000;
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}

.bold {
  font-weight: 500;
}

.italic {
  font-style: italic;
}

section {
  display: block;
  margin-bottom: 20px;
}

section.last {
  margin-bottom: 0;
}

.inline-block {
  display: inline-block;
}

.inline-block.second {
  margin-left: 5px;
}

.helpIconRolloverTitle {
  background-color: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.help-icon-image {
  cursor: pointer;
}

.helpIconRolloverBody {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-top: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.help-icon-popup-container {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.help-icon-popup-container .title-container {
  background-color: #f7f7f7;
  padding: 6px 12px;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.help-icon-popup-container .title-container .title {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
}

.help-icon-popup-container .title-container .close-icon {
  display: inline-block;
  float: right;
  cursor: pointer;
  position: relative;
}

.help-icon-popup-container .title-container .close-icon:before {
  position: absolute;
  top: -2px;
  right: 0;
  content: '\f00d';
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  color: #777;
}

.help-icon-popup-container .body-container {
  padding: 6px 12px;
  font-size: 14px;
}

.footerContainer .contentContainer {
  max-width: 1100px;
  margin: 0 auto;
  width: inherit;
}

@media (max-width: 767px) {
  .form-group .fieldLabel {
    margin-bottom: 2px;
  }
  .form-group .fieldLabelError {
    margin-bottom: 2px;
  }
}

@media (max-width: 360px) {
  .step-indicators img {
    width: 275px;
  }
}

/* mixin to support multiple browsers transition property, dots at the end mean "variable argument list
 usage:
 a {
	@include transition(border 0.3s, margin 0.5s);
 }
*/
.form-group {
  margin-bottom: 16px;
}

.form-group .form-control-label {
  font-size: 14px;
  font-weight: 500;
  color: #494949;
  line-height: 1;
  margin-bottom: 3px;
}

.form-group .form-control-label.error {
  color: #d32f2f;
}

.form-group .form-control {
  font-size: 16px;
  color: #494949;
  border: 1px solid #d1d4db;
  border-radius: 5px;
  height: 40px;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
}

.form-group .form-control:focus {
  border-color: #286851;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(9, 179, 176, 0.26);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(9, 179, 176, 0.26);
}

.form-group .dropdown-container {
  position: relative;
}

.form-group .dropdown-container .dropdown {
  width: 100%;
  padding: 7px 12px 5px;
  padding-right: 34px;
  cursor: pointer;
}

.form-group .dropdown-container .dropdown::-ms-expand {
  display: none;
}

.form-group .dropdown-container:after {
  content: "\f107";
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: "Font Awesome 5 Pro";
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  pointer-events: none;
}

.form-group.has-error .form-control {
  border-color: #d32f2f;
}

.form-group.has-error .form-control:focus {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 0, 0, 0.24);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(204, 0, 0, 0.24);
}

@media (min-width: 768px) {
  .form-group .form-control-label.side {
    margin-top: 15px;
    margin-bottom: 0;
  }
  .form-group .form-control-label.side.text {
    margin-top: 5px;
  }
}

.inlineErrorHelp {
  font-size: 14px;
  color: #d32f2f;
  margin-top: 3px;
}

@media (max-width: 767px) {
  .form-group .form-control-label {
    font-size: 12px;
  }
  .form-group .form-control {
    font-size: 14px;
    height: 36px;
  }
  .form-group .dropdown-container .dropdown {
    padding-right: 32px;
  }
  .form-group .dropdown-container:after {
    top: 9px;
    font-size: 20px;
  }
  .inlineErrorHelp {
    font-size: 12px;
    margin-top: 2px;
  }
}

.forgot-password-page-container {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #212121;
}

.forgot-password-page-container *,
.forgot-password-page-container *:before,
.forgot-password-page-container *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.forgot-password-page-container a {
  color: #286851;
  text-decoration: none;
}

.forgot-password-page-container a:link, .forgot-password-page-container a:visited {
  color: #286851;
  text-decoration: none;
}

.forgot-password-page-container a:hover {
  color: #39745e;
  text-decoration: underline;
}

.forgot-password-page-container a:focus {
  color: #5b8c7a;
  text-decoration: underline;
}

.forgot-password-page-container a:active {
  color: #6d9888;
  text-decoration: none;
}

.forgot-password-page-container .container {
  max-width: 1100px;
}

.forgot-password-page-container .no-wrap {
  white-space: nowrap;
}

.forgot-password-page-container .page-headline-container {
  margin-top: 20px;
}

.forgot-password-page-container .forgot-password-form-container .instructions {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .forgot-password-page-container {
    font-size: 14px;
  }
  .forgot-password-page-container .forgot-password-form-container .button-container .btn {
    font-size: 14px;
  }
}
