/* Body */
.nureg {
  overflow-x: hidden;
}

/* Step containers */
.nureg-step__inner {
  box-sizing: border-box;
  padding: 50px;
  padding-bottom: 0;
}

/* .nureg-step__inner--btn-tray {
padding-top: 0;
} */

.nureg-step[data-step] {
  overflow-x: hidden;
  height: 0;
  transform: translateX(5%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
}

.nureg-step[data-step].nureg-step--show {
  height: auto;
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Typography */
.nureg-heading1,
.nureg-heading2,
.nureg-heading3 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0px;
  text-align: left;
  color: #d9b149;
}

.nureg-heading1 {
  font-size: 31px;
  line-height: 42px;
}

.nureg-heading2 {
  font-size: 24px;
  font-weight: 700;
}

.nureg-heading3 {
  font-size: 16px;
  line-height: 24px;
}

.nureg-paragraph {
  max-width: 934px;
  margin: 0;
  margin-bottom: 20px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  color: #000;
}

.nureg-paragraph.--internal-only {
  padding-bottom: 20px;
}

.nureg-paragraph--label {
  margin-bottom: 0;
}

.nureg-label--lg {
  display: block;
  margin: 0;
  margin-bottom: 5px;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0px;
  text-align: left;
  color: #000;
}

.nureg-req {
  color: #d94949;
  margin-left: 5px;
}

/* Button */
.nureg-btn,
#show-manual-company,
#show-pretech-manual-company {
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  color: #242423;
  background-color: #f5cb5c;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  cursor: pointer;
}

#show-manual-company,
#show-pretech-manual-company {
  display: inline-block;
}

/* Custom radio button / checkbox rows */
.nureg-radiorow,
.nureg-checkrow {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 10px;
  cursor: pointer;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  color: #242423;
}

.nureg-checkrow--push,
.nureg-radiorow--push {
  margin-bottom: 25px;
}

.nureg-radiorow__radio,
.nureg-checkrow__check {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  opacity: 0;
}

.nureg-radiorow__label,
.nureg-checkrow__label {
  margin-top: -3px;
  max-width: 549px;
  margin-right: 5px;
  transition: background-color 1s;
}

.nureg-radiorow--invalid .nureg-radiorow__label,
.nureg-checkrow--invalid .nureg-checkrow__label {
  background-color: #facfcf !important;
}

.nureg-radiorow__customradio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border-radius: 100%;
  background-color: #fff;
  border: solid 1px #d7dbec;
}

.nureg-radiorow__radio:checked ~ .nureg-radiorow__customradio {
  width: 8px;
  height: 8px;
  border: solid 6px #2f90dc;
}

.nureg-radiorow:hover .nureg-radiorow__customradio {
  border-color: #2f90dc;
}

.nureg-checkrow__customcheck {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 12px;
  border: solid 1px #d7dbec;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nureg-checkrow__check:checked ~ .nureg-checkrow__customcheck {
  border-color: #35a7ff;
  background-color: #35a7ff;
}

.nureg-checkrow:hover .nureg-checkrow__customcheck {
  border-color: #2f90dc;
}

/* Tooltips */
.nureg-tooltip {
  position: relative;
  overflow: visible;
}

.nureg-tooltip__icon {
  width: 15px;
  height: 15px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #d9b149;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
}

.nureg-tooltip__tip {
  display: none;
  width: 400px; /* <- TODO: make this fluid somehow... Ask how they will work on mobile. */
  position: absolute;
  right: -11px;
  top: 50%;
  box-sizing: border-box;
  padding: 10px 16px;
  border-radius: 4px;
  transform: translate(100%, -50%);
  font-family: Helvetica Neue;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: left;
  color: #242423;
  background-color: #fff4c9;
  /* TODO: Add box-shadow (after arrow... Below) */
}

.nureg-tooltip__tip::after {
  /* TODO: Add left arrow */
}

.nureg-tooltip__icon:hover ~ .nureg-tooltip__tip {
  display: block;
}

/* Inputs */
.nureg-text,
.nureg-select {
  display: block;
  width: 100%;
  max-width: 350px;
  height: 40px;
  line-height: 40px;
  box-sizing: border-box;
  margin-bottom: 15px;
  padding: 8px 16px;
  border: solid 1px #d7dbec;
  border-radius: 4px;
  color: #000;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
  outline: none;
  transition: background-color 1s;
}

.nureg-text--invalid {
  background-color: #facfcf !important;
}

.nureg-autocomplete {
  overflow: visible;
  display: block;
  width: 100%;
  max-width: 350px;
}

.nureg-autocomplete__options {
  z-index: 1;
  position: fixed;
  /* transform: translateY(calc(100% - 4px)); */
  top: 0;
  left: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-top: 4px;
  border: solid 1px #d7dbec;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  list-style: none;
  background-color: #fff;
}

.nureg-autocomplete__option {
  box-sizing: border-box;
  padding: 11px 5px;
  border-bottom: solid 1px #d7dbec;
  color: #000;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0px;
  text-align: left;
  cursor: pointer;
}

.nureg-autocomplete__option--hover {
  background-color: #d7dbec;
}

.nureg-autocomplete__option:last-of-type {
  border-bottom: 0;
}

/* Layout */
.nureg-2col {
  width: 100%;
  max-width: 743px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.nureg-2col__col {
  width: 100%;
  max-width: 350px;
  padding-bottom: 35px;
}

/* Overlay messages */
.nureg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  color: #000;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s, visibility 0.75s;
}

.nureg-overlay--open {
  opacity: 1;
  visibility: visible;
}

.nureg-overlay__message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 100%;
  max-width: 300px;
  text-align: center;
  opacity: 0;
  transition: transform 0.5s, opacity 0.5s;
}

.nureg-overlay__message--show {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/* Swal modal */
.swal-title,
.swal-text,
.swal-button {
  font-family: "Helvetica Neue", sans-serif;
}

.swal-title {
  color: rgba(0, 0, 0, .65);
  font-weight: 600;
  text-transform: none;
  position: relative;
  display: block;
  padding: 13px 16px;
  font-size: 27px;
  line-height: normal;
  text-align: center;
  margin-bottom: 0;
}

.swal-button {
  background-color: #f5cb5c;
  color: #fff;
  border: none;
  box-shadow: none;
  border-radius: 0px;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 24px;
  margin: 0;
  cursor: pointer;
}

.pre-tech-hiding {
  display: none;
}

#manual-company-form {
  margin-top: 20px;
}

#marketing-show-lookup-company {
  color: inherit;
}

/* Header */
.page-header {
  background-color: #333;
  color: #fff;
  height: 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: -8px;
  padding: 0;
  border: none;
}

.page-header .general-links {
  list-style: none;
}

.page-header .general-links li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  border-right: 1px solid #fff;
}

.page-header .general-links li:last-of-type {
  border-right: none;
}

.page-header .general-links li a {
  text-decoration: none;
  color: #fff;
  font-family: "Helvetica", "acumin-pro", "Arial", sans-serif;
  font-weight: 200;
}

/* Footer */
#footer_container {
  padding: 16px 32px;
  max-width: 100%;
}

#footer_container #footer_wrapper .terms {
  font-family: "Helvetica", "acumin-pro", "Arial", sans-serif;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 24px;
  font-size: 14px;
}

#footer_container #footer_wrapper .terms a {
  color: #000;
  text-decoration: none;
}

#footer_container #footer_wrapper .copyright {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-font-smoothing: antialiased;
  color: #333;
}

#footer_container #footer_wrapper .copyright li {
  font-family: "Helvetica", "acumin-pro", "Arial", sans-serif;
  font-weight: 400;
  line-height: 18px;
  font-size: 14px;
}

#footer_container #footer_wrapper .disclaimer {
  font-size: 12px;
  padding: 10px 0 0;
  font-family: "Helvetica", "acumin-pro", "Arial", sans-serif;
  color: #333;
}

/* WPL Logo */
.wpl-logo-wrapper {
  padding: 50px;
  margin-bottom: -100px;
}

.wpl-logo-wrapper .wpl-logo {
  max-width: 150px;
}
