﻿:root {
    --primaryColor: #395D2D;
    --secondaryColor: #252832;
    --graybgColor: #f9f9f9;
    --greenLight: #b5d6b5;
    --fontColor: #333333;
    --fontAwesome: 'FontAwesome';
    --secondaryFont: 'Poppins Regular', 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Corbel';
    font-size: 16px;
    color: var(--fontColor);
}

.container {
    max-width: 90%;
}

.table tr th {
    font-family: 'Corbel' !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

header, section, footer {
    width: 100%;
    float: left;
}

/* Login Page css start */
.login-section {
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('../images/bg-1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

    .login-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(136, 164, 78, 0.65);
        z-index: -1;
    }

.loginBox {
    width: 360px;
    background: #fff;
    padding: 2.2rem;
    border-radius: 10px;
}

.logoImage {
    text-align: center;
}

.loginBox h1 {
    font-size: 20px;
    color: var(--primaryColor);
    font-weight: bold;
}

.loginBox p {
    font-size: 14px;
    color: var(--primaryColor);
    text-align: justify;
}

.form-fields label {
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 15px;
    margin-bottom: .5rem;
}

.form-fields input {
    border-radius: 30px;
    font-size: 15px;
    box-shadow: none !important;
    outline: none;
    height: 38px;
}

    .form-fields input:focus {
        border-color: var(--primaryColor);
    }

    .form-fields input::placeholder {
        opacity: 0.7;
    }

.remember-forgot label, .remember-forgot a {
    font-size: 14px;
    color: var(--primaryColor);
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 0;
}

.btn-login, .btn-login a {
    background: var(--primaryColor);
    color: #fff !important;
    border: 2px solid var(--primaryColor);
    display: block;
    width: 100%;
    border-radius: 30px;
    font-weight: bold !important;
    font-size: 20px !important;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 40%);
    transition: 0.3s;
}

    .btn-login:hover {
        background: none;
        color: var(--primaryColor) !important;
    }

.btn-login {
    padding: .375rem .75rem;
}

.copy-right {
    margin-top: 2.2rem;
    font-size: 13px;
    color: #fff;
    text-align: center;
}

.validation-text {
    font-size: 13px;
    margin-top: 2px;
    font-weight: bold;
}
/* Login Page css end */

/* Left Menu and top header css start */
.topStriped {
    background: var(--primaryColor);
    padding: .5rem;
}

.user-nofification-div i {
    font-size: 26px;
    color: #fff;
}

.user-nofification-div .icon {
    margin: 0 .7rem;
    cursor: pointer;
}

.userDropMenu {
    padding: 0;
    margin-top: 7px !important;
    overflow: hidden;
}

    .userDropMenu li a {
        font-size: 14px;
        color: #9F9F9F;
        border-bottom: #ccc 1px solid;
        padding: .5rem;
        display: block;
        text-decoration: none;
        font-weight: bold;
        transition: 0.3s all;
    }

        .userDropMenu li a:hover {
            background: var(--graybgColor);
        }

    .userDropMenu li:last-child a {
        border: none;
    }

.left-navbar-container {
    background: var(--graybgColor);
    min-height: 100vh;
    position: relative;
    height: 100%;
}

    .left-navbar-container ul {
        margin: 0;
        padding: 0;
        list-style: none;
        width: 100%;
        float: left;
    }

        .left-navbar-container ul li a {
            display: flex;
            padding: 1.5rem 0rem;
            color: var(--primaryColor);
            font-size: 17px;
            font-weight: bold;
            text-decoration: none;
            align-items: center;
            position: relative;
            flex-direction: column;
        }

        .left-navbar-container ul li.active a {
            background: var(--primaryColor);
            color: #fff;
        }

        .left-navbar-container ul li a i {
            font-size: 32px;
            flex-shrink: 0;
        }

        .left-navbar-container ul li a:hover {
            background: var(--primaryColor);
            color: #fff;
        }

.drop-icon:before {
    position: absolute;
    right: 10px;
    content: "\f107";
    font-family: var(--fontAwesome);
    font-size: 20px;
    z-index: 2;
}

.mobile-menu i {
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}
/* Left Menu and top header css ends */


.project-header {
    border-bottom: 1px solid #dfdfdf;
    padding: .5rem;
}

.projectHeadding h1 {
    color: var(--primaryColor);
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.btn-add {
    background: var(--primaryColor);
    color: #fff;
    width: 110px;
    font-size: 17px;
    font-weight: bold;
    outline: none;
}

    .btn-add i {
        margin-right: .3rem;
    }

    .btn-add:hover, .btn-green:hover {
        color: #fff;
    }

.project-search-header {
    padding: .5rem;
}

    .project-search-header input,
    .project-search-header select {
        font-size: 15px;
        box-shadow: none !important;
        outline: none;
        height: 38px;
        opacity: 0.6;
    }

        .project-search-header input::placeholder {
            opacity: 0.6;
        }

.btn-green {
    background: var(--primaryColor) !important;
    color: #fff !important;
    width: 120px;
    font-size: 17px !important;
    font-weight: bold;
    height: 38px;
    line-height: 0;
    outline: none !important;
}

.form-select-sm {
    height: 28px !important;
}

.filter-label-div label {
    font-size: 14px;
    color: var(--primaryColor);
}

.filter-label-div select {
    margin: 0 .5rem;
}

.project-content-body {
    padding: .5rem;
}

.project-content-card {
    border: 1px solid var(--primaryColor);
    padding: .7rem .5rem;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgb(24 95 151 / 90%);
    margin-bottom: 2rem;
}

.project-detial-div {
    display: flex;
    align-items: center;
}

.project-icon i {
    font-size: 26px;
    color: var(--primaryColor);
}

.project-description {
    margin-left: 1.3rem;
}

.pro-small-text {
    font-size: 12px;
    color: var(--primaryColor);
}

.pro-title, .project-name-div, .project-status-div {
    font-size: 16px;
    font-weight: 600;
    margin: .5rem 0;
    color: var(--primaryColor);
}

.project-edit-div {
    display: flex;
    align-items: center;
}

    .project-edit-div button {
        margin: 0 .3rem;
        background: none;
        border: none;
        font-size: 26px;
        cursor: pointer;
        outline: none;
        color: var(--primaryColor);
    }

.pagination-div {
    padding: .5rem;
}

.footer-pagination ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    background: var(--primaryColor);
    border-radius: 4px;
    border: 2px solid var(--primaryColor);
}

    .footer-pagination ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 14px;
        text-decoration: none;
        color: #fff;
    }

    .footer-pagination ul li:first-child a,
    .footer-pagination ul li:last-child a {
        background: #fff;
        color: var(--primaryColor);
        border-radius: 3px;
        transition: 0.3s;
        width: 84px;
        text-align: center;
    }

        .footer-pagination ul li:first-child a:hover,
        .footer-pagination ul li:last-child a:hover {
            background: var(--primaryColor);
            color: #fff;
        }

.form-check-input:checked {
    background-color: var(--primaryColor);
    border-color: var(--primaryColor);
}

.breadcrumb-item, .breadcrumb-item a {
    font-size: 16px;
    font-weight: bold;
    color: #b1abab;
    text-decoration: none;
}

    .breadcrumb-item a .fa {
        margin-right: .3rem;
    }


.back-btn {
    width: 40px;
    cursor: pointer;
}

    .back-btn i {
        color: var(--primaryColor);
        font-size: 28px;
    }

.form-section-div sup {
    font-size: 15px;
    color: red;
    vertical-align: sub;
}

.form-label {
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 15px;
}

input::placeholder, textarea::placeholder {
    opacity: 0.6 !important;
    font-size: 14px;
}

.text-blue {
    color: var(--secondaryColor) !important;
}

.text-green {
    color: var(--primaryColor);
}

.modal-md .modal-title {
    font-size: 20px;
    font-weight: 600;
}

.modal-md .btn-close {
    background-image: none;
    font-size: 20px;
    line-height: 20px;
    color: var(--primaryColor);
    opacity: 1;
    outline: none;
    box-shadow: none;
}

.role-search {
    position: relative;
}

    .role-search:after {
        content: "\f002";
        font-family: var(--fontAwesome);
        position: absolute;
        top: 8px;
        right: 1rem;
        opacity: 0.3;
    }

.user-table tr th {
    background: var(--primaryColor);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    border-right: #fff 2px solid;
}

.user-table tr th, .user-table tr td {
    padding: 4px 10px;
}

.user-table tr td {
    font-size: 14px;
    color: var(--primaryColor);
    border-right: #fff 2px solid;
}

    .user-table tr td input {
        vertical-align: middle;
    }

.modal-dialog-scrollable {
    height: calc(100% - 5rem);
}

.modal-md .modal-dialog {
    max-width: 600px;
}

.small-popup-modal .btn-close {
    background-image: none;
    font-size: 20px;
    line-height: 20px;
    color: var(--primaryColor);
    opacity: 1;
    outline: none;
    box-shadow: none;
}

.small-popup-modal .modal-title {
    font-size: 17px;
    font-weight: bold;
}

.small-popup-modal .modal-body p {
    font-size: 15px;
}

.small-popup-modal .modal-dialog {
    max-width: 370px;
}

.btn-outline {
    background: none !important;
    border: 2px solid var(--primaryColor) !important;
    color: var(--primaryColor) !important;
}

/* Dashboard page css start */

.dashboard-project-table {
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}

.db-card {
    border: 1px solid var(--primaryColor);
    border-radius: 10px;
}

.bd-card-height {
    height: 250px;
}

.bd-card-height1 {
    height: 280px;
}

.db-card .db-title {
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 20px;
}

.db-card .db-card-data-bold {
    color: var(--primaryColor);
    font-weight: bold !important;
    font-size: 5rem;
}

.shadow-gray {
    box-shadow: 5px 5px 5px rgb(204 204 204) !important;
}

.db-progress-status-div {
    font-size: 14px;
    font-weight: bold;
}

.inprogress-status-line {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.progress-dot {
    width: 10px;
    height: 10px;
    background: var(--greenLight);
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.Completed-dot {
    background: var(--primaryColor);
}

.bg-primary-custom {
    background: var(--primaryColor) !important;
}

.bg-secondary-custom {
    background: var(--secondaryColor) !important;
}

.progress-circle {
    position: relative;
    display: inline-block;
    margin: .5rem;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: #ebebeb;
}

    .progress-circle:after {
        content: '';
        display: inline-block;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        -webkit-animation: colorload 2s;
        animation: colorload 2s;
    }

    .progress-circle span {
        font-size: 2rem;
        color: var(--secondaryColor);
        font-weight: bold;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 125px;
        height: 125px;
        border-radius: 50%;
        background: #fff;
        z-index: 1;
    }

.select-years select {
    font-size: 14px;
    box-shadow: none !important;
    outline: none;
    height: 38px;
    opacity: 0.6;
}

.height-330 {
    height: 330px;
}

.progress-circle.progress-70:after {
    background-image: linear-gradient(-18deg, var(--primaryColor) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--primaryColor) 50%, var(--greenLight) 50%, var(--greenLight));
}
/* .progress-circle.progress-60:after {
    background-image: linear-gradient(-54deg, var(--primaryColor) 50%, transparent 50%, transparent), linear-gradient(270deg, var(--primaryColor) 50%, var(--greenLight) 50%, var(--greenLight)); 
}  */

@-webkit-keyframes colorload {
    0% {
        opacity: 0;
        transform: rotate(0deg);
    }

    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}
/* Dashboard page css end */

.user-added-div ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

    .user-added-div ul li {
        width: 220px;
        display: flex;
        align-items: center;
        flex-shrink: 0;
        margin-right: 1.5rem;
        padding: .7rem .5rem;
        border-radius: 8px;
        box-shadow: 5px 5px 5px rgb(24 95 151 / 80%);
        border: 1px solid var(--primaryColor);
        position: relative;
        margin-bottom: 1.4rem;
    }

.userName-logo {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    line-height: 45px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    border-radius: 50%;
    color: var(--primaryColor);
    border: 1px solid var(--primaryColor);
    box-shadow: 0px 3px 7px rgb(161 198 59 / 90%);
    margin: 0px 14px 0px 7px;
}

.delete-icon {
    position: absolute;
    top: 0;
    right: .5rem;
    color: #a6a6a6;
    font-size: 18px;
    cursor: pointer;
}

.userName-detail {
    width: 130px;
}

    .userName-detail h6 {
        font-size: 13px;
        font-weight: 600;
        color: var(--primaryColor);
        margin-bottom: 2px;
    }

.userName-email {
    font-size: 13px;
    font-weight: 500;
    color: var(--primaryColor);
}



/* User listing page css start */
.user-table-md tr th, .user-table tr td {
    padding: 8px 10px;
}

.user-table tr td {
    padding: 6px 10px;
    vertical-align: middle;
}

.action-btns-sm button, .action-btns-sm a {
    padding: 0;
    margin: 0;
    height: 20px;
    border: none;
    background: none;
    font-size: 20px;
    outline: none;
    color: var(--primaryColor);
}
/* User listing page css end */


.shadow-blue {
    box-shadow: 5px 5px 5px rgb(24 95 151 / 90%);
}

.card-container .card {
    border: 1px solid var(--primaryColor);
}

.admin-desc {
    font-weight: bold;
    font-size: 16px;
}

.admin-desc-text {
    font-weight: 600;
    font-size: 14px;
}

.btn-default button {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 0;
    color: var(--primaryColor);
}

.cursor-disabled {
    pointer-events: none;
    user-select: none;
}

.custom-field label {
    font-size: 16px;
    font-weight: 600;
}

.address-card {
    border: 1px solid var(--primaryColor);
    border-radius: 8px;
    padding: .7rem;
}

.address-icon {
    width: 40px;
}

    .address-icon i {
        font-size: 30px;
        color: var(--primaryColor);
    }

.address-btns {
    width: 70px;
    text-align: right;
}

.address-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primaryColor);
}

.btn-green.w-25 {
    width: 260px !important;
}

.rounded-10 {
    border-radius: 10px !important;
}

.closeMenu {
    display: none;
}

.date-label {
    position: absolute;
    top: .1rem;
    left: .1rem;
    font-size: 13px;
    font-weight: bold;
    background: #fff;
    color: rgba(0,0,0,0.3);
    padding: 8px 10px 7px 10px;
    user-select: none;
}

.custom-tabs button {
    background: none;
    border: 2px solid var(--primaryColor);
    border-radius: 6px;
    margin-right: .5rem;
    color: var(--primaryColor) !important;
    font-weight: bold;
    font-size: 17px;
    margin-bottom: .5rem;
    padding: .3rem .9rem;
    transition: 0.3s all;
}

    .custom-tabs button:hover, .custom-tabs button.active {
        background: var(--primaryColor);
        color: #fff !important;
    }

.custom-accordion .accordion-item {
    border: none !important;
    border-radius: 0;
}

    .custom-accordion .accordion-item button {
        margin-top: 1rem;
        font-size: 1.4rem;
        font-weight: bold;
        padding: .7rem 1rem;
        color: #fff;
    }

.custom-accordion .accordion-button:not(.collapsed) {
    box-shadow: none;
    color: #fff;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
}

.custom-accordion .accordion-button::after {
    background-image: none;
    width: auto;
    height: auto;
    content: "\f067";
    font-family: var(--fontAwesome);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
}

.panel-content-header {
    border-bottom: 1px solid #cdcdcd;
    border-radius: 0;
    font-size: 20px;
    font-weight: bold;
    color: #e62e2d;
    display: flex;
    line-height: 1;
    align-items: center;
    padding: 15px 0px 15px 15px;
}

    .panel-content-header img {
        width: 44px;
        margin-right: 10px;
        flex-shrink: 0;
    }

.bg-red .accordion-button {
    background: none;
    border: 2px solid #eb1e2c;
    color: #eb1e2c !important;
}

    .bg-red .accordion-button:hover {
        background: #eb1e2c;
        color: #fff !important;
    }

.bg-red .panel-content-header {
    color: #e62e2d;
}

.bg-red .btn-small {
    background: #eb1e2c !important;
}

.bg-golden .accordion-button {
    background: none;
    border: 2px solid #d19e29;
    color: #d19e29 !important;
}

    .bg-golden .accordion-button:hover {
        background: #d19e29;
        border: 2px solid #d19e29;
        color: #fff !important;
    }

.bg-golden .panel-content-header {
    color: #d19e29;
}

.bg-golden .btn-small {
    background: #d19e29 !important;
}

.bg-green .accordion-button {
    background: none;
    border: 2px solid #2d9a47;
    color: #2d9a47 !important;
}

    .bg-green .accordion-button:hover {
        background: #2d9a47;
        border: 2px solid #2d9a47;
        color: #fff !important;
    }

.bg-green .panel-content-header {
    color: #2d9a47;
}

.bg-green .btn-small {
    background: #2d9a47 !important;
}

.bg-light-red .accordion-button {
    background: none;
    border: 2px solid #c11f33;
    color: #c11f33 !important;
}

    .bg-light-red .accordion-button:hover {
        background: #c11f33;
        border: 2px solid #c11f33;
        color: #fff !important;
    }

.bg-light-red .panel-content-header {
    color: #c11f33;
}

.bg-light-red .btn-small {
    background: #c11f33 !important;
}

.bg-orange .accordion-button {
    background: none;
    border: 2px solid #ed4129;
    color: #ed4129 !important;
}

    .bg-orange .accordion-button:hover {
        background: #ed4129;
        border: 2px solid #ed4129;
        color: #fff !important;
    }

.bg-orange .panel-content-header {
    color: #ed4129;
}

.bg-orange .btn-small {
    background: #ed4129 !important;
}

.bg-light-blue .accordion-button {
    background: none;
    border: 2px solid #00add8;
    color: #00add8 !important;
}

    .bg-light-blue .accordion-button:hover {
        background: #00add8;
        border: 2px solid #00add8;
        color: #fff !important;
    }

.bg-light-blue .panel-content-header {
    color: #00add8;
}

.bg-light-blue .btn-small {
    background: #00add8 !important;
}

.bg-yellow .accordion-button {
    background: none;
    border: 2px solid #feb613;
    color: #feb613 !important;
}

    .bg-yellow .accordion-button:hover {
        background: #feb613;
        border: 2px solid #feb613;
        color: #fff !important;
    }

.bg-yellow .panel-content-header {
    color: #feb613;
}

.bg-yellow .btn-small {
    background: #feb613 !important;
}


/* Secondary font css */
.secondary-font {
    font-family: var(--secondaryFont) !important;
    font-weight: normal !important;
}

.ft-12 {
    font-size: 12px !important;
}

.ft-14 {
    font-size: 14px !important;
}

.ft-16 {
    font-size: 16px !important;
}

.ft-18 {
    font-size: 18px !important;
}

.ft-20 {
    font-size: 20px !important;
}

/* Multi Select Dropdown */
.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    padding: 0;
    outline: none;
}

.bootstrap-select > .dropdown-toggle:after {
    display: none;
}

.bootstrap-select button, .bootstrap-select button:hover {
    background: none;
    outline: none !important;
    box-shadow: none;
}

.filter-option-inner-inner {
    font-size: 14px;
    color: #979292;
}

.bootstrap-select .dropdown-toggle:focus, .bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
    outline: none !important;
}




/* Responsive css */
@media (max-width:575px) {
    .loginBox {
        width: 90%;
    }

    .logoImage {
        margin-top: 0;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3rem);
    }

    .bd-card-height {
        height: auto;
    }

    .height-330 {
        height: auto;
    }

    .custom-accordion .accordion-item button {
        font-size: 1.2rem;
    }

    .panel-content-header {
        font-size: 18px;
    }
}

@media (max-width:767px) {
    .left-navbar-container ul li a:after {
        display: none !important;
    }

    .left-navbar-container {
        min-height: 100%;
        width: 320px;
        position: fixed;
        z-index: 20;
        left: -320px;
        transition: 0.3s all;
    }

        .left-navbar-container ul {
            height: 100%;
            overflow: auto;
        }

            .left-navbar-container ul li a {
                padding: 1rem 0rem;
                font-size: 16px;
            }

        .left-navbar-container.active {
            box-shadow: 0px 0px 0px 10000px rgb(0 0 0 / 50%);
            left: 0px;
        }

    .closeMenu {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        background: var(--primaryColor);
        color: #fff;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
        cursor: pointer;
    }
}

:root {
    --primaryColor: #395D2D;
    --secondaryColor: #252832;
    --graybgColor: #f9f9f9;
    --greenLight: #b5d6b5;
    --fontColor: #333333;
    --fontAwesome: 'FontAwesome';
    --secondaryFont: 'Poppins Regular', 'Poppins', sans-serif;
}


.leftMenuFixed {
    position: fixed;
    top: 0;
    z-index: 10;
}

.project-search-header input::placeholder {
    opacity: 0.6;
}


.shadow-gray {
    box-shadow: 5px 5px 5px rgb(204 204 204) !important;
}

.form-section-div .form-control, .form-section-div .form-select {
    font-size: 14px;
    color: #979292;
    resize: none;
    outline: none;
    box-shadow: none;
}

.bg-red .accordion-button {
    background: #eb1e2c !important;
}

.bg-red .panel-content-header {
    color: #e62e2d;
    border-color: #e62e2d;
}

.bg-red .btn-small {
    background: #eb1e2c !important;
}

.bg-golden .accordion-button {
    background: #d19e29 !important;
}

.bg-golden .panel-content-header {
    color: #d19e29;
    border-color: #d19e29;
}

.bg-golden .btn-small {
    background: #d19e29 !important;
}

.bg-green .accordion-button {
    background: #2d9a47 !important;
}

.bg-green .panel-content-header {
    color: #2d9a47;
    border-color: #2d9a47;
}

.bg-green .btn-small {
    background: #2d9a47 !important;
}

.bg-light-red .accordion-button {
    background: #c11f33 !important;
}

.bg-light-red .panel-content-header {
    color: #c11f33;
    border-color: #c11f33;
}

.bg-light-red .btn-small {
    background: #c11f33 !important;
}

.bg-orange .accordion-button {
    background: #ed4129 !important;
}

.bg-orange .panel-content-header {
    color: #ed4129;
    border-color: #ed4129;
}

.bg-orange .btn-small {
    background: #ed4129 !important;
}

.bg-light-blue .accordion-button {
    background: #00add8 !important;
}

.bg-light-blue .panel-content-header {
    color: #00add8;
    border-color: #00add8;
}

.bg-light-blue .btn-small {
    background: #00add8 !important;
}

.bg-yellow .accordion-button {
    background: #feb613 !important;
}

.bg-yellow .panel-content-header {
    color: #feb613;
    border-color: #feb613;
}

.bg-yellow .btn-small {
    background: #feb613 !important;
}


/* Multi Select Dropdown */

.select2-results__option:before {
    content: "";
    display: inline-block;
    position: relative;
    height: 20px;
    width: 20px;
    border: 2px solid #e9e9e9;
    border-radius: 4px;
    background-color: #fff;
    margin-right: 20px;
    vertical-align: middle;
}

.select2-results__option[aria-selected=true]:before {
    font-family: fontAwesome;
    content: "\f00c";
    color: #fff;
    background-color: var(--primaryColor);
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #eaeaeb;
    color: #272727;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
    border-radius: 4px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #ced4da;
}

.selection:after {
    position: absolute;
    top: 7px;
    right: 1rem;
    content: "\f107";
    font-family: 'FontAwesome';
    font-weight: bold;
    font-size: 18px;
}


/* Responsive css */
@media (max-width:575px) {
    .loginBox {
        width: 90%;
    }

    .logoImage {
        margin-top: 0;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3rem);
    }

    .bd-card-height {
        height: auto;
    }

    .height-330 {
        height: auto;
    }

    .custom-accordion .accordion-item button {
        font-size: 1.2rem;
    }

    .panel-content-header {
        font-size: 18px;
    }
}

@media (max-width:767px) {
    .left-navbar-container ul li a:after {
        display: none !important;
    }

    .left-navbar-container {
        min-height: 100%;
        width: 320px;
        position: fixed;
        z-index: 20;
        left: -320px;
        transition: 0.3s all;
    }

        .left-navbar-container ul {
            height: 100%;
            overflow: auto;
        }

            .left-navbar-container ul li a {
                padding: 1rem 0rem;
                font-size: 16px;
            }

        .left-navbar-container.active {
            box-shadow: 0px 0px 0px 10000px rgb(0 0 0 / 50%);
            left: 0px;
        }

    .closeMenu {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        background: var(--primaryColor);
        color: #fff;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
        cursor: pointer;
    }
    /* new changes 09 sept */
    .overallScore span {
        font-weight: bold !important;
        color: var(--primaryColor);
    }

    .graph-actions ul {
        margin: 2rem 0;
        padding: 0;
    }

    .sdg-about-icon ul li {
        width: 47% !important;
    }

    /* New changes 20 sept */
    .operation-tabs button {
        margin: 3px;
        padding: .3rem .5rem;
        border-radius: 30px;
        border: 2px solid var(--primaryColor);
    }

    .information-popup-container table tr td {
        display: block;
        width: 100% !important;
    }

        .information-popup-container table tr td:first-child {
            padding-bottom: 0;
        }
}


/* new media change 09 sept */
@media (min-width:767px) {
    .overallScore {
        width: 350px;
        height: 350px;
    }

        .overallScore span {
            font-weight: bold !important;
            font-size: 4rem;
            color: var(--primaryColor);
            width: 260px;
            height: 260px;
        }

    .db-card-height {
        height: 500px;
    }
}

/* about us page responsive */
@media screen and (max-width: 1183px) {
    ul.tabs {
        display: none;
    }

    .icon-text-container {
        flex-direction: column;
    }

    .sdg-about-icon {
        width: 100%;
    }

        .sdg-about-icon ul li {
            width: 23%;
        }

    .tab_container {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    .tab_drawer_heading {
        background: var(--primaryColor);
        color: #fff;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
        text-align: center;
        margin-bottom: 2px;
        font-weight: bold;
        font-size: 21px;
        position: relative;
    }

        .tab_drawer_heading:hover {
            background: var(--primaryColor);
            color: #fff;
        }

    .d_active {
        background: var(--primaryColor);
        color: #fff;
    }

    .tab_drawer_heading:after {
        content: "\f107";
        font-family: var(--fontAwesome);
        float: right;
        position: absolute;
        right: .6rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .tab_drawer_heading.d_active:after {
        content: "\f106";
    }

    .sdg-report-tabs .tab_container {
        width: 100%;
    }

    .sdg-report-tabs {
        padding: 1rem;
    }
}

@media (max-width:1199px) {
    .percentage {
        position: static !important;
        margin-left: 5%;
    }
}


.table tr td {
    color: #252832;
    /*font-size: 15px !important;*/
}

.action-btns-sm button, .action-btns-sm a {
    padding: 0;
    margin: 0;
    height: 20px;
    border: none;
    background: none;
    font-size: 20px;
    outline: none;
    color: var(--secondaryColor);
}

.red-2 {
    background: #ff0000 !important;
    position: relative !important;
    overflow: hidden;
}

    .red-2:before, .red-2:after {
        content: '';
        position: absolute;
        width: 80px;
        height: 8px;
        background: transparent;
        border: #fff 2px solid;
        top: 72%;
        transform: rotate(45deg) translate(-50%, -50%);
        left: -61%;
    }

    .red-2:after {
        left: -21px;
        top: 29px;
    }

.table tr td {
    color: #252832;
    /*font-size: 15px !important;*/
}

.action-btns-sm button, .action-btns-sm a {
    padding: 0;
    margin: 0;
    height: 20px;
    border: none;
    background: none;
    font-size: 18px;
    outline: none;
    color: var(--secondaryColor);
}

/* New change 09 sept */
.graph-actions ul {
    text-align: left;
    list-style: none;
    font-size: .8rem;
    font-weight: bold;
    color: var(--primaryColor);
    margin: 1.5rem 0;
    padding-left: 0;
}

    .graph-actions ul li span {
        display: block;
        width: 14px;
        height: 14px;
        background: #a6a6a6;
        border-radius: 4px;
        vertical-align: middle;
        margin-right: 1rem;
    }

    .graph-actions ul li {
        margin: 10px 0px;
        display: block;
    }

.green {
    background: #39cc36 !important;
}

.amber {
    background: #ffbf00 !important;
}

.red {
    background: #cc001f !important;
}

.lightred {
    background: #ed1c24 !important;
}

.pink {
    background: #e01483 !important;
}

.limeGreen {
    background: #88a44e !important;
}

.lightGreen {
    background: #b5d6b5 !important;
}


/* 15-september changes */
.information-button {
    /* position: absolute;
    top: -2.4rem;
    right: 1rem; */
    color: var(--primaryColor);
    font-size: 1.4rem;
    cursor: pointer;
}

.information-popup {
    position: absolute;
    right: 3.5rem;
    top: -3.1rem;
    background: #f9f9f9;
    max-width: 370px;
    padding: 1rem 1.2rem;
    border: #dfdfdf 1px solid;
    border-radius: 6px;
    z-index: 20;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in;
}

    .information-popup.hideShow_info {
        visibility: visible;
        opacity: 1;
    }

    .information-popup:before {
        content: '';
        position: absolute;
        right: -10px;
        top: 20px;
        width: 18px;
        height: 18px;
        background: #f9f9f9;
        border: #dfdfdf 1px solid;
        transform: rotate( 45deg);
        border-left: none;
        border-bottom: none;
    }

    .information-popup p {
        margin: 0;
    }

.sdg-icons {
    width: 42px;
    margin-right: 1.2rem;
}

.modal-md .modal-xl {
    max-width: 1140px;
}

/* About Us page css */
.about-us-content-section h1, .about-us-content-section h2 {
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 26px;
}

.about-us-content-section h2 {
    font-size: 22px;
}

.about-us-content-section p {
    text-align: justify;
}

    .about-us-content-section p u {
        text-decoration: underline dotted #9b6d20;
    }

.bg-dark-gray {
    background: #f2f2f2;
}

.bg-gray {
    background: var(--graybgColor);
}


/* about us tabs */
.tabs_wrapper {
    box-shadow: 0px 4px 23px rgb(0 0 0 / 20%);
    margin-bottom: 3rem;
    border-radius: 6px;
}

ul.tabs {
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 8px 0 0;
    padding: 0;
    width: 28.333%;
    /*min-width: 175px;*/
    list-style: none;
    -ms-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    ul.tabs li {
        margin: 0;
        cursor: pointer;
        padding: 30px 5px 30px 10px;
        text-align: left;
        font-weight: bold;
        border-right: 4px solid var(--graybgColor);
        font-size: 16px;
        color: #818f8b;
        -ms-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        ul.tabs li:hover {
            -ms-transition: all 0.3s ease;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

        ul.tabs li.active {
            color: var(--primaryColor);
            border-right-color: var(--primaryColor);
        }

.tab_container {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 71%;
    text-align: left;
    background: white;
    border-radius: 12px;
}

.tab_content {
    padding: 20px 5px 20px 20px;
    height: 100%;
    display: none;
}

.sdg-about-icon {
    width: 290px;
    flex-shrink: 0;
    margin-top: 1rem;
}

    .sdg-about-icon ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

        .sdg-about-icon ul li {
            width: 47%;
            float: left;
            margin: 4px;
        }

    .sdg-about-icon img {
        width: 100%;
    }

.icon-text-container {
    display: flex;
}

.tab_content_details {
    padding-right: .7rem;
    text-align: justify;
}

.tab_drawer_heading {
    display: none;
}

.operation-tabs button {
    background: #f2f2f2;
    border: none;
    margin: 0;
    padding: .6rem 1rem;
    border-radius: 15px 15px 0px 0px;
    border-top: 2px solid var(--primaryColor);
}

.tab_active.tab_active {
    display: block !important;
}

.tab_content_details h2 {
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 23px;
}

.sdg-report-tabs ul.tabs {
    width: 19%;
}

.sdg-report-tabs .tab_container {
    width: 79.666%;
}



/* Responsive css */
@media (max-width:575px) {
    .loginBox {
        width: 90%;
    }

    .logoImage {
        margin-top: 0;
    }

    .modal-dialog-scrollable {
        height: calc(100% - 3rem);
    }

    .bd-card-height {
        height: auto;
    }

    .height-330 {
        height: auto;
    }

    .custom-accordion .accordion-item button {
        font-size: 1.2rem;
    }

    .panel-content-header {
        font-size: 18px;
    }
}

@media (max-width:767px) {
    .left-navbar-container ul li a:after {
        display: none !important;
    }

    .left-navbar-container {
        min-height: 100%;
        width: 320px;
        position: fixed;
        z-index: 20;
        left: -320px;
        transition: 0.3s all;
    }

        .left-navbar-container ul {
            height: 100%;
            overflow: auto;
        }

            .left-navbar-container ul li a {
                padding: 1rem 0rem;
                font-size: 16px;
            }

        .left-navbar-container.active {
            box-shadow: 0px 0px 0px 10000px rgb(0 0 0 / 50%);
            left: 0px;
        }

    .closeMenu {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        background: var(--primaryColor);
        color: #fff;
        text-align: center;
        line-height: 30px;
        border-radius: 50%;
        cursor: pointer;
    }
    /* new changes 09 sept */
    .overallScore span {
        font-weight: bold !important;
        color: var(--primaryColor);
    }

    /* .graph-actions ul {
        margin: 2rem 0;
        padding: 0;
    }*/

    .sdg-about-icon ul li {
        width: 47% !important;
    }

    /* New changes 20 sept */
    .operation-tabs button {
        margin: 3px;
        padding: .3rem .5rem;
        border-radius: 30px;
        border: 2px solid var(--primaryColor);
    }
}


/* new media change 09 sept */
@media (min-width:767px) {
    .overallScore {
        width: 350px;
        height: 350px;
    }

        .overallScore span {
            font-weight: bold !important;
            font-size: 4rem;
            color: var(--primaryColor);
            width: 260px;
            height: 260px;
        }

    .db-card-height {
        height: 500px;
    }
}

/* about us page responsive */
@media screen and (max-width: 1183px) {
    ul.tabs {
        display: none;
    }

    .icon-text-container {
        flex-direction: column;
    }

    .sdg-about-icon {
        width: 100%;
    }

        .sdg-about-icon ul li {
            width: 23%;
        }

    .tab_container {
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    .tab_drawer_heading {
        background: var(--primaryColor);
        color: #fff;
        margin: 0;
        padding: 5px 20px;
        display: block;
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
        text-align: center;
        margin-bottom: 2px;
        font-weight: bold;
        font-size: 21px;
        position: relative;
    }

        .tab_drawer_heading:hover {
            background: var(--primaryColor);
            color: #fff;
        }

    .d_active {
        background: var(--primaryColor);
        color: #fff;
    }

    .tab_drawer_heading:after {
        content: "\f107";
        font-family: var(--fontAwesome);
        float: right;
        position: absolute;
        right: .6rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .tab_drawer_heading.d_active:after {
        content: "\f106";
    }

    .sdg-report-tabs .tab_container {
        width: 100%;
    }

    .sdg-report-tabs {
        padding: 1rem;
    }
}

.information-popup-container {
    box-shadow: 0px 0px 15px rgb(0 0 0 / 12%);
    border-radius: 10px;
    overflow: hidden;
}

.graph-status {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #a6a6a6;
    border-radius: 4px;
    margin-right: .8rem;
    vertical-align: middle;
}

.information-popup-container table tr td {
    vertical-align: middle;
    padding: .7rem 1rem;
    color: var(--secondaryColor);
    font-size: 17px !important;
}

    .information-popup-container table tr td:first-child {
        color: var(--primaryColor);
        border-right: 1px solid #dee2e6;
    }

.dataTables_info {
    font-size: 14px;
    color: var(--primaryColor);
}

.dataTables_length select {
    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-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    height: 28px !important;
    font-size: 13px;
    box-shadow: none !important;
    outline: none;
    opacity: 0.6;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: .5rem;
    font-size: .875rem;
}

.page-item.active .page-link {
    display: block !important;
    z-index: 3;
    color: #fff !important;
    background-color: var(--primaryColor) !important;
    border-color: var(--primaryColor) !important;
}

.page-item .page-link {
    display: none
}

.dataTables_paginate ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    background: var(--primaryColor) !important;
    border-radius: 4px;
    border: 2px solid var(--primaryColor) !important;
}

    .dataTables_paginate ul li a {
        display: block;
        padding: 8px 15px;
        font-size: 14px;
        text-decoration: none;
        color: #fff !important;
        font-weight: 500;
    }

    .dataTables_paginate ul li:first-child a,
    .dataTables_paginate ul li:last-child a {
        background: #fff !important;
        color: var(--primaryColor) !important;
        border-radius: 3px;
        transition: 0.3s;
        width: 84px;
        text-align: center;
        display: block !important
    }

        .dataTables_paginate ul li:first-child a:hover,
        .dataTables_paginate ul li:last-child a:hover {
            background: var(--primaryColor) !important;
            color: #fff !important;
            border: 1px solid var(--primaryColor);
        }

.dataTables_wrapper table.dataTable {
    margin-bottom: 35px !important
}

.dataTables_wrapper div.dataTables_length label {
    color: var(--primaryColor) !important;
    margin-bottom: 7px;
}

.reportModal {
    background: #fff;
    position: fixed;
    margin: 0 !important;
    width: 700px !important;
    max-height: 635px;
    overflow: auto;
    z-index: 9999;
    border: #ccc 1px solid;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0px 10px 100px 1000px rgb(0 0 0 / 50%);
    border-radius: 10px;
}

.closeReport {
    position: sticky;
    top: 0;
    right: 0;
    left: auto;
    font-size: 28px;
    background: none;
    border: none;
    color: var(--primaryColor);
    font-weight: bold;
    cursor: pointer;
    float: right;
    z-index: 9999;
}

.btn-small {
    color: #fff !important;
    width: 120px;
    font-size: 17px !important;
    font-weight: bold;
    height: 38px;
    line-height: 0;
    outline: none !important;
}

.card-scroll {
    max-height: 500px;
    overflow: auto;
    overflow: auto;
}

.percentage {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.google-visualization-tooltip {
    position: absolute !important;
    top: -635px !important;
    background: #fff !important;
    width: 530px !important;
    height: 100px !important;
    border-radius: 10px !important;
    margin: auto !important;
    left: auto !important;
    right: auto !important;
}

#donut_102 .google-visualization-tooltip {
    top: -555px !important;
    left: -82px !important;
    margin: auto !important;
    right: auto !important;
}

#donut_201 .google-visualization-tooltip {
    top: -555px !important;
    left: -35px !important;
    margin: auto !important;
    right: auto !important;
}

.reportHeading {
    color: var(--primaryColor);
    font-weight: bold;
    font-size: 24px;
    padding: 8px 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
}

.reportLoader {
    position: fixed;
    top: 50%;
    left: 50%;
    box-shadow: 0px 0px 0px 10000px rgb(0 0 0 / 20%);
    z-index: 9999;
    width: 300px;
    background: #fff;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 15px;
    font-weight: bold;
}

.main {
    width: 530px;
    height: 550px;
    position: relative;
    margin: auto;
    margin-top: 96px !important;
}

    .main div {
        position: absolute;
    }

div#donut_2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
}

div#donut_3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 270px;
}

div#donut_4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 108px;
}

div#donut_5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 520px;
}

div#donut_6 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
}

div#donut_7 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 270px;
}

div#donut_8 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 108px;
}

div#donut_30 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 520px;
}

div#donut_40 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
}

div#donut_50 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 270px;
}

div#donut_60 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 108px;
}

div#donut_13 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 520px;
}

div#donut_14 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 400px;
}

div#donut_15 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 270px;
}

div#donut_16 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 108px;
}

div#donut_101 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 540px;
}

div#donut_102 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 376px;
}

div#donut_103 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 268.8px;
}

div#donut_104 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 86.4px;
}

div#donut_201 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 450px;
}

div#donut_202 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 270px;
}

div#donut_203 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 108px;
}

.mrtp-64 .main {
    margin-top: 64px !important;
}

.label-date {
    margin-top: -21px;
    font-size: 12px;
    left: 1rem;
    position: absolute;
}

.accordion_hover button:hover .sdg-icons {
    filter: brightness(100);
    -webkit-filter: brightness(100);
}
/* Congratulation popup */
.congratulation_div {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.congratulation_header {
    width: 670px;
    height: 220px;
    background: #f5f5f5;
    border-radius: 0 0 100% 100%;
    position: relative;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    border: #ffffff 4px solid;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 30%);
}

.celebrationImg-1 img {
    mix-blend-mode: hard-light;
    animation: movebg 3s infinite;
}

@keyframes movebg {
    0% {
        mix-blend-mode: hard-light;
        transform: translateY(-100px);
    }

    50% {
        mix-blend-mode: exclusion;
    }

    100% {
        mix-blend-mode: darken;
    }
}

.celebrationImg-2 img {
    position: absolute;
    top: 15px;
    width: 130px;
    left: 7%;
    transform: translateX(-50%);
    animation: moveone 2s infinite;
}

@keyframes moveone {
    0% {
        transform: translateY(84px) scale(0);
    }

    100% {
        transform: translateY(0px)
    }
}

.celebrationImg-4 img {
    position: absolute;
    top: 15px;
    width: 105px;
    right: 7%;
    transform: translateX(-50%) scale(0);
    animation: movetwo 2s infinite;
    animation-delay: .5s;
}

@keyframes movetwo {
    0% {
        transform: translateY(84px) scale(0);
    }

    100% {
        transform: translateY(0px)
    }
}

.celebrationImg-3 img {
    position: absolute;
    top: 0;
    left: 50%;
    width: 310px;
    transform: translateX(-50%);
    mix-blend-mode: multiply;
    animation: congratulation 1s linear;
}

@keyframes congratulation {
    0% {
        transform: translateX(-50%) scale(0);
    }

    100% {
        transform: translateX(-50%) scale(1)
    }
}

.questionyesweightage .form-check {
    margin-right: .63rem !important;
}

.reportHeading h1 {
    color: var(--primaryColor);
    font-size: 15px;
    font-weight: bold;
    margin: 0;
}

.ReportScroller {
    width: 100%;
    max-height: 620px;
    overflow: auto;
}

.expand_btn {
    background: none;
    border: none;
    color: var(--bs-gray-500);
    font-size: 18px;
}

    .expand_btn.minus:before {
        display: none;
    }

    .expand_btn.minus:after {
        content: "\f068";
        font-family: var(--fontAwesome);
    }

.bs_card_container {    
    padding: .7rem .5rem !important;
    border-radius: 10px;
    box-shadow: 5px 5px 5px var(--primaryColor);
}

.sorting_label label {
    font-size: 12px;
}

.sorting_label select {
    height: 26px;
    line-height: 1;
    font-size: 13px;
}

.bs_card_detail {
    display: flex;
    align-items: center;
}

.bs_card_desc {
    margin-left: 1rem;
}

.fts-12 {
    font-size: 12px;
}

.fts-13 {
    font-size: 13px;
    font-weight: bold;
}
.fts-14 {
    font-size: 14px;
    font-weight: bold;
}

.Version_table {
    --bs-table-bg: transparent;
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: #212529;
    --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
    --bs-table-active-color: #212529;
    --bs-table-active-bg: rgba(0, 0, 0, 0.1);
    --bs-table-hover-color: #212529;
    --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #212529;
    vertical-align: top;
    border-color: #dee2e6 !important;
    display: table;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px 10px;
}
