/*-------------------------------------*
    #LOGIN PAGE
 *-------------------------------------*/
/** SETTINGS
    Global variables, site-wide settings, config
================================================*/
/*-------------------------------------*
    #GLOBAL
 *-------------------------------------*/
/*-----------------------------------------------------------*
   (SETTINGS) Shared between Enterprise and Citizen Portal 
*-----------------------------------------------------------*/
/*rgb(105,123,146);*/ /*rgb(51,51,51);*/
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

::-webkit-scrollbar-track {
  background: rgb(236, 236, 236);
}

::-webkit-scrollbar-thumb {
  background: rgb(153, 175, 199);
}

* {
  -webkit-tap-highlight-color: transparent;
}

/** TOOLS
    Site-wide mixins and functions
================================================*/
/*-------------------------------------*
    #FUNCTIONS
 *-------------------------------------*/
/** Maths Helpers
================================================*/
/*
	Halve and double numbers, returning rounded integers. E.g.:

	.foo {
		padding: halve(3.2px);
	}
*/
/** z-index generator
================================================*/
/** GENERIC
    Far reaching rulesets
================================================*/
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button {
  font: inherit;
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
/*input {
  line-height: normal;
}*/
/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  /*-moz-box-sizing: content-box;*/
  /*-webkit-box-sizing: content-box;*/ /* 2 */
  /*box-sizing: content-box;*/
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
  font-family: inherit;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*
    Enable repeating table headers when printing
*/
/*-------------------------------------*
    #RESET
 *-------------------------------------*/
/* As well as using normalize.css, it is often advantageous to remove all
 	margins from certain elements. */
body,
h1, h2, h3, h4, h5, h6,
blockquote, pre,
dl, dd, ul,
form, fieldset, legend,
figure,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/* Give a help cursor to elements that give extra info on ':hover' */
abbr[title],
dfn[title] {
  cursor: help;
}

/* Remove underlines from potentially troublesome elements */
u,
ins {
  text-decoration: none;
}

/* Apply faux underlines to inserted text via 'border-bottom' */
ins {
  border-bottom: 1px solid;
}

.wcag-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.skip-to-main-content {
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -100px;
  left: 50%;
  z-index: 999;
  padding: 10px 20px;
  background-color: #f7f7f7;
  color: #2572C7;
  opacity: 0;
  border-radius: 0 0 6px 6px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.skip-to-main-content:focus-visible {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 1;
  outline: 2px solid #286FBF;
}

/*-------------------------------------*
    #BOX-SIZING
 *-------------------------------------*/
/*
    Set the global `box-sizing` state to `border-box`.

    http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
    http://paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

/** BASE
    Default element styles (no classes)
================================================*/
/*-------------------------------------*
    #PAGE
 *-------------------------------------*/
/** Base Typography
================================================*/
body {
  font-family: "Inter UI", Arial, Verdana, sans-serif;
  font-size: 12px;
  color: rgb(36, 66, 98);
  /*line-height: $base-line-height;*/
}

a {
  color: rgb(43, 118, 205);
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

/** APP CONTENT RESETS
    Briefing book content needs to be reset with legacy styles to ensure consistent presentation between Author and Reader
================================================*/
.s-app__content {
  font-family: "Inter UI", Arial, Verdana, sans-serif;
  font-size: 12px;
  color: rgb(36, 66, 98);
  /*line-height: 1em; //This causes the line height to be 11px in all children where not overriden (at least in Scorecards)*/
}

/** Clear floats
================================================*/
/* TODO: find a better home for this - fairly low down so as to support extends (http://blog.teamtreehouse.com/a-better-clearfix-with-sass) */
.clearfix:before,
.clearfix:after {
  display: table;
  content: " ";
}

.clearfix:after {
  clear: both;
}

/** Text areas text wrap
================================================*/
textarea {
  white-space: pre-wrap;
}

/*-------------------------------------*
   #FORMS (BASE)
*-------------------------------------*/
label,
input,
select,
button,
button,
textarea {
  font-size: 12px;
}

/* Move this to a proper location - shouldn't have classes in base */
.validation-inline-error {
  color: #CC0000;
}

.validation-summary {
  color: #CC0000;
}

/** APP CONTENT RESETS
    Briefing book content needs to be reset with legacy styles to ensure consistent presentation between Author and Reader
================================================*/
.s-app__content label,
.s-app__content input,
.s-app__content select,
.s-app__content button {
  font-size: 12px;
}

@media screen and (max-width: 900px) and (-webkit-min-device-pixel-ratio: 2) { /* Increase minimum font size to avoid zoom on iOS phones */
  input,
  input:focus,
  select,
  select:focus,
  textarea,
  textarea:focus {
    font-size: 16px !important;
    letter-spacing: -0.3px;
  }
}
select.standardInput, input.standardInput, textarea.standardInput, button.standardInput {
  background-color: rgb(255, 255, 255) !important;
  color: #3B4B7C !important;
  border: 1px solid #dddddd;
  border-radius: 3px;
  resize: none;
}
select.standardInput:hover, input.standardInput:hover, textarea.standardInput:hover, button.standardInput:hover {
  border-color: #F06C01;
}
select.standardInput:focus-visible, input.standardInput:focus-visible, textarea.standardInput:focus-visible, button.standardInput:focus-visible {
  border-color: #286EBF;
  outline: none;
}

select.standardInput:not([multiple=multiple]) {
  height: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  padding-left: 3px;
}

select.standardInput:not([multiple=multiple]) {
  background: white url("../images/Icons/arrow--down.svg") no-repeat;
  background-position: right 2px center;
  background-size: 25px 25px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Works in IE (except 9) but not on standards track */
select.standardInput::-ms-expand {
  border: 1px solid white;
  opacity: 0;
}

.js-date-display {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  padding: 4px 7px;
}

/** LAYOUT
================================================*/
html {
  height: 100%;
}

/** COMPONENTS
================================================*/
/* --- Logo --- */
.c-logo {
  text-align: center;
}
.c-logo img {
  width: 70%;
  margin: 0 auto 20px;
}

/* --- Login --- */
.c-login {
  margin: 0px auto;
  width: 95%;
  max-width: 370px;
  min-width: 245px;
  padding: 20px;
}

.c-login-form-splash-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

/* --- Login Form --- */
.c-login__form {
  margin-top: auto;
}

.c-login-form {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  /* --- Custom Select box --- */
}
.c-login-form label {
  display: block;
  margin-bottom: 3px;
}
.c-login-form label:after {
  /* Quick way to insert a colon for a Razor generated label - there may be a better way? (certainly more semantically correct) */
  content: ": ";
}
.c-login-form input[type=text], .c-login-form input[type=password], .c-login-form select {
  display: block;
  position: relative;
  height: 30px;
  width: 100%;
  margin-bottom: 10px;
  padding: 0 7px;
  color: #666;
  background: #fff;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 12px;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-appearance: none;
}
.c-login-form input[type=text]:hover, .c-login-form input[type=password]:hover {
  border: 1px solid #F06C01 !important;
}
.c-login-form input[type=text]:focus-visible, .c-login-form input[type=password]:focus-visible {
  border: 1px solid #286EBF !important;
  outline: none;
}
.c-login-form__passwordLink {
  display: block;
  float: right;
  font-size: 11px;
  text-decoration: none;
  color: #aaa;
  padding-top: 3px; /* push text down to align with the password label */
}
.c-login-form__passwordLink:hover {
  color: #3879d9;
}
.c-login-form button {
  color: #fff;
  min-width: 150px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  line-height: 36px;
  border-radius: 3px;
  background-color: rgb(43, 118, 205); /*For old browsers that don't support gradients*/
}
.c-login-form button:hover {
  background-color: #F06C01;
}
.c-login-form button:focus-visible {
  outline: 1px solid white;
  outline-offset: -2px;
}
.c-login-form button:disabled {
  opacity: 0.7;
}
.c-login-form p {
  margin-top: 0;
  margin-bottom: 12px;
}
.c-login-form__model-prompt {
  color: #ccc;
  font-size: 18px;
  letter-spacing: 1px;
}
.c-login-form__change-user {
  float: left;
  line-height: 36px; /* match the height of the button */
}
.c-login-form__select {
  /* http://www.lugolabs.com/lugoland/articles/72-style-select-html-element-with-css */
  position: relative;
  display: inline-block;
  width: 100%;
}
.c-login-form__select select {
  outline: none;
  background: transparent;
}
.c-login-form__select select option {
  line-height: 16px;
}
.c-login-form__select > span {
  background: #fff;
  position: absolute;
  right: 22px;
  top: 13px;
  width: 6px;
  height: 6px;
  pointer-events: none;
}
.c-login-form__select > span :before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-top: 6px solid #4f4949;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  pointer-events: none;
}
.c-login-form__select > span :after {
  content: "";
  position: absolute;
  left: 1px;
  top: 0;
  border-top: 5px solid #ffffff;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
}

.c-login-form__instructions {
  text-align: center;
  font-size: 16px;
}

.c-login-form__submit {
  text-align: center;
  margin-top: 20px;
}
.c-login-form__submit button:hover {
  background: #F06C01;
}
.c-login-form__submit button:focus-visible {
  outline: 1px solid white;
  outline-offset: -2px;
}

.c-login-panel {
  position: relative;
  overflow: visible;
}

.c-login-panel__footer {
  margin-top: auto;
  padding-bottom: 30px;
  width: 100%;
  text-align: center;
}
.c-login-panel__footer a {
  color: #2b76cd;
  font-size: 10px;
}
.c-login-panel__footer a:hover {
  color: #F06C01;
}
.c-login-panel__footer a:focus-visible {
  padding: 1px 3px;
  border-radius: 2px;
  outline: none;
  border: 1px solid #2b76cd;
}

.c-login-panel__footer-cert {
  float: left;
}

.c-login-panel__inphase-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-login-panel__inphase-info-text {
  font-weight: bold;
}

.c-login-panel__different-user {
  margin-top: 10px;
}
.c-login-panel__different-user a:focus-visible {
  padding: 1px 3px;
  border-radius: 2px;
  outline: none;
  border: 1px solid #2b76cd;
}
.c-login-panel__different-user a:hover {
  color: #F06C01;
}

.c-login-panel__inphase-info-website {
  font-weight: bold;
}

body.page-embedded .c-logo {
  display: none;
}

iframe {
  opacity: 0;
}

iframe.loaded {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  border: 0;
  -webkit-animation: fadeIn 2s forwards;
          animation: fadeIn 2s forwards;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (min-width: 500px) and (max-width: 768px) {
  .c-login-splash {
    background-image: url("../images/Logon/logon_splash_small.jpg?14052019");
  }
}
@media only screen and (min-width: 769px) {
  .c-login-splash {
    background-image: url("../images/Logon/logon_splash_large.jpg?14052019");
  }
}
/* Desktop */
@media only screen and (min-width: 500px) {
  body {
    background: #ffffff;
    color: #737373;
    height: 100%;
  }
  .c-login-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-login-splash {
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .c-login__form {
    width: 100%;
  }
}
.c-login-panel__customer-message-wrapper {
  text-align: center;
  margin-top: 40px;
  margin-right: 20px;
}

.c-login-panel__customer-message {
  text-align: left;
  display: inline-block;
}

/* Small or mobile */
@media only screen and (max-width: 499px) {
  .c-login-form-splash-wrapper {
    grid-template-columns: 1fr;
  }
  .c-login-panel {
    background: #fff;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin: 20px;
  }
  .c-login-splash {
    display: none;
  }
  body {
    background: #495b67;
    color: #737373;
  }
  body.page-embedded {
    background-color: #FFF;
    color: #737373;
  }
  body.page-embedded .c-login-panel {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2), screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
  .c-login-form input[type=text],
  .c-login-form input[type=password] {
    font-size: 16px;
  }
}
.c-login-form__row {
  margin-bottom: 15px;
}

.c-login-form__prompt {
  margin-bottom: 20px;
}

#ErrorMessageDiv {
  margin-bottom: 12px;
}

.validation-summary {
  text-align: center;
  font-size: 12px;
}

.validation-inline-error {
  display: block;
}

.c-login-panel__rss-wrapper {
  height: 100%;
  width: 100%;
  text-align: center;
  position: relative;
}

.c-login-panel__rss {
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  overflow-y: hidden;
  text-align: center;
  position: absolute;
}

.rss-feed__item {
  background-color: white;
  border: white solid 1px;
  border-radius: 5px;
  margin-top: 20px;
  padding: 5px;
}

.rss-feed__image-item {
  border-radius: 5px;
  overflow: hidden;
  border: solid white 2px;
  display: inline-block;
  background-color: white;
  margin: 20px auto 0 auto;
}
.rss-feed__image-item:hover {
  z-index: 11 !important;
  overflow: visible;
}

.rss-feed__image {
  height: auto;
  max-height: 29vh;
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rss-feed__header > a {
  color: rgb(43, 118, 205);
}

.rss-feed__date {
  color: #737373;
  font-size: 10px;
}

.rss-feed__description {
  max-height: 200px;
  overflow: hidden;
}

/** OVERRIDES 
Helper classes and overrides
================================================*/
/*-------------------------------------*
   #LAYOUT (HELPERS)
*-------------------------------------*/
.u-float-left {
  float: left;
}

.u-float-right {
  float: right;
}

.u-align-left {
  text-align: left;
}

.u-align-right {
  text-align: right;
}

.u-align-center {
  text-align: center;
}

.u-top {
  vertical-align: top !important;
}

.u-middle {
  vertical-align: middle !important;
}

.u-bottom {
  vertical-align: bottom !important;
}

.u-visually-hidden {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
}

.u-table {
  display: table;
}

.u-table-fluid {
  display: table;
  height: 100%;
  width: 100%;
  table-layout: fixed;
}

.u-table-row {
  display: table-row;
  /*height:0;*/ /* IE9/10  otherwise goes full height of container*/
}

.u-table-cell {
  display: table-cell;
}

.u-table-row-fluid {
  display: table-row;
  overflow: hidden;
}
.u-table-row-fluid > .u-table-cell {
  display: table-cell;
  height: 100%;
}

.u-absolutely-fluid-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.u-absolutely-fluid {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.u-no-transitions {
  -webkit-transition: none !important;
  transition: none !important;
}

/* --- States --- */
/*-------------------------------------*
   #VISIBILITY (STATES)
*-------------------------------------*/
.is-hidden {
  display: none !important;
}

.is-invisible {
  visibility: hidden !important;
}

.is-visibleBlock {
  display: block !important;
}

/** LOCKED OUT PAGE
================================================*/
.lockout {
  height: 100%;
  background: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  text-align: center;
}
.lockout .lockout__panel {
  width: 300px;
  padding: 35px;
  background: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.15);
}
.lockout h1 {
  font-family: inherit;
  font-weight: normal;
  font-size: 17px;
  color: #286EBF;
  line-height: 1.3;
  margin: 20px 0;
}
.lockout p {
  font-family: inherit;
  font-size: 12px;
  line-height: 1.5;
  margin: 20px 0;
}
/*# sourceMappingURL=Login.css.map */
