﻿/* Base CSS - */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: #FAFAFF;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/*===============================
======= Header Area CSS =========
===============================*/

.navbar {
    padding: 2px 0 3px 0 !important;
    background-color: #fff !important;
    box-shadow: 0 10px 10px -5px #eeeeee;
}

    .navbar .container-fluid {
        max-width: 94% !important;
    }

.navbar-brand img {
    height: 50px;
}

.nav-item a {
    padding-bottom: 10px;
}

.nav-item img {
    height: 26px;
}

/*===============================
======= Footer Area CSS =========
===============================*/


.Footer_Area .container-fluid {
    max-width: 94% !important;
}

.Link_Area {
    display: flex;
    justify-content: flex-end;
}

.Copyright_Area p {
    font-size: 16px;
    font-weight: 500;
}

.Link_Area a {
    font-size: 16px;
    font-weight: 500;
}

/*===============================
======= Main Area CSS =========
===============================*/

.Mobile_Verification {
    min-height: calc(100vh - 100px);
    display: flex;
    align-items: center;
}

.Ekyc_Verification {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
}

    .Ekyc_Verification .container-fluid {
        max-width: 80% !important;
    }

.card-title {
    margin-top: 10px;
}

.Mobile_Verification_Content h2 {
    color: #3C2E7E;
    font-size: 45px;
    font-weight: 600;
    line-height: 54px;
    margin-bottom: 30px;
}

.Mobile_Verification_Content p {
    font-size: 22px;
    font-weight: 400;
    line-height: 26px;
    padding-right: 35%;
}

.Verification_Area {
    padding: 0 0 0 10%;
}

.Card_Area {
    min-height: 490px !important;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #3C2E7E;
    margin-bottom: 12px;
}


.Divider_Border {
    background: #FFCB31;
    width: 42px;
    height: 3px;
    border-radius: 10px;
}

.Card_Verification_Area {
    margin-top: 40px;
}

.Verification_Label {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.Verified {
    background: url(../images/Verified.svg) 100% no-repeat;
    background-size: 20px 20px;
    background-position: 97.5% 12px;
}

.input-group > .Verification_Control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.Verification_Control {
    display: block;
    width: 100%;
    padding: 5px 20px 5px 5px;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9D9D9D;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    transition: all 280ms ease-in-out;
}

.Verification_Button {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #9D9D9D;
    padding: 0 20px;
    transition: all 280ms ease-in-out;
    overflow: hidden;
}

.Verification_Control:focus {
    outline: none;
    border-color: #3C2E7E;
}

    .Verification_Control:focus + .Verification_Button {
        border-color: #3C2E7E;
    }

.Next_Button_Icon {
    background: url(../images/Next-Button.svg) 100% no-repeat;
    background-position: center center;
    background-size: 27px 27px;
}

.Card_Permission_Area {
    margin-top: 30px;
}

.Next-Button {
    text-align: right;
    margin: 20px 5px 0 0;
}

    .Next-Button a {
        padding-bottom: 10px;
    }

        .Next-Button a img {
            height: 34px;
        }

.PAN_AREA {
    display: flex;
    justify-content: space-between;
}

    .PAN_AREA p {
        font-size: 16px;
        font-weight: 400;
    }

        .PAN_AREA p:last-of-type {
            font-weight: 550;
        }

.form-group {
    margin-bottom: 10px;
}

.Overflow_Area {
    height: 130px;
    overflow-y: scroll;
    scrollbar-color: #FFCB31 #fff;
    scrollbar-width: thin;
}

    .Overflow_Area::-webkit-scrollbar {
        width: 18px;
        height: 20px;
    }

    .Overflow_Area::-webkit-scrollbar-thumb {
        background-color: #FFCB31;
        border-radius: 10px;
        border: 6px solid #fff;
    }

.Digilocker_Icon_Area {
    margin-top: 30px;
    margin-left: 25px;
}

/* Custom CheckBox */

.form-group {
    display: flex;
}

    .form-group input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        height: 18px;
        padding: 9px;
        background-color: transparent;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #3C2E7E;
        border-radius: 4px;
        outline: unset !important;
        position: relative;
    }

        .form-group input[type="checkbox"]::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 1px;
            width: 6px;
            height: 12px;
            border: solid #FFCB31;
            border-width: 0 2px 2px 0;
            transition: all 240ms ease-in-out;
            transform: rotate(45deg) scale(0);
        }

        .form-group input[type="checkbox"]:checked::after {
            transform: rotate(45deg) scale(1.0);
        }

    .form-group label {
        cursor: pointer;
        user-select: none;
        margin-left: 15px;
        font-size: 16px;
        font-weight: 400;
        line-height: 22px;
        padding-right: 0;
    }

/* OTP Input Section */

.otp-container {
    display: flex;
    justify-content: space-between;
}

    .otp-container .Verification_Control {
        margin: 0 5px;
        padding: 0 0 5px 0;
        text-align: center;
    }

        .otp-container .Verification_Control:first-of-type {
            margin-left: 0;
        }

        .otp-container .Verification_Control:last-of-type {
            margin-right: 0;
        }

.step-box {
    display: flex;
    margin-top: 30px;
    justify-content: center;
}

    .step-box div {
        margin: 8px;
        background: #BCBCBC;
        height: 14px;
        width: 14px;
        border-radius: 50%;
    }




/* =======================================
======== Details Page CSS Area ===========
======================================= */

.Main-Detail-Area {
    min-height: calc(100vh - 95px);
}

/* Top Current/Active Detail Page Area CSS */

.Main-Active-Detail-Page .container-fluid {
    max-width: 94%;
}

.Active-Detail-Flex {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    padding: 25px 0;
}

.Active-Detail-Page {
    display: flex;
    display: -webkit-flex;
}

.Single-Detail-Page {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    margin-right: 40px;
    opacity: 0.60;
}

    .Single-Detail-Page:last-of-type {
        margin-right: 0;
    }

    .Single-Detail-Page.active {
        opacity: 1.00;
    }

    .Single-Detail-Page img {
        margin-right: 15px;
    }

    .Single-Detail-Page h5 {
        font-size: 20px;
        font-weight: 500;
        color: #4D4D4D;
        line-height: 100%;
    }

.Step-List {
    display: flex;
    display: -webkit-flex;
    align-items: baseline;
    /* position: relative;
    top: -2px; */
}

    .Step-List li {
        list-style: none;
        color: #938E8E;
        font-size: 18px;
        font-weight: 600;
        line-height: 100%;
    }

        .Step-List li.active {
            color: #3C2E7E;
            font-size: 28px;
        }

/* Main Content Area CSS */

.Main-Content-Area .container-fluid {
    padding: 0 15px;
}

.Detail-Padding-Right {
    padding-right: 7.5px !important;
}

.Detail-Padding-Left {
    padding-left: 7.5px !important;
}

.Main-Card-Area {
    border-radius: 6px;
    box-shadow: 0 0 25px 2px rgba(60, 46, 126, 0.10);
    background-color: #fff;
    padding: 0 40px 0 55px;
    min-height: calc(75vh - 50px);
    margin-bottom: 15px;
}

.Main-Title-Area {
    display: flex;
    display: -webkit-flex;
    padding: 30px 0 30px 0;
}

.Page-Icon-Area {
    margin-right: 10px;
    display: flex;
    flex-direction: column;
}

    .Page-Icon-Area img {
        width: 28px;
    }

.Detail-Page-Border {
    margin-top: 7px;
    background: #FFCB31;
    width: 28px;
    height: 3px;
    border-radius: 10px;
}

.Page-Title h4 {
    color: #3C2E7E;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
}

.Detail-Verification-Area {
    margin-bottom: 30px;
}

    .Detail-Verification-Area label {
        font-size: 18px;
        font-weight: 400;
        color: #7E7E7E;
        padding-left: 20px;
        margin-bottom: 7px;
        transition: all ease-in-out 380ms;
    }

    .Detail-Verification-Area .Detail-Select {
        display: flex;
        align-items: center;
        font-size: 20px;
        font-weight: 400;
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #DCDCDC;
        border-radius: 0;
        padding: 5px 20px 10px 20px;
        float: none;
    }

.Detail-Select ul {
    max-height: 300px; /*210px;*/
    overflow-y: auto;
    scrollbar-color: #FFCB31 #fff;
    scrollbar-width: thin;
}

    .Detail-Select ul::-webkit-scrollbar {
        width: 14px;
        height: 10px;
    }

    .Detail-Select ul::-webkit-scrollbar-thumb {
        background-color: #FFCB31;
        border-radius: 10px;
        border: 5px solid #fff;
    }

.Detail_Control {
    display: block;
    width: 100%;
    padding: 5px 20px 10px 20px !important;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    color: #000;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #DCDCDC;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0 !important;
    transition: all 280ms ease-in-out;
}

    .Detail_Control:focus {
        outline: none;
        border-color: #3C2E7E;
    }

.Detail-Verification-Area input:focus + label,
.Detail-Verification-Area .Detail-Select:focus + label {
    color: #000;
}

.Border-Divider {
    height: 1px;
    width: 100% !important;
    background: #E1E1E1;
    margin: 20px auto;
    display: inline-block;
}

/* ===== Radio Option Ares CSS ===== */

.Option-Area {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
}

.Radio-Option-Area {
    display: flex;
}

.Option-Label {
    margin-right: 20px;
}

    .Option-Label p {
        font-size: 20px;
        font-weight: 600;
    }

.Radio-Option {
    margin-right: 20px;
}

    /* Custom Radio Button */

    .Radio-Option span input[type="radio"]:checked,
    .Radio-Option span input[type="radio"]:not(:checked),
    .Radio-Option input[type="radio"]:checked,
    .Radio-Option input[type="radio"]:not(:checked) {
        position: absolute;
        left: -9999px;
    }

        .Radio-Option span input[type="radio"]:checked + label,
        .Radio-Option span input[type="radio"]:not(:checked) + label,
        .Radio-Option input[type="radio"]:checked + label,
        .Radio-Option input[type="radio"]:not(:checked) + label {
            display: inline-block;
            position: relative;
            padding-left: 25px;
            cursor: pointer;
            font-size: 20px;
            font-weight: 600;
            line-height: 20px;
            color: #69696E;
        }

            .Radio-Option span input[type="radio"]:checked + label:before,
            .Radio-Option span input[type="radio"]:not(:checked) + label:before,
            .Radio-Option input[type="radio"]:checked + label:before,
            .Radio-Option input[type="radio"]:not(:checked) + label:before {
                content: '';
                position: absolute;
                left: 0;
                top: 0;
                width: 20px;
                height: 20px;
                border-radius: 100%;
                background: #C8BFF0;
            }

            .Radio-Option span input[type="radio"]:checked + label:after,
            .Radio-Option span input[type="radio"]:not(:checked) + label:after,
            .Radio-Option input[type="radio"]:checked + label:after,
            .Radio-Option input[type="radio"]:not(:checked) + label:after {
                content: '';
                width: 10px;
                height: 10px;
                background: #FFFFFF;
                position: absolute;
                top: 5px;
                left: 5px;
                border-radius: 100%;
                /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.20); */
                -webkit-transition: all 0.2s ease;
                transition: all 0.2s ease;
            }

            .Radio-Option span input[type="radio"]:not(:checked) + label:after,
            .Radio-Option input[type="radio"]:not(:checked) + label:after {
                opacity: 0;
                -webkit-transform: scale(0);
                transform: scale(0);
            }

            .Radio-Option span input[type="radio"]:checked + label:after,
            .Radio-Option input[type="radio"]:checked + label:after {
                opacity: 1;
                -webkit-transform: scale(1);
                transform: scale(1);
            }

.PermanentAddress {
    display: none;
}

.NominationArea {
    display: none;
}

/* ===== Document Upload Area CSS ===== */

.Main-Address-Upload {
    width: 500px !important;
}

.Upload-Document {
    background-color: #F2F0FD;
    padding: 20px 20px 25px 20px;
    border: 1px dashed #5395E3;
    border-radius: 4px;
}

.Address-Document-Title h4 {
    font-size: 20px;
    font-weight: 600;
    color: #3C2E7E;
    line-height: 100%;
    margin-bottom: 7px;
}

.Address-Document-Title p {
    font-size: 14px;
    font-weight: 500;
    color: #292828;
    line-height: 100%;
}

.Main-Address-Upload {
    margin: 20px 0 !important;
}

.Detail-Verification-Area input.datepicker {
    background: url(../images/Calendar.svg) 100% no-repeat;
    background-position: 98.5% center;
    background-size: 24px 24px;
}

.Form-Padding {
    margin-top: 0.05rem !important;
    font-weight: 500 !important;
    padding-left: 20px;
}

/* Custom Radio Button Type CSS */

.ButtonRadio {
    display: flex;
    flex-wrap: wrap;
    margin-top: 5px;
}

    .ButtonRadio input[type='radio'],
    .ButtonRadio input[type='checkbox'] {
        display: none;
    }

        .ButtonRadio input[type='radio'] + label,
        .ButtonRadio input[type='radio']:not(checked) + label {
            margin-right: 15px;
            cursor: pointer;
            border: 1px solid #CCCCCC;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 400;
            line-height: 100%;
            color: #000;
            min-width: 130px;
            text-align: center;
            padding: 10px 20px 10px 20px;
            transition: all 380ms ease-in-out;
        }

            .ButtonRadio input[type='radio'] + label:last-of-type,
            .ButtonRadio input[type='radio']:not(checked) + label:last-of-type {
                margin-right: 0;
            }

        .ButtonRadio input[type='radio']:checked + label,
        .ButtonRadio input[type='checkbox']:checked + label {
            border-color: #3c2e7e;
            border-radius: 4px;
            color: #ffffff;
            background: #3c2e7e;
        }

.Nomination-Confirmation-Area {
    margin-top: -10px;
    margin-bottom: 40px;
}

.Nomination-Content-Area {
    background: #EFECFF;
    border-radius: 4px;
    padding: 15px 20px;
}

/* Custom Radio Button For Details Pages */

.Confirm-Group {
    display: flex;
}

    .Confirm-Group input[type="checkbox"] {
        appearance: none;
        -webkit-appearance: none;
        height: 18px;
        padding: 9px;
        background-color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #3C2E7E;
        border-radius: 4px;
        outline: unset !important;
        position: relative;
    }

        .Confirm-Group input[type="checkbox"]::after {
            content: "";
            position: absolute;
            left: 6px;
            top: 1px;
            width: 6px;
            height: 12px;
            border: solid #FFCB31;
            border-width: 0 2px 2px 0;
            transition: all 240ms ease-in-out;
            transform: rotate(45deg) scale(0);
        }

        .Confirm-Group input[type="checkbox"]:checked::after {
            transform: rotate(45deg) scale(1.0);
        }

    .Confirm-Group label {
        cursor: pointer;
        user-select: none;
        margin-left: 15px;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        padding-right: 0;
    }

/*  */

.Bank-Detail-Verification {
    background: #EFECFF;
    border-radius: 4px;
    padding: 15px 20px;
    margin-top: 39px;
    margin-bottom: 50px;
}

.Bank-Confirmation-Content p {
    font-size: 17px;
    font-weight: 400;
    line-height: 21px;
}

.Bank-OR-Tag {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 100%;
    color: #3C2E7E;
}

    .Bank-OR-Tag::before {
        content: '';
        display: flex;
        align-items: center;
        height: 1px;
        width: 100%;
        background: #3C2E7E;
        margin-right: 15px;
    }

    .Bank-OR-Tag::after {
        content: '';
        display: flex;
        align-items: center;
        height: 1px;
        width: 100%;
        background: #3C2E7E;
        margin-left: 15px;
    }

.Bank-Detail-Upload {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
}

.Bank-Upload {
    background-color: #F2F0FD;
    padding: 20px 20px 25px 20px;
    border: 1px dashed #5395E3;
    border-radius: 4px;
}

/* Document Upload Area CSS */

.Main-Upload-Crad-Area {
    margin-bottom: 50px;
    min-height: 360px;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 20px 0px rgba(60, 46, 126, 0.10);
}

.Upload-Document-Title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.Doc-Main-Title h5 {
    color: #3C2E7E;
    font-size: 18px;
    font-weight: 700;
    line-height: 100%;
}

    .Doc-Main-Title h5 sup {
        color: #DB4545;
        font-weight: 800;
        top: -0.4em;
    }

.Front-Doc p {
    color: #3C2E7E;
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
}

.File-Size-Area {
    margin-top: 25px;
}

.File-Upload-Size {
    text-align: center;
    font-size: 14px;
    font-weight: 300;
    color: #4D4D4D;
}

.Sign-Requirement-Area {
    margin-top: -30px;
    background: #eae6ff;
    font-size: 12px;
    font-weight: 400;
    color: #000;
    border-radius: 4px;
    padding: 10px 15px;
    line-height: 15px;
}


/* ===== Personal Details ===== */

.Main-Profile-Area {
    display: flex;
    justify-content: space-between;
}

.Profile-Photo {
    max-width: 210px;
    width: 100%;
    padding: 0 20px;
}

.Profile-Input-Area {
    margin: 0 20px;
    border-radius: 100%;
    border: 2px solid #A3A3A3;
}

.Profile-Input-Content {
    margin-top: 20px;
    background: #eae6ff;
    border-radius: 4px;
    padding: 10px 5px 10px 5px;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
}

.Personal-Detail-Content {
    width: 100%;
    padding-left: 20px;
}

.Personal-Radio {
    padding-left: 20px;
}

.SpouseName-Label {
    display: none;
}

/* Prev Next Button */

.Button-Content {
    display: flex;
}

    .Button-Content a {
        background-color: #3C2E7E;
        color: #fff;
        font-size: 18px;
        line-height: 22px;
        border-radius: 4px;
        padding: 8px 25px;
    }

.Next a {
    padding-left: 40px;
    padding-right: 40px;
}

.Button-Content a:hover {
    color: #fff;
}

.button-nextprevious {
    background-color: #3C2E7E;
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    border-radius: 4px;
    padding: 8px 25px;
}

    .button-nextprevious:hover {
        color: #fff !important;
        background-color: #21236d !important;
        border-color: #21236d !important;
        box-shadow: 0 0 0 0.25rem rgba(95, 97, 159, 0.5) !important;
    }

    .button-nextprevious:focus {
        color: #fff !important;
        background-color: #21236d !important;
        border-color: #21236d !important;
        box-shadow: 0 0 0 0.25rem rgba(95, 97, 159, 0.5) !important;
    }

/* Scheme Selection Page CSS */

.Scheme-Title h5 {
    font-size: 30px;
    font-weight: 600;
    color: #3C2E7E;
    line-height: 100%;
}

.Main-Scheme-Radio label {
    display: flex;
    cursor: pointer;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    box-shadow: 0 0 25px 2px rgba(60, 46, 126, 0.10);
    overflow: visible;
}

    .Main-Scheme-Radio label input {
        position: absolute;
        left: -9999px;
    }

    .Main-Scheme-Radio label span {
        display: flex;
        align-items: center;
        border-radius: 4px;
        color: #000;
        background: #fff;
        font-size: 22px;
        font-weight: 500;
        line-height: 100%;
        padding: 25px 0px 26px 25px;
        transition: all 300ms ease-in-out;
        position: relative;
        width: 100%;
    }

        .Main-Scheme-Radio label span:before {
            content: "";
            display: flex;
            flex-shrink: 0;
            background-color: #fff;
            width: 26px;
            height: 26px;
            border-radius: 100%;
            margin-right: 20px;
            transition: 0.25s ease;
            box-shadow: inset 0 0 0 1px #5395E3;
        }

        .Main-Scheme-Radio label span small {
            margin-left: 5px;
            margin-top: 3px;
            font-size: 16px;
            font-weight: 300;
        }

        .Main-Scheme-Radio label span a.info-icon {
            position: absolute;
            top: 3px;
            right: 10px;
        }

    .Main-Scheme-Radio label input:checked + span {
        color: #ffffff;
    }

    .Main-Scheme-Radio label input:checked + span {
        background-color: #3C2E7E;
    }

        .Main-Scheme-Radio label input:checked + span:before {
            box-shadow: inset 0 0 0 6px #00005c;
        }

    .Main-Scheme-Radio label span a.info-icon img {
        width: 18px;
    }

    .Main-Scheme-Radio label input:checked + span a.info-icon img {
        filter: brightness(0) invert(1);
    }


/* Segment Area CSS */

.Main-Segment-Area {
    background: #fff;
    box-shadow: 0 0 25px 2px rgba(60, 46, 126, 0.10);
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 25px 0 35px 0;
}

.Trading-Title {
    padding-left: 2.9%;
}

    .Trading-Title h4 {
        font-size: 24px;
        font-weight: 500;
        color: #000;
        line-height: 100%;
        margin-bottom: 20px;
    }

.Segment-Flex-Area {
    display: flex;
    flex-wrap: nowrap;
    padding: 0 1.5% 0 2.9%;
}

.Single-Segment-Item {
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    position: relative;
    margin-right: 14px;
}

.Segment-Flex-Area .Single-Segment-Item:last-of-type {
    margin-right: 0;
}

.Single-Segment-Label {
    cursor: pointer;
    padding: 20px 20px;
    border: 1px solid #5395E3;
    border-radius: 4px;
    background-color: #fff;
    box-shadow: 0 0 25px 2px rgba(60, 46, 126, 0.10);
    width: 100%;
    transition: all 300ms ease-in-out;
}

label.Single-Segment-Label:hover {
    background-color: #3C2E7E;
    border-color: transparent;
}

    label.Single-Segment-Label:hover .Segment-Icon img {
        filter: brightness(0) invert(1);
    }

    label.Single-Segment-Label:hover .Segment-Title {
        color: #fff;
    }

.Single-Segment-Item input[type="checkbox"]:checked + label.Single-Segment-Label {
    background-color: #3C2E7E;
    border-color: transparent;
}

.Segment-Title {
    color: #3C2E7E;
    transition: all 300ms ease-in-out;
}

    .Segment-Title h5 {
        font-size: 20px;
        font-weight: 600;
        line-height: 100%;
        margin-bottom: 10px;
    }

    .Segment-Title p {
        font-size: 14px;
        font-weight: 400;
        line-height: 16px;
        margin-top: 5px;
    }

        .Segment-Title p:nth-of-type(2) {
            font-size: 14px;
            font-weight: 300;
            line-height: 16px;
        }

.Single-Segment-Item input[type="checkbox"]:checked + label.Single-Segment-Label .Segment-Icon img {
    filter: brightness(0) invert(1);
}

.Single-Segment-Item input[type="checkbox"]:checked + label.Single-Segment-Label .Segment-Title {
    color: #fff;
}

.Single-Segment-Content {
    display: flex;
}

.Segment-Icon {
    margin-right: 15px;
}

    .Segment-Icon img {
        width: 40px;
        height: 40px;
        transition: all 300ms ease-in-out;
    }

.Segment-Flex-Area input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    height: 18px;
    padding: 9px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #3C2E7E;
    border-radius: 4px;
    outline: unset !important;
    position: absolute;
    top: 5px;
    right: 5px;
}

.Single-Segment-Item input[type="checkbox"]::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 1px;
    width: 6px;
    height: 12px;
    border: solid #FFCB31;
    border-width: 0 2px 2px 0;
    transition: all 240ms ease-in-out;
    transform: rotate(45deg) scale(0);
}

.Single-Segment-Item input[type="checkbox"]:checked::after {
    transform: rotate(45deg) scale(1.0);
}

.Main-Brokerage-Content {
    padding-left: 2.9%;
    padding-right: 1.5%;
}

.Brokerage-Card {
    border: 1px solid #5395E3;
    padding: 20px 30px;
    border-radius: 4px;
}

.EquityHide {
    display: block;
}

.FutureOptionHide {
    display: none;
}

.DerivativesHide {
    display: none;
}

.BrokerageHide {
    display: block;
}

.Brokerage-Title {
    margin-bottom: 25px;
}

    .Brokerage-Title h4 {
        font-size: 24px;
        font-weight: 500;
        color: #000;
        line-height: 100%;
        display: flex;
        align-items: center;
    }

        .Brokerage-Title h4::before {
            content: "";
            margin-right: 10px;
            display: inline-block;
            height: 12px;
            width: 12px;
            background-color: #3C2E7E;
            border-radius: 100%;
        }

.Brokerage-Input-Heading h5 {
    font-size: 18px;
    font-weight: 600;
    color: #3C2E7E;
    line-height: 100%;
    margin-bottom: 15px;
}



.btn-darkblue {
    color: #fff !important;
    background-color: #21236d !important;
    border-color: #21236d !important;
}

    .btn-darkblue:hover {
        color: #fff !important;
        background-color: #3C2E7E !important;
        border-color: #3C2E7E !important;
        box-shadow: 0 0 0 0.25rem rgba(95, 97, 159, 0.5) !important;
    }

    .btn-darkblue:focus {
        color: #fff !important;
        background-color: #3C2E7E !important;
        border-color: #3C2E7E !important;
        box-shadow: 0 0 0 0.25rem rgba(95, 97, 159, 0.5) !important;
    }

.btn-yellow {
    color: #21236d !important;
    background-color: #FFCB31 !important;
    border-color: #FFCB31 !important;
}


    .btn-yellow:hover {
        color: #21236d !important;
        background-color: #FFCB31 !important;
        border-color: #FFCB31 !important;
    }

    .btn-yellow:focus {
        color: #21236d !important;
        background-color: #FFCB31 !important;
        border-color: #FFCB31 !important;
        box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5);
    }

.Doc_list {
    color: #fff;
    background: #3C2E7E;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 6px;
    padding: 10px 15px;
}

    .Doc_list button {
        background: #fff;
        height: 26px;
        width: 26px;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .Doc_list button img {
            height: 16px;
        }

.Doc_Name {
    color: #fff;
    font-size: 16px;
}

    .Doc_Name:hover {
        color: #fff;
    }

.Uploaded_Card {
    min-height: 200px;
}

.Uploaded_Filepond {
    display: none;
}

.Upload-Success img {
    width: 18px;
}

.Main-Accordion-Area {
    padding-bottom: 45px;
}

.accordion-button::after {
    border-bottom: 1.5px solid #3C2E7E;
    border-right: 1.5px solid #3C2E7E;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    margin-top: -4px;
}

.Summary-Card-Area {
    border-radius: 6px;
    box-shadow: 0 0 25px 2px rgba(60, 46, 126, 0.10);
    background-color: #fff;
    padding: 0 40px 25px 55px;
    margin-bottom: 15px;
    height: 100%;
}

.Summary-Table {
    margin-top: -10px;
    width: 100%;
}

    .Summary-Table > :not(caption) > * > * {
        padding: 0.7rem 0.4rem 0.7rem 0.6rem;
        border-bottom-width: 0;
    }

    .Summary-Table tr td:first-of-type {
        opacity: 0.55;
        transition: all 140ms ease-in-out;
    }

    .Summary-Table tr:hover td:first-of-type {
        opacity: 1.00;
    }

    .Summary-Table tr {
        background-color: transparent;
        color: #000;
        transition: all 140ms ease-in-out;
        display: flex;
    }

        .Summary-Table tr:hover,
        .Summary-Table tr:hover a {
            color: #3C2E7E;
        }

    .Summary-Table td {
        min-width: 35%;
        font-size: 18px;
        display: flex;
        align-items: center;
        background-color: transparent;
    }

td img {
    height: 100px;
    width: 100px;
}

.Edit-Details-Icon {
    margin-left: auto;
}

.btn:focus {
    box-shadow: none !important;
}

.Change-Detail {
    border: 1px solid #3c2e7e !important;
    border-radius: 100% !important;
    padding: 0.47rem 0.47rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1.0 !important;
    background-color: transparent !important;
    transition: all 280ms ease-in-out;
}

    .Change-Detail:hover {
        background-color: #3C2E7E !important;
    }

    .Change-Detail img {
        width: 14px;
    }

.accordion-button h4 {
    font-weight: 500;
}

.Client-List-Main-Area {
    margin-top: 20px;
    padding: 0;
    min-height: auto !important;
}

    .Client-List-Main-Area .Main-Title-Area {
        padding-left: 55px;
    }

.Main-Datatable-Area {
    padding: 0 20px 20px 20px;
}

/*BHAVIK*/
.errorlable {
    color: red;
    font-size: 11px
}

.float-right {
    float: right !important;
}

.imgdelete {
    position: absolute !important;
    left: 0 !important;
    margin: auto !important;
    right: 0 !important;
    line-height: 34px !important;
    margin-left: 195px !important;
    margin-top: 130px !important;
}

/* Dark Blue Color Class */

.dark-blue-color {
    color: #3C2E7E !important;
}

.dark-blue-bgcolor {
    background-color: #3C2E7E !important;
}


/* Yellow Color Class */
.yellow-color {
    color: #FFCB31 !important;
}

.yellow-bgcolor {
    background-color: #FFCB31 !important;
}

/*FileUpload DropBox css*/
.dragBox-1 {
    width: 380px;
    max-width: 100%;
    padding: 25px 0;
    background: #fcfcff;
    margin: 0 auto;
    position: relative;
    text-align: center;
    color: #999;
    border: 1.8px dashed #c7c0e5;
    border-radius: 3px;
    display: inline-grid;
    font-size: 11px;
    transition: transform 0.3s;
}

    .dragBox-1 span {
        color: #3c2e7e;
        font-size: 11px;
        font-weight: 500;
        text-decoration: underline;
    }

.file-upload-icn-1 {
    width: 32px;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

.dragBox-1 input[type="file"] {
    position: absolute;
    height: 70%;
    width: 100%;
    opacity: 0;
    top: 0;
    left: 0;
}

.file-upload-wrapper {
    position: relative;
    width: 100%;
    height: 60px;
    /*border: 1px solid #3c2e7e; */
    border-radius: 5px;
    margin-top: 5px;
}

.file-upload-field:hover {
    background-color: black;
}

.file-upload-wrapper-1 {
    position: relative;
    width: 100%;
    height: 60px;
    /*border: 1px solid #3c2e7e; */
    border-radius: 5px;
    margin-top: 5px;
}


.folder {
    background: url(../images/file-upload.svg);
    background-position: 20px 20px;
    background-size: 20px;
}
/*.file-upload-field::before {
  content: url('../images/file-upload.svg');
  display: inline-block;
  height: 30px;
  width: 30px;
}*/
.file-upload-wrapper:before {
    /*content: "Upload";
    position: absolute;*/
    top: 0;
    right: 0;
    display: inline-block;
    height: 40px;
    background: #3c2e7e;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 14px;
    line-height: 40px;
    padding: 0px 11px 10px 10px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}

.file-upload-wrapper-1:before {
    /*content: "Upload";
    position: absolute;*/
    top: 0;
    right: 0;
    display: inline-block;
    height: 40px;
    background: #3c2e7e;
    color: #fff;
    font-weight: 700;
    z-index: 25;
    font-size: 14px;
    line-height: 40px;
    padding: 0px 11px 10px 10px;
    text-transform: uppercase;
    pointer-events: none;
    border-radius: 0 5px 5px 0;
}

.file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

.file-upload-wrapper-1 input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: 40px;
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%;
}

.file-upload-wrapper:after {
    content: attr(data-text);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 6px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 50px;
    line-height: 23px;
    color: #3C2E7E;
    border-radius: 5px 5px 5px 5px;
    font-weight: 300;
}

.file-upload-wrapper-1:after {
    content: attr(data-text);
    font-size: 14px;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    padding: 10px 15px;
    display: block;
    width: calc(100% - 40px);
    pointer-events: none;
    z-index: 20;
    height: 60px;
    line-height: 23px;
    color: #3C2E7E;
    border-radius: 5px 5px 5px 5px;
    font-weight: 300;
}

.file-upload-wrapper-mob {
    margin-left: 16px;
}

    .file-upload-wrapper-mob:after {
        text-decoration: underline;
    }

.dragBox:hover {
    background-color: #cacbeb;
    color: #000000;
    transition: background 0.6s, color 0.6s;
}

.dragBox-1:hover {
    background-color: #cacbeb;
    color: #000000;
    transition: background 0.6s, color 0.6s;
}

.btn-circle-sm {
    width: 30px !important;
    height: 30px !important;
    padding: 2px 0px !important;
    border-radius: 15px !important;
    font-size: 15px !important;
    text-align: center !important;
}

.btn-circle-md {
    width: 50px !important;
    height: 50px !important;
    padding: 7px 10px !important;
    border-radius: 25px !important;
    font-size: 10px !important;
    text-align: center !important;
}

.btn-circle-xl {
    width: 70px !important;
    height: 70px !important;
    padding: 10px 16px !important;
    border-radius: 35px !important;
    font-size: 12px !important;
    text-align: center !important;
}


.avatar-upload {
    position: relative;
    max-width: 205px;
}

    .avatar-upload .avatar-edit {
        position: absolute;
        right: 0px;
        z-index: 1;
        top: 115px;
    }

        .avatar-upload .avatar-edit input {
            display: none;
        }

            .avatar-upload .avatar-edit input + label {
                display: inline-block;
                width: 34px;
                height: 34px;
                cursor: pointer;
                font-weight: normal;
                transition: all 0.2s ease-in-out;
            }

                .avatar-upload .avatar-edit input + label:after {
                    /*content: "";*/
                    content: url('../images/edit.svg');
                    font-family: "FontAwesome";
                    /*background-image: url('./images/edit.svg');*/
                    color: #3c2e7e;
                    position: absolute;
                    left: 0;
                    right: 0;
                    text-align: center;
                    line-height: 34px;
                    margin: auto;
                    margin-left: -33px;
                    margin-top: -30px;
                }
.profile-user-img {
    width: 125px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
}

.avatar-upload img {
    margin-right: 3px;
    cursor: pointer;
    margin-top: 0px;
    width: 130px;
    height: 130px;
    border-radius: 100px;
}


/*Leptop 1440 responsive*/
@media (min-width:1440px) and (max-width:1600px) {
 
    .dragBox-2 h6 {
        font-size: 18px !important;
    }

    .dragBox-2 {
        width: 450px !important;
    }
}

/*Think pad*/
@media (min-width: 1280px) and (max-width: 1439px) {

    .dragBox-2 h6 {
        font-size: 16px !important;
    }

    .dragBox-2 {
        width: 360px !important;
    }

        .dragBox-2 p {
            font-size: 12px !important;
        }
}
.dragBox-2 {
    width: 500px;
    max-width: 100%;
    padding: 25px 0;
    background: #fcfcff;
    margin: 0 auto;
    position: relative;
    text-align: center;
    color: #999;
    border: 1.8px dashed #c7c0e5;
    border-radius: 3px;
    display: inline-grid;
    font-size: 11px;
    transition: transform 0.3s;
}

    .dragBox-2:hover {
        background-color: #cacbeb;
        color: #000000;
        transition: background 0.6s, color 0.6s;
    }

    .dragBox-2 h6 {
        color: #3C2E7E;
        padding-bottom: 6px;
        font-size: 20px;
        font-weight: 600;
    }

    .dragBox-2 p {
        font-size: 13px;
        padding-bottom: 15px;
    }

.divCenter {
    display: flex;
    align-items: center;
    justify-content: center;
}

.headerrighticon {
    position: absolute;
    right: 10px;
    top: 30px;
}

/* Custom CSS to open toggled menu from the right */
.navbar-collapse {
    justify-content: flex-end !important;
}

.navbar-toggler {
    order: 1 !important;
    margin-left: auto !important;
}

.navbar-collapse.collapse.show {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    height: auto !important;
    transition: transform 0.3s !important;
    transform: translate3d(0, 0, 0) !important;
    padding: 0 15px !important;
    background-color: white;
}

.nav-item a {
    padding-bottom: 0px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    color: #21236d !important;
    font-weight: 600;
}


.completionList {
    border: solid 1px Gray;
    margin: 0px;
    padding: 3px;
    max-height: 120px;
    overflow: auto;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.listItem {
    color: #191919;
}

.itemHighlighted {
    background: #368ee0;
    color: #fff;
    font-weight: bold;
    /*background-color: #ADD6FF;       */
}