﻿body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: 'FiraSans-Regular';
    zoom: 90%;
}

@font-face {
    font-family: 'FiraSans-Regular';
    src: url('../fonts/FiraSans-Regular.ttf');
}

@font-face {
    font-family: 'FiraSans-SemiBold';
    src: url('../fonts/FiraSans-SemiBold.ttf');
}

@font-face {
    font-family: 'FiraSans-Light';
    src: url('../fonts/FiraSans-Light.ttf');
}

@font-face {
    font-family: 'FiraSans-Bold';
    src: url('../fonts/FiraSans-Bold.ttf');
}

@font-face {
    font-family: 'FiraSans-ExtraBold';
    src: url('../fonts/FiraSans-ExtraBold.ttf');
}


/*=========== Common css ========*/
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

a, a:hover, a:focus {
    text-decoration: none;
    color: #000;
}

:focus {
    outline: none;
}

.mt-5 {
    margin-top: 5px;
}

.mt-15 {
    margin-top: 15px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}

.pd-0 {
    padding: 0 !important;
}

.pdt-5 {
    padding-top: 5px;
}




/*====== Custome Checkbox ================= */



.cust-checkmain {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .cust-checkmain input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 3px;
}

/* On mouse-over, add a grey background color */
.cust-checkmain:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.cust-checkmain input:checked ~ .checkmark {
    background-color: #1c2f7a;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.cust-checkmain input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.cust-checkmain .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}



/* The container */
.radio-inline {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .radio-inline input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    /* Create a custom radio button */
    .radio-inline .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        background-color: #eee;
        border-radius: 50%;
    }

    /* When the radio button is checked, add a blue background */
    .radio-inline input:checked ~ .checkmark {
        background-color: #1c2f7a;
    }

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.radio-inline input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.radio-inline .checkmark:after {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}



/*========= Login Page=========*/

.login-page-logo {
    float: left;
    width: 150px;
    margin-top: 15px;
}

    .login-page-logo img {
        width: 100%;
    }

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 320px;
}

.user-icon {
    text-align: center;
}

    .user-icon span {
        display: inline-block;
        background: #9099be;
        width: 125px;
        height: 125px;
        text-align: center;
        line-height: 144px;
        border-radius: 50%;
    }

.login-fild {
}

div.form-item {
    position: relative;
    display: inline-block;
    margin-top: 22px;
    width: 100%;
    float: left;
}

input {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
}

    input.form-style {
        color: #000;
        display: block;
        width: 100%;
        height: 32px;
        padding: 0 10px;
        border: 0;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 0;
        border-bottom: 2px solid #1c2f7a;
    }

div.form-item .form-style:focus {
    outline: none;
    color: #000;
}

div.form-item p.formLabel {
    position: absolute;
    left: 30px;
    top: 5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    transition: all .4s ease;
    color: #1c2f7a;
    margin-bottom: 0;
    font-size: 16px;
    z-index: 99;
}

.formTop {
    top: -17px !important;
    padding: 0 7px;
    font-size: 14px !important;
    color: #1c2f7a !important;
    border-radius: 50px;
}

.formStatus {
    color: #8a8a8a !important;
}

textarea.form-style {
    height: auto;
    resize: none;
    padding: 5px 8px;
}

.login-pd-left {
    padding-left: 30px !important;
}

.login-left-icon {
    position: absolute;
    top: 50%;
    left: 5px;
    font-size: 18px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #1c2f7a;
}

.login-btn {
    display: inline-block;
    width: 100%;
}

    .login-btn button {
        width: 100%;
        background: #1c2f7a;
        color: #fff;
        border: 0;
        outline: none;
        box-shadow: none;
        margin-top: 20px;
        padding: 5px 0;
        font-size: 20px;
        text-transform: capitalize;
    }

.remember-forget {
    display: block;
    margin-top: 15px;
}

.remember-pass {
    float: left;
}

.forgot-pass {
    float: right;
    font-size: 16px;
}

    .forgot-pass a {
        color: #1c2f7a;
    }

.remember-pass label {
    font-size: 12px;
    margin-bottom: 0;
    color: #1c2f7a;
    padding-left: 20px;
}

.new-registration {
    text-align: center;
}

.remember-pass label .checkmark {
    width: 15px;
    height: 15px;
}

.remember-pass .cust-checkmain .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    border-width: 0 2px 2px 0;
}

.new-registration a {
    margin-top: 50px;
    color: #1c2f7a;
    font-size: 16px;
    display: block;
    white-space: nowrap;
}

.footer {
    width: 100%;
    display: inline-block;
    background: #1c2f7a;
    color: #fff;
    padding: 9px 15px;
    position: fixed;
    bottom: 0;
    z-index: 99;
    left: 0;
    right: 0;
}

.footer-left {
    float: left;
}

    .footer-left a {
        color: #fff;
    }

        .footer-left a img {
            width: auto;
        }

.footer-right {
    float: right;
    margin-right: -2px;
}

    .footer-right ul li {
        display: inline-block;
        margin-left: 5px;
    }

/*=============== Header ================*/

.header {
    width: 100%;
    text-align: center;
}

.header-shadow {
    /*box-shadow: 0 0 2px rgba(0,0,0,0.4);*/
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 2px solid #bdbdbd42;
}

.header-logo {
    float: left;
    width: 100px;
    margin-right: 20px;
}

    .header-logo img {
        width: 100%;
    }

.header-bradcum {
    display: inline-block;
}

.menu {
    float: left;
    padding: 9px 0;
}

    .menu ul li {
        display: inline-block;
        position: relative;
    }

        .menu ul li a {
            color: #1c2f7a;
            font-size: 16px;
            padding: 10px 10px;
            display: block;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            transition: all 0.3s;
            border-radius: 2px;
        }

        .menu ul li:hover a {
            background: #1c2f7a; /*#29166f;*/
            color: #fff;
        }

    .menu ul ul {
        position: absolute;
        left: 0;
        width: 200px;
        background: #29166f;
        text-align: left;
        border-radius: 3px;
        overflow: hidden;
        opacity: 0;
        z-index: 50;
        visibility: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transform: translateY(10%);
        -moz-transform: translateY(10%);
        transform: translateY(10%);
    }

        .menu ul ul li {
            width: 100%;
        }

            .menu ul ul li a {
                color: #fff;
                font-size: 15px;
            }

    .menu ul li:hover ul {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        transform: translateY(0%);
    }



.toggle-menu {
    display: none;
    font-size: 22px;
    padding: 2px 10px;
    margin-left: 20px;
    border: 2px solid #29166f;
    margin-top: 10px;
    border-radius: 3px;
    cursor: pointer;
    color: #29166f;
}



.right-menu {
    float: right;
    padding: 10px 0;
}

    .right-menu ul li {
        display: inline-block;
    }

        .right-menu ul li a {
            color: #1c2f7a;
            font-size: 16px;
            display: block;
            box-shadow: 0 0 2px rgba(0,0,0,0.3);
            width: 40px;
            height: 40px;
            line-height: 40px;
            border-radius: 50px;
            margin-right: 10px;
            text-align: center;
        }

li.user-profile {
    color: #1c2f7a;
    cursor: pointer;
    font-size: 16px;
    position: relative;
}

    li.user-profile i {
        margin-right: 5px;
    }

    li.user-profile ul {
        width: 150px;
        position: absolute;
        right: 0;
        background: #fff;
        box-shadow: 0 0 2px rgba(0,0,0,0.3);
        border-radius: 3px;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-transform: translateY(10%);
        -moz-transform: translateY(10%);
        transform: translateY(10%);
    }

        li.user-profile ul li {
            width: 100%;
            text-align: left;
        }

            li.user-profile ul li a {
                width: auto;
                height: auto;
                box-shadow: none;
                line-height: normal;
                padding: 10px;
                border-radius: 0;
                margin-right: 0;
                white-space: normal;
            }

                li.user-profile ul li a:hover {
                    background: #1c2f7a;
                    color: #fff;
                }

    li.user-profile:hover ul {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        transform: translateY(0%);
    }
/*=========== Notification css ========*/
.notification-popup {
    position: relative;
}

.notification-dropdown {
    position: absolute;
    width: 260px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(22px);
    -moz-transform: translateY(22px);
    -o-transform: translateY(22px);
    transform: translateY(22px);
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #1c2f7a;
    margin-left: 85%;
}

.notification-dropdown .header {
    background: #1c2f7a;
    width: 100%;
    height: 40px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 1px solid #d5dfe4;
    font-size: 16px;
    line-height: 40px;
    color: #fff;
}

.notification-dropdown .items {
    background: #fff;
    width: 100%;
    max-height: 256px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    overflow-y: auto;
    border: 2px solid #e8e8e8;
    border-top: 0;
}

    .notification-dropdown .items .list-item {
        padding: 5px 5px 5px 10px;
        font-size: 14px;
        line-height: 18px;
        border-bottom: 1px solid #d5dfe4;
        /* height: 55px; */
        cursor: pointer;
        width: 100%;
        text-align: left;
        position: relative;
    }

        .notification-dropdown .items .list-item .text {
            color: #a0b6c3;
            display: inline-block;
        }

.dropdown-transition {
    overflow: hidden;
    width: 260px;
    color: #2336ab;
    z-index: 9999999;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -moz-transition: -moz-transform 0.4s, opacity 0.4s;
    -ms-transition: -ms-transform 0.4s, opacity 0.4s;
    -o-transition: -o-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    opacity: 1;
    visibility: visible;
}

.list-item.noti h5 {
    margin: 0 0 1px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'FiraSans-SemiBold';
    color: #1c2f7a;
}

.list-item.noti p {
    /*//white-space: nowrap;*/
    white-space: normal;
    word-break: break-word;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #888;
    font-size: 12px;
    margin-bottom: 5px;
}

.list-item.noti h6 {
    margin: 0 0 0 0;
    color: #888;
}

.list-item.noti .fa-trash-o {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    font-size: 19px;
    background: #ebebeb;
    color: #323232;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    box-shadow: 0 0 2px rgb(112, 123, 168);
    cursor: pointer;
}

.notification-counter {
    position: absolute;
    right: 6px;
    top: -2px;
    background: #1c2f7a;
    width: 20px;
    color: #f5f5f5;
    height: 20px;
    white-space: nowrap;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 11px;
    font-family: 'FiraSans-SemiBold';
}



/*=========== Dashboar ============*/
.page-bradcum {
    margin-top: 15px;
    text-align: center;
    width: 100%;
    display: inline-block;
}

    .page-bradcum ul {
        float: left;
    }

        .page-bradcum ul li a {
            font-size: 20px;
            padding: 7px 0 0;
        }

.main-wrapper {
    margin-top: 70px;
    margin-bottom: 33px;
    width: 100%;
    display: inline-block;
    padding-left: 15px;
    padding-right: 15px;
}

.db-box {
    border: 2px solid #ebebeb;
    border-radius: 3px;
    margin-bottom: 15px;
}

.box-dis h5 {
    font-size: 28px;
    color: #1C2F7A;
    text-align: center;
    padding: 13px 0;
}

.box-heading {
    background: #1c2f7a;
    padding: 5px 10px;
}

    .box-heading a {
        color: #fff;
    }

        .box-heading a span {
        }

        .box-heading a i {
            float: right;
            background: #fff;
            color: #1c2f7a;
            font-size: 22px;
            width: 22px;
            height: 22px;
            text-align: center;
            line-height: 22px;
            border-radius: 50%;
            padding: 0 0 0 4px;
        }

.advertisements-box {
    min-height: 230px;
}

.contact-port-mng {
    display: inline-block;
    margin-left: 30px;
    cursor: pointer;
    position: relative;
}

    .contact-port-mng i {
        margin-left: 5px;
    }

/*=========== change ============*/
.contact-port-box1 {
    position: absolute;
    bottom: 30px;
    width: 650px;
    background: #fff;
    border: 2px solid #1c2f7a;
    border-radius: 3px;
    padding: 10px 10px 10px 10px;
    cursor: default;
    display: none;
}

.contact-port-box {
    position: absolute;
    bottom: 25px;
    width: 485px;
    background: #fff;
    border: 2px solid #1c2f7a;
    border-radius: 3px;
    padding: 10px 10px 10px 10px;
    cursor: default;
    display: none;
}

    .contact-port-box img {
        float: left;
        width: 60px;
    }

.user-info {
    float: left;
    width: 100%;
    padding: 0 0 0 0px;
}

    .user-info li {
        color: #1c2f7a;
        float: left;
        width: 75%;
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 14px;
    }

        .user-info li:first-child {
            width: 25%;
        }

.user-info1 {
    float: left;
    width: 78%;
    padding: 0 0 0 0px;
}

    .user-info1 li {
        color: #1c2f7a;
        float: left;
        width: 48%;
        margin-bottom: 3px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-left: 0px;
        font-size: 14px;
    }

        .user-info1 li:first-child {
            width: 32%;
        }

        .user-info1 li:nth-child(2n+2) {
            width: 10%;
        }
/*=========== end ============*/
.contact-port-box .footer-right {
    width: 100%;
    padding: 10px 0 0 69px;
}

.help-desk-main {
    margin-right: 60px;
    cursor: pointer;
    position: relative;
}

.help-desk-box {
    position: absolute;
    bottom: 30px;
    z-index: 99;
    background: #fff;
    border: 2px solid #1c2f7a;
    right: 0;
    color: #1c2f7a;
    padding: 10px;
    border-radius: 3px;
    display: none;
}

    .help-desk-box p {
        white-space: nowrap;
        margin-bottom: 5px;
    }

        .help-desk-box p i {
            margin-right: 5px;
        }


.help-desk-main1 {
    margin-right: 15px;
    cursor: pointer;
    position: relative;
}

.help-desk-box1 {
    position: absolute;
    bottom: 30px;
    z-index: 99;
    background: #fff;
    border: 2px solid #1c2f7a;
    right: 0;
    color: #1c2f7a;
    padding: 10px;
    border-radius: 3px;
    display: none;
}

    .help-desk-box1 p {
        white-space: nowrap;
        margin-bottom: 5px;
    }

        .help-desk-box1 p i {
            margin-right: 5px;
        }

.help-desk-box1 {
    right: -100px;
}
/*============ Search Stone ============*/
ul.search-stone-btn {
    float: right;
    margin-top: 3px;
}

    ul.search-stone-btn li {
        display: inline-block;
        position: relative;
    }

        ul.search-stone-btn li a {
            font-size: 14px;
            background: #ebebeb;
            padding: 5px 15px;
            border-radius: 2px;
            margin-left: 5px;
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            transition: all 0.3s;
            display: block;
        }

            ul.search-stone-btn li a:hover {
                background: #1c2f7a;
                color: #fff;
            }

.sech-stone {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 3px 15px;
    border-radius: 5px;
    background: #f6f6f6;
    font-size: 15px;
}

.diamond-shape-main {
}

.sec-headding {
    color: #1c2f7a;
    font-size: 18px;
    padding: 5px 0;
    border-bottom: 1px solid #1c2f7a;
}

.bdr-top {
    border-top: 2px solid #ebebeb;
}

.bdr-bottom {
    border-bottom: 2px solid #ebebeb;
}

.bdr-left {
    border-left: 2px solid #ebebeb;
}

.bdr-right {
    border-right: 2px solid #ebebeb;
}

.shape-main h6 {
    margin-bottom: 7px;
    background: #ebebeb;
    padding: 5px 5px;
    text-align: center;
    font-family: 'FiraSans-SemiBold';
}

.shape-main ul li img {
    filter: grayscale(100);
    opacity: 0.3;
}

.shape-main ul li.active img {
    filter: grayscale(0);
    opacity: 0.9;
}

.shape-main ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 10px;
}

    .shape-main ul li {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
        text-align: center;
        padding: 0 5px;
        cursor: pointer;
    }

        .shape-main ul li.active h6, .color-bx li.active {
            background: #1c2f7a;
            color: #fff;
        }

.lab-main ul li {
    -ms-flex: 0 0 14%;
    flex: 0 0 14%;
    max-width: 14%;
}

.color-selection {
    display: inline-block;
    width: 100%;
    padding: 10px 0 10px 0;
    position: relative;
}

ul.color-checkbx {
    border-bottom: 1px solid #1c2f7a;
    display: inline-block;
    width: 100%;
    padding: 0 0 5px 0;
}

    ul.color-checkbx li {
        margin-right: 10px;
        float: left;
        color: #1c2f7a;
        font-size: 16px;
    }

ul.color-bx {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    overflow: auto;
    padding-bottom: 10px;
}

.fancy-clr {
    position: relative;
}

.fancy-clr-selection {
    position: absolute;
    background: #fff;
    top: 33px;
    left: 0;
    right: 0;
    padding-top: 0;
    z-index: 80;
    /*display: none;*/
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 0 10px 10px 10px;
    border-radius: 4px;
}

.close-icon {
    position: absolute;
    right: 3px;
    font-size: 30px;
    color: #2b176e;
    top: 0;
    z-index: 99;
    cursor: pointer;
}

.fancy-clr-selection .sec-headding {
    margin-bottom: 10px;
}

ul.color-bx li {
    -ms-flex: 0 0 4.97%;
    flex: 0 0 4.97%;
    max-width: 4.97%;
    text-align: center;
    cursor: pointer;
    background: #ebebeb;
    padding: 5px 0;
    margin: 0 3px;
    border-radius: 2px;
}

ul.clarity-bx li {
    -ms-flex: 0 0 4.97%;
    flex: 0 0 6.97%;
    max-width: 6.97%;
}

ul.carat-main {
    padding-right: 30px;
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

    ul.carat-main li {
        float: left;
        width: 45%;
        overflow: hidden;
        margin-right: 10px;
    }

        ul.carat-main li input {
            background: #ebebeb;
            border: 0;
            padding: 5px 10px;
            width: 100%;
        }

            ul.carat-main li input:focus {
                outline: none;
            }

.carat-main button {
    position: absolute;
    right: 15px;
    background: #1C2F7A; /*#29156e;*/
    border: 0;
    color: #fff;
    padding: 5px 10px;
}

    .carat-main button:focus {
        outline: none;
    }

.cut-heading ul {
    width: auto;
    border: 0;
    padding: 0;
    margin-bottom: -3px;
    margin-left: 10px;
    t;
}

    .cut-heading ul li {
        margin-right: 10px;
    }

    .cut-heading ul label {
        font-size: 12px;
    }

ul.cut-bx {
    margin-top: 10px;
}

    ul.cut-bx li {
        -ms-flex: 0 0 17%;
        flex: 0 0 17%;
        max-width: 17%;
    }

ul.fluc-int {
    margin-top: 5px;
}

    ul.fluc-int li {
        -ms-flex: 0 0 14%;
        flex: 0 0 14%;
        max-width: 14%;
    }

ul.inp-full {
    padding: 0;
}

    ul.inp-full li {
        width: 100%;
        margin-right: 0;
    }

ul.certificate-date {
    padding: 0;
}

    ul.certificate-date li {
        margin-right: 5px;
    }

.location-min {
    border-bottom: none;
}

.advance-search {
    background: #1c2f7a;
    font-size: 18px;
    text-align: left;
    color: #fff;
    padding: 5px 20px;
    margin-top: 15px;
    cursor: pointer;
}

    .advance-search i {
        float: right;
        margin: 4px 0;
    }

ul.advance-src-two li {
    width: 47%;
}

.select2-container--default .select2-selection--single {
    height: 36px !important;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 36px;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 34px;
    }

.select2-selection__rendered {
    display: flex !important;
}

.advance-src-select {
    margin: 8px 0;
}

.advance-search-inner {
    width: 100%;
    float: left;
    display: none;
}

.advance-search-main.active .advance-search {
    background: #1c2f7a;
    color: #fff;
}

    .advance-search-main.active .advance-search i:before {
        content: '\f068';
    }

ul.carat-multi {
    height: 35px;
    overflow: auto;
    padding: 3px 10px;
}

    ul.carat-multi li {
        width: 30%;
        margin-right: 8px;
        box-shadow: 0 0 2px rgba(0,0,0,00.5);
        padding: 1px 3px 1px 7px;
        margin-bottom: 6px;
        border-radius: 3px;
        font-size: 11px;
        position: relative;
    }

        ul.carat-multi li i.fa-times {
            position: absolute;
            right: 4px;
            top: 3px;
            color: #c72f2f;
            cursor: pointer;
        }



/*=========== Diamond Details ===========*/

.detail-box-main {
    border: 1px solid #1c2f7a;
    border-bottom: 0;
    margin-bottom: 5px;
}

.diamond-details-headding {
    text-align: center;
}

    .diamond-details-headding span {
        color: #fff;
    }

.detail-box-main table {
    width: 100%;
}

    .detail-box-main table tr td {
        width: 50%;
        border-bottom: 1px solid #1c2f7a;
        border-left: 1px solid #1c2f7a;
        padding: 2px 10px;
    }

        .detail-box-main table tr td:first-child {
            border-left: 0;
            background: #ebebeb;
            color: #1c2f7a;
        }

table.d-details tr td {
    padding: 5px 10px;
}

table.qc-detail tr td {
    padding: 5px 10px;
}

.detail-box-main table tr td p {
    margin-bottom: 0;
}

.diamond-detail-btn {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}

    .diamond-detail-btn ul {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        width: 100%;
    }

        .diamond-detail-btn ul li {
            -ms-flex: 0 0 25%;
            flex: 0 0 25%;
            max-width: 25%;
        }

            .diamond-detail-btn ul li a {
                width: 95%;
                display: block;
                text-align: center;
            }

.details-left-col {
    background: #1c2f7a;
    float: left;
    width: 100%;
}

    .details-left-col ul li {
        float: left;
        width: 25%;
        border: 0;
    }

        .details-left-col ul li a {
            padding: 4px 10px;
            border: 0;
            color: #fff;
            margin-bottom: 5px;
            text-align: left;
            white-space: nowrap;
        }

        .details-left-col ul li.active a {
            border: 0;
            background: #3753bf !important;
            color: #fff !important;
            border-radius: 0;
        }

    .details-left-col ul > li > a {
        border-radius: 0;
    }

        .details-left-col ul > li > a:hover {
            background: transparent;
        }

        .details-left-col ul > li > a:focus {
            background-color: #1c2f7a;
            box-shadow: none;
            outline: 0;
        }

    .details-left-col ul > li.active > a, .details-left-col ul .nav-tabs > li.active > a:focus, .details-left-col ul .nav-tabs > li.active > a:hover {
        border: 0 !important;
        border-radius: 0;
    }

    .details-left-col ul li span {
        margin-left: 3px;
    }

.forth-coming-fancy {
    display: block;
    position: inherit;
    padding: 6px 0 0 0;
    box-shadow: none;
}

.table-data-main {
    padding-top: 15px;
}

#Parameter-tab, #Parameter-top {
    position: relative;
}

.stn-pos-abs {
    position: absolute;
    font-family: 'FiraSans-SemiBold';
    font-size: 13px;
    color: #292929;
    background: rgba(255, 255, 255,0.7);
}

/*=========== Round Shape ===========*/
.stn-round-diameter {
    top: 25px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-round-tabel-width {
    top: 52px;
    left: 38%;
    background: none;
    font-size: x-small;
}

.stn-round-center-height {
    right: 10%;
    top: 47px;
    font-size: x-small;
    background: none;
}

.stn-round-girdle {
    top: 45%;
    right: -4%;
    font-size: x-small;
    background: none;
}

.stn-round-paviliondepth {
    bottom: 9%;
    right: -6%;
    background: none;
    font-size: x-small;
}

.stn-round-depth {
    bottom: 12%;
    right: 17%;
    background: none;
    font-size: 11px;
}

/*=========== Cushion Shape ===========*/

.stn-cushion-diameter {
    top: 19px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-cushion-tabel-width {
    top: 53px;
    left: 40%;
    background: none;
    font-size: 11px;
}

.stn-cushion-girdle {
    top: 47.5%;
    right: 1%;
    font-size: x-small;
    background: none;
}

.stn-cushion-paviliondepth {
    bottom: 7%;
    right: -2%;
    background: none;
    font-size: 11px;
}


/*=========== Marquise Shape ===========*/

.stn-marquise-diameter {
    top: 51px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-marquise-tabel-width {
    top: 100px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-marquise-girdle {
    top: 58%;
    right: -4%;
    font-size: x-small;
    background: none;
}

.stn-marquise-paviliondepth {
    bottom: 20%;
    right: -6%;
    background: none;
    font-size: 11px;
}

/*=========== Pear Shape ===========*/

.stn-pear-diameter {
    top: 45px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-pear-tabel-width {
    top: 91px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-pear-girdle {
    top: 56%;
    right: -4%;
    font-size: x-small;
    background: none;
}

.stn-pear-paviliondepth {
    bottom: 18%;
    right: -6%;
    background: none;
    font-size: 11px;
}

/*=========== Princess Shape ===========*/

.stn-princess-diameter {
    top: 22px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-princess-tabel-width {
    top: 69px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-princess-girdle {
    top: 44%;
    right: 7%;
    font-size: x-small;
    background: none;
}

.stn-princess-paviliondepth {
    bottom: 11%;
    right: 5%;
    background: none;
    font-size: 11px;
}

/*=========== Heart Shape ===========*/
.stn-heart-diameter {
    top: 21px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-heart-tabel-width {
    top: 54px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-heart-girdle {
    top: 44%;
    right: -4%;
    font-size: x-small;
    background: none;
}

.stn-heart-paviliondepth {
    bottom: 11%;
    right: -6%;
    background: none;
    font-size: 11px;
}

/*=========== Oval Shape ===========*/

.stn-oval-diameter {
    top: 50px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-oval-tabel-width {
    top: 100px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-oval-girdle {
    top: 58%;
    right: -3%;
    font-size: x-small;
    background: none;
}

.stn-oval-paviliondepth {
    bottom: 19%;
    right: -6%;
    background: none;
    font-size: 11px;
}

/*=========== Emerald Shape ===========*/

.stn-emerald-diameter {
    top: 32px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-emerald-tabel-width {
    top: 79px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-emerald-girdle {
    top: 51%;
    right: -1%;
    font-size: x-small;
    background: none;
}

.stn-emerald-paviliondepth {
    bottom: 14%;
    right: -3%;
    background: none;
    font-size: 11px;
}

/*=========== Radiant Shape ===========*/

.stn-radiant-diameter {
    top: 23px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-radiant-tabel-width {
    top: 70px;
    left: 38%;
    background: none;
    font-size: 11px;
}

.stn-radiant-girdle {
    top: 46%;
    right: 6%;
    font-size: x-small;
    background: none;
}

.stn-radiant-paviliondepth {
    bottom: 10%;
    right: 3%;
    background: none;
    font-size: 11px;
}

/*=========== SqEmerald Shape ===========*/

.stn-sqemerald-diameter {
    top: 21px;
    left: 40%;
    background: none;
    font-size: 11px;
}

.stn-sqemerald-tabel-width {
    top: 67px;
    left: 40%;
    background: none;
    font-size: 11px;
}

.stn-sqemerald-girdle {
    top: 48%;
    right: 5%;
    font-size: x-small;
    background: none;
}

.stn-sqemerald-paviliondepth {
    bottom: 10%;
    right: 2%;
    background: none;
    font-size: 11px;
}

/*=========== End Shape ===========*/

.stn-diameter {
    top: 19px;
    left: 38%;
    background: none;
}

.stn-tabel-width {
    top: 37px;
    left: 38%;
}

.stn-center-height {
    right: 10%;
    top: 45px;
}

.stn-paviliondepth {
    bottom: 23%;
    right: 2%;
}

.stn-depth {
    bottom: 20%;
    right: 20%;
}

.stn-crangle {
    top: 20%;
    left: 4%;
    font-size: 11px;
    background: none;
}

.stn-pvangle {
    top: 64%;
    left: 3%;
    font-size: 11px;
    background: none;
}

.stn-Parameter-top-width {
    top: 0;
    left: 50%;
}

.stn-Parameter-top-length {
    top: 41.5%;
    left: 0;
}

.a-disp-showculet {
    color: black;
    font-size: 12px;
}

.a-disp-culet {
    color: #1C2F7A;
    font-size: 18px;
}

/*=========== New Regsitration ===========*/

.registration-lg {
    width: 110px;
    float: none;
    display: inline-block;
}

.regsitration-collapse .panel {
    border: 0;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
}

.regsitration-collapse .panel-title a {
    display: block;
    padding: 9px 10px;
}

    .regsitration-collapse .panel-title a i {
        float: right;
    }

    .regsitration-collapse .panel-title a[aria-expanded="false"] i:before {
        content: '\f067 ';
    }

.regsitration-collapse .panel-heading {
    padding: 0;
    background: #1c2f7a;
    color: #fff;
}

.regsitration-collapse.panel-group {
    margin-bottom: 50px;
}

.regsitration-collapse .panel-heading .panel-title a:hover,
.regsitration-collapse .panel-heading .panel-title a:focus {
    color: #fff;
}

.form-fild-main label {
    font-weight: 500;
    float: left;
}

.regsitration-collapse .panel-body {
    padding-top: 0;
    padding-bottom: 10px;
}

.form-fild-main input {
    box-shadow: none;
    padding-left: 10px !important;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 3px;
    height: auto;
    padding: 7px 10px;
}

.form-fild-main .formTop {
    top: 0 !important;
    background: #fff;
}

.form-fild-main .form-item p.formLabel {
    left: 10px;
    color: rgba(0,0,0,0.5);
    padding: 0;
    font-size: 14px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
}

.form-fild-main .form-group {
    padding: 0 10px;
    margin-bottom: 0;
}

.form-fild-main input:focus {
    box-shadow: none;
    border: 1px solid rgb(28, 47, 122);
}

.form-fild-main select:focus {
    box-shadow: none;
    border: 1px solid rgb(28, 47, 122);
}

.inner-bx-pad {
    padding: 0 5px;
}

.js-example-basic-single {
    height: 36px;
    width: 100%;
}

.js-example-basic-single-country {
    height: 36px;
    width: 100%;
}

.js-example-basic-single-State {
    height: 36px;
    width: 100%;
}

.js-example-basic-single-Rtype {
    height: 36px;
    width: 100%;
}

.js-example-basic-single-Ftype {
    height: 36px;
    width: 100%;
}

.js-example-basic-single-Ltype {
    height: 36px;
    width: 100%;
}

.js-example-basic-single-SellerID {
    height: 36px;
    width: 100%;
}

.js-example-basic-single-init {
    height: 36px;
    width: 100%;
}

.reg-check {
    margin-top: 15px !important;
}

    .reg-check ul li {
        margin: 2px 5px;
    }

        .reg-check ul li input {
            padding: 2px 0;
            width: 50%;
        }

.agree-tc {
    margin-top: 30px;
    margin-bottom: 0;
}

.reg-sub-btn {
    /*float: right;*/
    background: #1c2f7a;
    color: #fff;
    border: 0;
    padding: 5px 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    border-radius: 3px;
    margin-bottom: 5px;
}

    .reg-sub-btn:focus {
        outline: none;
    }

.agree-tc a {
}

.bs-multiselect-main {
}







/*=========== Other Pages==========*/

.revised-price-detail table thead th span {
    color: #fff;
    margin: 0;
    font-size: 13px;
    padding: 5px;
    text-align: center;
    border: 1px solid #fff;
    white-space: nowrap;
    display: block;
    font-weight: normal;
}

.revised-price-detail table tbody td span {
    background: #fff;
    display: block;
    text-align: center;
    border: 1px solid #1c2f7a;
}

    .revised-price-detail table tbody td span.selected-td {
        background: #1c2f7a;
        color: #fff;
    }

.carat-modal .remember-pass {
    margin-bottom: 7px;
}

.carat-modal .modal-header {
    padding: 10px 10px 3px 10px;
}

.carat-modal .remember-pass label {
    font-size: 14px;
}

.carat-modal .cust-checkmain input:checked ~ .checkmark {
    margin-top: 1px;
}

.modal-btn {
    border-top: 1px solid #e5e5e5;
    padding: 0 15px;
    text-align: center;
}

    .modal-btn button {
        background: #1c2f7a;
        border: 0;
        color: #fff;
        padding: 3px 20px;
        text-transform: uppercase;
        border-radius: 3px;
        margin-top: 8px;
    }

/*=========== loader css ===============*/
.loader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.13);
}

    .loader svg {
        width: 60px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        z-index: 9999;
    }

.dropmulti button {
    text-align: left;
    position: relative;
}

    .dropmulti button span {
        position: absolute;
        right: 10px;
        top: 10px;
    }
/*for Multiselect dropdown*/
.dropmulti ul li a {
    color: #18296a !important;
    white-space: normal;
}

.dropmulti ul {
    max-height: 390px;
    overflow-y: auto;
    background-color: rgb(255, 255, 255) !important;
    border: medium none transparent;
    display: block;
    height: auto;
    width: 100%;
    max-width: 770px;
}

    .dropmulti ul li {
        display: block;
        width: 100%;
    }

        .dropmulti ul li a:hover, .dropmulti ul li a:focus {
            background-color: rgb(28, 47, 122);
            color: #fff !important;
        }

.dropmulti {
    width: 100%;
}

.acomment {
    cursor: pointer;
    background-image: url('../images/comment-icon.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

.aseeneye {
    cursor: pointer;
    background-image: url('../images/eye-icon.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

.adetail {
    cursor: pointer;
    background-image: url('../images/details-icon.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

.acertificate {
    cursor: pointer;
    background-image: url('../images/certificate-icon.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

.aimg {
    cursor: pointer;
    background-image: url('../images/camera-icon.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

.anocomment {
    cursor: pointer;
    background-image: url('../images/nocomment-icon.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

.anocertificate {
    cursor: pointer;
    background-image: url('../images/no-certificate-icon.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

.anoimg {
    cursor: pointer;
    background-image: url('../images/no-camera-icon1.png');
    background-repeat: no-repeat;
    background-position: 0px;
    background-size: 100% 100%;
    display: inline-block;
    position: relative;
    margin: 0 auto;
    width: 15px;
    height: 15px;
    /*top: 3px;*/
}

/*============= Ag Grid =============*/

#agHeaderCellLabel {
    color: #fff;
}

.ag-fresh .ag-header {
    background: #1c2f7a !important;
    border-bottom: 1px solid #808080;
}

#agMenu svg {
    display: none;
}

.ag-fresh .ag-header-cell-menu-button:hover {
    border-color: transparent !important;
}

.ag-fresh .ag-header-icon {
    position: relative;
}

    .ag-fresh .ag-header-icon:before {
        content: '\f0c9';
        font-family: FontAwesome;
        color: #fff;
        position: relative;
        top: 5px;
    }

.ag-fresh .ag-menu .ag-tab-header {
    background-color: #1c2f7a !important;
}

svg:not(:root) {
    fill: #fff;
}

.ag-fresh .ag-menu .ag-tab-selected svg:not(:root) {
    fill: #1c2f7a;
}

.ag-fresh .ag-menu-option-active {
    background-color: #1c2f7a !important;
    color: #fff;
}

.ag-fresh, .ag-cell-value {
    font-family: 'FiraSans-Regular' !important;
}

    .ag-fresh .ag-menu {
        z-index: 99;
    }



.popup-save-src-main {
    transform: translateY(15px);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
    position: inherit;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

ul.search-stone-btn li.active .popup-save-src-main {
    transform: translateY(5px);
    opacity: 1;
    visibility: visible;
}

ul.save-src-popup {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 0 5px;
    box-shadow: 0 0 3px rgba(0,0,0,0.5);
    border-radius: 2px;
    z-index: 99;
    width: 250px;
    height: 178px;
    overflow: auto;
}

.popup-arrow-up {
    position: absolute;
    z-index: 999;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

ul.save-src-popup li {
    width: 100%;
    border-bottom: 1px solid #dcdcdc;
}

    ul.save-src-popup li a {
        background: transparent;
        float: left;
        width: 80%;
        text-align: left;
    }

        ul.save-src-popup li a:hover {
            background: transparent;
            color: #1c2f7a;
        }

    ul.save-src-popup li i {
        margin: 8px 10px;
        cursor: pointer;
        color: #c24d48;
        float: right;
    }

ul.save-src-popup {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}

    ul.save-src-popup::-webkit-scrollbar {
        display: none;
    }

.input-main {
    margin-bottom: 8px;
}

    .input-main input, .input-main textarea {
        width: 100%;
        padding: 5px 10px;
        margin: 0 0;
        border: 0;
        box-shadow: 0 0 2px rgba(0,0,0,0.3);
        border-radius: 3px;
    }

        .input-main input:focus, .input-main textarea:focus {
            outline: none;
            box-shadow: 0 0 3px rgba(0,0,0,0.5);
        }

    .input-main label {
        width: 100%;
        float: left;
    }

ul.compaire-stone-heading li {
    text-align: left !important;
    background: #e0e0e0;
    color: #333;
}

.CompareStone-popup-content {
    float: left;
    overflow: auto;
    padding: 10px 0;
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
}

#CompareStone .modal-body {
    overflow: auto;
    height: 75vh;
}

ul.compaire-stone-heading {
}

.CompareStone-popup-content ul {
    float: none;
    display: inline-block;
}

.CompareStone-img img {
    width: 100%;
}

.CompareStone-popup-content ul li {
    padding: 5px 5px;
    text-transform: capitalize;
    border: 1px solid #e0e0e0;
    margin: 0 5px 2px 0;
    width: 150px;
    text-align: center;
}

ul.compaire-stone-heading li:hover {
    background: #d6d6d6 !important;
}

.CompareStone-popup-content ul li:hover {
    background: rgba(14, 24, 61,0.2);
}

li.CompareStone-img {
    padding: 0 !important;
}

.searchresult-pdf-link {
    margin: 0 5px;
}

    .searchresult-pdf-link img {
        margin: 0 10px 0 0;
    }

    .searchresult-pdf-link span {
        color: #0000ff;
        display: inline-block;
        position: relative;
        top: 2px;
        left: -8px;
    }



#SaveData .modal-body {
    display: inline-block;
    width: 100%;
}

#SaveData .modal-footer {
    display: inline-block;
    width: 100%;
}

/*======== Grid View ========*/


.dashboard-card {
    background: #fff;
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,0.4);
    -moz-box-shadow: 0 0 2px rgba(0,0,0,0.4);
    box-shadow: 0 0 2px rgba(0,0,0,0.4);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    font-family: 'Muli-SemiBold';
    float: left;
    width: 100%;
}

.grid-view-main {
    display: none;
    margin: 15px 0;
}

.view-in-list {
    display: none;
}

.grid-view-main {
    box-shadow: none !important;
}

.grid-box-main {
    margin-bottom: 20px;
    float: left;
    width: 100%;
    position: relative;
}

.abs-top {
    background: #dc521d;
    color: #fff;
    font-family: 'FiraSans-Bold';
    font-size: 16px;
    position: absolute;
    right: -55px;
    top: -12px;
    padding: 0;
    /*padding: 35px 40ppx 0px 40px;*/
    -webkit-transform: rotate(46deg);
    -moz-transform: rotate(46deg);
    transform: rotate(46deg);
    width: 154px;
    height: 70px;
    line-height: 100px;
    text-align: center;
}

.grid-box-main .dashboard-card {
    background: rgba(0,0,0,0.01);
    overflow: hidden;
    position: relative;
}

.grid-img {
    text-align: center;
    padding: 0 0;
    overflow: hidden;
}

.grid-stone-details {
    border-top: 2px solid rgba(28, 47, 122,0.8);
}

    .grid-stone-details .col {
        padding-left: 8px;
        padding-right: 8px;
    }

.grid-check-sign {
    position: absolute;
    top: 6px;
    right: 8px;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 99;
}

.grid-box-main:hover .grid-check-sign {
    opacity: 1;
    transform: scale(0.8);
}

.grid-check-sign img {
    filter: invert(0) grayscale(100);
}

.grid-box-main.active .dashboard-card {
    box-shadow: 0 0 4px rgb(28, 47, 122);
}

.grid-box-main.active .grid-check-sign {
    opacity: 1;
    transform: scale(1);
}

    .grid-box-main.active .grid-check-sign img {
        filter: invert(0) grayscale(0);
    }

.grid-info-clr {
    white-space: nowrap;
    color: #1c2f7a;
    font-family: 'FiraSans-SemiBold';
    font-size: 16px;
}

.grid-info-gray {
    font-family: 'FiraSans-SemiBold';
    text-align: left;
    color: #595959;
    padding: 0;
    white-space: nowrap;
}

.info-gray-13 {
    font-size: 13px;
}

.detail-link {
    color: #323232;
    font-family: 'FiraSans-Bold';
    font-size: 14px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .detail-link:hover {
        color: #1c2f7a;
    }

.grid-img img {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
}

.grid-box-main:hover .grid-img img {
    transform: scale(1.1);
}

.grid-view-main .d-flex {
    display: -ms-flexbox !important;
    display: flex !important;
    border-bottom: 1px solid #e4e4e4;
    padding: 6px 0;
}

.grid-view-main .col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.back-to-top {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    color: #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    position: fixed;
    bottom: 11%;
    right: 1%;
    display: none;
    z-index: 99;
    background: #1c2f7a;
    border-radius: 50%;
    font-size: 22px;
}

.back-to-top {
}



/*==============  tips toster ==================*/
.footer-right ul {
    display: inline-block;
}

.alert_tips {
    width: 300px;
}

.pc div {
    color: #fff !important;
    background-repeat: no-repeat !important;
    background-position: 11px center !important;
    padding: 10px 10px 10px 55px !important;
}

.warning {
    background: url(../../Content/images/alert-icn.png) #faa922 !important;
}

.erorr {
    background: url(../../Content/images/error-icn.png) #cc4133 !important;
}

.success {
    background: url(../../Content/images/success-icn.png) #3fd241 !important;
}






.fxd {
    position: fixed;
    top: 0%;
    left: 0px;
    right: 0px;
    z-index: 99;
    background-color: #fff;
    border-top: 2px solid #ebebeb;
    margin-top: 65px;
    padding: 0px 15px;
}

    .fxd .sech-stone {
        margin-top: 3px;
    }

    .fxd .page-bradcum ul {
        margin-top: 3px;
    }

.fxd-space {
    margin-top: 130px !important;
}





.search {
    position: relative;
    top: 16px;
    right: 10px;
}

#search {
    display: inline-block;
    border: none;
    outline: none;
    color: #555;
    padding: 3px;
    padding-right: 60px;
    width: 0px;
    position: absolute;
    right: 0;
    background: none;
    transition: width .4s cubic-bezier(0.000, 0.795, 0.000, 1.000);
    cursor: pointer;
    border-radius: 3px;
    width: 320px;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    background: #fff;
    border: none;
    outline: none;
    z-index: 0;
    cursor: text;
    padding: 7px 50px 7px 20px;
    top: -25px;
    height: 40px;
    border-radius: 50px;
}

/*.search input[type="text"]:focus:hover {
    border: none;
    outline: none;
}

.search input[type="text"]:focus {
    width: 500px;
    box-shadow: 0 0 5px rgba(0,0,0,0.5);
    background: #fff;
    border: none;
    outline: none;
    z-index: 1;
    cursor: text;
    padding: 0 50px 0 10px;
}*/
.search input[type="button"] {
    display: inline-block;
    background: url('../images/search-icon.png') center center no-repeat;
    border: none;
    z-index: 2;
    cursor: pointer;
    cursor: pointer;
    transition: opacity .4s ease;
    width: 40px;
    height: 40px;
    padding: 0;
    box-shadow: 0 0 2px rgba(0,0,0,0.3);
    border-radius: 50%;
    background-color: #fff;
    margin: -30px 0 0 0;
    position: relative;
    z-index: 5;
}

    .search input[type="button"]:hover {
        opacity: 0.8;
    }

.velaFormSearch {
    position: relative;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

    .velaFormSearch input {
        width: 100%;
        border: 1px solid #e5e5e5;
        margin-right: 10px;
        padding: 5px 15px;
        font-size: 19px;
        transition: all 0.5s;
    }

    .velaFormSearch button {
        width: 60px;
        height: 58px;
        background: #1c2f7a;
        border: 0;
        color: #fff;
        font-size: 26px;
    }

#GradingChart .modal-dialog iframe {
    width: 100%;
}

@media (min-width: 992px) {
    #GradingChart .modal-dialog {
        width: 890px !important;
    }
}

/*.alert_overlay{position:fixed;width:100%;height:100%;top:0;left:0;z-index:1000;background:rgba(0,0,0,.1)}
.alert_msg{position:fixed;width:280px;left:50%;margin-left:-140px;top:20%;z-index:1000;border:1px solid #ccc;border-radius:4px;box-shadow:0 0 15px rgba(0,0,0,.3);background:#fff;animation: alertshow .2s ease}
.alert_content{padding:20px;font-size:14px;text-align:left}
.alert_buttons{text-align:center;border-top:1px solid #ccc;-webkit-user-select:none}
.alert_buttons .alert_btn{display:inline-block;width:50%;border:none;height:45px;line-height:45px;font-size:14px;outline:0;-webkit-appearance:none;background:#fff;-webkit-tap-highlight-color:transparent;border-radius:0 0 4px 4px;}
.alert_buttons .alert_btn:only-child{width:100%}
.alert_buttons .alert_btn:first-child+.alert_btn{border-left:1px solid #ccc;border-radius:0 0 4px 0;}
.alert_tips{position:fixed;z-index:10176523;width:100%;top:55%;pointer-events:none;text-align:center;}
.alert_tips div{box-siziong:border-box;display:inline-block;padding:15px;border-radius:10px;background:rgba(0,0,0,.7);min-width:50px;max-width:230px;text-align:center;color:#fff;animation: tipsshow 3s .01s ease;opacity:0;}
@keyframes alertshow {0% {opacity: 0;transform: scale(.5)}70% {opacity: .7;transform: scale(1.05)}100% {opacity: 1;transform: scale(1)}}
@keyframes tipsshow {0% {opacity: 0;transform:scale(1.4) rotateX(-360deg)}20% {opacity:1;transform:scale(1) rotateX(0deg)}80% {opacity:1;transform:scale(1) rotateX(0deg)}100% {opacity:0;transform:scale(1.4) rotateX(360deg)}}*/



@keyframes blinker {
    50% {
        opacity: 0;
    }
}


@media (max-width: 1199px) {
    .menu ul li a {
        color: #1c2f7a;
        font-size: 14px;
        padding: 10px 4px;
    }

    .right-menu ul li a {
        margin-right: 5px;
    }

    .shape-main ul li {
        -ms-flex: 0 0 13%;
        flex: 0 0 13%;
        max-width: 13%;
    }

    .lab-main ul li {
        -ms-flex: 0 0 14%;
        flex: 0 0 14%;
        max-width: 14%;
    }

    ul.color-bx li {
        -ms-flex: 0 0 4.97%;
        flex: 0 0 6.97%;
        max-width: 6.97%;
    }

    ul.cut-bx li {
        -ms-flex: 0 0 17%;
        flex: 0 0 17%;
        max-width: 17%;
    }

    .remember-pass label {
        font-size: 11px;
        margin: 4px 0;
    }
}

@media (max-width: 1024px) {
}

@media (max-width: 991px) {
    #search {
        width: 300px;
    }

    .toggle-menu {
        display: block;
        float: right;
    }

    .menu {
        display: none;
        width: 100%;
        text-align: left;
        padding-top: 0;
        border-top: 1px solid #29166f;
        margin-top: 10px;
    }

        .menu ul li {
            width: 100%;
        }

    ul.search-stone-btn li a {
        margin-bottom: 5px;
        display: block;
    }

    .remember-pass label {
        font-size: 14px;
        margin: 2px 0;
    }


    ul.search-stone-btn li a {
        padding: 5px 6px;
    }

    .contact-port-box {
        width: 550px;
    }
}

@media (max-width: 767px) {
    .user-info li {
        text-align: left;
    }

    span.tp-name {
        display: none;
    }

    .main-wrapper {
        margin-top: 140px;
    }

    .right-menu {
        width: 100%;
    }

        .right-menu ul {
            text-align: right;
        }

            .right-menu ul li i.tp-icon {
                color: #1c2f7a;
                font-size: 16px;
                display: block;
                box-shadow: 0 0 2px rgba(0,0,0,0.3);
                width: 40px;
                height: 40px;
                line-height: 40px;
                border-radius: 50px;
                margin-right: 10px;
                text-align: center;
            }

    .footer-left {
        float: initial;
        margin: 5px 0px;
    }

    .footer-right {
        float: initial;
        margin: 5px 0px;
    }

    .ftr-center {
        text-align: center;
    }

    .header-logo {
        margin-right: 10px;
    }

    .toggle-menu {
        margin-left: 7px;
    }

    ul.color-bx li {
        -ms-flex: 0 0 10%;
        flex: 0 0 10%;
        max-width: 10%;
    }

    .contact-port-mng {
        margin-left: 10px;
    }

    ul.search-stone-btn {
        margin-top: 15px;
    }

    .details-left-col ul li {
        width: 50%;
    }

    .user-info {
        padding: 0 0 0 15px;
    }

    /*==============  change ==================*/
    .fxd {
        position: static;
        margin-top: 0px;
        border-top: none;
        border-bottom: none !important;
    }

    .fxd-space {
        margin-top: 75px !important;
    }

    .contact-port-box {
        width: 270px;
        right: 10px;
    }

    .user-info li:first-child {
        width: 30%;
    }

    .user-info1 li:first-child {
        width: 23%;
    }

    .arrow-up {
        margin-left: 43%;
    }

    .notification-dropdown {
        right: -121px;
    }
    /*==============  end  ==================*/
    .search input[type="text"]:focus {
        width: 270px;
    }

    #ShowVolumeDis {
        padding: 0px;
    }

    .modal-dialog {
        width: auto !important;
    }

    .modal-content .modal-body img {
        width: 100%;
    }

    .search-fx-main {
        padding: 10px 0 10px 10px;
    }
    /* .search-fx-inner{
    padding-right: 10px;  
  }*/

}

@media (max-width: 575px) {
    .shape-main ul li {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .right-menu ul li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .right-menu ul li i.tp-icon {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .search input[type="button"] {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    #search {
        top: -16px;
        height: 30px;
    }

    .search {
        position: relative;
        top: 10px;
    }

    #search {
        width: 220px;
    }

    .notification-counter {
        position: absolute;
        right: 0px;
        top: -4px;
        background: #1c2f7a;
        width: 10px;
        color: #f5f5f5;
        height: 10px;
        white-space: nowrap;
        border-radius: 50%;
        text-align: center;
        line-height: 10px;
        font-size: 7px;
        font-family: 'FiraSans-SemiBold';
    }

    li.user-profile {
        font-size: 11px;
    }

    .help-desk-box {
        right: -100px;
    }
}

@media (max-width: 414px) {
    .menu {
        background-color: #fff;
        position: relative;
        z-index: 999;
    }

    .header {
        height: 90px;
    }

    .right-menu ul li a {
        margin-right: 0px;
    }

    .search {
        right: 0;
    }

    #search {
        width: 160px;
        right: -8px;
        padding: 7px 8px 7px 8px;
    }

    .right-menu ul li i.tp-icon {
        margin-right: 0;
    }

    #LanguageModel1 .modal-content {
        width: 300px !important;
    }

    #LanguageModel2 .modal-content {
        width: 300px !important;
    }
}

@media (max-width: 370px) {
    .contact-port-box {
        right: -44px;
    }

    .help-desk-box1 {
        right: -40px;
    }
}

#Parameter-tab, #Parameter-top {
    text-align: center;
}

.parameter-img-main {
    position: relative;
    display: inline-block;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .home-modal-mn {
        text-align: center;
    }

        .home-modal-mn .modal-dialog {
            width: auto !important;
            display: inline-block;
        }
}

@media (min-width: 1050px) {
    .home-modal-mn-after {
        text-align: center;
    }
    /*.home-modal-mn-after .modal-dialog {
        width: auto !important;
        display: inline-block;
    }*/
    /*.home-modal-mn-after .modal-content {
       text-align: center;width:685px;height:600px;
    }*/


}
