/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnFlat:hover {
  background: #f4f4f4;
}
.btnFlat:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised {
  position: relative;
  overflow: hidden;
}
.btnRaised:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnRaised:hover {
  background: #406EB3;
}
.btnRaised:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled {
  pointer-events: none;
}
.gradientText {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page {
  min-height: 22em;
}
.headerText {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}
@-webkit-keyframes rotator {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
.pathSapphire {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
}
.lightBlueWhiteText {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText {
  background-color: #fff;
  color: #632678;
}
.violetSubText {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer {
  padding-top: 24px;
}
.card {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText {
    font-size: 13px;
    line-height: 22px;
}
.card {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton {
    margin-top: 12px;
}
.cardErrorCode {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnFlat:hover {
  background: #f4f4f4;
}
.btnFlat:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised {
  position: relative;
  overflow: hidden;
}
.btnRaised:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnRaised:hover {
  background: #406EB3;
}
.btnRaised:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled {
  pointer-events: none;
}
.gradientText {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page {
  min-height: 22em;
}
.headerText {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}
@-webkit-keyframes rotator {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
.pathSapphire {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
}
.lightBlueWhiteText {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText {
  background-color: #fff;
  color: #632678;
}
.violetSubText {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer {
  padding-top: 24px;
}
.card {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText {
    font-size: 13px;
    line-height: 22px;
}
.card {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton {
    margin-top: 12px;
}
.cardErrorCode {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.FooterViolet {
  overflow: hidden;
  text-align: center;
  color: #632678;
  font-size: 18px;
  margin-top: 25px;
  padding: 0 5px;
}
.FooterDarkBlue {
  overflow: hidden;
  text-align: center;
  color: #3D87af;
  font-size: 18px;
  margin: 15px 15px 12px 15px;
}
.FooterContactUs {
  overflow: hidden;
  text-align: center;
  color: #632678;
  font-size: 18px;
  padding-bottom: 4px;
}
.FooterContactUs:before,
.FooterContactUs:after {
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.FooterContactUs:before {
  right: 20px;
  margin-left: -50%;
  background-color: #3D87af;
}
.FooterContactUs:after {
  left: 20px;
  margin-right: -50%;
  background-color: #632678;
}
.ContactUsDivider {
  margin: 10px;
}
.line-separator {
  height: 1px;
  background: #eee;
  margin: 20px 50px 10px 50px;
}
.FooterDocumentsContainer {
  margin: 0 auto;
}
.FooterDocument a {
  color: #3D87af;
  font-size: 18px;
  margin: 20px;
  float: left;
}
.FooterSubText {
  overflow: hidden;
  text-align: center;
  color: #aaa;
  font-size: 12px;
  margin: 5px 20px;
}
.FooterSubText a {
  color: #3D87af;
}
.SocialMediaContainer {
  background-color: #eee;
  padding: 26px 0;
  min-height: 45px;
  width: 100%;
  margin-top: 20px;
}
.tblSocialMedia {
  background-color: #eee;
  padding: 26px 0;
  min-height: 45px;
  width: 100%;
}
.innerMediaContainer {
  padding-left: 24px;
}
.Stripe img {
  height: 45px;
  float: right;
  margin-right: 42px;
}
.SocialMedia {
  float: left;
  width: 45px;
  height: 45px;
  padding-right: 10px;
}
.SocialMedia img {
  width: 45px;
  height: 45px;
}
.SocialMedia:hover img {
  opacity: 0.7;
}
.promotionalOfferText {
  margin: 20px;
}
@media only screen and (max-width: 640px) {
#anchorEmail {
    margin-top: -6px;
}
.FooterDocumentsContainer a {
    width: 100%;
}
.FooterDocument {
    text-align: center;
}
.FooterDocument a {
    margin: 10px 0px;
}
.FooterViolet {
    padding: 0 25px;
}
.FooterDarkBlue {
    padding: 0;
    margin: 6px;
}
.ContactUsDivider {
    display: none;
}
#anchorTelNo,
  #anchorEmail {
    width: 100%;
    float: left;
    margin: 10px 0px;
}
.SocialMediaContainer {
    margin: auto;
    padding: 5px 0px 0px 0px;
}
.tblSocialMedia {
    padding: 5px 0;
    text-align: center;
}
.SocialMedia {
    float: left;
    width: 20%;
    padding-right: 0;
}
.SocialMedia img {
    margin: 8px;
}
.Stripe img {
    float: none;
    margin: auto;
}
.FooterSubText {
    padding: 14px 8px;
    margin: -12px 5px 0 5px;
}
.FooterSubText a {
    color: #3D87af;
}
.line-separator {
    margin-top: 10px;
    margin-bottom: 10px;
}
.innerMediaContainer {
    margin-right: 0px;
    padding-left: 0px;
}
.promotionalOfferText {
    margin-top: 0;
}
}
/* Mobile */
@media only screen and (max-width: 560px) {
.innerMediaContainer {
    margin-right: 0px;
    padding-left: 0px;
}
.SocialMediaContainer {
    padding-top: 0;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnFlat:hover {
  background: #f4f4f4;
}
.btnFlat:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised {
  position: relative;
  overflow: hidden;
}
.btnRaised:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnRaised:hover {
  background: #406EB3;
}
.btnRaised:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled {
  pointer-events: none;
}
.gradientText {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page {
  min-height: 22em;
}
.headerText {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}
@-webkit-keyframes rotator {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
.pathSapphire {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
}
.lightBlueWhiteText {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText {
  background-color: #fff;
  color: #632678;
}
.violetSubText {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer {
  padding-top: 24px;
}
.card {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText {
    font-size: 13px;
    line-height: 22px;
}
.card {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton {
    margin-top: 12px;
}
.cardErrorCode {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.outerContainer {
  height: 212px;
}
.headerContainer {
  position: relative;
  background: transparent;
  height: 76px;
  width: 100%;
}
.experianLogo {
  float: left;
  padding-top: 4px;
  margin: 16px;
  width: 120px;
  height: 38px;
}
.headerActions {
  float: right;
  margin: 16px;
  height: 48px;
}
.productImage {
  position: relative;
  top: -109px;
  margin-left: auto;
  margin-right: auto;
  width: 470px;
  height: 248px;
  z-index: -1;
}
.productText {
  position: relative;
  top: -135px;
  text-align: center;
  font-size: 22px;
  color: #ba2f7d;
}
.seperator {
  height: 1px;
  width: 100%;
  -webkit-box-shadow: 0 2px 3px #aaa;
  box-shadow: 0 2px 3px #aaa;
  z-index: 1;
  background: transparent;
}
/* Tablet */
@media only screen and (max-width: 1024px) {
.productImage {
    top: -106px;
}
}
/* Mobile */
@media only screen and (max-width: 560px) {
.outerContainer {
    height: 180px;
}
.experianLogo {
    width: 30px;
    height: 38px;
    margin: 20px;
    padding: 0;
}
.productImage {
    clear: both;
    top: -86px;
    max-width: 320px;
    height: 166px;
}
.productText {
    font-size: 18px;
    top: -96px;
}
.headerActions {
    margin: 22px 20px 22px 0;
}
.headerActions button {
    margin: 2px;
}
}


a[data-v-ad4cba64] {
    height: inherit;
}
div[data-v-ad4cba64] {
    height: inherit;
}


/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-2a60f2c0] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-2a60f2c0]:-webkit-autofill,
input[data-v-2a60f2c0]:-webkit-autofill:hover,
input[data-v-2a60f2c0]:-webkit-autofill:focus,
input[data-v-2a60f2c0]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-2a60f2c0 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-2a60f2c0 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-2a60f2c0] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-2a60f2c0] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-2a60f2c0]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-2a60f2c0]:focus:not(:active)::after {
  -webkit-animation: ripple-2a60f2c0 1s ease-out;
          animation: ripple-2a60f2c0 1s ease-out;
}
.btnFlat[data-v-2a60f2c0]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-2a60f2c0]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-2a60f2c0] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-2a60f2c0] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-2a60f2c0]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-2a60f2c0]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-2a60f2c0]:focus:not(:active)::after {
  -webkit-animation: ripple-2a60f2c0 1s ease-out;
          animation: ripple-2a60f2c0 1s ease-out;
}
.btnRaised[data-v-2a60f2c0]:hover {
  background: #406EB3;
}
.btnRaised[data-v-2a60f2c0]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-2a60f2c0] {
  pointer-events: none;
}
.gradientText[data-v-2a60f2c0] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-2a60f2c0] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-2a60f2c0] {
  min-height: 22em;
}
.headerText[data-v-2a60f2c0] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-2a60f2c0] {
  -webkit-animation: rotator-2a60f2c0 1.4s linear infinite;
          animation: rotator-2a60f2c0 1.4s linear infinite;
}
@-webkit-keyframes rotator-2a60f2c0 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-2a60f2c0 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-2a60f2c0] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-2a60f2c0 1.4s ease-in-out infinite,colors-2a60f2c0 5.6s ease-in-out infinite;
          animation: dash-2a60f2c0 1.4s ease-in-out infinite,colors-2a60f2c0 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-2a60f2c0] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-2a60f2c0 1.4s ease-in-out infinite,colorsSapphire-2a60f2c0 5.6s ease-in-out infinite;
          animation: dash-2a60f2c0 1.4s ease-in-out infinite,colorsSapphire-2a60f2c0 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-2a60f2c0] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-2a60f2c0] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-2a60f2c0] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-2a60f2c0] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-2a60f2c0 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-2a60f2c0 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-2a60f2c0 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-2a60f2c0 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-2a60f2c0 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-2a60f2c0 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-2a60f2c0] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-2a60f2c0] {
  padding-top: 24px;
}
.card[data-v-2a60f2c0] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-2a60f2c0] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-2a60f2c0] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-2a60f2c0] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-2a60f2c0] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-2a60f2c0] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-2a60f2c0] {
    margin-top: 12px;
}
.cardErrorCode[data-v-2a60f2c0] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-2a60f2c0] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.upImage[data-v-2a60f2c0] {
  color: white;
}
button[data-v-2a60f2c0] {
  position: fixed ;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  width: 60px;
  height: 60px;
  color: white;
  cursor: pointer;
  padding: 6px 14px;
  margin: 6px;
  font-size: 18px;
  border-radius: 36px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
button[data-v-2a60f2c0]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
button[data-v-2a60f2c0]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
button[data-v-2a60f2c0]:focus:not(:active)::after {
  -webkit-animation: ripple-2a60f2c0 1s ease-out;
          animation: ripple-2a60f2c0 1s ease-out;
}
button[data-v-2a60f2c0]:hover {
  background: #406EB3;
}
button[data-v-2a60f2c0]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-19bb44ab] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-19bb44ab]:-webkit-autofill,
input[data-v-19bb44ab]:-webkit-autofill:hover,
input[data-v-19bb44ab]:-webkit-autofill:focus,
input[data-v-19bb44ab]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-19bb44ab {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-19bb44ab {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-19bb44ab] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-19bb44ab] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-19bb44ab]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-19bb44ab]:focus:not(:active)::after {
  -webkit-animation: ripple-19bb44ab 1s ease-out;
          animation: ripple-19bb44ab 1s ease-out;
}
.btnFlat[data-v-19bb44ab]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-19bb44ab]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-19bb44ab] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-19bb44ab] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-19bb44ab]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-19bb44ab]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-19bb44ab]:focus:not(:active)::after {
  -webkit-animation: ripple-19bb44ab 1s ease-out;
          animation: ripple-19bb44ab 1s ease-out;
}
.btnRaised[data-v-19bb44ab]:hover {
  background: #406EB3;
}
.btnRaised[data-v-19bb44ab]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-19bb44ab] {
  pointer-events: none;
}
.gradientText[data-v-19bb44ab] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-19bb44ab] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-19bb44ab] {
  min-height: 22em;
}
.headerText[data-v-19bb44ab] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-19bb44ab] {
  -webkit-animation: rotator-19bb44ab 1.4s linear infinite;
          animation: rotator-19bb44ab 1.4s linear infinite;
}
@-webkit-keyframes rotator-19bb44ab {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-19bb44ab {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-19bb44ab] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-19bb44ab 1.4s ease-in-out infinite,colors-19bb44ab 5.6s ease-in-out infinite;
          animation: dash-19bb44ab 1.4s ease-in-out infinite,colors-19bb44ab 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-19bb44ab] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-19bb44ab 1.4s ease-in-out infinite,colorsSapphire-19bb44ab 5.6s ease-in-out infinite;
          animation: dash-19bb44ab 1.4s ease-in-out infinite,colorsSapphire-19bb44ab 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-19bb44ab] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-19bb44ab] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-19bb44ab] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-19bb44ab] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-19bb44ab {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-19bb44ab {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-19bb44ab {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-19bb44ab {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-19bb44ab {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-19bb44ab {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-19bb44ab] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-19bb44ab] {
  padding-top: 24px;
}
.card[data-v-19bb44ab] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-19bb44ab] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-19bb44ab] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-19bb44ab] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-19bb44ab] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-19bb44ab] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-19bb44ab] {
    margin-top: 12px;
}
.cardErrorCode[data-v-19bb44ab] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-19bb44ab] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.container[data-v-19bb44ab] {
  display: inline-block;
}
.option[data-v-19bb44ab] {
  display: inline-block;
  min-width: 60px;
  height: 36px;
  text-align: center;
  padding: 8px;
  margin: 8px 8px 8px 0;
  line-height: 36px;
  cursor: pointer;
  background: white;
  color: #aaa;
  border: 2px solid #982881;
  -o-border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#406EB3), to(#982881));
     border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
  border-image-slice: 1;
}
.option[data-v-19bb44ab]:hover:not(.selected) {
  background: #eee;
}
.selected[data-v-19bb44ab] {
  background: #3DAD24;
  color: white;
  border: 2px solid #3DAD24;
}
.invalid[data-v-19bb44ab]:not(.container p) {
  border: 2px solid #D31F1F;
}
.container p[data-v-19bb44ab] {
  margin: 6px 10px 4px 0px;
  font-size: 14px;
}
.container p.invalid[data-v-19bb44ab] {
  color: #D31F1F;
}
.container p.helpText[data-v-19bb44ab] {
  color: #3D87af;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-306f0685] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-306f0685]:-webkit-autofill,
input[data-v-306f0685]:-webkit-autofill:hover,
input[data-v-306f0685]:-webkit-autofill:focus,
input[data-v-306f0685]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-306f0685 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-306f0685 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-306f0685] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-306f0685] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-306f0685]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-306f0685]:focus:not(:active)::after {
  -webkit-animation: ripple-306f0685 1s ease-out;
          animation: ripple-306f0685 1s ease-out;
}
.btnFlat[data-v-306f0685]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-306f0685]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-306f0685] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-306f0685] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-306f0685]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-306f0685]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-306f0685]:focus:not(:active)::after {
  -webkit-animation: ripple-306f0685 1s ease-out;
          animation: ripple-306f0685 1s ease-out;
}
.btnRaised[data-v-306f0685]:hover {
  background: #406EB3;
}
.btnRaised[data-v-306f0685]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-306f0685] {
  pointer-events: none;
}
.gradientText[data-v-306f0685] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-306f0685] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-306f0685] {
  min-height: 22em;
}
.headerText[data-v-306f0685] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-306f0685] {
  -webkit-animation: rotator-306f0685 1.4s linear infinite;
          animation: rotator-306f0685 1.4s linear infinite;
}
@-webkit-keyframes rotator-306f0685 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-306f0685 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-306f0685] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-306f0685 1.4s ease-in-out infinite,colors-306f0685 5.6s ease-in-out infinite;
          animation: dash-306f0685 1.4s ease-in-out infinite,colors-306f0685 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-306f0685] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-306f0685 1.4s ease-in-out infinite,colorsSapphire-306f0685 5.6s ease-in-out infinite;
          animation: dash-306f0685 1.4s ease-in-out infinite,colorsSapphire-306f0685 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-306f0685] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-306f0685] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-306f0685] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-306f0685] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-306f0685 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-306f0685 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-306f0685 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-306f0685 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-306f0685 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-306f0685 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-306f0685] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-306f0685] {
  padding-top: 24px;
}
.card[data-v-306f0685] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-306f0685] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-306f0685] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-306f0685] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-306f0685] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-306f0685] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-306f0685] {
    margin-top: 12px;
}
.cardErrorCode[data-v-306f0685] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-306f0685] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.LineText[data-v-306f0685] {
  overflow: hidden;
  text-align: center;
  color: #632678;
  font-size: 18px;
  padding-bottom: 4px;
}
.LineText[data-v-306f0685]:before,
.LineText[data-v-306f0685]:after {
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  vertical-align: middle;
  width: 50%;
}
.LineText[data-v-306f0685]:before {
  right: 20px;
  margin-left: -50%;
  background-color: #3D87af;
}
.LineText[data-v-306f0685]:after {
  left: 20px;
  margin-right: -50%;
  background-color: #632678;
}
/* Mobile */
@media only screen and (max-width: 560px) {
.LineText[data-v-306f0685] {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.LineText[data-v-306f0685]:before,
  .LineText[data-v-306f0685]:after {
    height: 0;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-49c0832c] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-49c0832c]:-webkit-autofill,
input[data-v-49c0832c]:-webkit-autofill:hover,
input[data-v-49c0832c]:-webkit-autofill:focus,
input[data-v-49c0832c]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-49c0832c {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-49c0832c {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-49c0832c] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-49c0832c] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-49c0832c]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-49c0832c]:focus:not(:active)::after {
  -webkit-animation: ripple-49c0832c 1s ease-out;
          animation: ripple-49c0832c 1s ease-out;
}
.btnFlat[data-v-49c0832c]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-49c0832c]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-49c0832c] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-49c0832c] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-49c0832c]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-49c0832c]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-49c0832c]:focus:not(:active)::after {
  -webkit-animation: ripple-49c0832c 1s ease-out;
          animation: ripple-49c0832c 1s ease-out;
}
.btnRaised[data-v-49c0832c]:hover {
  background: #406EB3;
}
.btnRaised[data-v-49c0832c]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-49c0832c] {
  pointer-events: none;
}
.gradientText[data-v-49c0832c] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-49c0832c] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-49c0832c] {
  min-height: 22em;
}
.headerText[data-v-49c0832c] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-49c0832c] {
  -webkit-animation: rotator-49c0832c 1.4s linear infinite;
          animation: rotator-49c0832c 1.4s linear infinite;
}
@-webkit-keyframes rotator-49c0832c {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-49c0832c {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-49c0832c] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-49c0832c 1.4s ease-in-out infinite,colors-49c0832c 5.6s ease-in-out infinite;
          animation: dash-49c0832c 1.4s ease-in-out infinite,colors-49c0832c 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-49c0832c] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-49c0832c 1.4s ease-in-out infinite,colorsSapphire-49c0832c 5.6s ease-in-out infinite;
          animation: dash-49c0832c 1.4s ease-in-out infinite,colorsSapphire-49c0832c 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-49c0832c] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-49c0832c] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-49c0832c] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-49c0832c] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-49c0832c {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-49c0832c {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-49c0832c {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-49c0832c {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-49c0832c {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-49c0832c {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-49c0832c] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-49c0832c] {
  padding-top: 24px;
}
.card[data-v-49c0832c] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-49c0832c] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-49c0832c] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-49c0832c] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-49c0832c] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-49c0832c] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-49c0832c] {
    margin-top: 12px;
}
.cardErrorCode[data-v-49c0832c] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-49c0832c] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
p[data-v-49c0832c] {
  font-size: 14px;
  margin: -12px 0;
}
p.initial[data-v-49c0832c] {
  color: #3D87af;
}
p.invalid[data-v-49c0832c] {
  color: #D31F1F;
}
.checkboxContainer[data-v-49c0832c] {
  display: block;
  line-height: 33px;
  padding-top: 7px;
  position: relative;
  padding-left: 60px;
  height: 28px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Hide the browser's default checkbox */
.checkboxContainer input[data-v-49c0832c] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
/* Create a custom checkbox */
.checkmark[data-v-49c0832c] {
  position: absolute;
  top: 0;
  left: 0;
  height: 36px;
  width: 36px;
  background: white;
  border: 2px solid #982881;
  -o-border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#406EB3), to(#982881));
     border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
  border-image-slice: 1;
}
.checkmark.invalid[data-v-49c0832c] {
  -o-border-image: none;
     border-image: none;
  border: 2px solid #D31F1F;
}
/* On mouse-over, add a grey background color */
.checkboxContainer:hover input ~ .checkmark[data-v-49c0832c] {
  background-color: #f4f4f4;
}
/* When the checkbox is checked, add a blue background */
.checkboxContainer input:checked ~ .checkmark[data-v-49c0832c] {
  background-color: #3DAD24;
  border: none;
  width: 36px;
  height: 36px;
  border: 2px solid transparent;
}
/* Create the checkmark/indicator (hidden when not checked) */
.checkmark[data-v-49c0832c]:after {
  content: "";
  position: absolute;
  display: none;
}
/* Show the checkmark when checked */
.checkboxContainer input:checked ~ .checkmark[data-v-49c0832c]:after {
  display: block;
}
/* Style the checkmark/indicator */
.checkboxContainer .checkmark[data-v-49c0832c]:after {
  left: 13.5px;
  top: 2.5px;
  width: 5px;
  height: 23px;
  border: solid white;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width: 560px) {
.checkboxContainer[data-v-49c0832c] {
    display: block;
    line-height: 24px;
    padding: 5px 0 26px 0;
    position: relative;
    padding-left: 54px;
    height: 28px;
    font-size: 18px;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
.radio-group[data-v-09eda5ed] {
  margin-top: 2em;
}
.radio-container[data-v-09eda5ed] {
  position: relative;
  min-height: 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* When the checkbox is checked, add a blue background */
  /* Show the checkmark when checked */
}
.radio-container[data-v-09eda5ed]:last-of-type {
  margin-bottom: 0em;
}
.radio-container:hover .checkmark[data-v-09eda5ed] {
  background-color: #f4f4f4;
}
.radio-container.invalid .checkmark[data-v-09eda5ed] {
  -o-border-image: none;
     border-image: none;
  border: 2px solid #D31F1F;
}
.radio-container input:checked ~ .checkmark[data-v-09eda5ed] {
  background-color: #3DAD24;
  border: none;
  width: 40px;
  height: 40px;
  border: 2px solid transparent;
}
.radio-container input:checked ~ .checkmark[data-v-09eda5ed]:after {
  display: block;
}
.radio-container p[data-v-09eda5ed] {
  color: #3D87af;
  margin: 0;
}
.radio-container input[data-v-09eda5ed] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.radio-container .checkmark[data-v-09eda5ed]:after {
  left: 13.5px;
  top: 2.5px;
  width: 5px;
  height: 23px;
  border: solid white;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* Create a custom checkbox */
.checkmark[data-v-09eda5ed] {
  height: 40px !important;
  width: 40px !important;
  background: white;
  border: 2px solid #982881;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -o-border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#406EB3), to(#982881));
     border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
  border-image-slice: 1;
  margin-right: 1em;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.checkmark[data-v-09eda5ed]:after {
  content: "";
  position: absolute;
  display: none;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-1a5bd47a] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-1a5bd47a]:-webkit-autofill,
input[data-v-1a5bd47a]:-webkit-autofill:hover,
input[data-v-1a5bd47a]:-webkit-autofill:focus,
input[data-v-1a5bd47a]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-1a5bd47a {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-1a5bd47a {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-1a5bd47a] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-1a5bd47a] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-1a5bd47a]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-1a5bd47a]:focus:not(:active)::after {
  -webkit-animation: ripple-1a5bd47a 1s ease-out;
          animation: ripple-1a5bd47a 1s ease-out;
}
.btnFlat[data-v-1a5bd47a]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-1a5bd47a]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-1a5bd47a] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-1a5bd47a] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-1a5bd47a]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-1a5bd47a]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-1a5bd47a]:focus:not(:active)::after {
  -webkit-animation: ripple-1a5bd47a 1s ease-out;
          animation: ripple-1a5bd47a 1s ease-out;
}
.btnRaised[data-v-1a5bd47a]:hover {
  background: #406EB3;
}
.btnRaised[data-v-1a5bd47a]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-1a5bd47a] {
  pointer-events: none;
}
.gradientText[data-v-1a5bd47a] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-1a5bd47a] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-1a5bd47a] {
  min-height: 22em;
}
.headerText[data-v-1a5bd47a] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-1a5bd47a] {
  -webkit-animation: rotator-1a5bd47a 1.4s linear infinite;
          animation: rotator-1a5bd47a 1.4s linear infinite;
}
@-webkit-keyframes rotator-1a5bd47a {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-1a5bd47a {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-1a5bd47a] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1a5bd47a 1.4s ease-in-out infinite,colors-1a5bd47a 5.6s ease-in-out infinite;
          animation: dash-1a5bd47a 1.4s ease-in-out infinite,colors-1a5bd47a 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-1a5bd47a] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1a5bd47a 1.4s ease-in-out infinite,colorsSapphire-1a5bd47a 5.6s ease-in-out infinite;
          animation: dash-1a5bd47a 1.4s ease-in-out infinite,colorsSapphire-1a5bd47a 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-1a5bd47a] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-1a5bd47a] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-1a5bd47a] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-1a5bd47a] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-1a5bd47a {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-1a5bd47a {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-1a5bd47a {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-1a5bd47a {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-1a5bd47a {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-1a5bd47a {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-1a5bd47a] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-1a5bd47a] {
  padding-top: 24px;
}
.card[data-v-1a5bd47a] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-1a5bd47a] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-1a5bd47a] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-1a5bd47a] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-1a5bd47a] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-1a5bd47a] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-1a5bd47a] {
    margin-top: 12px;
}
.cardErrorCode[data-v-1a5bd47a] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-1a5bd47a] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.dropdownContainer[data-v-1a5bd47a] {
  position: relative;
  margin-top: 32px;
}
.dropdownOption[data-v-1a5bd47a] {
  color: #3D87af;
}
.helpText[data-v-1a5bd47a] {
  color: #3D87af;
  margin: 4px;
  font-size: 14px;
}
.helpText.invalid[data-v-1a5bd47a] {
  color: #D31F1F;
}
.select[data-v-1a5bd47a] {
  position: relative;
  width: 100%;
}
.select-text[data-v-1a5bd47a] {
  position: relative;
  background-color: transparent;
  width: 100%;
  padding: 10px 10px 10px 5px;
  font-size: 18px;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid transparent;
  -o-border-image: linear-gradient(to left, #406EB3 0%, #982881 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#406EB3), to(#982881));
     border-image: linear-gradient(to left, #406EB3 0%, #982881 100%);
  border-image-slice: 1;
}
.select-text.invalid[data-v-1a5bd47a] {
  -o-border-image: linear-gradient(to left, #D31F1F 0%, #D31F1F 100%);
     border-image: -webkit-gradient(linear, right top, left top, from(#D31F1F), to(#D31F1F));
     border-image: linear-gradient(to left, #D31F1F 0%, #D31F1F 100%);
  border-image-slice: 1;
}
/* Remove focus */
.select-text[data-v-1a5bd47a]:focus {
  outline: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
/* Use custom arrow */
.select .select-text[data-v-1a5bd47a] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.select[data-v-1a5bd47a]:after {
  position: absolute;
  top: 18px;
  right: 10px;
  /* Styling the down arrow */
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.12);
  pointer-events: none;
}
/* LABEL ======================================= */
.select-label[data-v-1a5bd47a] {
  color: #aaa;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
/* active state */
.select-text:focus ~ .select-label[data-v-1a5bd47a],
.select-text:valid ~ .select-label[data-v-1a5bd47a] {
  top: -12px;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  font-size: 14px;
  background-image: -webkit-linear-gradient(45deg, #982881, #406EB3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #406EB3;
}
.select-label.invalid[data-v-1a5bd47a] {
  color: #D31F1F;
}
/* BOTTOM BARS ================================= */
.select-bar[data-v-1a5bd47a] {
  position: relative;
  display: block;
  width: 100%;
}
.select-bar[data-v-1a5bd47a]:before,
.select-bar[data-v-1a5bd47a]:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  border: none;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.select-bar[data-v-1a5bd47a]:before {
  left: 50%;
}
.select-bar[data-v-1a5bd47a]:after {
  right: 50%;
}
/* active state */
.select-text:focus ~ .select-bar[data-v-1a5bd47a]:before,
.select-text:focus ~ .select-bar[data-v-1a5bd47a]:after {
  width: 50%;
}
/* HIGHLIGHTER ================================== */
.select-highlight[data-v-1a5bd47a] {
  position: absolute;
  height: 60%;
  width: 100px;
  top: 25%;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-456262b8] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-456262b8]:-webkit-autofill,
input[data-v-456262b8]:-webkit-autofill:hover,
input[data-v-456262b8]:-webkit-autofill:focus,
input[data-v-456262b8]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-456262b8 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-456262b8 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-456262b8] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-456262b8] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-456262b8]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-456262b8]:focus:not(:active)::after {
  -webkit-animation: ripple-456262b8 1s ease-out;
          animation: ripple-456262b8 1s ease-out;
}
.btnFlat[data-v-456262b8]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-456262b8]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-456262b8] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-456262b8] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-456262b8]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-456262b8]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-456262b8]:focus:not(:active)::after {
  -webkit-animation: ripple-456262b8 1s ease-out;
          animation: ripple-456262b8 1s ease-out;
}
.btnRaised[data-v-456262b8]:hover {
  background: #406EB3;
}
.btnRaised[data-v-456262b8]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-456262b8] {
  pointer-events: none;
}
.gradientText[data-v-456262b8] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-456262b8] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-456262b8] {
  min-height: 22em;
}
.headerText[data-v-456262b8] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-456262b8] {
  -webkit-animation: rotator-456262b8 1.4s linear infinite;
          animation: rotator-456262b8 1.4s linear infinite;
}
@-webkit-keyframes rotator-456262b8 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-456262b8 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-456262b8] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-456262b8 1.4s ease-in-out infinite,colors-456262b8 5.6s ease-in-out infinite;
          animation: dash-456262b8 1.4s ease-in-out infinite,colors-456262b8 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-456262b8] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-456262b8 1.4s ease-in-out infinite,colorsSapphire-456262b8 5.6s ease-in-out infinite;
          animation: dash-456262b8 1.4s ease-in-out infinite,colorsSapphire-456262b8 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-456262b8] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-456262b8] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-456262b8] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-456262b8] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-456262b8 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-456262b8 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-456262b8 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-456262b8 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-456262b8 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-456262b8 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-456262b8] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-456262b8] {
  padding-top: 24px;
}
.card[data-v-456262b8] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-456262b8] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-456262b8] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-456262b8] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-456262b8] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-456262b8] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-456262b8] {
    margin-top: 12px;
}
.cardErrorCode[data-v-456262b8] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-456262b8] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
input[data-v-456262b8]::-webkit-outer-spin-button,
input[data-v-456262b8]::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}
p[data-v-456262b8] {
  margin: 6px 4px 4px;
  font-size: 14px;
}
p.initial[data-v-456262b8],
p.valid[data-v-456262b8] {
  color: #3D87af;
}
p.invalid[data-v-456262b8] {
  color: #D31F1F;
}
p.disabled[data-v-456262b8] {
  color: #aaa;
  -webkit-text-fill-color: #aaa;
}
.toggle-password[data-v-456262b8] {
  cursor: pointer;
  position: relative;
  font-size: 32px;
  color: #aaa;
  width: 32px;
  height: 32px;
  float: right;
  top: -32px;
  margin: -8px 8px -8px -8px;
  z-index: 2;
}
/* form starting stylings ------------------------------- */
.textInputGroup[data-v-456262b8] {
  position: relative;
  margin-top: 32px;
}
input[data-v-456262b8] {
  font-size: 18px;
  padding: 10px 0 10px 0;
  display: block;
  width: 100%;
  border: none;
  background: -webkit-gradient(linear, right top, left top, from(#406EB3), to(#982881)) left bottom transparent no-repeat;
  background: linear-gradient(to left, #406EB3 0%, #982881 100%) left bottom transparent no-repeat;
  background-size: 100% 2px;
}
input.invalid[data-v-456262b8] {
  background: -webkit-gradient(linear, right top, left top, from(#D31F1F), to(#D31F1F)) left bottom transparent no-repeat;
  background: linear-gradient(to left, #D31F1F 0%, #D31F1F 100%) left bottom transparent no-repeat;
  background-size: 100% 2px;
  color: #D31F1F;
}
input.disabled[data-v-456262b8] {
  background: -webkit-gradient(linear, right top, left top, from(#aaa), to(#aaa)) left bottom transparent no-repeat;
  background: linear-gradient(to left, #aaa 0%, #aaa 100%) left bottom transparent no-repeat;
  background-size: 100% 2px;
  -webkit-text-fill-color: #888888;
  color: #888888;
}
input.disabled[data-v-456262b8]:hover {
  cursor: not-allowed;
}
input[data-v-456262b8]:focus {
  outline: none;
}
/* LABEL ======================================= */
label[data-v-456262b8] {
  color: #aaa;
  font-size: 18px;
  font-weight: normal;
  position: absolute;
  pointer-events: none;
  left: 5px;
  top: 10px;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
label.invalid[data-v-456262b8] {
  color: #D31F1F;
}
label.disabled[data-v-456262b8] {
  top: -12px;
  font-size: 14px;
  color: #aaa;
}
/* active state */
input:focus ~ label[data-v-456262b8],
input:valid ~ label[data-v-456262b8] {
  top: -12px;
  font-size: 14px;
  background-image: -webkit-linear-gradient(45deg, #982881, #406EB3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #406EB3;
}
/* BOTTOM BARS ================================= */
.bar[data-v-456262b8] {
  position: relative;
  display: block;
  width: 300px;
}
.bar[data-v-456262b8]:before,
.bar[data-v-456262b8]:after {
  content: '';
  height: 2px;
  width: 0;
  bottom: 1px;
  position: absolute;
  background: #5264AE;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
}
.bar[data-v-456262b8]:before {
  left: 50%;
}
.bar[data-v-456262b8]:after {
  right: 50%;
}
/* active state */
input:focus ~ .bar[data-v-456262b8]:before,
input:focus ~ .bar[data-v-456262b8]:after {
  width: 50%;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-192f6e32] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-192f6e32]:-webkit-autofill,
input[data-v-192f6e32]:-webkit-autofill:hover,
input[data-v-192f6e32]:-webkit-autofill:focus,
input[data-v-192f6e32]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-192f6e32 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-192f6e32 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-192f6e32] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-192f6e32] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-192f6e32]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-192f6e32]:focus:not(:active)::after {
  -webkit-animation: ripple-192f6e32 1s ease-out;
          animation: ripple-192f6e32 1s ease-out;
}
.btnFlat[data-v-192f6e32]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-192f6e32]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-192f6e32] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-192f6e32] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-192f6e32]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-192f6e32]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-192f6e32]:focus:not(:active)::after {
  -webkit-animation: ripple-192f6e32 1s ease-out;
          animation: ripple-192f6e32 1s ease-out;
}
.btnRaised[data-v-192f6e32]:hover {
  background: #406EB3;
}
.btnRaised[data-v-192f6e32]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-192f6e32] {
  pointer-events: none;
}
.gradientText[data-v-192f6e32] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-192f6e32] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-192f6e32] {
  min-height: 22em;
}
.headerText[data-v-192f6e32] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-192f6e32] {
  -webkit-animation: rotator-192f6e32 1.4s linear infinite;
          animation: rotator-192f6e32 1.4s linear infinite;
}
@-webkit-keyframes rotator-192f6e32 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-192f6e32 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-192f6e32] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-192f6e32 1.4s ease-in-out infinite,colors-192f6e32 5.6s ease-in-out infinite;
          animation: dash-192f6e32 1.4s ease-in-out infinite,colors-192f6e32 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-192f6e32] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-192f6e32 1.4s ease-in-out infinite,colorsSapphire-192f6e32 5.6s ease-in-out infinite;
          animation: dash-192f6e32 1.4s ease-in-out infinite,colorsSapphire-192f6e32 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-192f6e32] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-192f6e32] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-192f6e32] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-192f6e32] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-192f6e32 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-192f6e32 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-192f6e32 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-192f6e32 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-192f6e32 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-192f6e32 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-192f6e32] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-192f6e32] {
  padding-top: 24px;
}
.card[data-v-192f6e32] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-192f6e32] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-192f6e32] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-192f6e32] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-192f6e32] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-192f6e32] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-192f6e32] {
    margin-top: 12px;
}
.cardErrorCode[data-v-192f6e32] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-192f6e32] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@font-face {
  font-family: 'experianiconfont';
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot);
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot#iefix) format('embedded-opentype'), url(/home/dist/assets/fonts/experianiconfont.07e0e02.woff2) format('woff2'), url(/home/dist/assets/fonts/experianiconfont.f271139.woff) format('woff'), url(/home/dist/assets/fonts/experianiconfont.8bf4dde.ttf) format('truetype'), url(/home/dist/assets/images/experianiconfont.svg?812fa74c0876dca189c4a300f552260d#experianiconfont) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'experianiconfont';
    src: url('../font/experianiconfont.svg?34616403#experianiconfont') format('svg');
  }
}
*/
[class^="exp-icon-"][data-v-192f6e32]:before,
[class*=" exp-icon-"][data-v-192f6e32]:before {
  font-family: "experianiconfont";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.exp-icon-calendar-today[data-v-192f6e32]:before {
  content: '\E800';
}
/* '' */
.exp-icon-help-circle[data-v-192f6e32]:before {
  content: '\E801';
}
/* '' */
.exp-icon-cash-multiple[data-v-192f6e32]:before {
  content: '\E802';
}
/* '' */
.exp-icon-check-circle[data-v-192f6e32]:before {
  content: '\E803';
}
/* '' */
.exp-icon-share[data-v-192f6e32]:before {
  content: '\E804';
}
/* '' */
.exp-icon-folder-plus[data-v-192f6e32]:before {
  content: '\E805';
}
/* '' */
.exp-icon-debug-step-out[data-v-192f6e32]:before {
  content: '\E806';
}
/* '' */
.exp-icon-alert-box[data-v-192f6e32]:before {
  content: '\E807';
}
/* '' */
.exp-icon-note-text[data-v-192f6e32]:before {
  content: '\E808';
}
/* '' */
.exp-icon-arrow-left[data-v-192f6e32]:before {
  content: '\E809';
}
/* '' */
.exp-icon-link-variant[data-v-192f6e32]:before {
  content: '\E80A';
}
/* '' */
.exp-icon-folder-account[data-v-192f6e32]:before {
  content: '\E80B';
}
/* '' */
.exp-icon-close-box[data-v-192f6e32]:before {
  content: '\E80C';
}
/* '' */
.exp-icon-skip-next[data-v-192f6e32]:before {
  content: '\E80D';
}
/* '' */
.exp-icon-format-list-bulleted[data-v-192f6e32]:before {
  content: '\E80E';
}
/* '' */
.exp-icon-phone-outgoing[data-v-192f6e32]:before {
  content: '\E80F';
}
/* '' */
.exp-icon-phone-incoming[data-v-192f6e32]:before {
  content: '\E810';
}
/* '' */
.exp-icon-magnify[data-v-192f6e32]:before {
  content: '\E811';
}
/* '' */
.exp-icon-bell[data-v-192f6e32]:before {
  content: '\E812';
}
/* '' */
.exp-icon-customer-contact-details[data-v-192f6e32]:before {
  content: '\E813';
}
/* '' */
.exp-icon-table-large[data-v-192f6e32]:before {
  content: '\E814';
}
/* '' */
.exp-icon-key[data-v-192f6e32]:before {
  content: '\E815';
}
/* '' */
.exp-icon-currency-usd-off[data-v-192f6e32]:before {
  content: '\E816';
}
/* '' */
.exp-icon-credit-card[data-v-192f6e32]:before {
  content: '\E817';
}
/* '' */
.exp-icon-pause-octagon[data-v-192f6e32]:before {
  content: '\E818';
}
/* '' */
.exp-icon-calendar-clock[data-v-192f6e32]:before {
  content: '\E819';
}
/* '' */
.exp-icon-stop-circle[data-v-192f6e32]:before {
  content: '\E81A';
}
/* '' */
.exp-icon-credit-card-plus[data-v-192f6e32]:before {
  content: '\E81B';
}
/* '' */
.exp-icon-check[data-v-192f6e32]:before {
  content: '\E81C';
}
/* '' */
.exp-icon-transfer[data-v-192f6e32]:before {
  content: '\E81D';
}
/* '' */
.exp-icon-eye[data-v-192f6e32]:before {
  content: '\E81E';
}
/* '' */
.exp-icon-chevron-double-left[data-v-192f6e32]:before {
  content: '\E81F';
}
/* '' */
.exp-icon-chevron-double-right[data-v-192f6e32]:before {
  content: '\E820';
}
/* '' */
.exp-icon-chevron-down[data-v-192f6e32]:before {
  content: '\E821';
}
/* '' */
.exp-icon-chevron-up[data-v-192f6e32]:before {
  content: '\E822';
}
/* '' */
.exp-icon-chevron-right[data-v-192f6e32]:before {
  content: '\E823';
}
/* '' */
.exp-icon-chevron-left[data-v-192f6e32]:before {
  content: '\E824';
}
/* '' */
.exp-icon-filter[data-v-192f6e32]:before {
  content: '\E825';
}
/* '' */
.exp-icon-pencil-box-outline[data-v-192f6e32]:before {
  content: '\E826';
}
/* '' */
.exp-icon-plus[data-v-192f6e32]:before {
  content: '\E827';
}
/* '' */
.exp-icon-phone-hangup[data-v-192f6e32]:before {
  content: '\E828';
}
/* '' */
.exp-icon-arrow-down[data-v-192f6e32]:before {
  content: '\E829';
}
/* '' */
.exp-icon-close[data-v-192f6e32]:before {
  content: '\E82A';
}
/* '' */
.exp-icon-account[data-v-192f6e32]:before {
  content: '\E82B';
}
/* '' */
.exp-icon-phone-redial[data-v-192f6e32]:before {
  content: '\E82C';
}
/* '' */
.exp-icon-eye-off[data-v-192f6e32]:before {
  content: '\E82D';
}
/* '' */
.exp-icon-email-variant[data-v-192f6e32]:before {
  content: '\E82E';
}
/* '' */
.exp-icon-credit-card-minus[data-v-192f6e32]:before {
  content: '\E82F';
}
/* '' */
.exp-icon-credit-card-plus-1[data-v-192f6e32]:before {
  content: '\E830';
}
/* '' */
.exp-icon-account-link[data-v-192f6e32]:before {
  content: '\E831';
}
/* '' */
.exp-icon-folder-contact[data-v-192f6e32]:before {
  content: '\E832';
}
/* '' */
.exp-icon-pencil[data-v-192f6e32]:before {
  content: '\E833';
}
/* '' */
.exp-icon-book-open[data-v-192f6e32]:before {
  content: '\E834';
}
/* '' */
.exp-icon-account-alert[data-v-192f6e32]:before {
  content: '\E835';
}
/* '' */
.exp-icon-page-first[data-v-192f6e32]:before {
  content: '\E836';
}
/* '' */
.exp-icon-page-last[data-v-192f6e32]:before {
  content: '\E837';
}
/* '' */
.exp-icon-personal-information[data-v-192f6e32]:before {
  content: '\E838';
}
/* '' */
.exp-icon-fasttrack-to-legal[data-v-192f6e32]:before {
  content: '\E839';
}
/* '' */
.exp-icon-cursor-move[data-v-192f6e32]:before {
  content: '\E83A';
}
/* '' */
.exp-icon-letter[data-v-192f6e32]:before {
  content: '\E83B';
}
/* '' */
.exp-icon-truck-delivery[data-v-192f6e32]:before {
  content: '\E83C';
}
/* '' */
.exp-icon-team[data-v-192f6e32]:before {
  content: '\E83D';
}
/* '' */
.exp-icon-team-noleader[data-v-192f6e32]:before {
  content: '\E83E';
}
/* '' */
.exp-icon-web[data-v-192f6e32]:before {
  content: '\E83F';
}
/* '' */
.exp-icon-window-maximize[data-v-192f6e32]:before {
  content: '\E840';
}
/* '' */
.exp-icon-phone-in-talk[data-v-192f6e32]:before {
  content: '\E841';
}
/* '' */
.exp-icon-download[data-v-192f6e32]:before {
  content: '\E842';
}
/* '' */
.exp-icon-settings[data-v-192f6e32]:before {
  content: '\E843';
}
/* '' */
.exp-icon-settings-box[data-v-192f6e32]:before {
  content: '\E844';
}
/* '' */
.exp-icon-authorise-transfer[data-v-192f6e32]:before {
  content: '\E845';
}
/* '' */
.exp-icon-arrangement-reducing-payment[data-v-192f6e32]:before {
  content: '\E846';
}
/* '' */
.exp-icon-arrangement-installment[data-v-192f6e32]:before {
  content: '\E847';
}
/* '' */
.exp-icon-print-history[data-v-192f6e32]:before {
  content: '\E848';
}
/* '' */
.exp-icon-suspend-product2[data-v-192f6e32]:before {
  content: '\E849';
}
/* '' */
.exp-icon-account-close[data-v-192f6e32]:before {
  content: '\E84A';
}
/* '' */
.exp-icon-file-import[data-v-192f6e32]:before {
  content: '\E84B';
}
/* '' */
.exp-icon-file-export[data-v-192f6e32]:before {
  content: '\E84C';
}
/* '' */
.exp-icon-file-view[data-v-192f6e32]:before {
  content: '\E84D';
}
/* '' */
.exp-icon-printer[data-v-192f6e32]:before {
  content: '\E84E';
}
/* '' */
.exp-icon-reschedule-arrangement[data-v-192f6e32]:before {
  content: '\E84F';
}
/* '' */
.exp-icon-dca-allocate[data-v-192f6e32]:before {
  content: '\E850';
}
/* '' */
.exp-icon-dca-preset[data-v-192f6e32]:before {
  content: '\E851';
}
/* '' */
.exp-icon-play-circle[data-v-192f6e32]:before {
  content: '\E852';
}
/* '' */
.exp-icon-edit-history[data-v-192f6e32]:before {
  content: '\E853';
}
/* '' */
.exp-icon-logout[data-v-192f6e32]:before {
  content: '\E854';
}
/* '' */
.exp-icon-dca-complete[data-v-192f6e32]:before {
  content: '\E855';
}
/* '' */
.exp-icon-dca-withdraw[data-v-192f6e32]:before {
  content: '\E856';
}
/* '' */
.exp-icon-deactivate-product[data-v-192f6e32]:before {
  content: '\E857';
}
/* '' */
.exp-icon-btn-remove[data-v-192f6e32]:before {
  content: '\E858';
}
/* '' */
.exp-icon-authorise-writeoff[data-v-192f6e32]:before {
  content: '\E859';
}
/* '' */
.exp-icon-reactivate-product[data-v-192f6e32]:before {
  content: '\E85A';
}
/* '' */
.exp-icon-dca-reinstatement[data-v-192f6e32]:before {
  content: '\E85B';
}
/* '' */
.exp-icon-bar-product[data-v-192f6e32]:before {
  content: '\E85C';
}
/* '' */
.exp-icon-reinstate-product[data-v-192f6e32]:before {
  content: '\E85D';
}
/* '' */
.exp-icon-content-save[data-v-192f6e32]:before {
  content: '\E85E';
}
/* '' */
.exp-icon-content-paste[data-v-192f6e32]:before {
  content: '\E85F';
}
/* '' */
.exp-icon-tower-import[data-v-192f6e32]:before {
  content: '\E860';
}
/* '' */
.exp-icon-alert-circle-outline[data-v-192f6e32]:before {
  content: '\E861';
}
/* '' */
.exp-icon-chart-arc[data-v-192f6e32]:before {
  content: '\E862';
}
/* '' */
.exp-icon-chart-bar[data-v-192f6e32]:before {
  content: '\E863';
}
/* '' */
.exp-icon-chart-line[data-v-192f6e32]:before {
  content: '\E864';
}
/* '' */
.exp-icon-database[data-v-192f6e32]:before {
  content: '\E865';
}
/* '' */
.exp-icon-database-plus[data-v-192f6e32]:before {
  content: '\E866';
}
/* '' */
.exp-icon-dots-horizontal[data-v-192f6e32]:before {
  content: '\E867';
}
/* '' */
.exp-icon-dots-vertical[data-v-192f6e32]:before {
  content: '\E868';
}
/* '' */
.exp-icon-home[data-v-192f6e32]:before {
  content: '\E869';
}
/* '' */
.exp-icon-menu[data-v-192f6e32]:before {
  content: '\E86A';
}
/* '' */
.exp-icon-exclamation[data-v-192f6e32]:before {
  content: '\E86B';
}
/* '' */
.exp-icon-flag-outline-variant[data-v-192f6e32]:before {
  content: '\E86C';
}
/* '' */
.exp-icon-refresh[data-v-192f6e32]:before {
  content: '\E86D';
}
/* '' */
.exp-icon-timer-sand[data-v-192f6e32]:before {
  content: '\E86E';
}
/* '' */
.exp-icon-star-outline[data-v-192f6e32]:before {
  content: '\E86F';
}
/* '' */
.searchInput[data-v-192f6e32] {
  max-width: 470px;
  width: 70%;
  padding: 2px 2px 2px 10px;
  height: 32px;
  vertical-align: top;
  font-size: 18px;
  border: 2px solid #982881;
  -o-border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
     border-image: -webkit-gradient(linear, left top, left bottom, from(#406EB3), to(#982881));
     border-image: linear-gradient(to bottom, #406EB3 0%, #982881 100%);
  border-image-slice: 1;
  -ms-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.centerIcon[data-v-192f6e32] {
  width: 100%;
  margin: 0 auto;
}
.searchButton[data-v-192f6e32] {
  padding: 0;
  outline: none;
  width: 40px;
  height: 40px;
  margin-left: -6px;
  background-color: #26478d;
  font-size: 18px;
  border: none;
  color: #fff;
}
.searchButton[data-v-192f6e32] :hover {
  cursor: pointer;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-2798a1cb] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-2798a1cb]:-webkit-autofill,
input[data-v-2798a1cb]:-webkit-autofill:hover,
input[data-v-2798a1cb]:-webkit-autofill:focus,
input[data-v-2798a1cb]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-2798a1cb {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-2798a1cb {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-2798a1cb] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-2798a1cb] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-2798a1cb]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-2798a1cb]:focus:not(:active)::after {
  -webkit-animation: ripple-2798a1cb 1s ease-out;
          animation: ripple-2798a1cb 1s ease-out;
}
.btnFlat[data-v-2798a1cb]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-2798a1cb]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-2798a1cb] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-2798a1cb] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-2798a1cb]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-2798a1cb]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-2798a1cb]:focus:not(:active)::after {
  -webkit-animation: ripple-2798a1cb 1s ease-out;
          animation: ripple-2798a1cb 1s ease-out;
}
.btnRaised[data-v-2798a1cb]:hover {
  background: #406EB3;
}
.btnRaised[data-v-2798a1cb]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-2798a1cb] {
  pointer-events: none;
}
.gradientText[data-v-2798a1cb] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-2798a1cb] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-2798a1cb] {
  min-height: 22em;
}
.headerText[data-v-2798a1cb] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-2798a1cb] {
  -webkit-animation: rotator-2798a1cb 1.4s linear infinite;
          animation: rotator-2798a1cb 1.4s linear infinite;
}
@-webkit-keyframes rotator-2798a1cb {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-2798a1cb {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-2798a1cb] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-2798a1cb 1.4s ease-in-out infinite,colors-2798a1cb 5.6s ease-in-out infinite;
          animation: dash-2798a1cb 1.4s ease-in-out infinite,colors-2798a1cb 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-2798a1cb] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-2798a1cb 1.4s ease-in-out infinite,colorsSapphire-2798a1cb 5.6s ease-in-out infinite;
          animation: dash-2798a1cb 1.4s ease-in-out infinite,colorsSapphire-2798a1cb 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-2798a1cb] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-2798a1cb] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-2798a1cb] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-2798a1cb] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-2798a1cb {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-2798a1cb {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-2798a1cb {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-2798a1cb {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-2798a1cb {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-2798a1cb {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-2798a1cb] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-2798a1cb] {
  padding-top: 24px;
}
.card[data-v-2798a1cb] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-2798a1cb] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-2798a1cb] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-2798a1cb] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-2798a1cb] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-2798a1cb] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-2798a1cb] {
    margin-top: 12px;
}
.cardErrorCode[data-v-2798a1cb] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-2798a1cb] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.datePart[data-v-2798a1cb] {
  margin: 14px 10px 0 0;
  display: inline-block;
}
#day[data-v-2798a1cb] {
  width: 40px;
}
#month[data-v-2798a1cb] {
  width: 40px;
}
#year[data-v-2798a1cb] {
  width: 58px;
}
#infoText[data-v-2798a1cb] {
  margin: 6px 4px 4px 0;
  font-size: 14px;
}
#infoText[data-v-2798a1cb],
#infoText.initial[data-v-2798a1cb],
#infoText.valid[data-v-2798a1cb] {
  color: #3D87af;
}
#infoText[data-v-2798a1cb],
#infoText.invalid[data-v-2798a1cb] {
  color: #D31F1F;
}

.Chevron[data-v-b9c06eb2] {
  margin: auto;
  text-align: center;
}
.Chevron img[data-v-b9c06eb2] {
  height: 30px;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-61c1dea5] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-61c1dea5]:-webkit-autofill,
input[data-v-61c1dea5]:-webkit-autofill:hover,
input[data-v-61c1dea5]:-webkit-autofill:focus,
input[data-v-61c1dea5]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-61c1dea5 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-61c1dea5 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-61c1dea5] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-61c1dea5] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-61c1dea5]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-61c1dea5]:focus:not(:active)::after {
  -webkit-animation: ripple-61c1dea5 1s ease-out;
          animation: ripple-61c1dea5 1s ease-out;
}
.btnFlat[data-v-61c1dea5]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-61c1dea5]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-61c1dea5] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-61c1dea5] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-61c1dea5]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-61c1dea5]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-61c1dea5]:focus:not(:active)::after {
  -webkit-animation: ripple-61c1dea5 1s ease-out;
          animation: ripple-61c1dea5 1s ease-out;
}
.btnRaised[data-v-61c1dea5]:hover {
  background: #406EB3;
}
.btnRaised[data-v-61c1dea5]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-61c1dea5] {
  pointer-events: none;
}
.gradientText[data-v-61c1dea5] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-61c1dea5] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-61c1dea5] {
  min-height: 22em;
}
.headerText[data-v-61c1dea5] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-61c1dea5] {
  -webkit-animation: rotator-61c1dea5 1.4s linear infinite;
          animation: rotator-61c1dea5 1.4s linear infinite;
}
@-webkit-keyframes rotator-61c1dea5 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-61c1dea5 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-61c1dea5] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-61c1dea5 1.4s ease-in-out infinite,colors-61c1dea5 5.6s ease-in-out infinite;
          animation: dash-61c1dea5 1.4s ease-in-out infinite,colors-61c1dea5 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-61c1dea5] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-61c1dea5 1.4s ease-in-out infinite,colorsSapphire-61c1dea5 5.6s ease-in-out infinite;
          animation: dash-61c1dea5 1.4s ease-in-out infinite,colorsSapphire-61c1dea5 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-61c1dea5] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-61c1dea5] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-61c1dea5] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-61c1dea5] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-61c1dea5 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-61c1dea5 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-61c1dea5 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-61c1dea5 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-61c1dea5 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-61c1dea5 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-61c1dea5] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-61c1dea5] {
  padding-top: 24px;
}
.card[data-v-61c1dea5] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-61c1dea5] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-61c1dea5] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-61c1dea5] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-61c1dea5] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-61c1dea5] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-61c1dea5] {
    margin-top: 12px;
}
.cardErrorCode[data-v-61c1dea5] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-61c1dea5] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.text[data-v-61c1dea5] {
  text-align: center;
}
.extraInformation[data-v-61c1dea5] {
  background: #3D87af;
  color: white;
  padding: 16px;
  text-align: center;
  line-height: 28px;
  margin-top: 42px;
  border-radius: 6px;
}
.arrow-up[data-v-61c1dea5] {
  float: right;
  position: relative;
  right: 32px;
  top: -30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #3D87af;
}
@media only screen and (max-width: 560px) {
.extraInformation[data-v-61c1dea5] {
    padding: 16px;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-63d22835] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-63d22835]:-webkit-autofill,
input[data-v-63d22835]:-webkit-autofill:hover,
input[data-v-63d22835]:-webkit-autofill:focus,
input[data-v-63d22835]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-63d22835 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-63d22835 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-63d22835] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-63d22835] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-63d22835]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-63d22835]:focus:not(:active)::after {
  -webkit-animation: ripple-63d22835 1s ease-out;
          animation: ripple-63d22835 1s ease-out;
}
.btnFlat[data-v-63d22835]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-63d22835]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-63d22835] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-63d22835] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-63d22835]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-63d22835]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-63d22835]:focus:not(:active)::after {
  -webkit-animation: ripple-63d22835 1s ease-out;
          animation: ripple-63d22835 1s ease-out;
}
.btnRaised[data-v-63d22835]:hover {
  background: #406EB3;
}
.btnRaised[data-v-63d22835]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-63d22835] {
  pointer-events: none;
}
.gradientText[data-v-63d22835] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-63d22835] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-63d22835] {
  min-height: 22em;
}
.headerText[data-v-63d22835] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-63d22835] {
  -webkit-animation: rotator-63d22835 1.4s linear infinite;
          animation: rotator-63d22835 1.4s linear infinite;
}
@-webkit-keyframes rotator-63d22835 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-63d22835 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-63d22835] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-63d22835 1.4s ease-in-out infinite,colors-63d22835 5.6s ease-in-out infinite;
          animation: dash-63d22835 1.4s ease-in-out infinite,colors-63d22835 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-63d22835] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-63d22835 1.4s ease-in-out infinite,colorsSapphire-63d22835 5.6s ease-in-out infinite;
          animation: dash-63d22835 1.4s ease-in-out infinite,colorsSapphire-63d22835 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-63d22835] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-63d22835] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-63d22835] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-63d22835] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-63d22835 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-63d22835 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-63d22835 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-63d22835 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-63d22835 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-63d22835 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-63d22835] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-63d22835] {
  padding-top: 24px;
}
.card[data-v-63d22835] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-63d22835] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-63d22835] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-63d22835] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-63d22835] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-63d22835] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-63d22835] {
    margin-top: 12px;
}
.cardErrorCode[data-v-63d22835] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-63d22835] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.extraInformation[data-v-63d22835] {
  background: #e2a235;
  color: white;
  padding: 16px;
  text-align: center;
  line-height: 28px;
  margin-top: 42px;
  border-radius: 6px;
}
.arrow-up[data-v-63d22835] {
  float: right;
  position: relative;
  right: 32px;
  top: -30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #e2a235;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-652afb6e] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-652afb6e]:-webkit-autofill,
input[data-v-652afb6e]:-webkit-autofill:hover,
input[data-v-652afb6e]:-webkit-autofill:focus,
input[data-v-652afb6e]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-652afb6e {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-652afb6e {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-652afb6e] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-652afb6e] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-652afb6e]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-652afb6e]:focus:not(:active)::after {
  -webkit-animation: ripple-652afb6e 1s ease-out;
          animation: ripple-652afb6e 1s ease-out;
}
.btnFlat[data-v-652afb6e]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-652afb6e]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-652afb6e] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-652afb6e] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-652afb6e]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-652afb6e]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-652afb6e]:focus:not(:active)::after {
  -webkit-animation: ripple-652afb6e 1s ease-out;
          animation: ripple-652afb6e 1s ease-out;
}
.btnRaised[data-v-652afb6e]:hover {
  background: #406EB3;
}
.btnRaised[data-v-652afb6e]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-652afb6e] {
  pointer-events: none;
}
.gradientText[data-v-652afb6e] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-652afb6e] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-652afb6e] {
  min-height: 22em;
}
.headerText[data-v-652afb6e] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-652afb6e] {
  -webkit-animation: rotator-652afb6e 1.4s linear infinite;
          animation: rotator-652afb6e 1.4s linear infinite;
}
@-webkit-keyframes rotator-652afb6e {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-652afb6e {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-652afb6e] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-652afb6e 1.4s ease-in-out infinite,colors-652afb6e 5.6s ease-in-out infinite;
          animation: dash-652afb6e 1.4s ease-in-out infinite,colors-652afb6e 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-652afb6e] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-652afb6e 1.4s ease-in-out infinite,colorsSapphire-652afb6e 5.6s ease-in-out infinite;
          animation: dash-652afb6e 1.4s ease-in-out infinite,colorsSapphire-652afb6e 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-652afb6e] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-652afb6e] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-652afb6e] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-652afb6e] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-652afb6e {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-652afb6e {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-652afb6e {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-652afb6e {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-652afb6e {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-652afb6e {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-652afb6e] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-652afb6e] {
  padding-top: 24px;
}
.card[data-v-652afb6e] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-652afb6e] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-652afb6e] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-652afb6e] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-652afb6e] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-652afb6e] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-652afb6e] {
    margin-top: 12px;
}
.cardErrorCode[data-v-652afb6e] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-652afb6e] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.extraInformation[data-v-652afb6e] {
  background: #D31F1F;
  color: white;
  padding: 16px;
  text-align: center;
  line-height: 28px;
  margin-top: 42px;
  border-radius: 6px;
}
.arrow-up[data-v-652afb6e] {
  float: right;
  position: relative;
  right: 32px;
  top: -30px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #D31F1F;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-7a43808d] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-7a43808d]:-webkit-autofill,
input[data-v-7a43808d]:-webkit-autofill:hover,
input[data-v-7a43808d]:-webkit-autofill:focus,
input[data-v-7a43808d]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-7a43808d {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-7a43808d {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-7a43808d] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-7a43808d] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-7a43808d]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-7a43808d]:focus:not(:active)::after {
  -webkit-animation: ripple-7a43808d 1s ease-out;
          animation: ripple-7a43808d 1s ease-out;
}
.btnFlat[data-v-7a43808d]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-7a43808d]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-7a43808d] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-7a43808d] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-7a43808d]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-7a43808d]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-7a43808d]:focus:not(:active)::after {
  -webkit-animation: ripple-7a43808d 1s ease-out;
          animation: ripple-7a43808d 1s ease-out;
}
.btnRaised[data-v-7a43808d]:hover {
  background: #406EB3;
}
.btnRaised[data-v-7a43808d]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-7a43808d] {
  pointer-events: none;
}
.gradientText[data-v-7a43808d] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-7a43808d] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-7a43808d] {
  min-height: 22em;
}
.headerText[data-v-7a43808d] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-7a43808d] {
  -webkit-animation: rotator-7a43808d 1.4s linear infinite;
          animation: rotator-7a43808d 1.4s linear infinite;
}
@-webkit-keyframes rotator-7a43808d {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-7a43808d {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-7a43808d] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-7a43808d 1.4s ease-in-out infinite,colors-7a43808d 5.6s ease-in-out infinite;
          animation: dash-7a43808d 1.4s ease-in-out infinite,colors-7a43808d 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-7a43808d] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-7a43808d 1.4s ease-in-out infinite,colorsSapphire-7a43808d 5.6s ease-in-out infinite;
          animation: dash-7a43808d 1.4s ease-in-out infinite,colorsSapphire-7a43808d 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-7a43808d] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-7a43808d] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-7a43808d] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-7a43808d] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-7a43808d {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-7a43808d {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-7a43808d {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-7a43808d {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-7a43808d {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-7a43808d {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-7a43808d] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-7a43808d] {
  padding-top: 24px;
}
.card[data-v-7a43808d] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-7a43808d] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-7a43808d] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-7a43808d] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-7a43808d] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-7a43808d] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-7a43808d] {
    margin-top: 12px;
}
.cardErrorCode[data-v-7a43808d] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-7a43808d] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.success[data-v-7a43808d] {
  color: #3DAD24;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-136784ca] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-136784ca]:-webkit-autofill,
input[data-v-136784ca]:-webkit-autofill:hover,
input[data-v-136784ca]:-webkit-autofill:focus,
input[data-v-136784ca]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-136784ca {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-136784ca {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-136784ca] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-136784ca] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-136784ca]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-136784ca]:focus:not(:active)::after {
  -webkit-animation: ripple-136784ca 1s ease-out;
          animation: ripple-136784ca 1s ease-out;
}
.btnFlat[data-v-136784ca]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-136784ca]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-136784ca] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-136784ca] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-136784ca]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-136784ca]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-136784ca]:focus:not(:active)::after {
  -webkit-animation: ripple-136784ca 1s ease-out;
          animation: ripple-136784ca 1s ease-out;
}
.btnRaised[data-v-136784ca]:hover {
  background: #406EB3;
}
.btnRaised[data-v-136784ca]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-136784ca] {
  pointer-events: none;
}
.gradientText[data-v-136784ca] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-136784ca] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-136784ca] {
  min-height: 22em;
}
.headerText[data-v-136784ca] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-136784ca] {
  -webkit-animation: rotator-136784ca 1.4s linear infinite;
          animation: rotator-136784ca 1.4s linear infinite;
}
@-webkit-keyframes rotator-136784ca {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-136784ca {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-136784ca] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-136784ca 1.4s ease-in-out infinite,colors-136784ca 5.6s ease-in-out infinite;
          animation: dash-136784ca 1.4s ease-in-out infinite,colors-136784ca 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-136784ca] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-136784ca 1.4s ease-in-out infinite,colorsSapphire-136784ca 5.6s ease-in-out infinite;
          animation: dash-136784ca 1.4s ease-in-out infinite,colorsSapphire-136784ca 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-136784ca] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-136784ca] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-136784ca] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-136784ca] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-136784ca {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-136784ca {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-136784ca {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-136784ca {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-136784ca {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-136784ca {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-136784ca] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-136784ca] {
  padding-top: 24px;
}
.card[data-v-136784ca] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-136784ca] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-136784ca] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-136784ca] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-136784ca] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-136784ca] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-136784ca] {
    margin-top: 12px;
}
.cardErrorCode[data-v-136784ca] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-136784ca] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.stepHeader[data-v-136784ca] {
  font-size: 22px;
  float: left;
  width: 80%;
}
.stepCounter[data-v-136784ca] {
  font-size: 12px;
  color: #575755;
  float: right;
}
.stepSeperator[data-v-136784ca] {
  margin-top: 6px;
  margin-bottom: 12px;
  width: 100%;
  height: 1px;
  border-bottom: 2px solid #ccc;
}
@media only screen and (max-width: 560px) {
.stepHeader[data-v-136784ca] {
    font-size: 22px;
    width: 100%;
}
.stepCounter[data-v-136784ca] {
    float: left;
    clear: left;
    margin-top: 0;
    margin-bottom: 8px;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-1660de24] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-1660de24]:-webkit-autofill,
input[data-v-1660de24]:-webkit-autofill:hover,
input[data-v-1660de24]:-webkit-autofill:focus,
input[data-v-1660de24]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-1660de24 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-1660de24 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-1660de24] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-1660de24] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-1660de24]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-1660de24]:focus:not(:active)::after {
  -webkit-animation: ripple-1660de24 1s ease-out;
          animation: ripple-1660de24 1s ease-out;
}
.btnFlat[data-v-1660de24]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-1660de24]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-1660de24] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-1660de24] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-1660de24]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-1660de24]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-1660de24]:focus:not(:active)::after {
  -webkit-animation: ripple-1660de24 1s ease-out;
          animation: ripple-1660de24 1s ease-out;
}
.btnRaised[data-v-1660de24]:hover {
  background: #406EB3;
}
.btnRaised[data-v-1660de24]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-1660de24] {
  pointer-events: none;
}
.gradientText[data-v-1660de24] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-1660de24] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-1660de24] {
  min-height: 22em;
}
.headerText[data-v-1660de24] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-1660de24] {
  -webkit-animation: rotator-1660de24 1.4s linear infinite;
          animation: rotator-1660de24 1.4s linear infinite;
}
@-webkit-keyframes rotator-1660de24 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-1660de24 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-1660de24] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1660de24 1.4s ease-in-out infinite,colors-1660de24 5.6s ease-in-out infinite;
          animation: dash-1660de24 1.4s ease-in-out infinite,colors-1660de24 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-1660de24] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1660de24 1.4s ease-in-out infinite,colorsSapphire-1660de24 5.6s ease-in-out infinite;
          animation: dash-1660de24 1.4s ease-in-out infinite,colorsSapphire-1660de24 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-1660de24] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-1660de24] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-1660de24] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-1660de24] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-1660de24 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-1660de24 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-1660de24 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-1660de24 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-1660de24 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-1660de24 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-1660de24] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-1660de24] {
  padding-top: 24px;
}
.card[data-v-1660de24] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-1660de24] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-1660de24] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-1660de24] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-1660de24] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-1660de24] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-1660de24] {
    margin-top: 12px;
}
.cardErrorCode[data-v-1660de24] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-1660de24] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.promo[data-v-1660de24] {
  border: 1px solid #ba2f7d;
  -webkit-box-shadow: 2.5px 2px 6px #575755;
  box-shadow: 2.5px 2px 6px #aaa;
  margin-bottom: 2px;
  padding: 0;
}
.promoTop[data-v-1660de24] {
  height: 32px;
  background: #ba2f7d;
  margin: 0px;
  padding: 0px;
}
.promoText[data-v-1660de24] {
  margin: 0;
  color: white;
  line-height: 30px;
  font-weight: bold;
}
.arrow-down[data-v-1660de24] {
  float: right;
  position: relative;
  right: 32px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ba2f7d;
}
.image[data-v-1660de24] {
  width: 120px;
  height: 120px;
  padding: 8px;
  margin: 0 auto;
}
.image img[data-v-1660de24] {
  width: inherit;
  height: inherit;
}
.tblContent[data-v-1660de24] {
  max-width: 350px;
  line-height: 23px;
  margin: auto;
  padding-bottom: 16px;
}
.tblContentCentralBorder[data-v-1660de24] {
  padding: 0px 32.5px 0px 32.5px;
  margin: 0px 32.5px 0px 32.5px;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
}
.threeColContent[data-v-1660de24] {
  width: 250px;
  padding: 8px 0;
}
.titleText[data-v-1660de24] {
  color: #982881;
}
.infoText[data-v-1660de24] {
  color: #3D87af;
}
table tbody td tr[data-v-1660de24] {
  height: 100%;
}
/* Tablet */
@media only screen and (max-width: 1124px) {
.tblContentCentralBorder[data-v-1660de24] {
    border: none;
}
}
/* Mobile */
@media only screen and (max-width: 560px) {
.tblContentCentralBorder[data-v-1660de24] {
    border: none;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-4e5cb9f5] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-4e5cb9f5]:-webkit-autofill,
input[data-v-4e5cb9f5]:-webkit-autofill:hover,
input[data-v-4e5cb9f5]:-webkit-autofill:focus,
input[data-v-4e5cb9f5]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-4e5cb9f5 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-4e5cb9f5 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-4e5cb9f5] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-4e5cb9f5] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-4e5cb9f5]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-4e5cb9f5]:focus:not(:active)::after {
  -webkit-animation: ripple-4e5cb9f5 1s ease-out;
          animation: ripple-4e5cb9f5 1s ease-out;
}
.btnFlat[data-v-4e5cb9f5]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-4e5cb9f5]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-4e5cb9f5] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-4e5cb9f5] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-4e5cb9f5]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-4e5cb9f5]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-4e5cb9f5]:focus:not(:active)::after {
  -webkit-animation: ripple-4e5cb9f5 1s ease-out;
          animation: ripple-4e5cb9f5 1s ease-out;
}
.btnRaised[data-v-4e5cb9f5]:hover {
  background: #406EB3;
}
.btnRaised[data-v-4e5cb9f5]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-4e5cb9f5] {
  pointer-events: none;
}
.gradientText[data-v-4e5cb9f5] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-4e5cb9f5] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-4e5cb9f5] {
  min-height: 22em;
}
.headerText[data-v-4e5cb9f5] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-4e5cb9f5] {
  -webkit-animation: rotator-4e5cb9f5 1.4s linear infinite;
          animation: rotator-4e5cb9f5 1.4s linear infinite;
}
@-webkit-keyframes rotator-4e5cb9f5 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-4e5cb9f5 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-4e5cb9f5] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-4e5cb9f5 1.4s ease-in-out infinite,colors-4e5cb9f5 5.6s ease-in-out infinite;
          animation: dash-4e5cb9f5 1.4s ease-in-out infinite,colors-4e5cb9f5 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-4e5cb9f5] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-4e5cb9f5 1.4s ease-in-out infinite,colorsSapphire-4e5cb9f5 5.6s ease-in-out infinite;
          animation: dash-4e5cb9f5 1.4s ease-in-out infinite,colorsSapphire-4e5cb9f5 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-4e5cb9f5] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-4e5cb9f5] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-4e5cb9f5] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-4e5cb9f5] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-4e5cb9f5 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-4e5cb9f5 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-4e5cb9f5 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-4e5cb9f5 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-4e5cb9f5 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-4e5cb9f5 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-4e5cb9f5] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-4e5cb9f5] {
  padding-top: 24px;
}
.card[data-v-4e5cb9f5] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-4e5cb9f5] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-4e5cb9f5] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-4e5cb9f5] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-4e5cb9f5] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-4e5cb9f5] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-4e5cb9f5] {
    margin-top: 12px;
}
.cardErrorCode[data-v-4e5cb9f5] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-4e5cb9f5] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@font-face {
  font-family: 'experianiconfont';
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot);
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot#iefix) format('embedded-opentype'), url(/home/dist/assets/fonts/experianiconfont.07e0e02.woff2) format('woff2'), url(/home/dist/assets/fonts/experianiconfont.f271139.woff) format('woff'), url(/home/dist/assets/fonts/experianiconfont.8bf4dde.ttf) format('truetype'), url(/home/dist/assets/images/experianiconfont.svg?812fa74c0876dca189c4a300f552260d#experianiconfont) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'experianiconfont';
    src: url('../font/experianiconfont.svg?34616403#experianiconfont') format('svg');
  }
}
*/
[class^="exp-icon-"][data-v-4e5cb9f5]:before,
[class*=" exp-icon-"][data-v-4e5cb9f5]:before {
  font-family: "experianiconfont";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.exp-icon-calendar-today[data-v-4e5cb9f5]:before {
  content: '\E800';
}
/* '' */
.exp-icon-help-circle[data-v-4e5cb9f5]:before {
  content: '\E801';
}
/* '' */
.exp-icon-cash-multiple[data-v-4e5cb9f5]:before {
  content: '\E802';
}
/* '' */
.exp-icon-check-circle[data-v-4e5cb9f5]:before {
  content: '\E803';
}
/* '' */
.exp-icon-share[data-v-4e5cb9f5]:before {
  content: '\E804';
}
/* '' */
.exp-icon-folder-plus[data-v-4e5cb9f5]:before {
  content: '\E805';
}
/* '' */
.exp-icon-debug-step-out[data-v-4e5cb9f5]:before {
  content: '\E806';
}
/* '' */
.exp-icon-alert-box[data-v-4e5cb9f5]:before {
  content: '\E807';
}
/* '' */
.exp-icon-note-text[data-v-4e5cb9f5]:before {
  content: '\E808';
}
/* '' */
.exp-icon-arrow-left[data-v-4e5cb9f5]:before {
  content: '\E809';
}
/* '' */
.exp-icon-link-variant[data-v-4e5cb9f5]:before {
  content: '\E80A';
}
/* '' */
.exp-icon-folder-account[data-v-4e5cb9f5]:before {
  content: '\E80B';
}
/* '' */
.exp-icon-close-box[data-v-4e5cb9f5]:before {
  content: '\E80C';
}
/* '' */
.exp-icon-skip-next[data-v-4e5cb9f5]:before {
  content: '\E80D';
}
/* '' */
.exp-icon-format-list-bulleted[data-v-4e5cb9f5]:before {
  content: '\E80E';
}
/* '' */
.exp-icon-phone-outgoing[data-v-4e5cb9f5]:before {
  content: '\E80F';
}
/* '' */
.exp-icon-phone-incoming[data-v-4e5cb9f5]:before {
  content: '\E810';
}
/* '' */
.exp-icon-magnify[data-v-4e5cb9f5]:before {
  content: '\E811';
}
/* '' */
.exp-icon-bell[data-v-4e5cb9f5]:before {
  content: '\E812';
}
/* '' */
.exp-icon-customer-contact-details[data-v-4e5cb9f5]:before {
  content: '\E813';
}
/* '' */
.exp-icon-table-large[data-v-4e5cb9f5]:before {
  content: '\E814';
}
/* '' */
.exp-icon-key[data-v-4e5cb9f5]:before {
  content: '\E815';
}
/* '' */
.exp-icon-currency-usd-off[data-v-4e5cb9f5]:before {
  content: '\E816';
}
/* '' */
.exp-icon-credit-card[data-v-4e5cb9f5]:before {
  content: '\E817';
}
/* '' */
.exp-icon-pause-octagon[data-v-4e5cb9f5]:before {
  content: '\E818';
}
/* '' */
.exp-icon-calendar-clock[data-v-4e5cb9f5]:before {
  content: '\E819';
}
/* '' */
.exp-icon-stop-circle[data-v-4e5cb9f5]:before {
  content: '\E81A';
}
/* '' */
.exp-icon-credit-card-plus[data-v-4e5cb9f5]:before {
  content: '\E81B';
}
/* '' */
.exp-icon-check[data-v-4e5cb9f5]:before {
  content: '\E81C';
}
/* '' */
.exp-icon-transfer[data-v-4e5cb9f5]:before {
  content: '\E81D';
}
/* '' */
.exp-icon-eye[data-v-4e5cb9f5]:before {
  content: '\E81E';
}
/* '' */
.exp-icon-chevron-double-left[data-v-4e5cb9f5]:before {
  content: '\E81F';
}
/* '' */
.exp-icon-chevron-double-right[data-v-4e5cb9f5]:before {
  content: '\E820';
}
/* '' */
.exp-icon-chevron-down[data-v-4e5cb9f5]:before {
  content: '\E821';
}
/* '' */
.exp-icon-chevron-up[data-v-4e5cb9f5]:before {
  content: '\E822';
}
/* '' */
.exp-icon-chevron-right[data-v-4e5cb9f5]:before {
  content: '\E823';
}
/* '' */
.exp-icon-chevron-left[data-v-4e5cb9f5]:before {
  content: '\E824';
}
/* '' */
.exp-icon-filter[data-v-4e5cb9f5]:before {
  content: '\E825';
}
/* '' */
.exp-icon-pencil-box-outline[data-v-4e5cb9f5]:before {
  content: '\E826';
}
/* '' */
.exp-icon-plus[data-v-4e5cb9f5]:before {
  content: '\E827';
}
/* '' */
.exp-icon-phone-hangup[data-v-4e5cb9f5]:before {
  content: '\E828';
}
/* '' */
.exp-icon-arrow-down[data-v-4e5cb9f5]:before {
  content: '\E829';
}
/* '' */
.exp-icon-close[data-v-4e5cb9f5]:before {
  content: '\E82A';
}
/* '' */
.exp-icon-account[data-v-4e5cb9f5]:before {
  content: '\E82B';
}
/* '' */
.exp-icon-phone-redial[data-v-4e5cb9f5]:before {
  content: '\E82C';
}
/* '' */
.exp-icon-eye-off[data-v-4e5cb9f5]:before {
  content: '\E82D';
}
/* '' */
.exp-icon-email-variant[data-v-4e5cb9f5]:before {
  content: '\E82E';
}
/* '' */
.exp-icon-credit-card-minus[data-v-4e5cb9f5]:before {
  content: '\E82F';
}
/* '' */
.exp-icon-credit-card-plus-1[data-v-4e5cb9f5]:before {
  content: '\E830';
}
/* '' */
.exp-icon-account-link[data-v-4e5cb9f5]:before {
  content: '\E831';
}
/* '' */
.exp-icon-folder-contact[data-v-4e5cb9f5]:before {
  content: '\E832';
}
/* '' */
.exp-icon-pencil[data-v-4e5cb9f5]:before {
  content: '\E833';
}
/* '' */
.exp-icon-book-open[data-v-4e5cb9f5]:before {
  content: '\E834';
}
/* '' */
.exp-icon-account-alert[data-v-4e5cb9f5]:before {
  content: '\E835';
}
/* '' */
.exp-icon-page-first[data-v-4e5cb9f5]:before {
  content: '\E836';
}
/* '' */
.exp-icon-page-last[data-v-4e5cb9f5]:before {
  content: '\E837';
}
/* '' */
.exp-icon-personal-information[data-v-4e5cb9f5]:before {
  content: '\E838';
}
/* '' */
.exp-icon-fasttrack-to-legal[data-v-4e5cb9f5]:before {
  content: '\E839';
}
/* '' */
.exp-icon-cursor-move[data-v-4e5cb9f5]:before {
  content: '\E83A';
}
/* '' */
.exp-icon-letter[data-v-4e5cb9f5]:before {
  content: '\E83B';
}
/* '' */
.exp-icon-truck-delivery[data-v-4e5cb9f5]:before {
  content: '\E83C';
}
/* '' */
.exp-icon-team[data-v-4e5cb9f5]:before {
  content: '\E83D';
}
/* '' */
.exp-icon-team-noleader[data-v-4e5cb9f5]:before {
  content: '\E83E';
}
/* '' */
.exp-icon-web[data-v-4e5cb9f5]:before {
  content: '\E83F';
}
/* '' */
.exp-icon-window-maximize[data-v-4e5cb9f5]:before {
  content: '\E840';
}
/* '' */
.exp-icon-phone-in-talk[data-v-4e5cb9f5]:before {
  content: '\E841';
}
/* '' */
.exp-icon-download[data-v-4e5cb9f5]:before {
  content: '\E842';
}
/* '' */
.exp-icon-settings[data-v-4e5cb9f5]:before {
  content: '\E843';
}
/* '' */
.exp-icon-settings-box[data-v-4e5cb9f5]:before {
  content: '\E844';
}
/* '' */
.exp-icon-authorise-transfer[data-v-4e5cb9f5]:before {
  content: '\E845';
}
/* '' */
.exp-icon-arrangement-reducing-payment[data-v-4e5cb9f5]:before {
  content: '\E846';
}
/* '' */
.exp-icon-arrangement-installment[data-v-4e5cb9f5]:before {
  content: '\E847';
}
/* '' */
.exp-icon-print-history[data-v-4e5cb9f5]:before {
  content: '\E848';
}
/* '' */
.exp-icon-suspend-product2[data-v-4e5cb9f5]:before {
  content: '\E849';
}
/* '' */
.exp-icon-account-close[data-v-4e5cb9f5]:before {
  content: '\E84A';
}
/* '' */
.exp-icon-file-import[data-v-4e5cb9f5]:before {
  content: '\E84B';
}
/* '' */
.exp-icon-file-export[data-v-4e5cb9f5]:before {
  content: '\E84C';
}
/* '' */
.exp-icon-file-view[data-v-4e5cb9f5]:before {
  content: '\E84D';
}
/* '' */
.exp-icon-printer[data-v-4e5cb9f5]:before {
  content: '\E84E';
}
/* '' */
.exp-icon-reschedule-arrangement[data-v-4e5cb9f5]:before {
  content: '\E84F';
}
/* '' */
.exp-icon-dca-allocate[data-v-4e5cb9f5]:before {
  content: '\E850';
}
/* '' */
.exp-icon-dca-preset[data-v-4e5cb9f5]:before {
  content: '\E851';
}
/* '' */
.exp-icon-play-circle[data-v-4e5cb9f5]:before {
  content: '\E852';
}
/* '' */
.exp-icon-edit-history[data-v-4e5cb9f5]:before {
  content: '\E853';
}
/* '' */
.exp-icon-logout[data-v-4e5cb9f5]:before {
  content: '\E854';
}
/* '' */
.exp-icon-dca-complete[data-v-4e5cb9f5]:before {
  content: '\E855';
}
/* '' */
.exp-icon-dca-withdraw[data-v-4e5cb9f5]:before {
  content: '\E856';
}
/* '' */
.exp-icon-deactivate-product[data-v-4e5cb9f5]:before {
  content: '\E857';
}
/* '' */
.exp-icon-btn-remove[data-v-4e5cb9f5]:before {
  content: '\E858';
}
/* '' */
.exp-icon-authorise-writeoff[data-v-4e5cb9f5]:before {
  content: '\E859';
}
/* '' */
.exp-icon-reactivate-product[data-v-4e5cb9f5]:before {
  content: '\E85A';
}
/* '' */
.exp-icon-dca-reinstatement[data-v-4e5cb9f5]:before {
  content: '\E85B';
}
/* '' */
.exp-icon-bar-product[data-v-4e5cb9f5]:before {
  content: '\E85C';
}
/* '' */
.exp-icon-reinstate-product[data-v-4e5cb9f5]:before {
  content: '\E85D';
}
/* '' */
.exp-icon-content-save[data-v-4e5cb9f5]:before {
  content: '\E85E';
}
/* '' */
.exp-icon-content-paste[data-v-4e5cb9f5]:before {
  content: '\E85F';
}
/* '' */
.exp-icon-tower-import[data-v-4e5cb9f5]:before {
  content: '\E860';
}
/* '' */
.exp-icon-alert-circle-outline[data-v-4e5cb9f5]:before {
  content: '\E861';
}
/* '' */
.exp-icon-chart-arc[data-v-4e5cb9f5]:before {
  content: '\E862';
}
/* '' */
.exp-icon-chart-bar[data-v-4e5cb9f5]:before {
  content: '\E863';
}
/* '' */
.exp-icon-chart-line[data-v-4e5cb9f5]:before {
  content: '\E864';
}
/* '' */
.exp-icon-database[data-v-4e5cb9f5]:before {
  content: '\E865';
}
/* '' */
.exp-icon-database-plus[data-v-4e5cb9f5]:before {
  content: '\E866';
}
/* '' */
.exp-icon-dots-horizontal[data-v-4e5cb9f5]:before {
  content: '\E867';
}
/* '' */
.exp-icon-dots-vertical[data-v-4e5cb9f5]:before {
  content: '\E868';
}
/* '' */
.exp-icon-home[data-v-4e5cb9f5]:before {
  content: '\E869';
}
/* '' */
.exp-icon-menu[data-v-4e5cb9f5]:before {
  content: '\E86A';
}
/* '' */
.exp-icon-exclamation[data-v-4e5cb9f5]:before {
  content: '\E86B';
}
/* '' */
.exp-icon-flag-outline-variant[data-v-4e5cb9f5]:before {
  content: '\E86C';
}
/* '' */
.exp-icon-refresh[data-v-4e5cb9f5]:before {
  content: '\E86D';
}
/* '' */
.exp-icon-timer-sand[data-v-4e5cb9f5]:before {
  content: '\E86E';
}
/* '' */
.exp-icon-star-outline[data-v-4e5cb9f5]:before {
  content: '\E86F';
}
/* '' */
.smallContainer[data-v-4e5cb9f5] {
  height: 128px;
  width: 170px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  margin: 0 46.5px;
  padding: 0 32.5px;
  vertical-align: top;
  font-size: 14px;
}
.container[data-v-4e5cb9f5] {
  height: 220px;
  width: 250px;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  margin: 0 16px;
  padding: 0 26px;
  vertical-align: top;
  font-size: 14px;
  line-height: 23px;
  font-size: 16px;
}
.smallInfoIcon[data-v-4e5cb9f5] {
  height: 36px;
  width: 36px;
  margin: 14px 0 10px 0;
}
.infoIcon[data-v-4e5cb9f5] {
  height: 120px;
  width: 120px;
  margin: 14px 0 10px 0;
}
@media only screen and (max-width: 560px) {
.smallContainer[data-v-4e5cb9f5] {
    margin: 10px auto;
    padding: 10px 32.5px;
}
.container[data-v-4e5cb9f5] {
    margin: 10px 16px;
    width: 220px;
}
.smallInfoIcon[data-v-4e5cb9f5] {
    height: 36px;
    width: 36px;
    margin: 14px 0 10px 0;
}
.infoIcon[data-v-4e5cb9f5] {
    height: 120px;
    width: 120px;
    margin: 14px 0 10px 0;
}
}
@media only screen and (min-width: 561px) and (max-width: 1024px) {
.container[data-v-4e5cb9f5] {
    margin: 10px 10px;
    width: 180px;
}
.smallContainer[data-v-4e5cb9f5] {
    margin: 10px;
    padding: 0 28px;
}
}

.modal-mask[data-v-4d0782f0] {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.modal-wrapper[data-v-4d0782f0] {
  vertical-align: middle;
}
.modal-container[data-v-4d0782f0] {
  background-color: #fff;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 400px;
  position: relative;
  margin: 5% auto 0px;
  margin: 2.5vh auto 0px;
  overflow: auto;
}
.modal-header h3[data-v-4d0782f0] {
  margin-top: 0;
  color: #42b983;
}
.modal-header[data-v-4d0782f0] {
  height: 20%;
}
.modal-body[data-v-4d0782f0] {
  height: 70%;
  padding: 20px 20px 0 20px;
}
.modal-footer[data-v-4d0782f0] {
  height: 10%;
}
.modal-default-button[data-v-4d0782f0] {
  float: right;
}
/*
 * The following styles are auto-applied to elements with
 * transition="modal" when their visibility is toggled
 * by Vue.js.
 *
 * You can easily play with the modal transition by editing
 * these styles.
 */
.modal-enter[data-v-4d0782f0] {
  opacity: 0;
}
.modal-leave-active[data-v-4d0782f0] {
  opacity: 0;
}
/* phone portrait */
@media only screen and (max-width: 740px) {
.modal-container[data-v-4d0782f0] {
    width: 100% !important;
    left: 0;
    margin-top: 35%;
    overflow: auto;
}
.modal-mask[data-v-4d0782f0] {
    overflow: auto;
}
}
/*iPhone X landscape */
@media only screen and (min-width: 769px) and (max-width: 812px) {
.modal-mask[data-v-4d0782f0] {
    overflow: auto;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-8c48d7a0] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-8c48d7a0]:-webkit-autofill,
input[data-v-8c48d7a0]:-webkit-autofill:hover,
input[data-v-8c48d7a0]:-webkit-autofill:focus,
input[data-v-8c48d7a0]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-8c48d7a0 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-8c48d7a0 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-8c48d7a0] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-8c48d7a0] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-8c48d7a0]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-8c48d7a0]:focus:not(:active)::after {
  -webkit-animation: ripple-8c48d7a0 1s ease-out;
          animation: ripple-8c48d7a0 1s ease-out;
}
.btnFlat[data-v-8c48d7a0]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-8c48d7a0]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-8c48d7a0] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-8c48d7a0] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-8c48d7a0]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-8c48d7a0]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-8c48d7a0]:focus:not(:active)::after {
  -webkit-animation: ripple-8c48d7a0 1s ease-out;
          animation: ripple-8c48d7a0 1s ease-out;
}
.btnRaised[data-v-8c48d7a0]:hover {
  background: #406EB3;
}
.btnRaised[data-v-8c48d7a0]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-8c48d7a0] {
  pointer-events: none;
}
.gradientText[data-v-8c48d7a0] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-8c48d7a0] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-8c48d7a0] {
  min-height: 22em;
}
.headerText[data-v-8c48d7a0] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-8c48d7a0] {
  -webkit-animation: rotator-8c48d7a0 1.4s linear infinite;
          animation: rotator-8c48d7a0 1.4s linear infinite;
}
@-webkit-keyframes rotator-8c48d7a0 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-8c48d7a0 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-8c48d7a0] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-8c48d7a0 1.4s ease-in-out infinite,colors-8c48d7a0 5.6s ease-in-out infinite;
          animation: dash-8c48d7a0 1.4s ease-in-out infinite,colors-8c48d7a0 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-8c48d7a0] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-8c48d7a0 1.4s ease-in-out infinite,colorsSapphire-8c48d7a0 5.6s ease-in-out infinite;
          animation: dash-8c48d7a0 1.4s ease-in-out infinite,colorsSapphire-8c48d7a0 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-8c48d7a0] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-8c48d7a0] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-8c48d7a0] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-8c48d7a0] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-8c48d7a0 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-8c48d7a0 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-8c48d7a0 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-8c48d7a0 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-8c48d7a0 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-8c48d7a0 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-8c48d7a0] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-8c48d7a0] {
  padding-top: 24px;
}
.card[data-v-8c48d7a0] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-8c48d7a0] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-8c48d7a0] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-8c48d7a0] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-8c48d7a0] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-8c48d7a0] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-8c48d7a0] {
    margin-top: 12px;
}
.cardErrorCode[data-v-8c48d7a0] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-8c48d7a0] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
p[data-v-8c48d7a0] {
  margin: 5px 0 5px 5px;
}
#cancelInfo[data-v-8c48d7a0] {
  margin-top: 16px;
}
#cancelText[data-v-8c48d7a0] {
  margin-left: 32px;
}
.packageBody[data-v-8c48d7a0] {
  padding-bottom: 8px;
}
.directorshipSection[data-v-8c48d7a0] {
  padding: 8px 0 0 0;
  margin: 6px 0 0 0;
}
.businessSection[data-v-8c48d7a0] {
  padding: 8px 0;
  margin: 8px 0;
}
.successText[data-v-8c48d7a0] {
  color: #3DAD24;
  font-weight: bold;
}
.subTitleText[data-v-8c48d7a0] {
  font-weight: bold;
  color: #632678;
  font-size: 16px;
  line-height: 20px;
}
.selectedDetails[data-v-8c48d7a0] {
  color: #3D87af;
  line-height: 23px;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-1ee860d7] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-1ee860d7]:-webkit-autofill,
input[data-v-1ee860d7]:-webkit-autofill:hover,
input[data-v-1ee860d7]:-webkit-autofill:focus,
input[data-v-1ee860d7]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-1ee860d7 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-1ee860d7 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-1ee860d7] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-1ee860d7] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-1ee860d7]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-1ee860d7]:focus:not(:active)::after {
  -webkit-animation: ripple-1ee860d7 1s ease-out;
          animation: ripple-1ee860d7 1s ease-out;
}
.btnFlat[data-v-1ee860d7]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-1ee860d7]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-1ee860d7] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-1ee860d7] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-1ee860d7]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-1ee860d7]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-1ee860d7]:focus:not(:active)::after {
  -webkit-animation: ripple-1ee860d7 1s ease-out;
          animation: ripple-1ee860d7 1s ease-out;
}
.btnRaised[data-v-1ee860d7]:hover {
  background: #406EB3;
}
.btnRaised[data-v-1ee860d7]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-1ee860d7] {
  pointer-events: none;
}
.gradientText[data-v-1ee860d7] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-1ee860d7] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-1ee860d7] {
  min-height: 22em;
}
.headerText[data-v-1ee860d7] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-1ee860d7] {
  -webkit-animation: rotator-1ee860d7 1.4s linear infinite;
          animation: rotator-1ee860d7 1.4s linear infinite;
}
@-webkit-keyframes rotator-1ee860d7 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-1ee860d7 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-1ee860d7] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1ee860d7 1.4s ease-in-out infinite,colors-1ee860d7 5.6s ease-in-out infinite;
          animation: dash-1ee860d7 1.4s ease-in-out infinite,colors-1ee860d7 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-1ee860d7] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1ee860d7 1.4s ease-in-out infinite,colorsSapphire-1ee860d7 5.6s ease-in-out infinite;
          animation: dash-1ee860d7 1.4s ease-in-out infinite,colorsSapphire-1ee860d7 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-1ee860d7] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-1ee860d7] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-1ee860d7] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-1ee860d7] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-1ee860d7 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-1ee860d7 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-1ee860d7 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-1ee860d7 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-1ee860d7 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-1ee860d7 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-1ee860d7] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-1ee860d7] {
  padding-top: 24px;
}
.card[data-v-1ee860d7] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-1ee860d7] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-1ee860d7] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-1ee860d7] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-1ee860d7] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-1ee860d7] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-1ee860d7] {
    margin-top: 12px;
}
.cardErrorCode[data-v-1ee860d7] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-1ee860d7] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.loading[data-v-1ee860d7] {
  text-align: center;
}
.loading svg[data-v-1ee860d7] {
  width: 96px;
  height: 96px;
  padding: 18px;
}
.loadingText[data-v-1ee860d7] {
  font-size: 22px;
  margin: 18px 0;
  display: block;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-2b624cc5] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-2b624cc5]:-webkit-autofill,
input[data-v-2b624cc5]:-webkit-autofill:hover,
input[data-v-2b624cc5]:-webkit-autofill:focus,
input[data-v-2b624cc5]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-2b624cc5 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-2b624cc5 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-2b624cc5] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-2b624cc5] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-2b624cc5]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-2b624cc5]:focus:not(:active)::after {
  -webkit-animation: ripple-2b624cc5 1s ease-out;
          animation: ripple-2b624cc5 1s ease-out;
}
.btnFlat[data-v-2b624cc5]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-2b624cc5]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-2b624cc5] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-2b624cc5] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-2b624cc5]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-2b624cc5]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-2b624cc5]:focus:not(:active)::after {
  -webkit-animation: ripple-2b624cc5 1s ease-out;
          animation: ripple-2b624cc5 1s ease-out;
}
.btnRaised[data-v-2b624cc5]:hover {
  background: #406EB3;
}
.btnRaised[data-v-2b624cc5]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-2b624cc5] {
  pointer-events: none;
}
.gradientText[data-v-2b624cc5] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-2b624cc5] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-2b624cc5] {
  min-height: 22em;
}
.headerText[data-v-2b624cc5] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-2b624cc5] {
  -webkit-animation: rotator-2b624cc5 1.4s linear infinite;
          animation: rotator-2b624cc5 1.4s linear infinite;
}
@-webkit-keyframes rotator-2b624cc5 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-2b624cc5 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-2b624cc5] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-2b624cc5 1.4s ease-in-out infinite,colors-2b624cc5 5.6s ease-in-out infinite;
          animation: dash-2b624cc5 1.4s ease-in-out infinite,colors-2b624cc5 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-2b624cc5] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-2b624cc5 1.4s ease-in-out infinite,colorsSapphire-2b624cc5 5.6s ease-in-out infinite;
          animation: dash-2b624cc5 1.4s ease-in-out infinite,colorsSapphire-2b624cc5 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-2b624cc5] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-2b624cc5] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-2b624cc5] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-2b624cc5] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-2b624cc5 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-2b624cc5 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-2b624cc5 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-2b624cc5 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-2b624cc5 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-2b624cc5 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-2b624cc5] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-2b624cc5] {
  padding-top: 24px;
}
.card[data-v-2b624cc5] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-2b624cc5] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-2b624cc5] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-2b624cc5] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-2b624cc5] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-2b624cc5] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-2b624cc5] {
    margin-top: 12px;
}
.cardErrorCode[data-v-2b624cc5] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-2b624cc5] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.continueCTA[data-v-2b624cc5] {
  padding: 0 32px 24px 32px;
  margin: 6px;
  float: right;
}
.body[data-v-2b624cc5] {
  padding: 20px 20px 0 20px;
}
.alertIcon[data-v-2b624cc5] {
  text-align: center;
}
.alertIcon img[data-v-2b624cc5] {
  padding: 10px;
  width: 100px;
}
.errorMessage[data-v-2b624cc5] {
  width: 100%;
  text-align: center;
  margin: 20px 10px 0 10px;
  font-weight: normal;
  line-height: 34px;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-1b1d0120] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-1b1d0120]:-webkit-autofill,
input[data-v-1b1d0120]:-webkit-autofill:hover,
input[data-v-1b1d0120]:-webkit-autofill:focus,
input[data-v-1b1d0120]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-1b1d0120 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-1b1d0120 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-1b1d0120] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-1b1d0120] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-1b1d0120]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-1b1d0120]:focus:not(:active)::after {
  -webkit-animation: ripple-1b1d0120 1s ease-out;
          animation: ripple-1b1d0120 1s ease-out;
}
.btnFlat[data-v-1b1d0120]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-1b1d0120]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-1b1d0120] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-1b1d0120] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-1b1d0120]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-1b1d0120]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-1b1d0120]:focus:not(:active)::after {
  -webkit-animation: ripple-1b1d0120 1s ease-out;
          animation: ripple-1b1d0120 1s ease-out;
}
.btnRaised[data-v-1b1d0120]:hover {
  background: #406EB3;
}
.btnRaised[data-v-1b1d0120]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-1b1d0120] {
  pointer-events: none;
}
.gradientText[data-v-1b1d0120] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-1b1d0120] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-1b1d0120] {
  min-height: 22em;
}
.headerText[data-v-1b1d0120] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-1b1d0120] {
  -webkit-animation: rotator-1b1d0120 1.4s linear infinite;
          animation: rotator-1b1d0120 1.4s linear infinite;
}
@-webkit-keyframes rotator-1b1d0120 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-1b1d0120 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-1b1d0120] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1b1d0120 1.4s ease-in-out infinite,colors-1b1d0120 5.6s ease-in-out infinite;
          animation: dash-1b1d0120 1.4s ease-in-out infinite,colors-1b1d0120 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-1b1d0120] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-1b1d0120 1.4s ease-in-out infinite,colorsSapphire-1b1d0120 5.6s ease-in-out infinite;
          animation: dash-1b1d0120 1.4s ease-in-out infinite,colorsSapphire-1b1d0120 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-1b1d0120] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-1b1d0120] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-1b1d0120] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-1b1d0120] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-1b1d0120 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-1b1d0120 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-1b1d0120 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-1b1d0120 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-1b1d0120 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-1b1d0120 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-1b1d0120] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-1b1d0120] {
  padding-top: 24px;
}
.card[data-v-1b1d0120] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-1b1d0120] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-1b1d0120] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-1b1d0120] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-1b1d0120] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-1b1d0120] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-1b1d0120] {
    margin-top: 12px;
}
.cardErrorCode[data-v-1b1d0120] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-1b1d0120] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.continueCTA[data-v-1b1d0120] {
  padding: 0 32px 24px 32px;
  margin: 6px;
  float: right;
}
.body[data-v-1b1d0120] {
  padding: 20px 20px 0 20px;
}
.alertIcon[data-v-1b1d0120] {
  text-align: center;
}
.alertIcon img[data-v-1b1d0120] {
  padding: 10px;
  width: 100px;
}
.errorMessage[data-v-1b1d0120] {
  width: 100%;
  text-align: center;
  margin: 6px 10px 0 10px;
  font-weight: normal;
  line-height: 34px;
}
#errorCode[data-v-1b1d0120] {
  position: relative;
  top: 48px;
  left: 18px;
  color: #ccc;
  font-size: 10px;
}
#contactMessage[data-v-1b1d0120] {
  padding-bottom: 20px;
  color: #3D87af;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-11651686] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-11651686]:-webkit-autofill,
input[data-v-11651686]:-webkit-autofill:hover,
input[data-v-11651686]:-webkit-autofill:focus,
input[data-v-11651686]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-11651686 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-11651686 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-11651686] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-11651686] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-11651686]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-11651686]:focus:not(:active)::after {
  -webkit-animation: ripple-11651686 1s ease-out;
          animation: ripple-11651686 1s ease-out;
}
.btnFlat[data-v-11651686]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-11651686]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-11651686] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-11651686] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-11651686]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-11651686]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-11651686]:focus:not(:active)::after {
  -webkit-animation: ripple-11651686 1s ease-out;
          animation: ripple-11651686 1s ease-out;
}
.btnRaised[data-v-11651686]:hover {
  background: #406EB3;
}
.btnRaised[data-v-11651686]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-11651686] {
  pointer-events: none;
}
.gradientText[data-v-11651686] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-11651686] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-11651686] {
  min-height: 22em;
}
.headerText[data-v-11651686] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-11651686] {
  -webkit-animation: rotator-11651686 1.4s linear infinite;
          animation: rotator-11651686 1.4s linear infinite;
}
@-webkit-keyframes rotator-11651686 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-11651686 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-11651686] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-11651686 1.4s ease-in-out infinite,colors-11651686 5.6s ease-in-out infinite;
          animation: dash-11651686 1.4s ease-in-out infinite,colors-11651686 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-11651686] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-11651686 1.4s ease-in-out infinite,colorsSapphire-11651686 5.6s ease-in-out infinite;
          animation: dash-11651686 1.4s ease-in-out infinite,colorsSapphire-11651686 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-11651686] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-11651686] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-11651686] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-11651686] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-11651686 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-11651686 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-11651686 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-11651686 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-11651686 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-11651686 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-11651686] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-11651686] {
  padding-top: 24px;
}
.card[data-v-11651686] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-11651686] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-11651686] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-11651686] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-11651686] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-11651686] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-11651686] {
    margin-top: 12px;
}
.cardErrorCode[data-v-11651686] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-11651686] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
ul[data-v-11651686] {
  display: block;
  margin-left: 4px;
  padding: 0;
  text-align: left;
}
.initial[data-v-11651686] {
  color: #aaa;
}
.valid[data-v-11651686] {
  color: #3DAD24;
}
.invalid[data-v-11651686] {
  color: #D31F1F;
}
.listStyle[data-v-11651686] {
  list-style: none;
  text-align: left;
  height: 20px;
  margin-bottom: 6px;
  display: inline-block;
  padding: 4px 12px 0 4px;
}
.listIcon[data-v-11651686] {
  margin-right: 4px;
  height: 20px;
}
.listIcon img[data-v-11651686] {
  width: 20px;
  height: 20px;
  padding-bottom: 4px;
  vertical-align: middle;
}
.listDescription[data-v-11651686] {
  min-height: 20px;
  line-height: 20px;
  text-align: right;
}
@media only screen and (max-width: 560px) {
.listStyle[data-v-11651686] {
    width: 100%;
}
}

.headerTextContainer {
  width: 80%;
  margin: 0 auto;
}
.registrationHeaderText {
  text-align: center;
  margin: 0 auto 8px auto;
  padding: 4px 0 12px 0;
  font-size: 22px;
  line-height: 28px;
  width: 100%;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-353fb630] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-353fb630]:-webkit-autofill,
input[data-v-353fb630]:-webkit-autofill:hover,
input[data-v-353fb630]:-webkit-autofill:focus,
input[data-v-353fb630]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-353fb630 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-353fb630 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-353fb630] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-353fb630] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-353fb630]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-353fb630]:focus:not(:active)::after {
  -webkit-animation: ripple-353fb630 1s ease-out;
          animation: ripple-353fb630 1s ease-out;
}
.btnFlat[data-v-353fb630]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-353fb630]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-353fb630] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-353fb630] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-353fb630]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-353fb630]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-353fb630]:focus:not(:active)::after {
  -webkit-animation: ripple-353fb630 1s ease-out;
          animation: ripple-353fb630 1s ease-out;
}
.btnRaised[data-v-353fb630]:hover {
  background: #406EB3;
}
.btnRaised[data-v-353fb630]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-353fb630] {
  pointer-events: none;
}
.gradientText[data-v-353fb630] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-353fb630] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-353fb630] {
  min-height: 22em;
}
.headerText[data-v-353fb630] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-353fb630] {
  -webkit-animation: rotator-353fb630 1.4s linear infinite;
          animation: rotator-353fb630 1.4s linear infinite;
}
@-webkit-keyframes rotator-353fb630 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-353fb630 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-353fb630] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-353fb630 1.4s ease-in-out infinite,colors-353fb630 5.6s ease-in-out infinite;
          animation: dash-353fb630 1.4s ease-in-out infinite,colors-353fb630 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-353fb630] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-353fb630 1.4s ease-in-out infinite,colorsSapphire-353fb630 5.6s ease-in-out infinite;
          animation: dash-353fb630 1.4s ease-in-out infinite,colorsSapphire-353fb630 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-353fb630] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-353fb630] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-353fb630] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-353fb630] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-353fb630 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-353fb630 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-353fb630 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-353fb630 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-353fb630 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-353fb630 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-353fb630] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-353fb630] {
  padding-top: 24px;
}
.card[data-v-353fb630] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-353fb630] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-353fb630] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-353fb630] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-353fb630] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-353fb630] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-353fb630] {
    margin-top: 12px;
}
.cardErrorCode[data-v-353fb630] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-353fb630] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.subtext[data-v-353fb630] {
  margin: 0 4px 0 0;
  text-align: left;
  color: #aaa;
  font-size: 12px;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-7d81df10] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-7d81df10]:-webkit-autofill,
input[data-v-7d81df10]:-webkit-autofill:hover,
input[data-v-7d81df10]:-webkit-autofill:focus,
input[data-v-7d81df10]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-7d81df10 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-7d81df10 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-7d81df10] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-7d81df10] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-7d81df10]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-7d81df10]:focus:not(:active)::after {
  -webkit-animation: ripple-7d81df10 1s ease-out;
          animation: ripple-7d81df10 1s ease-out;
}
.btnFlat[data-v-7d81df10]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-7d81df10]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-7d81df10] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-7d81df10] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-7d81df10]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-7d81df10]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-7d81df10]:focus:not(:active)::after {
  -webkit-animation: ripple-7d81df10 1s ease-out;
          animation: ripple-7d81df10 1s ease-out;
}
.btnRaised[data-v-7d81df10]:hover {
  background: #406EB3;
}
.btnRaised[data-v-7d81df10]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-7d81df10] {
  pointer-events: none;
}
.gradientText[data-v-7d81df10] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-7d81df10] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-7d81df10] {
  min-height: 22em;
}
.headerText[data-v-7d81df10] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-7d81df10] {
  -webkit-animation: rotator-7d81df10 1.4s linear infinite;
          animation: rotator-7d81df10 1.4s linear infinite;
}
@-webkit-keyframes rotator-7d81df10 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-7d81df10 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-7d81df10] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-7d81df10 1.4s ease-in-out infinite,colors-7d81df10 5.6s ease-in-out infinite;
          animation: dash-7d81df10 1.4s ease-in-out infinite,colors-7d81df10 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-7d81df10] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-7d81df10 1.4s ease-in-out infinite,colorsSapphire-7d81df10 5.6s ease-in-out infinite;
          animation: dash-7d81df10 1.4s ease-in-out infinite,colorsSapphire-7d81df10 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-7d81df10] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-7d81df10] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-7d81df10] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-7d81df10] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-7d81df10 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-7d81df10 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-7d81df10 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-7d81df10 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-7d81df10 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-7d81df10 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-7d81df10] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-7d81df10] {
  padding-top: 24px;
}
.card[data-v-7d81df10] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-7d81df10] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-7d81df10] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-7d81df10] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-7d81df10] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-7d81df10] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-7d81df10] {
    margin-top: 12px;
}
.cardErrorCode[data-v-7d81df10] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-7d81df10] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.subtext[data-v-7d81df10] {
  margin: 0 4px 0 0;
  text-align: left;
  color: #aaa;
  font-size: 12px;
}
.errorText[data-v-7d81df10] {
  text-align: center;
  font-size: small;
  line-height: 1.5;
}
.heading[data-v-7d81df10] {
  font-size: medium;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-0e971b78] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-0e971b78]:-webkit-autofill,
input[data-v-0e971b78]:-webkit-autofill:hover,
input[data-v-0e971b78]:-webkit-autofill:focus,
input[data-v-0e971b78]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-0e971b78 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-0e971b78 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-0e971b78] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-0e971b78] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-0e971b78]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-0e971b78]:focus:not(:active)::after {
  -webkit-animation: ripple-0e971b78 1s ease-out;
          animation: ripple-0e971b78 1s ease-out;
}
.btnFlat[data-v-0e971b78]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-0e971b78]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-0e971b78] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-0e971b78] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-0e971b78]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-0e971b78]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-0e971b78]:focus:not(:active)::after {
  -webkit-animation: ripple-0e971b78 1s ease-out;
          animation: ripple-0e971b78 1s ease-out;
}
.btnRaised[data-v-0e971b78]:hover {
  background: #406EB3;
}
.btnRaised[data-v-0e971b78]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-0e971b78] {
  pointer-events: none;
}
.gradientText[data-v-0e971b78] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-0e971b78] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-0e971b78] {
  min-height: 22em;
}
.headerText[data-v-0e971b78] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-0e971b78] {
  -webkit-animation: rotator-0e971b78 1.4s linear infinite;
          animation: rotator-0e971b78 1.4s linear infinite;
}
@-webkit-keyframes rotator-0e971b78 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-0e971b78 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-0e971b78] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-0e971b78 1.4s ease-in-out infinite,colors-0e971b78 5.6s ease-in-out infinite;
          animation: dash-0e971b78 1.4s ease-in-out infinite,colors-0e971b78 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-0e971b78] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-0e971b78 1.4s ease-in-out infinite,colorsSapphire-0e971b78 5.6s ease-in-out infinite;
          animation: dash-0e971b78 1.4s ease-in-out infinite,colorsSapphire-0e971b78 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-0e971b78] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-0e971b78] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-0e971b78] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-0e971b78] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-0e971b78 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-0e971b78 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-0e971b78 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-0e971b78 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-0e971b78 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-0e971b78 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-0e971b78] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-0e971b78] {
  padding-top: 24px;
}
.card[data-v-0e971b78] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-0e971b78] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-0e971b78] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-0e971b78] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-0e971b78] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-0e971b78] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-0e971b78] {
    margin-top: 12px;
}
.cardErrorCode[data-v-0e971b78] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-0e971b78] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.validation-message[data-v-0e971b78] {
  position: absolute;
  display: block;
  margin-top: 100px;
  padding-left: 55px;
  color: red;
  font-size: 14px;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-6297d209] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-6297d209]:-webkit-autofill,
input[data-v-6297d209]:-webkit-autofill:hover,
input[data-v-6297d209]:-webkit-autofill:focus,
input[data-v-6297d209]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-6297d209 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-6297d209 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-6297d209] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-6297d209] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-6297d209]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-6297d209]:focus:not(:active)::after {
  -webkit-animation: ripple-6297d209 1s ease-out;
          animation: ripple-6297d209 1s ease-out;
}
.btnFlat[data-v-6297d209]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-6297d209]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-6297d209] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-6297d209] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-6297d209]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-6297d209]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-6297d209]:focus:not(:active)::after {
  -webkit-animation: ripple-6297d209 1s ease-out;
          animation: ripple-6297d209 1s ease-out;
}
.btnRaised[data-v-6297d209]:hover {
  background: #406EB3;
}
.btnRaised[data-v-6297d209]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-6297d209] {
  pointer-events: none;
}
.gradientText[data-v-6297d209] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-6297d209] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-6297d209] {
  min-height: 22em;
}
.headerText[data-v-6297d209] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-6297d209] {
  -webkit-animation: rotator-6297d209 1.4s linear infinite;
          animation: rotator-6297d209 1.4s linear infinite;
}
@-webkit-keyframes rotator-6297d209 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-6297d209 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-6297d209] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-6297d209 1.4s ease-in-out infinite,colors-6297d209 5.6s ease-in-out infinite;
          animation: dash-6297d209 1.4s ease-in-out infinite,colors-6297d209 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-6297d209] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-6297d209 1.4s ease-in-out infinite,colorsSapphire-6297d209 5.6s ease-in-out infinite;
          animation: dash-6297d209 1.4s ease-in-out infinite,colorsSapphire-6297d209 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-6297d209] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-6297d209] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-6297d209] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-6297d209] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-6297d209 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-6297d209 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-6297d209 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-6297d209 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-6297d209 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-6297d209 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-6297d209] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-6297d209] {
  padding-top: 24px;
}
.card[data-v-6297d209] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-6297d209] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-6297d209] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-6297d209] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-6297d209] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-6297d209] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-6297d209] {
    margin-top: 12px;
}
.cardErrorCode[data-v-6297d209] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-6297d209] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.stripeContainer[data-v-6297d209] {
  border-radius: 8px;
  padding: 8px 30px 30px 30px;
  margin: 30px 0;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 1px 3px 0 #dddddd;
          box-shadow: 0 1px 3px 0 #dddddd;
  -webkit-transition: box-shadow 150ms ease;
  -webkit-transition: -webkit-box-shadow 150ms ease;
  transition: -webkit-box-shadow 150ms ease;
  transition: box-shadow 150ms ease;
  transition: box-shadow 150ms ease, -webkit-box-shadow 150ms ease;
}
.stripe-element[data-v-6297d209] {
  background: -webkit-gradient(linear, right top, left top, from(#406EB3), to(#982881)) left bottom transparent no-repeat;
  background: linear-gradient(to left, #406EB3 0%, #982881 100%) left bottom transparent no-repeat;
  background-size: 100% 2px;
  padding: 10px 0;
}
.stripe-element[data-v-6297d209]::-webkit-input-placeholder {
  color: #AAB7C4;
  font-family: Helvetica Neue, serif;
  font-weight: bold;
  font-size: 14px;
}
.stripe-element[data-v-6297d209]::-moz-placeholder {
  color: #AAB7C4;
  font-family: Helvetica Neue, serif;
  font-weight: bold;
  font-size: 14px;
}
.stripe-element[data-v-6297d209]:-ms-input-placeholder {
  color: #AAB7C4;
  font-family: Helvetica Neue, serif;
  font-weight: bold;
  font-size: 14px;
}
.stripe-element[data-v-6297d209]::-ms-input-placeholder {
  color: #AAB7C4;
  font-family: Helvetica Neue, serif;
  font-weight: bold;
  font-size: 14px;
}
.stripe-element[data-v-6297d209]::placeholder {
  color: #AAB7C4;
  font-family: Helvetica Neue, serif;
  font-weight: bold;
  font-size: 14px;
}
.stripeLogo[data-v-6297d209] {
  width: 200px;
  float: right;
  margin: 28px 0 0 -14px;
}
.cardLogoContainer[data-v-6297d209] {
  text-align: center;
  height: 44px;
  float: right;
  margin: 28px 24px 0 -14px;
}
.cardLogo[data-v-6297d209] {
  height: 44px;
  width: 70px;
  margin: 0 2px;
}
.card-errors[data-v-6297d209] {
  color: #D31F1F;
  font-size: 14px;
  margin: 6px 4px 4px;
}
.stripe-label[data-v-6297d209] {
  top: -12px;
  font-size: 14px;
  background-image: -webkit-linear-gradient(45deg, #982881, #406EB3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #406EB3;
}
.stripe-field[data-v-6297d209] {
  margin-bottom: 32px;
}
/* Tablet */
@media only screen and (max-width: 644px) {
.stripeContainer[data-v-6297d209] {
    padding-bottom: 8px;
}
.stripeLogo[data-v-6297d209] {
    width: 200px;
    height: 44px;
    display: block;
    float: none;
    margin: 28px auto -12px;
}
.cardLogoContainer[data-v-6297d209] {
    width: 100%;
    height: 100%;
    float: none;
    display: block;
    margin: 28px auto 0;
}
.cardLogo[data-v-6297d209] {
    height: 44px;
    width: 70px;
    margin: 2px 2px;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-03fa310d] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-03fa310d]:-webkit-autofill,
input[data-v-03fa310d]:-webkit-autofill:hover,
input[data-v-03fa310d]:-webkit-autofill:focus,
input[data-v-03fa310d]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-03fa310d {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-03fa310d {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-03fa310d] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-03fa310d] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-03fa310d]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-03fa310d]:focus:not(:active)::after {
  -webkit-animation: ripple-03fa310d 1s ease-out;
          animation: ripple-03fa310d 1s ease-out;
}
.btnFlat[data-v-03fa310d]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-03fa310d]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-03fa310d] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-03fa310d] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-03fa310d]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-03fa310d]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-03fa310d]:focus:not(:active)::after {
  -webkit-animation: ripple-03fa310d 1s ease-out;
          animation: ripple-03fa310d 1s ease-out;
}
.btnRaised[data-v-03fa310d]:hover {
  background: #406EB3;
}
.btnRaised[data-v-03fa310d]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-03fa310d] {
  pointer-events: none;
}
.gradientText[data-v-03fa310d] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-03fa310d] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-03fa310d] {
  min-height: 22em;
}
.headerText[data-v-03fa310d] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-03fa310d] {
  -webkit-animation: rotator-03fa310d 1.4s linear infinite;
          animation: rotator-03fa310d 1.4s linear infinite;
}
@-webkit-keyframes rotator-03fa310d {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-03fa310d {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-03fa310d] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-03fa310d 1.4s ease-in-out infinite,colors-03fa310d 5.6s ease-in-out infinite;
          animation: dash-03fa310d 1.4s ease-in-out infinite,colors-03fa310d 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-03fa310d] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-03fa310d 1.4s ease-in-out infinite,colorsSapphire-03fa310d 5.6s ease-in-out infinite;
          animation: dash-03fa310d 1.4s ease-in-out infinite,colorsSapphire-03fa310d 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-03fa310d] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-03fa310d] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-03fa310d] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-03fa310d] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-03fa310d {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-03fa310d {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-03fa310d {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-03fa310d {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-03fa310d {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-03fa310d {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-03fa310d] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-03fa310d] {
  padding-top: 24px;
}
.card[data-v-03fa310d] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-03fa310d] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-03fa310d] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-03fa310d] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-03fa310d] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-03fa310d] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-03fa310d] {
    margin-top: 12px;
}
.cardErrorCode[data-v-03fa310d] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-03fa310d] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-12dea544] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-12dea544]:-webkit-autofill,
input[data-v-12dea544]:-webkit-autofill:hover,
input[data-v-12dea544]:-webkit-autofill:focus,
input[data-v-12dea544]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-12dea544 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-12dea544 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-12dea544] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-12dea544] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-12dea544]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-12dea544]:focus:not(:active)::after {
  -webkit-animation: ripple-12dea544 1s ease-out;
          animation: ripple-12dea544 1s ease-out;
}
.btnFlat[data-v-12dea544]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-12dea544]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-12dea544] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-12dea544] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-12dea544]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-12dea544]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-12dea544]:focus:not(:active)::after {
  -webkit-animation: ripple-12dea544 1s ease-out;
          animation: ripple-12dea544 1s ease-out;
}
.btnRaised[data-v-12dea544]:hover {
  background: #406EB3;
}
.btnRaised[data-v-12dea544]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-12dea544] {
  pointer-events: none;
}
.gradientText[data-v-12dea544] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-12dea544] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-12dea544] {
  min-height: 22em;
}
.headerText[data-v-12dea544] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-12dea544] {
  -webkit-animation: rotator-12dea544 1.4s linear infinite;
          animation: rotator-12dea544 1.4s linear infinite;
}
@-webkit-keyframes rotator-12dea544 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-12dea544 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-12dea544] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-12dea544 1.4s ease-in-out infinite,colors-12dea544 5.6s ease-in-out infinite;
          animation: dash-12dea544 1.4s ease-in-out infinite,colors-12dea544 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-12dea544] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-12dea544 1.4s ease-in-out infinite,colorsSapphire-12dea544 5.6s ease-in-out infinite;
          animation: dash-12dea544 1.4s ease-in-out infinite,colorsSapphire-12dea544 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-12dea544] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-12dea544] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-12dea544] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-12dea544] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-12dea544 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-12dea544 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-12dea544 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-12dea544 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-12dea544 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-12dea544 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-12dea544] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-12dea544] {
  padding-top: 24px;
}
.card[data-v-12dea544] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-12dea544] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-12dea544] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-12dea544] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-12dea544] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-12dea544] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-12dea544] {
    margin-top: 12px;
}
.cardErrorCode[data-v-12dea544] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-12dea544] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.searchContainer[data-v-12dea544] {
  text-align: center;
}
.searchBar[data-v-12dea544] {
  margin-top: 32px;
}
.resultsCount[data-v-12dea544] {
  line-height: 24px;
}
.headerText[data-v-12dea544] {
  margin: 28px 20px 28px 20px;
}
.resultsContainer[data-v-12dea544] {
  width: 100%;
}
.resultBorder[data-v-12dea544] {
  border-top: 1px solid #eee;
}
.resultBorderLast[data-v-12dea544] {
  border-bottom: 1px solid #eee;
}
.resultsList[data-v-12dea544] {
  margin: 0;
  padding: 0;
  list-style: none;
}
.businessNotShown[data-v-12dea544] {
  margin: 24px;
}
.directorTaken[data-v-12dea544] {
  width: 100%;
  text-align: left;
}
#directorTakenHeader[data-v-12dea544] {
  margin-bottom: 0;
}
.directorshipTakenText[data-v-12dea544] {
  margin: 0;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-4ca17bb4] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-4ca17bb4]:-webkit-autofill,
input[data-v-4ca17bb4]:-webkit-autofill:hover,
input[data-v-4ca17bb4]:-webkit-autofill:focus,
input[data-v-4ca17bb4]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-4ca17bb4 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-4ca17bb4 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-4ca17bb4] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-4ca17bb4] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-4ca17bb4]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-4ca17bb4]:focus:not(:active)::after {
  -webkit-animation: ripple-4ca17bb4 1s ease-out;
          animation: ripple-4ca17bb4 1s ease-out;
}
.btnFlat[data-v-4ca17bb4]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-4ca17bb4]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-4ca17bb4] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-4ca17bb4] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-4ca17bb4]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-4ca17bb4]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-4ca17bb4]:focus:not(:active)::after {
  -webkit-animation: ripple-4ca17bb4 1s ease-out;
          animation: ripple-4ca17bb4 1s ease-out;
}
.btnRaised[data-v-4ca17bb4]:hover {
  background: #406EB3;
}
.btnRaised[data-v-4ca17bb4]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-4ca17bb4] {
  pointer-events: none;
}
.gradientText[data-v-4ca17bb4] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-4ca17bb4] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-4ca17bb4] {
  min-height: 22em;
}
.headerText[data-v-4ca17bb4] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-4ca17bb4] {
  -webkit-animation: rotator-4ca17bb4 1.4s linear infinite;
          animation: rotator-4ca17bb4 1.4s linear infinite;
}
@-webkit-keyframes rotator-4ca17bb4 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-4ca17bb4 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-4ca17bb4] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-4ca17bb4 1.4s ease-in-out infinite,colors-4ca17bb4 5.6s ease-in-out infinite;
          animation: dash-4ca17bb4 1.4s ease-in-out infinite,colors-4ca17bb4 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-4ca17bb4] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-4ca17bb4 1.4s ease-in-out infinite,colorsSapphire-4ca17bb4 5.6s ease-in-out infinite;
          animation: dash-4ca17bb4 1.4s ease-in-out infinite,colorsSapphire-4ca17bb4 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-4ca17bb4] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-4ca17bb4] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-4ca17bb4] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-4ca17bb4] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-4ca17bb4 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-4ca17bb4 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-4ca17bb4 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-4ca17bb4 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-4ca17bb4 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-4ca17bb4 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-4ca17bb4] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-4ca17bb4] {
  padding-top: 24px;
}
.card[data-v-4ca17bb4] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-4ca17bb4] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-4ca17bb4] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-4ca17bb4] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-4ca17bb4] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-4ca17bb4] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-4ca17bb4] {
    margin-top: 12px;
}
.cardErrorCode[data-v-4ca17bb4] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-4ca17bb4] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
button[data-v-4ca17bb4] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  width: 100%;
}
.results[data-v-4ca17bb4] {
  text-align: left;
  padding: 8px 18px;
}
.results[data-v-4ca17bb4]:hover:enabled {
  background: #f4f4f4;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.resultDetails[data-v-4ca17bb4] {
  display: inline-block;
}
#businessName[data-v-4ca17bb4] {
  color: #982881;
  font-weight: bold;
}
#address[data-v-4ca17bb4] {
  color: #3D87af;
}
.propertyLine[data-v-4ca17bb4] {
  margin: 4px 0;
}
.actionImage[data-v-4ca17bb4] {
  width: 22px;
  height: 22px;
  margin-top: 100%;
}
@media only screen and (max-width: 1024px) {
.resultDetails[data-v-4ca17bb4] {
    max-width: 80%;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-0cbeced4] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-0cbeced4]:-webkit-autofill,
input[data-v-0cbeced4]:-webkit-autofill:hover,
input[data-v-0cbeced4]:-webkit-autofill:focus,
input[data-v-0cbeced4]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-0cbeced4 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-0cbeced4 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-0cbeced4] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-0cbeced4] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-0cbeced4]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-0cbeced4]:focus:not(:active)::after {
  -webkit-animation: ripple-0cbeced4 1s ease-out;
          animation: ripple-0cbeced4 1s ease-out;
}
.btnFlat[data-v-0cbeced4]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-0cbeced4]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-0cbeced4] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-0cbeced4] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-0cbeced4]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-0cbeced4]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-0cbeced4]:focus:not(:active)::after {
  -webkit-animation: ripple-0cbeced4 1s ease-out;
          animation: ripple-0cbeced4 1s ease-out;
}
.btnRaised[data-v-0cbeced4]:hover {
  background: #406EB3;
}
.btnRaised[data-v-0cbeced4]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-0cbeced4] {
  pointer-events: none;
}
.gradientText[data-v-0cbeced4] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-0cbeced4] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-0cbeced4] {
  min-height: 22em;
}
.headerText[data-v-0cbeced4] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-0cbeced4] {
  -webkit-animation: rotator-0cbeced4 1.4s linear infinite;
          animation: rotator-0cbeced4 1.4s linear infinite;
}
@-webkit-keyframes rotator-0cbeced4 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-0cbeced4 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-0cbeced4] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-0cbeced4 1.4s ease-in-out infinite,colors-0cbeced4 5.6s ease-in-out infinite;
          animation: dash-0cbeced4 1.4s ease-in-out infinite,colors-0cbeced4 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-0cbeced4] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-0cbeced4 1.4s ease-in-out infinite,colorsSapphire-0cbeced4 5.6s ease-in-out infinite;
          animation: dash-0cbeced4 1.4s ease-in-out infinite,colorsSapphire-0cbeced4 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-0cbeced4] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-0cbeced4] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-0cbeced4] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-0cbeced4] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-0cbeced4 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-0cbeced4 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-0cbeced4 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-0cbeced4 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-0cbeced4 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-0cbeced4 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-0cbeced4] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-0cbeced4] {
  padding-top: 24px;
}
.card[data-v-0cbeced4] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-0cbeced4] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-0cbeced4] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-0cbeced4] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-0cbeced4] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-0cbeced4] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-0cbeced4] {
    margin-top: 12px;
}
.cardErrorCode[data-v-0cbeced4] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-0cbeced4] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.searchContainer[data-v-0cbeced4] {
  text-align: center;
}
.searchBar[data-v-0cbeced4] {
  margin-top: 32px;
}
.resultsContainer[data-v-0cbeced4] {
  width: 100%;
}
#selectName[data-v-0cbeced4] {
  font-size: 24px;
  margin: 20px 0 0 0;
}
#directorCount[data-v-0cbeced4] {
  font-size: 24px;
  margin: 6px 0 16px 0;
}
.headerSpacing[data-v-0cbeced4] {
  margin: 20px;
}
.resultBorder[data-v-0cbeced4] {
  border-top: 1px solid #eee;
}
.resultBorderLast[data-v-0cbeced4] {
  border-bottom: 1px solid #eee;
}
.resultsList[data-v-0cbeced4] {
  margin: 0;
  padding: 0;
  list-style: none;
}
.businessNotShown[data-v-0cbeced4] {
  margin: 24px;
}
.directorTaken[data-v-0cbeced4] {
  width: 100%;
  text-align: left;
}
#directorTakenHeader[data-v-0cbeced4] {
  margin-bottom: 0;
}
.directorshipTakenText[data-v-0cbeced4] {
  margin: 0;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-3950f21c] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-3950f21c]:-webkit-autofill,
input[data-v-3950f21c]:-webkit-autofill:hover,
input[data-v-3950f21c]:-webkit-autofill:focus,
input[data-v-3950f21c]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-3950f21c {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-3950f21c {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-3950f21c] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-3950f21c] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-3950f21c]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-3950f21c]:focus:not(:active)::after {
  -webkit-animation: ripple-3950f21c 1s ease-out;
          animation: ripple-3950f21c 1s ease-out;
}
.btnFlat[data-v-3950f21c]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-3950f21c]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-3950f21c] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-3950f21c] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-3950f21c]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-3950f21c]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-3950f21c]:focus:not(:active)::after {
  -webkit-animation: ripple-3950f21c 1s ease-out;
          animation: ripple-3950f21c 1s ease-out;
}
.btnRaised[data-v-3950f21c]:hover {
  background: #406EB3;
}
.btnRaised[data-v-3950f21c]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-3950f21c] {
  pointer-events: none;
}
.gradientText[data-v-3950f21c] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-3950f21c] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-3950f21c] {
  min-height: 22em;
}
.headerText[data-v-3950f21c] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-3950f21c] {
  -webkit-animation: rotator-3950f21c 1.4s linear infinite;
          animation: rotator-3950f21c 1.4s linear infinite;
}
@-webkit-keyframes rotator-3950f21c {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-3950f21c {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-3950f21c] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-3950f21c 1.4s ease-in-out infinite,colors-3950f21c 5.6s ease-in-out infinite;
          animation: dash-3950f21c 1.4s ease-in-out infinite,colors-3950f21c 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-3950f21c] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-3950f21c 1.4s ease-in-out infinite,colorsSapphire-3950f21c 5.6s ease-in-out infinite;
          animation: dash-3950f21c 1.4s ease-in-out infinite,colorsSapphire-3950f21c 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-3950f21c] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-3950f21c] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-3950f21c] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-3950f21c] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-3950f21c {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-3950f21c {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-3950f21c {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-3950f21c {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-3950f21c {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-3950f21c {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-3950f21c] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-3950f21c] {
  padding-top: 24px;
}
.card[data-v-3950f21c] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-3950f21c] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-3950f21c] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-3950f21c] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-3950f21c] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-3950f21c] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-3950f21c] {
    margin-top: 12px;
}
.cardErrorCode[data-v-3950f21c] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-3950f21c] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
button[data-v-3950f21c] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  width: 100%;
}
.results[data-v-3950f21c] {
  text-align: left;
  padding: 8px 18px;
}
.results[data-v-3950f21c]:hover:enabled {
  background: #f4f4f4;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.resultDetails[data-v-3950f21c] {
  display: inline-block;
}
#directorName[data-v-3950f21c] {
  color: #982881;
  font-weight: bold;
}
#businessName[data-v-3950f21c] {
  color: #3D87af;
}
.propertyLine[data-v-3950f21c] {
  margin: 4px 0;
}
.actionImage[data-v-3950f21c] {
  width: 22px;
  height: 22px;
  margin-top: 64%;
}
@media only screen and (max-width: 1024px) {
.resultDetails[data-v-3950f21c] {
    max-width: 80%;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-adace084] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-adace084]:-webkit-autofill,
input[data-v-adace084]:-webkit-autofill:hover,
input[data-v-adace084]:-webkit-autofill:focus,
input[data-v-adace084]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-adace084 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-adace084 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-adace084] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-adace084] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-adace084]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-adace084]:focus:not(:active)::after {
  -webkit-animation: ripple-adace084 1s ease-out;
          animation: ripple-adace084 1s ease-out;
}
.btnFlat[data-v-adace084]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-adace084]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-adace084] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-adace084] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-adace084]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-adace084]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-adace084]:focus:not(:active)::after {
  -webkit-animation: ripple-adace084 1s ease-out;
          animation: ripple-adace084 1s ease-out;
}
.btnRaised[data-v-adace084]:hover {
  background: #406EB3;
}
.btnRaised[data-v-adace084]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-adace084] {
  pointer-events: none;
}
.gradientText[data-v-adace084] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-adace084] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-adace084] {
  min-height: 22em;
}
.headerText[data-v-adace084] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-adace084] {
  -webkit-animation: rotator-adace084 1.4s linear infinite;
          animation: rotator-adace084 1.4s linear infinite;
}
@-webkit-keyframes rotator-adace084 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-adace084 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-adace084] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-adace084 1.4s ease-in-out infinite,colors-adace084 5.6s ease-in-out infinite;
          animation: dash-adace084 1.4s ease-in-out infinite,colors-adace084 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-adace084] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-adace084 1.4s ease-in-out infinite,colorsSapphire-adace084 5.6s ease-in-out infinite;
          animation: dash-adace084 1.4s ease-in-out infinite,colorsSapphire-adace084 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-adace084] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-adace084] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-adace084] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-adace084] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-adace084 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-adace084 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-adace084 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-adace084 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-adace084 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-adace084 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-adace084] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-adace084] {
  padding-top: 24px;
}
.card[data-v-adace084] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-adace084] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-adace084] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-adace084] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-adace084] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-adace084] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-adace084] {
    margin-top: 12px;
}
.cardErrorCode[data-v-adace084] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-adace084] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.bodyText[data-v-adace084] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.registrationPage[data-v-adace084] {
  padding-top: 24px;
}
.registrationHeader[data-v-adace084] {
  text-align: center;
  margin: 0 auto 8px auto;
  padding: 4px 32px 12px 32px;
  font-size: 22px;
  line-height: 28px;
}
.registrationContainer[data-v-adace084] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.navigationButton[data-v-adace084] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.registrationContainer[data-v-adace084] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.bodyText[data-v-adace084] {
    font-size: 13px;
    line-height: 22px;
}
.registrationContainer[data-v-adace084] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.navigationButton[data-v-adace084] {
    margin-top: 12px;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-5b7cf9c2] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-5b7cf9c2]:-webkit-autofill,
input[data-v-5b7cf9c2]:-webkit-autofill:hover,
input[data-v-5b7cf9c2]:-webkit-autofill:focus,
input[data-v-5b7cf9c2]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-5b7cf9c2 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-5b7cf9c2 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-5b7cf9c2] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-5b7cf9c2] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-5b7cf9c2]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-5b7cf9c2]:focus:not(:active)::after {
  -webkit-animation: ripple-5b7cf9c2 1s ease-out;
          animation: ripple-5b7cf9c2 1s ease-out;
}
.btnFlat[data-v-5b7cf9c2]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-5b7cf9c2]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-5b7cf9c2] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-5b7cf9c2] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-5b7cf9c2]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-5b7cf9c2]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-5b7cf9c2]:focus:not(:active)::after {
  -webkit-animation: ripple-5b7cf9c2 1s ease-out;
          animation: ripple-5b7cf9c2 1s ease-out;
}
.btnRaised[data-v-5b7cf9c2]:hover {
  background: #406EB3;
}
.btnRaised[data-v-5b7cf9c2]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-5b7cf9c2] {
  pointer-events: none;
}
.gradientText[data-v-5b7cf9c2] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-5b7cf9c2] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-5b7cf9c2] {
  min-height: 22em;
}
.headerText[data-v-5b7cf9c2] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-5b7cf9c2] {
  -webkit-animation: rotator-5b7cf9c2 1.4s linear infinite;
          animation: rotator-5b7cf9c2 1.4s linear infinite;
}
@-webkit-keyframes rotator-5b7cf9c2 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-5b7cf9c2 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-5b7cf9c2] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-5b7cf9c2 1.4s ease-in-out infinite,colors-5b7cf9c2 5.6s ease-in-out infinite;
          animation: dash-5b7cf9c2 1.4s ease-in-out infinite,colors-5b7cf9c2 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-5b7cf9c2] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-5b7cf9c2 1.4s ease-in-out infinite,colorsSapphire-5b7cf9c2 5.6s ease-in-out infinite;
          animation: dash-5b7cf9c2 1.4s ease-in-out infinite,colorsSapphire-5b7cf9c2 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-5b7cf9c2] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-5b7cf9c2] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-5b7cf9c2] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-5b7cf9c2] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-5b7cf9c2 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-5b7cf9c2 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-5b7cf9c2 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-5b7cf9c2 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-5b7cf9c2 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-5b7cf9c2 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-5b7cf9c2] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-5b7cf9c2] {
  padding-top: 24px;
}
.card[data-v-5b7cf9c2] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-5b7cf9c2] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-5b7cf9c2] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-5b7cf9c2] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-5b7cf9c2] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-5b7cf9c2] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-5b7cf9c2] {
    margin-top: 12px;
}
.cardErrorCode[data-v-5b7cf9c2] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-5b7cf9c2] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.infoBox[data-v-5b7cf9c2] {
  margin-bottom: 42px;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-6e9c5401] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-6e9c5401]:-webkit-autofill,
input[data-v-6e9c5401]:-webkit-autofill:hover,
input[data-v-6e9c5401]:-webkit-autofill:focus,
input[data-v-6e9c5401]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-6e9c5401 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-6e9c5401 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-6e9c5401] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-6e9c5401] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-6e9c5401]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-6e9c5401]:focus:not(:active)::after {
  -webkit-animation: ripple-6e9c5401 1s ease-out;
          animation: ripple-6e9c5401 1s ease-out;
}
.btnFlat[data-v-6e9c5401]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-6e9c5401]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-6e9c5401] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-6e9c5401] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-6e9c5401]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-6e9c5401]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-6e9c5401]:focus:not(:active)::after {
  -webkit-animation: ripple-6e9c5401 1s ease-out;
          animation: ripple-6e9c5401 1s ease-out;
}
.btnRaised[data-v-6e9c5401]:hover {
  background: #406EB3;
}
.btnRaised[data-v-6e9c5401]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-6e9c5401] {
  pointer-events: none;
}
.gradientText[data-v-6e9c5401] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-6e9c5401] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-6e9c5401] {
  min-height: 22em;
}
.headerText[data-v-6e9c5401] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-6e9c5401] {
  -webkit-animation: rotator-6e9c5401 1.4s linear infinite;
          animation: rotator-6e9c5401 1.4s linear infinite;
}
@-webkit-keyframes rotator-6e9c5401 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-6e9c5401 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-6e9c5401] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-6e9c5401 1.4s ease-in-out infinite,colors-6e9c5401 5.6s ease-in-out infinite;
          animation: dash-6e9c5401 1.4s ease-in-out infinite,colors-6e9c5401 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-6e9c5401] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-6e9c5401 1.4s ease-in-out infinite,colorsSapphire-6e9c5401 5.6s ease-in-out infinite;
          animation: dash-6e9c5401 1.4s ease-in-out infinite,colorsSapphire-6e9c5401 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-6e9c5401] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-6e9c5401] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-6e9c5401] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-6e9c5401] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-6e9c5401 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-6e9c5401 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-6e9c5401 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-6e9c5401 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-6e9c5401 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-6e9c5401 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-6e9c5401] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-6e9c5401] {
  padding-top: 24px;
}
.card[data-v-6e9c5401] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-6e9c5401] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-6e9c5401] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-6e9c5401] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-6e9c5401] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-6e9c5401] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-6e9c5401] {
    margin-top: 12px;
}
.cardErrorCode[data-v-6e9c5401] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-6e9c5401] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
.addressLink[data-v-6e9c5401] {
  color: #3D87af;
}
.sapphireText[data-v-6e9c5401] {
  color: #3D87af;
}
.alertIcon[data-v-6e9c5401] {
  text-align: center;
}
.alertIcon img[data-v-6e9c5401] {
  padding: 10px;
  width: 100px;
}
.detailSection[data-v-6e9c5401] {
  float: left;
  margin: 8px 72px 16px 0;
}
.detailHeading[data-v-6e9c5401] {
  font-weight: bold;
  color: #575755;
  font-size: 14px;
  margin: 14px 0;
}
.reasonList[data-v-6e9c5401] {
  padding-left: 20px;
}
.reasonList li[data-v-6e9c5401]:not(:last-child) {
  margin-bottom: 12px;
}
.registrationContainer[data-v-6e9c5401] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
@media only screen and (max-width: 1024px) {
.registrationContainer[data-v-6e9c5401] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.registrationContainer[data-v-6e9c5401] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-56b687e3] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-56b687e3]:-webkit-autofill,
input[data-v-56b687e3]:-webkit-autofill:hover,
input[data-v-56b687e3]:-webkit-autofill:focus,
input[data-v-56b687e3]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-56b687e3 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-56b687e3 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-56b687e3] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-56b687e3] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-56b687e3]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-56b687e3]:focus:not(:active)::after {
  -webkit-animation: ripple-56b687e3 1s ease-out;
          animation: ripple-56b687e3 1s ease-out;
}
.btnFlat[data-v-56b687e3]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-56b687e3]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-56b687e3] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-56b687e3] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-56b687e3]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-56b687e3]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-56b687e3]:focus:not(:active)::after {
  -webkit-animation: ripple-56b687e3 1s ease-out;
          animation: ripple-56b687e3 1s ease-out;
}
.btnRaised[data-v-56b687e3]:hover {
  background: #406EB3;
}
.btnRaised[data-v-56b687e3]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-56b687e3] {
  pointer-events: none;
}
.gradientText[data-v-56b687e3] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-56b687e3] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-56b687e3] {
  min-height: 22em;
}
.headerText[data-v-56b687e3] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-56b687e3] {
  -webkit-animation: rotator-56b687e3 1.4s linear infinite;
          animation: rotator-56b687e3 1.4s linear infinite;
}
@-webkit-keyframes rotator-56b687e3 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-56b687e3 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-56b687e3] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-56b687e3 1.4s ease-in-out infinite,colors-56b687e3 5.6s ease-in-out infinite;
          animation: dash-56b687e3 1.4s ease-in-out infinite,colors-56b687e3 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-56b687e3] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-56b687e3 1.4s ease-in-out infinite,colorsSapphire-56b687e3 5.6s ease-in-out infinite;
          animation: dash-56b687e3 1.4s ease-in-out infinite,colorsSapphire-56b687e3 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-56b687e3] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-56b687e3] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-56b687e3] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-56b687e3] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-56b687e3 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-56b687e3 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-56b687e3 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-56b687e3 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-56b687e3 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-56b687e3 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-56b687e3] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-56b687e3] {
  padding-top: 24px;
}
.card[data-v-56b687e3] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-56b687e3] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-56b687e3] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-56b687e3] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-56b687e3] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-56b687e3] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-56b687e3] {
    margin-top: 12px;
}
.cardErrorCode[data-v-56b687e3] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-56b687e3] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@font-face {
  font-family: 'experianiconfont';
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot);
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot#iefix) format('embedded-opentype'), url(/home/dist/assets/fonts/experianiconfont.07e0e02.woff2) format('woff2'), url(/home/dist/assets/fonts/experianiconfont.f271139.woff) format('woff'), url(/home/dist/assets/fonts/experianiconfont.8bf4dde.ttf) format('truetype'), url(/home/dist/assets/images/experianiconfont.svg?812fa74c0876dca189c4a300f552260d#experianiconfont) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'experianiconfont';
    src: url('../font/experianiconfont.svg?34616403#experianiconfont') format('svg');
  }
}
*/
[class^="exp-icon-"][data-v-56b687e3]:before,
[class*=" exp-icon-"][data-v-56b687e3]:before {
  font-family: "experianiconfont";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.exp-icon-calendar-today[data-v-56b687e3]:before {
  content: '\E800';
}
/* '' */
.exp-icon-help-circle[data-v-56b687e3]:before {
  content: '\E801';
}
/* '' */
.exp-icon-cash-multiple[data-v-56b687e3]:before {
  content: '\E802';
}
/* '' */
.exp-icon-check-circle[data-v-56b687e3]:before {
  content: '\E803';
}
/* '' */
.exp-icon-share[data-v-56b687e3]:before {
  content: '\E804';
}
/* '' */
.exp-icon-folder-plus[data-v-56b687e3]:before {
  content: '\E805';
}
/* '' */
.exp-icon-debug-step-out[data-v-56b687e3]:before {
  content: '\E806';
}
/* '' */
.exp-icon-alert-box[data-v-56b687e3]:before {
  content: '\E807';
}
/* '' */
.exp-icon-note-text[data-v-56b687e3]:before {
  content: '\E808';
}
/* '' */
.exp-icon-arrow-left[data-v-56b687e3]:before {
  content: '\E809';
}
/* '' */
.exp-icon-link-variant[data-v-56b687e3]:before {
  content: '\E80A';
}
/* '' */
.exp-icon-folder-account[data-v-56b687e3]:before {
  content: '\E80B';
}
/* '' */
.exp-icon-close-box[data-v-56b687e3]:before {
  content: '\E80C';
}
/* '' */
.exp-icon-skip-next[data-v-56b687e3]:before {
  content: '\E80D';
}
/* '' */
.exp-icon-format-list-bulleted[data-v-56b687e3]:before {
  content: '\E80E';
}
/* '' */
.exp-icon-phone-outgoing[data-v-56b687e3]:before {
  content: '\E80F';
}
/* '' */
.exp-icon-phone-incoming[data-v-56b687e3]:before {
  content: '\E810';
}
/* '' */
.exp-icon-magnify[data-v-56b687e3]:before {
  content: '\E811';
}
/* '' */
.exp-icon-bell[data-v-56b687e3]:before {
  content: '\E812';
}
/* '' */
.exp-icon-customer-contact-details[data-v-56b687e3]:before {
  content: '\E813';
}
/* '' */
.exp-icon-table-large[data-v-56b687e3]:before {
  content: '\E814';
}
/* '' */
.exp-icon-key[data-v-56b687e3]:before {
  content: '\E815';
}
/* '' */
.exp-icon-currency-usd-off[data-v-56b687e3]:before {
  content: '\E816';
}
/* '' */
.exp-icon-credit-card[data-v-56b687e3]:before {
  content: '\E817';
}
/* '' */
.exp-icon-pause-octagon[data-v-56b687e3]:before {
  content: '\E818';
}
/* '' */
.exp-icon-calendar-clock[data-v-56b687e3]:before {
  content: '\E819';
}
/* '' */
.exp-icon-stop-circle[data-v-56b687e3]:before {
  content: '\E81A';
}
/* '' */
.exp-icon-credit-card-plus[data-v-56b687e3]:before {
  content: '\E81B';
}
/* '' */
.exp-icon-check[data-v-56b687e3]:before {
  content: '\E81C';
}
/* '' */
.exp-icon-transfer[data-v-56b687e3]:before {
  content: '\E81D';
}
/* '' */
.exp-icon-eye[data-v-56b687e3]:before {
  content: '\E81E';
}
/* '' */
.exp-icon-chevron-double-left[data-v-56b687e3]:before {
  content: '\E81F';
}
/* '' */
.exp-icon-chevron-double-right[data-v-56b687e3]:before {
  content: '\E820';
}
/* '' */
.exp-icon-chevron-down[data-v-56b687e3]:before {
  content: '\E821';
}
/* '' */
.exp-icon-chevron-up[data-v-56b687e3]:before {
  content: '\E822';
}
/* '' */
.exp-icon-chevron-right[data-v-56b687e3]:before {
  content: '\E823';
}
/* '' */
.exp-icon-chevron-left[data-v-56b687e3]:before {
  content: '\E824';
}
/* '' */
.exp-icon-filter[data-v-56b687e3]:before {
  content: '\E825';
}
/* '' */
.exp-icon-pencil-box-outline[data-v-56b687e3]:before {
  content: '\E826';
}
/* '' */
.exp-icon-plus[data-v-56b687e3]:before {
  content: '\E827';
}
/* '' */
.exp-icon-phone-hangup[data-v-56b687e3]:before {
  content: '\E828';
}
/* '' */
.exp-icon-arrow-down[data-v-56b687e3]:before {
  content: '\E829';
}
/* '' */
.exp-icon-close[data-v-56b687e3]:before {
  content: '\E82A';
}
/* '' */
.exp-icon-account[data-v-56b687e3]:before {
  content: '\E82B';
}
/* '' */
.exp-icon-phone-redial[data-v-56b687e3]:before {
  content: '\E82C';
}
/* '' */
.exp-icon-eye-off[data-v-56b687e3]:before {
  content: '\E82D';
}
/* '' */
.exp-icon-email-variant[data-v-56b687e3]:before {
  content: '\E82E';
}
/* '' */
.exp-icon-credit-card-minus[data-v-56b687e3]:before {
  content: '\E82F';
}
/* '' */
.exp-icon-credit-card-plus-1[data-v-56b687e3]:before {
  content: '\E830';
}
/* '' */
.exp-icon-account-link[data-v-56b687e3]:before {
  content: '\E831';
}
/* '' */
.exp-icon-folder-contact[data-v-56b687e3]:before {
  content: '\E832';
}
/* '' */
.exp-icon-pencil[data-v-56b687e3]:before {
  content: '\E833';
}
/* '' */
.exp-icon-book-open[data-v-56b687e3]:before {
  content: '\E834';
}
/* '' */
.exp-icon-account-alert[data-v-56b687e3]:before {
  content: '\E835';
}
/* '' */
.exp-icon-page-first[data-v-56b687e3]:before {
  content: '\E836';
}
/* '' */
.exp-icon-page-last[data-v-56b687e3]:before {
  content: '\E837';
}
/* '' */
.exp-icon-personal-information[data-v-56b687e3]:before {
  content: '\E838';
}
/* '' */
.exp-icon-fasttrack-to-legal[data-v-56b687e3]:before {
  content: '\E839';
}
/* '' */
.exp-icon-cursor-move[data-v-56b687e3]:before {
  content: '\E83A';
}
/* '' */
.exp-icon-letter[data-v-56b687e3]:before {
  content: '\E83B';
}
/* '' */
.exp-icon-truck-delivery[data-v-56b687e3]:before {
  content: '\E83C';
}
/* '' */
.exp-icon-team[data-v-56b687e3]:before {
  content: '\E83D';
}
/* '' */
.exp-icon-team-noleader[data-v-56b687e3]:before {
  content: '\E83E';
}
/* '' */
.exp-icon-web[data-v-56b687e3]:before {
  content: '\E83F';
}
/* '' */
.exp-icon-window-maximize[data-v-56b687e3]:before {
  content: '\E840';
}
/* '' */
.exp-icon-phone-in-talk[data-v-56b687e3]:before {
  content: '\E841';
}
/* '' */
.exp-icon-download[data-v-56b687e3]:before {
  content: '\E842';
}
/* '' */
.exp-icon-settings[data-v-56b687e3]:before {
  content: '\E843';
}
/* '' */
.exp-icon-settings-box[data-v-56b687e3]:before {
  content: '\E844';
}
/* '' */
.exp-icon-authorise-transfer[data-v-56b687e3]:before {
  content: '\E845';
}
/* '' */
.exp-icon-arrangement-reducing-payment[data-v-56b687e3]:before {
  content: '\E846';
}
/* '' */
.exp-icon-arrangement-installment[data-v-56b687e3]:before {
  content: '\E847';
}
/* '' */
.exp-icon-print-history[data-v-56b687e3]:before {
  content: '\E848';
}
/* '' */
.exp-icon-suspend-product2[data-v-56b687e3]:before {
  content: '\E849';
}
/* '' */
.exp-icon-account-close[data-v-56b687e3]:before {
  content: '\E84A';
}
/* '' */
.exp-icon-file-import[data-v-56b687e3]:before {
  content: '\E84B';
}
/* '' */
.exp-icon-file-export[data-v-56b687e3]:before {
  content: '\E84C';
}
/* '' */
.exp-icon-file-view[data-v-56b687e3]:before {
  content: '\E84D';
}
/* '' */
.exp-icon-printer[data-v-56b687e3]:before {
  content: '\E84E';
}
/* '' */
.exp-icon-reschedule-arrangement[data-v-56b687e3]:before {
  content: '\E84F';
}
/* '' */
.exp-icon-dca-allocate[data-v-56b687e3]:before {
  content: '\E850';
}
/* '' */
.exp-icon-dca-preset[data-v-56b687e3]:before {
  content: '\E851';
}
/* '' */
.exp-icon-play-circle[data-v-56b687e3]:before {
  content: '\E852';
}
/* '' */
.exp-icon-edit-history[data-v-56b687e3]:before {
  content: '\E853';
}
/* '' */
.exp-icon-logout[data-v-56b687e3]:before {
  content: '\E854';
}
/* '' */
.exp-icon-dca-complete[data-v-56b687e3]:before {
  content: '\E855';
}
/* '' */
.exp-icon-dca-withdraw[data-v-56b687e3]:before {
  content: '\E856';
}
/* '' */
.exp-icon-deactivate-product[data-v-56b687e3]:before {
  content: '\E857';
}
/* '' */
.exp-icon-btn-remove[data-v-56b687e3]:before {
  content: '\E858';
}
/* '' */
.exp-icon-authorise-writeoff[data-v-56b687e3]:before {
  content: '\E859';
}
/* '' */
.exp-icon-reactivate-product[data-v-56b687e3]:before {
  content: '\E85A';
}
/* '' */
.exp-icon-dca-reinstatement[data-v-56b687e3]:before {
  content: '\E85B';
}
/* '' */
.exp-icon-bar-product[data-v-56b687e3]:before {
  content: '\E85C';
}
/* '' */
.exp-icon-reinstate-product[data-v-56b687e3]:before {
  content: '\E85D';
}
/* '' */
.exp-icon-content-save[data-v-56b687e3]:before {
  content: '\E85E';
}
/* '' */
.exp-icon-content-paste[data-v-56b687e3]:before {
  content: '\E85F';
}
/* '' */
.exp-icon-tower-import[data-v-56b687e3]:before {
  content: '\E860';
}
/* '' */
.exp-icon-alert-circle-outline[data-v-56b687e3]:before {
  content: '\E861';
}
/* '' */
.exp-icon-chart-arc[data-v-56b687e3]:before {
  content: '\E862';
}
/* '' */
.exp-icon-chart-bar[data-v-56b687e3]:before {
  content: '\E863';
}
/* '' */
.exp-icon-chart-line[data-v-56b687e3]:before {
  content: '\E864';
}
/* '' */
.exp-icon-database[data-v-56b687e3]:before {
  content: '\E865';
}
/* '' */
.exp-icon-database-plus[data-v-56b687e3]:before {
  content: '\E866';
}
/* '' */
.exp-icon-dots-horizontal[data-v-56b687e3]:before {
  content: '\E867';
}
/* '' */
.exp-icon-dots-vertical[data-v-56b687e3]:before {
  content: '\E868';
}
/* '' */
.exp-icon-home[data-v-56b687e3]:before {
  content: '\E869';
}
/* '' */
.exp-icon-menu[data-v-56b687e3]:before {
  content: '\E86A';
}
/* '' */
.exp-icon-exclamation[data-v-56b687e3]:before {
  content: '\E86B';
}
/* '' */
.exp-icon-flag-outline-variant[data-v-56b687e3]:before {
  content: '\E86C';
}
/* '' */
.exp-icon-refresh[data-v-56b687e3]:before {
  content: '\E86D';
}
/* '' */
.exp-icon-timer-sand[data-v-56b687e3]:before {
  content: '\E86E';
}
/* '' */
.exp-icon-star-outline[data-v-56b687e3]:before {
  content: '\E86F';
}
/* '' */
.headerSection[data-v-56b687e3] {
  text-align: center;
}
.lightBlue[data-v-56b687e3] {
  color: #406EB3;
}
.iconInfoContainer[data-v-56b687e3] {
  margin: 0 auto;
  max-width: 1020px;
  text-align: center;
}
.nonLimButton[data-v-56b687e3] {
  color: #406EB3;
  font-size: 18px;
  margin: 20px 0 10px 0;
}
.nonLimButton.haveAccount[data-v-56b687e3] {
  font-size: 14px;
}
.sectionDivider[data-v-56b687e3] {
  width: 60%;
  margin: 40px auto;
  border-bottom: solid 1px #eee;
}
.middleInfoItem[data-v-56b687e3] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
}
.signUpSection[data-v-56b687e3] {
  margin-bottom: 56px;
}
/* phone portrait */
@media only screen and (max-width: 568px) {
button[data-v-56b687e3] {
    font-size: 160px !important;
}
.sectionDivider[data-v-56b687e3] {
    margin-top: 20px;
}
.middleInfoItem[data-v-56b687e3] {
    border: none;
}
.heading[data-v-56b687e3] {
    white-space: normal;
}
}
/*medium phone portrait*/
@media only screen and (min-width: 321px) and (max-width: 567px) {
.headerSection[data-v-56b687e3] {
    padding: 0 20px;
}
.middleInfoItem[data-v-56b687e3] {
    border-right: none;
}
}
/*medium phone to tablet landscape */
@media only screen and (min-width: 568px) and (max-width: 1024px) {
.signUpSection[data-v-56b687e3] {
    margin-bottom: 36px;
}
}
/*medium-large phone landscape*/
@media only screen and (min-width: 568px) and (max-width: 736px) {
.middleInfoItem[data-v-56b687e3] {
    border: none;
}
}

#innerContainer[data-v-63fc98d5] {
  margin: 10px;
}
.card[data-v-63fc98d5] {
  padding-bottom: 32px;
}
#infoText[data-v-63fc98d5] {
  width: 100%;
  font-size: 22px;
  line-height: 1.5em;
  margin-top: 20px;
  text-align: center;
}
#supportImage[data-v-63fc98d5] {
  margin: 0 auto;
  text-align: center;
  width: 120px;
  height: 120px;
}

.modal-wrapper .modal-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-height: 95vh;
  width: 38vw;
}
@media screen and (max-width: 1025px) {
.modal-wrapper .modal-container {
    width: 75vw;
}
}
@media screen and (max-width: 560px) {
}
.modal-wrapper .modal-container .modal-body {
  padding: 1.5em 2em 0 2em;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
.container[data-v-4addbe76] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.container[data-v-4addbe76] .header {
  padding-bottom: 1em;
  text-align: center;
}
.container[data-v-4addbe76] .header .image,
.container[data-v-4addbe76] .header img {
  height: 4em;
  margin-bottom: 1em;
}
.container[data-v-4addbe76] span {
  display: block;
  width: 100%;
  line-height: 1.4em;
}
.container[data-v-4addbe76] .text {
  margin-top: 1em;
}
.container[data-v-4addbe76] .text span {
  color: #3D87af;
  padding-bottom: 0;
  padding-top: 0;
}
.container[data-v-4addbe76] .text > div {
  padding-bottom: 0.5em;
}
.container[data-v-4addbe76] .spacer-line {
  border-bottom: 2px solid #eee;
  margin-left: -2em;
  margin-right: -2em;
}
.container .footer[data-v-4addbe76] {
  float: right;
  padding-top: 2em;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
}


.confirmationImageContainer {
    margin-top: 20px;
}
.confirmationTextContainer {
    text-align: center;
}
.confirmationImage {
    width: 100px;
    height: 100px;
    padding: 10px;
    display: block;
    margin: auto;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
.container .text[data-v-23ea6e22] {
  margin-top: 0.5em;
}
.container .text .text-center[data-v-23ea6e22] {
  text-align: center;
}
.container .text p[data-v-23ea6e22] {
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}
.container .text .price[data-v-23ea6e22] {
  text-align: center;
  margin: 0.1em;
  padding-top: 0;
  padding-bottom: 0;
}
.container .text .price p[data-v-23ea6e22] {
  font-size: 5em;
  white-space: pre-wrap;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0.1em;
  margin-bottom: 0.1em;
}
.container .text .price .sub[data-v-23ea6e22] {
  margin-top: -1.1em;
  font-size: 2em;
}
.container .text .text-center[data-v-23ea6e22] {
  text-align: center;
}
.container .text .price-summary[data-v-23ea6e22] {
  padding-top: 0;
  color: #3DAD24;
}
.container .text .smallprint[data-v-23ea6e22] {
  margin-top: 1em;
  text-align: center;
  font-size: 0.5em;
}
.container .text .smallprint span[data-v-23ea6e22] {
  color: #575755;
}
.container .text .smallprint .tc[data-v-23ea6e22] {
  color: #e2a235;
}
.container .text .benefits p[data-v-23ea6e22],
.container .text .benefits span[data-v-23ea6e22] {
  margin-top: 0.5em;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a[data-v-7bc85c81] {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input[data-v-7bc85c81]:-webkit-autofill,
input[data-v-7bc85c81]:-webkit-autofill:hover,
input[data-v-7bc85c81]:-webkit-autofill:focus,
input[data-v-7bc85c81]:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple-7bc85c81 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
@keyframes ripple-7bc85c81 {
0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
}
20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
}
100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
}
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat[data-v-7bc85c81] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat[data-v-7bc85c81] {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat[data-v-7bc85c81]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat[data-v-7bc85c81]:focus:not(:active)::after {
  -webkit-animation: ripple-7bc85c81 1s ease-out;
          animation: ripple-7bc85c81 1s ease-out;
}
.btnFlat[data-v-7bc85c81]:hover {
  background: #f4f4f4;
}
.btnFlat[data-v-7bc85c81]:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised[data-v-7bc85c81] {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised[data-v-7bc85c81] {
  position: relative;
  overflow: hidden;
}
.btnRaised[data-v-7bc85c81]:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised[data-v-7bc85c81]:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised[data-v-7bc85c81]:focus:not(:active)::after {
  -webkit-animation: ripple-7bc85c81 1s ease-out;
          animation: ripple-7bc85c81 1s ease-out;
}
.btnRaised[data-v-7bc85c81]:hover {
  background: #406EB3;
}
.btnRaised[data-v-7bc85c81]:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled[data-v-7bc85c81] {
  pointer-events: none;
}
.gradientText[data-v-7bc85c81] {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp[data-v-7bc85c81] {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page[data-v-7bc85c81] {
  min-height: 22em;
}
.headerText[data-v-7bc85c81] {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner[data-v-7bc85c81] {
  -webkit-animation: rotator-7bc85c81 1.4s linear infinite;
          animation: rotator-7bc85c81 1.4s linear infinite;
}
@-webkit-keyframes rotator-7bc85c81 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
@keyframes rotator-7bc85c81 {
0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
}
}
.path[data-v-7bc85c81] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-7bc85c81 1.4s ease-in-out infinite,colors-7bc85c81 5.6s ease-in-out infinite;
          animation: dash-7bc85c81 1.4s ease-in-out infinite,colors-7bc85c81 5.6s ease-in-out infinite;
}
.pathSapphire[data-v-7bc85c81] {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash-7bc85c81 1.4s ease-in-out infinite,colorsSapphire-7bc85c81 5.6s ease-in-out infinite;
          animation: dash-7bc85c81 1.4s ease-in-out infinite,colorsSapphire-7bc85c81 5.6s ease-in-out infinite;
}
.lightBlueWhiteText[data-v-7bc85c81] {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText[data-v-7bc85c81] {
  background-color: #fff;
  color: #632678;
}
.violetSubText[data-v-7bc85c81] {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem[data-v-7bc85c81] {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors-7bc85c81 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@keyframes colors-7bc85c81 {
0% {
    stroke: #ffffff;
}
25% {
    stroke: #ffffff;
}
50% {
    stroke: #ffffff;
}
75% {
    stroke: #ffffff;
}
100% {
    stroke: #ffffff;
}
}
@-webkit-keyframes colorsSapphire-7bc85c81 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@keyframes colorsSapphire-7bc85c81 {
0% {
    stroke: #3D87af;
}
25% {
    stroke: #3D87af;
}
50% {
    stroke: #3D87af;
}
75% {
    stroke: #3D87af;
}
100% {
    stroke: #3D87af;
}
}
@-webkit-keyframes dash-7bc85c81 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
@keyframes dash-7bc85c81 {
0% {
    stroke-dashoffset: 187;
}
50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
}
100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
}
}
/* Common card style */
.cardBodyText[data-v-7bc85c81] {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer[data-v-7bc85c81] {
  padding-top: 24px;
}
.card[data-v-7bc85c81] {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode[data-v-7bc85c81] {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton[data-v-7bc85c81] {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
.card[data-v-7bc85c81] {
    width: 80%;
    margin: 0 auto 48px auto;
}
}
@media only screen and (max-width: 560px) {
.cardBodyText[data-v-7bc85c81] {
    font-size: 13px;
    line-height: 22px;
}
.card[data-v-7bc85c81] {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}
.cardNavigationButton[data-v-7bc85c81] {
    margin-top: 12px;
}
.cardErrorCode[data-v-7bc85c81] {
    position: initial;
    left: 0;
    top: 0;
}
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
.page[data-v-7bc85c81] {
    min-height: 43.4em;
}
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
.validation-text[data-v-e8b2b7da] {
  font-size: 0.75em;
  color: #D31F1F;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
  }
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnFlat:hover {
  background: #f4f4f4;
}
.btnFlat:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised {
  position: relative;
  overflow: hidden;
}
.btnRaised:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnRaised:hover {
  background: #406EB3;
}
.btnRaised:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled {
  pointer-events: none;
}
.gradientText {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page {
  min-height: 22em;
}
.headerText {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}
@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
.pathSapphire {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
}
.lightBlueWhiteText {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText {
  background-color: #fff;
  color: #632678;
}
.violetSubText {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors {
  0% {
    stroke: #ffffff;
  }
  25% {
    stroke: #ffffff;
  }
  50% {
    stroke: #ffffff;
  }
  75% {
    stroke: #ffffff;
  }
  100% {
    stroke: #ffffff;
  }
}
@keyframes colors {
  0% {
    stroke: #ffffff;
  }
  25% {
    stroke: #ffffff;
  }
  50% {
    stroke: #ffffff;
  }
  75% {
    stroke: #ffffff;
  }
  100% {
    stroke: #ffffff;
  }
}
@-webkit-keyframes colorsSapphire {
  0% {
    stroke: #3D87af;
  }
  25% {
    stroke: #3D87af;
  }
  50% {
    stroke: #3D87af;
  }
  75% {
    stroke: #3D87af;
  }
  100% {
    stroke: #3D87af;
  }
}
@keyframes colorsSapphire {
  0% {
    stroke: #3D87af;
  }
  25% {
    stroke: #3D87af;
  }
  50% {
    stroke: #3D87af;
  }
  75% {
    stroke: #3D87af;
  }
  100% {
    stroke: #3D87af;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
/* Common card style */
.cardBodyText {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer {
  padding-top: 24px;
}
.card {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
  .card {
    width: 80%;
    margin: 0 auto 48px auto;
  }
}
@media only screen and (max-width: 560px) {
  .cardBodyText {
    font-size: 13px;
    line-height: 22px;
  }
  .card {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .cardNavigationButton {
    margin-top: 12px;
  }
  .cardErrorCode {
    position: initial;
    left: 0;
    top: 0;
  }
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
  .page {
    min-height: 43.4em;
  }
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
html,
button,
input,
select,
textarea,
.pure-g [class*="pure-u"] {
  font-family: Roboto, Arial, Helvetica, SansSerif;
}
body,
html {
  height: 100%;
  margin: 0;
}
.container {
  width: 100%;
}
.header {
  height: 100%;
}
.mainContent {
  width: 100%;
  height: 100%;
  margin: 16px;
  background: white;
}
.footer {
  margin: 0;
}
.informationText {
  line-height: 24px;
  font-size: 18px;
  color: #575755;
}
.registrationText {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.registrationInput {
  margin-top: 20px;
}
.registrationLink {
  color: #982881 !important;
}
.registrationLink:hover {
  text-decoration: underline;
}
.registrationInput {
  margin-top: 20px;
}

/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*=================================*/
/*============ Colours ============*/
/*=================================*/
/*BRAND*/
/*BRAND RGB (For opacity)*/
/*INTERFACE*/
/*GREYS*/
/* Remove common styling from a tags */
a {
  text-decoration: none;
  color: inherit;
}
/* Remove autofill colour in chrome */
/* Change the white to any color ;) */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
/*=================================*/
/*========== Animations ==========*/
/*=================================*/
@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    opacity: 1;
  }
  20% {
    -webkit-transform: scale(25, 25);
            transform: scale(25, 25);
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(40, 40);
            transform: scale(40, 40);
  }
}
/*=================================*/
/*============ Buttons ============*/
/*=================================*/
/* Flat Button */
.btnFlat {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: #3D87af;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  background: transparent;
}
/* To allow ripple */
.btnFlat {
  position: relative;
  overflow: hidden;
}
/* This is the actual ripple */
.btnFlat:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(38, 71, 141, 0.3);
  opacity: 0;
  border-radius: 100%;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnFlat:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnFlat:hover {
  background: #f4f4f4;
}
.btnFlat:disabled {
  color: #aaa;
  background: transparent;
  cursor: not-allowed;
  pointer-events: none;
}
/* Raised Button */
.btnRaised {
  border: none;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  color: white;
  padding: 6px 14px;
  margin: 6px;
  border-radius: 6px;
  height: 32px;
  font-size: 18px;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  background: #26478d;
}
/* To allow ripple */
.btnRaised {
  position: relative;
  overflow: hidden;
}
.btnRaised:active {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}
.btnRaised:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-radius: 6px;
  -webkit-transform: scale(1, 1) translate(-50%);
          transform: scale(1, 1) translate(-50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}
.btnRaised:focus:not(:active)::after {
  -webkit-animation: ripple 1s ease-out;
          animation: ripple 1s ease-out;
}
.btnRaised:hover {
  background: #406EB3;
}
.btnRaised:disabled {
  color: #FFFFFF;
  background: #aaa;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
          box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
  pointer-events: none;
}
.btnDisabled {
  pointer-events: none;
}
.gradientText {
  background: -webkit-linear-gradient(45deg, #982881, #406EB3);
  background-clip: text;
  color: #406EB3;
  position: relative;
  text-shadow: none;
  display: inline-block;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.inputHelp {
  margin: 4px;
}
/*=================================*/
/*============ Pages ============*/
/*=================================*/
.page {
  min-height: 22em;
}
.headerText {
  font-size: 24px;
  margin: 20px 20px 16px 20px;
}
/*=================================*/
/*======== Loading Spinner ========*/
/*=================================*/
.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}
@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}
.pathSapphire {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colorsSapphire 5.6s ease-in-out infinite;
}
.lightBlueWhiteText {
  background-color: #406EB3;
  color: #fff;
  border: solid 1px #406EB3;
  border-radius: 5px;
}
.whiteBackgroundVioletText {
  background-color: #fff;
  color: #632678;
}
.violetSubText {
  color: #632678;
  font-size: 16px;
  line-height: 23px;
  font-weight: bold;
}
.middleItem {
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  margin: 0 16px;
  padding: 0 26px;
}
@-webkit-keyframes colors {
  0% {
    stroke: #ffffff;
  }
  25% {
    stroke: #ffffff;
  }
  50% {
    stroke: #ffffff;
  }
  75% {
    stroke: #ffffff;
  }
  100% {
    stroke: #ffffff;
  }
}
@keyframes colors {
  0% {
    stroke: #ffffff;
  }
  25% {
    stroke: #ffffff;
  }
  50% {
    stroke: #ffffff;
  }
  75% {
    stroke: #ffffff;
  }
  100% {
    stroke: #ffffff;
  }
}
@-webkit-keyframes colorsSapphire {
  0% {
    stroke: #3D87af;
  }
  25% {
    stroke: #3D87af;
  }
  50% {
    stroke: #3D87af;
  }
  75% {
    stroke: #3D87af;
  }
  100% {
    stroke: #3D87af;
  }
}
@keyframes colorsSapphire {
  0% {
    stroke: #3D87af;
  }
  25% {
    stroke: #3D87af;
  }
  50% {
    stroke: #3D87af;
  }
  75% {
    stroke: #3D87af;
  }
  100% {
    stroke: #3D87af;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
/* Common card style */
.cardBodyText {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
}
.cardContainer {
  padding-top: 24px;
}
.card {
  width: 45%;
  margin: 0 auto 54px auto;
  padding: 32px 32px 24px 32px;
  -webkit-box-shadow: 0 0 8px #aaa;
  box-shadow: 0 0 8px #aaa;
  z-index: 11;
}
.cardErrorCode {
  color: #ccc;
  position: relative;
  left: -14px;
  top: 18px;
  font-size: 10px;
}
.cardNavigationButton {
  margin: 24px 0 -14px -30px;
  float: right;
}
@media only screen and (max-width: 1024px) {
  .card {
    width: 80%;
    margin: 0 auto 48px auto;
  }
}
@media only screen and (max-width: 560px) {
  .cardBodyText {
    font-size: 13px;
    line-height: 22px;
  }
  .card {
    width: 90%;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }
  .cardNavigationButton {
    margin-top: 12px;
  }
  .cardErrorCode {
    position: initial;
    left: 0;
    top: 0;
  }
}
/*=================================*/
/*========= Media Queries =========*/
/*=================================*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  /* Styles */
}
/* Smartphones (landscape) ----------- */
@media only screen and (min-width: 321px) {
  /* Styles */
}
/* Smartphones (portrait) ----------- */
@media only screen and (max-width: 320px) {
  /* Styles */
}
/* iPads (portrait and landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  /* Styles */
}
/* iPads (landscape) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}
/* iPads (portrait) ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}
/**********
iPad 3
**********/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/**********
iPad Pro
**********/
/* iPad pro (portrait and landscape) ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
  /* Styles */
  .page {
    min-height: 43.4em;
  }
}
/* Desktops and laptops ----------- */
@media only screen and (min-width: 1224px) {
  /* Styles */
}
/* Large screens ----------- */
@media only screen and (min-width: 1824px) {
  /* Styles */
}
/* iPhone 4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6 ----------- */
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 375px) and (max-device-height: 667px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* iPhone 6+ ----------- */
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 414px) and (max-device-height: 736px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S3 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2) {
  /* Styles */
}
/* Samsung Galaxy S4 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 320px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
/* Samsung Galaxy S5 ----------- */
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}
@media only screen and (min-device-width: 360px) and (max-device-height: 640px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 3) {
  /* Styles */
}

@font-face {
  font-family: 'experianiconfont';
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot);
  src: url(/home/dist/assets/fonts/experianiconfont.e6b95b2.eot#iefix) format('embedded-opentype'), url(/home/dist/assets/fonts/experianiconfont.07e0e02.woff2) format('woff2'), url(/home/dist/assets/fonts/experianiconfont.f271139.woff) format('woff'), url(/home/dist/assets/fonts/experianiconfont.8bf4dde.ttf) format('truetype'), url(/home/dist/assets/images/experianiconfont.svg?812fa74c0876dca189c4a300f552260d#experianiconfont) format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
/*
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: 'experianiconfont';
    src: url('../font/experianiconfont.svg?34616403#experianiconfont') format('svg');
  }
}
*/
[class^="exp-icon-"]:before,
[class*=" exp-icon-"]:before {
  font-family: "experianiconfont";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}
.exp-icon-calendar-today:before {
  content: '\E800';
}
/* '' */
.exp-icon-help-circle:before {
  content: '\E801';
}
/* '' */
.exp-icon-cash-multiple:before {
  content: '\E802';
}
/* '' */
.exp-icon-check-circle:before {
  content: '\E803';
}
/* '' */
.exp-icon-share:before {
  content: '\E804';
}
/* '' */
.exp-icon-folder-plus:before {
  content: '\E805';
}
/* '' */
.exp-icon-debug-step-out:before {
  content: '\E806';
}
/* '' */
.exp-icon-alert-box:before {
  content: '\E807';
}
/* '' */
.exp-icon-note-text:before {
  content: '\E808';
}
/* '' */
.exp-icon-arrow-left:before {
  content: '\E809';
}
/* '' */
.exp-icon-link-variant:before {
  content: '\E80A';
}
/* '' */
.exp-icon-folder-account:before {
  content: '\E80B';
}
/* '' */
.exp-icon-close-box:before {
  content: '\E80C';
}
/* '' */
.exp-icon-skip-next:before {
  content: '\E80D';
}
/* '' */
.exp-icon-format-list-bulleted:before {
  content: '\E80E';
}
/* '' */
.exp-icon-phone-outgoing:before {
  content: '\E80F';
}
/* '' */
.exp-icon-phone-incoming:before {
  content: '\E810';
}
/* '' */
.exp-icon-magnify:before {
  content: '\E811';
}
/* '' */
.exp-icon-bell:before {
  content: '\E812';
}
/* '' */
.exp-icon-customer-contact-details:before {
  content: '\E813';
}
/* '' */
.exp-icon-table-large:before {
  content: '\E814';
}
/* '' */
.exp-icon-key:before {
  content: '\E815';
}
/* '' */
.exp-icon-currency-usd-off:before {
  content: '\E816';
}
/* '' */
.exp-icon-credit-card:before {
  content: '\E817';
}
/* '' */
.exp-icon-pause-octagon:before {
  content: '\E818';
}
/* '' */
.exp-icon-calendar-clock:before {
  content: '\E819';
}
/* '' */
.exp-icon-stop-circle:before {
  content: '\E81A';
}
/* '' */
.exp-icon-credit-card-plus:before {
  content: '\E81B';
}
/* '' */
.exp-icon-check:before {
  content: '\E81C';
}
/* '' */
.exp-icon-transfer:before {
  content: '\E81D';
}
/* '' */
.exp-icon-eye:before {
  content: '\E81E';
}
/* '' */
.exp-icon-chevron-double-left:before {
  content: '\E81F';
}
/* '' */
.exp-icon-chevron-double-right:before {
  content: '\E820';
}
/* '' */
.exp-icon-chevron-down:before {
  content: '\E821';
}
/* '' */
.exp-icon-chevron-up:before {
  content: '\E822';
}
/* '' */
.exp-icon-chevron-right:before {
  content: '\E823';
}
/* '' */
.exp-icon-chevron-left:before {
  content: '\E824';
}
/* '' */
.exp-icon-filter:before {
  content: '\E825';
}
/* '' */
.exp-icon-pencil-box-outline:before {
  content: '\E826';
}
/* '' */
.exp-icon-plus:before {
  content: '\E827';
}
/* '' */
.exp-icon-phone-hangup:before {
  content: '\E828';
}
/* '' */
.exp-icon-arrow-down:before {
  content: '\E829';
}
/* '' */
.exp-icon-close:before {
  content: '\E82A';
}
/* '' */
.exp-icon-account:before {
  content: '\E82B';
}
/* '' */
.exp-icon-phone-redial:before {
  content: '\E82C';
}
/* '' */
.exp-icon-eye-off:before {
  content: '\E82D';
}
/* '' */
.exp-icon-email-variant:before {
  content: '\E82E';
}
/* '' */
.exp-icon-credit-card-minus:before {
  content: '\E82F';
}
/* '' */
.exp-icon-credit-card-plus-1:before {
  content: '\E830';
}
/* '' */
.exp-icon-account-link:before {
  content: '\E831';
}
/* '' */
.exp-icon-folder-contact:before {
  content: '\E832';
}
/* '' */
.exp-icon-pencil:before {
  content: '\E833';
}
/* '' */
.exp-icon-book-open:before {
  content: '\E834';
}
/* '' */
.exp-icon-account-alert:before {
  content: '\E835';
}
/* '' */
.exp-icon-page-first:before {
  content: '\E836';
}
/* '' */
.exp-icon-page-last:before {
  content: '\E837';
}
/* '' */
.exp-icon-personal-information:before {
  content: '\E838';
}
/* '' */
.exp-icon-fasttrack-to-legal:before {
  content: '\E839';
}
/* '' */
.exp-icon-cursor-move:before {
  content: '\E83A';
}
/* '' */
.exp-icon-letter:before {
  content: '\E83B';
}
/* '' */
.exp-icon-truck-delivery:before {
  content: '\E83C';
}
/* '' */
.exp-icon-team:before {
  content: '\E83D';
}
/* '' */
.exp-icon-team-noleader:before {
  content: '\E83E';
}
/* '' */
.exp-icon-web:before {
  content: '\E83F';
}
/* '' */
.exp-icon-window-maximize:before {
  content: '\E840';
}
/* '' */
.exp-icon-phone-in-talk:before {
  content: '\E841';
}
/* '' */
.exp-icon-download:before {
  content: '\E842';
}
/* '' */
.exp-icon-settings:before {
  content: '\E843';
}
/* '' */
.exp-icon-settings-box:before {
  content: '\E844';
}
/* '' */
.exp-icon-authorise-transfer:before {
  content: '\E845';
}
/* '' */
.exp-icon-arrangement-reducing-payment:before {
  content: '\E846';
}
/* '' */
.exp-icon-arrangement-installment:before {
  content: '\E847';
}
/* '' */
.exp-icon-print-history:before {
  content: '\E848';
}
/* '' */
.exp-icon-suspend-product2:before {
  content: '\E849';
}
/* '' */
.exp-icon-account-close:before {
  content: '\E84A';
}
/* '' */
.exp-icon-file-import:before {
  content: '\E84B';
}
/* '' */
.exp-icon-file-export:before {
  content: '\E84C';
}
/* '' */
.exp-icon-file-view:before {
  content: '\E84D';
}
/* '' */
.exp-icon-printer:before {
  content: '\E84E';
}
/* '' */
.exp-icon-reschedule-arrangement:before {
  content: '\E84F';
}
/* '' */
.exp-icon-dca-allocate:before {
  content: '\E850';
}
/* '' */
.exp-icon-dca-preset:before {
  content: '\E851';
}
/* '' */
.exp-icon-play-circle:before {
  content: '\E852';
}
/* '' */
.exp-icon-edit-history:before {
  content: '\E853';
}
/* '' */
.exp-icon-logout:before {
  content: '\E854';
}
/* '' */
.exp-icon-dca-complete:before {
  content: '\E855';
}
/* '' */
.exp-icon-dca-withdraw:before {
  content: '\E856';
}
/* '' */
.exp-icon-deactivate-product:before {
  content: '\E857';
}
/* '' */
.exp-icon-btn-remove:before {
  content: '\E858';
}
/* '' */
.exp-icon-authorise-writeoff:before {
  content: '\E859';
}
/* '' */
.exp-icon-reactivate-product:before {
  content: '\E85A';
}
/* '' */
.exp-icon-dca-reinstatement:before {
  content: '\E85B';
}
/* '' */
.exp-icon-bar-product:before {
  content: '\E85C';
}
/* '' */
.exp-icon-reinstate-product:before {
  content: '\E85D';
}
/* '' */
.exp-icon-content-save:before {
  content: '\E85E';
}
/* '' */
.exp-icon-content-paste:before {
  content: '\E85F';
}
/* '' */
.exp-icon-tower-import:before {
  content: '\E860';
}
/* '' */
.exp-icon-alert-circle-outline:before {
  content: '\E861';
}
/* '' */
.exp-icon-chart-arc:before {
  content: '\E862';
}
/* '' */
.exp-icon-chart-bar:before {
  content: '\E863';
}
/* '' */
.exp-icon-chart-line:before {
  content: '\E864';
}
/* '' */
.exp-icon-database:before {
  content: '\E865';
}
/* '' */
.exp-icon-database-plus:before {
  content: '\E866';
}
/* '' */
.exp-icon-dots-horizontal:before {
  content: '\E867';
}
/* '' */
.exp-icon-dots-vertical:before {
  content: '\E868';
}
/* '' */
.exp-icon-home:before {
  content: '\E869';
}
/* '' */
.exp-icon-menu:before {
  content: '\E86A';
}
/* '' */
.exp-icon-exclamation:before {
  content: '\E86B';
}
/* '' */
.exp-icon-flag-outline-variant:before {
  content: '\E86C';
}
/* '' */
.exp-icon-refresh:before {
  content: '\E86D';
}
/* '' */
.exp-icon-timer-sand:before {
  content: '\E86E';
}
/* '' */
.exp-icon-star-outline:before {
  content: '\E86F';
}
/* '' */


/*# sourceMappingURL=app.ec906b3ebbd2fa1c5fb3.css.map*/