body {
  padding: 0;
  margin: 0;
}
@font-face {
  font-family: Apercu;
  src: url(images/ApercuProRegular.otf);
}
* {
  box-sizing: border-box;
  font-size: 12px !important;
}
input {
  border: unset;
  border-radius: 5px;
  height: 28px;
  font-size: 14px !important;
  background: #ffffff !important;
  -webkit-text-fill-color: #000;
  opacity: 1;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
input:disabled {
  background: #ffffff !important;
  -webkit-text-fill-color: #000;
  opacity: 1;
  font-size: 11px !important;
}

#eskimiadArea {
  font-family: Apercu !important;
  width: 300px;
  height: 250px;
  position: relative;
  background-color: #491335;
  overflow: hidden;
}

img {
  max-width: 100%;
}

.logo {
  position: absolute;
  top: -18px;
  right: 0px;
  width: 61px;
  z-index: 10;
}

.main_text {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 35px;
  left: 50%;
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.action_2 {
  position: absolute;
  top: 0;
  left: 0;
}
.first_screen {
  position: absolute;
  left: 0;
  top: 25px;
  width: 100%;
  height: 100%;
}
.loan_month {
  position: absolute;
  font-weight: bold;
  bottom: 120px;
  left: 34px;
  text-align: center;
  width: 30px;
}
.totalRepayment {
  position: absolute;
  font-weight: bold;
  bottom: 45%;
  right: 11%;
  text-align: center;
  width: 70px;
  font-size: 12px;
}
.monthly-txt,
.month-txt,
.total-txt {
  font-size: 11px !important;
  text-align: center;
  color: #ffffff;
  position: absolute;
  top: 34%;
  left: 32%;
}
.month-txt {
  left: 13%;
  top: 53%;
}
.total-txt {
  left: 67.5%;
}
.monthlyRepayment {
  position: absolute;
  font-weight: bold;
  bottom: 45%;
  right: 42%;
  text-align: center;
  width: 70px;
  font-size: 12px;
}

button {
  position: absolute;
  border: unset;
  cursor: pointer;
  background-color: unset;
}
.increment {
  bottom: 60%;
  left: 35px;
  height: 20px;
  width: 30px;
  background-image: url(images/arrow.png);
  background-size: 100%;
}
.decrement {
  bottom: 89px;
  left: 35px;
  height: 20px;
  width: 30px;
  background-image: url(images/arrow.png);
  background-size: 100%;
  transform: rotate(180deg);
}

.loan_amount {
  position: absolute;
  top: 13%;
  left: 10%;
  width: 241px;
  height: 47px;
  /* background-image: url(images/loan_amount.png); */
  background-size: 100%;
  color: #ffffff;
  text-align: center;
}
.amount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  border: unset;
  text-align: center;
  font-size: 18px;
  border-radius: 5px;
}
.amount:focus {
  outline: unset;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}
.cta {
  opacity: 1;
  position: absolute;
  width: 150px;
  color: #ffffff;
  background-color: #e74972;
  bottom: 35px;
  left: 75px;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  font-size: 14px;
  /* animation: scalePop 1.5s ease-in-out infinite; */
  /* opacity: 0; */
  cursor: pointer;
}
.disclaimer {
  position: absolute;
  top: 74%;
  left: 0;
  width: 100%;

  /* height: 100%; */
  background-color: #491335;
  color: white;
  transform: translateY(100%);
  /* display: none; */
}

marquee {
  font-size: 14px !important;
}
.disclaimer p {
  position: absolute;
  width: 100%;
  top: 35px;
  padding: 0 5px;
  z-index: 15;
  margin: 0;
  /* font-size: 11px !important; */
  line-height: 10px !important;
  text-align: center;
}
.back {
  position: absolute;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  top: 10px;
  left: 10px;
  background-color: #e74972;
  box-shadow: 0px 0px 2px #000;
  cursor: pointer;
}
#preloader {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3000;
  background: #fff;
  height: 100%;
  width: 100%;
}
.linePreloader {
  width: 150px;
  height: 10px;
  background: linear-gradient(to right, #a6375a, #ec4a7d);
  background-color: #852c48;
  margin: auto;
  border-radius: 10px;
  background-size: 20%;
  background-repeat: repeat-y;
  background-position: -20% 0;
  animation: scroll 1.2s ease-in-out infinite;
  position: relative;
  top: 48%;
}
@keyframes scroll {
  50% {
    background-size: 80%;
  }
  100% {
    background-position: 125% 0;
  }
}

@keyframes scalePop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1);
  }

  70% {
    transform: scale(1.1);
  }

  90% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}
