
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
}

body {
    /*font-family: "Open Sans", sans-serif;*/
    /* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-family: Calibri, "Open Sans", sans-serif;
    font-size: 13px;
    color: #444444;
}

a {
    color: #4154f1; 
    text-decoration: none;
}

    a:hover {
        color: #717ff5;
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    /*font-family: "Nunito", sans-serif;*/
    /* font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-family: Calibry, "Open Sans", sans-serif;
}

/*--------------------------------------------------------------
# Main
--------------------------------------------------------------*/

#header {
    overflow-x: hidden !important;
}

#main {
    margin-top: 0px;
    padding: 30px;
    padding-top: 60px !important;
    transition: all 0.3s;
    overflow-x: hidden !important;
}

#sidebar {
    display: block;
}

#navtopbar {
    display: none;
}
#header {
    /*overflow-x: hidden;*/
}


@media (max-width: 1199px) {
    #main {
        padding: 20px !important;
        /* margin-left: 300px;*/
        margin-top: 0px;
    }
    #header {
        display: none;
    }
    #sidebar {
        display: none;
    }
    #navtopbar {
        display: block;
    }
}
@media (max-width: 680px) {
    #main {
        padding: 20px !important;
        /* margin-left: 300px;*/
        margin-top: 0px;
    }
    .sidebar {
       /* margin-left: -300px;*/
    }
    #sidebar {
        display: none;
    }
    #header{
        display: none;
    }

    #navtopbar {
        display: block;
    }
    .container-fluid {
        background-color: #cb0000;
    }
}
@media (max-width: 768px){
    #main {
        margin-left: 0;
        margin-top: 0px;
    }
    .d-lg-block {
        font-size: 13px !important;
        margin-top: 8px;
    }
}
@media (min-width: 740px) and (max-width: 1024px){
    #main {
        margin-top: 0px;
    }
    #header {
        display: none;
    }
    #sidebar {
        display: none;
    }

    #navtopbar {
        display: block;
    }
    .container-fluid {
        background-color: #cb0000;
        color: #fff !important;
    }  
}
@media (min-width: 740px) and (max-width: 1200px){
    .padding-top-8 {
        padding-top: 8px;
    }
}
 

.margin-right-15{
    margin-right: 25px;
}
@media (max-width: 1199px){
    .margin-right-15{
        margin-right: 15px;
    }
}
.margin-top-8{
    margin-top: 8px;
}
/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.pagetitle {
    margin-bottom: 10px;
}

    .pagetitle h1 {
        font-size: 24px;
        margin-bottom: 0;
        font-weight: 600;
        color: #012970;
    }

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #Dc3545;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

    .back-to-top i {
        font-size: 24px;
        color: #fff;
        line-height: 0;
    }

    .back-to-top:hover {
        background: #6776f4;
        color: #fff;
    }

    .back-to-top.active {
        visibility: visible;
        opacity: 1;
    }

/*--------------------------------------------------------------
# Override some default Bootstrap stylings
--------------------------------------------------------------*/
/* Dropdown menus */
.dropdown-menu {
    border-radius: 4px;
    padding: 10px 0;
    animation-name: dropdown-animate;
    animation-duration: 0.2s;
    animation-fill-mode: both;
    border: 0;
    box-shadow: 0 5px 30px 0 rgba(82, 63, 105, 0.2);
}

    .dropdown-menu .dropdown-header,
    .dropdown-menu .dropdown-footer {
        text-align: center;
        font-size: 15px;
        padding: 10px 25px;
    }

        .dropdown-menu .dropdown-footer a {
            color: #444444;
            text-decoration: underline;
        }

            .dropdown-menu .dropdown-footer a:hover {
                text-decoration: none;
            }

    .dropdown-menu .dropdown-divider {
        color: #a5c5fe;
        margin: 0;
    }

    .dropdown-menu .dropdown-item {
        font-size: 13px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .dropdown-menu .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .dropdown-menu .dropdown-item:hover {
            background-color: #f6f9ff;
        }

@media (min-width: 768px) {
    .dropdown-menu-arrow::before {
        content: "";
        width: 13px;
        height: 13px;
        background: #fff;
        position: absolute;
        top: -7px;
        right: 20px;
        transform: rotate(45deg);
        border-top: 1px solid #eaedf1;
        border-left: 1px solid #eaedf1;
    }
}
@media (max-width: 1200px){
    .set-position{
        position: relative !important;
        top: 1px !important;
    }
}
.margin-right-12{
    margin-right: 12px;
}
@keyframes dropdown-animate {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }

    0% {
        opacity: 0;
    }
}

/* Light Backgrounds */
.bg-primary-light {
    background-color: #cfe2ff;
    border-color: #cfe2ff;
}

.bg-secondary-light {
    background-color: #e2e3e5;
    border-color: #e2e3e5;
}

.bg-success-light {
    background-color: #d1e7dd;
    border-color: #d1e7dd;
}

.bg-danger-light {
    background-color: #f8d7da;
    border-color: #f8d7da;
}

.bg-warning-light {
    background-color: #fff3cd;
    border-color: #fff3cd;
}

.bg-info-light {
    background-color: #cff4fc;
    border-color: #cff4fc;
}

.bg-dark-light {
    background-color: #d3d3d4;
    border-color: #d3d3d4;
}

.bg-color {
    background-color: #f2f2f2;
}

/*Model Body*/
.modal-dialog {
    max-width: 850px;
    margin: 2rem auto;
    padding: 10px;
}
/* Card */
.card {
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.card-header,
.card-footer {
    border-color: #ebeef4;
    background-color: #fff;
    color: #798eb3;
    padding: 15px;
}

.card-title {
    padding: 20px 0 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #012970;
    /*font-family: "Poppins", sans-serif;*/
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; */
    font-family: Calibry, "Open Sans", sans-serif;
}

    .card-title span {
        color: #899bbd;
        font-size: 14px;
        font-weight: 400;
    }

.visible-text {
    visibility: hidden;
}
.set-position{
    position: relative;
    top: -125px;
    left: 1px;
    z-index: 999;
}
/*.card-body {
    padding: 0 20px 20px 20px;
}*/
.card-img-overlay {
    background-color: rgba(255, 255, 255, 0.6);
}

/* Alerts */
.alert-heading {
    font-weight: 500;
    /*font-family: "Poppins", sans-serif;*/
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-family: Calibry, "Open Sans", sans-serif;
    font-size: 20px;
}

/* Close Button */
.btn-close {
    background-size: 25%;
}

    .btn-close:focus {
        outline: 0;
        box-shadow: none;
    }

/* Accordion */
.accordion-item {
    border: 1px solid #ebeef4;
}

.accordion-button:focus {
    outline: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #012970;
    background-color: #f6f9ff;
}

.accordion-flush .accordion-button {
    padding: 15px 0;
    background: none;
    border: 0;
}

    .accordion-flush .accordion-button:not(.collapsed) {
        box-shadow: none;
        color: #4154f1;
    }

.accordion-flush .accordion-body {
    padding: 0 0 15px 0;
    color: #3e4f6f;
    font-size: 15px;
}

/* Breadcrumbs */
.breadcrumb {
    font-size: 14px;
    /*font-family: "Nunito", sans-serif;*/
    /*font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;*/
    font-family: Calibry, "Open Sans", sans-serif;
    color: #899bbd;
    font-weight: 600;
}

    .breadcrumb a {
        color: #899bbd;
        transition: 0.3s;
    }

        .breadcrumb a:hover {
            color: #51678f;
        }

    .breadcrumb .breadcrumb-item::before {
        color: #899bbd;
    }

    .breadcrumb .active {
        color: #51678f;
        font-weight: 600;
    }

/* Bordered Tabs */
.nav-tabs-bordered {
    border-bottom: 2px solid #ebeef4;
}

    .nav-tabs-bordered .nav-link {
        margin-bottom: -2px;
        border: none;
        color: #2c384e;
    }

        .nav-tabs-bordered .nav-link:hover,
        .nav-tabs-bordered .nav-link:focus {
            background-color: #3f3f3f;
            color: white;
            border-bottom: 2px solid #cb0000;
        }

        .nav-tabs-bordered .nav-link.active {
            background-color: #3f3f3f;
            color: white;
            border-bottom: 2px solid #cb0000;
        }

.pr-10 {
    padding-right: 10px;
}
.pr-0 {
    padding-right: 0px !important;
}

.ft-right {
    float: right;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.logo {
    line-height: 1;
}

@media (min-width: 1200px) {
    .logo {
        width: 280px;
    }
}

.logo img {
    max-height: 26px;
    margin-right: 6px;
}

.logo span {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: Calibry, "Open Sans", sans-serif;
}
.header {
    transition: all 0.5s;
    z-index: 997;
    /*height: 60px;*/
    height: 41px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #cb0000;
    padding-left: 20px;
    position: fixed;
    width: 100%;
}


    .header .toggle-sidebar-btn {
        font-size: 20px;
        padding-left: 10px;
        padding-top: 10px;
        cursor: pointer;
        color: #fff;
    }

    .header .search-bar {
        min-width: 360px;
        padding: 0 20px;
    }

@media (max-width: 1199px) {
    .header .search-bar {
        position: fixed;
        top: 50px;
        left: 0;
        right: 0;
        padding: 20px;
        box-shadow: 0px 0px 15px 0px rgba(1, 41, 112, 0.1);
        background: white;
        z-index: 9999;
        transition: 0.3s;
        visibility: hidden;
        opacity: 0;
    }

    .header .search-bar-show {
        top: 60px;
        visibility: visible;
        opacity: 1;
    }
}

.header .search-form {
    width: 100%;
}

    .header .search-form input {
        border: 0;
        font-size: 14px;
        color: #012970;
        border: 1px solid rgba(1, 41, 112, 0.2);
        padding: 7px 38px 7px 8px;
        border-radius: 3px;
        transition: 0.3s;
        width: 100%;
    }

        .header .search-form input:focus,
        .header .search-form input:hover {
            outline: none;
            box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
            border: 1px solid rgba(1, 41, 112, 0.3);
        }

    .header .search-form button {
        border: 0;
        padding: 0;
        margin-left: -30px;
        background: none;
    }

        .header .search-form button i {
            color: #012970;
        }

/*--------------------------------------------------------------
# Header Nav
--------------------------------------------------------------*/
.header-nav ul {
    list-style: none;
}

.header-nav > ul {
    margin: 0;
    padding: 0;
}

.header-nav .nav-icon {
    font-size: 22px;
    color: #012970;
    margin-right: 25px;
    position: relative;
}

.header-nav .nav-profile {
    color: #012970;
}

    .header-nav .nav-profile img {
        max-height: 36px;
    }

    .header-nav .nav-profile span {
        font-size: 14px;
        font-weight: 600;
    }

.header-nav .badge-number {
    position: absolute;
    inset: -2px -5px auto auto;
    font-weight: normal;
    font-size: 12px;
    padding: 3px 6px;
}

.header-nav .notifications {
    inset: 8px -15px auto auto !important;
}

    .header-nav .notifications .notification-item {
        display: flex;
        align-items: center;
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .notifications .notification-item i {
            margin: 0 20px 0 10px;
            font-size: 24px;
        }

        .header-nav .notifications .notification-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .header-nav .notifications .notification-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .notifications .notification-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .messages {
    inset: 8px -15px auto auto !important;
}

    .header-nav .messages .message-item {
        padding: 15px 10px;
        transition: 0.3s;
    }

        .header-nav .messages .message-item a {
            display: flex;
        }

        .header-nav .messages .message-item img {
            margin: 0 20px 0 10px;
            max-height: 40px;
        }

        .header-nav .messages .message-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #444444;
        }

        .header-nav .messages .message-item p {
            font-size: 13px;
            margin-bottom: 3px;
            color: #919191;
        }

        .header-nav .messages .message-item:hover {
            background-color: #f6f9ff;
        }

.header-nav .profile {
    min-width: 240px;
    padding-bottom: 0;
    top: 8px !important;
}

    .header-nav .profile .dropdown-header h6 {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 600;
        color: #444444;
    }

    .header-nav .profile .dropdown-header span {
        font-size: 14px;
    }

    .header-nav .profile .dropdown-item {
        font-size: 14px;
        padding: 10px 15px;
        transition: 0.3s;
    }

        .header-nav .profile .dropdown-item i {
            margin-right: 10px;
            font-size: 18px;
            line-height: 0;
        }

        .header-nav .profile .dropdown-item:hover {
            background-color: #f6f9ff;
        }

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.color-dark {
    background: #a19898 !important;
}

.sidebar {
    position: fixed;
    /*top: 60px;*/
    top: 41px;
    left: 0;
    bottom: 0;
    width: 222px;
    z-index: 996;
    transition: all 0.3s;
    padding: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #aab7cf transparent;
    box-shadow: 0px 0px 20px rgba(1, 41, 112, 0.1);
    background-color: #3f3f3f;
}

/*@media (max-width: 992px) {
    .sidebar {
        left: -300px;
    }
}*/

.sidebar::-webkit-scrollbar {
    width: 5px;
    height: 8px;
    background-color: #fff;
}

.sidebar::-webkit-scrollbar-thumb {
    background-color: #aab7cf;
}

@media (min-width: 1200px) {

    #main,
    #footer {
        margin-left: 200px;
    }
}

@media (max-width: 1199px) {
    .toggle-sidebar-btn .sidebar {
        left: 0;
    }
}

@media (min-width: 1200px) {

    .toggle-sidebar-btn #main,
    .toggle-sidebar-btn #footer {
        margin-left: 0;
    }

    .toggle-sidebar-btn .sidebar {
        left: -300px;
    }
}

.sidebar-nav {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .sidebar-nav li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sidebar-nav .nav-item {
        margin-bottom: 5px;
    }

    .sidebar-nav .nav-heading {
        font-size: 11px;
        text-transform: uppercase;
        color: #899bbd;
        font-weight: 600;
        margin: 10px 0 5px 15px;
    }

    .sidebar-nav .nav-link {
        display: flex;
        align-items: center;
        font-size: 15px;
        font-weight: 600;
        color: black;
        transition: 0.3;
        background: #f6f9ff;
        padding: 10px 15px;
        border-radius: 4px;
    }

        .sidebar-nav .nav-link i {
            font-size: 16px;
            margin-right: 10px;
            color: #899bbd;
        }

        .sidebar-nav .nav-link.collapsed {
            color: #000;
            background: #fff;
        }

            .sidebar-nav .nav-link.collapsed i {
                color: #899bbd;
            }

        .sidebar-nav .nav-link:hover {
            color: white;
            background: #cb0000;
        }

            .sidebar-nav .nav-link:hover i {
                color: #000;
            }

        .sidebar-nav .nav-link .bi-chevron-down {
            margin-right: 0;
            transition: transform 0.2s ease-in-out;
        }

        .sidebar-nav .nav-link:not(.collapsed) .bi-chevron-down {
            transform: rotate(180deg);
        }

    .sidebar-nav .nav-content {
        /* padding: 5px 0 0 0;*/
        margin: 0;
        list-style: none;
    }

        .sidebar-nav .nav-content a {
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 600;
            color: #000;
            transition: 0.3;
            /*padding: 10px 0 10px 40px;*/
            transition: 0.3s;
        }

            .sidebar-nav .nav-content a i {
                font-size: 6px;
                margin-right: 8px;
                line-height: 0;
                border-radius: 50%;
            }

            .sidebar-nav .nav-content a:hover,
            .sidebar-nav .nav-content a.active {
                color: #fff;
            }

                .sidebar-nav .nav-content a.active i {
                    background-color: #4154f1;
                }

---------------------------------------------
# Dashboard
--------------------------------------------------------------*/
/* Filter dropdown */
.dashboard .filter {
    position: absolute;
    right: 0px;
    top: 15px;
}

.dashboard .filter .icon {
    color: #aab7cf;
    padding-right: 20px;
    padding-bottom: 5px;
    transition: 0.3s;
    font-size: 16px;
}

    .dashboard .filter .icon:hover,
    .dashboard .filter .icon:focus {
        color: #4154f1;
    }

.dashboard .filter .dropdown-header {
    padding: 8px 15px;
}

    .dashboard .filter .dropdown-header h6 {
        text-transform: uppercase;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        color: #aab7cf;
        margin-bottom: 0;
        padding: 0;
    }

.dashboard .filter .dropdown-item {
    padding: 8px 15px;
}

/* Info Cards */
.dashboard .info-card {
    padding-bottom: 10px;
}

    .dashboard .info-card h6 {
        font-size: 28px;
        color: #012970;
        font-weight: 700;
        margin: 0;
        padding: 0;
    }

.dashboard .card-icon {
    font-size: 32px;
    line-height: 0;
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    flex-grow: 0;
}

.dashboard .sales-card .card-icon {
    color: #4154f1;
    background: #f6f6fe;
}

.dashboard .revenue-card .card-icon {
    color: #2eca6a;
    background: #e0f8e9;
}

.dashboard .customers-card .card-icon {
    color: #ff771d;
    background: #ffecdf;
}

/* Activity */
.dashboard .activity {
    font-size: 14px;
}

    .dashboard .activity .activity-item .activite-label {
        color: #888;
        position: relative;
        flex-shrink: 0;
        flex-grow: 0;
        min-width: 64px;
    }

        .dashboard .activity .activity-item .activite-label::before {
            content: "";
            position: absolute;
            right: -11px;
            width: 4px;
            top: 0;
            bottom: 0;
            background-color: #eceefe;
        }

    .dashboard .activity .activity-item .activity-badge {
        margin-top: 3px;
        z-index: 1;
        font-size: 11px;
        line-height: 0;
        border-radius: 50%;
        flex-shrink: 0;
        border: 3px solid #fff;
        flex-grow: 0;
    }

    .dashboard .activity .activity-item .activity-content {
        padding-left: 10px;
        padding-bottom: 20px;
    }

    .dashboard .activity .activity-item:first-child .activite-label::before {
        top: 5px;
    }

    .dashboard .activity .activity-item:last-child .activity-content {
        padding-bottom: 0;
    }

/* News & Updates */
.dashboard .news .post-item + .post-item {
    margin-top: 15px;
}

.dashboard .news img {
    width: 80px;
    float: left;
    border-radius: 5px;
}

.dashboard .news h4 {
    font-size: 15px;
    margin-left: 95px;
    font-weight: bold;
    margin-bottom: 5px;
}

    .dashboard .news h4 a {
        color: #012970;
        transition: 0.3s;
    }

        .dashboard .news h4 a:hover {
            color: #4154f1;
        }

.dashboard .news p {
    font-size: 14px;
    color: #777777;
    margin-left: 95px;
}

/* Recent Sales */
.dashboard .recent-sales {
    font-size: 14px;
}

    .dashboard .recent-sales .table thead {
        background: #f6f6fe;
    }

        .dashboard .recent-sales .table thead th {
            border: 0;
        }

    .dashboard .recent-sales .dataTable-top {
        padding: 0 0 10px 0;
    }

    .dashboard .recent-sales .dataTable-bottom {
        padding: 10px 0 0 0;
    }

/* Top Selling */
.dashboard .top-selling {
    font-size: 14px;
}

    .dashboard .top-selling .table thead {
        background: #f6f6fe;
    }

        .dashboard .top-selling .table thead th {
            border: 0;
        }

    .dashboard .top-selling .table tbody td {
        vertical-align: middle;
    }

    .dashboard .top-selling img {
        border-radius: 5px;
        max-width: 60px;
    }

/*--------------------------------------------------------------
# Icons list page
--------------------------------------------------------------*/
.iconslist {
    display: grid;
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    padding-top: 15px;
}

    .iconslist .icon {
        background-color: #fff;
        border-radius: 0.25rem;
        text-align: center;
        color: #012970;
        padding: 15px 0;
    }

    .iconslist i {
        margin: 0.25rem;
        font-size: 2.5rem;
    }

    .iconslist .label {
        font-family: var(--bs-font-monospace);
        display: inline-block;
        width: 100%;
        overflow: hidden;
        padding: 0.25rem;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
        color: #666;
    }

/*--------------------------------------------------------------
# Profie Page
--------------------------------------------------------------*/
.profile .profile-card img {
    max-width: 120px;
}

.profile .profile-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2c384e;
    margin: 10px 0 0 0;
}

.profile .profile-card h3 {
    font-size: 18px;
}

.profile .profile-card .social-links a {
    font-size: 20px;
    display: inline-block;
    color: rgba(1, 41, 112, 0.5);
    line-height: 0;
    margin-right: 10px;
    transition: 0.3s;
}

    .profile .profile-card .social-links a:hover {
        color: #012970;
    }

.profile .profile-overview .row {
    margin-bottom: 20px;
    font-size: 15px;
}

.profile .profile-overview .card-title {
    color: #012970;
}

.profile .profile-overview .label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit label {
    font-weight: 600;
    color: rgba(1, 41, 112, 0.6);
}

.profile .profile-edit img {
    max-width: 120px;
}

/*--------------------------------------------------------------
# F.A.Q Page
--------------------------------------------------------------*/
.faq .basic h6 {
    font-size: 18px;
    font-weight: 600;
    color: #4154f1;
}

.faq .basic p {
    color: #6980aa;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    padding: 28px 30px;
}

    .contact .info-box i {
        font-size: 38px;
        line-height: 0;
        color: #4154f1;
    }

    .contact .info-box h3 {
        font-size: 20px;
        color: #012970;
        font-weight: 700;
        margin: 20px 0 10px 0;
    }

    .contact .info-box p {
        padding: 0;
        line-height: 24px;
        font-size: 14px;
        margin-bottom: 0;
    }

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .contact .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid #18d26e;
        border-top-color: #eee;
        animation: animate-loading 1s linear infinite;
    }

.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 14px;
    border-radius: 0;
}

    .contact .php-email-form input:focus,
    .contact .php-email-form textarea:focus {
        border-color: #4154f1;
    }

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #4154f1;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 4px;
}

    .contact .php-email-form button[type=submit]:hover {
        background: #5969f3;
    }

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
    padding: 30px;
}

    .error-404 h1 {
        font-size: 180px;
        font-weight: 700;
        color: #4154f1;
        margin-bottom: 0;
        line-height: 150px;
    }

    .error-404 h2 {
        font-size: 24px;
        font-weight: 700;
        color: #012970;
        margin-bottom: 30px;
    }

    .error-404 .btn {
        background: #51678f;
        color: #fff;
        padding: 8px 30px;
    }

        .error-404 .btn:hover {
            background: #3e4f6f;
        }

@media (min-width: 992px) {
    .error-404 img {
        max-width: 50%;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    padding: 20px 0;
    font-size: 14px;
    transition: all 0.3s;
    border-top: 1px solid #cddfff;
}

    .footer .copyright {
        text-align: center;
        color: #012970;
    }

    .footer .credits {
        padding-top: 5px;
        text-align: center;
        font-size: 13px;
        color: #012970;
    }

.tblKeySetup {
    vertical-align: middle;
}


.float-rgt {
    float: right;
}

.float-lft {
    float: left;
}

textarea {
    resize: none;
    font-family: Calibri, "Open Sans", sans-serif;
    font-size: 13px !important;
    color: #444444;
}

.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 50% !important;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color:;
    --bs-modal-bg: var(--bs-body-bg);
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: var(--bs-border-width);
    --bs-modal-border-radius: var(--bs-border-radius-lg);
    --bs-modal-box-shadow: var(--bs-box-shadow-sm);
    --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: var(--bs-border-width);
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg:;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: var(--bs-border-width);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.padding-left-5 {
    padding-left: 5px !important;
}
/*th {
    padding: 0 !important;
    margin: 0 !important;
}
tr td {
    padding: 0 !important;
    margin: 0 !important;
}*/

.table > :not(caption) > * > * {
    padding: 0;
    vertical-align:middle;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
    padding-left: 4px;
    margin: 0;
}

/*******************************/
.table {
    display: table;
    border-collapse: collapse;
}

    .table .tr {
        display: table-row;
        border: 1px solid #ddd;
    }

        .table .tr:first-child {
            font-weight: bold;
            border-bottom: 2px solid #ddd;
        }

        .table .tr:nth-child(even) {
            background-color: #f9f9f9;
        }

        .table .tr .td {
            display: table-cell;
            padding: 0px;
            padding-left: 4px;
            
            border-left: 1px solid #ddd;
        }

            .table .tr .td:first-child {
                border-left: 0;
            }

/* Not necessary for table styling */
.div-table,
.table-tag {
    float: left;
    margin: 2em;
}

    .div-table .title,
    .table-tag .title {
        text-align: center;
        padding-bottom: 0.5em;
    }

.padding-form {
    padding: 3px 3px 3px 5px;
    font-size: 13px !important;
}

.padding-bottom-2 {
    padding-bottom: 2px;
}

.bootstrap-select > .dropdown-toggle {
    position: relative;
    width: 100%;
    text-align: right;
    white-space: nowrap;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3px 3px 3px 5px;
    font-size: 13px;

 
}

#navbarDropdown {
    font-size: 13px;
    font-weight: 600;
    color:#fff;
}
/*Login Page Sample*/
.bg-change {
    /*    background: #999999;
    border-radius: 25px;*/
    padding: 35px;
}

.visible-none {
    visibility: hidden;
}

.font-setting {
    font-weight: 600;
    color: black;
}

.box-shadow-none {
    box-shadow: none !important;
}

.change-color {
    background: #cb0000 !important;
    border-color: #cb0000 !important;
}
.credits{
    text-align: center;
}
.margin-top-15{
    margin-top: 15px;
}
@media (max-width: 1199.98px) {
    .font-setting {
        font-size: 10pt !important;
    }
}
.bg-image {
    /*  width: 100%;*/
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /*background-image: url("../Content/images/10778-blurs.jpg");*/
    background-color: #3f3f3f;
}

.menu-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #443ea2;
}

    .menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus {
        text-decoration: none;
        color: #875de5;
    }

    .menu-toggle i {
        font-size: 20px;
    }
#ProjectTypeMain option:checked {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 153, 0);
}


.profile-menu .dropdown-menu {
    right: 0;
    left: unset;
}

.profile-menu .fa-fw {
    margin-right: 10px;
}

.toggle-change::after {
    border-top: 0;
    border-bottom: 0.3em solid;
}
.navbar {
    transition: all 0.5s;
    z-index: 997;
    height: 68px;
    box-shadow: 0px 2px 20px rgba(1, 41, 112, 0.1);
    background-color: #cb0000 !important;
    padding-left: 20px;
    width: 100%;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    font-family: Calibry, "Open Sans", sans-serif;
}
.dropdown-menu {
    padding: 12px;
    border: 1px solid #ced4da;
    font-size: 10pt;
    width:100%;
}

.btnlink {
    background: none !important;
    border: none;
    padding: 0 !important;
    /*optional*/
    font-family: arial, sans-serif;
    /*input has OS specific font-family*/
    color: #069;
    text-decoration: underline;
    cursor: pointer;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

/* Multi drop down down arrow with setting */
.dropdown-toggle::after {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    float: right;
    margin-top: 8px;
}

.BackgroundGreen {
    background-color: rgb(59, 161, 113) !important;
}
.BorderRed {
    border: 1px solid red !important;
}

.modal-dialog-Custom {
    max-width: 925px;
    margin: 2rem auto;
    padding: 10px;
}

.radio-btns {
    display:flex;
    flex-direction:row;
    justify-content:space-between;
}

/*input[type=radio], input[type=checkbox] {
    margin-top: 18px;
}
*/
.labels {
    margin-top:5px !important;
}


.bdr {
border:1px solid green;
}

.span-pt-pl {
    padding-left: 6px;
    padding-top: 0px;
}

.tr_head_row {
    background-color: #e5e5e5;
    border-color: #e5e5e5;
    font-weight:bold;
}
.tr_light_green {
    background-color: lightgreen
}

.popover {
    max-width:300px;
    max-height:300px;
}

.errorcolor {
    color: red;
}

.forgetpassword {
  color: #cb0000;
}

.divresetpwd-padd-55 {
    padding:55px;
}

.btnStaff {
    width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.btnProposalServiceSub {
    width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}       
.forgotPwdLoaderDiv {
    margin: 0 auto;
    display: block;
    margin-top: 2px;
}
.font13 {
    font-size: 13px !important;
}

.navUserName {
    color: #212529;
    font-size: 13px;
    padding: 10px 15px;
}

.modal-dialog-fee-table {
    /*    max-width: 550px !important;*/
    max-width: 40% !important;
    margin: 2rem auto;
    padding: 10px;
}
.modal-dialog-fa-plus-square {
    float: inline-end;
    font-size: 30px;
    color: #0b5ed7;

}
.modal-fee-height {
    max-height: 80vh;
    overflow-y: auto;
}
.dashboard-p {
    display: inline-block;
}
.bg-color-ClientDeadline-Date {
    background: #FFFF66;
}
.bg-color-Urgant-Date {
    background: #fd7e14;
}
.bg-colour-No-Date {
    background: #FFFFFF;
}
.bg-color-LateProposal-Date {
    background: #EA5B60;
}
.bg-color-Marketing-Date {
    background: #00ffa5;
}
.fa-ClientDealine-Date {
    color: #FFFF66;
}
.fa-Urgant-Date {
    color: #fd7e14;
}
.fa-No-Date {
    color: #FFFFFF;
    border-radius: 50%;
    border: 1px solid black;
}
.fa-LateProposal-Date {
    color: #EA5B60;
}
.fa-Marketing-Date {
    color: #00ffa5;
}

.cursor-pointer {
    cursor: pointer;
}

.username-padding {
    float: right;
    padding-right: 15px;
    /*padding-right: 30px;*/
}

.ul.pagination li.active span {
    background: #3f3f3f !important;
    color: #fff;
    padding: 5px 13px;
    border-radius: 3px;
}
.td-Notes {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width : 10vh;
}

a {
    text-decoration: none;
}
.pr-32 {
    padding-right: 32px !important;
}

.padding-bottom-20 {
    padding-bottom: 20px;
}
.td-width-10 {
width:15%;
}


.IncorrectPropColor {
    color: #eb4d52;
}

.IncorrectPropBg {
    background: #eb4d52;
    color: #fff;
}

.DraftPendingColor {
    color: #119bd3;
}

.DraftPendingBg {
    background: #119bd3;
    color: #fff;
}
.timmer-Div {
    background-color: #3f3f3f;
    color: white;
    text-align: center;
    padding: 3.7%;
    font-size: larger;
}

.timmer-Div-PrepareDraft {
    background-color: #3f3f3f;
    color: white;
    text-align: center;
    padding: 0.5%;
    font-size: larger;
}

/* Absolute Center Spinner */
.loading {
    position: fixed;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: show;
    margin: auto;
    top: 100px;
    left: 300px;
    bottom: 0;
    right: 0;
}

    /* Transparent Overlay */
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        /*top: 60px;*/
        top: 40px;
        left: 11.5%;
        width: 100%;
        height: 100%;
        background: -webkit-radial-gradient(rgb(161 145 145 / 80%), rgb(161 145 145 / 80%));
    }

    /* :not(:required) hides these rules from IE9 and below */
    .loading:not(:required) {
        /* hide "loading..." text */
        font: 0/0 a;
        color: transparent;
        text-shadow: none;
        background-color: transparent;
        border: 0;
        width: 10%;
    }

        .loading:not(:required):after {
            content: '';
            display: block;
            font-size: 10px;
            width: 1em;
            height: 1em;
            margin-top: -0.5em;
            -webkit-animation: spinner 150ms infinite linear;
            -moz-animation: spinner 150ms infinite linear;
            -ms-animation: spinner 150ms infinite linear;
            -o-animation: spinner 150ms infinite linear;
            animation: spinner 150ms infinite linear;
            border-radius: 0.5em;
            -webkit-box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
            box-shadow: rgba(255,255,255, 0.75) 1.5em 0 0 0, rgba(255,255,255, 0.75) 1.1em 1.1em 0 0, rgba(255,255,255, 0.75) 0 1.5em 0 0, rgba(255,255,255, 0.75) -1.1em 1.1em 0 0, rgba(255,255,255, 0.75) -1.5em 0 0 0, rgba(255,255,255, 0.75) -1.1em -1.1em 0 0, rgba(255,255,255, 0.75) 0 -1.5em 0 0, rgba(255,255,255, 0.75) 1.1em -1.1em 0 0;
        }

/* Animation */

@-webkit-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spinner {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.auto-Complate {
    /*    padding: 20px 0px 10px;
    background: #fff;
    border: 1px solid #909090;
    border-radius: 5px;
    box-shadow: 0px 1px 9px 1px #ccc;
    width: 19%;
    margin-left: 46px;
    z-index: 999;
    position: absolute;
    display: none;
    overflow: auto;
    max-height: 500px;*/

    border-radius: 5px;
    box-shadow: 0px 1px 9px 1px #ccc;
    width: 23.5%;
    margin-left: 0px;
    z-index: 999;
    position: absolute;
    display: none;
    overflow-y: auto;
    max-height: 150px;
}
.mr-26px{
    margin-right:26px !important;
}
.i-color-black {
    color:#000000 !important;
}
 
.menu-highlight {
    background: #cb0000 !important;
    color: #ffffff !important;
}
.Sub-menu-highlight {
    background: #34a973 !important;
    color: #ffffff !important;
}



ul.pagination li.active span {
    background: #cb0000 !important;
    color: #fff;
    padding: 5px 13px;
    border-radius: 3px;
}

ul.pagination li a:hover {
    background: #3f3f3f !important;
    color: #fff;
}
.ref-td-width {
    width: 6% !important;
}

.mr-5{
    margin-right :5px !important;
}

.btnAssignee {
    width: 200px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/*@media (min-width: 576px) {
    .col-sm-2 {
        flex: 0 0 auto;
        width: 30%;
    }
    .col-sm-10 {
        flex: 0 0 auto;
        width: 70%;
    }
}*/


.auto-Complate-project {
    border-radius: 5px;
    box-shadow: 0px 1px 9px 1px #ccc;
    width: 39.8%;
    margin-left: 0px;
    z-index: 999;
    position: absolute;
    display: none;
    overflow-y: auto;
    max-height: 150px;
}

.display-none {
    display:none;
}

.proposal-amendment-case {
    pointer-events: none;
    height: 100%;
    width: 100%;
    display: inline-block;
    opacity: 0.5;
}

.display-grid {
    display: grid;
    place-items: center;
}
.label-border-none {
    border: none;
    padding: 0px;
    /* margin: 2px; */
    display: flex;
    flex-direction: row;
    margin-left: -1px;
    margin-top: -3px;
}
.label-border {
    border: 1px solid;
    padding: 0px;
    /* margin: 2px; */
   /* display: flex;*/
    flex-direction: row;
    margin-left: -1px;
    margin-top: -3px;
    text-align:center;
}
.div-without-border {
    padding: 0px;
    margin: 2px;
    display: flex;
    flex-direction: row;
    margin-top: 0px;
    margin-bottom: -2px;
    margin-left: 0px;
    border-top: 0px none;
}

.ddl-wdth-75 {
    width: 75%;
   
}
.ddl-wdth-50 {
    width: 50%;
    
}
.ddl-wdth-13 {
    width: 13%;
    
}

.display-flex {
    display: flex;
}
.width-1 {
    width: 1%;
    text-align: center;
}
.width-2 {
    width: 2%;
    text-align: center;
}
.width-3 {
    width: 3%;
    text-align: center;
}
.width-4 {
    width: 4%;
    text-align: center;
}
.width-4-5 {
    width: 4.5%;
    text-align: center;
}
.width-5-5 {
    width: 5.5%;
    text-align: center;
}
.width-5 {
    width: 5%;
    text-align: center;
}
.width-6 {
    width: 6%;
    text-align: center;
}
.width-7 {
    width: 7%;
    text-align: center;
}
.width-8 {
    width: 8%;
    text-align: center;
}
.width-9 {
    width: 9%;
    text-align: center;
}
.width-10 {
    width: 10%;
    text-align: center;
}
.width-11 {
    width: 11%;
    text-align: center;
}
.width-11 {
    width: 11%;
    text-align: center;
}
.width-12 {
    width: 12%;
    text-align: center;
}

.bdr {
border: 1px solid;
}
.ScqSub {
    accent-color: red;
}

.ScqSub2 {
    accent-color: red;
}
.ScqSub4 {
    accent-color: red;
} 
.soq-multi-select-dropdown{
    padding:0px;
}
.pd-1 {
padding:1px;
}
.pd-l-2 {
padding-left:2px;
margin:4px;
}
.width-114-px {
width:114px;
}

.padding-right-10 {
    padding-right: 10px;
}
.padding-left-10 {
    padding-left: 10px;
}
/*.fa-upload:before {
    content: "\f093";
    color: darkgrey;
}
.fa-download:before {
    content: "\f093";
    color: darkgrey;
}*/

.color-yellow {
    background-color:yellow;
    font-weight:bold;
}

.bg-color-orange {
    color: #212529 !important;

}

.padding-0 {
    padding:0px;
}
.padding-1 {
    padding: 1px;
}

.padding-2 {
    padding: 2px;
}
.padding-3 {
    padding: 3px;
}
.padding-4 {
    padding: 4px;
}
.padding-5 {
    padding: 5px;
}
.padding-6 {
    padding: 6px;
}
.padding-7 {
    padding: 7px;
}
.padding-8 {
    padding: 8px;
}
.padding-9 {
    padding: 9px;
}
.padding-10 {
    padding: 10px;
}
.padding-11 {
    padding: 11px;
}

.padding-12 {
    padding: 12px;
}

.padding-13 {
    padding: 13px;
}

.padding-14 {
    padding: 14px;
}

.padding-15 {
    padding: 15px;
}

.padding-16 {
    padding: 16px;
}

.padding-17 {
    padding: 17px;
}

.padding-18 {
    padding: 18px;
}

.padding-19 {
    padding: 19px;
}

.padding-20 {
    padding: 20px;
}


.padding-21 {
    padding: 21px;
}

.padding-22 {
    padding: 22px;
}

.padding-23 {
    padding: 23px;
}

.padding-24 {
    padding: 24px;
}

.padding-25 {
    padding: 25px;
}

.padding-26 {
    padding: 26px;
}

.padding-27 {
    padding: 27px;
}

.padding-28 {
    padding: 28px;
}

.padding-29 {
    padding: 29px;
}

.padding-30 {
    padding: 30px;
}

.padding-31 {
    padding: 31px;
}

.padding-32 {
    padding: 32px;
}

.padding-33 {
    padding: 33px;
}

.padding-34 {
    padding: 34px;
}

.padding-35 {
    padding: 35px;
}

.padding-36 {
    padding: 36px;
}

.padding-37 {
    padding: 37px;
}

.padding-38 {
    padding: 38px;
}

.padding-39 {
    padding: 39px;
}

.padding-40 {
    padding: 10px;
}
.padding-41 {
    padding: 41px;
}

.padding-42 {
    padding: 42px;
}

.padding-43 {
    padding: 43px;
}

.padding-44 {
    padding: 44px;
}

.padding-45 {
    padding: 45px;
}

.padding-46 {
    padding: 46px;
}

.padding-47 {
    padding: 47px;
}

.padding-48 {
    padding: 48px;
}

.padding-49 {
    padding: 49px;
}

.padding-50 {
    padding: 50px;
}
.padding-51 {
    padding: 51px;
}

.padding-52 {
    padding: 52px;
}

.padding-53 {
    padding: 53px;
}

.padding-54 {
    padding: 54px;
}

.padding-55 {
    padding: 55px;
}

.padding-56 {
    padding: 56px;
}

.padding-57 {
    padding: 57px;
}

.padding-58 {
    padding: 58px;
}

.padding-59 {
    padding: 59px;
}

.padding-60 {
    padding: 60px;
}
.padding-61 {
    padding: 61px;
}

.padding-62 {
    padding: 62px;
}

.padding-63 {
    padding: 63px;
}

.padding-64 {
    padding: 64px;
}

.padding-65 {
    padding: 65px;
}

.padding-66 {
    padding: 66px;
}

.padding-67 {
    padding: 67px;
}

.padding-68 {
    padding: 68px;
}

.padding-69 {
    padding: 69px;
}

.padding-70 {
    padding: 70px;
}

.padding-71 {
    padding: 71px;
}

.padding-72 {
    padding: 72px;
}

.padding-73 {
    padding: 73px;
}

.padding-74 {
    padding: 74px;
}

.padding-75 {
    padding: 75px;
}

.padding-76 {
    padding: 76px;
}

.padding-77 {
    padding: 77px;
}

.padding-78 {
    padding: 78px;
}

.padding-79 {
    padding: 79px;
}

.padding-80 {
    padding: 10px;
}

.padding-81 {
    padding: 81px;
}

.padding-82 {
    padding: 82px;
}

.padding-83 {
    padding: 83px;
}

.padding-84 {
    padding: 84px;
}

.padding-85 {
    padding: 85px;
}

.padding-86 {
    padding: 86px;
}

.padding-87 {
    padding: 87px;
}

.padding-88 {
    padding: 88px;
}

.padding-89 {
    padding: 9px;
}

.padding-90 {
    padding: 10px;
}
.padding-91 {
    padding: 91px;
}

.padding-92 {
    padding: 92px;
}

.padding-93 {
    padding: 93px;
}

.padding-94 {
    padding: 94px;
}

.padding-95 {
    padding: 95px;
}

.padding-96 {
    padding: 96px;
}

.padding-97 {
    padding: 97px;
}

.padding-98 {
    padding: 98px;
}

.padding-99 {
    padding: 99px;
}

.padding-100 {
    padding: 100px;
}

.pd-t-6 {
padding-top:6px;
}
.margin-bottom-0{
    margin-bottom:0px !important;
}

td-background-color {
    background :black !important;
}
.pd-l-0 {
    padding-left: 0px !important;
}
.pd-l-4 {
    padding-left: 4px !important;
}

.width-40px {
    width:40px;
}
.width-45 {
    width: 45px;
}

.width-50 {
    width: 50px;
}
.width-75 {
    width: 70px;
}
.ucase {
    text-transform: uppercase;
}

/*.dashboard-proposal-date-color {
    margin: -20px 0px -17px -17px;
    padding-left: 18px;
}*/
.dashboard-proposal-date-color {
    margin: -17px 0px -17px -17px;
    padding-left: 18px;
}
.jqte_tool jqte_tool_1 unselectable {
    display: none;
}
.jqte_editor {
    height:350px;
    resize:none !important;
}

/*.jqte_toolbar {
    display: none !important;
}*/


/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

    /* Tooltip text */
    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        padding: 5px 0;
        border-radius: 6px;
        /* Position the tooltip text - see examples below! */
        position: absolute;
        z-index: 1;
    }

    /* Show the tooltip text when you mouse over the tooltip container */
    .tooltip:hover .tooltiptext {
        visibility: visible;
    }


@media (min-width: 1369px) and (max-width: 1920px) {

    .dashboard-width-propReq {
        width:1%
    }
    .dashboard-width-clientname {
        width: 5.5%;
    }
    .dashboard-width-rvd-date {
        width: 1%;
    }
    .dashboard-width-due-date {
        width: 3.8%;
    }
    .dashboard-width-category {
        width: 0.5%;
    }
    .dashboard-width-asg-to {
        width: 0.5%;
    }

    .dashboard-width-ad-doc {
        width: 2%;
    }
    .dashboard-width-curr-status {
        width: 1%;
    }
    .dashboard-width-curr-ack {
        width: 0.5%;
    }
    .dashboard-width-resc {
        width: 0.5%;
    }
    
    .dashboard-width-note {
        width: 18%;
    }

    .dashboard-width-project-note {
        width: 12%;
    }

    .hide-SimilarProposalSuggest-messge {
        display: block;
    }

    /*********************************/

    .user-log-history-sno {
        width: 2%;
    }
    .user-log-history-name {
        width: 10%;
    }
    .user-log-history-date {
        width: 10%;
    }
    .user-log-history-browser {
        width: 12%;
    }
    .user-log-history-device {
        width: 12%;
    }
    .user-log-history-location {
        width: 56%;
    }
    .user-log-history-action {
        width: 7%;
    }
    /*********************************/

    /***********View Proposal ************/

    .proposalNumber {
        width:4%;
    }
    .proposalRequestedOffice {
        width: 7%;
    }
    .proposalServiceType {
        width: 9%;
    }
    .proposalKeyword {
        width: 49%;
    }

    .proposalReceveiedOn {
        width: 5%;
    }
    .proposalDueOn {
        width: 5%;
    }
    .proposalCreatedOn {
        width: 6%;
    }


    .soq1-width {
        width: 1%;
    }
    .soq2-width {
        width: 6%;
    }
    .soq3-width {
        width: 4%;
    }
    .soq4-width {
        width: 40%;
    }
    .soq5-width {
        width: 2%;
    }
    .soq6-width {
        width: 3%;
    }
    .soq7-width {
        width: 2%;
    }
    .soq8-width {
        width: 2%;
    }
    .soq-type-ddl-width {
        width: 70%;
    }
    .soq-doc-ddl-width {
        width: 70%;
    }

    .soq-search-prop {
        width: 188px;
    }

    .input-prio-width {
        width: 50px;
    }
    .table-Proposal-Resource {
        width: 75% !important;
    }
    .margin-left-35 {
        margin-left: 0px;
    }

    .modal-dialog-fee-table {
        /* max-width: 550px !important; */
        max-width: 40% !important;
        margin: 2rem auto;
        padding: 10px;
    }

    .form-select-drop {
        display: block;
        width: 100%;
        padding: .375rem 2.25rem .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: #fff;
        background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e); */
        background-repeat: no-repeat;
        background-position: right .75rem center;
        background-size: 16px 12px;
        border: 1px solid #ced4da;
        border-radius: .25rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
} 


@media (min-width: 912px) and (max-width: 1368px) {

    .form-select-drop {
        display: block;
        width: 100%;
        padding: .375rem 2.25rem .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        background-color: #fff;
        /* background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e); */
        background-repeat: no-repeat;
        background-position: right .75rem center;
        background-size: 16px 12px;
        border: 1px solid #ced4da;
        border-radius: .25rem;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .modal-dialog-fee-table {
        /* max-width: 550px !important; */
        max-width: 50% !important;
        margin: 2rem auto;
        padding: 10px;
    }

    .table-Proposal-Resource {
        width: 100% !important;
    }
    .margin-left-35 {
        margin-left: 35px;
    }
    .dashboard-width-propReq {
        width: 1%
    }

    .dashboard-width-clientname {
        width: 8%;
    }

    .dashboard-width-rvd-date {
        width: 2%;
    }

    .dashboard-width-due-date {
        width: 5.7%;
    }

    .dashboard-width-category {
        width: 0.2%;
    }

    .dashboard-width-asg-to {
        width: 1%;
    }

    .dashboard-width-ad-doc {
        width: 3%;
    }

    .dashboard-width-curr-status {
        width: 1%;
    }

    .dashboard-width-curr-ack {
        width: 1%;
    }

    .dashboard-width-resc {
        width: 1%;
    }

    .dashboard-width-note {
        width: 10%;
    }

    .dashboard-width-project-note {
        width: 8%;
    }
    .hide-SimilarProposalSuggest-messge {
        display:none;
    }
    .loading:before {
        content: '';
        display: block;
        position: fixed;
        /* top: 60px; */
        top: 40px;
        left: 16.2%;
        width: 100%;
        height: 100%;
        background: -webkit-radial-gradient(rgb(161 145 145 / 80%), rgb(161 145 145 / 80%));
    }
    
    /****************************/

    .user-log-history-sno {
        width: 3%;
    }

    .user-log-history-name {
        width: 13%;
    }

    .user-log-history-date {
        width: 13%;
    }

    .user-log-history-browser {
        width: 18%;
    }

    .user-log-history-device {
        width: 15%;
    }

    .user-log-history-location {
        width: 56%;
        
    }

    .user-log-history-action {
        width: 7%;
    }

    /***********View Proposal ************/

    .proposalNumber {
        width: 4%;
    }

    .proposalRequestedOffice {
        width: 10%;
    }

    .proposalServiceType {
        width: 12%;
    }

    .proposalKeyword {
        width: 45%;
         
        /*display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;*/
    }

    .proposalReceveiedOn {
        width: 8%;
    }

    .proposalDueOn {
        width: 8%;
    }

    .proposalCreatedOn {
        width: 9%;
    }

    .soq1-width {
        width: 2%;
    }

    .soq2-width {
        width: 10%;
    }

    .soq3-width {
        width: 7%;
    }

    .soq4-width {
        width: 36%;
    }

    .soq5-width {
        width: 2%;
    }

    .soq6-width {
        width:5%;
    }

    .soq7-width {
        width: 2%;
    }

    .soq8-width {
        width: 2%;
    }

    .soq-type-ddl-width{
        width:100%;
    }

    .soq-doc-ddl-width {
        width:100%;
    }
    .soq-search-prop {
        width: 200px;
    }
    .input-prio-width {
        width: 25px;
    }

}

.w-30 {
    width:30% !important;
}


/*@media (min-width: 2736px) and (max-width: 2836px) {

    .dashboard-width-propReq {
        width: 0.1%;
    }

    .dashboard-width-clientname {
        width: 0.7%;
    }

    .dashboard-width-rvd-date {
        width: 0.1%;
    }

    .dashboard-width-due-date {
        width: 0.4%;
    }

    .dashboard-width-category {
        width: 0.4%;
    }

    .dashboard-width-asg-to {
        width: 0.1%;
    }

    .dashboard-width-ad-doc {
        width: 0.2%;
    }

    .dashboard-width-curr-status {
        width: 0.1%;
    }

    .dashboard-width-curr-ack {
        width: 1%;
    }

    .dashboard-width-resc {
        width: 1%;
    }

    .dashboard-width-note {
        width: 1%;
    }

    .dashboard-width-project-note {
        width: 1%;
    }

    .hide-SimilarProposalSuggest-messge {
        display: block;
    }
}*/

.padding-top-17 {
    padding-top:17px !important;
}

.margin-bottom-5 {
    margin-bottom: 5px;
} 

.text-font-color-white{
    color:#fff !important;
}


.auto-Complate-keyword {
    border-radius: 5px;
    box-shadow: 0px 1px 9px 1px #ccc;
    width: 79.6%;
    margin-left: 0px;
    z-index: 999;
    position: absolute;
    display: none;
    overflow-y: auto;
    max-height: 150px;
}
.ProposalRequestToStaff {
    overflow: auto;
    max-height: 250px;
    position: absolute;
    inset: 0px auto auto 0px;
    margin: 0px;
    transform: translate(0px, 30px);
}

.soq-Name {
    width: 5.5%;
    border-bottom: none;
    padding: 3px;
    text-align: left;
}

.soq-Cat {
    width: 6.8%;
    border-bottom: none;
    padding: 3px;
    text-align: left;
}
.soq-Rate {
    width: 3%;
    border-bottom: none;
    padding: 3px;
    text-align: left;
}
.soq-resume-list {
    width: 5%;
    border-bottom: none;
    padding-top: 3px;
}


.soq-resume-list-rb {
    width: 5%;
    border-bottom: none;
    padding-top: 6px;
}

.soq-more-resume {
    width: 10%;
    border: none;
    padding-top: 3px;
}
.pd-r-1 {
    padding-right: 1px;
}
.pd-r-2 {
    padding-right:2px;
}
.pd-r-3 {
    padding-right: 3px;
}
.pd-r-4 {
    padding-right: 4px;
}


#detailDiv {
    padding-left:20px;
}

.vertical-align-middle {
    vertical-align: middle;
}
#dynamic_div {
    border: 1px #c1c1c1 solid;
    border-radius: 4px;
    padding-bottom: 16px;
}
.padding-lft-rgt-10 {
    padding-left: 10px;
    padding-right: 10px;
}

.width-flt-rgt {
    float: right;
    width: 93%;
    background-color: #c6ddff;
}

.display-flex {
    display: flex;
}
.margin-top-5px {
    margin-top: 5px;
}
.margin-bottom-5px {
    margin-bottom: 5px;
}

.btn-primary-link {
    color: #000000;
    background-color: #ffffff;
    border-color: #0d6efd;
}

.pt-ft-2 {
    padding-top: .2rem !important;
}

.divIFrameHide {
    display:none !important;
}

.btn_green {
    background-color: rgb(59, 161, 113) !important;
    color:#fff;
}
.checkmark {
    font-size: 15px;
    color: green;
    font-weight:bolder;
}
.crossmark {
    font-size: 15px;
    color: red;
    font-weight: bolder;
}
.display-none-soq {
    display: none !important;
}

.margin-top-11 {
    margin-top: 11px;
}


.td-width-1 {
    width: 1%;
}
.td-width-2 {
    width: 2%;
}
.td-width-3 {
    width: 3%;
}
.td-width-4 {
    width: 4%;
}
.td-width-5 {
    width: 5%;
}
.td-width-6 {
    width: 6%;
}
.td-width-7 {
    width: 7%;
}
.td-width-8 {
    width: 8%;
}
.td-width-9 {
    width: 9%;
}
.td-width-10 {
    width: 10%;
}
.td-width-11 {
    width: 11%;
}
.td-width-12 {
    width: 12%;
}
.td-width-13 {
    width: 13%;
}
.td-width-14 {
    width: 14%;
}
.td-width-15 {
    width: 15%;

}
.td-width-16 {
    width: 16%;
}
.td-width-17 {
    width: 17%;
}
.td-width-18 {
    width: 18%;
}
.td-width-19 {
    width: 19%;
}
.td-width-20 {
    width: 20%;
}

.td-width-21 {
    width: 21%;
}
.td-width-22 {
    width: 22%;
}

.td-width-23 {
    width: 23%;
}
.td-width-24 {
    width: 24%;
}
.td-width-25 {
    width: 25%;
}
.td-width-26 {
    width: 26%;
}
.td-width-27 {
    width: 27%;
}

.td-width-28 {
    width: 28%;
}

.td-width-29 {
    width: 29%;
}

.td-width-30 {
    width: 30%;
}

.overflow-hidden {
    overflow: hidden !important;
}

.text-overflow-ellipsis {
    /*overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
    white-space: nowrap;*/
}

.text-ellipsis {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-ellipsis-soq-resume {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-clipped {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
}

.text-string {
    max-width: 100px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: string;
}

.padding-left-45 {
    padding-left: 45px;
}

.display-flex {
    display: flex;
}
.feeAmountcss {
    width: 50% !important;
    text-align: right;
    margin-left: 10%;
}
.feePercentagecss {
    width: 20% !important;
    text-align: right;
    margin-left: 10%;
}
.feeOtherAmountcss {
    width: 100% !important;
    text-align: right;
}

.text-align-right {
    text-align: right;
}
.fee-expense-amt {
    width: 42% !important;
    text-align: right;
    
}

.pd-r-7 {
    padding-right:7px;

}

.dropdown-height-soq {
    height: 30px;
    margin: 0px;
    padding: 0px;
    padding-left: 11px !important;
}

.dashboard-Year-dropdown {
    height: 45%;
    padding-top: 3px;
    border: none;
    width:30%;
}