.IbanContainer {
  overflow: hidden;
  background: #fff;
  top: 0;
  bottom: 0;
  z-index: 21;
  width: 100%;
  position: relative;
  height: 100%;
  -webkit-animation: IbanContainer-animation-up 1s 0s forwards;
          animation: IbanContainer-animation-up 1s 0s forwards;
  scroll-behavior: smooth;
  padding: 25px;
}

.IbanContainer--exit {
  -webkit-animation: IbanContainer-animation-down 1s 0s forwards;
          animation: IbanContainer-animation-down 1s 0s forwards;
}

.IbanContainer__body {
  width: 100%;
  margin: auto 0;
  background: white;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* padding: 10px; */
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.IbanContainer__body__svgs {
  margin: 20px auto;
  fill: none;
  stroke: #1f3deb;
  stroke-width: 12px;
  /*
  stroke-dashoffset: 1000;
  stroke-dasharray: 1000;
  -webkit-animation: IbanContainer-animation-svgs 1.2s .9s ease-in-out forwards;
          animation: IbanContainer-animation-svgs 1.2s .9s ease-in-out forwards;
  */
  z-index: 20;
  margin-top: -35px;
}

.IbanContainer__body strong {
  font-size: 15px;
  font-weight: 500;
}

.IbanContainer__body span {
  font-size: 12px;
  color: #B2B2B2;
}

.IbanContainer__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.IbanContainer__inputs input {
  margin: 40px 3px 20px;
  border: 0;
  padding: 5px 2px;
  outline: none;
  border-bottom: 1px solid #999999;
  color: #000000;
  text-align: center;
}
.IbanContainer__inputs input:focus {
    transition: all .8s ease-out;
  border-bottom: 1px solid #1f3deb;
}

.IbanContainer__inputs input:disabled {
  color: #999999;
  background:white;
}
.IbanContainer__inputs input::-webkit-input-placeholder {
  color: #999999;
}

.IbanContainer__inputs input:-ms-input-placeholder {
  color: #999999;
}

.IbanContainer__inputs input::-ms-input-placeholder {
  color: #999999;
}

.IbanContainer__inputs input::placeholder {
  color: #999999;
}

.IbanContainer__inputs input:nth-of-type(1) {
  width: 40px;
}

.IbanContainer__inputs input:nth-of-type(2) {
  width: 100%;
}

.IbanContainer__button {
  width: 100%;
  /* margin: 20px auto; */
  margin-top: 30px;
}

@-webkit-keyframes IbanContainer-animation-up {
  0% {
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes IbanContainer-animation-up {
  0% {
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes IbanContainer-animation-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(110vh);
            transform: translateY(110vh);
  }
}

@keyframes IbanContainer-animation-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(110vh);
            transform: translateY(110vh);
  }
}

@-webkit-keyframes IbanContainer-animation-svgs {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes IbanContainer-animation-svgs {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.ibanInputErr input{
     transition: all .8s ease-out;
   border-bottom: 1px solid red;
}
  .FieldInputItemIBAN{
    margin-left: -22px;
    margin-top: -23px;
  }
   .FieldInputItemIBAN input{
    background:blue
    height:50px;
    font-size: 0.8rem;
    margin-left: 2px;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 0;
    }
  .FieldInputItemIBAN span{
    color: #a0a0a0;
    margin-left: -11px;
    padding-bottom:2px;
  }