/*
 * Variables
 * Taken from Zeplin:
 * https://app.zeplin.io/project/5e149fcfc64dc19a6e53bea9/styleguide
 * for new colors ask designer or use generator:
 * http://chir.ag/projects/name-that-color/
 */
p {
  color: #011a6e;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 22px;
  margin: 0;
  font-weight: 600;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media only screen and (min-width: 960px) {
  h1 {
    font-size: 62px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 26px;
  }
  h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 18px;
  }
}
body {
  margin: 0;
  height: 100vh;
  overflow: auto;
  font-family: "Open Sans", opensans, sans-serif;
  color: #022bb8;
  background-color: #f5f5f5;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

a {
  color: #022bb8;
  font-weight: 600;
}

h1.heading {
  font-size: 22px;
  font-weight: 600;
  padding-left: 18px;
  color: #000000;
}

h1.fe-title {
  font-size: 22px;
  color: #000000;
}

.fe-subtitle {
  color: #000000;
}

.fe-background-logo {
  display: none;
}
@media only screen and (min-width: 768px) {
  .fe-background-logo {
    display: block;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-size: 490px auto;
    background-position: right -147px bottom -147px;
    background-repeat: no-repeat;
    background-image: url(/img/fe-logo-background.svg);
    z-index: -1;
  }
}
@media only screen and (min-width: 1240px) {
  .fe-background-logo {
    background-position: right -210px bottom -210px;
    background-size: 700px auto;
  }
}

.pejkarta-background-logo {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pejkarta-background-logo {
    display: block;
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-size: 400px auto;
    background-position: right -17px bottom -17px;
    background-repeat: no-repeat;
    background-image: url(/img/pejkarta-logo-background.svg);
    z-index: -1;
  }
}
@media only screen and (min-width: 1240px) {
  .pejkarta-background-logo {
    background-position: right -100px bottom -100px;
    background-size: 700px auto;
  }
}

.fe-header-wrapper {
  justify-content: space-between;
  margin: 16px auto;
}
@media only screen and (min-width: 580px) {
  .fe-header-wrapper {
    height: 80px;
    padding: 0 30px;
    margin-left: 0;
    margin-bottom: 0;
  }
}

.header__logo-img {
  display: none;
}
.header__logo-img.small-screen {
  width: 48px;
  height: 48px;
  display: block;
}
@media only screen and (min-width: 580px) {
  .header__logo-img {
    width: 212px;
    display: block;
  }
  .header__logo-img.small-screen {
    display: none;
  }
}

.pejkarta-header__logo-img {
  display: none;
}
.pejkarta-header__logo-img.small-screen {
  width: 48px;
  height: 48px;
  display: block;
}
@media only screen and (min-width: 580px) {
  .pejkarta-header__logo-img {
    width: 212px;
    display: block;
  }
  .pejkarta-header__logo-img.small-screen {
    display: none;
  }
}

.fe-main-container {
  background-color: #fff;
  border-radius: 40px 40px 0 0;
  margin-top: 8px;
  min-width: 320px;
  width: 100%;
  justify-self: center;
}
@media only screen and (min-width: 580px) {
  .fe-main-container {
    align-self: center;
    border-radius: 40px;
    padding: 48px;
    width: 492px;
  }
}
.fe-main-container .fe-main-container-content {
  padding: 0 24px 24px;
}
@media only screen and (min-width: 580px) {
  .fe-main-container .fe-main-container-content {
    padding: 0;
  }
}

.section-top {
  padding: 24px 24px 0;
  text-align: center;
}
@media only screen and (min-width: 580px) {
  .section-top {
    padding: 0;
  }
}

.heading {
  margin: 16px 0 16px;
}

.fe-footer .footer__text {
  font-size: 0.875rem;
  color: #000000;
  text-align: center;
  padding: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.fe-footer .footer__text span {
  background-color: #f5f5f5 !important;
}

.text--center {
  text-align: center;
  color: #000000;
}

.text--warning {
  color: #D3021A;
}

.warning-text {
  display: flex;
  align-items: center;
  grid-gap: 8px;
}

.title-logo {
  width: 100px;
}

form {
  display: flex;
  flex-direction: column;
}
form .text-block {
  margin: 0 0 50px 0;
  color: #000000;
}
form .text-block p {
  color: #000000;
}
@media only screen and (min-width: 580px) {
  form {
    width: 472px;
    margin: auto;
  }
}

.input-box {
  display: flex;
  grid-gap: 8px;
  position: relative;
  padding: 6px 0;
  border-bottom: solid 1px #656565;
  margin-bottom: 40px;
  margin-top: 10px;
}
@media only screen and (min-width: 580px) {
  .input-box {
    margin-bottom: 30px;
    border-bottom: solid 1px #656565;
  }
}

input {
  font-family: "Open Sans", sans-serif;
  width: 100%;
  border: none;
  transition: all 0.25s ease;
  box-shadow: none;
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  padding: 0;
  z-index: 2;
  background: transparent;
  cursor: auto;
  line-height: 1.5;
}
input:focus {
  outline: none;
}
input:focus + label {
  transition: all 0.5s ease;
  font-size: 0.75rem;
  bottom: 36px;
}

label {
  font-size: 1rem;
  font-weight: 600;
  color: #656565;
  position: absolute;
  bottom: 6px;
  text-transform: uppercase;
  transition: all 0.25s ease;
}
label.forced-focus, label.focused {
  font-size: 0.75rem;
  bottom: 36px;
  color: #656565 !important;
}
.error label {
  color: #D3021A;
}

.phone-number__countries {
  color: #000000;
  border: none;
  border-right: solid 1px #8da0da;
  font-weight: 600;
  padding: 0 3px;
  width: 62px;
}

.phone-number__prefix {
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
}

.margin-bottom {
  margin-bottom: 20px;
}

.button__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.button__container.forgotten-link-box {
  flex-direction: row;
  justify-content: space-between;
}
.button__container .forgot-link__container {
  align-self: center;
  font-size: 0.875rem;
  margin-bottom: 20px;
}
.button__container button, .button__container a {
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 580px) {
  .button__container {
    flex-direction: row;
  }
  .button__container button, .button__container a {
    width: auto;
  }
}

.btn-link-container {
  display: block;
  flex-direction: row;
  margin: auto;
}

.btn-link {
  padding-top: 20px;
  font: inherit;
}

button.btn-link {
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font: inherit;
  font-weight: 600;
}

.fe-btn-primary {
  background-color: #022bb8;
  border-radius: 24px;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  font-weight: bold;
  line-height: normal;
  margin: 0;
  padding: 13px 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease-out, color 0.25s ease-out, opacity 0.25s ease-out;
}
.fe-btn-primary:hover {
  background-color: #011a6e;
}
.fe-btn-primary:focus {
  outline: 2px solid #022bb8;
  outline-offset: 2px;
}

.fe-btn-secondary {
  background-color: #fff;
  border-radius: 24px;
  border: 1px;
  border-style: solid;
  border-color: #022bb8;
  color: #022bb8;
  cursor: pointer;
  font-size: 100%;
  font-weight: bold;
  line-height: normal;
  margin: 0;
  padding: 13px 32px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.25s ease-out, color 0.25s ease-out, opacity 0.25s ease-out;
}
.fe-btn-secondary:focus {
  outline: 2px solid #022bb8;
  outline-offset: 2px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.step {
  display: none;
}
.step.active {
  display: flex;
  flex-direction: column;
  grid-gap: 24px;
}

.action__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media only screen and (min-width: 580px) {
  .action__container {
    align-items: baseline;
    flex-direction: row;
  }
}

.password label.password {
  color: #D3021A;
}

.password__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.password .password__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.username label.username {
  color: #D3021A;
}

.username__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.username .username__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.phone-number label.phone-number {
  color: #D3021A;
}

.phone-number__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.phone-number .phone-number__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.ssn label.ssn {
  color: #D3021A;
}

.ssn__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.ssn .ssn__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.email label.email {
  color: #D3021A;
}

.email__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.email .email__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.text label.text {
  color: #D3021A;
}

.text__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.text .text__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.newPassword label.newPassword {
  color: #D3021A;
}

.newPassword__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.newPassword .newPassword__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.confirmPassword label.confirmPassword {
  color: #D3021A;
}

.confirmPassword__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.confirmPassword .confirmPassword__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.regex-format label.regex-format {
  color: #D3021A;
}

.regex-format__error-message {
  -moz-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -o-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0 0;
  opacity: 0;
  text-align: right;
  transition: visibility 0.25s ease-out, opacity 0.25s ease-out;
  display: none;
  visibility: hidden;
  padding-top: 6px;
}

.regex-format .regex-format__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}
.email .username__error-message,
.phone-number .username__error-message,
.ssn .username__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}

.newPassword .password__error-message,
.confirmPassword .password__error-message {
  opacity: 1;
  display: block;
  visibility: visible;
  margin-top: -34px;
  padding-bottom: 34px;
}

.format-error .phone-number {
  color: #D3021A;
}

.hidden {
  display: none;
}

.fe-alert--reset {
  max-width: 520px;
  margin: auto;
  background: #fff;
  padding: 24px;
}

.matching-error-lending,
.tooltip-lending {
  background: #022bb8;
  color: #fff;
}

#password-format-hint,
#tooltipbox {
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  border-radius: 7px;
}
#password-format-hint.show,
#tooltipbox.show {
  margin-bottom: 40px;
  display: block;
}

#matching-error {
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  border-radius: 7px;
}
#matching-error.show {
  display: block;
}

#matching-error {
  display: none;
}

#password-format-hint-error {
  display: none;
}

#countdown {
  display: none;
  text-align: center;
}

.password-format-hint-info {
  margin: 16px 0px;
}

#password-format-hint {
  padding-bottom: 16px;
  color: #000000;
}

.password-format-hint,
.passwordtooltiptext,
.matching-error-text {
  display: block;
  font-size: 0.75rem;
  text-align: center;
  padding: 16px;
}

#format-error-message {
  display: none;
}
#format-error-message.error {
  display: block;
  color: #D3021A;
  font-size: 0.875rem;
  font-style: italic;
  text-align: center;
  margin-top: 0;
}

/*
*  SECURITY ALERT PANEL
*/
.security-alert-panel {
  display: flex;
  flex-direction: row;
  border-style: solid;
  border-color: #000000;
  border-radius: 20px;
}

.security-alert-item-first {
  flex-grow: 1;
  margin: 10px;
}

.security-alert-item-second {
  flex-grow: 4;
  margin: 10px;
  font-size: 0.8125rem;
  text-align: left;
}

.security-alert-item-icon {
  width: 50px;
  height: 50px;
  display: block;
  background: url(/img/security.svg) left top no-repeat;
}

.security-alert-item-second > :first-child {
  font-weight: bold;
}

/*
* SET PASSWORD SUCCESS
*/
.success-wrapper {
  display: flex;
  justify-content: center;
  margin: 20px;
}

.success-icon {
  display: block;
  width: 66px;
  height: 48px;
  margin: 10px;
  background: url(/img/changed-accepted.svg) left top no-repeat;
}

.success-message-wrapper {
  margin: 20px;
  font-size: 0.9375rem;
  color: #000000;
}

.security-alert-item-msg {
  color: #000000;
}

/*
 *  MODAL
 */
#pinModal {
  display: none;
}

.modal {
  background-color: #fff;
  border-radius: 40px;
  border: 0;
  box-shadow: 0 14px 35px 1px rgba(0, 0, 0, 0.1);
  padding: 24px;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-sizing: border-box;
  z-index: 1000;
  margin: 0 auto;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .button__container {
  align-items: flex-end;
}
.modal .heading {
  color: #022bb8;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  margin: 16px 0;
}
@media only screen and (min-width: 768px) {
  .modal {
    margin: 0 auto;
    padding: 48px;
    width: 588px;
    overflow-y: hidden;
  }
}
.modal .updating-login-text {
  text-align: left;
  margin: 16px;
  color: #000000;
}
.modal .updating-login-title {
  margin: 22px;
  color: #000000;
}

.modal::-webkit-backdrop,
.modal::backdrop,
.modal + .backdrop {
  background-color: rgba(29, 29, 27, 0.7);
  height: 100%;
  width: 100%;
}

.modal__text {
  line-height: 1.5;
  margin: 0 0 24px 0;
  color: #011a6e;
}

.modal__contacts {
  line-height: 1.5;
  margin: 0 0 48px 0;
  font-weight: 600;
}

.modal__link {
  color: #011a6e;
  display: inline-block;
  margin-bottom: 4px;
  text-decoration: none;
  white-space: nowrap;
}
.modal__link:last-of-type {
  margin-bottom: 0;
}
.modal__link:hover {
  text-decoration: underline;
}

#updating-login-popup {
  text-align: center;
}
#updating-login-popup.closed {
  display: none;
}

/*
 *  VERIFICATION CODE
 */
.verification-code__container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin: 0 auto 16px auto;
  position: relative;
}

.verification-code__input {
  height: 1px;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
  margin: -1px;
  overflow: hidden;
}

.verification-code__items {
  display: flex;
  align-items: center;
  justify-content: center;
  width: inherit;
}

.verification-code__item {
  border-radius: 8px;
  border: 1px solid #000000;
  margin: 0 4px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.8em;
  text-align: center;
}

.verification-code__item.filled {
  color: #000000;
}

@media (max-width: 520px) {
  .verification-code__item {
    border-radius: 8px;
    border: 1px solid #011a6e;
    margin: 0 2px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.5em;
    text-align: center;
  }
}
@media (max-width: 400px) {
  .verification-code__item {
    border-radius: 6px;
    border: 1px solid #011a6e;
    margin: 0 2px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 1.2em;
    text-align: center;
  }
}
/*
*  info hint
*/
.hint-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.hint-left {
  margin: 4px;
  font-size: 1.2rem;
}

.hint-right {
  margin: 4px;
  font-size: 0.8125rem;
  text-align: left;
}

.hint-icon {
  width: 24px;
  height: 24px;
  display: block;
  background: url(/img/info.svg) left top no-repeat;
}

/*
 *  LINE SEPARATOR
 */
.line-separator-container {
  display: flex;
  align-items: center;
}

.line-separator {
  flex-grow: 3;
  border-top: solid 2px #8da0da;
  margin: 3em 0px;
}

.line-separator-text {
  padding: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #8da0da;
  text-transform: uppercase;
}

/*
 *  LANGUAGE SWITCHER
 */
.language-switcher {
  text-align: right;
  padding-right: 40px;
}

/*# sourceMappingURL=style.css.map */
