.stroke {
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: black;
}

/* register-stepper */
.stepper.stepper-pills .stepper-item.completed .stepper-icon,
.stepper.stepper-pills .stepper-item.current .stepper-icon {
    background-color: #7928ca;
    border-radius: 0.7rem;
}
.stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-check {
    color: white !important;
    font-weight: 600;
}
.stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-title,
.stepper.stepper-pills
    .stepper-item.current:last-child
    .stepper-label
    .stepper-title,
.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-title {
    color: #7928ca !important;
    font-weight: 600;
}
.stepper.stepper-pills .stepper-item .stepper-label .stepper-title {
    color: #7e8299 !important;
    font-weight: 400;
}
.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number {
    color: #7e8299 !important;
}

.hscroll {
    overflow-x: scroll !important;
    overflow-y: hidden;
    /* white-space: nowrap; */
}

/* @media (max-width: 992px) {
    .stepper.stepper-pills
        .stepper-item.current
        .stepper-label
        .stepper-title
        .jss-stepper-title {
        display: unset;
    }
    .stepper.stepper-pills
        .stepper-item
        .stepper-label
        .stepper-title
        .jss-stepper-title {
        display: none;
    }
} */

.select2-container--bootstrap-5
    .select2-selection--multiple
    .select2-selection__rendered {
    padding-top: 0.9em;
}

.select2-container--bootstrap5
    .select2-selection--single
    .select2-selection__rendered {
    color: unset;
}
.select2-dropdown .select2-dropdown--below {
    width: 100% !important;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option {
    padding: 0.5rem 1.2rem;
}
.form-floating .form-select {
    padding: 1.6rem 3rem 0.3rem 1rem !important;
}
.form-control,
.form-select {
    border-radius: 1rem !important;
}

/* start::Camera Kyc */
.wrapper-camera,
.wrapper-video {
    position: relative;
    overflow: hidden;
}
.webcam-camera::after {
    content: "" !important;
    position: absolute;
    height: 100%;
    opacity: 1;
    top: 26%;
    left: 5%;
    bottom: 0;
    right: 5%;
    background-size: 100%;
    background-repeat: no-repeat;
}
.webcam-frame-video::after {
    content: "";
    position: absolute;
    opacity: 1;
    height: 100%;
    left: 10%;
    right: 10%;
    background-size: 100%;
}
/* end::Camera Kyc */

@media (min-width: 1200px) {
    .w-xl-60 {
        width: 50% !important;
    }
    .w-xl-40 {
        width: 50% !important;
    }
}

@media (min-width: 992px) {
    .w-lg-60 {
        width: 60% !important;
    }
    .w-lg-40 {
        width: 40% !important;
    }
}

.loader {
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s ease;
    margin: 2em auto;
    background-color: inherit;
}
.loader:before {
    content: "";
    position: absolute;
    border-radius: 50%;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    background-color: white;
    z-index: 5;
}

.loader-inner {
    position: absolute;
    top: 0%;
    left: 50%;
    width: 2px;
    height: 50%;
    transform: translate(-50%, 0) translateZ(0);
    box-shadow: 0 0 1px rgba(255, 255, 255, 0);
    background-color: red;
    transform-origin: bottom;
}
