/*--
    Common Css
--*/
body {
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
  color: #000;
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0px;
}

h1,
.h1 {
  font-size: 24px;
  line-height: 56px;
}

h2,
.h2 {
  font-size: 22px;
  line-height: 35px;
}

h3,
.h3 {
  font-size: 20px;
  line-height: 25px;
}

h4,
.h4 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
}

p {
  font-size: 13px;
  line-height: 25px;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  transition: all 0.2s ease-in-out 0s;
}

.mt-100 {
  margin-top: 100px;
}

.bg-1 {
  background-image: url(../images/call-to-action.jpg);
}

.bg-orange {
  background: #f9a743;
}

.bg-opacity {
  position: relative;
}

.bg-opacity:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

a:focus,
.btn:focus,
.btn:active:focus {
  box-shadow: none;
  outline: 0 none;
}

a,
a:active,
a:focus,
a:active {
  text-decoration: none;
}

.section {
  padding: 35px 0;
}

.font-size-60 {
  font-size: 60px;
  line-height: 1.2;
}

@media (max-width: 575px) {
  .font-size-60 {
    font-size: 40px;
  }
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-40 {
  margin-bottom: 40px;
}

/*--
    custom heading
--*/
.text-center {
  text-align: center;
}

.title {
  margin-bottom: 5vh
}

.card {
  margin: auto;
  max-width: 950px;
  width: 90%;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 1rem;
  border: transparent
}

@media(max-width:767px) {
  .card {
    margin: 3vh auto
  }
}

.cart {
  background-color: #f8f9fa;
  padding: 3vh 4vh;
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  position: relative;
}

.cart-success {
  min-height: 550px;
  height: auto;
}

.progress-btn {
  position: relative;
  width: 80px;
  height: 35px;
  border-radius: 5px;
  display: inline-block;
  background: #34a853;
  font-family: "RobotoDraft", "Roboto", sans-serif;
  color: #fff;
  font-weight: normal;
  font-size: 20px;
  transition: all 0.4s ease;
}

.progress-btn:not(.active) {
  cursor: pointer;
}

.progress-btn .btn {
  position: absolute;
  left: 0;
  background: transparent;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 10;
  opacity: 1;
}

.progress-btn .progress {
  width: 0%;
  z-index: 5;
  height: 35px;
  background: #33cc5c;
  opacity: 0;
  transition: all 0.3s ease;
}

.progress-btn.active .progress {
  opacity: 1;
  animation: progress-anim 10s ease 0s;
}

.progress-btn[data-progress-style='indefinite'].active .progress {
  animation: progress-indefinite-anim 1s infinite linear 0s;
}

.progress-btn[data-progress-style='fill-bottom'].active .progress,
.progress-btn[data-progress-style='fill-top'].active .progress {
  height: 5px;
}

.progress-btn[data-progress-style='indefinite-circle'].active .progress {
  animation: dash 2s ease infinite,
    rotate 2s linear infinite;
}

.progress-btn[data-progress-style='indefinite-circle'].active {
  width: 50px;
}

.progress-btn[data-progress-style='fill-back'] .progress {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.progress-btn[data-progress-style='fill-bottom'] .progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
}

.progress-btn[data-progress-style='fill-top'] .progress {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
}

.progress-btn[data-progress-style='indefinite'] .progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20width%3D'50'%20height%3D'100'%20viewBox%3D'0%200%205%2010'%3E%0A%09%3Crect%20width%3D'110%25'%20x%3D'-5%25'%20y%3D'-5%25'%20height%3D'110%25'%20fill%3D'transparent'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'1'%20x2%3D'7'%20y2%3D'10'%20stroke%3D'%23D32F2F'%20stroke-width%3D'2'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'6'%20x2%3D'7'%20y2%3D'15'%20stroke%3D'%23D32F2F'%20stroke-width%3D'2'%2F%3E%0A%09%3Cline%20x1%3D'-2'%20y1%3D'-4'%20x2%3D'7'%20y2%3D'5'%20stroke%3D'%23D32F2F'%20stroke-width%3D'2'%2F%3E%0A%3C%2Fsvg%3E");
}

.progress-btn[data-progress-style='indefinite-circle'] .progress {
  width: 40px;
  height: 40px;
  background: transparent;
  position: absolute;
  top: 5px;
  left: calc(50% - 20px);
}

.progress-btn[data-progress-style='indefinite-circle'].active .btn {
  opacity: 0;
}

.circle-loader {
  fill: transparent;
  stroke: #eee;
  stroke-width: 5;
}




@keyframes dash {
  0% {
    stroke-dasharray: 1, 95;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 85, 95;
    stroke-dashoffset: -25;
  }

  100% {
    stroke-dasharray: 85, 95;
    stroke-dashoffset: -93;
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

@keyframes progress-anim {
  0% {
    width: 0%;
  }

  5% {
    width: 0%;
  }

  10% {
    width: 15%;
  }

  30% {
    width: 40%;
  }

  50% {
    width: 55%;
  }

  80% {
    width: 100%;
  }

  95% {
    width: 100%;
  }

  100% {
    width: 0%;
  }
}

@keyframes progress-indefinite-anim {
  0% {
    background-position: 0% 0%;
  }

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

@media(max-width:767px) {
  .cart {
    padding: 4vh;
    border-bottom-left-radius: unset;
    border-top-right-radius: 5px
  }
}

.summary {
  background-color: #fff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  padding: 3vh;
  color: #000;
  background-image: url(../images/abstract.svg);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100%;
  /* min-height: 590px; */
  min-height: 615px;
  height: auto;
}

@media(max-width:767px) {
  .summary {
    border-top-right-radius: unset;
    border-bottom-left-radius: 5px
  }
}

.summary .col-2 {
  padding: 0
}

.summary .col-10 {
  padding: 0
}

.row {
  margin: 0
}

.main {
  margin: 0;
  padding: 2vh 0;
  width: 100%
}

.col-2,
.col {
  padding: 0 1vh
}

a {
  padding: 0 1vh
}

.close {
  margin-left: auto;
  font-size: 0.7rem
}



.back-to-shop {
  position: absolute;
  bottom: 5px;
}

/* .back-to-shop {position: absolute;bottom:10px;} */
/* .next-div {position: absolute;bottom:50px;right:20px;} */
.next-div {
  position: absolute;
  bottom: 20px;
  left: 82%;
}

/* .next-div {position: absolute;bottom:35px;left:82%;} */
.ipv-next-div {
  position: absolute;
  bottom: 35px;
  left: 72%;
}

hr {
  margin-top: 1.25rem
}

form {
  padding: 2vh 0
}

select {
  border: 1px solid rgba(0, 0, 0, 0.137);
  padding: 1.5vh 1vh;
  margin-bottom: 4vh;
  outline: none;
  width: 100%;
  background-color: rgb(247, 247, 247)
}

input {
  border: 1px solid rgba(0, 0, 0, 0.137);
  padding: 1vh;
  margin-bottom: 2vh;
  outline: none;
  width: 100%;
  background-color: rgb(247, 247, 247)
}

input:focus::-webkit-input-placeholder {
  color: transparent
}

.btn {
  width: 100%;
  font-size: 0.7rem;
  margin-top: 0vh;
  padding: 1vh;
  border-radius: 3px;
}

.btn-success {
  color: #fff !important;
  background-color: #34a853;
  border-color: #34a854;
}

.btn-default {
  background: #fff;
}

.btn:focus {
  box-shadow: none;
  outline: none;
  box-shadow: none;
  color: white;
  -webkit-box-shadow: none;
  /* -webkit-user-select: none; */
  transition: none
}

.btn:hover {
  color: white
}

a {
  color: #34a853;
}

a:hover {
  color: #34a853;
  text-decoration: none
}

::-webkit-input-placeholder {
  /* Edge */
  color: #bfbfbf;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bfbfbf;
}

::placeholder {
  color: #bfbfbf;
  font-size: 12px;
}

#code {
  background-image: linear-gradient(to left, rgba(255, 255, 255, 0.253), rgba(255, 255, 255, 0.185)), url("https://img.icons8.com/small/16/000000/long-arrow-right.png");
  background-repeat: no-repeat;
  background-position-x: 95%;
  background-position-y: center
}

.side-bar img {
  height: 45px;
}

#count {
  text-align: center;
  width: 20px;
  height: 20px;
  border: 1px solid #bfbfbf;
  border-radius: 100%;
  padding: 0px 7px 0px 7px;
  font-size: 15px;
  margin-right: 6px;
}

.list-flow ul li p {
  font-size: 14px;
  font-weight: 500;
}

.form-control {
  font-size: 14px;
  margin-bottom: 1vh;
  padding: 0.23rem .75rem;
}

label {
  display: inline-block;
  margin-bottom: 0.1rem;
  font-size: 13px;
}

.form-group {
  margin-bottom: 5px;
}

.f-11 {
  font-size: 11px;
}

.f-13 {
  font-size: 13px;
}

#pandetails {
  display: none;
}

#kycdetails {
  display: none;
}

#personaldetails {
  display: none;
}

#aboutyoudetails {
  display: none;
}

#backgrounddetails {
  display: none;
}

#bankAccountDetails {
  display: none;
}

#ipvDetails {
  display: none;
}

#ipvConfirmDetails {
  display: none;
}

#uploadDocsDetails {
  display: none;
}

#segmentSelection {
  display: none;
}

#successCardDetails {
  display: none;
}

#userVerificationOtp {
  display: none;
}

ul li ul {
  padding-left: 35px;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  width: auto;
  margin-bottom: 0px;
}

.bg-grey {
  color: #000;
  background-color: #bfbfbf;
  padding: 3px 6px;
}

.cust-position {
  position: relative;
  top: 40%;
  padding: 5px 11px;
  font-size: 16px;
  font-weight: 500;
}

#uploadPanCardFile,
#uploadBankStatementFile,
#uploadSignatureFile,
#uploadAddressProofFile {
  border: 0px;
  background-color: transparent;
  margin-bottom: 0px;
  padding: 0px;
  color: transparent;
}

input::-webkit-file-upload-button {
  position: absolute;
  padding: 3px 6px;
  background-color: #fff;
  border: 1px solid #34a853;
  border-radius: 5px;
  color: #34a853;
  text-transform: uppercase;
  cursor: pointer;
}

input::-webkit-file-upload-button:hover {
  background-color: #fff;
  color: #34a853;
}

.cust-mt {
  margin-top: 1.8rem;
}

.font-size-9 {
  font-size: 9px;
}

.font-size-10 {
  font-size: 10px;
}

.font-size-11 {
  font-size: 11px;
}

#panCardNumber {
  text-transform: uppercase;
}

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

#video,
#canvas {
  /* position: absolute;
    top: 4px;
    left: 3px;
    height: 158px;
    width: 186px;
    object-fit: cover; */
  height: 156px;
  width: 186px;
  aspect-ratio: initial;
  position: absolute;
  left: 6px;
  transform: scaleX(1);
  object-fit: cover;
}

#camera--view,
#camera--sensor,
#camera--output {
  transform: scaleX(1);
  filter: FlipH;
}

/* #camera--trigger{
  color: #fff;
  background-color: #2c3e50;
  border-color: #2c3e50;
  display: inline-block;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  text-align: center;
  position: fixed;
  bottom: 2em;
  left: calc(50% - 100px);
} */
.taken {
  height: 158px !important;
  width: 165px !important;
  transition: all 0.5s ease-in;
  border: solid 3px white;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.2);
  top: 20px;
  right: 20px;
  z-index: 2;
}

/* input[type="file" i] {
  display: none;
} */
.success-image {
  background-image: url(../images/success-bg.svg);
  justify-content: center;
  align-items: center;
  background-size: contain;
  /* background-repeat: round; */
}

.success-img {
  position: relative;
  top: 23px;
}

.success-tick {
  position: relative;
  left: 43%;
  width: 65px;
  margin-top: 23%;
}

.success-text {
  text-align: center;
  background-color: #fff;
  box-shadow: 0 6px 20px 0 rgb(0 0 0 / 19%);
  padding: 20px;
  position: initial;
}








/* Mobile View CSS */
@media (min-width: 320px) and (max-width: 480px) {
  .container {
    padding-right: 0px;
    padding-left: 0px;
  }

  .title {
    margin-bottom: 2vh;
  }

  label {
    display: inline-block;
    margin-bottom: 0rem;
    font-size: 9px;
  }

  .form-control {
    font-size: 11px;
    margin-bottom: 1vh;
    padding: 0.2rem 0.2rem;
    height: 35px;
  }

  p {
    font-size: 11px;
    line-height: 20px;
    font-weight: 400;
  }

  .h6,
  h6 {
    font-size: 13px;
  }

  .section {
    padding: 0px 0;
  }

  .card {
    width: 100%;
    max-width: fit-content;
    height: calc(100vh - 0px);
    margin: 0px auto;
    border-radius: 0px;
    box-shadow: none;
  }

  .summary {
    height: auto;
    min-height: fit-content;
    background-size: 30%;
    padding: 2vh;
    background-position: bottom right;
    border-bottom: 1px solid #d1d1d1;
    border-radius: 0px;
  }

  .list-flow ul li p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0.5rem;
  }

  #count {
    width: 15px;
    height: 15px;
    padding: 0px 5px 0px 5px;
    font-size: 12px;
  }

  .cart {
    padding: 2vh;
    height: fit-content;
    background-color: initial;
  }

  .mt-4,
  .my-4 {
    margin-top: 0.5rem !important;
  }

  .mt-3,
  .my-3 {
    margin-top: 0.5rem !important;
  }

  .back-to-shop {
    bottom: 0rem;
    left: 3px;
  }

  /* .next-div{bottom: auto;left: 79%;} */
  .next-div {
    bottom: auto;
    left: 78%;
    position: relative;
    width: fit-content;
  }

  .nn-div {
    position: absolute;
    bottom: -1.3rem;
    left: 16rem;
  }

  .f-13 {
    font-size: 9px;
  }

  .cust-mt {
    margin-top: 0.2rem;
  }

  .sm-display {
    width: 100%;
    display: flex;
  }

  #video,
  #canvas {
    height: auto;
    width: 235px;
    aspect-ratio: initial;
    position: relative;
    left: 0px;
    transform: scaleX(1);
    object-fit: cover;
  }

  .cust-position {
    position: relative;
    top: 0%;
    padding: 5px 11px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px !important;
    margin: 0px auto;
  }

  .sm-center {
    margin: 0px auto;
  }

  .sm-back-to-shop {
    position: initial;
  }

  .bank-back-to-shop {
    bottom: -2.3rem;
  }

  .sm-ipv-next-div {
    position: initial;
    bottom: 10px;
    left: 53%;
  }

  .sm-btn-grp {
    width: 100%;
    text-align: center;
  }

  #uploadPanCardFile,
  #uploadBankStatementFile,
  #uploadSignatureFile,
  #uploadAddressProofFile {
    padding: 0px;
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 15px;
  }

  .btn-default {
    background: #6c757d;
    color: #ffffff !important;
  }
}