@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.2.2/font/bootstrap-icons.css");

@font-face {
    font-family: 'HeeboMedium';
    src: url('../fonts/HeeboMedium.eot');
    src: url('../fonts/HeeboMedium.eot') format('embedded-opentype'), url('../fonts/HeeboMedium.woff2') format('woff2'), url('../fonts/HeeboMedium.woff') format('woff'), url('../fonts/HeeboMedium.ttf') format('truetype'), url('../fonts/HeeboMedium.svg#HeeboMedium') format('svg');
}

@font-face {
    font-family: 'InterRegular';
    src: url('../fonts/InterRegular.eot');
    src: url('../fonts/InterRegular.eot') format('embedded-opentype'), url('../fonts/InterRegular.woff2') format('woff2'), url('../fonts/InterRegular.woff') format('woff'), url('../fonts/InterRegular.ttf') format('truetype'), url('../fonts/InterRegular.svg#InterRegular') format('svg');
}

@font-face {
    font-family: 'HeeboLight';
    src: url('../fonts/HeeboLight.eot');
    src: url('../fonts/HeeboLight.eot') format('embedded-opentype'), url('../fonts/HeeboLight.woff2') format('woff2'), url('../fonts/HeeboLight.woff') format('woff'), url('../fonts/HeeboLight.ttf') format('truetype'), url('../fonts/HeeboLight.svg#HeeboLight') format('svg');
}

/** Common Styles **/
body {
    background: #F8F9FE;
}

.login_bg {
    background-image: url('../images/login_bg.jpg');
    background-size: cover;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'InterRegular';
}

    .login_bg::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

.form-floating {
    margin-bottom: 15px;
}

.form-control {
    border: 1px solid #EFEFEF;
}

.form-check {
    margin-top: 15px;
}

    .form-check .form-check-input[type='checkbox'] {
        border: 1px solid #B6B6B6;
        border-radius: 1px;
        height: 20px;
        width: 20px;
        margin-right: 10px;
    }

.fs-12 {
    font-size: 12px !important;
}

.bg-red {
    background-color: #D91A1A !important;
    border-color: #D91A1A !important;
}

.light-grey {
    color: #B6B6B6;
}

.form-check-input:checked {
    background-color: #D91A1A;
    border-color: #D91A1A;
}

.btn-height-60 {
    height: 50px;
}

.white_bg {
    background-color: #FFFFFF;
    color: #D91A1A;
    border: 1px solid #D91A1A !important;
}

.border-left-2px {
    border-left: 2px solid #F8F9FE;
}

/** Login Page **/

.login-container {
    background-color: #F8F9FE;
    max-width: 646px;
    min-height: 590px;
    border-radius: 4px;
    box-shadow: 0px 0px 10px 0px #000000;
    padding: 30px 100px;
}

    .login-container img {
        display: block;
        margin: 0 auto;
    }

    .login-container h2 {
        text-align: center;
        color: #D91A1A;
        font-family: 'HeeboMedium';
        font-size: 22px;
    }

    .login-container p {
        font-size: 14px;
    }

    .login-container .eye-icon {
        top: 16px;
        right: 15px;
    }

.forgot_link {
    color: #D91A1A;
    font-size: 12px;
    text-decoration: none;
    margin-top: 5px;
}

    .forgot_link:hover {
        text-decoration: underline;
    }

.btn {
    /*outline: none;*/
    font-size: 18px;
    /*line-height: 29.38px;*/
    border-radius: 4px;
    font-family: 'HeeboMedium';
    font-weight: 500;
    /*min-width: 100px;*/
}

.btn-primary {
    background-color: #D91A1A;
    border-color: #D91A1A;
    color: white;
    min-width: 100px;
    outline: none;
}

    .btn-primary:hover,
    .btn-primary:active,
    :not(.btn-check) + .btn:active,
    .btn:first-child:active {
        background-color: #FFFFFF;
        color: #D91A1A;
        border: 1px solid #D91A1A !important;
    }

.btn-outline-primary,
.btn-check:checked + .btn,
.btn.show {
    background-color: #FFFFFF;
    color: #D91A1A;
    min-width: 100px;
    outline: none;
    font-size: 18px;
    line-height: 29.38px;
    border-radius: 4px;
    font-family: 'HeeboMedium';
    font-weight: 500;
    border: 1px solid #D91A1A !important;
}

    .btn-outline-primary:hover {
        background-color: #D91A1A;
        color: #ffffff;
        border: 1px solid #ffffff !important;
    }

.otp_input .form-control {
    width: 55px;
    height: 52px;
    border: 0.6px solid #000000;
    border-radius: 4px;
    font-size: 26px;
    font-family: 'HeeboLight';
}

    .otp_input .form-control::placeholder {
        font-size: 26px;
        font-weight: 300;
    }

@media (max-width: 767px) {
    .login-container {
        padding: 20px;
        margin: 10px;
    }
}

/** Dashboard Css **/
.menusection li {
    margin: 5px 0px;
}

    .menusection li a {
        color: black;
        font-size: 13px;
        font-weight: 500;
        padding: 5px 8px;
        line-height: 1.2em;
    }

        .menusection li a:hover,
        .menusection li a.active,
        .menusection li a:focus {
            background-color: #D91A1A !important;
            color: #fff;
        }

    .menusection li ul {
        margin: 10px 0px;
    }

        .menusection li ul li {
            margin: 0px 0px;
            padding: 0px 10px;
        }

            .menusection li ul li a {
                font-size: 13px;
               /* margin-left: 5px;*/
                text-indent: -1em;
                padding-left: 26px;
            }

                .menusection li ul li a:hover,
                menusection li ul li a:focus,
                .menusection li ul li a.active {
                    background-color: transparent !important;
                    color: #D91A1A;
                }

                .menusection li ul li a::before {
                    font-size: 50px;
                    content: ".";
                    line-height: 0px;
                }

    .menusection li i::before {
        vertical-align: middle;
    }

.download_btn {
    /*  margin-right: 15px;*/
}

#companywall {
    background: #efeae2 url('../images/wallbg.png') top center repeat;
}

.download_btn .btn {
    border-radius: 4px;
    padding: 10px 30px;
    font-size: 12px;
    line-height: 14.52px;
    white-space: nowrap;
}

.download_btn .dropdown-toggle::after {
    margin-left: 10px;
}

._title {
    color: #000000;
    font-family: 'HeeboMedium';
    font-size: 24px;
}

.table th,
.table td {
    padding: 10px;
    min-width: 150px;
    border: 0px;
}

/*.table thead {
    background: #ffcacd;
}*/

.table th {
 /*   background-color: #ffcacd !important;*/
    white-space: nowrap;
    height: 50px;
    vertical-align: middle;
}

.table td {
   /* border-bottom: 1px solid #FFD9DB;*/
    white-space: nowrap;
    font-size: 14px;
}

    .table td .btn {
        background: #116d151f;
        width: 80px;
        text-transform: uppercase;
        font-size: 12px;
        padding: 8px 14px 8px 14px;
        border-radius: 4px;
        font-size: 500;
    }

    .table td .btn-warning {
        background-color: rgba(255, 184, 0, 0.2);
        color: #FFB800;
        border: 1px solid transparent;
    }

.pagination {
    justify-content: flex-end;
    margin-top: 10px;
}

    .pagination .page-item {
        margin: 0px 5px;
    }

        .pagination .page-item .page-link {
            border: 1px solid transparent;
            color: #3F3F3F;
        }

        .pagination .page-item.active .page-link {
            background-color: #E41D28;
            border-color: #E41D28;
            color: #fff;
        }

.accordion-button:not(.collapsed),
.accordion-button:hover {
    background-color: #E41D28;
    border-color: #E41D28;
    color: #fff;
}

.nav-tabs {
    border-bottom: 0.5px solid #676566;
    justify-content: space-between;
}

    .nav-tabs .nav-item a {
        padding: 0px 65px 10px;
    }

    .nav-tabs .nav-link.active,
    .nav-tabs .nav-link:hover {
        border-top: 1px solid transparent !important;
        border-left: 1px solid transparent !important;
        border-right: 1px solid transparent !important;
        border-bottom: 2px solid #e41d28 !important;
        color: #e41d28 !important;
    }

    .nav-tabs .nav-link {
        color: #676566 !important;
        font-size: 14px !important;
        font-family: 'HeeboMedium';
        font-weight: 400 !important;
        border-bottom: none;
        border-radius: 0;
    }

.bg-white-tabs {
    background-color: #ffffff;
    padding: 15px;
}

.tab-content .form-control,
.tab-content .form-select,
.modal-body .form-control {
    height: 44px;
    border: 1px solid #DADADA;
    border-radius: 2px;
}

.tab-content label {
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.modal-body {
    max-width: 760px;
    height: 550px;
}

.rating {
    display: inline-block;
    font-size: 1.5rem;
}

    .rating input {
        display: none;
    }

    .rating label {
        cursor: pointer;
        color: #000;
    }

        .rating label:before {
            content: '\2605';
        }

    .rating input:checked ~ label {
        color: #ffc107;
    }

.tab-content .accordion-item {
    border: 0px;
    background: transparent;
}

@media (max-width: 991px) {
    .tab-content > .tab-pane {
        display: block;
        opacity: 1;
    }
}

._notification_dropdown .dropdown-menu {
    border-radius: 0px;
    width: 200px;
    padding: 10px;
}

._notification_dropdown li {
    border-bottom: 1px solid #cfcfcf;
    padding-top: 8px;
}

    ._notification_dropdown li:last-child {
        border-bottom: 1px solid transparent;
    }

    ._notification_dropdown li:first-child {
        padding-top: 0px;
    }

    ._notification_dropdown li a {
        text-decoration: none;
    }

    ._notification_dropdown li ._new_message {
        color: #E41D28;
        font-size: 9px;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

    ._notification_dropdown li .text-muted {
        font-size: 9px;
        margin-bottom: 8px;
    }

    ._notification_dropdown li img {
        margin-top: 5px;
    }

._red_dot {
    top: 0px;
    background-color: #D91A1A;
    width: 8px;
    height: 8px;
    border: 1px solid #000000;
    border-radius: 50%;
    right: 13px;
}

.accordion-collapse .btn-primary,
.modal-footer .btn-primary,
.accordion-collapse .btn-outline-primary {
    /* font-size: 12px !important; */
}

@media only screen and (min-width: 992px) and (max-width: 1420px) {
    .nav-tabs {
        justify-content: space-between;
    }

        .nav-tabs .nav-item a {
            padding: 0px 10px 10px;
        }
}

#main {
    transition: margin-left .5s;
    margin-left: 250px;
}

.logo {
    width: 98px;
}

.sidemenu .logo_sec .logo {
    width: 48px;
}

.sidemenu .logo_sec img:last-child {
    display: none;
}

.sidemenu .logo_sec img,
.sidemenu .nav-pills .nav-link img {
    margin: auto;
}

.sidemenu ul#menu span,
.sidemenu ul#menu ul {
    display: none;
}

#mySidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    overflow-x: hidden;
    transition: 0.5s;
    transition: all 0.4s ease;
    background: #fff;
}

.fs-14 {
    font-size: 14px;
}

@media(max-width:767px) {
    #mySidebar {
        background: rgb(0 0 0 / 50%);
        width: 100% !important;
    }

        #mySidebar.sidemenu {
            display: none !important;
        }

    #main {
        margin-left: 0px !important;
    }



    #mySidebar > div {
        background: #fff;
        width: 250px;
    }
}



/* please update below css starts */



.fs-11 {
    font-size: 11px !important;
}

.fs-15 {
    font-size: 15px !important;
}
.fs-14 {
    font-size: 14px !important;
}
.fs-16 {
    font-size: 16px !important;
}
.fs-24 {
    font-size: 24px !important;
}
.min-width-240 {
    min-width: 240px;
}
.text-red {
    color: #E41D28 !important;
}

.hide-border li:last-child {
    border: none !important;
}

.avatar {
    vertical-align: middle;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.fb-margin {
    margin: 30px 15px;
}

.fb_box {
    background: white;
    max-width: 680px;
    border-radius: 10px;
    padding-top: 20px;
    padding-bottom: 0px;
    overflow: hidden;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #cccccc;
    box-shadow: 2px 2px 5px rgba(68, 68, 68, 0.2);
    margin: 0px auto;
}

.input-div .form-control:focus {
    outline: 0;
    box-shadow: none;
    background: #f0f2f5;
}

.fb_box h4 {
    padding-bottom: 4px;
    cursor: pointer;
    margin: 0px;
}

    .fb_box h4:hover,
    .fb_box b:hover {
        text-decoration: underline;
    }

.icon-back {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}

    .icon-back:hover {
        background: #f2f2f2;
    }


.dp-img img {
    width: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.fb_box p {
    font-size: 12px;
    color: #898a8d;
    margin: 0px;
}

.dp-img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.parent-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    padding-bottom: 10px;
    padding-left: 8px;
    padding-right: 15px;
}

.cover {
    display: flex;
}

    .cover img {
        width: 100%;
        border-radius: none;
        cursor: pointer;
    }

.react {
    padding: 10px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .react p {
        font-size: 15px;
        cursor: pointer;
        margin: 0px;
    }

        .react p:hover {
            text-decoration: underline;
        }

.bottom-icon {
    padding: 6px 100px;
    display: flex;
    justify-content: space-between;
}

    .bottom-icon p {
        font-size: 14px;
        font-weight: bold;
        color: #6e757d;
        margin: 0px;
    }

.make-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.input-div input {
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
}

.comment-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px 0px;
    gap: 5px;
}

.input-div {
    background: #f0f2f5;
    width: 600px;
    padding: 0px 10px;
    height: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    border-radius: 100px;
}

.comment-sec img {
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.comment-sec svg:hover {
    cursor: pointer;
}

.fb_box hr {
    border: 1px solid #e4e6eb;
}

.make-horizontal {
    width: 150px;
    height: 100%;
    border-radius: 3px;
    cursor: pointer;
}

    .make-horizontal:hover {
        background: #f2f2f2;
    }

/* please update below css ends */
/*spinner css start*/

.spinner-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    background: rgba(255,255,255, .8);
    position: fixed;
    padding: 0;
    margin: 0;
    left: auto;
    right: auto;
    z-index: 999999999;
}

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    position: relative;
    animation: rotate 1s linear infinite
}

    .loader::before, .loader::after {
        content: "";
        box-sizing: border-box;
        position: absolute;
        inset: 0px;
        border-radius: 50%;
        border: 5px solid #FFF;
        animation: prixClipFix 2s linear infinite;
    }

    .loader::after {
        inset: 8px;
        transform: rotate3d(90, 90, 0, 180deg );
        border-color: #FF3D00;
    }

@keyframes rotate {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%,0 0,0 0,0 0,0 0,0 0)
    }

    50% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 0,100% 0,100% 0)
    }

    75%, 100% {
        clip-path: polygon(50% 50%,0 0,100% 0,100% 100%,100% 100%,100% 100%)
    }
}
/*spinner css end*/

/* File upload Styles*/
ul.thumb-Images {
    padding-inline-start: 0px;
}

    ul.thumb-Images li {
        float: left;
        display: inline-block;
        vertical-align: top;
    }

.thumb-container {
    padding: 10px;
    margin: 5px;
    height: 130px;
    width: 100px;
    background-color: #eaeaea;
    font-family: inherit;
    border-radius: 5px;
    box-shadow: 3px 3px 5px 1px #888888;
    position: relative;
}

    .thumb-container .thumb-container-header {
        text-align: center;
        margin-bottom: 10px;
        margin-top: 5px;
        font-family: Calibri, Arial, Helvetica, sans-serif;
        font-size: 12px;
        font-weight: bold;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
    }

    .thumb-container .thumb-container-body .thumb-container-image {
        border-style: solid;
        border-color: white;
        border-radius: 5px;
        width: 205px;
        max-height: 140px;
        border-width: 5px;
    }

    .thumb-container .thumb-container-footer {
        padding: 7px 0 7px 7px;
        font-family: Calibri, Arial, Helvetica, sans-serif;
    }

        .thumb-container .thumb-container-footer .thumb-file-size {
            float: left;
            font-size: 12px;
            margin-top: 5px;
        }

        .thumb-container .thumb-container-footer .thumb-file-button {
            background-color: white;
            border-radius: 12px;
            width: 24px;
            height: 24px;
            box-shadow: 1px 1px 1px 1px #888888;
            float: right;
            margin-left: 5px;
        }

            .thumb-container .thumb-container-footer .thumb-file-button .thumb-button-delete {
                text-align: center;
                margin-top: 3px;
                font-weight: bold;
                cursor: pointer;
                color: red;
            }

            .thumb-container .thumb-container-footer .thumb-file-button .thumb-button-download {
                text-align: center;
                margin-top: 3px;
                font-weight: bold;
                cursor: pointer;
                color: cornflowerblue;
            }
            .close-btn{
                position: absolute;
                top: 1px;
                right: 5px;
            }


.fs-25 {
    font-size: 25px !important;
}

.fs-20 {
    font-size: 20px !important;
}
.fs-16 {
    font-size: 16px;
    line-height: 1.5em;
}

.f-12 {
    font-size: 12px;
}

.handCursor{
    cursor:pointer !important;
}

.ms-6 {
    margin-left: 3rem !important;
}

.search {
    position: absolute;
    top: 6px;
    left: 4px;
}

.search-2{
    position: absolute;
    top: 2px;
    left: 4px;
}

.fs-18 {
    font-size: 18px;
}

.form-control-tagify {
    border: 1px solid #DADADA;
    border-radius: 2px;
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn.disabled, .btn:disabled, fieldset:disabled .btn {
    background-color: #D91A1A;
    border-color: #D91A1A;
    color: white;
    min-width: 100px;
    outline: none;
    pointer-events: auto;
}