.PopUpInputWrapper {
  width: 100%;
  opacity: 0;
  -webkit-animation: PopUpInputWrapper-animation-up 0.6s 0s forwards;
          animation: PopUpInputWrapper-animation-up 0.6s 0s forwards;
}

.PopUpInputWrapper--exit {
  opacity: 1;

-webkit-animation: PopUpInputWrapper-animation-down 0.6s 0s forwards;
        animation: PopUpInputWrapper-animation-down 0.6s 0s forwards;
}
.PopUpInputWrapper h2 {
  font-size: 13px;
  font-weight: normal;
  padding: 10px 35px;
  color: #1f3deb;
  z-index: 0;
}

.PopUpInputWrapper__container {
  background: white;
  z-index: 1;
  -webkit-box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0px 10px rgba(0, 0, 0, 0.15);
}

.PopUpInputWrapper__container > button {
  opacity: 0;
  -webkit-animation: PopUpInputWrapper-animation-opacity 0.2s 0s forwards;
          animation: PopUpInputWrapper-animation-opacity 0.2s 0s forwards;
}

.PopUpInput__header {
  padding: 20px 40px;
  border-bottom: 2px solid #3948ec;
  color: #9c9c9c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.PopUpInput__header__svg {
  width: 20px;
  height: 20px;
}

.PopUpInput__header__svg path {
  fill: none;
  stroke-width: 3px;
}

.PopUpInput__header__svg path:nth-child(1) {
  stroke: #a5a5a5;
}

.PopUpInput__header__svg path:nth-child(2) {
  stroke: #2e00fb;
  stroke-width: 4px;
  -webkit-animation: PopUpInput-animation-progress-circle 7s linear infinite;
          animation: PopUpInput-animation-progress-circle 7s linear infinite;
}
.PopUpInput__header__svg--loading path:nth-child(1) {
  -webkit-animation: PopUpInput-animation-progress-circle-full 1s 1s linear forwards;
          animation: PopUpInput-animation-progress-circle-full 1s 1s linear forwards;
}
.PopUpInput__header__svg--loading path:nth-child(2) {
  stroke: #2e00fb;
  stroke-width: 4px;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  -webkit-animation: PopUpInput-animation-progress-circle-full 2s .0s linear forwards;
          animation: PopUpInput-animation-progress-circle-full 2s .0s linear forwards;
}
.PopUpInput__content{
cursor: pointer;
transition: all .5 ease-in;
}
.PopUpInput__content__description {
  padding: 20px 40px;
  font-size: 12px;
  opacity: 0;
  -webkit-animation: PopUpInputWrapper-animation-opacity 0.5s .0s forwards;
          animation: PopUpInputWrapper-animation-opacity 0.5s .0s forwards;
}

.PopUpInput__content__description p {
  padding: 0;
  margin: 0;
  text-align: left;
}

.PopUpInput__content__links {
  padding: 0px 40px;
  opacity: 0;
  -webkit-animation: PopUpInputWrapper-animation-opacity 0.5s .3s forwards;
          animation: PopUpInputWrapper-animation-opacity 0.5s .3s forwards;
}

.PopUpInputBorderTop {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}

.PopUpInputBorderTop button {
  color: #999999;
  border: 0;
  background: none;
}

.PopUpInputBorderTop__text {
  width: 50%;
  color: #333333;
  font-size: 13px;
  text-align: left;
}

.PopUpInputBorderTop__price_link {
  width: 50%;
  color: #333333;
  font-size: 13px;
  border-top: 1px solid #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
}
 
.PopUpInputBorderTop__price_link span {
  margin-right: 20px;
  margin-top: -5px;
  color: #4B50ED;
}

.PopUpInputBorderTop__price_link i {
  font-weight: normal;
}

.PopUpInputBorderTop:before {
  content: "";
  height: 70px;
  width: 50%;
  right: 10px;
  position: absolute;
  z-index: -1;
}

.popupInputAnimationIn {
  opacity: 0;
  -webkit-animation: popupInputAnimationIn-animation-up .8s 0s forwards;
          animation: popupInputAnimationIn-animation-up .8s 0s forwards;
}


@-webkit-keyframes PopUpInputWrapper-animation-up {
  0% {
    -webkit-transform: translateY(200vh);
            transform: translateY(200vh);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes PopUpInputWrapper-animation-up {
  0% {
    -webkit-transform: translateY(200vh);
            transform: translateY(200vh);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes PopUpInputWrapper-animation-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PopUpInputWrapper-animation-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes PopUpInput-animation-progress-circle {
  to {
    stroke-dashoffset: -1100;
  }
}

@keyframes PopUpInput-animation-progress-circle {
  to {
    stroke-dashoffset: -1100;
  }
}

@-webkit-keyframes PopUpInput-animation-progress-circle-full {
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}

@keyframes PopUpInput-animation-progress-circle-full {
  100% {
    stroke-dashoffset: 0;
    opacity: 0;
  }
}
@-webkit-keyframes popupInputAnimationIn-animation-up {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes popupInputAnimationIn-animation-up {
  0% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.PopUpInputContainer {
  background: #fff;
  top: 0;
  bottom: 0;
  z-index: 20;
  width: 100%;
  position: fixed;
  -webkit-animation: PopUpInputContainer-animation-up 0.8s 0s forwards;
          animation: PopUpInputContainer-animation-up 0.8s 0s forwards;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.PopUpInputContainer--active {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  top: 100%;

}
.PopUpInputContainer--exit {
  -webkit-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
  top: 100%;

}
.PopUpInputContainer__header {
  width: 100%;

  height: 55px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;

  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.PopUpInputContainer__header h4 {
  font-weight: normal;
  font-size: 13px;
  margin: 0;
  padding: 0;
  color: #999999;
}

.PopUpInputContainer__header__back img {
  width: 6px;
  margin-right: 20px;
  margin-top: 5px;
}

.PopUpInputContainer__header__close {
  width: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.PopUpInputContainer__header__close img {
  width: 10px;
}

.PopUpInputContainer__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -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;
}
.PopUpInputContainer__content__circle svg {
  width: 200px;
  height: 200px;
  -webkit-transform: rotate(-125deg);
          transform: rotate(-125deg);
}

.PopUpInputContainer__content__circle svg path {
  fill: none;
  stroke-width: 0.1px;
  -webkit-animation: PopUpInputContainer-animation-progress-circle 0.8s ease-out forwards;
          animation: PopUpInputContainer-animation-progress-circle 0.8s ease-out forwards;
}

.PopUpInputContainer__content__circle svg path:nth-child(1) {
  stroke: #999999;
}

.PopUpInputContainer__content__circle svg path:nth-child(2) {
  stroke: #2e00fb;
  stroke-width: 0.9px;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
}

.PopUpInputContainer__content__circle__capital {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  height: 200px;
  margin-top: -200px;
  color: #2e00fb;
}

.PopUpInputContainer__content__circle__capital span {
  margin-top: -20px;
  color: #353535;
  font-weight: 700;
  font-size: 20px;
}

.PopUpInputContainer__content__circle__capital strong {
  font-weight: 700;
  color: #2e00fb;
  margin-top: -7px;
  font-size: 20px;
}

.PopUpInputContainer__content__circle__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background: #fff;
  margin-top: -50px;
  padding: 10px 0;
  z-index: 100;
  position: absolute;
  width: 100%;
  /* bottom: -30px; */
}

.PopUpInputContainer__content__circle__box span {
  color: #999999;
  font-size: 0.9rem;
}

.PopUpInputContainer__content__circle__box strong {
  font-size: 0.9rem;
  /* font-weight: 400; */
  color: #363636;
  /* margin-top: -2px; */
  font-family: 'Poppins-Light';
}


.PopUpInputContainer__content__options {
  width: 100%;
  margin-top: 50px;
}

.PopUpInputContainer__content__options__option {
  width: 100%;
  border-top: 1px solid #999999;
  border-bottom: 1px solid #999999;
  margin-top: -1px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  text-align: center;
  padding: 10px 0px;
  display: flex;
}

.PopUpInputContainer__content__options__option__text {
  text-align: left;
  /* margin-top: 10px; */
}

.PopUpInputContainer__content__options__option__text div {
  font-size: 14px;
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  font-size: 0.9rem;
  color: #999999;
}

.PopUpInputContainer__content__options__option__text span {
  color: #2e00fb;
  margin: 0;
}

.PopUpInputContainer__content__options__option__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-end;
  text-align: center;
  width: 46%;
  /* margin: 0 auto; */
}

.PopUpInputContainer__content__options__option__actions div {
  -webkit-transition: all 0.8s ease-in-out;
  transition: all 0.8s ease-in-out;
  font-size: 0.9rem;
  color: #333333;
}

.PopUpInputContainer__content__options__option__actions button {
  /* width: 24px; */
  /* height: 24px; */
  /* margin: 0 15px; */
  /* border-radius: 50%; */
  /* border: 1px solid #b4b4b4; */
  /* color: #b4b4b4; */
  /* font-weight: normal; */
  background: none;
  /* display: -webkit-box; */
  display: -ms-flexbox;
  /* display: flex; */
  /* -webkit-box-align: center; */
  -ms-flex-align: center;
  /* align-items: center; */
  /* -webkit-box-pack: center; */
  -ms-flex-pack: center;
  /* justify-content: center; */
  /* text-align: center; */
}
.PopUpInputContainer__content__options__option__actions button svg {
  width: 22px;
}
.PopUpInputContainer__content__options__option__actions button:nth-of-type(2) {
  /* background: #2e00fb; */
  /* color: #fff; */
  border: 0;
}

.PopUpInputContainer__footer {
  width: 100%;
  position: absolute;
  bottom: 0;
}

@-webkit-keyframes PopUpInputContainer-animation-up {
  0% {
    -webkit-transform: translateY(200vh);
            transform: translateY(200vh);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes PopUpInputContainer-animation-up {
  0% {
    -webkit-transform: translateY(200vh);
            transform: translateY(200vh);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes PopUpInputContainer-animation-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PopUpInputContainer-animation-opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes PopUpInputContainer-animation-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(200vh);
            transform: translateY(200vh);
  }
}
@keyframes PopUpInputContainer-animation-down {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(200vh);
            transform: translateY(200vh);
  }
}

.PopUpInputcontainerNumber {
  overflow: hidden;

  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 3px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.PopUpInputcontainerNumber__digit {
  position: relative;
  top: 0px;
}

.PopUpInputcontainerNumber__digit--in {
  -webkit-animation: animation-PopUpInputcontainerNumber-in 0.3s 0s forwards;
          animation: animation-PopUpInputcontainerNumber-in 0.3s 0s forwards;
}

.PopUpInputcontainerNumber__digit--out {
  -webkit-animation: animation-PopUpInputcontainerNumber-out 0.3s 0s forwards;
          animation: animation-PopUpInputcontainerNumber-out 0.3s 0s forwards;
}

@-webkit-keyframes animation-PopUpInputcontainerNumber-in {
  0% {
    top: 30px;
    opacity: 0;
  }
  25% {
    top: -30px;
  }
  100% {
    top: 0px;
  }
}

@keyframes animation-PopUpInputcontainerNumber-in {
  0% {
    top: 30px;
    opacity: 0;
  }
  25% {
    top: -30px;
  }
  100% {
    top: 0px;
  }
}

@-webkit-keyframes animation-PopUpInputcontainerNumber-out {
  100% {
    top: 50px;
    opacity: 0;
  }
}

@keyframes animation-PopUpInputcontainerNumber-out {
  100% {
    top: 50px;
    opacity: 0;
  }
}