﻿/*
Author: Rich Ross (rich@welovemicro.com)
Created: 15th August 2020

Notes:
First styles in each selector handle mobile layout then
media queries at the end of each selector adjust for larger screens if needed

./reset.css is an adaption of normalise.css to nullify all the browser quirks

@include pulls reusable styles from ./mixins.scss

Anything starting with $ comes from ./variables.scss
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Borders
   ========================================================================== */
/**
 * Include the borders in the width of the content
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   * And stop the default blue with underline
   */
a {
  background-color: transparent;
  text-decoration: none;
  color: black;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
  display: block;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Colours
-------------------------------------------------- */
/* Breakpoints
-------------------------------------------------- */
/* Sizes
-------------------------------------------------- */
/* Forms
-------------------------------------------------- */
/* Mixins
-------------------------------------------------- */
/* Titles
-------------------------------------------------- */
h1 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

h3 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

h4 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

h5 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

h6 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
}

/* Page styling
-------------------------------------------------- */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

/* Helpers
   Classes to add to HTML elements for frequent tasks
-------------------------------------------------- */
.bold {
  font-weight: bold;
}

.flex {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.button-wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: center;
  font-weight: bold;
  text-transform: uppercase;
}
.button-wrapper .button {
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 22px;
  font-size: 1rem;
}
.button-wrapper .button .chevron {
  position: absolute;
  top: 0;
  width: 18px;
  height: 40px;
  transition: all 0.5s;
  -webkit-mask: url(read_btn.svg) no-repeat 50% 50%;
}
.button-wrapper .button .chevron::before, .button-wrapper .button .chevron::after {
  content: "";
  position: absolute;
  left: 0;
  height: 20px;
  width: 18px;
  background: transparent;
  border: 4px solid white;
  transition: all 0.5s;
}
.button-wrapper .button .chevron::before {
  top: 0;
  border-bottom-width: 0 !important;
  transform: skew(40deg, 0deg);
}
.button-wrapper .button .chevron::after {
  bottom: 0;
  border-top-width: 0 !important;
  transform: skew(-40deg, 0deg);
}
.button-wrapper .button .chevron.left {
  left: -32px;
  opacity: 1;
}
.button-wrapper .button .chevron.right {
  right: -10px;
  opacity: 0;
}
.button-wrapper .button .arrow {
  position: absolute;
  top: 0;
  width: 20px;
  height: 40px;
  transition: all 0.5s;
  -webkit-mask: url(read_btn.svg) no-repeat 50% 50%;
  position: absolute;
}
.button-wrapper .button .arrow::before, .button-wrapper .button .arrow::after {
  content: "";
  position: absolute;
  left: 0;
  height: 20px;
  width: 20px;
  background: #44DDDB;
  border: 4px solid #44DDDB;
  transition: all 0.5s;
}
.button-wrapper .button .arrow::before {
  top: 0;
  border-bottom-width: 0 !important;
  transform: skew(40deg, 0deg);
}
.button-wrapper .button .arrow::after {
  bottom: 0;
  border-top-width: 0 !important;
  transform: skew(-40deg, 0deg);
}
.button-wrapper .button .arrow.left {
  left: -10px;
}
.button-wrapper .button .arrow.right {
  right: -10px;
}
.button-wrapper:hover .button .chevron.left {
  left: -12px;
  opacity: 0;
}
.button-wrapper:hover .button .chevron.right {
  right: -32px;
  opacity: 1;
}

.container {
  margin: 0 auto;
}
@media (max-width : 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width : 769px) {
  .container {
    max-width: 95%;
  }
}

.mbs {
  margin-bottom: 10px !important;
}

.mbm {
  margin-bottom: 20px !important;
}

.mbl {
  margin-bottom: 40px !important;
}

/* Xceptor Connect styles
-------------------------------------------------- */
.page-header .logo {
  border-bottom: 1px solid black;
}
.page-header .logo .container {
  position: relative;
  padding: 20px 0;
}
.page-header .logo .container:after {
  content: "";
  display: table;
  clear: both;
}
.page-header .logo .container .numbers {
  margin: 0;
  padding-bottom: 10px;
  font-size: 0.9rem;
  float: right;
}
.page-header .logo .container .numbers li:not(:last-child) {
  margin-right: 10px;
  padding-right: 10px;
}
@media (min-width : 769px) {
  .page-header .logo .container .numbers li:not(:last-child) {
    border-right: 1px solid #ccc;
  }
}
.page-header .logo .container .numbers li .highlight-text {
  color: #9C21ED;
}
@media (min-width : 769px) {
  .page-header .logo .container .numbers {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
.page-header .logo .container .numbers a:hover {
  text-decoration: underline;
  text-decoration-color: #027fff;
  text-decoration-thickness: 2px;
}
.page-header .logo .container .brand a {
  display: block;
  padding-left: 20px;
}
.page-header .logo .container .brand img {
  width: 200px;
}
@media (min-width : 769px) {
  .page-header .logo .container .brand img {
    width: 200px;
  }
}
@media (min-width : 769px) {
  .page-header .logo .container .brand {
    padding-left: 0;
  }
}
.page-header .logo .container .nav {
  position: absolute;
  right: 0;
  bottom: 0;
}
.page-header .logo .container .nav .nav-items {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: -o-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}
.page-header .logo .container .nav .nav-items li {
  margin-left: 5px;
  background-color: #9C21ED;
}
.page-header .logo .container .nav .nav-items li .nav-item {
  display: block;
  padding: 1px 5px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
}
.page-header .logo .container .nav .nav-items li.profile {
  position: relative;
}
.page-header .logo .container .nav .nav-items li.profile .content {
  display: none;
  position: absolute;
  top: 18px;
  right: 0;
  min-width: 200px;
  padding: 10px;
  color: white;
  background-color: #9C21ED;
  box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.page-header .logo .container .nav .nav-items li.profile .content .hi {
  margin: 0 0 20px;
  color: #44DDDB;
}
.page-header .logo .container .nav .nav-items li.profile .content .link {
  position: relative;
  left: 5px;
  height: 15px;
  line-height: 11px;
  margin-bottom: 10px;
}
.page-header .logo .container .nav .nav-items li.profile .content .link .chevron {
  position: absolute;
  top: 0;
  width: 40px;
  height: 50px;
  transition: all 0.5s;
  -webkit-mask: url(read_btn.svg) no-repeat 50% 50%;
}
.page-header .logo .container .nav .nav-items li.profile .content .link .chevron::before, .page-header .logo .container .nav .nav-items li.profile .content .link .chevron::after {
  content: "";
  position: absolute;
  left: 0;
  height: 25px;
  width: 40px;
  background: transparent;
  border: 4px solid white;
  transition: all 0.5s;
}
.page-header .logo .container .nav .nav-items li.profile .content .link .chevron::before {
  top: 0;
  border-bottom-width: 0 !important;
  transform: skew(40deg, 0deg);
}
.page-header .logo .container .nav .nav-items li.profile .content .link .chevron::after {
  bottom: 0;
  border-top-width: 0 !important;
  transform: skew(-40deg, 0deg);
}
.page-header .logo .container .nav .nav-items li.profile .content .link .chevron::before, .page-header .logo .container .nav .nav-items li.profile .content .link .chevron::after {
  border-width: 1px;
}
.page-header .logo .container .nav .nav-items li.profile .content .link a {
  padding-left: 15px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}
.page-header .logo .container .nav .nav-items li.profile:hover .content {
  display: block;
}
.page-header .hero {
  position: relative;
  width: 100%;
  height: 75px;
  text-align: center;
  background-color: black;
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
}
.page-header .hero .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-header .hero .content .title {
  margin: 20px 0;
  font-size: 4rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: white;
  text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 20px;
}
@media (min-width : 769px) {
  .page-header .hero .content .title {
    font-size: 7rem;
  }
}
.page-header .hero p {
  font-size: 2rem;
  color: white;
}

.page-main.home .intro {
  padding: 40px 0;
  text-align: center;
}
.page-main.home .intro .title {
  margin: 0;
  text-transform: uppercase;
}
.page-main.home .intro p {
  margin: 0;
  line-height: 1.4;
}
.page-main.home .links {
  padding-bottom: 40px;
  padding-top: 4.5%;
  padding-bottom: 4.1%;
}
.page-main.home .links main:after {
  content: "";
  display: table;
  clear: both;
}
.page-main.home .links main article {
  position: relative;
  float: left;
  width: 92vw;
  height: 200vw;
  left: 4%;
   right: 4%;
  max-height: 350px;
  margin-bottom: 10px;
  text-align: center;
  background-color: white;
  border-color: #9C21ED;
  border-style: solid;
  border-radius: 20px;
  padding: 20px;
  background-size: cover;
  background-position: center;
}
.page-main.home .links main article .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
.page-main.home .links main article .content .title {
  margin: 0;
  margin-bottom: 0px;
  font-size: 3rem;
  line-height: 1.1;
  text-transform: capitalize;
  color: #9C21ED;
}
.page-main.home .links main article .content .button-wrapper {
  position: relative;
  top: 45px;
  left: -5px;
}
.page-main.home .links main article .content img {
  width: 160px;
}
@media (min-width : 769px) {
  .page-main.home .links main article {
    width: 30.3333333333%;
    min-width: 340px;
    left: 4%;
    height: 17vw;
    min-height: 330px;
    background-size: 200%;
    margin-left: 10px;
    border-right: 5px solid #9C21ED;
    border-left: 5px solid #9C21ED;
  }
  .page-main.home .links main article:nth-child(1) {
    border-right: 5px solid #9C21ED;
    border-left: 5px solid #9C21ED;
  }
  .page-main.home .links main article:nth-child(2) {
    border-left: 5px solid #9C21ED;
    border-right: 5px solid #9C21ED;
  }
  .page-main.home .links main article:nth-child(3) {
    border-right: 5px solid #9C21ED;
    border-left: 5px solid #9C21ED;
  }
  .page-main.home .links main article:nth-child(4) {
    border-right: 5px solid #9C21ED;
    border-left: 5px solid #9C21ED;
  }
}
.page-main.home .links main article:hover {
  border-color: #027fff;
}
.page-main.home .links main article:hover .title {
  color: #027fff;
}
.page-main.home .news {
  padding-bottom: 40px;
  background-color: #e2f1f7;
}

.page-main.home .notifications {
  display: flex;
  flex-direction: row;
  padding: 8px;
  font-size: 0.9rem;
  gap: 10px;

/* display: flex;
/* width: 415px;
flex-direction: column;
align-items: flex-start;
gap: 10px; */

}

.page-main.home .warning  {
  background-color: #FFF4F0;
  padding-left: 10px;
  
}

.page-main.home .critical  {
  background-color: #FAE8EA;
  padding-left: 10px;
}

.page-main.home .info  {
  background-color: #E2F1FF;
  padding-left: 10px;
}


.page-main.home .alertImg  {
  padding: 2px 0;
  width: 16px;
  height: 16px;
}

.page-main.home .alertBody  {
  /* padding: 0px 5px; */
}

.page-main.home .alertHeaderText  {
  color: var(--Grayscale-800, #393B42);
  font-feature-settings: 'liga' off, 'clig' off;

  /* Body/Body 2 Medium */
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  line-height: 20px; /* 142.857% */
}

.page-main.home .alertBodyText  {
  color: var(--Grayscale-800, #393B42);
  font-feature-settings: 'liga' off, 'clig' off;

  /* Body/Body 2 */
  font-family: "IBM Plex Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

.page-main.home .news .container:after {
  content: "";
  display: table;
  clear: both;
}
.page-main.home .news .container article {
  position: relative;
  width: 100vw;
  margin-bottom: 10px;
  border: 0;
  background-color: #9C21ED;
}
.page-main.home .news .container article header {
  overflow: hidden;
}
.page-main.home .news .container article header img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.page-main.home .news .container article main {
  padding: 20px 40px;
  padding-bottom: 80px;
}
.page-main.home .news .container article main time {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #44DDDB;
}
.page-main.home .news .container article main .title {
  color: white;
}
.page-main.home .news .container article footer {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 40px;
}
.page-main.home .news .container article footer:after {
  content: "";
  display: table;
  clear: both;
}
.page-main.home .news .container article footer .button-wrapper {
  position: relative;
  left: 40px;
  float: left;
}
@media (min-width : 769px) {
  .page-main.home .news .container article {
    width: 40%;
    width: 33.3333333333%;
    float: left;
  }
  .page-main.home .news .container article:nth-child(1) {
    border-right: 7px solid #e2f1f7;
  }
  .page-main.home .news .container article:nth-child(2) {
    border-right: 3px solid #e2f1f7;
    border-left: 3px solid #e2f1f7;
  }
  .page-main.home .news .container article:nth-child(3) {
    border-left: 7px solid #e2f1f7;
  }
}
@media (min-width : 769px) {
  .page-main.home .news .container {
    display: flex;
    align-items: stretch;
  }
}
.page-main.home .contact {
  padding: 30px 0;
}
.page-main.home .contact header {
  position: relative;
  min-height: 220px;
  text-align: center;
  background-color: black;
  background-size: cover;
  background-position: center;
}
.page-main.home .contact header .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 3rem;
  line-height: 0.9;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}
@media (min-width : 769px) {
  .page-main.home .contact header {
    width: 50%;
    margin-right: 1%;
  }
}
.page-main.home .contact main {
  position: relative;
  background-color: black;
  color: white;
}
.page-main.home .contact main .content {
  width: 100%;
  padding: 40px;
}
.page-main.home .contact main .content a {
  color: white;
}
.page-main.home .contact main .content a:hover {
  color: white;
  text-decoration: underline;
  text-decoration-color: #027fff;
  text-decoration-thickness: 2px;
}
@media (min-width : 769px) {
  .page-main.home .contact main .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width : 769px) {
  .page-main.home .contact main {
    width: 49%;
  }
}
@media (min-width : 769px) {
  .page-main.home .contact {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-items: stretch;
  }
}

.page-footer {
  padding: 10px;
  background-color: black;
  color: white;
  font-size: 0.8rem;
}
.page-footer a {
  color: white;
}
.page-footer a:hover {
  text-decoration: underline;
  text-decoration-color: #027fff;
  text-decoration-thickness: 2px;
}
.page-footer .container .brand {
  padding-right: 20px;
}
.page-footer .container .brand img {
  width: 100px;
}
@media (min-width : 769px) {
  .page-footer .container {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width : 769px) {
  .page-footer {
    padding: 5px 0;
  }
}

.page-main.account {
  width: 100vw;
  min-height: 100vh;
  padding: 40px 0;
  background-color: #9C21ED;
  background-image: url(https://xcjdb2c.blob.core.windows.net/root/links.jpg);
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-main.account section {
  width: 90%;
  padding: 40px;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}
.page-main.account section header img {
  max-width: 200px;
  min-width: 200px;
}
.page-main.account section header h1 {
  margin: 40px 0 10px;
  line-height: 0.9;
  text-transform: uppercase;
  color: #44DDDB;
}
.page-main.account section main #api {
  /* container for Azure injected content */
  /* HACK: reordering injected content as requested by client */
  display: flex;
  flex-direction: column;
}
.page-main.account section main #api li:not(.CheckboxMultiSelect) label,
.page-main.account section main #api .entry-item label,
.page-main.account section main #api .helpLink {
  display: none;
}
.page-main.account section main #api li.CheckboxMultiSelect label::after {
  content: "";
  display: table;
  margin-bottom: 10px;
  clear: both;
}
.page-main.account section main #api input[type=date] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=date]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=datetime-local] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=datetime-local]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=email] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=email]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=file] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=file]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=month] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=month]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=number] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=number]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=password] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=password]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=search] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=search]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=tel] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=tel]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=text] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=text]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=time] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=time]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=url] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=url]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=week] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=week]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=datetime] {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api input[type=datetime]::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api select {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
}
.page-main.account section main #api select::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api input[type=checkbox] {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 20px;
}
.page-main.account section main #api input[type=checkbox] ~ label::after {
  content: "";
  clear: both;
}
.page-main.account section main #api button {
  width: 100%;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  border: none;
  border-radius: 0;
  outline: none;
  font-size: 0.8rem;
  font-weight: 800;
  box-shadow: none;
  color: black;
  background-color: white;
  width: auto;
  margin-bottom: 30px;
  background-color: #44DDDB;
  color: black;
  -webkit-mask: url(read_btn.svg) no-repeat 100% 100%;
}
.page-main.account section main #api button::placeholder {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: black;
}
.page-main.account section main #api button:hover {
  background-color: #6fe5e3;
}
.page-main.account section main #api .buttons {
  display: flex;
  justify-content: space-between;
}
.page-main.account section main #api .buttons #cancel {
  background-color: lightgrey;
}
.page-main.account section main #api a {
  color: white;
}
.page-main.account section main #api h2 {
  font-size: 1.5rem;
}
.page-main.account section main #api .divider {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-main.account section main #api .divider::before, .page-main.account section main #api .divider::after {
  content: "";
  display: block;
  height: 0.09em;
  min-width: 40%;
}
.page-main.account section main #api .divider::before {
  background: linear-gradient(to right, rgba(240, 240, 240, 0), #fff);
  margin-right: 2vh;
}
.page-main.account section main #api .divider::after {
  background: linear-gradient(to left, rgba(240, 240, 240, 0), #fff);
  margin-left: 2vh;
}
.page-main.account section main #api .divider h2 {
  font-size: 1rem;
}
.page-main.account section main #api .create a {
  font-weight: 800;
  margin-left: 10px;
}
.page-main.account section main #api #forgotPassword,
.page-main.account section main #api .error {
  display: block;
  margin-bottom: 10px;
}
.page-main.account section main #api .error.pageLevel {
  color: #00FF80;
  font-weight: bold;
}
.page-main.account section main #api .social {
  order: 2;
}
.page-main.account section main #api > .divider {
  order: 1;
}
.page-main.account section footer a {
  color: white;
}
@media (min-width : 769px) {
  .page-main.account section {
    width: 500px;
  }
}

.overlay {
  background: #113d6a;
  z-index: 1000;
}
.overlay .content {
  max-width: 800px;
  margin: auto;
}
.overlay .banner {
  position: relative;
}
.overlay .button {
  background-color: #44DDDB;
  color: black;
  height: 3rem;
  margin: 0 0 10px 0;
  padding: 0 10px;
  font-size: 0.8rem;
  font-weight: 800;
}
