@font-face {
  font-family: postnlweb;
  src: url(/assets/fonts/postnlweb-light-webfont.woff2);
  font-style: normal;
  font-weight: 300;
  font-display: fallback;
}

@font-face {
  font-family: postnlweb;
  src: url(/assets/fonts/postnlweb-regular-webfont.woff2);
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: postnlweb;
  src: url(/assets/fonts/postnlweb-medium-webfont.woff2);
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "PostNL-Webshop-icons";
  src: url(/assets/fonts/postnl-icons.4c338118.woff) format("woff");
}

@font-face {
  font-family: pci-icons;
  src: url(/assets/fonts/pci-icons.0b40d52979fa5c97cfd54a908ec249bf.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

@font-face {
    src: url('/assets/fonts/HankenGrotesk-Regular.ttf');
    font-family: HankenGrotesk;
    font-style: normal;
    font-weight: 400
}

@font-face {
    src: url('/assets/fonts/HankenGrotesk-Bold.ttf');
    font-family: HankenGrotesk;
    font-style: bold;
    font-weight: 700
}

@font-face {
    src: url('/assets/fonts/ABCROM-Bold.woff');
    font-family: ABCROM;
    font-style: normal;
    font-weight: 700
}

:root {
  --primaryBlue: #3440b6;
  --darkBlue: #001a73;
  --primaryPurple: #6161FF;
  --white: #ffffff;
  --lightGray: #d4d9e3;
  --darkGray: #1F1E2F;
  --orange: #ed7000;
  --dark-orange: #E75204;
  --footerGray: #F1F1F2;
  --fontSizeSmall: 16px;
  --fontSizeMedium: 28px;
  --fontSizeLarge: 36px;
  --fontWeight300: 300;
  --fontWeight400: 400;
  --fontWeight500: 500;
  --fontWeight700: 700;
  --lineHeightSmall: 20px;
  --lineHeightMedium: 24px;
  --lineHeightLarge: 36px;
  --font-family-1: 'HankenGrotesk', sans-serif;
  --font-family-2: 'ABCROM', sans-serif; 
  /* 
    --secondary-color: #001a73;
    --heading-text: #001A73;
    --text-color: #1F1E2F;
    --secondary-text-color: #4E4EE2;
    --red-error: #D70036;
    --red-error-secondary: #EE3261;
    --footer-bg:;
    --header-bg: #F1F1F2;
    --orange: #E75204;
    --dark-gray: ;
    --light-gray: #8A94A8;
    --font-weight-semi-bold: 700;
    --font-weight-semi-regular: 400;
    --font-size-regular: 16px;
    --font-size-large: 38px;
    --line-height: 19.2px;
    */
}

/* line 25, assets/css/layout/_common.scss */
*,
:after,
:before {
  box-sizing: inherit;
}

/* line 31, assets/css/layout/_common.scss */
* {
  box-sizing: border-box;
  font-feature-settings: "ss03" on, "ss01" on !important;
}

/* line 35, assets/css/layout/_common.scss */
html,
body {
  height: 100%;
}

/* line 40, assets/css/layout/_common.scss */
html {
  background-color: #fff;
}

/* line 44, assets/css/layout/_common.scss */
body {
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  margin: 0;
  color: #27324c;
  overflow-y: scroll;
  
}

/* line 54, assets/css/layout/_common.scss */
h1 {
  font-family: var(--font-family-2);
  font-size: 50px;
  line-height: 58px;
  font-weight: 300;
  color: #3440b6;
  margin: 0 0 40px 0;
}

/* line 62, assets/css/layout/_common.scss */
h2 {
  font-family: var(--font-family-2);
  font-size: var(--fontSizeLarge);
  line-height: 40px;
  color: var(--darkBlue);
  margin: 16px 0;
  margin: 0 0 15px 0;
  font-weight: var(--fontWeight700);
}

/* line 73, assets/css/layout/_common.scss */
p {
  padding: 0 0 20px 0;
  margin: 0;
}

/* line 78, assets/css/layout/_common.scss */
ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow: hidden;
}

/* line 85, assets/css/layout/_common.scss */
p,
li,
a,
td,
button,
input {
  font-family: var(--font-family-1);
}

/* general layout styles */
/* line 97, assets/css/layout/_common.scss */
.page-layout {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

/* line 107, assets/css/layout/_common.scss */
.page-layout header {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

/* line 112, assets/css/layout/_common.scss */
.page-layout main {
  flex: 1 0 auto;
  display: flex;
  display: -webkit-flex;
  display: -ms-flexbox;
  align-items: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
}

/* line 121, assets/css/layout/_common.scss */
.page-layout main > div.content-container {
  margin: 0 auto;
  width: 100%;
  position: relative;
  padding-top: 67px;
  transition: background ease 0.3s;
}

/* line 128, assets/css/layout/_common.scss */
.page-layout main > div.content-container.content-container__blue-bg {
  background: var(--white);
}

/* line 134, assets/css/layout/_common.scss */
.page-layout footer {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

/* line 140, assets/css/layout/_common.scss */
.layout-padding {
  padding: 0 calc(50% - 600px);
}
/* simple header*/
.simple-header {
  border-bottom: 1px solid var(--lightGray);
}

.simple-header .header-container {
  display: flex;
  align-items: center;
  min-height: 73px;
  font-size: 16px;
  justify-content: space-between;
  flex-direction: column;
  font-weight: 400;
}
/* line 387, assets/css/layout/_common.scss */
.simple-header .dropdown-menu {
  opacity: 0;
  pointer-events: none;
  margin: 0;
  bottom: 4px;
  right: -3px;
  padding: 1rem;
  z-index: 9999;
  list-style: none;
  position: absolute;
  background-color: #fff;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  border-radius: 0.25rem 0.25rem 0 0.25rem;
  -webkit-box-shadow: 0.188rem 0px 0.563rem 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0.188rem 0px 0.563rem 0px rgba(0, 0, 0, 0.1);
  transition: opacity ease 0.3s;
  overflow: visible;
}

/* line 406, assets/css/layout/_common.scss */
.simple-header .dropdown-menu:before {
  left: 50%;
  top: 0;
  content: "";
  position: absolute;
  z-index: 5;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  transform: translate(-50%, -100%);
}

/* line 418, assets/css/layout/_common.scss */
.simple-header .dropdown-menu:after {
  left: 50%;
  top: 0;
  content: "";
  position: absolute;
  z-index: 4;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -100%);
}

/* line 430, assets/css/layout/_common.scss */
.simple-header .dropdown-menu li {
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* line 434, assets/css/layout/_common.scss */
.simple-header .dropdown-menu li a:hover {
  text-decoration: none !important;
}

/* line 438, assets/css/layout/_common.scss */
.simple-header .dropdown-menu li:last-child {
  margin-bottom: 0;
}

/* line 443, assets/css/layout/_common.scss */
.simple-header .dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
}

.logo-cancel-group {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 722px;
  padding: 8px 30px 9px;
}
.devidor {
  border: 0;
  border-top: 1px solid var(--lightGray);
  width: 100%;
  margin: 0;
}
.simple-header .language-selector {
  width: 100%;
  max-width: 722px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding: 0 30px;
}
.simple-header .logo {
  display: block;
  width: 100%;
  max-width: 156px;
  height: 100%;
  max-height: 56px;
}

/* header */
/* line 148, assets/css/layout/_common.scss */
.header {
  border-bottom: 1px solid #d4d9e3;
}
/* line 151, assets/css/layout/_common.scss */
.header .header-container {
  display: flex;
  padding: 0 calc(50% - 600px);
  max-height: 81px;
  min-height: 73px;
  font-size: 16px;
  justify-content: space-between;
  font-weight: 400;
}

/* line 161, assets/css/layout/_common.scss */
.header .header__logo {
  padding: 15px 30px 15px 0;
  line-height: 1;
}

/* line 165, assets/css/layout/_common.scss */
.header .header__logo a {
  width: 60px;
  display: inline-block;
}

/* line 169, assets/css/layout/_common.scss */
.header .header__logo a img {
  width: 100%;
  height: auto;
}

/* line 177, assets/css/layout/_common.scss */
.header .header__navbar .header__navigation {
  display: flex;
  height: 100%;
}

/* line 181, assets/css/layout/_common.scss */
.header .header__navbar .header__navigation .nav__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin: 0 15px;
}

/* line 188, assets/css/layout/_common.scss */
.header .header__navbar .header__navigation .nav__item.nav__item--active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primaryBlue);
}

/* line 199, assets/css/layout/_common.scss */
.header .header__navbar .header__navigation a {
  color: #2b4dbd;
  text-decoration: none;
  text-align: right;
  transition: color 0.1s ease-out;
}

/* line 205, assets/css/layout/_common.scss */
.header .header__navbar .header__navigation a:hover {
  color: var(--primaryBlue);
}

/* line 212, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile {
  color: #fff;
  background: none;
  border: 0;
  width: 25px;
  min-width: 1px;
  height: 15px;
  line-height: 25px;
  text-align: center;
  padding: 0;
  margin: 0;
  display: block !important;
  position: relative;
  border-radius: 0;
  cursor: pointer;
}

/* line 228, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile:hover,
.header .header__navbar .btn-menu--mobile:active,
.header .header__navbar .btn-menu--mobile:focus {
  background: none !important;
  border: 0 !important;
}

/* line 235, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile span {
  display: block;
  position: absolute;
  height: 2px;
  width: 25px;
  background: var(--primaryBlue);
  opacity: 1;
  left: 0;
  top: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

/* line 253, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile span:nth-child(1) {
  top: 0;
}

/* line 257, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile span:nth-child(2),
.header .header__navbar .btn-menu--mobile span:nth-child(3) {
  top: 6px;
}

/* line 262, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile span:nth-child(4) {
  top: 12px;
}

/* line 267, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile.expended span:nth-child(1) {
  top: 0;
  width: 0%;
  left: 50%;
}

/* line 273, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile.expended span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 2px;
}

/* line 281, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile.expended span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  height: 2px;
}

/* line 289, assets/css/layout/_common.scss */
.header .header__navbar .btn-menu--mobile.expended span:nth-child(4) {
  top: 0;
  width: 0%;
  left: 50%;
}

/* line 297, assets/css/layout/_common.scss */
.header .header__language {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* line 304, assets/css/layout/_common.scss */
.header .header__language .btn.btn-dropdown {
  padding: 5px 30px 5px 15px;
  border-left: 1px solid #d4d9e3;
  border-right: 1px solid #d4d9e3;
}

/* line 311, assets/css/layout/_common.scss */
.header .header__util {
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* line 317, assets/css/layout/_common.scss */
.header .header__util > div {
  display: flex;
  align-items: center;
}

/* line 321, assets/css/layout/_common.scss */
.header .header__util > div a {
  text-decoration: none;
  color: var(--primaryBlue);
  margin-left: 15px;
}

/* line 326, assets/css/layout/_common.scss */
.header .header__util > div a:hover {
  color: #66728a;
}

/* line 331, assets/css/layout/_common.scss */
.header .header__util > div .btn-cancel {
  display: none;
}

/* line 338, assets/css/layout/_common.scss */
.header.header__narrow .header-container {
  padding: 0 calc(50% - 265px);
}

/* line 342, assets/css/layout/_common.scss */
.header.header__narrow .header__logo {
  order: 1;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* line 351, assets/css/layout/_common.scss */
.header.header__narrow .header__logo a {
  width: 48px;
}

/* line 356, assets/css/layout/_common.scss */
.header.header__narrow .header__language {
  order: 0;
  margin: 0 auto 0 0;
}

/* line 360, assets/css/layout/_common.scss */
.header.header__narrow .header__language .btn.btn-dropdown {
  padding-left: 0;
  border-left: 0;
  border-right: 0;
}

/* line 367, assets/css/layout/_common.scss */
.header.header__narrow .header__util {
  order: 2;
  padding: 0;
}

/* line 372, assets/css/layout/_common.scss */
.header.header__narrow .header__util > div .btn-cancel {
  display: flex;
}

/* line 376, assets/css/layout/_common.scss */
.header.header__narrow .header__util > div a {
  display: none;
}

/* line 382, assets/css/layout/_common.scss */
.header.header__narrow .header__navbar {
  display: none;
}

/* line 387, assets/css/layout/_common.scss */
.header .dropdown-menu {
  opacity: 0;
  pointer-events: none;
  margin: 0;
  left: 50%;
  padding: 1rem;
  z-index: 9999;
  list-style: none;
  position: absolute;
  bottom: 15px;
  background-color: #fff;
  -webkit-transform: translate(-50%, 100%);
  transform: translate(-50%, 100%);
  border-radius: 0.25rem 0.25rem 0 0.25rem;
  -webkit-box-shadow: 0.188rem 0px 0.563rem 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0.188rem 0px 0.563rem 0px rgba(0, 0, 0, 0.1);
  transition: opacity ease 0.3s;
  overflow: visible;
}

/* line 406, assets/css/layout/_common.scss */
.header .dropdown-menu:before {
  left: 50%;
  top: 0;
  content: "";
  position: absolute;
  z-index: 5;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  transform: translate(-50%, -100%);
}

/* line 418, assets/css/layout/_common.scss */
.header .dropdown-menu:after {
  left: 50%;
  top: 0;
  content: "";
  position: absolute;
  z-index: 4;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -100%);
}

/* line 430, assets/css/layout/_common.scss */
.header .dropdown-menu li {
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* line 434, assets/css/layout/_common.scss */
.header .dropdown-menu li a:hover {
  text-decoration: none !important;
}

/* line 438, assets/css/layout/_common.scss */
.header .dropdown-menu li:last-child {
  margin-bottom: 0;
}

/* line 443, assets/css/layout/_common.scss */
.header .dropdown-menu.show {
  opacity: 1;
  pointer-events: auto;
}

/* line 456, assets/css/layout/_common.scss */
.footer {
  width: 100%;
  background-color: var(--footerGray);
  color: var(--darkGray);
  font-weight: 300;
  font-size: 14px;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 0;
  margin-top: auto !important;
  
}

/* line 466, assets/css/layout/_common.scss */
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 722px;
  margin: 0 auto;
}

/* line 472, assets/css/layout/_common.scss */
.footer .footer-container .footer__left a {
  align-items: center;
  display: flex;
  font-weight: 300;
  color: var(--darkGray);
  text-decoration: none;
}

/* line 479, assets/css/layout/_common.scss */
.footer .footer-container .footer__left a img {
  padding-right: 10px;
}

/* line 483, assets/css/layout/_common.scss */
.footer .footer-container .footer__left a:hover {
  text-decoration: none;
}

/* line 488, assets/css/layout/_common.scss */
.footer .footer-container .footer__right {
  display: flex;
}

/* line 491, assets/css/layout/_common.scss */
.footer .footer-container .footer__right li {
  padding-left: 14px;
  font-weight: var(--fontWeight500);
}

/* line 494, assets/css/layout/_common.scss */
.footer .footer-container .footer__right li a {
  color: var(--darkGray);
  text-decoration: none;
}

/* line 498, assets/css/layout/_common.scss */
.footer .footer-container .footer__right li a:hover {
  text-decoration: underline;
}

/* line 509, assets/css/layout/_common.scss */
.btn {
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  cursor: pointer;
}

/* line 519, assets/css/layout/_common.scss */
.btn-text {
  background: none;
  border: none;
  color: var(--primaryBlue);
  transition: color 0.1s ease-out;
  font-size: 16px;
}

/* line 532, assets/css/layout/_common.scss */
.btn-text:focus {
  border: none;
  outline: 0;
}

/* line 537, assets/css/layout/_common.scss */
.btn-text.btn-text--border {
  border-left: 2px solid #d4d9e3;
  border-right: 2px solid #d4d9e3;
  padding-left: 8px;
  padding-right: 12px;
}

/* line 545, assets/css/layout/_common.scss */
.btn-dropdown {
  padding: 8px 0;
  position: relative;
  padding-right: 30px;
}

/* line 549, assets/css/layout/_common.scss */
.btn-dropdown:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  right: 10px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  transition: all ease 0.3s;
  background: url(../img/arrow-down.svg) center center no-repeat;
  background-size: contain;
}

/* line 563, assets/css/layout/_common.scss */
.btn-dropdown:hover {
  text-decoration: none;
}

/* line 572, assets/css/layout/_common.scss */
.btn-dropdown.expended:after {
  transform: translateY(-50%) rotate(180deg);
}

/* line 578, assets/css/layout/_common.scss */
.btn-icon-right {
  margin-left: 8px;
}

/* line 583, assets/css/layout/_common.scss */
.btn-cancel:hover {
  text-decoration: none !important;
}

/* line 587, assets/css/layout/_common.scss */
.btn-cancel span:hover {
  text-decoration: none;
}

/* line 591, assets/css/layout/_common.scss */
.btn-cancel::before {
  content: "\d7";
  font-size: 30px;
  padding-right: 8px;
  padding-bottom: 4px;
  display: inline-block;
}

/* line 600, assets/css/layout/_common.scss */
.button {
  border: 1px solid var(--primaryBlue);
  background: var(--primaryBlue);
  height: 40px;
  line-height: 35px;
  min-width: 8rem;
  border-radius: 4px;
  color: #ffffff;
  font-weight: 400;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 1.5rem;
  margin: 0 12px 10px 0;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  cursor: pointer;
}

/* line 621, assets/css/layout/_common.scss */
.button:hover {
  background: #66728a;
  border: 1px solid #66728a;
}

/* line 626, assets/css/layout/_common.scss */
.button.outline {
  background: #ffffff;
  color: var(--primaryBlue);
}

/* line 630, assets/css/layout/_common.scss */
.button.outline:hover {
  color: #66728a;
}

/* line 636, assets/css/layout/_common.scss */
.buttons-container {
  display: flex;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* line 641, assets/css/layout/_common.scss */
.buttons-container.right-align {
  justify-content: flex-end;
}

/* line 644, assets/css/layout/_common.scss */
.buttons-container.right-align .button {
  margin-right: 0;
  margin-left: 12px;
}

/* line 651, assets/css/layout/_common.scss */
.buttons-container.reverse {
  flex-direction: row-reverse;
}

/* line 656, assets/css/layout/_common.scss */
.header button > * {
  pointer-events: none;
}

/* general styles */
/* line 662, assets/css/layout/_common.scss */
.page-title {
  color: #3440b6;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  font-size: 50px;
}

/* line 671, assets/css/layout/_common.scss */
.ml-30 {
  margin-left: 30px;
}

/* line 675, assets/css/layout/_common.scss */
.action-link {
  color: var(--primaryBlue) !important;
  text-decoration: none !important;
  font-weight: normal;
}

/* line 680, assets/css/layout/_common.scss */
.action-link:hover {
  text-decoration: underline !important;
  color: #66728a !important;
  cursor: pointer;
}

/* line 687, assets/css/layout/_common.scss */
.hidden, .pci-button.hidden {
  display: none !important;
}

/* line 691, assets/css/layout/_common.scss */
.popup-overlayer {
  background: rgba(0, 0, 0, 0.50);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.3s;
  z-index:250;
}

/* line 701, assets/css/layout/_common.scss */
.popup {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80%;
  max-width: 450px;
  transform: translate(-50%, -50%);
  background: #ffffff;
  border-radius: 8px;
  padding: 50px;
  z-index: 251;
}

/* line 712, assets/css/layout/_common.scss */
.popup .close {
  color: #66728a;
  position: absolute;
  right: 15px;
  top: 10px;
}

/* line 720, assets/css/layout/_common.scss */
.password-bar {
  padding-top: 20px;
  width: 100%;
}

/* line 724, assets/css/layout/_common.scss */
.password-bar p {
  font-size: 14px;
  line-height: 1.15;
}

/* line 729, assets/css/layout/_common.scss */
.password-bar .bar {
  background: #f3f4f7;
  border-radius: 100px;
  height: 8px;
  margin: 0 0 10px 0;
  position: relative;
}

/* line 736, assets/css/layout/_common.scss */
.password-bar .bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  border-radius: 100px;
  transition: all ease 0.3s;
}

/* line 748, assets/css/layout/_common.scss */
.password-bar .msg {
  display: none;
}

/* line 751, assets/css/layout/_common.scss */
.password-bar .msg.msg-default {
  display: block;
}

/* line 758, assets/css/layout/_common.scss */
.password-bar.weak .bar:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 100px;
  background: #d70036;
  width: 20%;
  transition: all ease 0.3s;
}

/* line 771, assets/css/layout/_common.scss */
.password-bar.weak .msg-weak {
  display: block;
}

/* line 775, assets/css/layout/_common.scss */
.password-bar.weak .msg-default {
  display: none;
}

/* line 782, assets/css/layout/_common.scss */
.password-bar.medium .bar:after {
  width: 33%;
  background: #f9b112;
}

/* line 788, assets/css/layout/_common.scss */
.password-bar.medium .msg-medium {
  display: block;
}

/* line 792, assets/css/layout/_common.scss */
.password-bar.medium .msg-default {
  display: none;
}

/* line 799, assets/css/layout/_common.scss */
.password-bar.strong .bar:after {
  width: 80%;
  background: #3aaa35;
}

/* line 805, assets/css/layout/_common.scss */
.password-bar.strong .msg-strong {
  display: block;
}

/* line 809, assets/css/layout/_common.scss */
.password-bar.strong .msg-default {
  display: none;
}

/* line 816, assets/css/layout/_common.scss */
.password-bar.xstrong .bar:after {
  width: 100%;
  background: #3aaa35;
}

/* line 822, assets/css/layout/_common.scss */
.password-bar.xstrong .msg-xstrong {
  display: block;
}

/* line 826, assets/css/layout/_common.scss */
.password-bar.xstrong .msg-default {
  display: none;
}

/* line 816, assets/css/layout/_common.scss */
.password-bar.error .bar:after {
  width: 100%;
  background: #d70036;
}

/* line 822, assets/css/layout/_common.scss */
.password-bar.error .msg-error {
  display: block;
}

/* line 826, assets/css/layout/_common.scss */
.password-bar.error .msg-default {
  display: none;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1230px) {
  /* line 835, assets/css/layout/_common.scss */
  .header {
    padding: 0 15px;
  }
  /* line 839, assets/css/layout/_common.scss */
  .header .header__logo a {
    width: 48px;
  }
  /* line 845, assets/css/layout/_common.scss */
  .footer .footer-container {
    padding: 0 15px;
  }
}

/* Medium Devices, Desktops */
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  /* line 859, assets/css/layout/_common.scss */
  .header .header__logo a {
    width: 32px;
  }
  /* line 867, assets/css/layout/_common.scss */
  .header.header.header__narrow .header__logo a {
    width: 32px;
  }
  /* line 873, assets/css/layout/_common.scss */
  h1 {
    font-size: 24px;
    font-weight: 500;
  }
  /* line 878, assets/css/layout/_common.scss */
  body.menu-expended {
    position: fixed;
    width: 100%;
  }
  /* line 883, assets/css/layout/_common.scss */
  .header .header-container {
    min-height: 64px;
  }
  /* line 888, assets/css/layout/_common.scss */
  .header .header__navbar {
    order: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* line 894, assets/css/layout/_common.scss */
  .header .header__navbar .header__navigation {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 81px;
    right: 0;
    height: 100%;
    left: 0;
    padding: 20px !important;
    background: #fff;
    overflow-y: auto;
    z-index: 9999;
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -ms-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
    display: block;
  }
  /* line 912, assets/css/layout/_common.scss */
  .header .header__navbar .header__navigation .nav__item {
    display: block;
    border-bottom: 2px solid #f3f4f7;
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
  }
  /* line 918, assets/css/layout/_common.scss */
  .header .header__navbar .header__navigation .nav__item.nav__item--active:after {
    display: none;
  }
  /* line 924, assets/css/layout/_common.scss */
  .header .header__navbar .buttons {
    display: inline-block;
  }
  /* line 929, assets/css/layout/_common.scss */
  .header .header__logo {
    order: 1;
    padding-left: 15px;
    padding-right: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  /* line 938, assets/css/layout/_common.scss */
  .header .header__util {
    order: 3;
    padding-left: 0;
  }
  /* line 943, assets/css/layout/_common.scss */
  .header .dropdown-menu {
    bottom: 7px;
  }
  /* line 949, assets/css/layout/_common.scss */
  .header:not(.header__narrow) .header__language {
    order: 2;
    position: absolute;
    left: 50%;
    bottom: 120px;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%);
  }
  /* line 959, assets/css/layout/_common.scss */
  .header:not(.header__narrow) .header__language .btn.btn-dropdown {
    border: 0;
    padding-left: 0;
  }
  /* line 967, assets/css/layout/_common.scss */
  .header.header__narrow .header__language {
    display: flex;
  }
  /* line 974, assets/css/layout/_common.scss */
  .menu-expended .header .header__navbar .header__navigation {
    opacity: 1;
    visibility: visible;
  }
  /* line 980, assets/css/layout/_common.scss */
  .menu-expended .header .header__language {
    opacity: 1;
    pointer-events: auto;
  }
  /* line 987, assets/css/layout/_common.scss */
  .footer .footer-container {
    display: block;
  }
  /* line 990, assets/css/layout/_common.scss */
  .footer .footer-container .footer__right {
    padding-top: 15px;
    flex-wrap: wrap;
  }
  /* line 994, assets/css/layout/_common.scss */
  .footer .footer-container .footer__right li {
    padding: 0 15px 10px 0;
  }
  /* line 1001, assets/css/layout/_common.scss */
  /* .popup-overlayer {
    background: #616162;
  } */
  /* line 1005, assets/css/layout/_common.scss */
  .popup {
    padding: 25px;
    border-radius: 0;
  }
  /* line 1011, assets/css/layout/_common.scss */
  .popup .buttons-container .button,
  .popup .buttons-container .button.outline {
    border: 0;
    height: auto;
    line-height: 1.5;
    padding: 0;
    margin: 0 20px 0 0;
    background: none;
    min-width: 1px;
    color: var(--primaryBlue);
  }
  /* line 1022, assets/css/layout/_common.scss */
  .popup .buttons-container .button:hover,
  .popup .buttons-container .button.outline:hover {
    color: #66728a;
  }
  /* line 1028, assets/css/layout/_common.scss */
  .popup .buttons-container.right-align .button {
    margin: 0 0 0 20px;
  }
}

/* Extra Small Devices, Phones */
@media only screen and (max-width: 580px) {
  /* line 1038, assets/css/layout/_common.scss */
  .header.header__narrow {
    padding: 0 15px;
  }
  /* line 1043, assets/css/layout/_common.scss */
  .btn-cancel span {
    display: none;
  }
  /* line 1047, assets/css/layout/_common.scss */
  .btn-cancel::before {
    padding-right: 0;
  }
  /* line 1052, assets/css/layout/_common.scss */
  .page-layout main > div.content-container.content-container__blue-bg {
    background: #fff;
  }
}

@media only screen and (max-width: 480px) {
  /* line 1058, assets/css/layout/_common.scss */
  .page-layout main > div.content-container.content-container__blue-bg {
    background: #fff;
  }
}

/* Medium and Large Devices */
@media only screen and (min-width: 768px) {
  /* IE layout fix */
  /* line 1068, assets/css/layout/_common.scss */
  .fixMinHeight {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
  }
}

/* line 1, assets/css/layout/_formControls.scss */
input,
textarea {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  outline: none;
  border: 1px solid #8a95af;
  color: #66728a;
  width: 100%;
}

/* line 12, assets/css/layout/_formControls.scss */
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* line 16, assets/css/layout/_formControls.scss */
input:focus,
textarea:focus {
  border: solid 1px var(--darkGray);
}

input:active,
input:focus {
  outline-offset: 1px;
  outline: 2px solid var(--primaryBlue);
  border: 1px solid var(--darkGray);
}
/* line 20, assets/css/layout/_formControls.scss */
*::-moz-placeholder {
  color: #66728a;
}

/* line 24, assets/css/layout/_formControls.scss */
::-webkit-input-placeholder {
  color: #66728a;
}

/* line 28, assets/css/layout/_formControls.scss */
:-ms-input-placeholder {
  color: #66728a;
}

/* line 32, assets/css/layout/_formControls.scss */
.form-group-container {
  width: 100%;
  max-width: 347px;
  margin: 0 auto;
  text-align: left;
}
.form-group-container h2 {
  white-space: nowrap;
  margin-bottom: 40px;
}

/* line 39, assets/css/layout/_formControls.scss */
fieldset {
  margin: 0;
  border: 0;
  padding: 0;
}

/* line 45, assets/css/layout/_formControls.scss */
.form-group-container .pci-form__group {
  width: 100%;
  margin: 0 0 24px 0;
}
.form-group-container .custom-pci-form__group{
flex-wrap: unset;
flex-direction: column;
}

/* line 51, assets/css/layout/_formControls.scss */
.pci-form__group {
  margin-bottom: 0.5rem;
  display: flex;
  /* flex-direction: column; */
  justify-content: space-between;
  flex-wrap: wrap;
}

/* line 56, assets/css/layout/_formControls.scss */
.pci-form__group input {
  width: 100%;
}

/* line 61, assets/css/layout/_formControls.scss */
.pci-hero {
  height: 112px;
  margin-bottom: 69px;
}

/* line 64, assets/css/layout/_formControls.scss */
.pci-hero img {
  width: 160px;
  height: 160px;
}

/* line 70, assets/css/layout/_formControls.scss */
.pci-panel {
  background-color: #fff;
  border-radius: 8px 8px 0 8px;
  max-width: 342px;
  margin: auto;
  margin-bottom: 50px;
}

/* line 78, assets/css/layout/_formControls.scss */
.pci-panel a {
  color: var(--primaryPurple);
  text-decoration: none;
  font-weight: var(--fontWeight700);
}

/* line 82, assets/css/layout/_formControls.scss */
.pci-panel a:hover {
  color: var(--primaryPurple);
  text-decoration: underline;
}

/* line 88, assets/css/layout/_formControls.scss */
.pci-button-container {
  display: flex;
/*  flex-direction: column;
  justify-content: space-between;
  flex-direction: row; */
  flex-direction: row;
  justify-content: flex-start; 
  gap: 24px;  
  align-items: center;
  margin-bottom: 40px;
}
/* #changePwdActionBtns.pci-button-container {
  flex-direction: row-reverse;
} */

/* line 95, assets/css/layout/_formControls.scss */
.pci-form__label {
  margin: 0 0 8px 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.25;
  color: #27324c;
  font-weight: var(--fontWeight700);
}

/* line 104, assets/css/layout/_formControls.scss */
.pci-input {
  height: 2.5rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  position: relative;
  display: inline-flex;
  -moz-appearance: none;
  border-radius: 0.25rem;
  -webkit-appearance: none;
  border: 1px solid #8a95af;
  background-color: #ffffff;
  color: #27324c;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 119, assets/css/layout/_formControls.scss */
.pci-input:disabled {
  border-color: #d4d9e3;
  background-color: #f3f4f7;
}

/* line 129, assets/css/layout/_formControls.scss */
.pci-content-bottom p:first-child {
  font-size: var(--fontSizeSmall);
  font-weight: var(--fontWeight700);
  line-height: var(--lineHeightLarge);
  letter-spacing: 0px;
  text-align: left;
  color: var(--darkGray);
  padding-bottom: 12px;
}
.pci-content-bottom .activation {
  border-radius: 4px;
  border: 2px solid var(--primaryPurple);
  padding: 8px 24px;
  width: auto;
  display: inline-block;
}

/* line 135, assets/css/layout/_formControls.scss */
.pci-form__error input {
  border: 1px solid #d70036;
}

/* line 139, assets/css/layout/_formControls.scss */
.pci-error {
  color: #d70036;
  font-size: 14px;
  font-weight: 400;
  padding: 2px 0 0 1rem;
}

/* line 146, assets/css/layout/_formControls.scss */
.message-box {
  background: #ebf8fd;
  border: 1px solid #8dd4f1;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 10px;
}

.mbinfo {
  background: #ebf8fd;
  border: 1px solid #8dd4f1;
}

.mbwarn {
  background: #fff9ec;
  border: 1px solid #fbc54f;
}

.mberror {
  background: #fcebef;
  border: 1px solid #ea7b97;
}

/* line 153, assets/css/layout/_formControls.scss */
p.info {
  padding: 0 0 0 30px;
  position: relative;
}

/* line 156, assets/css/layout/_formControls.scss */
p.info:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background: url(../img/icon-info.png) center center no-repeat;
  background-size: contain;
}

p.warn {
  padding: 0 0 0 35px;
  position: relative;
  color: #27324c;
  font-weight: 300;
}

p.warn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 26px;
  background: url(/assets/img/alert-warning.svg) center center no-repeat;
  background-size: contain;
}

p.error {
  padding: 0 0 0 35px;
  position: relative;
  color: #27324c;
  font-weight: 300;
}

p.error:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 26px;
  background: url(/assets/img/alert-error.svg) center center no-repeat;
  background-size: contain;
}

/* line 180, assets/css/layout/_formControls.scss */
.pci-hero__image {
  height: 100%;
}

/* line 184, assets/css/layout/_formControls.scss */
.pci-form {
  display: flex;
  flex-direction: column;
}

/* line 189, assets/css/layout/_formControls.scss */
.pci-button {
  /* margin: 0;
  width: 100%;
  height: 40px;
  line-height: 40px;
  min-width: 8rem;
  border: none;
  color: #ffffff;
  cursor: pointer;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size: inherit;
  align-items: center;
  padding: 0 1.5rem;
  justify-content: center;
  background-color: var(--primaryBlue);
  border-radius: 0.25rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px; */
   width: auto;
    height: 40px;
    color: #fff;
    border: none;
    display: flex !important;
    font-size: 16px;
    cursor: pointer;
    font-weight: var(--fontWeight700);
    user-select: none;
    align-items: center;
    padding: 10px 24px;
    justify-content: center;
    background-color: var(--primaryPurple);
    border-radius: 5px;
    position: relative;
    z-index: 100;
}

/* line 212, assets/css/layout/_formControls.scss */
.pci-button:focus,
.pci-button:hover {
  background-color: var(--primaryPurple);
  text-decoration: underline;

}

/* line 217, assets/css/layout/_formControls.scss */
.pci-button:focus:not(:focus-visible),
button:focus {
  outline: none;
}

/* line 221, assets/css/layout/_formControls.scss */
.pci-button--no-bg {
  color: var(--primaryBlue);
  background-color: transparent;
}

/* line 226, assets/css/layout/_formControls.scss */
.pci-button-secondary {
  color: var(--primaryPurple);
  background-color: #fff;
  border: 2px solid var(--primaryPurple);
}

/* line 232, assets/css/layout/_formControls.scss */
.pci-button-secondary:focus,
.pci-button-secondary:hover {
  background-color: #fff;
}

/* line 238, assets/css/layout/_formControls.scss */
.pci-button-text {
  padding: 0;
  min-width: auto;
  border-radius: 0;
  background: none;
  align-self: center;
}

@media (min-width: 25em) {
  /* line 253, assets/css/layout/_formControls.scss */
  .pci-button {
    width: auto;
    display: inline-flex;
  }
  .pci-fw1 {
    width: 100%;
  }
  .pci-notmobile {
    display: block !important;
  }

  /* line 265, assets/css/layout/_formControls.scss */
  .pci-form__wrapper {
    transition-duration: 0.2s;
  }
  /* line 269, assets/css/layout/_formControls.scss */
  .pci-input {
    transition-duration: 0.2s;
  }
}

/* line 275, assets/css/layout/_formControls.scss */
.pci-form__wrapper {
  transition-duration: 0.39s;
}

/* line 279, assets/css/layout/_formControls.scss */
.pci-form__wrapper {
  width: 100%;
  max-width: 25.563rem;
  display: flex;
  flex: 1 1 auto;
  margin-bottom: 0;
  position: relative;
  flex-direction: column;
  transition: margin 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 290, assets/css/layout/_formControls.scss */
.password input[type="password"] {
  padding-right: 3.125rem;
}

/* line 294, assets/css/layout/_formControls.scss */
.password__button {
  border: none;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
  color: var(--primaryBlue);
  font-style: normal;
  font-stretch: normal;
  letter-spacing: normal;
  background-color: transparent;
  display: flex;
  font-family: var(--font-family-1);
}
.password__button.show::after {
  content: url("data:image/svg+xml; utf8, <svg width=%2718%27 height=%2712%27 viewBox=%270 0 18 12%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27><path fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M0 6C0 6 4.02895 12 8.9989 12C13.9689 12 17.9978 6 17.9978 6C17.9978 6 13.9689 0 8.9989 0C4.02895 0 0 6 0 6ZM1.62153 6C1.65229 6.03866 1.68426 6.07851 1.71741 6.11947C2.14434 6.64684 2.7602 7.34732 3.5163 8.04376C5.07493 9.47943 7.01464 10.7 8.9989 10.7C10.9832 10.7 12.9229 9.47943 14.4815 8.04376C15.2376 7.34732 15.8535 6.64684 16.2804 6.11947C16.3136 6.07851 16.3455 6.03866 16.3763 6C16.3455 5.96134 16.3136 5.92149 16.2804 5.88053C15.8535 5.35316 15.2376 4.65268 14.4815 3.95624C12.9229 2.52057 10.9832 1.3 8.9989 1.3C7.01464 1.3 5.07493 2.52057 3.5163 3.95624C2.7602 4.65268 2.14434 5.35316 1.71741 5.88053C1.68426 5.92149 1.65229 5.96134 1.62153 6ZM8.9989 7.8C9.9929 7.8 10.7987 6.99411 10.7987 6C10.7987 5.00589 9.9929 4.2 8.9989 4.2C8.00491 4.2 7.19912 5.00589 7.19912 6C7.19912 6.99411 8.00491 7.8 8.9989 7.8ZM8.9989 9C10.6556 9 11.9985 7.65685 11.9985 6C11.9985 4.34315 10.6556 3 8.9989 3C7.34225 3 5.99927 4.34315 5.99927 6C5.99927 7.65685 7.34225 9 8.9989 9Z%27 fill=%27%233440B6%27/></svg>");
  top: 2px;
  left: 6px;
}
.password__button.hide::after {
  content: url("data:image/svg+xml; utf8, <svg width=%2724%27 height=%2724%27 viewBox=%270 0 24 24%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27><path d=%27M8.34114 16.9795C9.45903 17.5878 10.6972 18 12 18C16.9706 18 21 12 21 12C21 12 19.9271 10.4023 18.2055 8.85588L17.1897 9.69248C17.2889 9.77942 17.3868 9.86742 17.4833 9.95624C18.2395 10.6527 18.8554 11.3532 19.2824 11.8805C19.3155 11.9215 19.3475 11.9613 19.3783 12C19.3475 12.0387 19.3155 12.0785 19.2824 12.1195C18.8554 12.6468 18.2395 13.3473 17.4833 14.0438C15.9244 15.4794 13.9845 16.7 12 16.7C11.1273 16.7 10.2633 16.464 9.43649 16.0774L8.34114 16.9795Z%27 fill=%27%233440B6%27/><path d=%27M10.9667 14.8173C11.2888 14.9355 11.6369 15 12 15C13.6569 15 15 13.6569 15 12C15 11.8388 14.9873 11.6806 14.9628 11.5263L13.7125 12.556C13.4998 13.2115 12.9213 13.7021 12.2178 13.787L10.9667 14.8173Z%27 fill=%27%233440B6%27/><path d=%27M10.8344 13.3717L9.89931 14.1417C9.3443 13.5973 9 12.8389 9 12C9 10.3431 10.3431 9 12 9C13.0468 9 13.9683 9.53612 14.5051 10.3488L13.57 11.1189C13.2615 10.5705 12.674 10.2 12 10.2C11.0059 10.2 10.2 11.0059 10.2 12C10.2 12.5495 10.4462 13.0415 10.8344 13.3717Z%27 fill=%27%233440B6%27/><path d=%27M16.2338 8.92515C14.941 7.98157 13.4829 7.3 12 7.3C10.0155 7.3 8.07555 8.52057 6.51673 9.95624C5.76054 10.6527 5.1446 11.3532 4.71762 11.8805C4.68446 11.9215 4.65249 11.9613 4.62173 12C4.65249 12.0387 4.68446 12.0785 4.71762 12.1195C5.1446 12.6468 5.76054 13.3473 6.51673 14.0438C7.0716 14.5548 7.67475 15.0386 8.31102 15.4497L7.26345 16.3125C4.70433 14.5378 3 12 3 12C3 12 7.02944 6 12 6C13.9666 6 15.7859 6.93926 17.2666 8.07454L16.2338 8.92515Z%27 fill=%27%233440B6%27/><path fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M3.61873 18.5369C3.40807 18.2811 3.44467 17.903 3.70046 17.6923L19.7741 4.45516C20.0299 4.2445 20.4081 4.28109 20.6187 4.53689C20.8294 4.79268 20.7928 5.17082 20.537 5.38147L4.46331 18.6186C4.20752 18.8293 3.82938 18.7927 3.61873 18.5369Z%27 fill=%27%233440B6%27/></svg>");
  left: 3px;
  top: 1px;
}
.password__button.show::after,
.password__button.hide::after {
  margin-left: 5px;
  height: 20px;
  width: 20px;
}
/* line 311, assets/css/layout/_formControls.scss */
.password__button:focus,
.password__button:active {
  border: none;
  outline: 0;
}

/* line 319, assets/css/layout/_formControls.scss */
.pci-input--short {
  max-width: 8.25rem;
}

/* line 323, assets/css/layout/_formControls.scss */
.progress-bar-background {
  margin: 20px 0;
  width: 100%;
  height: 5px;
  border-radius: 2.5px;
  background-color: #f3f4f7;
}

/* line 331, assets/css/layout/_formControls.scss */
.progress-bar-background div.accent {
  background-color: var(--primaryBlue);
}

/* line 335, assets/css/layout/_formControls.scss */
.progress-bar-background div {
  width: 35%;
  height: 5px;
  border-radius: 2.5px;
  transition: width 0.4s;
}

/* line 342, assets/css/layout/_formControls.scss */
.action-dropdown {
  display: flex;
  flex-direction: column;
}

/* line 346, assets/css/layout/_formControls.scss */
.action-dropdown select {
  width: 250px;
  padding: 10px 16px;
  border-radius: 4px;
  border: solid 1px #8a95af;
  color: #66728a;
  font-size: 16px;
}

/* line 354, assets/css/layout/_formControls.scss */
.action-dropdown select option {
  padding-top: 10px;
}

/* line 358, assets/css/layout/_formControls.scss */
.action-dropdown select:focus {
  outline: none;
  border: 1px solid var(--primaryBlue);
}

@media (min-width: 48em) {
  /* line 369, assets/css/layout/_formControls.scss */
  .pci-panel {
    border-radius: 8px 8px 0 8px;
  }
}

@media only screen and (max-width: 580px) {
  /* line 375, assets/css/layout/_formControls.scss */
  .pci-panel {
    padding-top: 0;
  }
  /* line 378, assets/css/layout/_formControls.scss */
  .pci-hero {
    width: 80px;
  }
  /* line 382, assets/css/layout/_formControls.scss */
  .pci-form__group .util-right {
    order: 2;
    width: 100%;
  }
}

/* line 1, assets/css/modules/_myAccount.scss */
#accountMain {
  padding-left: 16px;
  padding-right: 16px;
}

/* line 5, assets/css/modules/_myAccount.scss */
#accountMain .account__title,#accountMain .account__content {
  margin-left: 15%;
}

/* line 9, assets/css/modules/_myAccount.scss */
#accountMain .account__content {
  display: flex;
  flex-direction: row;
}

/* line 13, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__image {
  width: 15%;
  text-align: right;
  padding-right: 25px;
}

/* line 19, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__details {
  width: 85%;
  margin-bottom: 25px;
}

/* line 23, assets/css/modules/_myAccount.scss */
/* #accountMain .account__content .account__details li {
  border-bottom: 1px solid #d4d9e3;
} */

/* line 27, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__details li:last-child {
  border: none;
}

/* line 31, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__details .account__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 9px;
}

/* line 38, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__details .account__item .item {
  display: flex;
  flex: 1;
}

/* line 43, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__details .account__item .item__description {
  justify-content: flex-start;
  font-weight: var(--fontWeight700);
  padding-right: 10px;
}

#accountMain .account__content .account__details .account__item .my__profile--description-link{
color: var(--primaryPurple);
white-space: nowrap;
text-decoration: none;
}
/* line 49, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__details .account__item .item_value {
  justify-content: flex-start;
  padding-right: 10px;
}

/* line 54, assets/css/modules/_myAccount.scss */
#accountMain .account__content .account__details .account__item .item__edit {
  justify-content: flex-end;
  font-weight: 500;
}

/* line 59, assets/css/modules/_myAccount.scss */
/* #accountMain .account__content .account__details .account__item .item__edit a .icon {
  display: none;
} */

/* line 69, assets/css/modules/_myAccount.scss */
#pageContainer {
  max-width: 1100px;
  margin: 0 auto;
}

/* line 75, assets/css/modules/_myAccount.scss */
.header__navbar .buttons {
  display: none;
}

/* line 80, assets/css/modules/_myAccount.scss */
.header.header-myaccount {
  height: 80px;
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  /* line 88, assets/css/modules/_myAccount.scss */
  #accountMain .account__title,#accountMain .account__content {
    margin-left: 0;
    padding-left: 5px;
  }
  /* line 94, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__image {
    display: none;
  }
  /* line 98, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__details {
    width: 100%;
  }
  /* line 101, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__details .account__item {
    flex-wrap: wrap;
    padding-left: 5px;
  }
  /* line 105, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__details .account__item .item {
    flex: none;
  }
  /* line 109, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__details .account__item .item__description {
    width: 100%;
  }
  /* line 113, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__details .account__item .item__edit {
    justify-content: flex-end;
    font-weight: 500;
  }
  /* line 118, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__details .account__item .item__edit a .icon {
    padding-bottom: 5px;
    display: block;
  }
  /* line 123, assets/css/modules/_myAccount.scss */
  #accountMain .account__content .account__details .account__item .item__edit a .text {
    display: none;
  }
  /* line 134, assets/css/modules/_myAccount.scss */
  .header.header-myaccount.small-header .header-item.header__language {
    display: flex;
  }
  /* line 138, assets/css/modules/_myAccount.scss */
  .header.header-myaccount.small-header .header__closeSection {
    order: 3;
  }
  /* line 143, assets/css/modules/_myAccount.scss */
  .header.header-myaccount {
    display: flex;
    min-height: 64px;
  }
  /* line 147, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container {
    width: 100%;
  }
  /* line 150, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header-item {
    display: flex;
    flex: 1;
  }
  /* line 155, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__closeSection {
    display: none;
  }
  /* line 159, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__logo {
    justify-content: center;
    order: 2;
  }
  /* line 164, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__logout {
    order: 3;
    justify-content: flex-end;
  }
  /* line 169, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .show {
    display: block !important;
  }
  /* line 173, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__language {
    display: none;
  }
  /* line 177, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar {
    order: 1;
  }
  /* line 180, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .buttons {
    display: block;
  }
  /* line 184, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .buttons {
    position: relative;
  }
  /* line 188, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile {
    position: relative;
    float: left;
    min-width: 20px;
    padding: 0;
    color: var(--primaryBlue);
    font-size: 14px;
    cursor: pointer;
  }
  /* line 197, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile .menu-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 0;
    width: 20px;
    border-bottom: 2px solid var(--primaryBlue);
    -webkit-transition: border-color 0.3s ease-out;
    transition: border-color 0.3s ease-out;
  }
  /* line 207, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile .menu-icon::before,
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile .menu-icon::after {
    content: "";
    display: block;
    position: absolute;
    border-top: 2px solid var(--primaryBlue);
    width: 100%;
    -webkit-transition: top 0.1s ease-out 0.1s, transform 0.1s ease-out;
    -webkit-transition: top 0.1s ease-out 0.1s, -webkit-transform 0.1s ease-out;
    transition: top 0.1s ease-out 0.1s, -webkit-transform 0.1s ease-out;
    transition: top 0.1s ease-out 0.1s, transform 0.1s ease-out;
    transition: top 0.1s ease-out 0.1s, transform 0.1s ease-out, -webkit-transform 0.1s ease-out;
  }
  /* line 221, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile .menu-icon::after {
    top: 6px;
  }
  /* line 225, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile .menu-icon::before {
    top: -6px;
  }
  /* line 232, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile.expended .menu-icon {
    border-color: transparent;
  }
  /* line 235, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile.expended .menu-icon::before,
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile.expended .menu-icon::after {
    -webkit-transition: top 0.1s ease-out, transform 0.1s ease-out 0.1s;
    -webkit-transition: top 0.1s ease-out, -webkit-transform 0.1s ease-out 0.1s;
    transition: top 0.1s ease-out, -webkit-transform 0.1s ease-out 0.1s;
    transition: top 0.1s ease-out, transform 0.1s ease-out 0.1s;
    transition: top 0.1s ease-out, transform 0.1s ease-out 0.1s, -webkit-transform 0.1s ease-out 0.1s;
  }
  /* line 244, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile.expended .menu-icon::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /* line 251, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navbar .btn-menu--mobile.expended .menu-icon::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  /* line 261, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .header__navigation {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 65px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.5em 1.5em !important;
    background: #fff;
    overflow-y: scroll;
    z-index: 9999;
    -webkit-transition: 0.2s ease-in;
    -moz-transition: 0.2s ease-in;
    -ms-transition: 0.2s ease-in;
    transition: 0.2s ease-in;
  }
  /* line 279, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container li.nav__item {
    display: block;
    border-bottom: 1px solid #d4d9e3;
    margin: 0;
  }
  /* line 284, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container li.nav__item a {
    width: 100%;
    text-align: left;
    padding: 17px 0 8px 0;
    font-size: 18px;
    display: inline-block;
  }
  /* line 293, assets/css/modules/_myAccount.scss */
  .header.header-myaccount .header-container .nav__item:first-child a {
    padding-top: 0;
  }
  /* line 299, assets/css/modules/_myAccount.scss */
  .menu-expended .header.header-myaccount .header-container .header__navigation {
    opacity: 1;
    visibility: visible;
  }
}

/* line 1, assets/css/modules/_multifactor.scss */
.mfa-radio-group {
  display: flex;
  flex-direction: column;
}

/* line 6, assets/css/modules/_multifactor.scss */
.mfa-radio-wrapper {
  width: 254px;
  height: 72px;
  margin: 8px 95px 0 0;
  border-radius: 4px;
  border: solid 1px #d4d9e3;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

/* line 18, assets/css/modules/_multifactor.scss */
.mfa-radio-wrapper.selected {
  border: solid 1px var(--primaryBlue);
}

/* line 22, assets/css/modules/_multifactor.scss */
.mfa-radio-wrapper input {
  width: unset;
}

/* line 26, assets/css/modules/_multifactor.scss */
.mfa-radio-wrapper .mfa-radio-img {
  width: 56px;
  height: 56px;
  margin: 0 0 0 3px;
  object-fit: contain;
}

/* line 33, assets/css/modules/_multifactor.scss */
.mfa-radio-wrapper .mfa-radio-text {
  width: 140px;
  height: 20px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #27324c;
  margin-left: 3px;
}

/* line 47, assets/css/modules/_multifactor.scss */
.mfa-radio-wrapper > * {
  cursor: pointer;
}

/* line 51, assets/css/modules/_multifactor.scss */
.mfa-link {
  width: 226px;
  height: 24px;
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  margin-bottom: 8px;
}

/* line 63, assets/css/modules/_multifactor.scss */
.mfa-link-wrapper {
  margin-bottom: 8px;
}

/* line 67, assets/css/modules/_multifactor.scss */
.mfa-collapse-action-text-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/* line 74, assets/css/modules/_multifactor.scss */
.action-text {
  font-weight: normal;
}

/* line 78, assets/css/modules/_multifactor.scss */
.mfa-collapse-action-wrapper {
  max-width: 304px;
}

/* line 82, assets/css/modules/_multifactor.scss */
.mfa-collapse-action-text {
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: normal;
  color: #27324c;
  padding-bottom: 0;
}

/* line 93, assets/css/modules/_multifactor.scss */
.mfa-expanded-text {
  display: none;
  width: inherit;
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #27324c;
  margin-top: 5px;
}

/* line 105, assets/css/modules/_multifactor.scss */
.mfa-expanded-text p {
  margin-top: 0;
}

/* line 110, assets/css/modules/_multifactor.scss */
.chevron {
  width: 24px;
  height: 24px;
  object-fit: contain;
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* line 117, assets/css/modules/_multifactor.scss */
.chevron.hidden {
  display: none;
}

/* line 121, assets/css/modules/_multifactor.scss */
.chevron.icon-rotates {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* line 128, assets/css/modules/_multifactor.scss */
.divider {
  width: inherit;
  height: 1px;
  margin: 17px 0 25px 0;
  background-color: #d4d9e3;
}

/* Medium Devices, Desktops */
@media only screen and (max-width: 992px) {
  /* line 137, assets/css/modules/_multifactor.scss */
  .mfa-radio-wrapper {
    width: 100%;
    justify-content: start;
    padding-left: 16px;
  }
  /* line 143, assets/css/modules/_multifactor.scss */
  .mfa-radio-fieldset {
    width: inherit;
    display: contents;
  }
  /* line 148, assets/css/modules/_multifactor.scss */
  .mfa-radio-group {
    width: inherit;
  }
  /* line 152, assets/css/modules/_multifactor.scss */
  .mfa-collapse-action-wrapper {
    width: inherit;
    max-width: unset;
  }
  /* line 157, assets/css/modules/_multifactor.scss */
  .divider {
    width: inherit;
  }
}

/* line 2, assets/css/modules/_installApp.scss */
.input-extra-information {
  font-size: 14px;
  font-weight: var(--fontWeight400);
  font-stretch: normal;
  font-style: normal;
  line-height: 1.57;
  letter-spacing: normal;
  color: var(--darkGray);
  margin-bottom: 12px;
}

/* line 12, assets/css/modules/_installApp.scss */
.install-app-description {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  color: #27324c;
  white-space: pre-line;
  margin-bottom: 8px;
}

/* line 24, assets/css/modules/_installApp.scss */
.install-app-action-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 32px;
}

/* line 30, assets/css/modules/_installApp.scss */
.install-app-action-wrapper :first-child {
  margin-bottom: 8px;
}

/* line 35, assets/css/modules/_installApp.scss */
.progress-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 257px;
}

/* line 43, assets/css/modules/_installApp.scss */
.current-step-circle {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  padding: 2px;
  border: solid 2px var(--primaryBlue);
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 54, assets/css/modules/_installApp.scss */
.current-step-circle .circle-fill {
  width: 14px;
  height: 14px;
  border-radius: 10px;
  background-color: var(--primaryBlue);
}

/* line 62, assets/css/modules/_installApp.scss */
.previous-step-circle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  padding: 4px;
  background-color: var(--primaryBlue);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 73, assets/css/modules/_installApp.scss */
.next-step-circle {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: solid 2px #8a95af;
  background-color: #ffffff;
}

/* line 81, assets/css/modules/_installApp.scss */
.progress-step {
  width: 97px;
  height: 2px;
  background-color: #8a95af;
}

/* line 86, assets/css/modules/_installApp.scss */
.progress-step.active {
  background-color: var(--primaryBlue);
}

/* line 91, assets/css/modules/_installApp.scss */
.progress-step-text {
  font-size: 16px;
  font-weight: 300;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  color: #27324c;
}

/* line 101, assets/css/modules/_installApp.scss */
.progress-step-text.next {
  font-weight: 300;
}

/* line 105, assets/css/modules/_installApp.scss */
.progress-step-text.active {
  font-weight: normal;
}

/* line 109, assets/css/modules/_installApp.scss */
.progress-step-text.previous {
  font-weight: 500;
  color: var(--primaryBlue);
}

/* line 115, assets/css/modules/_installApp.scss */
.progress-wizard {
  display: flex;
  flex-direction: column;
  width: 347px;
  height: 72px;
  align-items: center;
  padding: 0 8px 0 8px;
  margin-top: 24px;
  margin-bottom: 8px;
}

/* line 126, assets/css/modules/_installApp.scss */
.progress-step-text-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 8px;
  width: 100%;
}

/* line 134, assets/css/modules/_installApp.scss */
.badge {
  width: 130px;
  cursor: pointer;
  margin-right: 1px;
}

/* line 141, assets/css/modules/_installApp.scss */
.badges-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

/* line 148, assets/css/modules/_installApp.scss */
.install-app-qr {
  width: 99px;
  height: 140px;
  margin-top: 16px;
  background-color: #d4d9e3;
}

/* line 155, assets/css/modules/_installApp.scss */
.iwelcome-badge {
  width: 42px;
  height: 40px;
  margin-right: 8px;
}

/* line 161, assets/css/modules/_installApp.scss */
.iwelcome-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

/* line 167, assets/css/modules/_installApp.scss */
.spinner {
  display: inline-block;
  width: 26px;
  height: 26px;
  vertical-align: text-bottom;
  border: 3px solid var(--primaryBlue);
  border-right-color: transparent;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-left: -13px;
  margin-top: -13px;
  -webkit-animation: spin 0.75s linear infinite;
  animation: spin 0.75s linear infinite;
  position: absolute;
}

.my__profile--description{
  color: #67687F;
  font-weight: var(--fontWeight400) !important;
  flex-direction: column !important;
  max-width: 200px !important;
  font-size: 14px !important;
}


.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #3498db;
    font-weight: bold;
}

.tooltip .tooltiptext {
    position: absolute;
    display: none;
    padding: 1px 3px;
    margin-left: -114.9px;
    padding: 16px;
    margin-top: 30px;
    border-radius: 4px;
    text-align: center;
    background-color: #fff;
    color: var(--darkGray);
     box-shadow: 0.188rem 0px 0.563rem 0px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    opacity: 0;
    transition: opacity .5s;
    z-index: 1;
    width: 436px;
    font-weight: var(--fontWeight400);

}

.tooltip .tooltiptext::before {
    content: "";
    position: absolute;
    margin-left: -12px;
    left: 25%;
    top: -12px;
    border-width: 6px;
    border-style: solid;
    border-color:  transparent transparent white transparent;

}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
    display: inline-block;
}

.icon .arrow-right{
  position: relative;
  top: 4px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* line 188, assets/css/modules/_installApp.scss */
.wizard-panel {
  min-width: 531px;
  min-height: 473px;
  position: relative;
}

/* line 194, assets/css/modules/_installApp.scss */
.install-app-form {
  display: flex;
  flex-direction: column;
}

/* line 198, assets/css/modules/_installApp.scss */
.install-app-form input {
  width: 50%;
}
h2.consent-title{
  font-weight:var(--fontWeight700);
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 28.8px;
}
.consent-subtitle{
  font-weight:var(--fontWeight500);
  font-size: 24px;
  line-height: 28.8px;
  color: var(--darkBlue);
  padding-bottom: 40px;
}
.consent-section-title{
  font-weight:var(--fontWeight700);
  line-height: 23.75px;
  color:var(--dark-orange);
  font-size: 25px;
  padding-bottom: 12px;
}
#content-buttons-box{
  width: 100%;
  padding: 24px 40px 24px;
  box-shadow: 0px -2px 6px 0px #1F1E2F26;
  justify-content: center;
  position: fixed;
  background:white;
  bottom: 0;
}
.button-box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
#consent-button-information{
  color: var(--primaryBlue);
  text-decoration: none;
  font-weight: 500;
  font-weight:var(--fontWeight700);
}
.oppen-link{
  position: relative;
  top: 2px;
  left: 8px;
}
.pci-panel.consent{
  max-width: 722px;
  padding: 0 30px;
}
.form-group-container.consent{
  margin: 0;
  max-width: 722px;
}
@media only screen and (max-width: 630px) {
  .button-box{
    flex-direction: column;
  }
 

}

@media only screen and (max-width: 510px) {
  /* line 204, assets/css/modules/_installApp.scss */
  .wizard-panel {
    min-width: unset;
    min-height: unset;
    position: unset;
  }
  /* line 210, assets/css/modules/_installApp.scss */
  .install-app-form input {
    width: 100%;
  }
  .form-group-container h2 {
    white-space: unset;
  }
  .pci-panel {
    padding: 0 24px;
    box-sizing: content-box;
  }
   .tooltip .tooltiptext {
    width: 327px;

  }
}

/* line 2, assets/css/modules/_accountActivation.scss */
#accountActivation input {
  width: 80%;
}

@media (max-width: 400px) {
   .tooltip .tooltiptext {
    width: 250px;

  }
  /* simple header */
  .simple-header .header-container {
    flex-direction: unset;
  }
  .devidor {
    display: none;
    padding: 0 30px 0 0;
  }
  .language-selector {
    justify-content: flex-start;
    padding: 0 0 0 30px;
    flex: 0.5;
  }
  .logo-cancel-group {
    flex: 1;
  }
  .pci-button-container {
    flex-direction: row;
    justify-content: flex-start;
    gap: 24px;
  }
  .pci-content-bottom .activation {
    max-width: unset;
    text-align: center;
    display: block;
  }

  /* line 9, assets/css/modules/_accountActivation.scss */
  #accountActivation input {
    width: 100%;
  }
  .mobhide {
    display: none;
  }

  #idToast {
    margin-left: 16px;
  }
}
.sms-page-lable{
  margin-bottom: 4px;
}
.toast {
  display: none;
  position: absolute;
  margin-left: 167px;
  margin-top: -50px;
  color: white;
  height: 54px;
  padding: 15px 16px;
  border-radius: 4px;
  box-shadow: 0 9px 12px 0 rgba(0, 0, 0, 0.25);
  background-color: #66728a;
}

.radio-out {
  width: 20px;
  height: 20px;
  border-radius: 12px;
  border: solid 1px #8a94a8;
  background-color: #ffffff;
  top: 2px;
  left: -2px;
  position: relative;
}

.radio-in {
  width: 12px;
  height: 12px;
  background-color: var(--primaryBlue);
  display: inline-block;
  border-radius: 12px;
  top: 3px;
  left: 3px;
  position: absolute;
}

.ndivider {
  height: 0.0625rem;
  display: block;
  margin: 2.5rem 0;
  position: relative;
  background-color: #d4d9e3;
}

.ndivider__text {
  top: -50%;
  left: 50%;
  color: #3440b7;
  font-weight: 500;
  padding: 0.625rem;
  position: absolute;
  border-radius: 50%;
  font-size: 1.0625rem;
  background-color: #fff;
  transform: translate(-50%, -50%);
}

.pci-link-list--box .pci-link-list__link {
  display: flex;
  padding: 0.7125rem;
  border-radius: 0.25rem;
  border: 1px solid #adb5c5;
}

.pci-link-list {
  padding: 0;
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.pci-link-list__text {
  margin-right: 0.5rem;
}

.pci-link-list__link::after {
  color: inherit;
  margin-left: auto;
  vertical-align: middle;
  font-family: pci-icons;
  content: "";
}

.bmu {
  color: #959595;
  font-size: 140%;
  position: absolute;
  top: -2px;
  right: 6px;
  z-index: 998;
  display: none;
  background: url(/assets/img/star2.svg) center center no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 37px;
}

.bms {
  color: #959595;
  font-size: 140%;
  position: absolute;
  top: -2px;
  right: 6px;
  z-index: 998;
  background: url(/assets/img/star.svg) center center no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 37px;
}

.bmue {
  background: url(/assets/img/star3.svg) center center no-repeat;
  background-size: 25px 25px;
  width: 25px;
  height: 37px;
}

.bme {
  position: relative;
  top: -28px;
  left: 759px;
  cursor: pointer;
}

@media only screen and (max-width: 480px) {
  .bme {
    left: 214px;
  }
}

/* Show spinner */
.loader {
  display: flex;
  border: 3px solid orange;
  border-radius: 50%;
  border-top: 3px solid white;
  border-right: 3px solid white;
  width: 22px;
  height: 22px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#passwordRequirements {
  margin-top: 16px;
}
#passwordRequirements > ul {
  padding-left: 21px;
  margin-bottom: 16px;
}

#passwordRequirements > ul > li {
  list-style: none;
  font-weight: 300;
  position: relative;
}

#passwordRequirements > ul > li.pwdCriteriaMissed {
  color: #d70036;
  list-style: none;
  font-weight: 400;
}

#passwordRequirements > ul > li.pwdCriteriaMatched {
  color: #22881b;
  list-style: none;
  font-weight: 400;
}

#passwordRequirements > ul > li.pwdCriteriaMissed::before,
#passwordRequirements > ul > li.pwdCriteriaMatched::before,
#passwordRequirements > ul > li::before {
  margin-right: 8px;
  top: 2px;
  left: -21px;
  position: absolute;
}

#passwordRequirements > ul > li::before {
  content: url('data:image/svg+xml; utf8, <svg width="4" height="5" viewBox="0 0 4 5" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.370914 2.5C0.370914 3.62 0.762914 4.32 2.03691 4.32C3.29691 4.32 3.63291 3.62 3.63291 2.5V2.29C3.63291 1.17 3.29691 0.47 2.03691 0.47C0.762914 0.47 0.370914 1.17 0.370914 2.29V2.5Z" fill="%2327324C"/></svg>');
  left: -18px;
  top: -2px;
}

#passwordRequirements > ul > li.pwdCriteriaMissed::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="none" viewBox="0 0 24 24"><path fill="%23d70036" fill-rule="evenodd" d="M20.601 3.399c-.532-.532-1.395-.532-1.927 0L12 10.074 5.326 3.398c-.532-.532-1.395-.532-1.927 0s-.532 1.395 0 1.927L10.074 12l-6.675 6.674c-.532.532-.532 1.395 0 1.927s1.395.532 1.927 0L12 13.927l6.674 6.674c.532.532 1.395.532 1.927 0s.532-1.395 0-1.927L13.927 12 20.6 5.326c.532-.532.532-1.395 0-1.927z" clip-rule="evenodd"></path></svg>');
}

#passwordRequirements > ul > li.pwdCriteriaMatched::before {
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="13" height="13" fill="none" viewBox="0 0 24 24"><path fill="%233AAA35" fill-rule="evenodd" d="M10.072 22c-.619 0-1.206-.29-1.581-.79l-5.088-6.741c-.662-.877-.49-2.126.384-2.79.874-.665 2.118-.492 2.78.385L9.914 16.5l8.417-13.56c.579-.933 1.803-1.22 2.734-.638.93.58 1.215 1.81.634 2.744L11.758 21.06c-.346.559-.943.909-1.596.938l-.09.001z" clip-rule="evenodd"/><mask id="gepmkooo4a" width="19" height="20" x="3" y="2" maskUnits="userSpaceOnUse"><path fill="%23fff" fill-rule="evenodd" d="M10.072 22c-.619 0-1.206-.29-1.581-.79l-5.088-6.741c-.662-.877-.49-2.126.384-2.79.874-.665 2.118-.492 2.78.385L9.914 16.5l8.417-13.56c.579-.933 1.803-1.22 2.734-.638.93.58 1.215 1.81.634 2.744L11.758 21.06c-.346.559-.943.909-1.596.938l-.09.001z" clip-rule="evenodd"/></mask></svg>');
}

#passwordRequirements > ul > li:not(:last-child) {
  margin-bottom: 4px;
}
#customErrorMessage {
  color: #d70036;
  font-size: 14px;
  font-weight: 700;
  line-height: 19.6px;
  margin-top: 12px;
  display: none;
  align-items: center;
  column-gap: 8px;
}
#customErrorMessage::before {
  transform: translatey(2px);
  content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><rect width="16" height="16" rx="2" fill="%23EE3261"/><path fill-rule="evenodd" clip-rule="evenodd" d="M7.99997 3.39844C7.4827 3.39844 7.06337 3.81777 7.06337 4.33504V8.08144C7.06337 8.59871 7.4827 9.01804 7.99997 9.01804C8.51724 9.01804 8.93657 8.59871 8.93657 8.08144V4.33504C8.93657 3.81777 8.51724 3.39844 7.99997 3.39844ZM7.99997 12.9985C8.64656 12.9985 9.17072 12.4744 9.17072 11.8278C9.17072 11.1812 8.64656 10.657 7.99997 10.657C7.35339 10.657 6.82922 11.1812 6.82922 11.8278C6.82922 12.4744 7.35339 12.9985 7.99997 12.9985Z" fill="white"/></svg>');
}
.customLabel {
  display: flex;
  width: 100%;
  justify-content: space-between;
}


.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index:250
}

.modal {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  min-width: 300px;
  text-align: center;
  z-index:251
}

.close-btn {
  margin-top: 10px;
  padding: 5px 10px;
  border: none;
  background: red;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}