@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

.ngdialog.ngdialog-theme-default {
  padding-bottom: 160px;
  padding-top: 160px;
}

.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
  animation: ngdialog-flyout .5s;
}

.ngdialog.ngdialog-theme-default .ngdialog-content {
  animation: ngdialog-flyin .5s;
  background: #f0f0f0;
  border-radius: 5px;
  color: #444;
  font-family: 'Helvetica',sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 450px;
}

.ngdialog.ngdialog-theme-default .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
  background: transparent;
  border-radius: 3px;
  color: #bbb;
  content: '\00D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px;
}

.ngdialog.ngdialog-theme-default .ngdialog-close:hover:before,
.ngdialog.ngdialog-theme-default .ngdialog-close:active:before {
  color: #777;
}

.ngdialog.ngdialog-theme-default .ngdialog-message {
  margin-bottom: .5em;
}

.ngdialog.ngdialog-theme-default .ngdialog-input {
  margin-bottom: 1em;
}

.ngdialog.ngdialog-theme-default .ngdialog-input textarea,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"],
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"] {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%;
}

.ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="text"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="password"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="email"]:focus,
.ngdialog.ngdialog-theme-default .ngdialog-input input[type="url"]:focus {
  box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: none;
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons {
  *zoom: 1;
}

.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
  content: '';
  display: table;
  clear: both;
}

.ngdialog.ngdialog-theme-default .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: .8em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 0 0 .5em;
  padding: .75em 2em;
  text-transform: uppercase;
}

.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
  animation: ngdialog-pulse 1.1s infinite;
  outline: none;
}

@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    animation: none;
  }
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff;
}

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777;
}
.ngdialog.ngdialog-theme-plain {
  padding-bottom: 160px;
  padding-top: 160px;
}

.ngdialog.ngdialog-theme-plain .ngdialog-content {
  background: #fff;
  color: #444;
  font-family: 'Helvetica Neue',sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 450px;
}

.ngdialog.ngdialog-theme-plain .ngdialog-content h1,
.ngdialog.ngdialog-theme-plain .ngdialog-content h2,
.ngdialog.ngdialog-theme-plain .ngdialog-content h3,
.ngdialog.ngdialog-theme-plain .ngdialog-content h4,
.ngdialog.ngdialog-theme-plain .ngdialog-content h5,
.ngdialog.ngdialog-theme-plain .ngdialog-content h6,
.ngdialog.ngdialog-theme-plain .ngdialog-content p,
.ngdialog.ngdialog-theme-plain .ngdialog-content ul,
.ngdialog.ngdialog-theme-plain .ngdialog-content li {
  color: inherit;
}

.ngdialog.ngdialog-theme-plain .ngdialog-close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}

.ngdialog.ngdialog-theme-plain .ngdialog-close:before {
  background: transparent;
  color: #bbb;
  content: "\00D7";
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px;
}

.ngdialog.ngdialog-theme-plain .ngdialog-close:hover:before,
.ngdialog.ngdialog-theme-plain .ngdialog-close:active:before {
  color: #777;
}

.ngdialog.ngdialog-theme-plain .ngdialog-message {
  margin-bottom: .5em;
}

.ngdialog.ngdialog-theme-plain .ngdialog-input {
  margin-bottom: 1em;
}

.ngdialog.ngdialog-theme-plain .ngdialog-input textarea,
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"],
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"],
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"],
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"] {
  background: #f0f0f0;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%;
}

.ngdialog.ngdialog-theme-plain .ngdialog-input textarea:focus,
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="text"]:focus,
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="password"]:focus,
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="email"]:focus,
.ngdialog.ngdialog-theme-plain .ngdialog-input input[type="url"]:focus {
  box-shadow: inset 0 0 0 2px rgba(0,0,0,0.2);
  outline: none;
}

.ngdialog.ngdialog-theme-plain .ngdialog-buttons:after {
  clear: both;
  content: '';
  display: table;
}

.ngdialog.ngdialog-theme-plain .ngdialog-button {
  border: 0;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: .8em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 0 0 .5em;
  padding: .75em 2em;
  text-transform: uppercase;
}

.ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
  animation: ngdialog-pulse 1.1s infinite;
  outline: none;
}

@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-plain .ngdialog-button:focus {
    animation: none;
  }
}

.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff;
}

.ngdialog.ngdialog-theme-plain .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777;
}
.ngdialog,.ngdialog-overlay{position:fixed;top:0;right:0;bottom:0;left:0}@keyframes ngdialog-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes ngdialog-fadein{0%{opacity:0}100%{opacity:1}}.ngdialog{box-sizing:border-box;overflow:auto;-webkit-overflow-scrolling:touch;z-index:10000}.ngdialog *,.ngdialog :after,.ngdialog :before{box-sizing:inherit}.ngdialog.ngdialog-disabled-animation,.ngdialog.ngdialog-disabled-animation .ngdialog-content,.ngdialog.ngdialog-disabled-animation .ngdialog-overlay{animation:none!important}.ngdialog-overlay{background:rgba(0,0,0,.4);-webkit-backface-visibility:hidden;animation:ngdialog-fadein .5s}.ngdialog-no-overlay{pointer-events:none}.ngdialog.ngdialog-closing .ngdialog-overlay{-webkit-backface-visibility:hidden;animation:ngdialog-fadeout .5s}.ngdialog-content{background:#fff;-webkit-backface-visibility:hidden;animation:ngdialog-fadein .5s;pointer-events:all}.ngdialog.ngdialog-closing .ngdialog-content{-webkit-backface-visibility:hidden;animation:ngdialog-fadeout .5s}.ngdialog-close:before{font-family:Helvetica,Arial,sans-serif;content:'\00D7';cursor:pointer}body.ngdialog-open,html.ngdialog-open{overflow:hidden}
@font-face {
  font-family: 'Foco-Bold';
  src: url(fonts/3181DC_0_0.eot);
  src: url(fonts/3181DC_0_0.eot?#iefix) format('embedded-opentype'), url(fonts/3181DC_0_0.woff2) format('woff2'), url(fonts/3181DC_0_0.woff) format('woff'), url(fonts/3181DC_0_0.ttf) format('truetype');
}
@font-face {
  font-family: 'Foco-Regular';
  src: url(fonts/3181DC_1_0.eot);
  src: url(fonts/3181DC_1_0.eot?#iefix) format('embedded-opentype'), url(fonts/3181DC_1_0.woff2) format('woff2'), url(fonts/3181DC_1_0.woff) format('woff'), url(fonts/3181DC_1_0.ttf) format('truetype');
}
@font-face {
  font-family: 'Galano-Regular';
  src: url(fonts/galano_grotesque.eot);
  src: url(fonts/Galano_Grotesque.otf) format('opentype'), url(fonts/galano_grotesque.eot?#iefix) format('embedded-opentype'), url(fonts/galano_grotesque.woff2) format('woff2'), url(fonts/galano_grotesque.woff) format('woff');
}
@font-face {
  font-family: 'Galano-Bold';
  src: url(fonts/galano_grotesque_bold.eot);
  src: url(fonts/galano_grotesque_bold.otf) format('opentype'), url(fonts/galano_grotesque_bold.eot?#iefix) format('embedded-opentype'), url(fonts/galano_grotesque_bold.woff2) format('woff2'), url(fonts/galano_grotesque_bold.woff) format('woff');
}
@font-face {
  font-family: 'LatoLight';
  src: local('Lato Light'), local('Lato-Light'), url(fonts/Lato-Light.ttf) format('woff'), url(fonts/Lato-Light.ttf) format('ttf');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Lato';
  src: local('Lato Regular'), local('Lato-Regular'), url(fonts/Lato-Regular.ttf) format('woff'), url(fonts/Lato-Regular.ttf) format('ttf');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'LatoBold';
  src: local('Lato Bold'), local('Lato-Bold'), url(fonts/Lato-Bold.ttf) format('woff'), url(fonts/Lato-Bold.ttf) format('ttf');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'LatoItalic';
  src: local('Lato Italic'), local('Lato-Italic'), url(fonts/Lato-Italic.ttf) format('woff'), url(fonts/Lato-Italic.ttf) format('ttf');
  font-weight: 400;
  font-style: normal;
}
* {
  box-sizing: border-box;
}
html,
body {
  padding: 0;
  margin: 0;
  max-width: 100% !important;
}
html {
  font-family: 'Lato';
  font-size: 1em;
  line-height: 1.4;
  color: #253143;
  font-weight: 400;
}
code[class*='language-'],
pre[class*='language-'] {
  font-size: 16px;
}
body {
  overflow: auto;
}
html,
body {
  height: 100vh;
  margin: 0;
  padding: 0;
}
.inner {
  padding: 0 20px;
  margin: 0 auto;
}
body {
  background-color: #EFEFEF;
}
#container {
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 800px;
}
#container .actions-bar {
  margin-top: 20px;
}
#container .main {
  display: flex;
  flex: 1 0 auto;
  padding: 20px 0;
}
#container .main .login-form {
  position: relative;
  top: 100px;
}
@media screen and (max-height: 700px) {
  #container .main .login-form {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1135px) {
  #container .main .login-form {
    top: 0;
  }
}
#container .main .registration-form {
  position: relative;
  top: 50px;
}
@media screen and (max-height: 910px) {
  #container .main .registration-form {
    position: relative;
    top: 0;
    left: 0;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1135px) {
  #container .main .registration-form {
    top: 0;
  }
}
#container .main #body {
  min-height: 750px;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 480px) {
  #container .main #body {
    padding: 0 10px;
  }
}
@media screen and (max-width: 1024px) {
  #container .main #body {
    min-height: 400px;
  }
}
#container .main #body .large-header {
  display: flex;
  margin: 10px 0;
}
#container .main #body .large-header h2 {
  flex: 1;
}
#container .main #body .large-header h2:last-of-type {
  text-align: right;
}
@media screen and (max-width: 1024px) {
  #container .main #body .large-header {
    display: block;
  }
  #container .main #body .large-header h2:last-of-type {
    text-align: left;
  }
}
.page-carousel > div {
  display: none;
}
.page-carousel > div.active {
  display: block;
}
.flex-container {
  display: flex;
  justify-content: space-between;
}
.flex-container div {
  flex: 1 1 auto;
  margin: 10px 0 10px 0;
}
.flex-container .backbutton {
  text-align: right;
}
.flex-container .backbutton a {
  margin-left: 10px;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .flex-container {
    flex-direction: column-reverse;
  }
  .flex-container h2 > span {
    display: block;
  }
  .flex-container > div {
    margin-top: 0;
  }
  .flex-container .button {
    margin-bottom: 10px;
  }
}
.show {
  display: block !important;
}
.hide {
  display: none !important;
}
.pi {
  display: inline-block;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.grid-cell {
  flex: 1;
  width: 100%;
}
.grid-cell .grid-flex-end {
  display: flex;
  justify-content: flex-end;
}
.grid-cell .grid-flex-end .brainbox-label {
  margin-right: 10px;
  cursor: pointer;
  font-weight: bold;
}
.grid-cell .margin-bottom-default {
  margin-bottom: 15px;
}
.grid--flexCells > .grid-cell {
  display: flex;
}
.grid--top {
  align-items: flex-start;
}
.grid--bottom {
  align-items: flex-end;
}
.grid--center {
  align-items: center;
}
.grid--justifyCenter {
  justify-content: center;
}
.grid--justifyEnd {
  justify-content: flex-end;
}
.grid--justifyStart {
  justify-content: flex-start;
}
.grid-cell--top {
  align-self: flex-start;
}
.grid-cell--bottom {
  align-self: flex-end;
}
.grid-cell--center {
  align-self: center;
}
.grid-cell--autoSize {
  flex: none;
}
.grid--fit > .grid-cell {
  flex: 1;
  box-sizing: border-box;
}
.grid--full > .grid-cell {
  flex: 0 0 100%;
  padding: 10px;
  padding-top: 0;
}
.grid--1of2 > .grid-cell {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;
  padding-top: 0;
}
.grid--1of3 > .grid-cell {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  padding: 10px;
  padding-top: 0;
}
.grid--1of4 > .grid-cell {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 10px;
  padding-top: 0;
}
.grid--card {
  margin-left: -40px;
}
.grid--card .grid-cell {
  justify-content: space-between;
  max-width: 33.33%;
  min-width: 33.33%;
  padding: 0;
}
.grid--card .grid-cell .card {
  margin-bottom: 40px;
  margin-left: 40px;
  min-width: 300px;
}
@media screen and (max-width: 1024px) {
  .grid--card .grid-cell {
    max-width: 50%;
    min-width: 50%;
  }
}
@media screen and (max-width: 620px) {
  .grid--card .grid-cell {
    max-width: 100%;
    min-width: 100%;
  }
}
.grid--card .grid-cell__no-padding > .grid-cell {
  padding: 0;
}
@media screen and (max-width: 1240px) {
  .grid--1of4 > .grid-cell {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}
@media screen and (max-width: 1024px) {
  .grid--1of3 > .grid-cell {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .grid--1of4 > .grid-cell {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media screen and (max-width: 1135px) {
  .grid--1of2 > .grid-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .grid--1of3 > .grid-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .grid--1of4 > .grid-cell {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.page-transition .card,
.page-transition .sub-navigation {
  animation: fadein 1s forwards;
  opacity: 0;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.button {
  box-shadow: 1px 2px 3px 0 rgba(0, 0, 0, 0.2);
  padding: 2px 20px 2px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 400;
  background-color: #b3b3b3;
  border: 2px solid #b3b3b3;
  cursor: pointer;
  border-radius: 25px;
  outline: 0;
  display: inline-block;
  font-size: 1em;
  transition: background-color 0.5s, border 0.5s;
  position: relative;
  text-transform: uppercase;
}
.button .clear {
  background-color: transparent;
  border-color: #ffffff;
}
.button .clear:hover {
  background-color: #ffffff;
}
.button:disabled,
.button.disabled {
  cursor: default;
  opacity: 0.4;
}
.button:hover {
  color: white;
}
.button.button-primary {
  background-color: #20b1f3;
  border-color: #20b1f3;
}
.button.button-primary::after {
  position: absolute;
  z-index: -1;
  content: '';
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #45bef5;
  transition: all 0.3s ease-in-out;
}
.button.button-primary:hover {
  background-color: #0b96d5;
  border-color: #0b96d5;
}
.button.button-primary.btn-loading {
  background-color: #20b1f3;
  border-color: #20b1f3;
}
.button.button-primary.btn-loading:hover {
  background-color: #253143;
  border-color: #253143;
}
.button.button-primary.btn-loading:before {
  background-image: url(images/loader-white.gif);
}
.button.button-primary.clear {
  background-color: transparent;
  border-color: #ffffff;
}
.button.button-primary.clear:hover {
  background-color: #ffffff;
}
.button.button-primary.clear:hover {
  color: #20b1f3;
}
.button.button-success {
  background-color: #369312;
  border-color: #369312;
}
.button.button-success:hover {
  background-color: #27680d;
  border-color: #27680d;
}
.button.button-success.clear {
  background-color: transparent;
  border-color: #ffffff;
}
.button.button-success.clear:hover {
  background-color: #ffffff;
}
.button.button-success.clear:hover {
  color: #369312;
}
.button.button-warning {
  background-color: #ffb846;
  border-color: #ffb846;
}
.button.button-warning:hover {
  background-color: #ffa413;
  border-color: #ffa413;
}
.button.button-warning.clear {
  background-color: transparent;
  border-color: #ffffff;
}
.button.button-warning.clear:hover {
  background-color: #ffffff;
}
.button.button-warning.clear:hover {
  color: #ffb846;
}
.button.button-danger {
  background-color: #e40038;
  border-color: #e40038;
}
.button.button-danger:hover {
  background-color: #c81439;
  border-color: #c81439;
}
.button.button-danger.button-default {
  background-color: #ffffff;
  color: #e40038;
  font-weight: 700;
  border: none;
  height: 36px;
  padding: 5px 7px;
  margin: -10px 5px;
}
.button.button-danger.btn-loading {
  background-color: #e40038;
  border-color: #e40038;
}
.button.button-danger.btn-loading:hover {
  background-color: #c81439;
  border-color: #c81439;
}
.button.button-danger.btn-loading:before {
  background-image: url(images/loader-white.gif);
}
.button.button-danger.clear {
  background-color: transparent;
  border-color: #ffffff;
}
.button.button-danger.clear:hover {
  background-color: #ffffff;
}
.button.button-danger.clear:hover {
  color: #e40038;
}
.button.button-secondary {
  background: #253143;
  border-color: #253143;
}
.button.button-secondary:hover {
  background-color: #131922;
  border-color: #131922;
}
.button.button-secondary.btn-loading:hover:after {
  display: none;
}
.button.button-secondary.clear {
  background-color: transparent;
  border-color: #ffffff;
}
.button.button-secondary.clear:hover {
  background-color: #ffffff;
}
.button.button-secondary.clear:hover {
  color: #253143;
}
.button.button-white {
  background-color: transparent;
  border-color: #ffffff;
}
.button.button-white:hover {
  background-color: #ffffff;
  color: #e40038;
}
.button.button-white-fill {
  background-color: #ffffff;
  color: #e40038;
  border-color: #ffffff;
}
.button.button-white-fill:hover {
  background-color: #e40038;
  border-color: #e40038;
  color: #ffffff;
}
.button.large-button {
  height: 50px;
  padding: 9px 30px 0 30px;
  font-size: 20px;
  font-weight: 400;
}
.button.btn-loading {
  cursor: default;
  background-color: #20b1f3;
  border-color: #20b1f3;
}
.button.btn-loading:before {
  content: '';
  display: block;
  background-image: url(images/loader.gif);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}
.button.btn-loading span {
  opacity: 0;
}
.button-clear {
  background: none;
  border-color: none;
  border: none;
  text-decoration: underline;
  text-transform: none;
  color: #000000;
}
.button-clear:hover,
.button-clear:focus {
  background-color: none;
  border-color: none;
}
.button::-moz-focus-inner {
  border: 0;
}
a.button:hover {
  text-decoration: none;
}
a.button:hover {
  text-decoration: none;
}
.btn-holder .button:first-child {
  margin-right: 25px;
}
@media screen and (max-width: 1240px) {
  .btn-holder .button {
    margin-bottom: 10px;
  }
}
.button-loader .button {
  position: relative;
  height: 50px;
}
.button-loader button:hover,
.button-loader button:focus,
.button-loader button.is-loading {
  background: #45bef5;
  border-color: #45bef5;
  color: #ffffff;
}
.button-loader button:focus {
  outline: none;
}
.button-loader button svg {
  display: block;
  height: 0;
  width: 0;
  opacity: 0;
  top: 50%;
  right: 0.5em;
  transform: scale(0);
}
.button-loader button svg path {
  fill: #ffffff;
}
.button-loader button.is-loading {
  cursor: wait;
}
.button-loader button.is-loading svg {
  width: 30px;
  height: 30px;
  transform: scale(1);
  opacity: 1;
  position: absolute;
  transition: 0.3s;
  transition-delay: 0.12s;
}
.button-loader button.with-only-loader {
  min-width: 5em;
  padding: 6px 30px 0 30px;
}
.button-loader button.with-only-loader.is-loading span {
  display: inline-block;
  width: 0;
  height: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: center center;
  position: absolute;
}
.button-loader button.with-only-loader.is-loading svg {
  width: 30px;
  height: 30px;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}
.file-upload {
  display: none;
}
.info-parent {
  position: relative;
  border-bottom: none !important;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: inline-block;
}
.info-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 40px;
  border: 2px solid #45bef5;
  display: block;
  text-align: center;
  color: #20b1f3;
  font-weight: 700;
  background-color: #ededec;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1em;
}
::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1em;
}
.form-row {
  margin-bottom: 30px;
  position: relative;
}
.form-row .progress {
  border: 1px solid #b3b3b3;
  box-shadow: none;
}
label {
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
}
label.icon-field {
  position: relative;
}
label.icon-field i {
  font-size: 34px;
  line-height: 44px;
  color: #20b1f3;
  position: absolute;
  top: 0;
  left: 7px;
}
label.icon-field .input-field {
  padding-left: 55px;
}
label.error-label {
  color: #ffffff;
  background-color: #e40038;
  line-height: 28px;
  padding: 0 15px 0 40px;
  font-size: 14px;
  position: absolute;
  right: 0;
  bottom: -28px;
  margin: 0;
}
label.error-label:before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 28px;
  background-image: url(images/error-angle.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -26px;
}
.input-field {
  background-color: #ffffff;
  border: 1px solid #b3b3b3;
  color: #253143;
  display: inline-block;
  font-family: 'Lato';
  font-size: 1em;
  font-weight: 300;
  line-height: 43px;
  height: 45px;
  outline: 0;
  padding: 0 15px;
  width: 100%;
}
.input-field.transparent-field {
  background-color: transparent;
  border: 2px solid #253143;
  color: #253143;
}
.input-field.transparent-field::-moz-placeholder {
  color: #253143;
}
.input-field.transparent-field::placeholder {
  color: #253143;
}
.input-field.error {
  border-color: #e40038;
}
.input-field:focus {
  border: 1px solid #253143;
}
.input-field .placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1em;
  font-weight: 300;
}
.input-field .placeholder label {
  cursor: pointer;
}
.inline-attachment {
  cursor: pointer;
  display: inline-block;
}
.inline-attachment:not(:first-child):before {
  content: ', ';
}
.inline-attachment:hover {
  color: #e40038;
}
textarea {
  background-color: #ededec;
  border: 1px solid #b3b3b3;
  color: #253143;
  display: block;
  font-size: 1em;
  font-weight: 300;
  font-family: 'Lato';
  outline: none;
  min-height: 145px;
  padding: 15px;
  resize: none;
  width: 100%;
}
textarea.error {
  border-color: #e40038;
}
textarea.textarea {
  background-color: #ffffff;
}
textarea:focus {
  border: 1px solid #253143;
}
textarea:focus {
  border: 1px solid #253143;
}
.inline-edit input {
  line-height: 31px;
  height: 31px;
  margin-left: 5px;
}
.inline-edit > td {
  padding: 12px 20px 12px 0 !important;
}
.inline-edit .input-field {
  background-color: transparent;
  border: 0;
  padding: 0 5px;
}
.inline-edit.editable-field td {
  background-color: #d0f7c0 !important;
}
.inline-edit.editable-field .input-field {
  background: #ffffff;
  border: 1px solid #c3c3c3;
}
.inline-edit.changed-field td {
  background-color: #ffb846 !important;
}
.inline-edit.changed-field .input-field {
  background-color: #ffffff;
  border: 1px solid #c3c3c3;
}
.inline-edit.disabled-field {
  background-color: #d6d5d5 !important;
}
.inline-edit.disabled-field td {
  background-color: #d6d5d5 !important;
}
.inline-edit.disabled-field .input-field {
  background-color: transparent;
  border: 0;
}
.checkbox-holder {
  position: relative;
}
.checkbox-holder.checkbox-right input[type='checkbox'] + label {
  padding-right: 43px;
  padding-left: 0;
}
.checkbox-holder.checkbox-right input[type='checkbox'] + label:before {
  right: 0 !important;
  left: inherit;
}
.checkbox-holder.checkbox-right input[type='checkbox'] + label:after {
  right: 6px !important;
  left: inherit;
}
.checkbox-holder input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.checkbox-holder input[type='checkbox'] + label {
  position: relative;
  cursor: pointer;
  display: inline-block;
  padding-left: 43px;
  line-height: 30px;
}
.checkbox-holder input[type='checkbox'] + label:before {
  content: '';
  border: 1px solid #c3c3c3;
  width: 33px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  background-color: #ffffff;
}
.checkbox-holder input[type='checkbox'] + label:after {
  content: "\f00c";
  color: #ffffff;
  display: none;
  font-family: FontAwesome;
  font-size: 22px;
  font-weight: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  top: 0px;
  left: 6px;
}
.checkbox-holder input[type='checkbox'] + label.disabled-checkbox {
  opacity: 0.3;
}
.checkbox-holder input[type='checkbox']:focus + label:before {
  border: 1px solid #253143;
}
.checkbox-holder.transparent-checkbox input[type='checkbox'] + label:before {
  border-color: #253143;
  background-color: transparent;
}
.checkbox-holder input[type='checkbox']:checked + label:before {
  border-color: #369312;
  background-color: #369312;
}
.checkbox-holder input[type='checkbox']:checked + label:after {
  display: block;
}
.checkbox-holder input[type=checkbox]:checked:focus + label:before {
  border-color: #369312;
}
.checkbox-holder .no-label-checkbox input[type='checkbox'] + label {
  display: inline !important;
  padding-left: 32px;
}
.checkbox-holder .no-label-checkbox input[type='checkbox'] + label::after,
.checkbox-holder .no-label-checkbox input[type='checkbox'] + label::before {
  top: -6px;
}
.radio-holder {
  position: relative;
}
.radio-holder input[type='radio'] {
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
}
.radio-holder input[type='radio'] + label {
  position: relative;
  cursor: pointer;
  display: block;
}
.radio-holder input[type='radio'] + label:before {
  content: '';
  border: 3px solid #b3b3b3;
  background-color: #ededec;
  width: 31px;
  height: 31px;
  display: inline-block;
  margin-right: 14px;
  position: relative;
  top: 8px;
  box-sizing: border-box;
  border-radius: 100%;
}
.radio-holder input[type='radio'] + label:after {
  content: '';
  width: 17px;
  height: 17px;
  background-color: #369312;
  display: none;
  position: absolute;
  top: 15px;
  left: 7px;
  border-radius: 100%;
}
.radio-holder input[type='radio']:checked + label:before {
  content: '';
  border-color: #369312;
}
.radio-holder input[type='radio']:checked + label:after {
  display: block;
}
.custom-select {
  background-image: url(images/custom-select.png);
  background-repeat: no-repeat;
  background-position: right center;
  background-color: #ededec;
  width: 100%;
  appearance: none;
  -moz-appearance: none;
  -ms-apperance: none;
  -webkit-appearance: none;
  height: 50px;
  padding: 0 50px 0 15px;
  line-height: 45px;
  border-radius: 0;
  border: 1px solid #b3b3b3;
  outline: 0;
  font-weight: 300;
  color: #253143;
  font-size: 1em;
}
.custom-select.error {
  border-color: #e40038;
}
.custom-select::-ms-expand {
  display: none;
}
.switch-container label {
  float: right;
}
.switch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 99px;
  height: 34px;
  padding: 8px;
  background-color: transparent;
  border-radius: 18px;
  cursor: pointer;
}
.switch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.switch-title {
  display: inline-block;
  margin-top: 15px;
}
.switch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 14px;
  font-family: 'Lato';
  font-weight: 600;
  background: #e40038;
  border-radius: inherit;
  transition: 0.25s ease-out;
  transition-property: opacity background;
}
.switch-label:before,
.switch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  transition: inherit;
}
.switch-label:before {
  content: attr(data-off);
  right: 11px;
  color: #ffffff;
}
.switch-label:after {
  content: attr(data-on);
  left: 11px;
  opacity: 0;
  color: #ffffff;
}
.switch-input:checked ~ .switch-label {
  background: #20b1f3;
}
.switch-input:checked ~ .switch-label:before {
  opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
  opacity: 1;
}
/* switch handle off */
.switch-handle {
  position: absolute;
  top: 10px;
  left: 11px;
  width: 30px;
  height: 30px;
  background: #a30c2b;
  border-radius: 50%;
  transition: left 0.25s ease-out;
}
/* switch handle on */
.switch-input:checked ~ .switch-handle {
  left: 57px;
  background: #27680d;
}
.switch-green > .switch-input:checked ~ .switch-label {
  background: #369312;
}
@media screen and (max-width: 1024px) {
  .table-container {
    overflow-x: scroll;
    overflow-y: hidden;
  }
}
.table,
.table.doctable {
  width: 100%;
  border-collapse: collapse;
  max-width: 100%;
  margin: 20px 0 30px;
  min-width: 1030px;
}
.table thead tr,
.table.doctable thead tr {
  display: inline-block;
  width: 100%;
}
.table thead tr th,
.table.doctable thead tr th {
  text-align: left !important;
  padding: 10px 0;
  color: #c3c0c0;
  font-weight: 400;
  text-transform: uppercase;
}
.table thead tr th i,
.table.doctable thead tr th i {
  cursor: pointer;
  color: #45bef5;
}
.table tbody tr,
.table.doctable tbody tr {
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.035);
  display: inline-block;
  margin-bottom: 7px;
  width: 100%;
}
.table tbody tr.hover-primary:hover,
.table.doctable tbody tr.hover-primary:hover {
  color: #e40038;
  transition: ease-in 0.2s;
}
.table tbody tr td,
.table.doctable tbody tr td {
  height: 70px;
  padding: 15px 20px;
  font-weight: 400;
  border: 1px solid #eaeaea;
}
.table tbody tr td:first-child,
.table.doctable tbody tr td:first-child {
  border-right: none;
  font-weight: 700;
}
.table tbody tr td:first-child i,
.table.doctable tbody tr td:first-child i {
  font-size: 26px;
  width: 30px;
  border: 2px solid #20b1f3;
  border-radius: 100%;
  text-align: center;
  color: #20b1f3;
  cursor: pointer;
}
.table tbody tr td i,
.table.doctable tbody tr td i {
  margin-right: 5px;
}
.table tbody tr td.success-row,
.table.doctable tbody tr td.success-row {
  border-left: 3px solid #369312;
}
.table tbody tr td.warning-row,
.table.doctable tbody tr td.warning-row {
  border-left: 3px solid #ffb846;
}
.table tbody tr td.danger-row,
.table.doctable tbody tr td.danger-row {
  border-left: 3px solid #e40038;
}
.table tbody tr td .avatar,
.table.doctable tbody tr td .avatar {
  margin-right: 5px;
  position: relative;
  top: 8px;
}
.table tbody tr td .can,
.table.doctable tbody tr td .can {
  color: #20b1f3;
}
.table tbody tr td .alt-text,
.table.doctable tbody tr td .alt-text {
  color: #c3c0c0;
  font-weight: 300;
}
.table tbody tr td .assigned,
.table.doctable tbody tr td .assigned {
  display: inline-block;
}
.table tbody tr td:nth-last-child(2),
.table.doctable tbody tr td:nth-last-child(2) {
  border-right: none;
}
.table tbody tr td:last-of-type,
.table.doctable tbody tr td:last-of-type {
  position: relative;
}
.table tbody tr td:last-of-type .options,
.table.doctable tbody tr td:last-of-type .options {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  box-shadow: inset 4px 0 4px 0 #eaeaea;
  display: flex;
  justify-content: center;
  background: #ffffff;
  position: absolute;
  top: 17px;
  left: -8px;
  top: 8px;
}
.table tbody tr td:last-of-type .options i,
.table.doctable tbody tr td:last-of-type .options i {
  font-size: 1.5em;
  margin-top: 7px;
  margin-left: 7px;
  cursor: pointer;
}
.table tbody tr td:last-of-type .options:hover,
.table.doctable tbody tr td:last-of-type .options:hover,
.table tbody tr td:last-of-type .options:focus,
.table.doctable tbody tr td:last-of-type .options:focus {
  color: #20b1f3;
}
.table td:nth-child(1),
.table.doctable td:nth-child(1),
.table th:nth-child(1),
.table.doctable th:nth-child(1) {
  min-width: 150px;
  width: 15%;
}
.table td:nth-child(2),
.table.doctable td:nth-child(2),
.table th:nth-child(2),
.table.doctable th:nth-child(2) {
  min-width: 150px;
  width: 20%;
}
.table td:nth-child(3),
.table.doctable td:nth-child(3),
.table th:nth-child(3),
.table.doctable th:nth-child(3) {
  min-width: 200px;
  width: 15%;
}
.table td:nth-child(4),
.table.doctable td:nth-child(4),
.table th:nth-child(4),
.table.doctable th:nth-child(4) {
  min-width: 150px;
  width: 25%;
}
.table td:nth-child(5),
.table.doctable td:nth-child(5),
.table th:nth-child(5),
.table.doctable th:nth-child(5) {
  min-width: 150px;
  width: 15%;
}
.table td:nth-child(6),
.table.doctable td:nth-child(6),
.table th:nth-child(6),
.table.doctable th:nth-child(6) {
  min-width: 100px;
  width: 5%;
}
.table.doctable td:nth-child(1),
.table.doctable th:nth-child(1) {
  min-width: 150px;
  width: 65%;
  text-align: left;
}
.table.doctable td:nth-child(2),
.table.doctable th:nth-child(2) {
  min-width: 100px;
  width: 5%;
}
.table.doctable td:nth-child(3),
.table.doctable th:nth-child(3) {
  min-width: 200px;
  width: 15%;
}
.table.doctable td:nth-child(4),
.table.doctable th:nth-child(4) {
  min-width: 200px;
  width: 15%;
}
.table.requestdoctable td:nth-child(4),
.table.requestdoctable th:nth-child(4) {
  min-width: 250px;
  width: 25%;
}
.table.advicetable td:nth-child(1),
.table.advicetable th:nth-child(1) {
  min-width: 120px;
  width: 10%;
}
.table.advicetable td:nth-child(2),
.table.advicetable th:nth-child(2) {
  min-width: 225px;
  width: 20%;
}
.table.advicetable td:nth-child(3),
.table.advicetable th:nth-child(3) {
  min-width: 115px;
  width: 10%;
  max-width: 115px;
  text-align: center;
}
.table.advicetable td:nth-child(4),
.table.advicetable th:nth-child(4) {
  min-width: 150px;
  width: 10%;
}
.table.advicetable td:nth-child(5),
.table.advicetable th:nth-child(5) {
  min-width: 150px;
  width: 10%;
}
.table.advicetable td:nth-child(6),
.table.advicetable th:nth-child(6) {
  min-width: 150px;
  width: 10%;
}
.table.advicetable td:nth-child(7),
.table.advicetable th:nth-child(7) {
  min-width: 120px;
  width: 5%;
  max-width: 120px;
  text-align: center;
}
.table.advicetable td:nth-child(8),
.table.advicetable th:nth-child(8) {
  min-width: 120px;
  width: 5%;
  max-width: 120px;
}
.table.requestedadvice td:nth-child(1),
.table.requestedadvice th:nth-child(1) {
  min-width: 140px;
  width: 40%;
}
.table.requestedadvice td:nth-child(2),
.table.requestedadvice th:nth-child(2) {
  min-width: 225px;
  width: 40%;
}
.table.requestedadvice td:nth-child(3),
.table.requestedadvice th:nth-child(3) {
  min-width: 140px;
  width: 10%;
  max-width: 140px;
  text-align: center;
}
h1 {
  margin: 0 0 20px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
}
h2 {
  margin: 0 0 20px;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 700;
}
h3 {
  font-size: 18px;
  margin: 0 0 15px;
  line-height: 1.2;
  font-weight: 700;
}
h4 {
  font-size: 16px;
  margin: 0 0 10px;
  font-weight: 400;
}
h5 {
  margin: 0 0 10px;
}
a,
.link {
  color: #253143;
  text-decoration: none;
  cursor: pointer;
  outline: 0;
}
a img,
.link img {
  outline: 0;
  border: 0;
}
a:hover,
.link:hover {
  text-decoration: none;
  color: #e40038;
}
a:active,
.link:active {
  text-decoration: underline;
}
a.underline,
.link.underline {
  text-decoration: underline;
}
.primary-color-font {
  color: #20b1f3;
}
.danger-color-font {
  color: #e40038;
}
.warning-color-font {
  color: #ffb846;
}
.success-color-font {
  color: #369312;
}
.white-color-font {
  color: #ffffff;
}
.header-font {
  color: #253143;
  font-size: 1.75em;
}
p {
  margin: 0 0 20px;
}
.text-align-left {
  text-align: left !important;
}
.text-align-right {
  text-align: right !important;
}
.text-align-center {
  text-align: center !important;
}
.text-uppercase {
  text-transform: uppercase;
}
.light {
  font-weight: 300;
}
.bold {
  font-weight: 700;
}
.semi-bold {
  font-weight: 600;
}
.extra-bold {
  font-weight: 800;
}
.underline {
  padding-bottom: 10px;
  border-bottom: 1px solid #20b1f3;
}
.doc-detail-heading .label {
  margin-left: 20px;
}
.helptext {
  font-size: 14px;
}
.pointer {
  cursor: pointer;
}
.label {
  display: inline-block;
  padding: 7px 7px;
  border-radius: 5px;
  border: 0;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
}
.label.label-danger {
  background-color: #e40038;
  color: #ffffff;
}
.label.label-warning {
  background-color: #ffb846;
  color: #ffffff;
}
.label.label-success {
  background-color: #369312;
  color: #ffffff;
}
.pagination {
  display: inline-block;
  padding: 0;
  cursor: pointer;
  margin: 0;
  list-style-type: none;
}
.pagination > li {
  display: inline-flex;
  height: 45px;
  text-align: center;
  float: left;
  background-color: #253143;
}
.pagination > li:hover {
  background-color: #131922;
}
.pagination > li > a,
.pagination > li > span {
  color: #ffffff;
  position: relative;
  display: block;
  height: 45px;
  min-width: 45px;
  padding: 11px;
}
.pagination > li:first-child,
.pagination > li:last-child {
  min-width: 45px;
  height: 45px;
}
.pagination > li:first-child:hover,
.pagination > li:last-child:hover {
  background-color: #131922;
}
.pagination > li:first-child {
  margin-right: 1px;
}
.pagination > li:last-child {
  margin-left: 1px;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  padding-left: 20px;
  padding-right: 20px;
  width: inherit;
  min-width: 100px;
  padding: 11px;
}
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
  background-color: #131922;
  color: #45bef5;
}
.pagination > li > a:active {
  text-decoration: none;
}
.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  cursor: not-allowed;
  opacity: 0.4;
}
@media screen and (max-width: 480px) {
  .pagination {
    display: none !important;
  }
}
.pager {
  padding-left: 0;
  margin: 20px 0;
  list-style: none;
  text-align: center;
  display: none;
}
.pager li {
  display: inline;
}
.pager li > a,
.pager li > span {
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
  color: #ffffff;
  background-color: #131922;
  margin-left: 5px;
  height: 34px;
  padding-top: 5px;
}
.pager li > a:hover,
.pager li > a:focus {
  text-decoration: none;
}
.pager .next > a,
.pager .next > span {
  float: right;
}
.pager .previous > a,
.pager .previous > span {
  float: left;
}
.pager .disabled > a,
.pager .disabled > a:hover,
.pager .disabled > a:focus,
.pager .disabled > span {
  opacity: 0.4;
  cursor: not-allowed;
}
@media screen and (max-width: 620px) {
  .pagination {
    display: none !important;
  }
  .pager {
    display: inline-block;
  }
}
.alert {
  display: inherit;
  padding: 7px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 27px;
  margin-bottom: 30px;
}
.alert.alert-danger {
  background-color: #e40038;
  color: #ffffff;
  border: 2px solid #b1002b;
}
.alert.alert-warning {
  background-color: #ffb846;
  color: #ffffff;
  border: 2px solid #ffa413;
}
.alert.alert-success {
  background-color: #369312;
  color: #ffffff;
  border: 2px solid #25660c;
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  overflow: hidden;
  height: 20px;
  margin-bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #c3c3c3;
}
.progress-bar {
  float: left;
  width: 0%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  background-color: transparent;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  transition: width 0.6s ease;
}
.progress.active .progress-bar,
.progress-bar.active {
  animation: progress-bar-stripes 2s linear infinite;
}
.very-good {
  background-color: #369312;
  width: 100%;
}
.good {
  background-color: #ffb846;
  width: 75%;
}
.medium {
  background-color: #ffb846;
  width: 50%;
}
.poor {
  background-color: #e40038;
  width: 25%;
}
.list.caveats-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 750px;
}
.list.caveats-list li {
  width: 50%;
  margin-top: 15px;
}
.list.caveats-list li > div {
  padding: 0 20px;
}
.list.caveats-list li > div .checkbox-holder label {
  margin-bottom: 0;
}
permissions-dropdown {
  position: relative;
  width: 250px;
  display: block;
  padding-right: 20px;
}
permissions-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
permissions-dropdown .dropdown-select {
  cursor: pointer;
  display: flex;
  outline: none;
  padding-left: 5px;
}
permissions-dropdown .dropdown-select span {
  background-color: #369312;
  display: inline-block;
  margin: 0 2px 4px 0;
  padding: 0 5px;
  line-height: 18px;
  font-size: 12px;
  color: #ffffff;
  border-radius: 5px;
}
permissions-dropdown .dropdown-select i {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -7px;
  color: #20b1f3;
}
permissions-dropdown .dropdown-select:focus i {
  color: #ffb846;
}
permissions-dropdown .dropdown-select div {
  max-width: 95%;
  display: flex;
  flex-flow: row wrap;
}
permissions-dropdown .dropdown-holder {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  z-index: 3;
  margin-top: 5px;
}
permissions-dropdown .dropdown-holder > ul {
  border: 1px solid #b3b3b3;
}
permissions-dropdown .dropdown-holder > ul li {
  background-color: #ffffff;
  padding: 5px;
}
permissions-dropdown .dropdown-holder > ul li > input[type='checkbox']:focus + label:before {
  border: 2px solid #253143;
}
permissions-dropdown .dropdown-holder > ul li > label {
  line-height: 50px;
  display: block;
  width: 100%;
  padding-left: 65px;
  text-align: left;
  margin-bottom: 0;
}
permissions-dropdown .dropdown-holder > ul li > label:before {
  top: 10px;
  left: 10px;
}
permissions-dropdown .dropdown-holder > ul li > label:after {
  top: 15px;
  left: 15px;
}
permissions-dropdown .dropdown-holder > ul li:nth-child(odd) {
  background-color: #e5f6fe;
}
permissions-dropdown .dropdown-holder > ul li.active {
  background-color: #c6f7e1;
}
.notification {
  display: block;
  color: #ffffff;
  z-index: 99;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 14px;
  left: 50%;
  margin-left: -325px;
}
.notification > div {
  display: flex;
  width: 650px;
}
.notification > div .notificationleft {
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification > div .notificationleft > .fa::before {
  font-family: FontAwesome;
  content: "\f00c";
  color: #ffffff;
  font-size: 2em;
}
.notification > div .notificationInner {
  flex: 1;
  position: relative;
  padding: 10px 10px 10px 20px;
  min-height: 100px;
}
.notification > div .notificationInner > h4 {
  margin: 0 0 10px;
}
.notification > div .notificationInner .notificationClose {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 10px;
}
.notification > div.success {
  background-color: #369312;
}
.notification > div.success > .notificationleft {
  background-color: #27680d;
}
.notification > div.success > .notificationInner .notificationClose {
  color: #27680d;
}
.notification > div.warning {
  background-color: #ffb846;
}
.notification > div.warning > .notificationleft {
  background-color: #b53b0e;
}
.notification > div.warning > .notificationleft > .fa::before {
  content: "\f071";
}
.notification > div.warning > .notificationInner .notificationClose {
  color: #b53b0e;
}
.notification > div.error {
  background-color: #cd2c20;
}
.notification > div.error > .notificationleft {
  background-color: #9d1e15;
}
.notification > div.error > .notificationleft > .fa::before {
  content: "\f071";
}
.notification > div.error > .notificationInner .notificationClose {
  color: #9d1e15;
}
.notification.open {
  animation: bounce 0.5s;
}
.notification.close {
  animation: remove 0.6s forwards;
}
@keyframes bounce {
  0% {
    bottom: -200px;
    opacity: 0;
  }
  60% {
    opacity: 1;
    bottom: 20px;
  }
  80% {
    bottom: 10px;
  }
  100% {
    bottom: 14px;
  }
}
/* outro and removing animations */
@keyframes remove {
  0% {
    bottom: 14px;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
    bottom: 0;
  }
}
.select {
  position: relative;
  min-width: 150px;
}
.select.disabled {
  pointer-events: none;
}
.select input {
  cursor: pointer;
  overflow: hidden;
  padding-right: 40px;
  pointer-events: none;
  text-overflow: ellipsis;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.select input.disabled {
  pointer-events: none;
  cursor: not-allowed;
}
.select span {
  align-items: center;
  display: flex;
  height: 45px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 45px;
}
.select .select__select-list {
  background-color: #ffffff;
  border: 1px solid #253143;
  border-top: 0;
  cursor: pointer;
  display: none;
  font-family: 'Lato';
  list-style-type: none;
  max-height: 300px;
  overflow-y: scroll;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  min-width: 150px;
  width: 100%;
  z-index: 10;
}
.select .select__select-list li {
  overflow: hidden;
  padding: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 150px;
  width: 100%;
}
.select .select__select-list li:hover,
.select .select__select-list li:focus {
  background-color: #e5f6fe;
}
.select.active .input-field {
  border: 1px solid #253143;
}
.select.active ul {
  display: block;
  position: absolute;
  top: 26px;
  overflow-x: hidden;
}
.select.active-reverse ul {
  border-bottom: 0;
  border-top: 1px solid #b3b3b3;
  bottom: 29px;
  box-shadow: none;
  display: block;
  position: absolute;
  overflow-x: hidden;
}
.search-wrap {
  display: inline-block;
  position: relative;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 620px) {
  .search-wrap {
    max-width: 215px;
  }
}
.search-wrap input[type="text"] {
  flex: 0 82%;
  width: 100%;
  padding: 0 40px 0 10px;
  line-height: 42px;
  height: 48px;
  border: 1px solid #eaeaea;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.035);
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  outline: 0;
  font-weight: 300;
  font-size: 1em;
  border: 1px solid #D2D2D2;
}
.search-wrap input[type="text"]::-moz-placeholder {
  color: #253143;
}
.search-wrap input[type="text"]::placeholder {
  color: #253143;
}
@media screen and (max-width: 620px) {
  .search-wrap input[type="text"] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.search-wrap button {
  border: 0;
  outline: 0;
  background-color: transparent;
  width: 60px;
  text-align: center;
  position: absolute;
  height: 90%;
  padding: 0;
  margin: 0;
  top: 0;
  right: 10px;
  cursor: pointer;
}
.search-wrap button i {
  font-size: 24px;
  color: #253143;
}
.card {
  background-color: #ffffff;
}
.card.main-card {
  border: 1px solid #eaeaea;
  border-top: none;
  padding: 30px 15px;
}
.card.main-card.padding-none {
  padding: 0;
}
.card.main-card .default-card-section {
  text-align: center;
  display: block;
  background-image: url(images/default-folder.png);
  background-repeat: no-repeat;
  background-position: center 30px;
  padding-top: 160px;
}
.card.main-card .default-card-section > p {
  margin: 0;
}
.card.main-card .error-card-section {
  text-align: center;
  display: block;
  background-image: url(images/error-folder.png);
  background-repeat: no-repeat;
  background-position: center 30px;
  padding-top: 160px;
}
.card.main-card .error-card-section > p {
  margin: 0;
}
.card.basic-card {
  border: 1px solid #c3c3c3;
  border-radius: 4px;
  max-width: 100%;
  height: 310px;
  min-width: 330px;
  padding: 0 10px;
}
.card.basic-card > div {
  display: flex;
  flex-direction: column;
}
.card.basic-card > div.error-container {
  display: none;
}
.card.basic-card > div > h3 {
  padding: 10px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #e40038;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card.basic-card > div > section {
  height: 200px;
}
.card.basic-card > div > section.default-card-section {
  display: none;
}
.card.basic-card > div > section > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.card.basic-card > div > section > ul li {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #b3b3b3;
}
.card.basic-card > div > section > ul li.last-child {
  border-bottom: none;
}
.card.basic-card > div > section > ul li span {
  margin: 0;
  padding-right: 10px;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 200px;
}
.card.basic-card > div > section > ul li > .button {
  min-width: 80px;
}
.card.basic-card > div > section > ul li > div {
  padding-right: 10px;
}
.card.basic-card > div > section > ul li > div img {
  display: block;
  max-width: 100%;
}
.card.basic-card > div > section > p {
  margin-top: 20px;
}
.card.basic-card > div > section.loading {
  text-indent: -9999px;
  background-image: url(images/loader.gif);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  align-self: center;
  margin-top: 20px;
}
.card.basic-card > div > section.loading + footer {
  display: none;
}
.card.basic-card > div > footer {
  padding: 15px 0;
  text-align: center;
}
.card.promo-card {
  border: 1px solid none;
  border-radius: 4px;
  height: 310px;
  max-width: 100%;
  min-width: 330px;
  position: relative;
}
.card.promo-card > div {
  padding: 10px 6px;
}
.card.promo-card > div > h2,
.card.promo-card > div h3 {
  margin: 0;
}
.card.promo-card > div > h2 > span,
.card.promo-card > div h3 > span {
  padding: 5px;
  display: inline-block;
}
.card.promo-card > div > h3 {
  font-size: 30px;
}
.card.promo-card > div > h3 > span {
  padding-bottom: 2px;
  font-weight: 400;
}
.card.promo-card > div > h2 {
  line-height: 25px;
}
.card.promo-card > div > h2 > span {
  font-size: 40px;
}
.card.profile-card {
  background-color: #253143;
  padding: 1px;
  color: #ffffff;
}
.card.profile-card .profile-card-img {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 255px;
  position: relative;
}
.card.profile-card .profile-card-img.male {
  background-image: url(images/profile_male.jpg);
}
.card.profile-card .profile-card-img.female {
  background-image: url(images/profile_female.jpg);
}
.card.profile-card .profile-card-img > div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0 15px;
}
.card.profile-card .profile-card-img > div:before {
  content: '';
  display: block;
  width: 100%;
  background-image: url(images/shade.png);
  background-repeat: no-repeat;
  height: 108px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.card.profile-card .profile-card-img > div > * {
  position: relative;
}
.card.profile-card .profile-card-img > div > h2 {
  margin: 20px 0 0;
}
.card.profile-card .profile-card-img > div > h1 {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card.profile-card .profile-card-img > div .lastname {
  color: #20b1f3;
}
.card.profile-card .profile-card-details {
  padding: 20px 15px;
}
.card.profile-card .profile-card-details h4 {
  color: #20b1f3;
  margin-bottom: 0;
}
.card.profile-card .profile-card-details p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.card.profile-card .profile-card-details .profile-card-search-box {
  margin: 0 0 20px;
}
.card.doc-detail-card {
  text-align: center;
  border: 4px solid #b3b3b3;
}
.card.doc-detail-card > div > section {
  padding: 20px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card.doc-detail-card > div > section h4 {
  margin-bottom: 0;
  max-height: 44px;
  overflow: hidden;
}
.card.doc-detail-card > div > section i {
  font-size: 40px;
}
.card.doc-detail-card > div > footer {
  height: 70px;
  padding-top: 15px;
  border-top: 1px solid #b3b3b3;
}
.card.doc-detail-card > div > footer.loading button {
  cursor: default;
}
.card.doc-detail-card > div > footer.loading button.button-primary {
  background: transparent;
  border-color: #20b1f3;
  color: #20b1f3;
}
.card.doc-detail-card > div > footer.loading button.button-primary:hover::after {
  display: none;
}
.card.doc-detail-card > div > footer.loading button:before {
  content: '';
  display: block;
  background-image: url(images/loader.gif);
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -8px 0 0 -8px;
}
.card.doc-detail-card > div > footer.loading button span {
  opacity: 0;
}
.card.attachment-card {
  text-align: center;
  border: 1px solid #b3b3b3;
  height: 150px;
}
.card.attachment-card > div {
  height: 150px;
}
.card.attachment-card > div > section {
  padding: 20px 0 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card.attachment-card > div > section h3 {
  margin-bottom: 0;
  max-height: 44px;
  overflow: hidden;
}
.card.attachment-card > div > section i {
  font-size: 40px;
}
.card.attachment-card > div > footer {
  padding-top: 15px;
  border-top: 1px solid #b3b3b3;
}
.card.document-acceptance-card > div > section {
  border-bottom: 1px solid #b3b3b3;
  padding: 15px;
}
.card.document-acceptance-card > div > section > p {
  font-weight: 700;
  margin: 0 !important;
}
.card.document-acceptance-card > div > section > div h2 {
  position: relative;
  margin: 5px 0 0;
  line-height: 1;
  display: flex;
  align-items: center;
  word-wrap: break-word;
}
.card.document-acceptance-card > div > section > div h2 > span:nth-child(2) {
  margin-left: 10px;
  display: block;
}
.card.document-acceptance-card > div > section > div h2 > span.num {
  display: inline-block;
  font-size: 52px;
}
.card.document-acceptance-card > div > section > div.loading h2 > span.num {
  text-indent: -9999px;
  background-image: url(images/loader.gif);
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.card.feedback-card {
  background-image: url(images/feedback-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
}
.card.feedback-card section {
  padding: 0 6px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.card.feedback-card section .comment-bubble {
  display: flex;
  background-color: rgba(255, 255, 255, 0.88);
  height: 270px;
  width: 225px;
  border-radius: 100%;
  padding: 5px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.card.feedback-card section .comment-bubble > span {
  color: #253143;
  font-size: 80px;
  font-family: 'Times New Roman', serif;
  line-height: 1;
  position: absolute;
  font-weight: 700;
  right: 10px;
}
.card.feedback-card section .comment-bubble > span:first-child {
  top: 5px;
  left: 40%;
}
.card.feedback-card section .comment-bubble p {
  margin: 0;
  width: 100%;
  max-width: 150px;
  position: absolute;
  left: 20%;
  bottom: 45%;
}
.card.feedback-card section .comment-bubble p strong {
  font-size: 22px;
}
.card.feedback-card > footer {
  background-color: transparent;
}
.card.feedback-card > footer > div {
  justify-content: center;
}
.card.about-card {
  background-image: url(images/your-portal-bg.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border: 1px transparent;
}
.card.about-card > footer > div {
  justify-content: center;
}
.card.peninsula-advice-app-card {
  background-color: #e40038;
  background-image: none;
}
.card.peninsula-advice-app-card .left-container {
  width: 230px;
}
@media screen and (max-width: 1680px) {
  .card.peninsula-advice-app-card .left-container {
    padding-top: 25px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-advice-app-card .left-container {
    margin: 0 auto;
    width: 300px;
    padding-top: 15px;
    text-align: center;
  }
}
.card.peninsula-advice-app-card .left-container h3 {
  width: 200px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 1680px) {
  .card.peninsula-advice-app-card .left-container h3 {
    font-size: 22px;
    width: 300px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-advice-app-card .left-container h3 {
    font-size: 28px;
  }
}
.card.peninsula-advice-app-card .left-container a {
  margin-left: 5px;
}
.card.peninsula-advice-app-card .left-container .text {
  color: #ffffff;
  margin-top: 5px;
  padding: 0 5px;
}
@media screen and (max-width: 1680px) {
  .card.peninsula-advice-app-card .left-container .text {
    font-size: 1em;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-advice-app-card .left-container .text {
    font-size: 22px;
  }
}
.card.peninsula-advice-app-card .left-container .icons-container {
  margin-top: 15px;
  padding: 5px;
}
@media screen and (max-width: 1680px) {
  .card.peninsula-advice-app-card .left-container .icons-container {
    width: 130px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-advice-app-card .left-container .icons-container {
    text-align: center;
    display: flow-root;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1680px) {
  .card.peninsula-advice-app-card .left-container .icons-container .app-icon {
    width: 57px;
    height: 19px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-advice-app-card .left-container .icons-container .app-icon {
    margin: 0 auto;
  }
}
.card.peninsula-advice-app-card .right-container,
.card.peninsula-advice-app-card .right-container .advice-app {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1135px) {
  .card.peninsula-advice-app-card .right-container,
  .card.peninsula-advice-app-card .right-container .advice-app {
    display: none;
  }
}
.card.peninsula-refer-friend {
  background-color: #253143;
  background-image: url(images/megaphone.png);
  background-repeat: no-repeat;
  background-position: right 30px;
  background-size: contain;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.card.peninsula-refer-friend .left-container {
  width: 230px;
}
@media screen and (max-width: 1680px) {
  .card.peninsula-refer-friend .left-container {
    padding-top: 25px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-refer-friend .left-container {
    margin: 0 auto;
    padding-top: 15px;
    text-align: center;
    width: 300px;
  }
}
.card.peninsula-refer-friend .left-container .text {
  color: #ffffff;
  margin-top: 5px;
  padding: 0 5px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1680px) {
  .card.peninsula-refer-friend .left-container .text {
    font-size: 1em;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-refer-friend .left-container .text {
    font-size: 22px;
  }
}
.card.peninsula-refer-friend .left-container h1 {
  margin-left: 5px;
}
.card.peninsula-refer-friend .left-container h3 {
  font-size: 30px;
  font-weight: 700;
  width: 200px;
}
@media screen and (max-width: 1680px) {
  .card.peninsula-refer-friend .left-container h3 {
    font-size: 22px;
    width: 280px;
  }
}
@media screen and (max-width: 1135px) {
  .card.peninsula-refer-friend .left-container h3 {
    font-size: 28px;
    width: 300px;
  }
}
.card.peninsula-refer-friend .left-container h3:last-of-type {
  margin-bottom: 10px;
}
.card.peninsula-refer-friend .left-container a {
  margin-left: 5px;
}
@media screen and (max-width: 1135px) {
  .card.peninsula-refer-friend {
    background-image: none;
  }
}
.card.brain-box {
  background-color: #ffffff;
  background-image: url(images/brain-box.svg);
  background-origin: content-box;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #c3c3c3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.card.brain-box .container {
  align-self: center;
  text-align: center;
  width: 300px;
}
.card.brain-box .container a {
  position: relative;
  bottom: -70px;
}
.card.on-demand {
  background-color: #253143;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card.on-demand .container {
  align-self: center;
  text-align: center;
  width: 300px;
}
.card.on-demand .container h1 {
  margin: 0;
}
.card.on-demand .container h3 {
  letter-spacing: 1px;
  margin-top: -5px;
}
.card.on-demand .container .text {
  color: #ffffff;
  margin: 15px 0;
  padding: 0 5px;
}
.card.on-demand .container .text span {
  display: inline-block;
}
.card.glu-e-learning {
  background-image: url(images/Tile-GLU.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #D7DDF9;
}
.card.bright-advice-app-card {
  background-color: #253143;
  background-image: none;
  border: 1px solid #253143;
  border-radius: 8px;
}
.card.bright-advice-app-card .left-container {
  width: 220px;
  padding: 10px 15px;
}
@media screen and (max-width: 1680px) {
  .card.bright-advice-app-card .left-container {
    width: 205px;
  }
}
@media screen and (max-width: 1500px) {
  .card.bright-advice-app-card .left-container {
    width: 190px;
  }
}
@media screen and (max-width: 1135px) {
  .card.bright-advice-app-card .left-container {
    margin: 0 auto;
    width: 180px;
    padding-top: 15px;
  }
}
.card.bright-advice-app-card .left-container h3 {
  width: 150px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}
@media screen and (max-width: 1680px) {
  .card.bright-advice-app-card .left-container h3 {
    font-size: 22px;
    width: 131px;
  }
}
@media screen and (max-width: 1500px) {
  .card.bright-advice-app-card .left-container h3 {
    font-size: 20px;
    width: 120px;
  }
}
@media screen and (max-width: 1135px) {
  .card.bright-advice-app-card .left-container h3 {
    font-size: 28px;
    width: 185px;
  }
}
.card.bright-advice-app-card .left-container .text {
  color: #ffffff;
  font-size: 14px;
  margin-top: 5px;
  padding: 5px;
}
@media screen and (max-width: 1680px) {
  .card.bright-advice-app-card .left-container .text {
    font-size: 1em;
    width: 131px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1500px) {
  .card.bright-advice-app-card .left-container .text {
    font-size: 14px;
    width: 115px;
    margin-top: 5px;
  }
}
@media screen and (max-width: 1135px) {
  .card.bright-advice-app-card .left-container .text {
    font-size: 16px;
    width: 200px;
    margin-bottom: 10px;
  }
}
.card.bright-advice-app-card .left-container a {
  z-index: 1000;
}
@media screen and (max-width: 1680px) {
  .card.bright-advice-app-card .left-container a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1500px) {
  .card.bright-advice-app-card .left-container a {
    font-size: 12px;
  }
}
.card.bright-advice-app-card .left-container .icons-container {
  margin-top: 15px;
  padding: 5px;
  background-size: contain;
}
@media screen and (max-width: 1680px) {
  .card.bright-advice-app-card .left-container .icons-container {
    width: 130px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1135px) {
  .card.bright-advice-app-card .left-container .icons-container {
    text-align: center;
    display: flow-root;
    margin-left: auto;
    margin-right: auto;
  }
}
.card.bright-advice-app-card .left-container .icons-container .app-icon {
  height: 50%;
  width: 50%;
}
@media screen and (max-width: 1680px) {
  .card.bright-advice-app-card .left-container .icons-container .app-icon {
    width: 60%;
    height: 60%;
  }
}
@media screen and (max-width: 1135px) {
  .card.bright-advice-app-card .left-container .icons-container .app-icon {
    margin: 0 auto;
  }
}
.card.bright-advice-app-card .right-container,
.card.bright-advice-app-card .right-container .advice-app {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 315px;
  border-bottom-right-radius: 6px;
}
@media screen and (max-width: 1500px) {
  .card.bright-advice-app-card .right-container,
  .card.bright-advice-app-card .right-container .advice-app {
    max-height: 265px;
  }
}
@media screen and (max-width: 1135px) {
  .card.bright-advice-app-card .right-container,
  .card.bright-advice-app-card .right-container .advice-app {
    display: none;
  }
}
.card.coronavirus {
  background-color: #253143;
  background-image: url(images/coronavirus.png);
  background-position: top center;
  background-size: 100% 100%;
  display: flex;
  justify-content: center;
}
.card.coronavirus .container {
  padding: 20px 15px;
  position: relative;
  top: 130px;
  text-align: center;
}
.card.coronavirus .container h3 {
  color: #ffffff;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  width: 250px;
}
.card.coronavirus .container .text {
  color: #ffffff;
  font-size: 12px;
  margin-bottom: 5px;
  padding: 5px;
  width: 290px;
}
@media screen and (max-width: 1680px) {
  .card.coronavirus .container {
    padding-top: 25px;
  }
  .card.coronavirus .container h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 1135px) {
  .card.coronavirus .container {
    margin: 0;
    padding-top: 15px;
    top: 150px;
  }
}
@media screen and (max-width: 1135px) {
  .card.coronavirus {
    background-image: none;
  }
  .card.coronavirus .container {
    top: 80px;
  }
}
.card.brighthr-card {
  background-image: url(images/BrightHR-panel_bg.png);
  background-color: #20b1f3;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border: 1px transparent;
  border-radius: 8px;
}
.card.brighthr-card div {
  width: 100%;
  text-align: center;
  padding-top: 30px;
}
.card.brighthr-card > footer {
  background-color: transparent;
}
.card.brighthr-card > footer > div {
  justify-content: center;
}
.card.bright-ex-card {
  background-image: url(images/BrightExBackground.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border: 1px solid #c3c3c3;
  border-radius: 8px;
}
.card.bright-ex-card div {
  width: 100%;
  text-align: center;
  padding: 15px 35px;
}
.card.bright-ex-card div > img {
  width: 270px;
}
.card.bright-ex-card div p {
  margin: 0;
  text-align: left;
  font-size: 18px;
}
.card.bright-ex-card > footer {
  background-color: transparent;
}
.card.bright-ex-card > footer > div {
  padding: none;
  justify-content: center;
}
.card.bright-ex-card > footer > div .button-bright {
  background-color: #ffffff;
  color: #E10078;
  border: 1px solid #E10078;
}
.card.tribunal-card {
  background-image: url(images/Tribunal_Navigator.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  border: 1px solid #c3c3c3;
  border-radius: 8px;
}
.card.tribunal-card > footer {
  background-color: transparent;
}
.card.tribunal-card > footer > div {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 530px;
  margin-left: 45px;
}
.card.tribunal-card > footer > div .button-bright {
  background-color: #ffffff;
  color: #e40038;
  border: 1px solid #e40038;
}
.card.settings-card {
  flex: 1;
  min-height: 412px;
}
.card.settings-card > div {
  height: auto;
}
.card.settings-card > div > section {
  margin-top: 10px;
}
.card.settings-card > div > section > p {
  min-height: 70px;
  margin: 0 0 10px;
}
.card.settings-card button {
  margin-bottom: 15px;
}
.card.default-card > div > section {
  display: none;
}
.card.default-card > div > section.default-card-section {
  text-align: center;
  display: block;
  background-image: url(images/default-folder.png);
  background-repeat: no-repeat;
  background-position: center 30px;
  padding-top: 160px;
}
.card.default-card > div > section.default-card-section > p {
  margin: 0;
}
.card.error-card {
  background-color: #e40038;
  color: #ffffff;
  position: relative;
  background-image: url(images/error.png);
  background-position: bottom right;
  background-repeat: no-repeat;
}
.card.error-card > div:not(.error-container) {
  display: none;
}
.card.error-card > div.error-container {
  padding-top: 10px;
  display: block;
}
.card.error-card > div.error-container h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 400;
}
.card.error-card > div.error-container h3 {
  border-bottom: 0;
  font-size: 36px;
  line-height: 1;
  padding: 0;
  margin-bottom: 20px;
  color: #f38299;
  font-weight: 400;
}
.card.contact-card {
  height: 430px;
}
.card.contact-card div > section {
  height: auto;
}
.card.contact-card div > footer {
  padding: 15px 0;
}
.card.social-card {
  background-color: #20b1f3;
  border: none;
  padding: 40px;
  text-align: left;
}
.card.social-card h2 {
  padding: 20px;
}
.card.social-card ul {
  color: #ffffff;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.card.social-card ul li {
  display: inline;
  padding: 20px;
}
.card.social-card ul li a {
  color: #ffffff;
}
.card.social-card ul li a:visited {
  color: #ffffff;
}
.card.social-card ul li a:hover {
  color: #253143;
}
.profile-card-search-box {
  position: relative;
}
.profile-card-search-box input[type="text"] {
  width: 100%;
  padding: 0 50px 0 10px;
  line-height: 42px;
  height: 48px;
  border: 3px solid #45bef5;
  box-sizing: border-box;
  background-color: transparent;
  color: #ffffff;
  outline: 0;
  font-weight: 300;
  font-size: 1em;
}
.profile-card-search-box input[type="text"]::-moz-placeholder {
  color: #45bef5;
}
.profile-card-search-box input[type="text"]::placeholder {
  color: #45bef5;
}
.profile-card-search-box button {
  border: 0;
  outline: 0;
  background-color: transparent;
  width: 50px;
  text-align: center;
  color: #45bef5;
  position: absolute;
  height: 100%;
  padding: 0;
  margin: 0;
  top: 0;
  right: 0;
  cursor: pointer;
}
.profile-card-search-box button i {
  font-size: 28px;
}
.main-header {
  background-image: linear-gradient(to right, #e40038 50%, #ffffff 18%);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
.main-header > div {
  align-items: center;
  display: flex;
  height: 80px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 20px;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .main-header > div {
    padding: 0 10px;
  }
}
.main-header > div > div,
.main-header > div > a {
  align-items: center;
}
.main-header > div > div.logo-holder .peninsula-logo,
.main-header > div > a.logo-holder .peninsula-logo {
  background-color: #e40038;
  display: flex;
  padding-right: 20px;
}
.main-header > div > div.logo-holder .peninsula-logo .logo,
.main-header > div > a.logo-holder .peninsula-logo .logo {
  background-image: url(images/logo-p.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-block;
  height: 80px;
  margin-right: 10px;
  width: 30px;
}
.main-header > div > div.logo-holder .peninsula-logo .branding,
.main-header > div > a.logo-holder .peninsula-logo .branding {
  align-self: center;
  background-image: url(images/logo-type-negative.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  display: flex;
  height: 14px;
  width: 110px;
}
@media screen and (max-width: 480px) {
  .main-header > div > div.logo-holder .peninsula-logo,
  .main-header > div > a.logo-holder .peninsula-logo {
    padding-right: 0;
  }
}
.main-header > div > div.logo-holder:hover,
.main-header > div > a.logo-holder:hover {
  text-decoration: none;
}
.main-header > div > div.logo-holder h1,
.main-header > div > a.logo-holder h1 {
  font-family: 'Foco-Regular';
  font-weight: 700;
  margin: 0 0 0 15px;
  color: #253143;
  display: inline-block;
}
@media screen and (max-width: 1135px) {
  .main-header > div > div.logo-holder h1,
  .main-header > div > a.logo-holder h1 {
    display: none;
  }
}
.main-header > div > div.logo-holder h1 > span,
.main-header > div > a.logo-holder h1 > span {
  font-weight: 300;
  color: #20b1f3;
}
.main-header > div > div.logo-holder h1,
.main-header > div > a.logo-holder h1 {
  margin: 0 0 0 30px;
  font-size: 2em;
}
.main-header > div .menu {
  width: 100%;
}
.main-header > div .menu > .menu-hamburger,
.main-header > div .menu .search-handler {
  display: none;
}
.main-header > div .hamburger-holder {
  display: inline-flex;
  padding: 6px 0;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  z-index: 10;
}
.main-header > div .hamburger-holder > span {
  text-transform: uppercase;
  color: #253143;
  font-weight: 600;
}
@media screen and (max-width: 620px) {
  .main-header > div .hamburger-holder > span {
    display: none;
  }
}
.main-header > div .hamburger-holder > span em {
  font-style: normal;
}
.main-header > div .hamburger-holder > span em:last-child {
  display: none;
}
.main-header > div .hamburger-holder > div {
  position: relative;
  height: 30px;
  width: 50px;
}
.main-header > div .hamburger-holder > div > span,
.main-header > div .hamburger-holder > div:before,
.main-header > div .hamburger-holder > div:after {
  display: inline-block;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 7px;
  border-radius: 3px;
  background-color: #253143;
}
.main-header > div .hamburger-holder > div > span {
  top: 50%;
  margin-top: -3.5px;
  opacity: 1;
}
.main-header > div .hamburger-holder > div:after {
  top: auto;
  bottom: 0;
}
.main-header.opened .hamburger > span,
.main-header.opened .hamburger:before,
.main-header.opened .hamburger:after {
  background-color: #ffffff;
}
@media screen and (max-width: 620px) {
  .main-header {
    margin-bottom: 0;
  }
  .main-header div div.logo-holder .peninsula-logo i {
    background-image: url(images/logosmall.png);
  }
}
@media screen and (max-width: 1024px) {
  .main-header div > .menu {
    width: auto;
    width: initial;
  }
  .main-header div > .menu .menu-hamburger {
    display: inline-flex;
    position: relative;
    right: 0;
    top: -3px;
    width: 50px;
  }
  .main-header div > .menu .menu-hamburger .hamburger-holder {
    margin-left: 0;
  }
  .main-header div > .menu .search-handler {
    display: inline-flex;
    margin-right: 10px;
  }
}
.cookie-shown .main-nav {
  padding-top: 126px;
}
.main-nav {
  background-color: #ffffff;
}
@media screen and (min-width: 1024px) {
  .main-nav {
    display: flex;
  }
  .main-nav ul {
    display: flex;
    flex: 1;
    height: 80px;
    list-style-type: none;
    margin: 0;
  }
  .main-nav ul:last-of-type {
    justify-content: flex-end;
  }
  .main-nav ul li {
    align-items: center;
    display: inline-flex;
    height: 80px;
    margin-right: 20px;
    position: relative;
  }
  .main-nav ul li:last-of-type {
    margin-right: 0;
  }
  .main-nav ul li a {
    align-content: center;
    color: #000000;
    display: flex;
    text-decoration: none;
    width: 100%;
  }
  .main-nav ul li:hover .sub-nav {
    background: #ffffff;
    border: 1px solid #c3c3c3;
    border-radius: 4px;
    display: block;
    height: auto;
    height: initial;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 0;
    top: 65px;
    z-index: 5;
  }
  .main-nav ul li:hover .sub-nav li {
    cursor: pointer;
    display: block;
    height: 100%;
    margin-right: 0;
    min-width: 200px;
    padding: 10px;
  }
  .main-nav ul li:hover .sub-nav li:hover {
    background-color: #e5f6fe;
  }
  .main-nav ul li:hover .sub-nav li:hover a {
    color: #253143;
  }
  .main-nav ul li:hover .sub-nav li:first-of-type {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .main-nav ul li:hover .sub-nav li:last-of-type {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
  }
  .main-nav ul .mobile-nav-link {
    display: none;
  }
  .main-nav ul .sub-nav {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .main-nav {
    background-color: #253143;
    position: fixed;
    width: 265px;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 5;
    color: #ffffff;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.2s ease-in-out;
    padding-top: 86px;
    width: 100%;
  }
  .opened .main-nav {
    transform: translate3d(0, 0, 0);
  }
  .opened .main-nav:before,
  .opened .main-nav:after {
    background-color: #ffffff;
  }
  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav ul li > a,
  .main-nav ul li > span {
    display: block;
    line-height: 50px;
    color: #ffffff;
    padding: 0 15px 0 25px;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    font-size: 18px;
    font-weight: 600;
  }
  .main-nav ul li > a:hover,
  .main-nav ul li > span:hover,
  .main-nav ul li > a.active,
  .main-nav ul li > span.active {
    text-decoration: none;
    color: #45bef5;
  }
  .main-nav ul li > ul li > a {
    padding-left: 35px;
    font-weight: 300;
    background-color: #131922;
  }
  .main-nav ul li.desktop-nav-link {
    display: none;
  }
  .main-nav ul li.mobile-nav-link {
    display: block;
  }
}
.login-form {
  color: #253143;
  width: 100%;
  padding: 0 20px;
  max-width: 420px;
  margin: 0 auto;
  z-index: 2;
  font-weight: bold;
}
.login-form > div header {
  margin-bottom: 30px;
}
.login-form > div header h2 {
  margin: 0;
  line-height: 1;
  font-size: 1.9em;
}
.login-form > div header h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1;
  color: #e40038;
  font-size: 3.2em;
}
.login-form > div section .icon-field {
  margin-bottom: 30px;
}
.login-form > div section .icon-field:nth-child(2) {
  margin-bottom: 15px;
}
.login-form > div section .checkbox-holder {
  margin-bottom: 20px;
}
.login-form > div section .button {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.login-form > div section label {
  font-weight: 400;
}
.login-form > div section .button-loader {
  margin-bottom: 20px;
}
.login-form > div section a {
  color: #253143;
  display: block;
  margin-top: 30px;
}
.login-form > div section a:hover {
  color: #e40038;
  transition: ease-in 0.2s;
}
.login-form > div section .password-hint {
  background-color: #ffffff;
  border: 1px solid #20b1f3;
  margin-bottom: 20px;
  margin-top: 25px;
  padding: 20px;
  position: relative;
}
.login-form > div section .password-hint::before,
.login-form > div section .password-hint::after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  content: '';
  left: calc(50% - 15px);
  position: absolute;
}
.login-form > div section .password-hint::before {
  border-bottom: 15px solid #ffffff;
  top: -14px;
}
.login-form > div section .password-hint::after {
  border-bottom: 15px solid #20b1f3;
  top: -16px;
  z-index: -1;
}
.login-form > div section .password-hint .password-hint-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75em;
}
.login-form > div section .password-hint .password-hint-list ul {
  flex: 1 1 auto;
  margin: 0;
  padding-left: 15px;
}
.login-form > div section .password-hint .password-hint-list ul li {
  line-height: 1.5;
}
.main-footer {
  align-items: flex-end;
  background-color: #253143;
  color: #ffffff;
  display: flex;
  width: 100%;
}
.main-footer .footer-wrap {
  margin: 0 auto;
  max-width: 1400px;
  padding: 20px;
  width: 100%;
}
.main-footer .footer-wrap div:first-of-type {
  margin-bottom: 10px;
}
@media screen and (max-width: 1400px) {
  .main-footer .footer-wrap div {
    padding: 5px 0;
  }
}
.main-footer a {
  display: inline-block;
  margin-left: 20px;
}
.main-footer a:first-of-type {
  margin-left: 0;
}
@media screen and (max-width: 1400px) {
  .main-footer a {
    margin: 0 20px 0 0;
  }
}
@media screen and (max-width: 1400px) {
  .main-footer {
    min-height: 90px;
  }
}
@media screen and (max-width: 1240px) {
  .main-footer {
    min-height: 110px;
  }
}
html {
  overflow: auto;
}
.ngdialog-overlay {
  overflow-y: scroll;
}
.ngdialog.dialog-lg .ngdialog-content {
  animation: ngdialog-flyin 0.5s;
  background: #f0f0f0;
  border-radius: 5px;
  color: #444;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 800px;
  margin-top: 100px;
}
.ngdialog.dialog-custom .ngdialog-content {
  animation: ngdialog-flyin 0.5s;
  background: #fff;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  position: relative;
  width: 900px;
  margin-top: 100px;
}
@media screen and (max-width: 1135px) {
  .ngdialog.dialog-custom .ngdialog-content {
    width: 625px;
  }
}
.ngdialog.dialog-custom .header {
  height: 196px;
  background: url(images/modal_bg.png) no-repeat;
  background-color: #20b1f3;
  background-position-y: 0px;
  background-position-x: 250px;
  padding: 20px;
}
.ngdialog.dialog-custom .header > div {
  margin-top: 40px;
}
.ngdialog.dialog-custom .header > div h1 {
  font-weight: 600;
  font-size: 63px;
  color: #45bef5;
  line-height: 0.8;
}
.ngdialog.dialog-custom .header > div h2 {
  font-weight: 300;
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 0;
}
.ngdialog.dialog-custom .header .close-nav {
  text-transform: uppercase;
  line-height: 36px;
  text-align: right;
  position: absolute;
  right: 20px;
  top: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.ngdialog.dialog-custom .header .close-nav:after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 36px;
  top: 50%;
  right: 0;
  margin-top: -18px;
  background-image: url(images/close.svg);
  background-repeat: no-repeat;
  position: absolute;
}
.ngdialog.dialog-custom .body {
  padding: 1em;
}
.ngdialog.dialog-custom .body h3 {
  margin: 30px 0;
}
.ngdialog.dialog-custom .body .footer {
  text-align: right;
}
.ngdialog.dialog-custom .body .footer button {
  margin-left: 30px;
  margin-bottom: 10px;
}
.ngdialog.dialog-custom.ngdialog-closing .ngdialog-content {
  animation: ngdialog-flyout 0.5s;
}
.ngdialog.dialog-takeover .ngdialog-content {
  animation: ngdialog-flyin 0.5s;
  height: 80%;
  margin: 0 auto;
  margin-top: 100px;
  min-height: 800px;
  min-width: 1000px;
  position: relative;
  width: 50%;
}
.ngdialog.dialog-takeover .ngdialog-content .close-nav {
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 36px;
  position: absolute;
  right: 10px;
  text-align: right;
  text-transform: uppercase;
  top: 30px;
}
.ngdialog.dialog-takeover .ngdialog-content .close-nav:after {
  background-image: url(images/close-blue.svg);
  background-repeat: no-repeat;
  content: '';
  display: inline-block;
  height: 36px;
  margin-top: -18px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 36px;
}
@media screen and (max-width: 1240px) {
  .ngdialog.dialog-takeover .ngdialog-content {
    margin-top: 50px;
    min-width: 600px;
  }
}
@media screen and (max-width: 1135px) {
  .ngdialog.dialog-takeover .ngdialog-content {
    margin-top: 0;
    min-height: 100%;
    min-width: 100%;
  }
}
.ngdialog.dialog-takeover.ngdialog-closing .ngdialog-content {
  animation: ngdialog-flyout 0.5s;
}
.sub-navigation ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-end;
  list-style-type: none;
  height: 65px;
}
.sub-navigation ul > li {
  text-align: center;
  flex: 1 1 auto;
  font-size: 1.125em;
  height: 50px;
  transition: height 0.5s;
}
.sub-navigation ul > li > div {
  text-align: center;
  height: 100%;
  background: #eaeaea;
  display: block;
  border-top: 1px solid #cdd0d4;
  border-right: 1px solid #cdd0d4;
  border-left: 1px solid #cdd0d4;
  padding: 10px;
  cursor: pointer;
  border-radius: 4px 4px 0px 0px;
}
.sub-navigation ul > li > div i {
  margin-left: 10px;
  color: #253143;
}
.sub-navigation ul > li > div > h3 {
  font-weight: 300;
  margin: 0;
  text-transform: capitalize;
}
.sub-navigation ul > li.left-tab {
  padding-left: 15px;
  padding-right: 0;
}
.sub-navigation ul > li.right-tab {
  padding-right: 15px;
  padding-left: 0;
}
.sub-navigation ul > li.active {
  height: 65px;
}
.sub-navigation ul > li.active > div {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-bottom: 0;
}
.sub-navigation ul > li.active > div i {
  color: #cdd0d4;
}
.sub-navigation ul > li.active > div > h3 {
  font-weight: 700;
}
@media screen and (max-width: 620px) {
  .sub-navigation ul {
    flex-direction: column;
    height: inherit;
  }
  .sub-navigation ul li {
    width: 100%;
  }
  .sub-navigation ul li.left-tab {
    padding-left: 0;
    padding-right: 0;
  }
  .sub-navigation ul li.right-tab {
    padding-right: 0;
    padding-left: 0;
  }
  .sub-navigation ul li.active {
    height: 50px;
  }
}
.registration-form {
  color: #253143;
  width: 100%;
  padding: 0 20px;
  max-width: 420px;
  margin: 0 auto;
  font-weight: 700;
  z-index: 2;
}
.registration-form > div header {
  margin-bottom: 30px;
}
.registration-form > div header h2 {
  margin: 0;
  line-height: 1;
  font-size: 1.9em;
}
.registration-form > div header h1 {
  margin: 0;
  font-size: 50px;
  line-height: 1;
  color: #e40038;
  font-size: 3.2em;
}
.registration-form > div header div {
  font-size: 16px;
  margin-top: 30px;
}
.registration-form > div section {
  justify-content: center;
  margin: auto;
}
.registration-form > div section input {
  margin: 30px 0;
}
.registration-form > div section ul {
  list-style-type: none;
  padding-left: 0;
}
.registration-form > div section ul > li {
  text-align: left;
}
.registration-form > div section ul > li:nth-of-type(even) {
  margin-bottom: 30px;
}
.registration-form > div section .button {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px;
}
.registration-form .password-hint {
  background-color: #ffffff;
  border: 1px solid #20b1f3;
  margin-bottom: 20px;
  margin-top: 25px;
  padding: 20px;
  position: relative;
}
.registration-form .password-hint::before,
.registration-form .password-hint::after {
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  content: '';
  left: calc(50% - 15px);
  position: absolute;
}
.registration-form .password-hint::before {
  border-bottom: 15px solid #ffffff;
  top: -14px;
}
.registration-form .password-hint::after {
  border-bottom: 15px solid #20b1f3;
  top: -16px;
  z-index: -1;
}
.registration-form .password-hint .password-hint-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75em;
}
.registration-form .password-hint .password-hint-list ul {
  flex: 1 1 auto;
  margin: 0;
  padding-left: 15px;
  list-style-type: inherit;
}
.registration-form .password-hint .password-hint-list ul li {
  line-height: 1.5;
  margin-bottom: 0;
}
.morphsearch--icon {
  background: url(images/magnifier-dark.svg) no-repeat center center;
  background-size: 23px 23px;
  border-radius: 50%;
  cursor: pointer;
  display: block;
  height: 40px;
  width: 40px;
}
.morphsearch {
  background: #ffffff;
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 15;
}
.morphsearch.open {
  display: block;
  opacity: 0;
  animation: searchOpen 0.5s forwards;
}
.morphsearch.open .morphsearch-form {
  display: flex;
  justify-content: c;
  margin: 0 auto;
  max-width: 1400px;
  margin-top: 150px;
  padding: 20px;
}
.morphsearch.open .morphsearch-form .morphsearch--icon {
  background-size: 30px 30px;
  height: 60px;
  margin-top: 5px;
  width: 60px;
}
.morphsearch.open .morphsearch-input {
  background: #d6d5d5;
  border: none;
  border-radius: 8px;
  color: #253143;
  cursor: text;
  display: block;
  font-size: 2em;
  padding: 15px;
  width: 90%;
}
.morphsearch.closing {
  display: block;
  animation: searchClose 0.5s forwards;
}
.morphsearch-close {
  background: #253143;
  border-radius: 50%;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  position: absolute;
  right: 1em;
  top: 1em;
  cursor: pointer;
}
.morphsearch-close:before {
  background: #ffffff;
  border-radius: 3px;
  content: '';
  height: 50%;
  left: 50%;
  position: absolute;
  top: 15px;
  transform: rotate(45deg);
  width: 2px;
}
.morphsearch-close:after {
  background: #ffffff;
  border-radius: 3px;
  content: '';
  height: 50%;
  left: 50%;
  position: absolute;
  top: 15px;
  transform: rotate(-45deg);
  width: 2px;
}
.morphsearch-close:hover:before,
.morphsearch-close:hover:after {
  opacity: 0.4;
}
@keyframes searchClose {
  0% {
    display: block;
    opacity: 1;
    top: 0vh;
  }
  25% {
    top: 75vh;
  }
  100% {
    display: none;
    opacity: 0;
    top: 100vh;
  }
}
@keyframes searchOpen {
  0% {
    opacity: 0;
    top: 100vh;
  }
  25% {
    top: 75vh;
  }
  100% {
    opacity: 1;
    top: 0vh;
  }
}
@media screen and (max-width: 800px) {
  .morphsearch-title {
    display: none;
  }
}
@media screen and (max-width: 620px) {
  .morphsearch.open .morphsearch--icon {
    display: none;
  }
  .morphsearch.open .morphsearch-form input {
    width: 100%;
  }
  .morphsearch-submit {
    display: none;
  }
}
.options-dropdown {
  text-align: center;
}
.options-dropdown span:focus {
  color: #20b1f3;
}
.options-dropdown span:focus .fa-cog {
  transition: 0.9s;
  transform: rotate(45deg);
}
.options-dropdown > span {
  font-size: 26px;
  outline: none;
  cursor: pointer;
  background: transparent;
  border: none;
  color: #3f3f3f;
}
.options-dropdown ul {
  display: none;
  list-style: none;
  border: 1px solid #20b1f3;
  position: absolute;
  z-index: 5;
  background: #20b1f3;
  color: #ffffff;
  margin: -33px -25px;
  list-style-type: none;
  padding: 0;
  right: 115px;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.035);
}
.options-dropdown ul > li {
  padding: 11px 11px;
  width: 100%;
  cursor: pointer;
  outline: none;
  text-align: left;
}
.options-dropdown ul > li:focus,
.options-dropdown ul > li:hover {
  background: #45bef5;
  color: #ffffff;
}
.options-dropdown ul > li:last-child {
  border-bottom: 0;
}
.options-dropdown ul > li:first-child::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #20b1f3;
  position: absolute;
  right: -21px;
  top: 5px;
}
.options-dropdown ul > li:first-child::before:focus,
.options-dropdown ul > li:first-child::before:hover {
  background-color: #45bef5;
}
.options-dropdown ul > li:first-child::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 22px;
  border-color: transparent transparent transparent #20b1f3;
  position: absolute;
  right: -22px;
  top: 5px;
}
.options-dropdown ul.active {
  display: block;
  min-width: 250px;
}
.takeover {
  background-image: url(images/takeover.png);
  background-position: center;
  background-size: cover;
  height: 100%;
}
.takeover .content {
  color: #ffffff;
  padding: 10px 20px;
  position: absolute;
  bottom: 20px;
  text-align: center;
}
.callback {
  bottom: 25px;
  position: fixed;
  right: 50px;
  z-index: 10;
}
@media screen and (max-width: 1135px) {
  .callback {
    display: none;
  }
}
.cookie {
  background-color: #e40038;
  text-align: center;
  color: #ffffff;
  height: 0;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  z-index: 10000;
}
.cookie p {
  margin: 0;
}
.cookie.show-cookie {
  display: block;
  height: 60px;
  opacity: 1;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .cookie.show-cookie {
    height: 80px;
  }
}
@media screen and (max-width: 620px) {
  .cookie.show-cookie {
    height: 100px;
  }
}
.cookie a {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}
.cookie button {
  margin-left: 30px;
}
.loader-container {
  display: flex;
  justify-content: center;
  width: 100%;
}
.loader-container .loader {
  background-image: url(images/loader.gif);
  background-size: cover;
  background-position: center;
  display: block;
  height: 16px;
  width: 16px;
}
.alert-message {
  background-color: #e40038;
  border: 1px solid #e40038;
  padding: 10px;
  width: 100%;
}
.alert-message .message {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  margin: auto auto;
  padding: 0 20px;
  width: 1400px;
}
.alert-message .message a {
  color: #ffffff;
}
.alert-message .message a:hover {
  color: #253143;
}
@media screen and (max-width: 1400px) {
  .alert-message .message {
    width: 100%;
  }
}
@media screen and (max-width: 620px) {
  .alert-message .message {
    min-height: 70px;
  }
}
.alert-container {
  background: white;
  color: black;
  padding: 15px 15px 0px 15px;
  margin-bottom: 20px;
  border-radius: 5px;
  border: 3px dashed #e40038;
  box-shadow: 0 2px 4px 0 rgba(122, 87, 87, 0.06);
  text-align: center;
}
.alert-container p {
  font-size: 14px;
}
.maintenance-message {
  background-color: #253143;
  bottom: 0;
  color: #ffffff;
  padding: 20px 30px;
  position: fixed;
  width: 100%;
  z-index: 9002;
}
.maintenance-message h3 {
  margin-bottom: 5px;
}
.maintenance-message p {
  margin: 0;
}
.maintenance-message .grid > div:not(:last-of-type) {
  padding-right: 30px;
}
.maintenance-message .cog-icon {
  height: 70px;
  background-image: url(images/cog.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 70px;
}
.maintenance-message .close-icon-blue {
  cursor: pointer;
  background-color: #ffffff;
  background-image: url(images/close-blue.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 40%;
  border-radius: 50%;
  height: 30px;
  width: 30px;
}
.navbar-container {
  height: 100%;
}
.navbar-container .side-navbar {
  background-color: #253143;
  padding: 20px;
  height: 100%;
  width: 190px;
  box-shadow: 0 2px 4px 0 rgba(122, 87, 87, 0.06);
}
@media screen and (max-width: 1024px) {
  .navbar-container .side-navbar {
    width: 100%;
    border-radius: 0;
    min-height: 140px;
  }
}
.navbar-container .side-navbar h4 {
  color: #ffffff;
}
.navbar-container .side-navbar p {
  color: #ffffff;
  font-size: 0.875em;
  text-align: center;
}
.navbar-container .side-navbar .nav-divider {
  border-top: 1px solid #ffffff;
  height: 2px;
  width: 100%;
  margin: 20px 0px 20px 0px;
}
.navbar-container .side-navbar .nav-footer {
  text-align: center;
  font-size: 0.875em;
}
.navbar-container .side-navbar .type-select {
  margin: 15px 0px;
}
.navbar-container .side-navbar .type-select ul {
  color: #000000;
}
.navbar-container .side-navbar ul {
  list-style-type: circle;
  padding: 0 20px;
  color: #ffffff;
}
.navbar-container .side-navbar ul li {
  font-size: 0.875em;
  padding: 5px 0px;
}
.navbar-container .side-navbar ul li a {
  color: #ffffff;
  text-decoration: none;
}
.navbar-container .side-navbar ul li a:hover {
  text-decoration: underline;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .navbar-container .side-navbar .navbar-mobile {
    display: none;
  }
}
.stationery-card .flex-container {
  display: flex;
}
.stationery-card .flex-container div {
  margin: 0;
}
.stationery-card .flex-container .flex-child {
  flex: 0 0 85%;
}
.stationery-card .flex-container .flex-child .ui-content {
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .stationery-card .flex-container .flex-child {
    flex: 1 0 auto;
  }
}
.stationery-card .flex-container .flex-child:first-child {
  flex: 0.5 0 15%;
}
@media screen and (max-width: 1024px) {
  .stationery-card .flex-container .flex-child:first-child {
    order: 1;
    flex: 1 0 auto;
  }
}
.stationery-card .stationery-folders {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 20px 45px;
}
.stationery-card .stationery-folders .center {
  justify-content: center;
  flex-wrap: nowrap;
}
.stationery-card .stationery-folders .folder {
  width: 400px;
  height: 275px;
  border-radius: 4px;
  background-color: #F8F8F8;
  margin: 20px 25px;
  box-shadow: 0 3px 6px 0 rgba(122, 87, 87, 0.16);
  cursor: pointer;
  text-align: center;
  position: relative;
  border: 1px solid #D2D2D2;
}
.stationery-card .stationery-folders .folder .folder-banner {
  width: 100%;
  height: 65px;
  background-color: #253143;
  border-radius: 0px 0px 4px 4px;
  position: absolute;
  bottom: 0;
}
.stationery-card .stationery-folders .folder .folder-banner h2 {
  color: #ffffff;
  margin: 0;
  line-height: 65px;
}
.stationery-card .stationery-folders-center {
  margin-top: 50px;
  justify-content: center;
  flex-wrap: nowrap;
}
.stationery-card .stationery-section {
  padding: 20px 10px;
}
.stationery-card .stationery-section .table-container {
  padding: 20px;
}
@media screen and (max-width: 1400px) {
  .stationery-card .stationery-section .table-container .table {
    min-width: 800px;
  }
}
.stationery-card .stationery-section .title-section {
  display: flex;
  padding: 10px 20px 0px 20px;
}
.stationery-card .stationery-section .title-section .title-jurisdiction {
  color: #e40038;
}
.stationery-card .stationery-section .search-container {
  margin-left: 20px;
  margin-top: 10px;
}
.stationery-card .stationery-section .search-container .reset-button {
  display: inline-block;
  margin-left: 20px;
}
.stationery-card .default-card-section {
  text-align: center;
  display: block;
  background-image: url(images/default-folder.png);
  background-repeat: no-repeat;
  background-position: center 50px;
  padding-top: 180px;
}
.stationery-card .default-card-section > p {
  margin: 0;
}
.stationery-card .default-card-section > .backbutton {
  margin-top: 20px;
}
.stationery-card .error-card-section {
  text-align: center;
  display: block;
  background-image: url(images/error-folder.png);
  background-repeat: no-repeat;
  background-position: center 30px;
  padding-top: 160px;
}
.stationery-card .error-card-section > p {
  margin: 0;
}
.stationery-card .error-card-section > .backbutton {
  margin-top: 20px;
}
.stationery-card .folder-cards {
  text-align: center;
  display: block;
  background-repeat: no-repeat;
  background-position: center 45px;
  background-size: 130px;
}
.stationery-card .folder-cards.recruitment {
  background-image: url(images/report-file.png);
}
.stationery-card .folder-cards.hr-forms {
  background-image: url(images/hr-forms.png);
}
.stationery-card .folder-cards.management-guides {
  background-image: url(images/guides.png);
}
.stationery-card .folder-cards.data-protection {
  background-image: url(images/data-protection.png);
}
.viewadvice-container {
  display: block;
}
.viewadvice-container h2 {
  margin-bottom: 5px;
}
.viewadvice-container .view-job {
  display: flex;
  height: 100%;
  margin-bottom: 20px;
}
.viewadvice-container .view-job > div:nth-child(1) {
  flex: 1 0 10%;
  min-width: 125px;
}
.viewadvice-container .view-job > div:nth-child(2) {
  flex: 1 1 90%;
  position: relative;
}
.viewadvice-container .view-job .header {
  display: flex;
  padding: 10px;
}
.viewadvice-container .view-job .header div {
  display: flex;
}
.viewadvice-container .view-job .header div span {
  padding: 0 5px;
}
.speech-bubble {
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 5px 3px 24px -4px rgba(0, 0, 0, 0.2);
  display: flex;
  min-height: 50px;
}
.speech-bubble .speech-bubble--left {
  flex: 1;
  max-width: 80%;
}
.speech-bubble .speech-bubble--left > header {
  padding: 10px;
  font-weight: 700;
  min-height: 30px;
}
.speech-bubble .speech-bubble--left > section.body {
  padding: 10px;
  min-height: 150px;
}
.speech-bubble .speech-bubble--right {
  border-left: 1px solid #c3c3c3;
  padding: 10px;
  min-width: 200px;
  width: 20%;
}
.speech-bubble .attachments {
  border-top: 1px solid #c3c3c3;
  display: block;
  min-height: 50px;
  padding: 0 10px 10px 10px;
}
.speech-bubble .attachments .attachments-list {
  display: inline-block;
}
.speech-bubble .attachments .attachments-list a {
  padding-right: 10px;
}
@media screen and (max-width: 1024px) {
  .speech-bubble {
    flex-wrap: wrap;
  }
  .speech-bubble .speech-bubble--left {
    min-width: 100%;
  }
  .speech-bubble .speech-bubble--right {
    border-left: none;
    border-top: 1px solid #c3c3c3;
    padding: 5px 0;
    width: 100%;
  }
  .speech-bubble footer div:nth-child(2) {
    text-align: left;
  }
  .speech-bubble footer div:nth-child(2) span:nth-child(1) > span {
    display: inline;
  }
  .speech-bubble footer div:nth-child(2) span:nth-child(2) {
    display: block;
  }
  .speech-bubble .attachments .attachments-list {
    display: block;
  }
}
#browserError {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(images/browser-bg.png);
  background-repeat: repeat;
  z-index: 9999;
  min-width: 800px;
}
#browserError > div {
  width: 100%;
  max-width: 800px;
  padding: 30px 20px;
  background-color: #ffffff;
  min-height: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -200px 0 0 -400px;
  text-align: center;
}
#browserError h1 {
  line-height: 1;
  font-size: 70px;
  margin: 0 0 5px;
  text-transform: uppercase;
  font-weight: normal;
}
#browserError h2 {
  line-height: 1;
  font-size: 24px;
  margin: 0 0 5px;
  font-weight: normal;
}
#browserError h3 {
  line-height: 1;
  font-size: 16px;
  font-weight: normal;
}
#browserError ul {
  list-style: none;
  margin: 0 0 0 -30px;
  overflow: hidden;
  padding: 0;
}
#browserError ul li {
  float: left;
  width: 25%;
}
#browserError ul li a {
  margin: 0 0 0 30px;
  display: block;
  border: 0;
}
#browserError ul li a img {
  display: block;
  width: 100%;
  border: 0;
}
.searchtable td:nth-child(1),
.searchtable th:nth-child(1) {
  width: 50%;
  min-width: 350px;
}
.searchtable td:nth-child(2),
.searchtable th:nth-child(2) {
  width: 25%;
  min-width: 150px;
}
.searchtable td:nth-child(3),
.searchtable th:nth-child(3) {
  width: 15%;
  min-width: 200px;
}
.searchtable td:nth-child(4),
.searchtable th:nth-child(4) {
  width: 10%;
  min-width: 175px;
  text-align: center;
}
.search-box {
  text-align: center;
  margin-bottom: 30px;
  padding: 25px 15px;
}
.search-box .search-input {
  position: relative;
  margin-bottom: 25px;
  display: flex;
}
.search-box .search-input .seach-header {
  width: 100px;
  align-self: center;
  font-weight: 600;
  padding-right: 5px;
  line-height: 3;
}
.search-box .search-input .search-dropdown {
  position: relative;
}
.search-box .search-input .search-dropdown span {
  line-height: 48px;
  height: 48px;
  border: 1px solid #b3b3b3;
  box-sizing: border-box;
  background-color: #253143;
  color: #ffffff;
  outline: 0;
  font-weight: 300;
  font-size: 1em;
  display: inline-flex;
  border-right: none;
  text-align: left;
  padding: 0 10px 0 10px;
  cursor: pointer;
}
.search-box .search-input .search-dropdown span i {
  margin-top: 15px;
  padding-left: 5px;
  color: #ffffff;
}
.search-box .search-input .search-dropdown span:hover {
  background-color: #374964;
}
.search-box .search-input .search-dropdown ul {
  padding: 0;
  list-style-type: none;
  margin: 0;
  display: none;
  position: absolute;
  min-width: 150px;
}
.search-box .search-input .search-dropdown ul li {
  width: 100%;
  line-height: 48px;
  height: 48px;
  border: 1px solid #b3b3b3;
  box-sizing: border-box;
  background-color: #253143;
  color: #ffffff;
  outline: 0;
  font-weight: 300;
  font-size: 1em;
  min-width: 120px;
  border-top: none;
  cursor: pointer;
}
.search-box .search-input .search-dropdown ul li:nth-child(1) {
  border-top: none;
  border-bottom: 1px solid #b3b3b3;
}
.search-box .search-input .search-dropdown ul li:nth-last-of-type(1) {
  border-top: none;
  border-bottom: 1px solid #b3b3b3;
}
.search-box .search-input .search-dropdown ul li:hover {
  background-color: #374964;
}
.search-box .search-input .search-dropdown.active ul {
  display: block;
}
.search-box .search-input .search-wrap {
  position: relative;
  width: 100%;
}
.search-box .search-input .search-wrap input[type="text"] {
  flex: 0 82%;
  width: 100%;
  padding: 0 40px 0 10px;
  line-height: 42px;
  height: 48px;
  border: 1px solid #b3b3b3;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  outline: 0;
  font-weight: 300;
  font-size: 1em;
  border-left: none;
}
.search-box .search-input .search-wrap input[type="text"]::-moz-placeholder {
  color: #45bef5;
}
.search-box .search-input .search-wrap input[type="text"]::placeholder {
  color: #45bef5;
}
.search-box .search-input .search-wrap button {
  border: 0;
  outline: 0;
  background-color: transparent;
  width: 60px;
  text-align: center;
  position: absolute;
  height: 100%;
  padding: 0;
  margin: 0;
  top: 0;
  right: 10px;
  cursor: pointer;
}
.search-box .search-input .search-wrap button i {
  font-size: 28px;
  color: #3f3f3f;
}
.search-box .search-result {
  font-size: 18px;
  font-weight: 300;
}
@media screen and (max-width: 480px) {
  .search-input .search-dropdown {
    display: none;
  }
  .search-input input {
    border-left: 1px solid #b3b3b3 !important;
  }
}
@media screen and (min-width: 1600px) {
  .search-box .search-input button {
    right: 0;
  }
}
.aboutus .grid--1of3 > .grid-cell {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
.aboutus .about-image {
  flex: 1;
  background-color: #f2f2f2;
  text-align: center;
  padding: 30px 10px;
}
.aboutus .about-image img {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 25px;
}
.aboutus .about-image p {
  margin-bottom: 0;
}
.administration-card .table td:nth-child(3),
.administration-card .table th:nth-child(3) {
  min-width: 300px;
}
.administration-card .table td:nth-child(4),
.administration-card .table th:nth-child(4) {
  padding: 0px 10px !important;
}
.administration-card .table td:nth-child(5),
.administration-card .table th:nth-child(5) {
  text-align: center !important;
  max-width: 150px;
  width: 150px;
  padding: 0px 10px !important;
}
.administration-card .table td:nth-child(6),
.administration-card .table th:nth-child(6) {
  max-width: 120px;
  padding: 0px 10px !important;
}
.administration-card .table td {
  transition: background 0.2s 0.2s ease-in-out;
}
.administration-card .table td .link:focus {
  text-decoration: underline;
}
.administration-card > div > form > .add-user {
  align-items: flex-end;
  background: #e5f6fe;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.035);
  border: 1px solid #eaeaea;
  display: none;
  height: 0;
  opacity: 0;
  padding: 0 20px 0 20px;
}
.administration-card > div > form > .add-user label {
  margin-bottom: 0;
}
.administration-card > div > form > .add-user.toggle {
  animation: createUser 0.3s ease-in forwards;
  display: block;
  margin-top: 20px;
}
@media all and (max-width: 1400px) {
  .administration-card > div > form > .add-user .button-primary {
    margin-top: 5px;
  }
}
@keyframes createUser {
  0% {
    height: 0px;
  }
  50% {
    height: 100px;
    opacity: 0.5;
    padding: 15px 20px 10px 20px;
  }
  100% {
    height: 100%;
    opacity: 1;
    padding: 30px 20px 20px 20px;
  }
}

