body {
  font-family: 'Karla', sans-serif;
}

.navbar-light {
  border-bottom: solid 1px #e9ecf4;
}

.navbar-light .navbar-brand img {
  height: 50px;
}

.navbar-light .navbar-nav .nav-link {
  padding: 30px 15px;
  font-size: 16px;
  font-weight: bold;
  color: #030303;
}

main {
  min-height: calc(100vh - 102px);
}

/* Wizard */
.wizard .audible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wizard .steps {
  /* padding-top: 30px; */
  padding-bottom: 30px;
}

.wizard .steps>ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#7b7f89), to(#7b7f89));
  background-image: linear-gradient(#7b7f89, #7b7f89);
  background-size: calc(100% - 50px) 4px;
  background-repeat: no-repeat;
  background-position: center;
}

.wizard .steps>ul li a {
  display: inline-block;
  text-decoration: none;
}

.wizard .steps>ul li span.number {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 3px solid #fff;
  border-radius: 50%;
  background-color: #7b7f89;
  line-height: 50px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.wizard .steps>ul li.current span.number,
.wizard .steps>ul li.done span.number {
  background-color: #2a69b2;
  border-color: rgb(229, 235, 255);
  border-width: 4px;
}

.wizard .content {
  margin-bottom: 25px;
}

.wizard .content .title {
  display: none;
}

.wizard .content .bd-wizard-step-title {
  font-size: 24px;
  font-weight: bold;
  color: #2a69b2;
  /* margin-bottom: 45px; */
}

.wizard .content .section-heading {
  font-size: 35px;
  font-weight: bold;
  color: #030303;
  margin-bottom: 17px;
}

.wizard .content p {
  font-size: 16px;
  color: #030303;
}

.wizard .content .purpose-radio {
  position: relative;
  display: inline-block;
}

.wizard .content .purpose-radio .purpose-radio-input {
  position: absolute;
  opacity: 0;
}

.wizard .content .purpose-radio .purpose-radio-input:checked+.purpose-radio-label {
  border-color: #2a69b2;
}

.wizard .content .purpose-radio .purpose-radio-input:checked+.purpose-radio-label .label-icon {
  color: #2a69b2;
}

.wizard .content .purpose-radio .purpose-radio-input:checked+.purpose-radio-label .label-icon .label-icon-default {
  display: none;
}

.wizard .content .purpose-radio .purpose-radio-input:checked+.purpose-radio-label .label-icon .label-icon-active {
  display: inline-block;
}

.wizard .content .purpose-radio .purpose-radio-input:checked+.purpose-radio-label .label-text {
  color: #2a69b2;
  font-weight: bold;
}

.wizard .content .purpose-radio .purpose-radio-label {
  display: -webkit-box;
  display: flex;
  width: 196px;
  height: 184px;
  max-width: 100%;
  border: 2px solid #7b7f89;
  border-radius: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

@media (max-width: 575px) {
  .wizard .content .purpose-radio .purpose-radio-label {
    width: 100%;
  }
}

.wizard .content .purpose-radio .purpose-radio-label .label-icon {
  font-size: 21px;
  color: #000000;
  margin-bottom: 17px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.wizard .content .purpose-radio .purpose-radio-label .label-icon .label-icon-active {
  display: none;
}

.wizard .content .purpose-radio .purpose-radio-label .label-text {
  font-size: 16px;
  color: #030303;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.wizard .content .purpose-radios-wrapper {
  margin-top: 60px;
}

.wizard .content .purpose-radios-wrapper .purpose-radio {
  margin-right: 18px;
  max-width: calc(33% - 18px);
}

@media (max-width: 575px) {
  .wizard .content .purpose-radios-wrapper .purpose-radio {
    margin-right: 0;
    margin-bottom: 18px;
    width: 100%;
    max-width: none;
  }
}

.wizard .content .purpose-radios-wrapper .purpose-radio:last-child {
  margin-right: 0;
}

/* .wizard .content .form-control {
  padding: 26px 25px;
  min-height: 50px;
  max-width: 550px;
  border-radius: 4px;
  border: solid 1px #ececec;
}

.wizard .content .form-control::-webkit-input-placeholder {
  color: #919aa3;
}

.wizard .content .form-control::-moz-placeholder {
  color: #919aa3;
}

.wizard .content .form-control:-ms-input-placeholder {
  color: #919aa3;
}

.wizard .content .form-control::-ms-input-placeholder {
  color: #919aa3;
}

.wizard .content .form-control::placeholder {
  color: #919aa3;
} */

.wizard .actions>ul {
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: flex;
}

.wizard .actions li a {
  display: inline-block;
  border-radius: 6px;
  background-color: #2a69b2;
  padding: 10px 25px;
  color: #fff;
  font-style: 15px;
  font-weight: bold;
}

.wizard .actions li.disabled {
  display: none;
}

.wizard .actions li:not(.disabled)+li,
.wizard .actions li:not(:first-child):last-child {
  margin-left: 15px;
}

@media (min-width: 768px) {
  .wizard.vertical {
    padding-left: 200px;
    position: relative;
    min-height: 450px;
  }

  .wizard.vertical .steps {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 480px;
    position: absolute;
    left: 0;
    display: -webkit-box;
    display: flex;
  }

  .wizard.vertical .steps>ul {
    width: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    background-size: 4px calc(100% - 50px);
    margin-bottom: 0;
  }

  .wizard.vertical .steps>ul li:not(:last-child) {
    margin-bottom: 24px;
  }
}

.header-underline hr {
  background-color: #E88125;
  height: 3px;
  opacity: 1;
  border: 0;
  border-radius: 25px;
  margin-bottom: 35px !important;
}

.header-underline .hr-1 {
  width: 85px;
}

.header-underline .hr-2 {
  width: 15px;
}

.header-underline .hr-1-lg {
  width: 200px;
}

.header-underline .hr-2-lg {
  width: 35px;
}

.header-underline-md .hr-md {
  width: 60px;
  background-color: #E88125;
  height: 3px;
  opacity: 1;
  border: 0;
  border-radius: 25px;
  margin-bottom: 15px !important;
}

.header-underline-lg .hr-lg {
  width: 150px;
  background-color: #E88125;
  height: 3px;
  opacity: 1;
  border: 0;
  border-radius: 25px;
  margin-bottom: 15px !important;
}

.avatar-img {
  border-radius: 50% 50%;
  overflow: hidden;
  width: 75px;
}

.bg-soft-primary {
  background-color: #F3F7FF !important;
}

.bg-body {
  background-image: url(../images/body-bg.png);
}

.header-navbar {
  background-color: #ffffff74 !important;
}

.fw-bold {
  font-weight: 600 !important;
}

.active-nav {
  color: #2a69b2 !important;
}

.otp-input {
  text-align: center;
}

.otp-input input {
  width: 50px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  padding: 0;
  margin-right: 20px;
}

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

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

@media screen and (max-width:768px) {

  .otp-input input {
    width: 45px;
    height: 45px;
    font-size: 16px;
    margin: 5px;
  }
}

/* .photo-capture,
.photo-uploader,
.identity-front,
.identity-back,
.indoor-uploader,
.outdoor-uploader {
  border: 2px dashed #2a69b282;
} */

.drop-card {
  border: 2px dashed #2a69b282;
}

.dropped-card {
  border: 0 !important;
  padding: 0 !important;
  background-color: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .dropped-card img{
width: 300px;
} */

.dropped-card .card-body {
  padding: 0 !important;
}

.uploader-icon {
  font-size: 32px;
  color: #2a69b2;
}

.text-theme {
  color: #2a69b2 !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.capture-area {
  width: 100%;
  height: 350px;
  background-color: black;
}

.capture-area #videoFeed {
  width: 100%;
  height: 350px;
  /* background-color: gainsboro; */
}

.btn-icon {
  border-radius: 50% 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.btn-icon-sm {
  border-radius: 50% 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.btn-icon-xs {
  border-radius: 50% 50%;
  width: 20px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.btn-light {
  background-color: rgb(241, 240, 240);
}

.btn-soft-primary {
  background-color: rgb(225, 237, 255);
  color: #2a69b2;
}

.delete-img-container {
  position: absolute;
  top: -10px;
  right: 1px;

}

/* .captured-container{
max-height: 250px;
overflow-y: scroll;
}

.captured-container::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.captured-container::-webkit-scrollbar-thumb {
  background-color: gainsboro;
  border-radius: 5px;
}

.captured-container::-webkit-scrollbar-thumb:hover {
  background-color: #c0c0c0;
}    */

.btn-soft-danger {
  background-color: #ffd2d2;
  color: #b22a2a;
}

.btn-soft-danger:hover {
  color: #ffd2d2;
  background-color: #d42222;
}

.btn-primary {
  background-color: #2a69b2;
}

.positioned-element {
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.captured-image,
.uploaded-image {
  max-width: 250px;
  border-radius: 5px;
}

.uploaded-id {
  max-width: 175px;
  border-radius: 5px;
}

.text-muted-x {
  color: #a7a7a7 !important;
}

.indoor-container,
.outdoor-container {
  width: 100px;
  height: 100px;
}

.delete-indoor,
.delete-outdoor {
  position: absolute;
  top: -15px;
  right: -15px;
}


.display-5 {
  font-size: 2.5rem !important;
  font-weight: 300;
  line-height: 1.2;
}

.min-h-200px {
  min-height: 200px !important;
}

.min-h-350px {
  min-height: 350px !important;
}

.declaration-video {
  width: 400px;
  height: auto;
  border: 1px solid #ccc;
  margin: 20px auto;
  padding: 10px;
  position: relative;
}

.video-btns {
  position: absolute;
  bottom: 1.5em;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.container-left {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: auto;
  margin-left: auto;
}

.video-container {
  position: sticky;
  top: 1.5rem;
}

.cursor-move {
  cursor: move !important;
}

.video-timer {
  font-size: 18px;
  background-color: #00000085;
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  position: absolute;
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.language-text{
  font-size: 14px !important;
}

.language-card{
  border-radius: 30px;
  border-color: #8080801a;
}

.language-card:hover{
  filter: brightness(96%);
}

.fs-14 {
  font-size: 14px !important
}

.bg-softer-danger {
  background-color: #fff5f9d6 !important;
}

.bg-soft-danger {
  background-color: #fff1f1 !important;
}

.bg-softer-primary {
  background-color: #f3f7ffd9 !important;
}

.bg-softer-secondary {
  background-color: #f5f5f5d1 !important;
}

.bg-softer-warning {
  background-color: #fffcd9d2 !important;
}

.text-softer-warning {
  color: #dcb300;
}

.bg-softer-violet {
  background-color: #fcf5ff;
}

.bg-softer-success {
  background-color: #f4fff5d2 !important;
}
.bg-soft-success {
  background-color: #ebffed !important;
}

.badge{
  display: flex;
  align-items: center;
}

.bg-lighter{
  background-color: #f8f9fa94 !important;
}

.muted-text{
  position: absolute;
  left: 1rem;
  top: .75rem;
  color: #fff;
  text-shadow: 0px 0px 10px rgb(13, 13, 13);
}