:root {
    --primary-color:#f16726;
    --secondry-color:#1da69c;
    --success-color:#198754;
    --danger-color:#dc3545;


}
/**/
* {
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    font-family: "montserrat";
    color: #424951;
    position: relative;
    background: #f5f5f5;
    margin-bottom: 30px;
}


.clearfix::after, .clearfix::before {
    display: block;
    content: "";
    clear: both;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "montserrat-med";
    font-weight: normal;
    color: #424951;
}

input, select, textarea {
    font-size: 15px;
    outline: none;
    float: left;
    width: 100%;
    padding-left: 10px;
    border: #ccc solid thin;
    border-radius: 5px;
    height: 40px;
    font-family: "montserrat-light";
}

    input:focus, select:focus, textarea:focus {
        border: #424951 solid thin;
    }

    input[type="text"], select {
        height: 35px;
        line-height: 32px;
    }

    input[type="file"] {
        height: auto;
        padding: 4px;
    }

textarea {
    resize: none;
    height: 100px;
    border-radius: 10px;
    padding: 10px;
}

    input[disabled], select[disabled], textarea[disabled], input.disabled, select.disabled, textarea.disabled {
        background: #e5e5e5;
        color: #424951;
        cursor: not-allowed;
    }

.btn {
    width: auto;
    padding: 5px 15px;
    background: none;
    border: none;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 13px;
    font-family: "montserrat";
    border-radius: 5px;
    font-weight: normal;
}

.btn-bluish {
    background: var(--primary-color);
    border: var(--primary-color) solid thin;
    border-radius: 5px;
    color: #fff;
}

    .btn-bluish:hover {
        background: var(--secondry-color);
        color: #fff;
        border-color: var(--secondry-color);
    }

.btn-yellow-outline {
    color: #ffb606;
    border: #ffb606 solid thin;
}

    .btn-yellow-outline:hover {
        background: #ffb606;
        color: #fff;
    }

.btn-black-outline {
    color: #424951;
    border: #424951 solid thin;
}

    .btn-black-outline:hover {
        background: #424951;
        color: #fff;
    }

.btn-black {
    color: #fff;
    background: #424951;
    border: #424951 solid thin;
}

    .btn-black:hover {
        background: #333;
    }

.btn-small {
    font-size: 13px;
    padding: 7px 10px;
    line-height: normal;
    height: auto;
}

header, footer {
    width: 100%;
    float: left;
    position: relative;
}

header {
    position: relative;
    z-index: 2;
}

#main-content {
    display: block;
    width: 100%;
    float: left;
}


.wrapper {
    width: 100%;
    margin: auto;
    position: relative;
    overflow-x: hidden;
}

.overflow-hidden {
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    float: left;
}

section {
    width: 100%;
    float: left;
}


.content::before, .content::after {
    display: block;
    content: "";
    clear: both;
}

img {
    border: 0;
    width: 100%;
}

p {
    text-align: justify;
    font-family: "montserrat-light";
    font-size: 14px;
    line-height: 20px;
    display: block;
    float: left;
}

a {
    text-decoration: none;
    color: #333;
    outline: none;
}

.clear {
    clear: both;
}

.brand {
    padding: 5px 0;
    padding-left: 20px;
    margin-right: 50px;
}

    .brand img {
        width: auto;
    }

.nav ul {
    margin: 0;
}

.nav li {
    float: left;
    width: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-right: 30px;
}

    .nav li:last-child {
        margin-right: 0;
    }

    .nav li a {
        font-family: "montserrat-light";
        border-bottom: transparent solid 3px;
        padding: 22px 0;
        display: block;
    }

        .nav li a:hover {
            color: var(--primary-color);
        }

        .nav li a.current {
            font-family: "montserrat";
            border-color: var(--primary-color);
        }

.inr-header {
    background: #fff;
    border-radius: 10px;
    float: left;
    width: 100%;
    margin: 15px 0;
}

.header-right {
    float: right;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.btn-query {
    float: left;
    margin: 12px 0;
    margin-right: 15px;
}

    .btn-query .ion-icon {
        font-size: 20px;
        display: inline-block;
        vertical-align: middle;
    }

.user-details {
    float: left;
    position: relative;
}

    .user-details .drop-toggle {
        padding: 24px 15px;
        background: var(--primary-color);
        color: #fff;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px;
        font-family: "montserrat-light";
        font-size: 15px;
    }

    .user-details span {
        margin-left: 10px;
        font-size: 12px;
    }

.display-flex {
    display: flex;
    flex-wrap: wrap;
}


    .display-flex .col-auto {
        margin: 0;
        margin-right: 7px;
        width: 48%;
    }


.justify-content-right {
    justify-content: flex-end;
}

.justify-content-left {
    justify-content: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-space-between {
    justify-content: space-between;
}

.align-item-center {
    align-items: center;
}

.facts {
    flex: 0 0 auto;
    padding: 10px 15px;
    padding-left: 60px;
    position: relative;
    margin-right: 50px;
    border-radius: 5px;
}

    .facts.current {
        background: #fff;
        box-shadow: 0 0 20px 0 rgba(0,0,0,0.05);
    }

    .facts .facts-title {
        font-family: "montserrat-light";
    }

    .facts .facts-count {
        font-size: 22px;
        font-family: "montserrat-med";
    }

    .facts:last-child {
        margin-right: 0;
    }

.facts-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    bottom: 0;
    left: 0;
    font-size: 40px;
    margin: auto;
    text-align: center;
}

    .facts-icon::before {
        line-height: 50px;
    }

.text-yellow {
    color: #ffba00;
}

.text-green {
    color: #51c71e;
}

.text-blue {
    color: #1ea9c7;
}

.heading {
    border-bottom: #ccc solid thin;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

    .heading h2 {
        font-family: "montserrat-light";
        font-size: 20px;
        margin: 0;
    }

.select2, .select2 span, .select2-results li {
    font-family: "montserrat-light";
}

.grid-box {
    margin: 15px 0;
}

.grid-header {
    font-size: 13px;
    font-family: "montserrat";
    color: #aaa;
}

.row-header {
    margin: 10px 0;
    color: var(--primary-color);
    font-size: 15px;
}

.col-no-pdng {
    padding: 0;
}

.grid-body .row-head, .grid-body .row-text {
    font-size: 15px;
}

.grid-body .row-text {
    font-family: "montserrat-light";
}

.well, .well-1 {
    background: #fff;
    padding: 15px;
    border: #e5e5e5 solid thin;
    width: 100%;
    float: left;
    border-radius: 10px;
}


    .well:hover {
        border-color: var(--primary-color);
        box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    }

        .well:hover .btn-yellow-outline {
            background: #ffb606;
            color: #fff;
        }

        .well:hover .btn-black-outline {
            background: #424951;
            color: #fff;
        }

        .well:hover h4 {
            color: var(--primary-color);
        }

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

span.rupee {
    font-family: "rupee";
}

.data-row {
    margin-bottom: 10px;
}

.deprt-logo {
    width: 45px;
    margin-right: 10px;
}

.deprt-logo, .row-head h4 {
    display: inline-block;
    vertical-align: middle;
}

.row-head h4 {
    position: relative;
    top: -5px;
    max-width: 70%;
}

.font-light {
    font-family: "montserrat-light";
}

.text-black {
    color: #424951;
}

.text-red {
    color: #ed4949;
}

.text-small {
    font-size: 13px;
}

.mtb-05 {
    margin: 5px 0;
}

.btn-center {
    display: inline-block;
}

.application-status {
    float: right;
    color: #ffba00;
    text-align: right;
    font-size: 18px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.steps-col {
    position: relative;
    padding-right: 30px;
}

    .steps-col::before {
        width: 150%;
        left: 0;
        height: 6px;
        background: #fff;
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    .steps-col:last-child {
        margin-right: 0;
    }

    .steps-col.last-step {
        margin: 0;
        padding: 0;
    }

        .steps-col.last-step::before {
            display: none !important;
        }

    .steps-col:last-child::before {
        display: none !important;
    }

    .steps-col .steps-num {
        width: 60px;
        height: 60px;
        font-size: 20px;
        font-family: "montserrat-med";
        color: #fff;
        line-height: 60px;
        text-align: center;
        border-radius: 50%;
        background: #ccc;
        position: relative;
        border: #fff solid 7px;
        border-collapse: collapse;
        box-sizing: content-box;
        transform: rotate(-45deg);
    }

        .steps-col .steps-num span {
            transform: rotate(45deg);
            position: relative;
            display: block;
        }

.fix-this .steps-col .steps-num {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 16px;
}

.fix-this .steps-col::before {
    background: #f5f5f5;
}

.steps-col .steps-num:hover {
    color: var(--primary-color);
}

.steps-col.step-current .steps-num {
    border-top-color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: var(--secondry-color);
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    transform: rotate(-45deg);
}

.steps-col.step-completed .steps-num {
    border-color: var(--primary-color);
    background: var(--success-color);
    color: #fff;
}

.steps-col.step-completed::before {
    background: var(--primary-color);
}


.step-head {
    width: 100%;
    float: left;
    margin: 15px 0;
    text-align: center;
}

.fix-this .step-head {
    font-size: 13px;
}

.all-forms {
    float: left;
    width: 100%;
}

    .all-forms h3 {
        color: var(--primary-color);
        font-size: 17px;
        margin: 0;
        margin-bottom: 15px;
    }

[class^="col-"] label, [class*=" col-"] label {
    font-family: "montserrat-light";
    font-size: 14px;
    line-height: 30px;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
    float: left;
}

.inpt {
    width: 100%;
    float: left;
    position: relative;
}

.select2-results__options, .select2-search--dropdown {
    width: 100%;
    float: left;
}

    .select2-search--dropdown input {
        font-family: "montserrat-light";
    }

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mb-3 {
    margin-bottom: 30px;
}

.mb-4 {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-1 {
    margin-top: 10px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-4 {
    margin-top: 40px;
}

.mbt-5 {
    margin-top: 50px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px !important;
    height: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 30px !important;
}

.mobile-number .inpt .select2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px !important;
    border: none !important;
}

.mobile-number .inpt input {
    padding-left: 90px;
}

.mobile-number .select2-selection {
    border: none !important;
    background: none !important;
}

.btn-groups .btn {
    margin: 5px;
}

.cal, .cal-yr-mnth {
    background: url(../images/cal.png) no-repeat right;
    padding-right: 25px;
}


.inline-block .block {
    float: left;
    position: relative;
    overflow: hidden;
    margin: 5px 0 0;
    margin-right: 10px;
}

    .inline-block .block:last-child {
        margin-right: 0;
    }

    .inline-block .block label {
        display: block;
        padding: 0 20px;
        float: left;
        background: none;
        color: #666;
        text-transform: uppercase;
        font-size: 15px;
        margin: 0;
        cursor: pointer;
        border-radius: 5px;
        border: #ccc solid thin;
    }

.inline-block input {
    margin-left: -50px;
}


    .inline-block input[type="checkbox"] {
        margin-left: -50px;
        width: auto;
    }

.inline-block label {
    float: left;
}

    .inline-block label:hover {
        cursor: pointer;
    }


.inline-block input.same-clr:checked + label {
    color: #fff;
    border: var(--primary-color) solid thin;
    background: var(--primary-color);
}

.inline-block input[type="radio"] {
    width: auto;
    float: left;
    height: auto;
}

.vertical-scroll, .vertical-scroll div, .horizontal-scroll, .horizontal-scroll div {
    transition: none;
}


/* table design */
.table-design {
    width: 100%;
    float: left;
}

    .table-design th, .table-design td {
        padding: 13px 7px;
    }

    .table-design td {
        border-bottom: #ccc solid thin;
    }

    .table-design th {
        font-family: "montserrat";
        color: #424951;
        font-weight: normal;
        font-size: 13px;
        text-align: left;
        background: #e5e5e5;
    }

    .table-design td {
        font-family: "montserrat-light";
        color: #424951;
        font-weight: normal;
        font-size: 13px;
        text-align: left;
    }

        .table-design td strong.text-green {
            color: var(--primary-color);
        }

    .table-design .large {
        width: 30%;
    }

    .table-design .med {
        width: 10%;
    }

.inpt-sub-text {
    font-family: "montserrat-light";
    font-size: 12px;
    margin-top: 5px;
}

    .inpt-sub-text.pull-left {
        margin-left: 7px;
    }

    .inpt-sub-text.pull-right {
        margin-right: 7px;
    }

.uploaded-img {
    color: var(--primary-color);
    cursor: pointer;
    float: left;
    position: relative;
    font-size: 14px;
    margin: 7px 0;
    margin-left: 7px;
}

    .uploaded-img::after {
        display: block;
        content: '\f123';
        font-family: "Ionicons";
        position: absolute;
        right: -20px;
        top: 2px;
    }

.img-col {
    position: relative;
    margin: 7px 0;
}

.img-name {
    position: relative;
    width: 100%;
    float: left;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
}

.img-col .ion-icon {
    position: absolute;
    width: 25px;
    height: 25px;
    text-align: center;
    line-height: 25px;
    color: #fff;
    border-radius: 50%;
    background: #ed4949;
    right: 0;
    top: -8px;
    cursor: pointer;
}

.all-upload-img {
    display: none;
    transition: none;
}


/* tooltip */

.tooltip {
    position: absolute;
    z-index: 30000;
    display: block;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    filter: alpha(opacity=0);
    opacity: 0;
    transition: none;
    line-break: auto;
}

    .tooltip.in {
        filter: alpha(opacity=90);
        opacity: .9;
    }

    .tooltip.top {
        padding: 5px 0;
        margin-top: -3px;
    }

    .tooltip.right {
        padding: 0 5px;
        margin-left: 3px;
    }

    .tooltip.bottom {
        padding: 5px 0;
        margin-top: 3px;
    }

    .tooltip.left {
        padding: 0 5px;
        margin-left: -3px;
    }

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

input[type="checkbox"] {
    height: auto;
    width: auto;
}

.inner-heading-grey {
    background: #e5e5e5;
    padding: 15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-top: -15px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    margin-bottom: 15px;
    border-bottom: #ccc solid thin;
}

    .inner-heading-grey h2 {
        margin: 0;
        padding: 0;
        font-size: 19px;
        float: left;
    }

.well-inr {
    width: 100%;
    float: left;
    padding-bottom: 15px;
    border-bottom: #ccc solid thin;
}

    .well-inr:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.hide {
    display: none !important;
}

.show {
    display: block !important;
}

.fix-this {
    position: fixed;
    background: #fff;
    top: 0;
    z-index: 100;
    border-bottom: #ccc solid thin;
    width: 100%;
    left: 0;
    box-shadow: 0 7px 15px 0 rgba(0,0,0,0.1);
}

.text-link, .text-link h4 {
    color: var(--primary-color);
}

    .text-link:hover, .text-link:hover h4 {
        text-decoration: underline;
    }

.status {
    text-transform: uppercase;
}

.status-open {
    color: #d6a60c;
    font-family: "montserrat-med";
}

.query-col span {
    font-family: "montserrat-light";
    color: #666;
    display: block;
    font-size: 13px;
}

.convo {
    margin: 10px 0;
}

    .convo .convo-text {
        background: #f0f0f0;
        color: #666;
        font-size: 13px;
        padding: 12px;
        font-family: "montserrat-light";
        margin-top: 5px;
        max-width: 80%;
        border-radius: 5px;
    }

    .convo.user-convo .convo-text {
        float: right;
        clear: both;
    }

.convo-text img {
    max-width: 350px;
    height: auto;
}

.user-convo {
    float: right;
}

.convo-text .btn {
    clear: both;
    float: right;
    margin-top: 10px;
}

.convo-img {
    float: right;
}

.convo-send-name-time {
    font-size: 14px;
    max-width: 80%;
}



    .convo-send-name-time span {
        color: #aaa;
        font-family: "montserrat-light";
        font-size: 12px;
    }

.user-convo .convo-send-name-time {
    text-align: right;
    float: right;
}

.user-convo .convo-send-name-time {
    text-align: right;
}

.conversation-reply {
    border-top: #aaa solid thin;
    padding-top: 15px;
    margin-top: 15px;
}

    .conversation-reply textarea {
        height: 80px;
    }

.file-upload {
    position: relative;
    overflow: hidden;
    float: left;
    margin-right: 10px;
}

.form-group .btn {
    height: auto;
    line-height: normal;
}

.file-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.dropdown {
    position: absolute;
    right: 0;
    background: #fff;
    width: 250px;
    border: #e5e5e5 solid thin;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
    display: none;
    transition: none;
}

    .dropdown a {
        display: block;
        width: 100%;
        padding: 10px;
        border-bottom: #e5e5e5 solid thin;
        font-size: 13px;
        font-family: "montserrat-light";
    }

        .dropdown a:last-child {
            border-bottom: 0;
        }

        .dropdown a:hover {
            background: #f5f5f5;
            color: var(--primary-color);
        }

.drop-toggle {
    cursor: pointer;
}

.user-details .ion-icon {
    vertical-align: middle;
    font-size: 30px;
    display: none;
}

.center-element {
    margin: auto;
    float: none;
    width: 750px;
}


/* modal-popup */

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0;
    text-align: center;
    background: rgba(66,73,81,0.4);
}

    .modal.fade .modal-dialog {
        -webkit-transform: translate(0, -25%);
        -ms-transform: translate(0, -25%);
        -o-transform: translate(0, -25%);
        transform: translate(0, -25%);
        -webkit-transition: -webkit-transform 0.3s ease-out;
        -o-transition: -o-transform 0.3s ease-out;
        transition: transform 0.3s ease-out;
    }

    .modal.in .modal-dialog {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px;
}

.modal-header {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 15px;
}

    .modal-header .heading {
        margin-bottom: 0;
        color: #4C5667;
    }

    .modal-header .close {
        margin-top: 5px;
    }

.modal-dialog {
    background: #fff;
    padding: 15px;
    border-radius: 5px;
    float: none;
    display: inline-block;
    text-align: left;
    margin-top: 80px;
    box-shadow: 0 0 5px 0 rgba(66,73,81,0.2);
}

.modal-header {
    width: 100%;
    float: left;
    padding-bottom: 15px;
    border-bottom: #ccc solid thin;
    position: relative;
}

.close.btn {
    border: #ccc solid thin;
    padding: 0;
    box-shadow: none;
    position: absolute;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    top: 0;
    right: 0;
    margin: auto;
}

    .close.btn:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: #fff;
    }

.modal-med {
    width: 60%;
}

.modal-med-small {
    width: 800px;
}

.modal-small {
    width: 600px;
}

.modal-header h2 {
    margin: 0;
    font-size: 18px;
    max-width: 70%;
}

.mtcust {
    margin-top: 180px !important;
}

.user-details span.hide-text-mobile {
    font-size: 15px;
}

.mCSB_container {
    width: 100% !important;
}

.heading .col-md-5 {
    width: auto;
}

.heading .col-md-7 {
    width: auto;
}

.modal-body {
    width: 100%;
    float: left;
}

.vertical-scroll .mCSB_inside > .mCSB_container {
    width: 100% !important;
}

.mCSB_scrollTools {
    right: -6px;
}

.vertical-scroll .mCSB_inside > .mCSB_container {
    padding-right: 15px;
}

.mCSB_horizontal.mCSB_inside > .mCSB_container {
    margin-bottom: 20px !important;
}

.steps-col.step-completed.step-current .steps-num {
    background: var(--secondry-color);
}

/* progress loading */

.screen-progress-back {
    position: fixed;
    display: table;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.8);
    vertical-align: middle;
    text-align: center;
    z-index: 100000;
}

.screen-progress-back-light {
    background: rgba(0,0,0,0.5);
}

.center-element {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

.loading-mu, .loading-animation {
    display: inline-block;
    width: 60px;
}


.loading-animation {
    font-family: "montserrat";
    font-size: 20px;
    color: #fff;
}
/*=====================================**/



.file-upload-progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}

.file-upload-progress {
    display: -ms-flexbox;
    display: flex;
    height: 20px;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: 30px;
    margin-top: 10px;
    width: 100%;
}

.file-upload-progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
    border-radius: 30px;
}

.file-upload-progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: var(--primary-color);
    transition: width .6s ease;
    font-size: 16px;
    text-align: center;
}

[class^="col-"], [class*=" col-"] {
    margin-bottom: 8px;
}

/* Validation Css*/

.inpt span.validation, .table-design td span.validation {
    position: absolute;
    display: block;
    float: left;
    width: 100%;
    top: 35px;
}

.table-design td span.validation {
    position: absolute;
    display: block;
    float: left;
    width: 100%;
    top: 90px;
}

    .inpt span.validation span, .table-design td span.validation span {
        width: auto;
        padding: 5px 10px;
        border-radius: 5px;
        background: #d24858;
        color: #fff !important;
        position: relative;
        z-index: 10;
        display: block;
        margin-left: 10px;
        float: left;
        font-size: 13px;
        font-family: 'montserrat-light';
    }

        .inpt span.validation span::before {
            position: absolute;
            width: 11px;
            height: 7px;
            content: '';
            background: url(../images/arw-red.png) no-repeat top center;
            background-size: 100%;
            top: -5px;
            display: block;
            left: 10px;
        }

    .table-design td span.validation span {
        /*background: url(../images/alert.png) no-repeat right;*/
        transition: none;
        border-color: #D24858;
    }

        .table-design td span.validation span::before {
            position: absolute;
            width: 11px;
            height: 7px;
            content: '';
            background: url(../images/arw-red.png) no-repeat top center;
            background-size: 100%;
            top: -5px;
            display: block;
            left: 10px;
        }

.inpt span.validation span {
    /*background: url(../images/alert.png) no-repeat right;*/
    transition: none;
    border-color: #D24858;
}

.brand img {
    width: auto;
    height: 53px;
    padding: 0;
}

.btn-primary {
    background: var(--secondry-color);
    color: #fff;
    border: var(--secondry-color) solid thin;
}

    .btn-primary:hover {
        background: var(--primary-color);
        border: var(--primary-color) solid thin;
    }

.btn-primary-outline {
    border: var(--primary-color) solid thin;
    color: var(--primary-color);
}

    .btn-primary-outline:hover {
        background: var(--primary-color);
        color: #fff;
    }
.btn-danger {
    background: var(--danger-color);
    color: #fff;
    border: var(--danger-color) solid thin;
}
.btn-danger:hover {
        background: var(--danger-color);
        border: var(--danger-color) solid thin;
    }

.btn-danger-outline {
    border: var(--danger-color) solid thin;
    color: var(--danger-color);
}

    .btn-danger-outline:hover {
        background: var(--danger-color);
        color: #fff;
    }

.btn-success-outline {
    border: var(--success-color) solid thin;
    color: var(--success-color);
}

    .btn-success-outline:hover {
        background: var(--success-color);
        color: #fff;
    }

.deprt-logo {
    display: none;
}

.empty-div-hide div:empty {
    display: none;
}

.well.data-row {
    padding: 5px 15px;
}

    .well.data-row:not(last-child) {
        margin-bottom: 10px;
    }

.data-row [class^="col-"], [class*=" col-"] {
    margin-bottom: 0;
}

.text-success {
    color: var(--success-color);
}

.mt-05 {
    margin-top: 5px;
}

.mb-1 {
    margin-bottom: 10px;
}

.inner-heading-grey {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.inpt-checkbox input {
    margin-top: 8px;
}

.inpt .select2-container {
    width: 100% !important;
}


/*loading animation start*/

.cust-loading, .alert-popup {
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .lds-ellipsis div.circle {
        position: absolute;
        top: 33px;
        width: 13px;
        height: 13px;
        border-radius: 50%;
        background: #f16726;
        animation-timing-function: cubic-bezier(0, 1, 1, 0);
    }

        .lds-ellipsis div.circle:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }

        .lds-ellipsis div.circle:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
/*loading animation end*/


.all-upload-img img {
    height: 70px;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
}

.all-upload-img .img-thumb {
    text-align: center;
}

.alert-box {
    width: 100%;
    float: left;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 5px;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* alert box start */

.alert {
    position: relative;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 3rem;
}

    .alert-dismissible .btn-close {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2;
        padding: 1.25rem 1rem;
    }

.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

    .alert-primary .alert-link {
        color: #06357a;
    }

.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

    .alert-secondary .alert-link {
        color: #34383c;
    }

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

    .alert-success .alert-link {
        color: #0c4128;
    }

.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

    .alert-info .alert-link {
        color: #04414d;
    }

.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

    .alert-warning .alert-link {
        color: #523e02;
    }

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

    .alert-danger .alert-link {
        color: #6a1a21;
    }

.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

    .alert-light .alert-link {
        color: #4f5050;
    }

.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}

    .alert-dark .alert-link {
        color: #101214;
    }
/* alert box end */

.text-danger {
    color: #842029;
}

.mr-2 {
    margin-right: 15px;
}

.cmps-pref .select2-container .selection {
    display: block;
}

.cmps-pref .select2-container--default .select2-selection--multiple {
    height: 35px;
}

    .cmps-pref .select2-container--default .select2-selection--multiple .select2-selection__rendered {
        height: 35px;
    }

.cmps-pref .select2-container--default .select2-search--inline .select2-search__field {
    line-height: 35px;
    margin: 0;
    height: 35px;
}

.disable-element {
    position: relative;
}

    .disable-element::after {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.1);
        content: "";
        border-radius: 10px;
        cursor: not-allowed;
        z-index: 2;
    }

/*1-7-22*/

.mocktest-details {
    margin: 5px 0;
    padding-top: 5px;
    border-top: #ccc solid thin;
}

    .mocktest-details h4 {
        margin: 0;
        margin-bottom: 10px;
    }

    .mocktest-details .label {
        font-family: "montserrat-light";
        margin-bottom: 5px;
    }

    .mocktest-details a {
        color: #0067ac;
        text-decoration: underline;
    }

        .mocktest-details a:hover {
            color: #00a9b4;
        }

    .mocktest-details .row > div {
        margin-bottom: 10px;
    }

        .mocktest-details .row > div div {
            word-break: break-all;
        }

.table-design-th th {
    font-weight: "montserrat" !important;
    color: var(--secondry-color) !important;
    font-weight: bold;
    border-bottom: #fff solid thin;
}

.cust-multi-scroll .select2-container {
    min-height: 35px;
    height: auto;
}

.cust-multi-scroll .select2-container--default.select2-container--focus .select2-selection--multiple {
    min-height: 35px;
    max-height: 80px;
    height: auto;
    overflow: auto;
}

.cust-multi-scroll .select2-container--default .select2-selection--multiple .select2-selection__rendered,
.cust-multi-scroll .select2-container--default .select2-selection--multiple,
.cust-multi-scroll .select2-container .selection {
    height: auto;
}

.cust-multi-scroll .select2-container--default .select2-selection--multiple {
    overflow: auto;
    position: relative;
    max-height: 80px;
}

.hide-show-number {
    position: relative;
}

.inpt-text-hide-show {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 25px;
    height: 25px;
    font-size: 20px;
    line-height: normal;
    text-align: center;
    color:#666;
}


.lists{
    width:100%;
    float:left;
    padding-left:20px;
}

.lists li{
    font-family:"montserrat-light";
    margin-bottom:7px;
    font-size:13px;
}

.boldtext{
   font-weight:800 !important;
}

.check-radio-btns input{
    width:auto;
    height:auto;
}

.check-radio-btns label, .check-radio-btns input{
    float:none;
    display:inline-block;
    vertical-align:middle;
}


.check-radio-btns label{
    margin-right:15px;
}

.cmps-pref .select2::before{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.2);
    content:"";
    z-index:2;
    cursor:not-allowed;
    
}

.cmps-pref.hide-before .select2::before{
    display:none;
}

.mb-2{
    margin-bottom:1rem;
}

.flex-nowrap{
    flex-wrap:nowrap;
}

.all-text-box{
    width:100%;
    margin-right:10px;
}

.inpt-add-btn .add-btn .btn{
    font-size:20px;
    padding:0 15px;
    height:35px;
    line-height:35px;
    margin-left:10px;
}