@import "../external/bootstrap.min.css";
@font-face {
  font-family: "BdrText Regular";
  src: url("../../fonts/BdrText/bdrText-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BdrText Regular Italic";
  src: url("../../fonts/BdrText/bdrText-RegularItalic.woff2") format("woff2");
  font-weight: normal;
  font-style: italic;
}
@font-face {
  font-family: "BdrText Medium";
  src: url("../../fonts/BdrText/bdrText-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "BdrText Medium Italic";
  src: url("../../fonts/BdrText/bdrText-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "BdrText SemiBold";
  src: url("../../fonts/BdrText/bdrText-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "BdrText SemiBold Italic";
  src: url("../../fonts/BdrText/bdrText-SemiBoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: "BdrText Bold";
  src: url("../../fonts/BdrText/bdrText-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "BdrText Bold Italic";
  src: url("../../fonts/BdrText/bdrText-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: italic;
}

.font-regular {
  font-family: "BdrText Regular", helvetica, arial, sans-serif;
}

.font-regular-italic {
  font-family: "BdrText Regular Italic", helvetica, arial, sans-serif;
}

.font-regular-medium {
  font-family: "BdrText Medium", helvetica, arial, sans-serif;
}

.font-regular-medium-italic {
  font-family: "BdrText Medium Italic", helvetica, arial, sans-serif;
}

.font-regular-semibold {
  font-family: "BdrText SemiBold", helvetica, arial, sans-serif;
}

.font-regular-semibold-italic {
  font-family: "BdrText SemiBold Italic", helvetica, arial, sans-serif;
}

.font-regular-bold {
  font-family: "BdrText Bold", helvetica, arial, sans-serif;
}

.font-regular-bold-italic {
  font-family: "BdrText Bold Italic", helvetica, arial, sans-serif;
}

h1 {
  font-family: "BdrText Regular", helvetica, arial, sans-serif;
}

h2 {
  font-family: "BdrText Regular", helvetica, arial, sans-serif;
  font-size: 1.625rem;
}

h3 {
  font-family: "BdrText Regular", helvetica, arial, sans-serif;
}

h4 {
  font-family: "BdrText Regular", helvetica, arial, sans-serif;
  font-size: 1.2188rem;
}

h5 {
  font-family: "BdrText Regular", helvetica, arial, sans-serif;
  font-size: 1.0156rem;
}

.bdr-light-blue {
  color: #296ef5;
}

.clr-bdr-gray {
  color: #878787 !important;
}

.text-bdr-blue {
  color: #0043ce;
}

.text-bdr-red {
  color: #ca1e28;
}

.text-max-width {
  max-width: 100%;
}

.text-disabled {
  color: #a8a8a8;
}

.font-gray {
  color: #c6c6c6;
}

.opacity-0 {
  opacity: 0;
  filter: alpha(opacity=0);
}

.opacity-25 {
  opacity: 0.25;
  filter: alpha(opacity=25);
}

.opacity-50 {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.opacity-75 {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.opacity-100 {
  opacity: 1;
  filter: alpha(opacity=100);
}

.shake {
  animation-name: shake;
  animation-duration: 0.9s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
}

@keyframes shake {
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }

  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }

  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}

.animated-background,
.placeholder > .animated-background {
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: place-holder-animation;
  animation-timing-function: linear;
  background: #ededed;
  background: linear-gradient(to right, #eee 10%, #ddd 18%, #eee 33%);
  background-size: 800px 104px;
}

@keyframes place-holder-animation {
  0% {
    background-position: -468px 0;
  }

  100% {
    background-position: 468px 0;
  }
}

.vwrap,
.vslide {
  box-sizing: border-box;
  height: 2rem;
  line-height: 2rem;
  text-align: left;
}

.vwrap {
  overflow: hidden;
  display: inline-block;
  margin-left: 0.35rem;
}

.vmove {
  position: relative;
  bottom: 0;
  animation: slidev ease 10s infinite;
}

.vmove:hover {
  animation-play-state: paused;
}

.vslide {
  padding: 0;
}

@keyframes slidev {
  0% {
    bottom: 0;
  }

  30% {
    bottom: 0;
  }

  33% {
    bottom: 100%;
  }

  63% {
    bottom: 100%;
  }

  66% {
    bottom: 200%;
  }

  97% {
    bottom: 200%;
  }

  100% {
    right: 0;
  }
}
@keyframes wiggle {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  10% {
    transform: translate(-1px, -2px) rotate(-1deg);
  }

  20% {
    transform: translate(-3px, 0) rotate(1deg);
  }

  30% {
    transform: translate(3px, 2px) rotate(0deg);
  }

  40% {
    transform: translate(1px, -1px) rotate(1deg);
  }

  50% {
    transform: translate(-1px, 2px) rotate(-1deg);
  }

  60% {
    transform: translate(-3px, 1px) rotate(0deg);
  }

  70% {
    transform: translate(3px, 1px) rotate(-1deg);
  }

  80% {
    transform: translate(-1px, -1px) rotate(1deg);
  }

  90% {
    transform: translate(1px, 2px) rotate(0deg);
  }

  100% {
    transform: translate(1px, -2px) rotate(-1deg);
  }
}
@keyframes opening {
  0% {
    transform: rotateZ(120deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}
@keyframes closing {
  0% {
    transform: rotateZ(120deg);
  }

  100% {
    transform: rotateZ(0deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeinred {
  0% {
    background-color: hex(#e60037, 0);
  }

  50% {
    background-color: hex(#e60037, 100%);
  }
}

.ripple {
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.ripple::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  filter: alpha(opacity=0);
  transition: transform 0.5s, opacity 1s;
}

.ripple:active::after {
  transform: scale(0, 0);
  opacity: 0.2;
  transition: 0s;
}

::-webkit-autofill {
  padding-left: 0.75rem;
}

::-webkit-autofill:hover {
  padding-left: 0.75rem;
}

::-webkit-autofill:focus {
  padding-left: 0.75rem;
}

::-webkit-calendar-picker-indicator {
  width: calc(100% - 7rem);
  height: calc(100% - 0.125rem);
  top: 0;
  right: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  cursor: pointer;
  position: absolute;
}

::-webkit-inner-spin-button {
  display: none;
}

.unselectable {
  user-select: none;
  user-select: none;
  user-select: none;
  user-select: none;
  user-select: none;
}

.list-style-disc {
  list-style-type: disc;
}

.list-style-circle {
  list-style-type: circle;
}

.cursor-pointer {
  cursor: pointer;
}

.sticky-bottom {
  position: sticky;
  bottom: 0;
}

.no-hover:hover {
  transform: none !important;
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%) !important;
}

.no-hover .card-body {
  box-shadow: none !important;
}

.line-and-half {
  line-height: 60%;
}

html,
body {
  scroll-behavior: auto !important;
}

html {
  position: relative;
  min-height: 100vh;
}

html * {
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(90deg, #030045 0%, #030045 100%);
  background-color: #ededed;
  background-repeat: repeat-y;
  background-position: 0 0;
  background-attachment: fixed;
  background-size: 25% 100%;
  margin-bottom: 60px;
  font-family: "BdrText Regular", helvetica, arial, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden scroll;
}

body.env-test-space {
  margin-top: 4rem;
}

body.no-sidebar {
  background-image: none;
}

.bdr-blue {
  background: none;
  background-color: #0043ce;
  user-select: none;
  color: #eef4fd;
}

.bdr-blue:not(:disabled):not(.disabled):hover {
  background-color: #001d6c;
  color: #eef4fd;
}

.bdr-blue:not(:disabled):not(.disabled):focus {
  background-color: #1033a2;
  color: #eef4fd;
}

.bdr-blue:not(:disabled):not(.disabled):active {
  background-color: #1033a2;
  color: #eef4fd;
}

.bdr-blue:not(:disabled):not(.disabled).focus {
  background-color: #1033a2;
  color: #eef4fd;
}

.bdr-blue:not(:disabled):not(.disabled).active {
  background-color: #1033a2;
  color: #eef4fd;
}

.bdr-red {
  background: none;
  background-color: #e60037;
  user-select: none;
  color: #fff;
}

.bdr-red:not(:disabled):not(.disabled):hover {
  background: none;
  border-color: #f08a8c;
  background-color: #f08a8c;
  color: #fff;
}

.bdr-red:not(:disabled):not(.disabled):focus {
  background: none;
  border-color: #f08a8c;
  background-color: #f08a8c;
  color: #fff;
}

.bdr-red:not(:disabled):not(.disabled):active {
  background: none;
  border-color: #a2191f;
  background-color: #a2191f;
  color: #fff;
}

.bdr-red:not(:disabled):not(.disabled).focus {
  background: none;
  border-color: #f08a8c;
  background-color: #f08a8c;
  color: #fff;
}

.bdr-red:not(:disabled):not(.disabled).active {
  background: none;
  border-color: #a2191f;
  background-color: #a2191f;
  color: #fff;
}

.bg-img-none {
  background-image: none;
}

.box-shadow-level-1 {
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 15%);
}

.box-shadow-level-2 {
  box-shadow: 0 2px 6px 0 rgb(0 0 0 / 15%);
}

.box-shadow-level-3 {
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
}

.box-shadow-level-4 {
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
}

.box-shadow-level-custom {
  box-shadow: 0 1px 6px 0 rgb(0 0 0 / 40%);
}

.header-logo img {
  height: 34px;
}

.header-logo a {
  display: inline-block;
}

.header-logo.textright img {
  height: 27px;
  margin-top: -0.5rem;
}

.header-logo.textright a {
  display: inline-block;
}

.header-logo-text {
  text-align: center;
}

.header-logo-text h2 {
  margin-bottom: 0;
}

#header a {
  text-decoration: none;
}

#header div {
  display: inline-block;
  margin-top: 1.55rem;
  vertical-align: top;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  line-height: 60px;
  background-color: #fff;
  font-size: 95.5%;
  border-top: 4px solid #ededed;
}

.footer a:not(.btn) {
  color: #000;
  text-decoration: none;
}

.footer .dtrust-logo {
  width: 100%;
  max-width: 9rem;
}

.footer .eidas-logo {
  position: absolute;
  left: 15px;
  bottom: 0;
}

.footer .eidas-logo img {
  width: 25px;
  height: auto;
}

.footer .bdr-logo {
  position: absolute;
  right: 15px;
  bottom: 0;
}

.footer .bdr-logo img {
  width: 14rem;
  height: 25px;
}

.form-group {
  position: relative;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
}

.step-row .form-group {
  margin-top: 1.5rem;
}

.form-control-placeholder {
  position: absolute;
  top: 0;
  padding: 0.75rem 0 0 1.125rem;
  transition: all 200ms;
  cursor: text;
  user-select: none;
  color: #000029;
  font-size: 80% !important;
  transform: translate3d(-1rem, -2.25rem, 0) !important;
  opacity: 1 !important;
  filter: alpha(opacity=100);
  left: 0 !important;
}

.form-control {
  height: 2.8188rem;
}

#ul_selfsign_document:focus + #lbl_ul_selfsign_document {
  background: none;
  border-color: #001d6c;
  background-color: #001d6c;
}

.form-control-file {
  width: 0.1px !important;
  height: 0.1px !important;
  overflow: hidden !important;
  position: absolute !important;
  z-index: -1 !important;
}

.form-control-file:not(:disabled) + .btn:hover {
  background: none;
  border-color: #78a9ff;
  background-color: #78a9ff;
  color: #fff;
}

.form-control-file:not(:disabled) + .btn:focus {
  background: none;
  border-color: #78a9ff;
  background-color: #78a9ff;
  color: #fff;
}

.form-control-file:not(:disabled) + .btn.focus {
  background: none;
  border-color: #78a9ff;
  background-color: #78a9ff;
  color: #fff;
}

.form-control-file:not(:disabled):not(.disabled) ~ .invalid-feedback {
  display: block;
}

.form-control-file:disabled + .btn {
  background-color: #a8a8a8 !important;
  border: 1px solid #a8a8a8 !important;
  color: #f2f2f2 !important;
  opacity: 1;
  filter: alpha(opacity=100);
  cursor: default;
}

.form-control-file:disabled + .btn:active {
  color: #f2f2f2 !important;
  background-color: #a8a8a8;
  opacity: 1;
  filter: alpha(opacity=100);
  cursor: default;
}

.form-control-file:disabled + .btn:active::after {
  transform: none;
}

.form-control-file:disabled + .btn:hover {
  color: #f2f2f2 !important;
  background-color: #a8a8a8;
  opacity: 1;
  filter: alpha(opacity=100);
  cursor: default;
}

.form-control-file:disabled + .btn::after {
  content: none;
}

.has-danger .form-control:not(:disabled):not(.disabled) ~ .invalid-feedback {
  display: block;
}

.has-danger .form-control:not(:disabled):not(.disabled) {
  border: 1.5px solid #e60037 !important;
  background-image: url("../../img/caution_red.svg");
  background-position: right 10px center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.has-danger .form-control:not(:disabled):not(.disabled):focus {
  border: 1.5px solid #e60037 !important;
  background-image: url("../../img/caution_red.svg");
  background-position: right 10px center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem #f08a8c !important;
}

.has-danger .form-control:not(:disabled):not(.disabled):active {
  border: 1.5px solid #e60037 !important;
  background-image: url("../../img/caution_red.svg");
  background-position: right 10px center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem #f08a8c !important;
}

.has-danger .form-control:not(:disabled):not(.disabled):hover {
  border: 1.5px solid #f08a8c !important;
  background-image: url("../../img/caution_red.svg");
  background-position: right 10px center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.navbar-nav .nav-link {
  text-align: left;
  color: #000;
  background-color: #fff;
  padding: 20px;
  font-weight: bold;
  border-bottom: 2px solid #ededed;
  text-decoration: none !important;
}

.navbar-nav .nav-link:not(.icon-sign-me-coins-white)::after {
  content: "";
  background: url("../../img/arrow-right_blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  float: right;
}

#top-usermenu {
  position: fixed;
  z-index: 1010;
  margin-left: -15px;
  width: 100%;
  background-color: #fff;
  height: 3.7rem;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
}

#top-usermenu-placeholder {
  display: block;
  height: 3.5rem;
}

#side-nav-toggle:active {
  background-color: #fff;
  border-color: transparent;
  outline: none;
}

#side-nav-toggle:focus {
  outline: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

#side-nav {
  position: fixed;
  left: 0;
  top: 3.7rem;
  width: 100%;
  background-color: rgb(255 255 255 / 85%);
  z-index: 999;
}

#side-nav > div:first-child {
  background-color: #fff;
}

#side-nav .btn.btn-sm {
  padding-left: 1.75rem;
}

#side-nav .btn.btn-sm::before {
  content: "";
  display: "inline-block";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: -1.6rem;
}

#side-nav #btn_refresh::before {
  background-image: url("../../img/update.svg");
}

#side-nav #btn_refresh:hover::before {
  background-image: url("../../img/update-white-1.svg");
}

#side-nav #btn_logout::before {
  width: 1.8rem;
  height: 1.8rem;
  margin-left: -1.8rem;
  margin-top: -0.25rem;
  background-image: url("../../img/logout-white.svg");
}

#side-nav.env-test-space {
  margin-top: 4rem;
}

.navbar-dark .navbar-toggler {
  border-color: #fff;
}

.navbar-toggler > .burger-stroke-1,
.navbar-toggler > .burger-stroke-2,
.navbar-toggler > .burger-stroke-3 {
  width: 25px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

.navbar-toggler > .burger-stroke-2 {
  margin: 4px 0;
}

.navbar-toggler:not(.collapsed) .burger-stroke-1 {
  transform: rotate(45deg) translate(4px, 4px);
}

.navbar-toggler:not(.collapsed) .burger-stroke-2 {
  opacity: 0;
  filter: alpha(opacity=0);
}

.navbar-toggler:not(.collapsed) .burger-stroke-3 {
  transform: rotate(-45deg) translate(4px, -4px);
}

.btn.navbar-toggler {
  border-radius: 0;
  padding: 1.25rem 0.9375rem;
  float: left;
  background-color: #fff;
}

.btn.navbar-toggler:focus {
  box-shadow: none;
}

.username-box {
  width: calc(100% - 45px);
  line-height: 1.25rem;
  padding-right: 0.5rem;
}

.username-box img {
  width: 40px;
  height: 40px;
}

.avatar-box {
  top: 0.5rem;
  right: 0.5rem;
}

.left-side-content {
  color: #fff;
}

.left-side-content a:not(.btn):not(.nav-link) {
  color: #fff !important;
}

.left-side-content.lsc-mobile {
  background: linear-gradient(90deg, #030045 0%, #030045 100%);
}

.left-side-content.lsc-mobile ul {
  margin-left: 1.4rem;
  width: auto;
}

.lsc-fixed {
  position: fixed;
  width: calc((100% - 8.5rem) / 4);
  padding: 0.5rem;
}

#advantages {
  padding-left: 0;
}

.lsc-usermenu-wrapper {
  position: sticky;
  left: 0;
  top: 0;
  width: calc(100% + 30px);
  height: 100%;
  padding-top: 6.55rem;
  margin-left: -15px;
}

.lsc-usermenu-wrapper li {
  background: none !important;
}

.lsc-usermenu-wrapper .nav-item {
  padding-inline: 0.5rem;
  padding-block: 0.1rem;
  margin: 0;
  border-radius: 4px;
}

.lsc-usermenu-wrapper .nav-link {
  border-radius: 4px;
  padding-left: 4rem;
  line-height: 2rem;
  background: none;
  border: none;
  color: #fff;
}

.lsc-usermenu-wrapper .nav-link:hover, .lsc-usermenu-wrapper .nav-link:focus, .lsc-usermenu-wrapper .nav-link.focus-visible:focus:not(:focus-visible), .lsc-usermenu-wrapper .nav-link:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

.lsc-usermenu-wrapper .nav-link:hover, .lsc-usermenu-wrapper .nav-link:focus, .lsc-usermenu-wrapper .nav-link.focus-visible:focus:not(:focus-visible) {
  background: #eef4fd;
  color: #4589ff;
}

.lsc-usermenu-wrapper .nav-link[class*="icon-home-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-home-white"]:focus::before {
  background-image: url("../../img/home-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-home-white"].active::before {
  background-image: url("../../img/home-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-history-inbox-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-history-inbox-white"]:focus::before {
  background-image: url("../../img/history-inbox-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-history-inbox-white"].active::before {
  background-image: url("../../img/history-inbox-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-signpdf-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-signpdf-white"]:focus::before {
  background-image: url("../../img/signpdf-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-signpdf-white"].active::before {
  background-image: url("../../img/signpdf-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-identification-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-identification-white"]:focus::before {
  background-image: url("../../img/identification-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-identification-white"].active::before {
  background-image: url("../../img/identification-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-personaldata-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-personaldata-white"]:focus::before {
  background-image: url("../../img/personaldata-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-personaldata-white"].active::before {
  background-image: url("../../img/personaldata-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-app-signup-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-app-signup-white"]:focus::before {
  background-image: url("../../img/app-signup-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-app-signup-white"].active::before {
  background-image: url("../../img/app-signup-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-personalsettings-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-personalsettings-white"]:focus::before {
  background-image: url("../../img/personalsettings-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-personalsettings-white"].active::before {
  background-image: url("../../img/personalsettings-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-sign-me-coins-white"]:hover::before, .lsc-usermenu-wrapper .nav-link[class*="icon-sign-me-coins-white"]:focus::before {
  background-image: url("../../img/sign-me-coins-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-sign-me-coins-white"]:hover span:last-child::after, .lsc-usermenu-wrapper .nav-link[class*="icon-sign-me-coins-white"]:focus span:last-child::after {
  background: url("../../img/external-4589ff.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-sign-me-coins-white"].active::before {
  background-image: url("../../img/sign-me-coins-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link[class*="icon-sign-me-coins-white"].active span:last-child::after {
  background: url("../../img/external-0043ce.svg");
}

.lsc-usermenu-wrapper .nav-link.active {
  background: #f6f6f6;
  color: #0043ce;
}

.lsc-usermenu-wrapper .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 2rem;
  height: 2rem;
  margin-left: -3rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.lsc-usermenu-wrapper .nav-link:not(.icon-sign-me-coins-white)::after {
  display: none;
}

#top-bar {
  background-color: #fff;
  color: #000;
  padding: 0.3rem;
  margin-inline: -15px;
  min-height: 2.1rem;
  border-bottom: 4px solid #ededed;
  margin-left: calc(-0.5 * var(--bs-gutter-x));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
}

#top-bar .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 0.5rem;
  margin-left: 0.2rem;
}

#top-bar .icon-logout {
  padding: 0.7rem;
  margin-right: -4px;
}

#top-bar .username-lbl {
  max-width: 30rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#logo-header {
  border-bottom: 4px solid #ededed;
  background: #fff;
}

::-webkit-scrollbar {
  background: #fff;
  border-radius: 100vh;
}

::-webkit-scrollbar-track {
  background: #e4e4e4;
  border-radius: 100vh;
  margin-block: 0.1rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 100vh;
  background: #a8a8a8;
}

#identification_cards .card li, #advantages li, .identification_utility li {
  margin: 1rem 0;
  padding-left: 1.8rem;
  list-style-type: none;
  background: url("../../img/circle-dark.svg") no-repeat 0 0.4rem;
  background-size: 0.8rem 0.8rem;
}

.icon-app-signup {
  background-image: url("../../img/app-signup.svg");
}

.icon-app-signup::before {
  background-image: url("../../img/app-signup.svg");
}

.icon-app-signup-white {
  background-image: url("../../img/app-signup-white.svg");
}

.icon-app-signup-white::before {
  background-image: url("../../img/app-signup-white.svg");
}

.icon-caution {
  background-image: url("../../img/caution.svg");
}

.icon-caution::before {
  background-image: url("../../img/caution.svg");
}

.icon-check {
  background-image: url("../../img/check.svg");
}

.icon-check::before {
  background-image: url("../../img/check.svg");
}

.icon-check-green {
  background-image: url("../../img/check-green.svg");
}

.icon-check-green::before {
  background-image: url("../../img/check-green.svg");
}

.icon-caution_red {
  background-image: url("../../img/caution_red.svg");
}

.icon-caution_red::before {
  background-image: url("../../img/caution_red.svg");
}

.icon-directory {
  background-image: url("../../img/directory.svg");
}

.icon-directory::before {
  background-image: url("../../img/directory.svg");
}

.icon-document {
  background-image: url("../../img/document.svg");
}

.icon-document::before {
  background-image: url("../../img/document.svg");
}

.icon-documents-white {
  background-image: url("../../img/documents-white.svg");
}

.icon-documents-white::before {
  background-image: url("../../img/documents-white.svg");
}

.icon-delete-white {
  background-image: url("../../img/delete-white.svg");
}

.icon-delete-white::before {
  background-image: url("../../img/delete-white.svg");
}

.icon-delete {
  background-image: url("../../img/delete.svg");
}

.icon-delete::before {
  background-image: url("../../img/delete.svg");
}

.icon-error {
  background-image: url("../../img/error.svg");
}

.icon-error::before {
  background-image: url("../../img/error.svg");
}

.icon-history-inbox {
  background-image: url("../../img/history-inbox.svg");
}

.icon-history-inbox::before {
  background-image: url("../../img/history-inbox.svg");
}

.icon-history-inbox-white {
  background-image: url("../../img/history-inbox-white.svg");
}

.icon-history-inbox-white::before {
  background-image: url("../../img/history-inbox-white.svg");
}

.icon-history-inbox-verified {
  background-image: url("../../img/history-inbox-verified.svg");
}

.icon-history-inbox-verified::before {
  background-image: url("../../img/history-inbox-verified.svg");
}

.icon-history-inbox-unverified {
  background-image: url("../../img/history-inbox-unverified.svg");
}

.icon-history-inbox-unverified::before {
  background-image: url("../../img/history-inbox-unverified.svg");
}

.icon-home-white {
  background-image: url("../../img/home-white.svg");
}

.icon-home-white::before {
  background-image: url("../../img/home-white.svg");
}

.icon-identification {
  background-image: url("../../img/identification.svg");
}

.icon-identification::before {
  background-image: url("../../img/identification.svg");
}

.icon-identification-white {
  background-image: url("../../img/identification-white.svg");
}

.icon-identification-white::before {
  background-image: url("../../img/identification-white.svg");
}

.icon-info {
  background-image: url("../../img/info.svg");
}

.icon-info::before {
  background-image: url("../../img/info.svg");
}

.icon-info-i-0043ce {
  background-image: url("../../img/info-i-0043ce.svg");
}

.icon-info-i-0043ce::before {
  background-image: url("../../img/info-i-0043ce.svg");
}

.icon-language {
  background-image: url("../../img/language.svg");
}

.icon-language::before {
  background-image: url("../../img/language.svg");
}

.icon-loader {
  background-image: url("../../img/loader.svg");
}

.icon-loader::before {
  background-image: url("../../img/loader.svg");
}

.icon-login {
  background-image: url("../../img/login.svg");
}

.icon-login::before {
  background-image: url("../../img/login.svg");
}

.icon-logout {
  background-image: url("../../img/logout.svg");
}

.icon-logout::before {
  background-image: url("../../img/logout.svg");
}

.icon-mail {
  background-image: url("../../img/mail.svg");
}

.icon-mail::before {
  background-image: url("../../img/mail.svg");
}

.icon-missing {
  background-image: url("../../img/missing.svg");
}

.icon-missing::before {
  background-image: url("../../img/missing.svg");
}

.icon-mobile {
  background-image: url("../../img/mobile.svg");
}

.icon-mobile::before {
  background-image: url("../../img/mobile.svg");
}

.icon-online-identfunction {
  background-image: url("../../img/online-identfunction.svg");
}

.icon-online-identfunction::before {
  background-image: url("../../img/online-identfunction.svg");
}

.icon-password {
  background-image: url("../../img/password.svg");
}

.icon-password::before {
  background-image: url("../../img/password.svg");
}

.icon-pdf-document {
  background-image: url("../../img/pdf-document.svg");
}

.icon-pdf-document::before {
  background-image: url("../../img/pdf-document.svg");
}

.icon-personaldata {
  background-image: url("../../img/personaldata.svg");
}

.icon-personaldata::before {
  background-image: url("../../img/personaldata.svg");
}

.icon-personaldata-white {
  background-image: url("../../img/personaldata-white.svg");
}

.icon-personaldata-white::before {
  background-image: url("../../img/personaldata-white.svg");
}

.icon-personalsettings {
  background-image: url("../../img/personalsettings.svg");
}

.icon-personalsettings::before {
  background-image: url("../../img/personalsettings.svg");
}

.icon-personalsettings-white {
  background-image: url("../../img/personalsettings-white.svg");
}

.icon-personalsettings-white::before {
  background-image: url("../../img/personalsettings-white.svg");
}

.icon-process {
  background-image: url("../../img/process.svg");
}

.icon-process::before {
  background-image: url("../../img/process.svg");
}

.icon-sign {
  background-image: url("../../img/sign.svg");
}

.icon-sign::before {
  background-image: url("../../img/sign.svg");
}

.icon-signaturecertificates {
  background-image: url("../../img/signaturecertificates.svg");
}

.icon-signaturecertificates::before {
  background-image: url("../../img/signaturecertificates.svg");
}

.icon-signaturecertificates-white {
  background-image: url("../../img/signaturecertificates-white.svg");
}

.icon-signaturecertificates-white::before {
  background-image: url("../../img/signaturecertificates-white.svg");
}

.icon-signdocument {
  background-image: url("../../img/signdocument.svg");
}

.icon-signdocument::before {
  background-image: url("../../img/signdocument.svg");
}

.icon-signpdf {
  background-image: url("../../img/signpdf.svg");
}

.icon-signpdf::before {
  background-image: url("../../img/signpdf.svg");
}

.icon-signpdf-white {
  background-image: url("../../img/signpdf-white.svg");
}

.icon-signpdf-white::before {
  background-image: url("../../img/signpdf-white.svg");
}

.icon-use_document {
  background-image: url("../../img/use_document.svg");
}

.icon-use_document::before {
  background-image: url("../../img/use_document.svg");
}

.icon-update {
  background-image: url("../../img/update.svg");
}

.icon-update::before {
  background-image: url("../../img/update.svg");
}

.icon-update-white {
  background-image: url("../../img/update-white.svg");
}

.icon-update-white::before {
  background-image: url("../../img/update-white.svg");
}

.icon-update-black {
  background-image: url("../../img/update-black.svg");
}

.icon-update-black::before {
  background-image: url("../../img/update-black.svg");
}

.icon-sign-me-coins-white {
  background-image: url("../../img/sign-me-coins-white.svg");
}

.icon-sign-me-coins-white::before {
  background-image: url("../../img/sign-me-coins-white.svg");
}

.icon-faq-info {
  background-image: url("../../img/faq-info.svg");
}

.icon-faq-info::before {
  background-image: url("../../img/faq-info.svg");
}

.icon-home-0043ce {
  background-image: url("../../img/home-0043ce.svg");
}

.icon-home-0043ce::before {
  background-image: url("../../img/home-0043ce.svg");
}

.icon-signpdf-0043ce {
  background-image: url("../../img/signpdf-0043ce.svg");
}

.icon-signpdf-0043ce::before {
  background-image: url("../../img/signpdf-0043ce.svg");
}

.icon-identification-0043ce {
  background-image: url("../../img/identification-0043ce.svg");
}

.icon-identification-0043ce::before {
  background-image: url("../../img/identification-0043ce.svg");
}

.icon-personaldata-0043ce {
  background-image: url("../../img/personaldata-0043ce.svg");
}

.icon-personaldata-0043ce::before {
  background-image: url("../../img/personaldata-0043ce.svg");
}

.icon-app-signup-0043ce {
  background-image: url("../../img/app-signup-0043ce.svg");
}

.icon-app-signup-0043ce::before {
  background-image: url("../../img/app-signup-0043ce.svg");
}

.icon-personalsettings-0043ce {
  background-image: url("../../img/personalsettings-0043ce.svg");
}

.icon-personalsettings-0043ce::before {
  background-image: url("../../img/personalsettings-0043ce.svg");
}

.icon-sign-me-coins-0043ce {
  background-image: url("../../img/sign-me-coins-0043ce.svg");
}

.icon-sign-me-coins-0043ce::before {
  background-image: url("../../img/sign-me-coins-0043ce.svg");
}

.icon-external-0043ce {
  background-image: url("../../img/external-0043ce.svg");
}

.icon-external-0043ce::before {
  background-image: url("../../img/external-0043ce.svg");
}

.icon-verified-007e5a {
  background-image: url("../../img/verified-007e5a.svg");
}

.icon-verified-007e5a::before {
  background-image: url("../../img/verified-007e5a.svg");
}

.icon-verified-0043ce {
  background-image: url("../../img/verified-0043ce.svg");
}

.icon-verified-0043ce::before {
  background-image: url("../../img/verified-0043ce.svg");
}

.icon-unverified-0043ce {
  background-image: url("../../img/unverified-0043ce.svg");
}

.icon-unverified-0043ce::before {
  background-image: url("../../img/unverified-0043ce.svg");
}

.icon-unverified-e4650e {
  background-image: url("../../img/unverified-e4650e.svg");
}

.icon-unverified-e4650e::before {
  background-image: url("../../img/unverified-e4650e.svg");
}

.icon-unverified-e60037 {
  background-image: url("../../img/unverified-e60037.svg");
}

.icon-unverified-e60037::before {
  background-image: url("../../img/unverified-e60037.svg");
}

.icon-2fa {
  background-image: url("../../img/2fa.svg");
}

.icon-2fa::before {
  background-image: url("../../img/2fa.svg");
}

.icon-digitale-signatur {
  background-image: url("../../img/digitale-signatur.svg");
}

.icon-digitale-signatur::before {
  background-image: url("../../img/digitale-signatur.svg");
}

.icon-other {
  background-image: url("../../img/other.svg");
}

.icon-other::before {
  background-image: url("../../img/other.svg");
}

.state-indicator {
  padding: 3px 5px;
  border-radius: 3px;
  line-height: normal;
  text-align: center;
}

.state-indicator[data-state="0"] {
  background-color: #eef4fd;
  border: 1px solid #0043ce;
  color: #0043ce;
}

.state-indicator[data-state="1"] {
  background-color: #e4f6f1;
  border: 1px solid #007e5a;
  color: #007e5a;
}

.state-indicator[data-state="2"] {
  background-color: #e4f6f1;
  border: 1px solid #007e5a;
  color: #007e5a;
}

.state-indicator[data-state="3"] {
  background-color: #fff2f2;
  border: 1px solid #e60037;
  color: #e60037;
}

.state-indicator[data-state="4"] {
  background-color: #fff2f2;
  border: 1px solid #e60037;
  color: #e60037;
}

.state-indicator[data-state="5"] {
  background-color: #fff2f2;
  border: 1px solid #e60037;
  color: #e60037;
}

.state-indicator[data-state="6"] {
  background-color: #fff2f2;
  border: 1px solid #e60037;
  color: #e60037;
}

.state-indicator[data-state="7"] {
  background-color: #fff2f2;
  border: 1px solid #e60037;
  color: #e60037;
}

.state-indicator.text-disabled {
  background-color: #a8a8a8;
  border: 1px solid #a8a8a8;
  color: #f2f2f2;
}

.info-feedback, .warn-feedback, .invalid-feedback {
  padding: 1rem 0.5rem 0.7rem;
  margin-top: -0.05rem;
  border-left-style: solid;
  border-left-width: 2px;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 15%);
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  color: #000;
}

.invalid-feedback {
  border-left-color: #e60037;
  display: inline-block;
  font-size: inherit;
}

.warn-feedback {
  border-left-color: #e4650e;
}

.info-feedback {
  border-left-color: #0043ce;
}

.loading-gif, .loading-circle, .spinner-border {
  width: 2.2rem;
  height: 2.2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.loading-circle, .spinner-border {
  animation: spin 1s ease infinite;
  animation-timing-function: linear;
}

.spinner-border {
  background-color: #fff;
  background-image: url("../../img/loader.svg");
  border: none;
}

.loading-gif {
  background-image: url("../../img/loading-document.gif");
}

.signme-coins-black::after, .signme-coins-white::after, .signme-coins::after {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0.1rem;
  position: relative;
}

.signme-coins::after {
  background-image: url("../../img/sign-me-coins.svg");
}

.signme-coins-white::after {
  background-image: url("../../img/sign-me-coins_white.svg");
}

.signme-coins-black::after {
  background-image: url("../../img/sign-me-coins_black.svg");
}

.remaining-time {
  text-align: right;
  float: right;
  width: 2.5rem;
  font-weight: bold;
  border-radius: 15%;
  background-color: transparent;
}

.remaining-time.alert-time {
  animation: fadeinred 2s ease-in-out infinite;
}

.logout-in-topmenu {
  display: inline;
  right: 5.7rem;
}

.logout-in {
  display: inline;
  left: 1rem;
  margin-right: 0.25rem;
}

input {
  border: 1px solid #a8a8a8;
  box-shadow: none;
  border-radius: 0.15rem;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  display: none;
}

input::placeholder {
  color: #a8a8a8;
}

input:disabled + .btn-upload::before {
  background: url("../../img/upload_grey.svg");
  margin-top: 1px;
}

input:disabled, input.disabled {
  background-color: #f6f6f6;
  color: #878787;
  border-color: #a8a8a8;
}

input:disabled:focus, input:disabled:focus-visible, input.disabled:focus, input.disabled:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

input:disabled:hover, input.disabled:hover {
  border-color: #a8a8a8;
}

input:not([disabled]):not(.disabled) {
  /* entered */
}

input:not([disabled]):not(.disabled):active {
  border-color: #0043ce;
  color: #000029;
}

input:not([disabled]):not(.disabled):hover {
  border-color: #575757;
}

input:not([disabled]):not(.disabled):focus, input:not([disabled]):not(.disabled).focus-visible:focus:not(:focus-visible) {
  outline: 1px solid #eef4fd;
  box-shadow: 0 0 0 0.25rem #4589ff;
  border-color: #0043ce;
}

input:not([disabled]):not(.disabled):focus::placeholder, input:not([disabled]):not(.disabled).focus-visible:focus:not(:focus-visible)::placeholder {
  color: #c6c6c6;
}

input:not([disabled]):not(.disabled):not([value=""]) {
  color: #000029;
}

input[type="number"] {
  appearance: unset;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  appearance: none;
  margin: 0;
}

input[type="checkbox"] {
  cursor: pointer !important;
}

input[type="checkbox"]:focus {
  border-color: #0043ce;
  box-shadow: 0 0 0 4px #4589ff;
  outline: 1px solid #fff;
}

input[type="checkbox"]:focus-visible {
  border-color: #0043ce;
  box-shadow: 0 0 0 1px #fff;
  outline: 3px solid #4589ff;
}

input[type="date"] {
  font-size: 100%;
  background: url("../../img/arrow-down_blue.svg") center right 1rem/1rem 1rem no-repeat;
}

input[type="radio"] {
  padding: 0.5rem;
}

input[type="radio"]:focus {
  border-color: #0043ce;
  box-shadow: 0 0 0 4px #4589ff;
  outline: 1px solid #fff;
}

input[type="radio"]:focus-visible {
  border-color: #0043ce;
  box-shadow: 0 0 0 1px #fff;
  outline: 3px solid #4589ff;
}

.promotion-style {
  border: 3px solid #f02dcd !important;
  animation: wiggle 0.6s ease;
  box-shadow: 0 0 14px #f02dcd;
  box-shadow: 0 0 14px #f02dcd;
  box-shadow: 0 0 14px #f02dcd;
}

textarea.form-control, textarea {
  box-shadow: none;
  border: 1px solid #c6c6c6;
  padding: 0 1.125rem;
}

textarea:focus {
  box-shadow: none;
  border: 1px solid #0043ce;
}

dl {
  font-size: 0.9rem;
}

.card-body .with-icon {
  padding-left: 3rem;
}

.card-body.with-icon.disabled {
  filter: saturate(0);
}

.card-body.with-icon.ident-icon::before {
  margin-top: 0.5rem;
}

.card {
  border-radius: 2px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
  background-color: #fff;
}

.card.card-full-width {
  width: calc(100% + 2.4rem);
  margin-left: -1.2rem;
}

.card .card-badge {
  position: absolute;
  top: -6%;
  right: 11%;
  padding: 10px 5px;
  background: #0043ce;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  white-space: nowrap;
}

.card-header {
  border-bottom: none;
}

.card-title {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 0.1rem solid #a8a8a8;
}

.card-title.big-title {
  padding-top: 4rem;
  text-align: center;
  background-position: top center;
  background-size: 4rem 4rem;
  background-repeat: no-repeat;
}

.expand-card {
  left: 4rem;
  top: -4rem;
  width: calc(100% - 5rem);
  background-color: transparent;
  color: #fff;
  border-left: 2px solid #d0e2ff;
  padding-left: 0.5rem;
  box-shadow: none;
}

.identcard-icon-price-width {
  width: 15rem;
}

.qr_code_placeholder {
  width: 200px;
  height: 200px;
}

.number-circle {
  border-radius: 50%;
  box-sizing: initial;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 3px solid #0043ce;
  color: #000;
  text-align: center;
  font: 32px Arial, sans-serif;
  line-height: 49px;
  display: inline-block;
}

.number-circle-disabled {
  color: #a8a8a8;
  border: 3px solid #a8a8a8;
  display: inline-block;
}

a:not(.btn):not(.btn-link):not(.nav-link) {
  color: #0043ce;
  text-decoration: underline;
  margin-left: 0;
  margin-right: 0;
  border-radius: 0.15rem;
}

a:not(.btn):not(.btn-link):not(.nav-link).disabled {
  color: #878787;
}

a:not(.btn):not(.btn-link):not(.nav-link).disabled:focus, a:not(.btn):not(.btn-link):not(.nav-link).disabled:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

a:not(.btn):not(.btn-link):not(.nav-link):not(.disabled):active {
  color: #1033a2;
  outline: none;
}

a:not(.btn):not(.btn-link):not(.nav-link):not(.disabled):focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

a:not(.btn):not(.btn-link):not(.nav-link):not(.disabled):hover {
  color: #001d6c;
  outline: none;
}

a:not(.btn):not(.btn-link):not(.nav-link):not(.disabled):focus, a:not(.btn):not(.btn-link):not(.nav-link):not(.disabled).focus-visible:focus:not(:focus-visible) {
  color: #1033a2;
  outline: 4px solid #4589ff;
}

.external-link-white::after, .external-link:not(.disabled):hover::after, .external-link:not(.disabled):focus::after, .external-link:not(.disabled).focus-visible:focus:not(:focus-visible)::after, .external-link:not(.disabled):active::after, .external-link.disabled::after, .external-link::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 0.3rem;
}

.external-link::after {
  background: url("../../img/external-0043ce.svg") center center/contain no-repeat;
}

.external-link.disabled::after {
  background: url("../../img/external-878787.svg") center center/contain no-repeat;
}

.external-link:not(.disabled):active::after {
  background: url("../../img/external-1033a2.svg") center center/contain no-repeat;
}

.external-link:not(.disabled):focus::after, .external-link:not(.disabled).focus-visible:focus:not(:focus-visible)::after {
  background: url("../../img/external-1033a2.svg") center center/contain no-repeat;
}

.external-link:not(.disabled):hover::after {
  background: url("../../img/external-001d6c.svg") center center/contain no-repeat;
}

.external-link-white::after {
  background: url("../../img/external-fff.svg") center center/contain no-repeat;
}

.accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-item {
  border-top: none;
}

.accordion .card-header:first-child {
  border-radius: 0;
}

.accordion > .card {
  overflow: visible;
}

.accordion .spinner-border {
  right: 13px;
  top: 19%;
  z-index: 20;
}

.accordion .collapse-icon-download {
  background: url("../../img/download_blue.svg") center/contain no-repeat;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.2rem;
  right: 3.6rem;
  z-index: 20;
}

.accordion .collapse-icon-downloaded {
  width: 24px;
  height: 24px;
  top: 1.15rem;
  right: 3.6rem;
  z-index: 20;
}

.accordion .card-header {
  padding: 0;
  background-color: #fff;
  transition: all 0.2s ease;
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
}

.accordion .card-header:hover, .accordion .card-header:active, .accordion .card-header:focus-within {
  transition: all 0.2s ease;
  transform: translateY(-2px);
  transform: translateY(-2px);
  transform: translateY(-2px);
  transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgb(0 0 0 / 20%);
  text-decoration: none;
  outline: none !important;
}

.accordion .card-header:focus-within:not(:active) {
  border-left: 0.3rem solid #0043ce;
}

.accordion .card-header .btn-link {
  display: block;
  cursor: pointer;
  width: 100%;
  user-select: none;
  text-align: left;
  color: #333;
  padding: 1.3rem 2.8rem 1.3rem 1.3rem;
  text-decoration: none;
  border: none;
  outline: none;
  background-color: transparent;
}

.accordion .card-header .btn-link:disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.accordion .card-header .btn-link.collapsed .collapse-icon::after {
  background: url("../../img/plus_blue.svg") center/contain no-repeat;
  animation: opening 0.3s ease;
}

.accordion .card-header .btn-link .collapse-icon::after {
  content: "";
  display: block;
  position: absolute;
  background: url("../../img/minus_blue.svg") center/contain no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  top: 1.2rem;
  right: 1.2rem;
  animation: closing 0.3s ease;
}

.accordion .card-header .list-item {
  display: block;
  width: 100%;
  user-select: none;
  text-align: left;
  color: #333;
  padding: 1.3rem 2.8rem 1.3rem 1.3rem;
  text-decoration: none;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  background-color: #fff;
  cursor: default;
}

.accordion.accordion-identification .btn-link, .accordion.accordion-selfservice .btn-link {
  display: inline-block;
  vertical-align: middle;
  padding-right: 0;
  padding-left: 3rem;
  background: none;
  text-decoration: none;
}

.accordion.accordion-identification .btn-link.disabled, .accordion.accordion-identification .btn-link:disabled, .accordion.accordion-selfservice .btn-link.disabled, .accordion.accordion-selfservice .btn-link:disabled {
  color: #a8a8a8;
}

.accordion.accordion-identification .btn-link::before, .accordion.accordion-selfservice .btn-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 2rem;
  height: 2.5rem;
  left: 1rem;
  top: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.accordion.accordion-identification .custom-nav-card, .accordion.accordion-selfservice .custom-nav-card {
  width: 100%;
  background-color: #fff;
  color: #000;
  padding: 1.5rem 0;
  padding-left: 3.5rem;
  border-left: 4px solid #a8a8a8;
  border-radius: 4px;
  transition: all 0.2s ease;
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
}

.accordion.accordion-identification .custom-nav-card:hover, .accordion.accordion-identification .custom-nav-card:active, .accordion.accordion-identification .custom-nav-card:focus, .accordion.accordion-selfservice .custom-nav-card:hover, .accordion.accordion-selfservice .custom-nav-card:active, .accordion.accordion-selfservice .custom-nav-card:focus {
  border-left-color: #0043ce;
  transition: all 0.2s ease;
  transform: translateY(-2px);
  transform: translateY(-2px);
  transform: translateY(-2px);
  transform: translateY(-2px);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -2px rgb(0 0 0 / 20%);
  text-decoration: none;
  outline: none !important;
}

.accordion.accordion-identification .custom-nav-card .unsigned-amount, .accordion.accordion-selfservice .custom-nav-card .unsigned-amount {
  position: absolute;
  top: 50% !important;
  transform: translateY(-50%) !important;
  right: 0;
  height: 100%;
  background-color: #0043ce;
  color: #fff;
  padding: 1rem;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

.accordion.accordion-identification .custom-nav-card .unsigned-amount > span, .accordion.accordion-selfservice .custom-nav-card .unsigned-amount > span {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

html[dir="rtl"] .accordion.accordion-identification .custom-nav-card .unsigned-amount > span, html[dir="rtl"] .accordion.accordion-selfservice .custom-nav-card .unsigned-amount > span {
  transform: translate(50%, -50%) !important;
}

#accordion-documents-viewer.accordion > .card {
  background-color: #fff;
}

#accordion-documents-viewer .card-header {
  border-left: 4px solid #a8a8a8;
}

#accordion-documents-viewer .card-header.viewed {
  border-right: 4px solid #007e5a;
}

#accordion-documents-viewer .card-header:focus-within:not(:active) {
  transition: none;
  border-left-color: #0043ce;
}

#accordion-documents-viewer .card-header:focus, #accordion-documents-viewer .card-header:active {
  transition: none;
  border-left-color: #0043ce;
}

#accordion-documents-viewer.with-remove .card-header {
  border-left-width: 38px;
}

#accordion-documents-viewer.with-remove .icon-accordion-remove {
  content: "";
  background: transparent url("../../img/delete-fff.svg") center/contain no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  top: 1.2rem;
  left: -1.85rem;
  transition: none;
}

#accordion-documents-viewer .btn-link {
  text-decoration: none;
  padding-right: 5.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#accordion-documents-viewer button:disabled {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

#accordion-documents-viewer .icon-caution {
  content: "";
  position: absolute;
  background: #fff url("../../img/caution.svg") center/contain no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  top: 1.2rem;
  right: 1.2rem;
}

#accordion-documents-viewer .icon-accordion-checked {
  content: "";
  position: absolute;
  background: #fff url("../../img/accordion-checked-007e5a.svg") center/contain no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  top: 1.2rem;
  right: 1.2rem;
}

#accordion-documents-viewer .input-mw-52 {
  max-width: 52px;
  padding-left: 0.4rem;
  padding-right: 0.4rem;
}

#identification_cards .badge {
  top: 0.5rem;
  right: 0.5rem;
}

#identification_cards .badge-primary {
  background-color: #296ef5;
}

#identification_cards .badge-danger {
  background-color: #e60037;
}

#identification_cards .card.show {
  border-radius: 4px;
}

#identification_cards .time {
  top: 1rem;
  right: 1rem;
}

#identification_cards h4 {
  font-size: 1.1rem;
}

.password-toggle {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url("../../img/eye-blind.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 9;
  transition: background-image 0.3s ease;
}

.password-toggle:hover {
  background-image: url("../../img/eye-blind_hover.svg");
}

.password-toggle.pw-visible {
  background-image: url("../../img/eye.svg");
}

.password-toggle.pw-visible:hover {
  background-image: url("../../img/eye_hover.svg");
}

.has-danger .password-toggle {
  right: 2.5rem;
}

.badge-img {
  height: 64px;
}

button:not([disabled]):not([data-bs-target]),
.btn:not([disabled]):not(.disabled) {
  transition: all 0.2s ease;
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
  transform: translateY(0);
}

button:not([disabled]):not([data-bs-target]):hover,
.btn:not([disabled]):not(.disabled):hover {
  transition: all 0.2s ease;
  transform: translateY(-1px);
  transform: translateY(-1px);
  transform: translateY(-1px);
  transform: translateY(-1px);
  transform: translateY(-1px);
}

button:not([disabled]):not([data-bs-target]):focus,
.btn:not([disabled]):not(.disabled):focus {
  transition: none;
}

.btn {
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  text-transform: none;
  font-size: 110%;
  transition-property: background-color, border-color;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 0 0 2px transparent, 0 0 0 0.2rem transparent;
  border-width: 0.15rem;
  transform: translate3d(0, 0, 0);
}

.btn:disabled, .btn.disabled {
  color: #fff;
  background-color: #a8a8a8;
  cursor: default;
  border-color: #a8a8a8;
  opacity: 1;
  filter: alpha(opacity=100);
}

.btn:disabled:focus, .btn:disabled:focus-visible, .btn.disabled:focus, .btn.disabled:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.btn:disabled:active, .btn.disabled:active {
  background-color: #a8a8a8;
  border-color: #a8a8a8;
}

.btn:not(a):not([disabled]):active, .btn:not(button):not(.disabled):active {
  background-color: #1033a2;
  border-color: #1033a2;
}

.btn:not(a):not([disabled]):focus:not(:focus-visible), .btn:not(button):not(.disabled):focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
}

.btn:not(a):not([disabled]):focus, .btn:not(a):not([disabled]).focus-visible:focus:not(:focus-visible), .btn:not(button):not(.disabled):focus, .btn:not(button):not(.disabled).focus-visible:focus:not(:focus-visible) {
  outline: 1px solid #eef4fd;
  box-shadow: 0 0 0 0.25rem #4589ff;
}

.btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  filter: alpha(opacity=0);
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, #000 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  transition: transform 0.5s, opacity 1s;
}

.btn:active::after {
  transform: scale(0, 0);
  transition: 0s;
  opacity: 0.2;
  filter: alpha(opacity=20);
}

.btn-white {
  color: #0043ce;
  background-color: #fff;
  border: 0.15rem solid #a8a8a8;
}

.btn-white:disabled, .btn-white.disabled {
  color: #a8a8a8 !important;
  border-color: #c6c6c6 !important;
  background-color: #f6f6f6 !important;
}

.btn-white:disabled:hover, .btn-white.disabled:hover {
  color: #a8a8a8 !important;
  border-color: #c6c6c6 !important;
}

.btn-white:not(a):not([disabled]):active, .btn-white:not(a):not([disabled]):focus, .btn-white:not(button):not(.disabled):active, .btn-white:not(button):not(.disabled):focus {
  color: #1033a2;
  border-color: #1033a2;
  background-color: #f6f6f6;
}

.btn-white:not(a):not([disabled]):hover, .btn-white:not(button):not(.disabled):hover {
  background-color: #0043ce;
  color: #eef4fd;
  border-color: #0043ce;
}

.btn-delete {
  padding-left: 3rem;
  border: 0.15rem solid #e60037;
  color: #e60037;
}

.btn-delete i {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0;
  margin-left: -2rem;
  background-image: url("../../img/delete-white.svg");
}

.btn-delete:not(a):not([disabled]) i, .btn-delete:not(button):not(.disabled) i {
  background-image: url("../../img/delete.svg");
}

.btn-delete:not(a):not([disabled]):active, .btn-delete:not(button):not(.disabled):active {
  border: 0.15rem solid #e60037;
  color: #e60037;
  background-color: #fff;
}

.btn-delete:not(a):not([disabled]):hover, .btn-delete:not(button):not(.disabled):hover {
  background-color: #e60037;
  color: #fff;
}

.btn-delete:not(a):not([disabled]):hover .icon-delete, .btn-delete:not(button):not(.disabled):hover .icon-delete {
  background-image: url("../../img/delete-white.svg");
}

.btn-delete:not(a):not([disabled]):focus-visible, .btn-delete:not(button):not(.disabled):focus-visible {
  color: #fff;
  background-color: #e60037;
  border-color: #e60037;
}

.btn-delete:not(a):not([disabled]):focus-visible .icon-delete, .btn-delete:not(button):not(.disabled):focus-visible .icon-delete {
  background-image: url("../../img/delete-white.svg");
}

.btn-delete:not(a):not([disabled]):focus, .btn-delete:not(a):not([disabled]).focus-visible:focus:not(:focus-visible), .btn-delete:not(button):not(.disabled):focus, .btn-delete:not(button):not(.disabled).focus-visible:focus:not(:focus-visible) {
  box-shadow: 0 0 0 0.25rem #f08a8c;
}

button.btn-delete {
  color: #fff;
  background-color: #e60037;
}

button.btn-delete i {
  background-image: url("../../img/delete-white.svg");
}
@media (max-width: 992px) {
  button.btn-delete i {
    margin-left: -2rem;
  }
}

button.btn-delete:not([disabled]) i {
  background-image: url("../../img/delete-white.svg");
}

button.btn-delete:not([disabled]):active, button.btn-delete:not([disabled]):hover {
  background-color: #a2191f;
  border-color: #a2191f;
  color: #fff;
}

button.btn-delete:not([disabled]):active .icon-delete, button.btn-delete:not([disabled]):hover .icon-delete {
  background-image: url("../../img/delete-white.svg");
}

button.btn-delete:not([disabled]):focus-visible {
  color: #fff;
  background-color: #e60037;
  border-color: #e60037;
}

button.btn-delete:not([disabled]):focus, button.btn-delete:not([disabled]).focus-visible:focus:not(:focus-visible) {
  box-shadow: 0 0 0 0.25rem #f08a8c;
}

.btn-download {
  padding-left: 3rem;
  max-width: 100%;
}

.btn-download::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: -2rem;
  background-image: url("../../img/download_gray.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-download:not(a):not([disabled])::before, .btn-download:not(button):not(.disabled)::before {
  background-image: url("../../img/download_blue.svg");
}

.btn-download:not(a):not([disabled]):hover::before, .btn-download:not(button):not(.disabled):hover::before {
  background-image: url("../../img/download_white.svg");
}

.btn-upload {
  padding-left: 3rem;
  max-width: 100%;
}

.btn-upload::before {
  content: "";
  height: 2rem;
  width: 2rem;
  position: absolute;
  margin-left: -2rem;
  background: transparent url("../../img/upload_white.svg") no-repeat center/contain;
  margin-top: -2px;
}

.btn-verify {
  padding-left: 3rem;
}

.btn-verify i {
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0;
  margin-left: -2rem;
  background-image: url("../../img/verified-fff.svg");
}

.btn-verify:not(a):not([disabled]) i, .btn-verify:not(button):not(.disabled) i {
  background-image: url("../../img/verified-0043ce.svg");
}

.btn-verify:not(a):not([disabled]):hover, .btn-verify:not(button):not(.disabled):hover {
  color: #fff;
}

.btn-verify:not(a):not([disabled]):hover .icon-verify, .btn-verify:not(button):not(.disabled):hover .icon-verify {
  background-image: url("../../img/verified-fff.svg");
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 16px;
  line-height: 22px;
  border-radius: 0.25rem;
}

.btn-sm .collapse-icon-arrow {
  display: inline-block;
  background: url("../../img/arrow-right_blue.svg") 2px center/contain no-repeat;
  height: 0.75rem;
  width: 1.25rem;
  transition: transform 0.3s ease;
  transform: rotate(270deg);
}

.btn-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 75%;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm.collapsed .collapse-icon-arrow {
  transform: rotate(90deg);
  background-position: 6px center;
}

select.form-control, select {
  padding: 0 1.125rem;
  font-size: 100%;
  box-shadow: none;
  border: 1px solid #c6c6c6;
  background: #fff url("../../img/arrow-down_blue.svg") center right 1rem/1rem 1rem no-repeat;
  color: #000029;
}

select:focus {
  outline: 1px solid #eef4fd !important;
  box-shadow: 0 0 0 0.25rem #4589ff !important;
  border-color: #0043ce !important;
}

select {
  cursor: pointer !important;
}

select.form-control:not([multiple]) {
  height: 2.8188rem;
}

#sel_mobilephone_countrycode {
  padding-left: 0;
}

#sel_mobilephone_countrycode + div {
  padding: 0;
}

#text-display {
  position: fixed;
  z-index: -1;
  cursor: pointer;
  color: #000;
  opacity: 0;
  filter: alpha(opacity=0);
  background: #fff;
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
  transition: transform 0.5s ease-in-out, opacity 0.7s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.7s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.7s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.7s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 0.7s ease-in-out;
}

#text-display.from-right {
  padding: 2rem 2rem 2rem 4rem;
  border-left: 0.3rem solid transparent;
  top: 0.5rem;
  right: 0;
  text-align: left;
}

#text-display.active {
  z-index: 1020;
  opacity: 1;
  filter: alpha(opacity=100);
}

#text-display::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  left: 1.3rem;
}

#text-display.warning::before {
  background-image: url("../../img/alert-circle-e4650e.svg");
}

#text-display.successful::before {
  background-image: url("../../img/check-007e5a.svg");
}

#text-display.info::before {
  background-image: url("../../img/info.svg");
}

#text-display.danger::before {
  background-image: url("../../img/error.svg");
}

#text-display.verify-successful::before {
  background-image: url("../../img/verified-007e5a.svg");
}

#text-display.verify-unsuccessful::before {
  background-image: url("../../img/unverified-e60037.svg");
}

#text-display.warning {
  border-color: #e4650e;
}

#text-display.successful {
  border-color: #007e5a;
}

#text-display.info {
  border-color: #0043ce;
}

#text-display.danger {
  border-color: #e60037;
}

#text-display.verify-successful {
  border-color: #007e5a;
}

#text-display.verify-unsuccessful {
  border-color: #e60037;
}

@media (max-width: 768px) {
  #text-display.from-right {
    top: 0;
    right: 0;
  }
}
@media (max-width: 576px) {
  #text-display.from-right {
    width: 100%;
  }
}

.bg-identification, .bg-online-identfunction, .bg-secondary, .bg-2fa, .bg-info, .alert-info, .bg-successful, .alert-successful, .bg-warning, .alert-warning, .bg-danger, .alert-danger {
  color: #000029;
  background: #fff !important;
}

.alert-danger {
  border-left: 0.3rem solid #e60037;
}

.alert-danger .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.alert-danger .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.alert-danger .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/error.svg");
}

.alert-danger progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.alert-danger progress[value] {
  border: none;
}

.alert-danger progress[value]::-webkit-progress-bar {
  background-color: rgb(230 0 55 / 5%);
  border-radius: 10px;
}

.alert-danger progress[value]::-webkit-progress-value {
  background: #e60037;
  border-radius: 10px;
}

.alert-danger progress[value]::-moz-progress-bar {
  background: #e60037;
  border-radius: 10px;
}

.bg-danger {
  border-left: 0.3rem solid #e60037;
}

.bg-danger .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-danger .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-danger .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/error.svg");
}

.bg-danger progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-danger progress[value] {
  border: none;
}

.bg-danger progress[value]::-webkit-progress-bar {
  background-color: rgb(230 0 55 / 5%);
  border-radius: 10px;
}

.bg-danger progress[value]::-webkit-progress-value {
  background: #e60037;
  border-radius: 10px;
}

.bg-danger progress[value]::-moz-progress-bar {
  background: #e60037;
  border-radius: 10px;
}

.alert-warning {
  border-left: 0.3rem solid #e4650e;
}

.alert-warning .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.alert-warning .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.alert-warning .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/alert-circle-e4650e.svg");
}

.alert-warning progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.alert-warning progress[value] {
  border: none;
}

.alert-warning progress[value]::-webkit-progress-bar {
  background-color: rgb(228 101 14 / 5%);
  border-radius: 10px;
}

.alert-warning progress[value]::-webkit-progress-value {
  background: #e4650e;
  border-radius: 10px;
}

.alert-warning progress[value]::-moz-progress-bar {
  background: #e4650e;
  border-radius: 10px;
}

.bg-warning {
  border-left: 0.3rem solid #e4650e;
}

.bg-warning .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-warning .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-warning .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/alert-circle-e4650e.svg");
}

.bg-warning progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-warning progress[value] {
  border: none;
}

.bg-warning progress[value]::-webkit-progress-bar {
  background-color: rgb(228 101 14 / 5%);
  border-radius: 10px;
}

.bg-warning progress[value]::-webkit-progress-value {
  background: #e4650e;
  border-radius: 10px;
}

.bg-warning progress[value]::-moz-progress-bar {
  background: #e4650e;
  border-radius: 10px;
}

.alert-successful {
  border-left: 0.3rem solid #007e5a;
}

.alert-successful .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.alert-successful .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.alert-successful .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/check-007e5a.svg");
}

.alert-successful progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.alert-successful progress[value] {
  border: none;
}

.alert-successful progress[value]::-webkit-progress-bar {
  background-color: rgb(0 126 90 / 5%);
  border-radius: 10px;
}

.alert-successful progress[value]::-webkit-progress-value {
  background: #007e5a;
  border-radius: 10px;
}

.alert-successful progress[value]::-moz-progress-bar {
  background: #007e5a;
  border-radius: 10px;
}

.bg-successful {
  border-left: 0.3rem solid #007e5a;
}

.bg-successful .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-successful .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-successful .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/check-007e5a.svg");
}

.bg-successful progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-successful progress[value] {
  border: none;
}

.bg-successful progress[value]::-webkit-progress-bar {
  background-color: rgb(0 126 90 / 5%);
  border-radius: 10px;
}

.bg-successful progress[value]::-webkit-progress-value {
  background: #007e5a;
  border-radius: 10px;
}

.bg-successful progress[value]::-moz-progress-bar {
  background: #007e5a;
  border-radius: 10px;
}

.alert-info {
  border-left: 0.3rem solid #0043ce;
}

.alert-info .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.alert-info .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.alert-info .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/info.svg");
}

.alert-info progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.alert-info progress[value] {
  border: none;
}

.alert-info progress[value]::-webkit-progress-bar {
  background-color: rgb(0 67 206 / 5%);
  border-radius: 10px;
}

.alert-info progress[value]::-webkit-progress-value {
  background: #0043ce;
  border-radius: 10px;
}

.alert-info progress[value]::-moz-progress-bar {
  background: #0043ce;
  border-radius: 10px;
}

.bg-info {
  border-left: 0.3rem solid #0043ce;
}

.bg-info .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-info .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-info .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/info.svg");
}

.bg-info progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-info progress[value] {
  border: none;
}

.bg-info progress[value]::-webkit-progress-bar {
  background-color: rgb(0 67 206 / 5%);
  border-radius: 10px;
}

.bg-info progress[value]::-webkit-progress-value {
  background: #0043ce;
  border-radius: 10px;
}

.bg-info progress[value]::-moz-progress-bar {
  background: #0043ce;
  border-radius: 10px;
}

.bg-2fa {
  border-left: 0.3rem solid #000029;
}

.bg-2fa .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-2fa .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-2fa .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/app-signup-000029.svg");
}

.bg-2fa progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-2fa progress[value] {
  border: none;
}

.bg-2fa progress[value]::-webkit-progress-bar {
  background-color: rgb(0 0 41 / 5%);
  border-radius: 10px;
}

.bg-2fa progress[value]::-webkit-progress-value {
  background: #000029;
  border-radius: 10px;
}

.bg-2fa progress[value]::-moz-progress-bar {
  background: #000029;
  border-radius: 10px;
}

.bg-secondary {
  border-left: 0.3rem solid #a8a8a8;
}

.bg-secondary .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-secondary .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-secondary .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 1.8rem;
  left: 1rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/info-secondary.svg");
}

.bg-secondary progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-secondary progress[value] {
  border: none;
}

.bg-secondary progress[value]::-webkit-progress-bar {
  background-color: rgb(168 168 168 / 5%);
  border-radius: 10px;
}

.bg-secondary progress[value]::-webkit-progress-value {
  background: #a8a8a8;
  border-radius: 10px;
}

.bg-secondary progress[value]::-moz-progress-bar {
  background: #a8a8a8;
  border-radius: 10px;
}

.bg-online-identfunction {
  border-left: 0.3rem solid #0043ce;
}

.bg-online-identfunction .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-online-identfunction .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-online-identfunction .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  top: 2.15rem;
  left: 1.4rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/online-identfunction.svg");
}

.bg-online-identfunction progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-online-identfunction progress[value] {
  border: none;
}

.bg-online-identfunction progress[value]::-webkit-progress-bar {
  background-color: rgb(0 67 206 / 5%);
  border-radius: 10px;
}

.bg-online-identfunction progress[value]::-webkit-progress-value {
  background: #0043ce;
  border-radius: 10px;
}

.bg-online-identfunction progress[value]::-moz-progress-bar {
  background: #0043ce;
  border-radius: 10px;
}

.bg-identification {
  border-left: 0.3rem solid #0043ce;
}

.bg-identification .card-title {
  border-bottom: none;
  padding-bottom: 0;
}

.bg-identification .with-icon {
  padding-left: 4rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin: 0;
}

.bg-identification .with-icon .card-title::before {
  content: "";
  display: block;
  position: absolute;
  width: 2.6rem;
  height: 2.6rem;
  top: 2.15rem;
  left: 1.4rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-image: url("../../img/identification.svg");
}

.bg-identification progress {
  display: block;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  appearance: none;
  width: 100%;
  height: 0.27rem;
}

.bg-identification progress[value] {
  border: none;
}

.bg-identification progress[value]::-webkit-progress-bar {
  background-color: rgb(0 67 206 / 5%);
  border-radius: 10px;
}

.bg-identification progress[value]::-webkit-progress-value {
  background: #0043ce;
  border-radius: 10px;
}

.bg-identification progress[value]::-moz-progress-bar {
  background: #0043ce;
  border-radius: 10px;
}

.qr-code-border {
  border: 3px solid #000;
}

.card-check {
  background-color: #fff !important;
  border-left: 0.3rem solid #a8a8a8 !important;
  padding-left: 2.5rem;
  transition: border-left 0.3s ease;
}

.card-check.form-check-label:has(.form-check-input:checked) {
  border-left: 0.3rem solid #007e5a !important;
}

.card-check.form-check-label.focus:has(.form-check-input:checked) {
  background-color: #78a9ff;
}

.card-check.card-error {
  border-left: 0.3rem solid #e60037 !important;
}

.card-check::before {
  margin-left: 2.5rem;
  margin-top: 1rem;
}

.card-check::after {
  margin-left: 2.5rem;
  margin-top: 1rem;
}

.form-check-input {
  border: 2px solid #6f6f6f;
}

.form-check-input:checked {
  background-color: #0043ce;
  border-color: #0043ce;
}

.form-check-input:active {
  filter: none;
}

.form-check-label {
  color: #000029;
}

.expanded-hidden[aria-expanded="true"] {
  display: none;
}

.expanded-visible {
  display: none;
}

.expanded-visible[aria-expanded="true"] {
  display: block;
}

.show > .bdr-blue.dropdown-toggle {
  background: none;
  border-color: #030045;
  background-color: #030045;
  color: #fff;
}

#env-notification {
  position: sticky;
  top: 0;
  font-size: 0.75rem;
  text-align: center;
  box-shadow: 0 2px 10px 0 rgb(0 0 0 / 25%);
  background-color: #e60037;
  color: #fff;
  z-index: 1000;
  opacity: 0.8;
  filter: alpha(opacity=80);
  height: 4rem;
  padding: 0.5rem;
  margin: 0 -15px;
  pointer-events: none;
}

.dialog {
  display: none;
  max-width: 40rem;
  width: 95%;
  background-color: #fff;
  z-index: 1031;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 4px 12px 0 rgb(0 0 0 / 15%);
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
}

html[dir="rtl"] .dialog {
  transform: translate(50%, -50%) !important;
}

.dialog.active {
  display: block;
}

.dialog-icon {
  margin-top: 1.5rem;
}

.dialog-icon i {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 60% 60%;
  background-position: center;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgb(0 0 41 / 15%);
  width: 5rem;
  height: 5rem;
  position: relative;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

html[dir="rtl"] .dialog-icon i {
  transform: translateX(50%) !important;
}

.dialog-icon i.info {
  background-color: #eef4fd;
}

.dialog-icon i.error {
  background-color: #fff2f2;
}

.dialog-title {
  margin-top: 1rem;
  text-align: center;
}

.dialog-content {
  padding: 0.5rem 3.5rem 1rem;
}

.dialog:focus-visible {
  outline: none;
}

.dialog .btn {
  font-size: 1rem;
}
@media (max-width: 576px) {
  .dialog .btn:last-child {
    margin-top: 1rem;
  }
}

#dialog-layer {
  display: none;
  background-color: rgb(255 255 255 / 85%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1030;
}

#dialog-layer.active {
  display: block;
}

#loading-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  background-color: rgb(255 255 255 / 80%);
  z-index: 1032;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loading-layer.active {
  visibility: visible;
  transition: visibility 0.7s ease-in-out;
  transition: visibility 0.7s ease-in-out;
  transition: visibility 0.7s ease-in-out;
  transition: visibility 0.7s ease-in-out;
  transition: visibility 0.7s ease-in-out;
}

#loading-layer .loading {
  max-width: 40rem;
  background-color: #fff;
  z-index: 1033;
  font-size: 1.4rem;
  padding: 3.5rem 2rem;
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
  text-align: center;
}

#loading-layer .loading-icon {
  width: 3rem;
  height: 3rem;
  display: inline-block;
  margin-bottom: 0.8rem;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../../img/loading-document.gif");
}
@media (max-width: 768px) {
  #loading-layer .loading {
    width: 98%;
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  html[dir="rtl"] #loading-layer .loading {
    transform: translate(50%, -50%) !important;
  }
}
@media (min-width: 768px) {
  #loading-layer .loading {
    width: 60%;
  }
}

#file-input-dropzone label.has-focus {
  outline: 4px solid #4589ff;
  outline-offset: 2px;
  border-radius: 8px;
  transition: none;
}

#file-input-dropzone .invalid-feedback {
  background-color: #fff;
}

#file-input-dropzone .base {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

#file-input-dropzone .dropzone-label {
  display: none;
}

#file-input-dropzone .form-group {
  margin-top: 1.5rem;
}

#file-input-dropzone .dropzone-btn {
  padding: 0;
}

#file-input-dropzone .btn:hover {
  background-color: #001d6c;
}

#file-input-dropzone .icon {
  height: 5rem;
  width: 5rem;
  margin: 0 auto;
  margin-top: 2.2rem;
}

#file-input-dropzone:not(.active) {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#file-input-dropzone:not(.active) * {
  pointer-events: auto;
}

#file-input-dropzone.active {
  background: #eef4fd;
  width: 100%;
  border: 0.15rem dashed #0043ce;
  min-height: 18.6rem;
  color: #0043ce;
}

#file-input-dropzone.active.file-error {
  background-color: #fff2f2;
  border: 0.15rem dashed #e60037;
  color: #e60037;
}

#file-input-dropzone.active.file-error:hover {
  background-color: #fff2f2;
  border: 0.15rem dashed #e60037;
  color: #e60037;
}

#file-input-dropzone.active * {
  pointer-events: none;
}

#file-input-dropzone.active .dropzone-label {
  display: block;
}

#file-input-dropzone.active .dropzone-btn {
  padding: 0 1rem;
}

#file-input-dropzone.active.dragged {
  background: rgb(0 67 206 / 10%);
  border-color: #0043ce;
  color: #0043ce;
}

#file-input-dropzone.active:hover {
  cursor: pointer;
  color: #001d6c;
  background: rgb(69 137 255 / 10%);
  border-color: #001d6c;
}

#file-input-dropzone.active:hover .btn {
  background: none;
  border-color: #001d6c;
  background-color: #001d6c;
  color: #fff;
}

#stepper {
  margin-block: 0.5rem;
  display: flex !important;
  flex-direction: row;
}

#stepper .stepper-item {
  flex: 1;
}

#stepper .stepper-item:nth-last-child(3)::before {
  background-image: url("../../img/upload-878787.svg");
}

#stepper .stepper-item:nth-last-child(2)::before {
  background-image: url("../../img/signpdf-stepper-878787.svg");
}

#stepper .stepper-item:nth-last-child(1)::before {
  background-image: url("../../img/save-file-878787.svg");
}

#stepper .stepper-item .step-text {
  font-size: 0.9rem;
  white-space: nowrap;
  margin-top: 0.2rem;
  color: #878787;
}

#stepper .stepper-item.active::before {
  background-color: #001d6c;
  border-color: #001d6c;
}

#stepper .stepper-item.active:nth-last-child(3)::before {
  background-image: url("../../img/upload_white.svg");
}

#stepper .stepper-item.active:nth-last-child(2)::before {
  background-image: url("../../img/signpdf_stepper-white.svg");
}

#stepper .stepper-item.active:nth-last-child(1)::before {
  background-image: url("../../img/save_file_white.svg");
}

#stepper .stepper-item.active .step-text {
  color: #001d6c;
}

#stepper .stepper-item.done::before {
  border-color: #001d6c;
  border-width: 2px;
}

#stepper .stepper-item.done:nth-last-child(3)::before {
  background-image: url("../../img/upload-001d6c.svg");
}

#stepper .stepper-item.done:nth-last-child(2)::before {
  background-image: url("../../img/signpdf-stepper-001d6c.svg");
}

#stepper .stepper-item.done:nth-last-child(1)::before {
  background-image: url("../../img/save-file-001d6c.svg");
}

#stepper .stepper-item.done .step-text {
  color: #001d6c;
}

#stepper .stepper-item::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #c6c6c6;
  background-repeat: no-repeat;
  background-position-x: 1px;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 15%);
}

#stepper .stepper-item:not(:last-child)::after {
  content: "";
  position: relative;
  width: calc(100% - 2.5rem - 1rem);
  height: 0.1rem;
  top: 1.25rem;
  left: 50%;
  background-color: #c6c6c6;
  order: -1;
}

.layover-box .card-body.with-icon::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: 1rem;
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
  top: 1.25rem;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-item {
  margin-bottom: 0 !important;
  margin-inline: 0.2rem;
}

.nav-tabs .nav-item .nav-link {
  color: #2d2d2d !important;
  text-decoration: none !important;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 15%);
  border-top: 4px solid #ededed;
  border-bottom: none;
  border-left: 1px solid #ededed;
  border-right: 1px solid #ededed;
  font-weight: 700;
}

.nav-tabs .nav-item .nav-link:focus:not(:focus-visible) {
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0.25rem 0.25rem 0 0 !important;
}

.nav-tabs .nav-item .nav-link:focus, .nav-tabs .nav-item .nav-link.focus-visible:focus:not(:focus-visible) {
  outline: 4px solid #4589ff;
  outline-offset: -4px;
  border-radius: 8px;
}

.nav-tabs .nav-item .nav-link.show, .nav-tabs .nav-item .nav-link.active {
  background-color: #fff;
  color: #0043ce !important;
  border-top: 4px solid #0043ce;
}

.icon-zip-downloaded::before, .icon-zip-download::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  padding-right: 2rem;
  display: inline-block;
  vertical-align: middle;
}

.icon-zip-download::before {
  background: #fff url("../../img/zip-download.svg") center/contain no-repeat;
}

.icon-zip-downloaded {
  padding-top: 0.05rem;
}

.icon-zip-downloaded::before {
  background: #fff url("../../img/zip-downloaded.gif") center/contain no-repeat;
}

@supports (-moz-appearance: none) {
  input[type="date"] {
    padding-right: 2.5rem;
  }
}
@media (max-width: 591px) {
  .badge-img {
    max-width: 180px;
  }

  .badge-container {
    min-width: 51%;
  }
}
@media (min-width: 767px) and (max-width: 879px) {
  .badge-img {
    max-width: 180px;
  }

  .badge-container {
    min-width: 51%;
  }
}
@media (min-width: 1200px) and (max-width: 1549px) {
  .badge-img {
    max-width: 180px;
  }

  .badge-container {
    min-width: 51%;
  }

  #identification_cards > div {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    margin-top: 0.5rem;
  }
}
@media (min-width: 770px) {
  #env-notification {
    height: auto;
    padding: 0;
  }

  body.env-test-space {
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.5px) {
  body {
    background-size: 33.333%;
  }

  .lsc-usermenu-wrapper {
    width: calc(100% + 30px);
  }

  .lsc-fixed {
    width: calc((100% - 5rem) / 12 * 4);
  }

  #start-html,
  body > div:first-of-type,
  #sign-html {
    margin-bottom: 5.5rem !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  body {
    background-size: 25%;
  }

  .lsc-usermenu-wrapper {
    width: calc(100% + 30px);
  }

  .lsc-fixed {
    width: calc((100% - 5rem) / 12 * 3);
  }

  #start-html,
  body > div:first-of-type,
  #sign-html {
    margin-bottom: 5.5rem !important;
  }
}
@media (min-width: 768px) {
  .form-control-file:disabled + .btn:active {
    box-shadow: none;
    transform: none;
  }
}
@media (max-width: 767px) {
  body {
    background-image: none;
  }

  .footer {
    font-size: 71.5%;
  }

  section .history-detail-html {
    margin-bottom: 1.5rem;
  }
}
@media (min-resolution: 0.001dpcm) and (max-width: 1024px) {
  input[type="date"] {
    padding-top: 12px;
  }
}
@media (min-resolution: 0.001dpcm) {
  input[type="file"] {
    padding-top: 6px;
  }
}
@media (max-width: 575px) {
  #btn_continue,
  #btn_save {
    order: 1;
    margin-bottom: 0.5rem;
  }

  #btn_back,
  #btn_cancel {
    order: 2;
  }

  #btn_delete {
    order: 3;
  }

  body > div.container-fluid {
    padding-bottom: 5rem;
  }
}
@media (max-width: 576px) {
  #sel_mobilephone_countrycode {
    padding-right: 0;
  }

  .footer {
    font-size: 71%;
  }

  .footer .col {
    line-height: 2rem;
  }

  .left-side-content.lsc-mobile {
    margin-bottom: 4rem;
  }
}
@media (min-width: 1400px) {
  body {
    background-size: 16.6%;
  }

  .lsc-fixed {
    width: 14%;
  }

  .lsc-usermenu-wrapper {
    width: calc(100% + 30px);
  }
}
@media (max-width: 340px) {
  #identification_cards img {
    display: none;
  }

  #identification_cards ul {
    padding-left: 0;
  }

  #identification_cards ul li {
    padding-left: 1.1rem !important;
  }

  #identification_cards .card-body .px-3 {
    padding-left: 0.3rem !important;
    padding-right: 0.3rem !important;
  }

  #identification_cards .flex-xs-column {
    flex-direction: column !important;
  }

  div.xs {
    display: block !important;
  }

  span.xs,
  img.xs {
    display: inline !important;
  }

  .d-xs-none {
    display: none !important;
  }

  .mt-xs-1 {
    margin-top: 0.5rem;
  }
}
@media (min-width: 341px) {
  .xs {
    display: none;
  }
}

.verify-indicator {
  padding: 3px 5px;
  border-radius: 3px;
  line-height: normal;
  text-align: center;
}

.verify-indicator span[class*="icon-"] {
  width: 1.1rem;
  background-repeat: no-repeat;
}

.verify-indicator[data-state="0"] {
  background-color: #e4f6f1;
  border: 1px solid #007e5a;
  color: #007e5a;
}

.verify-indicator[data-state="1"] {
  background-color: #eef4fd;
  border: 1px solid #0043ce;
  color: #0043ce;
}

.verify-indicator[data-state="2"] {
  background-color: #e4f6f1;
  border: 1px solid #007e5a;
  color: #007e5a;
}

.verify-indicator[data-state="3"] {
  background-color: #e4f6f1;
  border: 1px solid #007e5a;
  color: #007e5a;
}

.verify-indicator[data-state="4"] {
  background-color: #e4f6f1;
  border: 1px solid #007e5a;
  color: #007e5a;
}

.verify-indicator[data-state="5"] {
  background-color: #fff2f2;
  border: 1px solid #e60037;
  color: #e60037;
}

.verify-indicator[data-state="6"] {
  background-color: #fff2f2;
  border: 1px solid #e60037;
  color: #e60037;
}

.verify-indicator[data-state="7"] {
  background-color: #e4f6f1;
  border: 1px solid #007e5a;
  color: #007e5a;
}

.custom-tooltip {
  position: absolute;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-left: 0.2rem;
  background-size: contain;
}

.custom-tooltip .text {
  position: absolute;
  display: none;
  z-index: 1;
  width: 16rem;
  background-color: #fff;
  color: #000029;
  text-align: center;
  padding: 5px 0;
  border-radius: 2px;
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 15%);
  border: 1px solid #dadada;
  bottom: 143%;
  left: 50%;
  margin-left: -60px;
  user-select: none;
}

.custom-tooltip .text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -76px;
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent;
}

.mandatory {
  position: absolute;
  font-size: 1.6rem;
  color: #0043ce;
  margin-top: -0.7rem;
}
