﻿/**
import fonts
*/
@import url("grid.css");
@import url("keyframes.css");
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Nunito";
  src: url("../assets/fonts/Nunito-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
/**
    Variables
    colors
*/
/* reset & normalise */
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  line-height: 1.286em;
  vertical-align: baseline;
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 5px;
  width: 100%;
}
table th {
  text-align: left;
  padding: 5px 8px;
  border: 1px solid #000;
  word-break: break-all;
  min-width: 50px;
}
table td {
  padding: 5px 8px;
  border: 1px solid #000;
  text-align: left;
  word-break: break-all;
  min-width: 50px;
}

body {
  position: relative;
  min-height: 100vh;
  font-size: 0.875em;
  padding-top: 0;
  padding-bottom: 80px;
  background: #efefef;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.167em;
}

h1, h2 {
  font-size: 36px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  h1, h2 {
    font-size: 23px;
  }
}

.container .content .space-down {
  margin-bottom: 20px;
}

.container .content .no-margin {
  margin: 0;
}

form .form-wrapper .right {
  float: right;
  color: #287E56;
  font-size: 16px;
  position: relative;
  transition: 0.2s color;
}
form .form-wrapper .right:hover {
  color: #3ab87e;
}
@media screen and (max-width: 768px) {
  form .form-wrapper .right {
    font-size: 14px;
  }
}
form .form-wrapper .btn {
  margin-top: 0;
  min-width: 75px;
}
form .form-wrapper.button-wrapper {
  padding: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 635px) {
  form .form-wrapper.button-wrapper .right {
    position: static;
    display: flex;
    width: 100%;
  }
  form .form-wrapper.button-wrapper:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }
  form .form-wrapper.button-wrapper:last-child .btn {
    width: fit-content;
    min-width: fit-content;
    margin-bottom: 8px;
  }
}

.form-wrapper.flex-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.form-wrapper.flex-form .btn, .form-wrapper.flex-form .right {
  margin-top: 20px;
}

/* header */
.site-header {
  margin: 0 auto 0.8em;
  padding: 0;
  height: 300px;
}
.site-header .content {
  position: relative;
  width: 100%;
}
.site-header .content a {
  text-decoration: none;
}
.site-header .content h1, .site-header .content h2 {
  display: none;
}
.site-header .logo {
  left: 0;
  width: 100%;
  height: 300px;
}

/* footer */
.site-footer {
  zoom: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 9px 0 6px;
  background-color: white;
}
.site-footer .content {
  font-size: 0.857em;
}
.site-footer span, .site-footer a {
  float: left;
  color: #444444;
}
.site-footer .divider {
  padding: 0 4px;
  border-top: none;
}

.error-message {
  display: block;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px 55px;
  border: solid 1px #ea7878;
  background: #f8d0d0 url("../Images/exception.png") no-repeat 10px 9px;
  color: #444;
}

.container {
  position: relative;
  max-width: 700px;
  background-color: #fff;
  margin: 0 auto 50px;
  padding: 30px;
  border-radius: 12px;
}
.container.large {
  max-width: 960px;
}
.container .content {
  position: relative;
  overflow: hidden;
  padding: 0;
  overflow-wrap: break-word;
}
.container .content h1, .container .content h2, .container .content h3, .container .content h4 {
  color: #444;
}
.container .content h1 {
  font-size: 24px;
  margin: 20px 0 10px;
}
.container .content h2 {
  font-size: 18px;
  margin: 10px 0 7px;
}
.container .content h3 {
  font-size: 16px;
  margin: 10px 0 7px;
}
.container .content h4 {
  font-size: 14px;
  margin: 10px 0 7px;
}
.container .content ul {
  list-style: disc;
}
.container .content ol {
  list-style: decimal;
}
.container .content ul, .container .content ol {
  padding-left: 14px;
  margin-bottom: 7px;
}
.container .content ul li, .container .content ol li {
  margin-bottom: 3px;
}
.container .content ul.security-questions, .container .content ol.security-questions {
  list-style: none;
  padding-left: 0;
  margin: 25px 0;
}
.container .content ul.security-questions li, .container .content ol.security-questions li {
  margin-bottom: 10px;
}
.container .content p {
  margin-bottom: 7px;
}
.container .content blockquote {
  padding: 10px 20px 2px;
  margin-bottom: 10px;
  border-left: 5px solid #eeeeee;
}
.container .content pre {
  display: block;
  padding: 9px;
  margin: 0 0 10px;
  color: #333;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #f5f5f5;
}
.container .content.animated-transitions > * {
  transition: height 0.3s;
}
.container .view-state-container {
  height: auto;
  transition: height 0.3s;
}
@media screen and (max-width: 460px) {
  .container .view-state-container {
    min-height: 600px;
  }
}

.inner-content {
  border: none;
  padding: 25px 50px 20px;
  margin: 0;
}
@media only screen and (max-width: 635px) {
  .inner-content {
    padding: 25px 0;
  }
}
.inner-content p:first-child {
  margin-top: 0;
}
.inner-content.loading-content .loader {
  width: 50px;
  height: 50px;
  margin: 20px auto;
}
.inner-content.loading-content .loader > div {
  width: 8px;
}
.inner-content.loading-content h2, .inner-content.loading-content p {
  text-align: center;
}
.inner-content:after {
  display: table;
  clear: both;
  content: "";
}

.form-wrapper {
  margin-bottom: 25px;
  position: relative;
  min-width: 200px;
}
.form-wrapper.coloured-box {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  align-content: center;
  height: auto;
  padding: 0;
  margin: 5px 0 25px;
}
.form-wrapper.coloured-box .icon {
  opacity: 0.8;
  margin-right: 10px;
}
.form-wrapper.coloured-box .icon.phone {
  position: relative;
  left: -1px;
  top: -1px;
}
.form-wrapper.coloured-box .icon-text {
  margin: 0;
}
.form-wrapper.coloured-box .icon-text a {
  font-size: 16px;
  color: #287E56;
  position: relative;
  top: -1px;
}
.form-wrapper.coloured-box p {
  margin-bottom: 0;
}
.form-wrapper.selected {
  background-color: #0e7d07;
  color: #fff;
}
.form-wrapper.white-box {
  background-color: #fff;
  height: auto;
  min-height: initial;
}
.form-wrapper.transparent-box {
  background-color: transparent;
  height: auto;
  padding: 10px;
}

.divider {
  border-top: solid 1px #dedede;
  margin: 0;
  border-bottom: solid 1px #fcfcfc;
  border-left: none;
  border-right: none;
}

/* TEXT STYLING */
a {
  color: #333;
}

.bold-text {
  font-weight: 700;
  color: #444;
}

.small-text {
  font-size: 0.8em;
}

.icon-text {
  display: inline-block;
  margin: 10px;
  font-size: 1.2em;
  font-weight: 700;
  color: inherit;
  word-break: break-all;
}
.icon-text:hover {
  color: inherit;
  text-decoration: none;
}
.icon-text:visited {
  color: inherit;
}

.subheading {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0;
  padding: 0;
  color: #444 !important;
}
.subheading.large {
  font-size: 1.8em;
}

.content-text {
  font-size: 1em;
  margin: 15px 0;
  line-height: 1.3em;
  color: #444;
}
.content-text a {
  color: #444;
  font-weight: 700;
}
.content-text a:hover {
  color: inherit;
  text-decoration: none;
}
.content-text a:visited {
  color: inherit;
}
.content-text .link-text {
  position: static;
}

.link-text {
  transition: 0.2s color;
  border: 0;
  font-size: 16px;
  color: #287E56;
  cursor: pointer;
  font-weight: 400;
  background-color: transparent;
  text-decoration: underline;
}
.link-text:hover {
  color: #3ab87e;
  text-decoration: none;
}
.link-text.right.padding {
  right: 50px;
  bottom: 30px;
}

/* ICONS */
.icon {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display: inline-block;
}
.icon.email {
  background-image: url("../images/email-icon.png");
  float: left;
}
.icon.phone {
  background-image: url("../images/phone-icon.png");
  float: left;
}
.icon.lock {
  background-image: url("../images/lock-icon.png");
  float: left;
}
.icon.time {
  background-image: url("../images/time-icon.png");
  float: left;
}

/* BUTTONS & INPUTS & INTERACTIONS */
[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
  display: none !important;
}

.btn {
  position: relative;
  transition: 0.2s background-color;
  margin-top: 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  width: auto;
  max-width: 31%;
  padding: 8px 16px;
  background-color: #287E56;
  font-size: 14px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}
.btn:hover {
  background-color: #1c573c;
  color: #fff;
}
.btn:active {
  outline: none;
  box-shadow: none;
}
.btn[disabled]:hover {
  background-color: #a9a9a9;
}
.btn.action {
  margin-right: 10px;
}
.btn.action a, .btn.action a:link {
  color: #fff;
}
.btn.action:disabled {
  background-color: #a9a9a9;
  cursor: default;
}
.btn.loading {
  max-width: 100%;
  width: auto;
  padding-right: 62px;
}
.btn.loading .loader {
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
}
.btn.left {
  margin-right: 10px;
}
.btn .loader {
  display: none;
}
.btn span {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .btn {
    max-width: 60%;
    font-size: 12px;
  }
}

a.btn {
  display: block;
  text-decoration: none;
  color: #fff;
}

.input {
  border-radius: 0;
  font: inherit;
}
.input.text {
  display: block;
  width: 100%;
  height: 47px;
  margin-top: 5px;
  padding: 8px 10px;
  border: 1px solid #D7D7D7;
  border-radius: 6px;
  line-height: 47px;
  font-size: 14px;
  background: none;
  transition: 0.2s border-color;
  /* styling for icon states inside text inputs*/
  /*text input styling*/
}
.input.text.password-icon {
  padding-left: 10px;
  width: calc(100% - 65px);
}
.input.text.username-icon {
  padding-left: 10px;
}
.input.text.lock-icon {
  background: url("../images/lock-icon.png") no-repeat #fff;
  padding-left: 57px;
}
.input.text.reset-icon {
  background: url("../images/reset-sprite.png") no-repeat #fff;
  padding-left: 57px;
}
.input.text.mobile-icon {
  background: url("../images/mobile-sprite.png") no-repeat #fff;
  padding-left: 57px;
}
.input.text.email-icon {
  background: url("../images/email-sprite.png") no-repeat #fff;
  padding-left: 57px;
}
.input.text:hover {
  border-color: #979797;
}
.input.text:focus {
  border-color: #979797;
  outline: none;
}
.input.text:focus-visible {
  outline: auto;
}
.input.text:visited, .input.text:active {
  border-color: #979797;
  outline: none;
}
.input.text:invalid {
  box-shadow: none;
}
.input.radio {
  margin-right: 10px;
  cursor: pointer;
}
.input.radio.label {
  margin-left: 20px;
  cursor: pointer;
}
.input.label-heading {
  font-size: 16px;
  color: #2E2E2E;
  font-weight: 600;
}

.date-entry {
  background-color: #fff;
}
.date-entry input {
  float: left;
  border: none;
  width: 25px;
  text-align: center;
  margin-top: 14px;
}
.date-entry input.year {
  width: 40px;
}
.date-entry span {
  font-size: 22px;
  float: left;
  color: #444;
  margin: 9px 2px 0 2px;
}

.unmask {
  position: absolute;
  right: 1px;
  text-indent: -9999px;
  top: 24px;
  width: 46px;
  height: 45px;
  background: url("../images/eye-hidden.svg") no-repeat center #fff;
  border: none;
  border: 1px solid #D7D7D7;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.2s border-color;
}
.unmask.selected, .unmask.on {
  background-position: 0 -45px;
  background: url("../images/eye-open.svg") no-repeat center #fff;
}
.unmask:hover {
  border-color: #979797;
}

/* PASSWORD VALIDATION */
.password-validation {
  margin: 0 0 20px 0;
  padding: 0;
  width: 100%;
  min-height: 90px;
  overflow: auto;
}
.password-validation li {
  display: inline-block;
  width: 24.25%;
  background-color: #eee;
  text-align: center;
  float: left;
  margin-right: 1%;
  height: 90px;
  font-size: 12px;
  transition: opacity 0.4s linear;
}
.password-validation li:nth-child(4) {
  margin-right: 0;
}
.password-validation li span {
  font-size: 30px;
  display: block;
  margin-top: 10px;
}
.password-validation .invalid {
  color: #444;
}
.password-validation .alert {
  animation: alert linear 2s;
  animation-iteration-count: infinite;
}
.password-validation .valid {
  animation: complete linear 1s;
  animation-fill-mode: forwards;
}

/* TIMER */
.timer-wrap {
  position: relative;
  width: 79%;
  height: 8px;
  margin: 15px auto;
  background: #efefef;
  border: solid 1px #ccc;
}

.timer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 6px;
  background: #ddd;
}

/* ANIMATIONS */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.layer {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #fff;
}
.layer.help-content-layer {
  min-height: 100%;
}
.layer.help-content-layer .inner-content .coloured-box:last-child p .icon-text {
  margin-bottom: 3px;
}
.layer.help-content-layer .inner-content .btn.action {
  margin-top: 24px;
}

.dur3 {
  animation-duration: 3s;
}

.delay {
  animation-duration: 5s;
}

.delayed {
  animation-delay: 1s;
}

.container.loading fieldset.inner-content p.content-text {
  visibility: hidden;
  overflow: hidden;
  position: relative;
  height: 36px;
}
.container.loading fieldset.inner-content p.content-text:before {
  content: "";
  background-color: #ededed;
  height: 36px;
  visibility: visible;
  display: block;
}
.container.loading fieldset.inner-content p.content-text:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  visibility: visible;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-name: loader-animate;
  animation-timing-function: linear;
  width: 100%;
  height: 100%;
  background-color: #333;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
}
.container.loading form .form-wrapper > * {
  visibility: hidden;
}
.container.loading form .form-wrapper:not(.button-wrapper) {
  background-color: #ededed;
  height: 70px;
  visibility: visible;
  position: relative;
  overflow: hidden;
}
.container.loading form .form-wrapper:not(.button-wrapper):after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  visibility: visible;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-name: loader-animate;
  animation-timing-function: linear;
  width: 100%;
  height: 100%;
  background-color: #333;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
}
.container.loading form#login-form .form-wrapper.button-wrapper button {
  height: 35px;
  background-color: #287E56;
}

.shake {
  animation-name: shake;
}

.countdown {
  animation-name: countdown;
}

.ng-enter, .bounceInDown {
  display: block !important;
  animation-name: bounceInDown;
}

.ng-leave, .bounceOutUp {
  animation-name: bounceOutUp;
}

.ng-leave.stick {
  animation-name: none;
}

.loader {
  width: 100px;
  height: 30px;
  margin: 0;
  text-align: center;
}

.spinner > div {
  float: left;
  background-color: #333;
  height: 100%;
  width: 4px;
  margin: 0 1px;
  animation: stretchdelay 1.2s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

.spinner .rect2 {
  animation-delay: -1.1s;
}

.spinner .rect3 {
  animation-delay: -1s;
}

.spinner .rect4 {
  animation-delay: -0.9s;
}

.spinner .rect5 {
  animation-delay: -0.8s;
}

/**
    reset-password
*/
.reset-password .form-wrapper {
  margin-top: 25px;
}
.reset-password .resend-link-content-text {
  margin-bottom: 20px;
}
.reset-password .resend-link-form {
  padding: 0;
}
.reset-password .resend-link-form .btn {
  margin: 0;
}
.reset-password .resend-link-help .inner-content {
  padding-top: 0;
  padding-bottom: 0;
}
.reset-password .resend-link-help .inner-content .form-wrapper .btn {
  margin-top: 0;
}
@media screen and (max-width: 460px) {
  .reset-password .button-wrapper .right {
    margin-bottom: 40px;
  }
}

.reset-password-form-wrapper .reset-password-form-text {
  margin-top: 0;
  margin-bottom: 15px;
}
.reset-password-form-wrapper .password-validation {
  padding-left: 0;
  margin-bottom: 15px;
}
.reset-password-form-wrapper .password-validation li {
  border-radius: 6px;
}
.reset-password-form-wrapper .reset-password-form-list {
  padding-left: 0;
  list-style: none !important;
}
.reset-password-form-wrapper .reset-password-form-btn {
  padding: 0;
  margin-top: 25px;
}

.password-reset-success .last-paragraph {
  margin-bottom: 25px;
}

.reset-code-send .havent-recived-email {
  position: static;
  float: left !important;
  margin-top: 15px;
}

.error-message {
  border-radius: 6px;
  border: 0;
  background: #f8d0d0 url("../Images/exception.png") no-repeat 10px 15px;
}

.create-new-password .form-wrapper:last-child {
  margin-bottom: 0;
}
.create-new-password .password-validation {
  padding-left: 0;
  margin-bottom: 15px;
}
.create-new-password .password-validation li {
  border-radius: 6px;
}

/**
    reset password - help view
*/
.content.help-view {
  min-height: 293px;
}
@media screen and (max-width: 460px) {
  .content.help-view {
    min-height: 375px;
  }
}

/**
    page-header
*/
.page-header {
  position: relative;
  z-index: 10;
  margin: 0;
  border-bottom: 1px solid #D7D7D7;
  min-height: 56px;
  padding: 0 0 25px 0;
  background-color: transparent !important;
  background-image: none !important;
  font-weight: 300;
}
.page-header h1, .page-header h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  color: #2E2E2E;
}
@media screen and (max-width: 768px) {
  .page-header h1 span:not(.link-text), .page-header h2 span:not(.link-text) {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .page-header h1, .page-header h2 {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .page-header.sso-page-header {
    padding-right: 0;
  }
}

.container.loading .page-header {
  visibility: visible;
  position: relative;
  overflow: hidden;
  height: 61px;
}
.container.loading .page-header h1 > * {
  visibility: hidden;
}
.container.loading .page-header h1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  visibility: visible;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
  animation-name: loader-animate;
  animation-timing-function: linear;
  width: 100%;
  height: 100%;
  background-color: #333;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0) 81%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#00ffffff",GradientType=1 );
}

/**
    modal views
*/
.modal-container h2.page-header {
  color: #4A4A4A;
  font-size: 28px;
  line-height: 33.6px;
}
.modal-container .content {
  margin-top: 15px;
}
.modal-container .content h2, .modal-container .content h3, .modal-container .content h4 {
  margin-top: 15px;
  margin-bottom: 10px;
}
.modal-container .content h3 {
  font-size: 24px;
  font-weight: 600;
}
.modal-container .content p {
  font-size: 14px;
  line-height: 1.4;
}
.modal-container .btn {
  display: inline-block;
  margin-bottom: 0;
}

/**
    log out
*/
.log-out .inner-content .subheading {
  margin-top: 5px;
  font-size: 24px;
}
.log-out .inner-content .content-text {
  margin-bottom: 25px;
}
.log-out .inner-content .form-wrapper {
  margin-bottom: 5px !important;
}
.log-out .inner-content .form-wrapper .btn {
  margin-top: 25px;
  margin-bottom: 0px;
  display: inline-block;
}

/**
    Reset link
*/
.container.reset-link-container p {
  margin-bottom: 25px;
}
.container.reset-link-container .form-wrapper {
  padding-top: 25px;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 0;
}
.container.reset-link-container strong {
  margin-bottom: 10px;
  display: inline-block;
}
.container.reset-link-container .selected-type-input {
  margin-left: 0;
  position: relative;
  top: 1px;
  margin-bottom: 15px;
}
.container.reset-link-container .selected-type-input:focus-visible {
  outline: none;
}
.container.reset-link-container .selected-type {
  margin-bottom: 15px;
}
.container.reset-link-container .help-content .inner-content {
  padding-top: 0;
}
.container.reset-link-container .help-content .form-wrapper .btn {
  margin: 0;
}
.container.reset-link-container .help-content .divider {
  margin-top: 25px;
}
.container.reset-link-container .help-content .form-wrapper:first-child {
  padding-top: 0;
}

.reset-confirmation-view .inner-content {
  padding-top: 25px;
  padding-bottom: 0;
}
.reset-confirmation-view .form-wrapper {
  padding: 25px 0 0;
}
.reset-confirmation-view .divider {
  margin-top: 18px;
}

.reset-confirmation-help-view .form-wrapper {
  margin-top: 0;
  padding-top: 0;
}

/**
    Seceurity questions rate limited
*/
.security-questions-rate-limited h1 {
  color: #2E2E2E;
}

/**
    Seceurity questions
*/
.security-questions-confirm .content-text {
  margin-bottom: 25px;
}

/* RESPONSIVE STYLING */
@media screen and (max-width: 700px) {
  .main-header {
    margin-top: 10px;
  }
  /*CREATE PASSWORD VALIDATION*/
  .password-validation {
    margin-bottom: 15px !important;
  }
  .password-validation li {
    width: 49%;
    height: 90px;
    padding: 10px;
    margin-bottom: 1%;
    text-align: left;
  }
  .password-validation li:nth-child(2) {
    margin-right: 0;
  }
  .password-validation li span {
    margin: 0 0 5px;
  }
  .password-validation li p {
    margin: 0 !important;
  }
  /* LAYOUT */
  body.row {
    width: 100%;
  }
  .container {
    margin: 10px 5px;
  }
  .content-text {
    margin: 10px 0;
  }
  .subheading {
    font-size: 1.1em;
  }
  .page-header .link-text.right {
    margin-left: 10px;
  }
  .form-wrapper {
    padding: 0;
  }
  .form-wrapper.transparent-box {
    padding: 10px 0;
  }
  .login-fail-message {
    width: 100%;
    padding: 0;
  }
  .timer-wrap {
    margin: 15px 0 15px 20%;
  }
  .icon.email, .icon.phone {
    display: none;
  }
  .icon-text {
    margin: 0;
    font-size: 0.9em;
  }
}
@media screen and (max-width: 460px) {
  body {
    background-image: none;
  }
  .container {
    margin: 0;
  }
  .password-validation li {
    height: 120px;
  }
}
#intercom-variables-json,
#modelJson,
#model-json {
  display: none;
}

.reminder {
  zoom: 1;
  float: left;
  margin-top: 10px;
  margin-bottom: 10px;
}
.reminder:after, .reminder:before {
  content: "";
  display: table;
}
.reminder:after {
  clear: both;
}
.reminder .reminder-label {
  text-decoration: underline;
  margin-left: 10px;
}
.reminder .reminder-label:hover {
  text-decoration: none;
  cursor: pointer;
}
.reminder .hidden-content {
  font-weight: 700;
  margin-left: 10px;
}
.reminder .icon.lightbulb {
  background-image: url("../Images/lightbulb-icon.png");
  height: 26px;
  width: 25px;
  position: relative;
  top: 6px;
}

table {
  margin-top: 5px;
  width: 100%;
}
table th {
  text-align: left;
  padding: 5px 8px;
  border: 1px solid #000;
  word-break: break-all;
  min-width: 50px;
}
table td {
  padding: 5px 8px;
  border: 1px solid #000;
  text-align: left;
  word-break: break-all;
  min-width: 50px;
}

.help-section-layer {
  min-height: 100%;
  transform: translateY(-100%) !important;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out !important;
  opacity: 0;
}
.help-section-layer.active {
  transform: translateY(0) !important;
  opacity: 1;
}
.help-section-layer.hidden {
  transform: translateY(-100%) !important;
  opacity: 0;
}

/**
    Case of forgotten your sigin on mobile
*/
@media only screen and (max-width: 635px) {
  .form-wrapper .right {
    position: static;
    display: flex;
    width: 100%;
  }
  .form-wrapper:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 8px;
  }
  .form-wrapper:last-child .btn {
    width: fit-content;
    min-width: fit-content;
    margin-bottom: 8px;
  }
  .form-wrapper .right {
    width: auto;
  }
}
