/* Reset */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    color: var(--DarkGreyThree);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

.pt-5 {
    padding-top: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-20 {
    padding-left: 20px !important;
}
/* margin */
.mt-10 {
    margin-top: 10px !important;
}

.mr-10 {
    margin-right: 10px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.ml-10 {
    margin-left: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mr-15 {
    margin-right: 15px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mr-20 {
    margin-right: 20px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.ml-20 {
    margin-left: 20px !important;
}

.w-full {
    width: 100% !important;
}

.wrapper {
    overflow: hidden;
    margin: 0 auto;
    height: 100vh;
}

    .wrapper.fixed-footer {
        position: relative;
        padding-bottom: 50px;
    }

.fixed-button {
    position: relative;
    left: 0;
    width: 100%;
    z-index: 10;
    background: var(--White);
}

    .fixed-button.shadow {
        box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    }

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0 15px 0;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-full {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.flex {
    display: flex;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.justify-stretch {
    justify-content: stretch;
}

items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.items-stretch {
    align-items: stretch;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

.tooltip-alert {
    display: inline-block;
    position: relative;
    bottom: -4px;
}

    .tooltip-alert img {
        max-width: 16px;
    }

.site-header {
    width: 100%;
    max-width: 1024px;
    padding: 15px 0;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid var(--GrayMid);
    margin: 0 auto;
}

.logo-forex {
    max-width: 90px;
}

.logo-indusind {
    max-width: 118px;
}

.main-content {
    position: relative;
    z-index: 2;
}

    .main-content.no-bg {
        background: var(--White);
        padding: 40px;
    }

.kyc-block-text {
    text-align: center;
}

.mobile-number-block {
    display: flex;
    border-bottom: 1px solid var(--GrayMid);
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.isd-code-wrapper {
    flex-shrink: 0;
}

    .isd-code-wrapper select {
        border: none;
        border-right: 1px solid var(--GrayMid);
        padding: 5px 30px 5px 5px;
        appearance: none;
        background-image: url("../images/arrow-dropdown.svg");
        background-repeat: no-repeat;
        background-position: right 5px center;
        outline: none;
        box-shadow: none;
        font-size: 14px;
    }

.mobile-number-wrapper {
    flex-grow: 1;
}

.divider {
    margin: 30px 0;
    position: relative;
    height: 1px;
    width: 100%;
    clear: both;
    border-top: 1px solid var(--DarkGreyThree);
}

    .divider span {
        position: absolute;
        padding: 10px 15px;
        background-color: var(--White);
        text-align: center;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        color: var(--DarkGreyThree);
    }

.divider-line {
    margin: 30px 0;
    position: relative;
    height: 1px;
    width: 100%;
    clear: both;
    border-top: 1px solid var(--GrayMid);
}

.kyc-block-text a {
    color: var(--PrimaryColor);
    text-decoration: none;
}

    .kyc-block-text a:hover {
        text-decoration: underline;
    }

/* Form */
.container-radio {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    color: var(--Black);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .container-radio span.small {
        color: var(--DarkGreyThree);
        font-size: 12px;
        font-weight: 400;
    }

    /* Hide the browser's default radio button */
    .container-radio input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Create a custom radio button */
    .container-radio .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: var(--White);
        border-radius: 50%;
        border: 1px solid var(--Outline);
    }

    /* On mouse-over, add a grey background color */
    .container-radio:hover input ~ .checkmark {
        background-color: var(--White);
    }

    /* When the radio button is checked, add a blue background */
    .container-radio input:checked ~ .checkmark {
        background-color: var(--PrimaryColor);
    }

    /* Create the indicator (the dot/circle - hidden when not checked) */
    .container-radio .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        top: 5px;
        left: 5px;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--White);
    }

    /* Show the indicator (dot/circle) when checked */
    .container-radio input:checked ~ .checkmark:after {
        display: block;
    }
    
/* ==== */

.container-checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 14px;
    line-height: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: var(--Black);
}

    /* Hide the browser's default checkbox */
    .container-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    /* Create a custom checkbox */
    .container-checkbox .checkmark {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        height: 20px;
        width: 20px;
        background-color: var(--White);
        border: 1px solid var(--PrimaryColor);
        border-radius: 4px;
    }

    /* On mouse-over, add a grey background color */
    .container-checkbox:hover input ~ .checkmark {
        background-color: var(--White);
    }

    /* When the checkbox is checked, add a blue background */
    .container-checkbox input:checked ~ .checkmark {
        background-color: var(--PrimaryColor);
    }

    /* Create the checkmark/indicator (hidden when not checked) */
    .container-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid var(--White);
        border-width: 0 2px 2px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    /* Show the checkmark when checked */
    .container-checkbox input:checked ~ .checkmark:after {
        display: block;
    }

.container-checkbox.cosent-checkbox {
    font-size:11px;
    padding-left:30px;
}
    .container-checkbox.cosent-checkbox .checkmark {
        top: 5px;
        transform: none;
        height:16px;
        width:16px
    }
        .container-checkbox.cosent-checkbox .checkmark:after {
            left: 5px;
            top: 1px;
        }
    .form-filed-wrapper {
        position: relative;
        padding: 9px;
        border: 1px solid var(--Outline12);
        border-radius: 8px;
    }

    .form-filed-wrapper label {
        position: absolute;
        left: 16px;
        top: -10px;
        display: inline-block;
        background: var(--White);
        font-size: 12px;
        padding: 0 10px;
    }

    .form-filed-wrapper.mobile-number .country-code {
        position: absolute;
        left: 24px;
        top: 14px;
        font-size: 16px;
        color: var(--Black);
    }

.form-control {
    border: none;
    padding: 5px;
    outline: none;
    box-shadow: none;
    font-size: 16px;
    display: block;
    width: 100%;
    color: var(--Black);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: url("../images/icon-date.svg") no-repeat center center;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 80%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.form-filed-wrapper.mobile-number .form-control {
    padding-left: 45px;
}

.form-control-two {
    border: none;
    border-bottom: 1px solid var(--GrayMid);
    padding: 5px;
    display: block;
    width: 100%;
    outline: none;
    box-shadow: none;
}

/* Button */
.btn-primary {
    padding: 10px 35px;
    display: inline-block;
    border: none;
    background: var(--PrimaryColor);
    color: var(--White);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: 0.4s all linear;
}

    .btn-primary:hover {
        background: var(--SecondaryColor);
    }

.btn-secondary {
    padding: 14px 35px;
    display: inline-block;
    border: none;
    background: var(--SecondaryColor);
    color: var(--White);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: 0.4s all linear;
}

    .btn-secondary:hover {
        background: var(--PrimaryColor);
    }

.btn-primary:disabled,
.btn-primary[disabled] {
    background: var(--GrayLow);
    color: var(--DarkGreyThree);
}

.btn-primary.btn-small,
.btn-secondary.btn-small {
    padding: 5px 10px;
    border-radius: 5px;
}

.text-link {
    text-decoration: underline;
    color: var(--Black);
    font-weight: 600;
    border: none;
    background: none;
}

    .text-link:hover {
        text-decoration: underline;
    }
/* ***** Progress Bar ***** */

.stepper-wrapper {
    margin: 30px 0;
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

    .stepper-item::before {
        position: absolute;
        content: "";
        border-bottom: 2px solid #ccc;
        width: 100%;
        top: 11px;
        left: -50%;
        z-index: 2;
    }

    .stepper-item::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid #ccc;
        width: 100%;
        top: 11px;
        left: 50%;
        z-index: 2;
    }

    .stepper-item .step-counter {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--DarkGreyFour);
        margin-bottom: 6px;
        border: 1px solid var(--DarkGreyFour);
        color: var(--DarkGreyOne);
        outline: 10px solid var(--White);
        text-decoration: none;
        font-weight: 600;
    }

    .stepper-item .step-name {
        font-size: 14px;
        font-weight: 500;
        color: var(--DarkGreyThree);
    }

    .stepper-item.active {
        color: var(--Black);
    }

        .stepper-item.completed .step-counter,
        .stepper-item.active .step-counter {
            background-color: var(--SecondaryColor);
            color: var(--White);
            border: 1px solid var(--SecondaryColor);
            outline: 10px solid var(--White);
        }

    .stepper-item.completed .step-name {
        color: var(--DarkGreyOne);
        font-weight: 700;
    }

    .stepper-item.active .step-name {
        color: var(--SecondaryColor);
        font-weight: 700;
    }

    .stepper-item.completed::after {
        position: absolute;
        content: "";
        border-bottom: 2px solid var(--SecondaryColor);
        width: 100%;
        top: 11px;
        left: 50%;
        z-index: 3;
    }

    .stepper-item:first-child::before {
        content: none;
    }

    .stepper-item:last-child::after {
        content: none;
    }

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    backdrop-filter: blur(2px);
}

.otp-box-wrapper,
.msg-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--White);
    padding: 30px 20px;
    border-radius: 20px;
    width: 100%;
}

.otp-wrapper {
    display: flex;
    gap: 20px;
    padding: 0 0 20px 0;
}

    .otp-wrapper input[type="password"] {
        height: 40px;
        width: 40px;
        text-align: center;
        border: 1px solid rgba(33, 33, 33, 0.04);
        border-radius: 6px;
        outline: none;
        box-shadow: none;
        background: rgba(33, 33, 33, 0.04);
        padding: 0px !important;
        font-size: 18px !important;
        line-height: normal !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .otp-wrapper.error input[type="password"] {
        color: #000;        
    }

.error-text {
    color: #ff000b;
    font-size: 12px;
    padding: 5px 0 0 0;
}

.otp-counter {
    color: var(--PrimaryColor);
    font-weight: 600;
}

.msg-icon {
    height: 60px;
    width: 60px;
    margin: 0 auto;
}

.msg-wrapper {
    text-align: center;
}

.btn-close {
    height: 32px;
    width: 32px;
    background: transparent url("../images/icon-close.svg") no-repeat center center;
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
}

.summary-box {
    border: 1px solid var(--Outline24);
    padding: 20px;
    border-radius: 8px;
}

.summery-label {
    width: 150px;
    flex-shrink: 0;
    color: var(--DarkGreyThree);
}

.summery-value {
    flex-grow: 1;
    color: var(--DarkGreyOne);
}

.payment-box {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    background: var(--BgSurface);
}

    .payment-box.selected {
        font-style: normal;
    }

.recommended {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    background: var(--TertiaryColor);
    color: var(--White);
    font-size: 10px;
}

.payment-success-box {
    padding-top: 100px;
    text-align: center;
}

.partial-payment-box {
    padding: 0 0 0 50px;
    background: url("../images/icon-success-small.svg") no-repeat left center;
    background-size: 35px;
    min-height: 40px;
    margin: 30px 0 0 0;
}

.remaining-amount-box {
    padding: 15px;
    border-radius: 8px;
    background: var(--BgSurface);
    text-align: center;
    margin-bottom: 30px;
}

    .remaining-amount-box span.amount {
        color: var(--PrimaryColor);
        font-weight: 700;
    }

.payment-box .container-radio {
    font-size: 16px;
    font-weight: 600;
    color: var(--Black);
}

.bill-details {
    border: 1px solid var(--GrayMid);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    display: none;
}

.billToggleHandler {
    font-size: 14px;
    color: var(--Black);
    text-decoration: none;
}

    .billToggleHandler:hover {
        color: var(--PrimaryColor);
    }

.bill-details.highlight {
    display: block;
}

.bill-details td {
    padding: 10px;
    font-size: 12px;
}

#timer {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px 0 0 0;
    font-size: 14px;
}

.time {
    background: var(--White);
    color: var(--Black);
    display: block;
    padding: 5px;
    border-radius: 4px;
    font-weight: 700;
}

    .time + span {
        color: var(--Black);
        font-size: 12px;
    }

.pick-branch-form {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

    .pick-branch-form > div {
        width: 50%;
    }

    .pick-branch-form select {
        border: none;
        border-bottom: 1px solid var(--GrayMid);
        padding: 5px 30px 5px 5px;
        appearance: none;
        background-color: inherit;
        background-image: url("../images/arrow-dropdown.svg");
        background-repeat: no-repeat;
        background-position: right 5px center;
        outline: none;
        box-shadow: none;
        font-size: 14px;
        display: block;
        width: 100%;
    }

.info-text {
    padding: 10px;
    font-size: 11px;
    line-height: normal;
    color: var(--DarkGreyThree);
    background: var(--White);
    margin: 15px 0 0 0;
    border-radius: 8px;
    position: relative;
}

    .info-text.border {
        border-top: 1px solid var(--GrayMid);
        margin-top: 10px;
    }

    .info-text h2 {
        font-size: 14px;
        color: var(--Black);
        padding: 0 30px 10px 0;
        margin: 0;
    }

.btn-edit-info {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 10px;
    top: 10px;
}

.pick-branch-form-wrapper,
.doorstep-info {
    display: none;
}

.income-proof {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
    padding-right: 50px;
    background: var(--BgSurface);
}

    .income-proof h2 {
        font-size: 14px;
        font-weight: 700;
        color: var(--Black);
    }

    .income-proof .file-name {
        font-size: 12px;
    }

    .income-proof .remove-btn {
        height: 32px;
        width: 32px;
        border: none;
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background-color: inherit;
        background-image: url("../images/icon-delete.svg");
        background-repeat: no-repeat;
        background-position: center center;
        font-size: 0;
        overflow: hidden;
        text-indent: -100px;
    }

    .income-proof .uploaded-btn {
        background: transparent;
        color: var(--PrimaryColor);
        border-radius: 8px;
        border: none;
        padding: 5px 10px;
        display: inline-block;
        position: absolute;
        right: 5px;
        top: 10px;
        transition: 0.4s all linear;
        font-weight: 600;
    }

        .income-proof .uploaded-btn:hover {
            background: var(--PrimaryColor);
            color: var(--White);
        }

    .income-proof.uploaded-file {
        border: 1px solid var(--SecondaryColor);
        background: var(--White);
        font-style: normal;
    }

        .income-proof.uploaded-file .file-name {
            color: var(--DarkGreyThree);
        }

.info-box {
    display: flex;
    background: var(--BgTertiaryContainer);
    padding: 10px;
    border-radius: 8px;
    color: var(--TertiaryColor);
    align-items: center;
}

.info-icon {
    width: 20px;
    flex-shrink: 0;
}

    .info-icon img {
        display: block;
        width: 100%;
    }

.info-content {
    flex-grow: 1;
    padding-left: 10px;
    font-size: 12px;
}
/* Typography */


p:last-child {
    padding: 0;
}

strong {
    font-weight: 700;
}

.title-one {
    font-size: 20px;
    font-weight: 600;
    color: var(--Black);
}

.title-two {
    font-size: 14px;
    font-weight: 400;
    color: var(--DarkGreyThree);
}

.title-three {
    font-size: 16px;
    font-weight: 600;
    color: var(--DarkGreyThree);
    padding-bottom: 30px;
}

.title-status {
    font-size: 28px;
    font-weight: 700;
}

    .title-status.success {
        color: var(--Success);
    }

    .title-status.error {
        color: var(--Error);
    }

.font-size-16 {
    font-size: 16px !important;
}

.payment-amount {
    font-size: 24px;
    line-height: normal;
    font-weight: 700;
    color: var(--Black);
}

.text-colo-black {
    color: var(--Black) !important;
}

.text-color-gray-one {
    color: var(--DarkGreyOne) !important;
}

.text-color-gray-two {
    color: var(--DarkGreyTwo) !important;
}

.text-color-gray-three {
    color: var(--DarkGreyThree) !important;
}

.text-color-primary {
    color: var(--PrimaryColor) !important;
}

.text-color-secondary {
    color: var(--SecondaryColor) !important;
}

.text-color-tertiary {
    color: var(--TertiaryColor) !important;
}

.text-center {
    text-align: center !important;
}

.btn-edit {
    border: none;
    background: none;
    padding: 0;
    margin: 0 0 0 5px;
    display: inline-block;
}

.btn-location {
    border: none;
    display: block;
    background: transparent url("../images/icon-location.svg") no-repeat 0 5px;
    padding: 5px 5px 5px 30px;
    font-size: 14px;
}

.bank-address {
    padding: 0 0 0 35px;
    font-size: 12px;
    color: var(--DarkGreyThree);
}

    .bank-address a {
        font-weight: 700;
        color: var(--TertiaryColor);
        text-decoration: underline;
    }

        .bank-address a:hover {
            text-decoration: none;
        }

.redirect-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--PrimaryColor);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.three-col-wrap {
    display: flex;
    min-height: 100vh;
}

.fast-col-box,
.last-col-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25%;
}

    .fast-col-box img,
    .last-col-box img {
        height: 100%;
    }

.second-col-box {
    display: block;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 50px;
    position: relative;
    height: 100vh;
}

.xpad-bottom {
    padding-bottom: 50px;
    overflow: auto;
    height: 100vh;
}

    .xpad-bottom::-webkit-scrollbar {
        height: 6px;
        width: 5px;
    }

    /* Track */
    .xpad-bottom::-webkit-scrollbar-track {
        background: #00365224;
        border-radius: 5px;
        height: 6px;
    }

    /* Handle */
    .xpad-bottom::-webkit-scrollbar-thumb {
        background: #027c7c;
        border-radius: 5px;
    }

.pl-0-input {
    padding-left: 0 !important;
}

/* Handle on hover */
.xpad-bottom::-webkit-scrollbar-thumb:hover {
    background: #006a6a;
}

.modal-on {
    display: flex !important;
}

.modal-click {
    cursor: pointer;
}

.btn-box {
    display: flex;
    justify-content: flex-end;
}

    .btn-box img {
        margin-left: 10px;
        max-width: 20px;
    }

.add-field-box {
    display: none;
}

    .add-field-box.add-field {
        display: block;
    }

.tabs {
    display: flex;
    border-bottom: #8800ec 1px solid;
}

    .tabs button {      
        cursor: pointer;
        padding: 5px 15px 10px 10px;
        color: #8800ec;
        border: #8800ec 1px solid;
        border-bottom: 0px;
        border-radius: 10px 10px 0 0;
        background-color: transparent;
    }

        .tabs button.active {
            color: #fff;
            background-color: #8800ec;
        }

.tab-content {
    display: none;
}

    .tab-content.active {
        display: block;
    }

.radio-select-box {
    display: flex;
    padding: 10px 0 0 0;
    margin-top: 10px;
}

    .radio-select-box label {
        margin-right: 10px;
    }

.field-box-off.selected,
.field-box-off2.selected {
    display: block;
}

.tooltip-container {
    display: inline-block;
    margin-left: 5px;
}

    .tooltip-container i {
        font-size: 12px;
        color: #333;
        cursor: pointer;
    }



@media only screen and (max-width: 1100px) {
    .second-col-box {
        padding: 50px 15px;
    }
}

@media only screen and (min-width: 861px) {
    .overlay {
        align-items: center;
        justify-content: center;
    }

        .overlay > div {
            max-width: 600px;
            border-radius: 20px !important;
        }
}

@media only screen and (max-width: 860px) {
    .second-col-box {
        padding: 50px 15px;
        width: 100%;
    }

    .fast-col-box,
    .last-col-box {
        display: none;
    }
}


.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: var(--bs-modal-padding);
    padding: 40px 15px;
}

.modalDialog {
    margin: 0 auto;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: auto;
}


@media only screen and (max-width: 480px) {
    .modal-dialog {
        position: relative;
        width: 90%;
    }
}

.main-content.fixdropdown {
    z-index: 11;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 3rem !important;
}

.select2-container .select2-selection--single {
    height: 3rem !important;
}

.select2-results__option {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.select2-search--dropdown .select2-search__field {
    height: 3rem !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--SecondaryColor) !important;
}

.select2-container {
    z-index: 999;
}

.see-more-btn-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}

.payment-timer {
    position: relative;
}

    .payment-timer::before {
        position: absolute;
        left: -23px;
        top: 3px;
        content: '';
        display: block;
        background-image: url(../../images/clock.png);
        background-size: 13px;
        background-position: center center;
        background-repeat: no-repeat;
        width: 13px;
        height: 13px;
    }

    .payment-timer .time {
        padding: 0px !important;
    }

    .payment-timer #timer {
        padding: 0px !important;
    }

.non-editable-input {
    border: none;
    background-color: transparent;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    pointer-events: none;
}

.esign-container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .esign-container h2 {
        margin: 0 0 10px;
    }

    .esign-container p {
        margin: 0 0 20px;
        color: #666;
    }

.esign-button {
    background-color: var(--PrimaryColor);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

    .esign-button:hover {
        background-color: var(--SecondaryColor);
    }

.order-details p {
    margin-bottom: 5px;
}
.copy-text{
    cursor:pointer!important;
}
.tcbtn {
    float: right;
    font-weight: bold;
    border-radius: 50%;
    font-size: 14px;
}
