/*@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/


* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
}

a {
    color: #141313;
    cursor: pointer;
    text-decoration: none;
}

    a:hover {
        color: #B00000;
    }

.wrappper {
    background: #f8f8f8;
}

.loginBg {
    margin: 0;
    padding: 0;
    background-image: url('../images/loginBg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    position: relative;
}

.loginContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    box-shadow: 0 16px 40px #00000066;
    border-radius: 30px;
}

.loginLogo img {
    max-width: 230px;
}

.loginSection {
    background: #fff;
    box-shadow: 0 16px 40px #00000066;
    border-radius: 30px;
    padding: 50px 30px;
    min-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 5px solid #ff00000d;
}

.loginMsg span:nth-child(1) {
    font-size: 30px;
    font-weight: bold;
    color: #000;
}

.loginMsg span:nth-child(2) {
    font-size: 30px;
    font-weight: bold;
    color: #B00000;
}

.loginSection > p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.loginInput {
    color: #223E66;
    background: #fff;
    font-weight: 500;
    border: 1px solid #e9e9e9;
    border-radius: 7px;
}

    .loginInput.form-control:focus {
        box-shadow: 0 8px 24px #00489029;
    }

label.labelLogin {
    color: #141414;
    /*font-weight: 700;*/
    font-size: 14px;
    height: 51px;
    /*position: relative;
    padding: 18px;*/
}

.eye {
    cursor: pointer;
}

.loginEye .fa-eye, .loginEye .fa-eye-slash {
    position: absolute;
    top: 20px;
    right: 1rem;
    color: #000;
    background-color: #fff;
}

.btn_Login {
    width: 100%;
    height: 50px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
    background: #B00000;
    border-radius: 7px;
    border: 1px solid #B00000;
}

.loginOptions {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .loginOptions .optText {
        color: #141313;
        font-weight: 500;
        text-decoration: none;
        font-size: .85rem;
    }

.btn_Login:hover {
    background: #830000;
}

.loginOptions a:hover {
    color: #B00000;
}

.loginBtmDetails p {
    position: relative;
    color: #141313;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    font-size: .85rem;
}

    .loginBtmDetails p::before {
        content: '';
        background: #D46666;
        display: inline-block;
        width: 60px;
        height: 1px;
        position: absolute;
        top: 0.7rem;
        left: 7rem;
    }

    .loginBtmDetails p::after {
        content: '';
        background: #D46666;
        display: inline-block;
        width: 60px;
        height: 1px;
        position: absolute;
        top: 0.7rem;
        right: 7rem;
    }

.loginOptionBtn button {
    width: 200px;
    height: 54px;
    background: #f7f7f7;
    border: 0;
    border-radius: 7px;
}

    .loginOptionBtn button:hover {
        background: #cde7ff;
    }

.loginOptionBtn {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-bottom: 3rem;
}

    .loginOptionBtn span {
        font-weight: 500;
        margin-left: 1rem;
    }

.loginBtmDetails {
    width: 100%;
    margin-top: 1rem;
}

.signUpDetails {
    color: #141313;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
    font-size: .85rem;
}

    .signUpDetails a {
        color: #B00000;
        font-weight: 500;
        margin-left: 0.5rem;
        text-decoration: underline;
        font-size: 1rem;
    }

.loginOptions input[type="checkbox"] {
    padding: 0;
}

.loginOptions .form-check-input:checked {
    background-color: #b00000;
    border-color: #b00000;
}

.loginOptions .form-check-input:focus {
    outline: none;
    box-shadow: none;
}




/*Dashboard*/

.leftsidebar {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    position: fixed;
    top: 90px;
    bottom: 0;
    width: 280px;
    background: #fff;
    border-radius: 0;
    height: calc(100vh - 140px);
}

    .leftsidebar.close2 {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }

nav.sidebar {
    height: 100%;
    min-height: 100vh;
    border-right: none;
    border-left: none;
    background-size: cover;
    background-position: center;
}

.small-logo {
    text-align: center;
    width: 200px;
    padding: 0.75rem 0;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.menu-navigation {
    width: 100%;
    padding: 50px 0 0;
    height: calc(100vh - 98px);
    overflow: auto;
}

    ul.menu-navigation li {
        padding: 5px 0;
        text-align: left;
        list-style: none;
    }

        ul.menu-navigation li a.linkitem-1 {
            padding: 1rem 1.5rem;
            display: inline-block;
            width: 100%;
            display: flex;
            position: relative;
            align-items: center;
            font-weight: 500;
            color: #141313;
            text-decoration: none;
            border-radius: 0 10px 10px 0;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

            ul.menu-navigation li a.linkitem-1.dropdown-toggle::after {
                position: absolute;
                right: 15px;
                content: '\f107';
                font-family: 'Font Awesome 5 Free';
                font-weight: bold;
                border: 0;
                margin-left: 0;
                width: auto;
                height: auto;
                font-size: 20px;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
                transform: rotate(-90deg);
            }

        ul.menu-navigation li ul.submenu.collapse {
            display: block;
            height: 0;
            overflow: scroll;
            opacity: 0
        }

        ul.menu-navigation li ul.submenu {
            padding: 0 10px;
            opacity: 1;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

            ul.menu-navigation li ul.submenu.collapse.show {
                display: block;
                overflow: visible;
                opacity: 1;
                height: auto;
                max-height: 250px;
                margin: 10px 0;
                overflow: auto;
            }

    ul.menu-navigation::-webkit-scrollbar {
        width: 4px;
    }

    ul.menu-navigation::-webkit-scrollbar-track {
        background: #ECE7E7;
        border-radius: 20px;
    }

    ul.menu-navigation::-webkit-scrollbar-thumb {
        background: #A7A7A7;
        transition: all .3s ease;
        border-radius: 20px;
    }

        ul.menu-navigation::-webkit-scrollbar-thumb:hover {
            background: #4B4848;
        }

    ul.menu-navigation li ul.submenu::-webkit-scrollbar {
        width: 4px;
    }

    /* Track */
    ul.menu-navigation li ul.submenu::-webkit-scrollbar-track {
        background: #ECE7E7;
        border-radius: 20px;
    }

    /* Handle */
    ul.menu-navigation li ul.submenu::-webkit-scrollbar-thumb {
        background: #A7A7A7;
        transition: all .3s ease;
        border-radius: 20px;
    }

        /* Handle on hover */
        ul.menu-navigation li ul.submenu::-webkit-scrollbar-thumb:hover {
            background: #4B4848;
        }

    ul.menu-navigation li ul.submenu li {
        border: 0;
    }

        ul.menu-navigation li ul.submenu li a {
            color: #000;
            display: inline-block;
            width: 100%;
            padding: 13px 10px 13px 30px;
            text-decoration: none;
            position: relative;
        }

            ul.menu-navigation li ul.submenu li a:before {
                position: absolute;
                left: 10px;
                content: '\f101';
                font-family: 'Font Awesome 5 Free';
                font-weight: bold;
                color: #A5A4AE;
            }

    ul.menu-navigation li a.linkitem-1.dropdown-toggle[aria-expanded=true]::after {
        transform: rotate(0deg);
    }

    ul.menu-navigation li a.linkitem-1 .nav-icon {
        width: 40px;
        font-size: 18px;
        justify-content: flex-start;
        display: flex;
    }

        ul.menu-navigation li a.linkitem-1 .nav-icon svg {
            height: 18px;
            width: 20px;
        }

            ul.menu-navigation li a.linkitem-1 .nav-icon svg path {
                fill: #000;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
            }

            ul.menu-navigation li a.linkitem-1 .nav-icon svg.stroke g {
                stroke: #000;
                -webkit-transition: all .3s ease;
                -moz-transition: all .3s ease;
                -ms-transition: all .3s ease;
                -o-transition: all .3s ease;
                transition: all .3s ease;
            }


    ul.menu-navigation li a.linkitem-1:hover svg.circletext g > circle, ul.menu-navigation li a.linkitem-1:hover svg.circletext g > circle, ul.menu-navigation li a.linkitem-1.active svg.circletextg > circle {
        fill: #ffffff;
    }

    ul.menu-navigation li a.linkitem-1:hover svg.circletext text, ul.menu-navigation li a.linkitem-1:hover svg.circletext text, ul.menu-navigation li a.linkitem-1.active svg.circletext text {
        fill: #000;
    }

    ul.menu-navigation li a.linkitem-1:hover, ul.menu-navigation li a.linkitem-1:focus, ul.menu-navigation li a.linkitem-1.active {
        color: #141313;
        background-color: #F9F9F9;
        border-radius: 0;
    }

        ul.menu-navigation li a.linkitem-1:hover svg.stroke g, ul.menu-navigation li a.linkitem-1:focus svg.stroke g, ul.menu-navigation li a.linkitem-1.active svg.stroke g {
            stroke: #B00000;
        }

.right-sec {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    width: calc(100% - 280px);
    position: relative;
    margin-left: 280px;
    padding: 0 0px;
}

    .right-sec.open1 {
        width: 100%;
        margin-left: 0;
    }

.header-inner {
    display: flex;
    padding: 0 20px;
    align-items: center;
    background-color: #ffffff;
    border-bottom: 1px solid #E7E8F2;
    justify-content: space-between;
    border-radius: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
}

.header1 {
    display: flex;
    align-items: center;
}

.humbargur-button {
    display: inline-block;
    cursor: pointer;
    margin-right: 0;
    margin-left: 70px;
}

.bar1, .bar2, .bar3 {
    height: 4px;
    border-radius: 10px;
    background-color: #b00000;
    margin: 5px 0;
    transition: 0.4s;
}

.humbargur-button .bar2 {
    width: 35px;
}

.humbargur-button .bar1 {
    width: 15px;
}

.humbargur-button .bar3 {
    width: 25px;
}

.change-2 .bar1 {
    transform: rotate(-45deg) translate(-6px, 6px);
    width: 35px;
}

.change-2 .bar2 {
    opacity: 0;
}

.change-2 .bar3 {
    transform: rotate(45deg) translate(-7px, -7px);
    width: 35px;
}

.header-inner .dropdown-toggle::after {
    border: none;
}

.notification {
    position: relative;
}

.badge-1 {
    position: absolute;
    top: 2px;
    right: -3px;
    border-radius: 50%;
    font-size: 11px;
    width: 21px;
    height: 21px;
    text-align: center;
    line-height: 23px;
    color: #ffffff;
    background: #f15858;
}

.nav-1 {
    padding: 0;
    justify-content: space-between;
    width: 100%;
}

    .nav-1 .navbar-nav {
        align-items: center;
        background-color: #ffffff;
        z-index: 2;
    }

        .nav-1 .navbar-nav .nav-item {
            padding: 0 1rem;
        }

            .nav-1 .navbar-nav .nav-item:last-child {
                padding-right: 0;
            }

        .nav-1 .navbar-nav .dropdown-menu {
            right: 0;
            left: inherit;
            width: 200px;
        }

        .nav-1 .navbar-nav .nav-item:not(:last-child) {
            border-right: 1px solid #E7E8F2;
        }

        .nav-1 .navbar-nav .nav-item .nav-link .dProfile {
            color: #141313;
            font-weight: 500;
            padding-left: 0.75rem;
        }

        .nav-1 .navbar-nav .nav-item .nav-link.notification {
            font-size: 22px;
        }

        .nav-1 .navbar-nav li.nav-item.dropdown {
            padding: 0 0px 0px 20px;
        }

input.search-bar {
    padding: 8px 15px;
    width: 100%;
    transform: translateX(100%);
    transition: 0.5s all;
    opacity: 0;
    border-radius: 50px;
}

.search-sec {
    margin-left: auto;
    width: 22%;
    z-index: 1;
    display: none;
}

    .search-sec.search-active input {
        transform: none;
        transition: 0.5s all;
        opacity: 1;
    }


.main-content {
    padding: 10px 30px 2px;
    height: calc(100vh - 170px);
    background: #F9F9F9;
    overflow: auto;
    margin-top: 96px;
}


.welcometext {
    padding: 2rem 0;
}

    .welcometext p {
        font-size: 18px;
        margin-bottom: 0;
        font-weight: 500;
        text-transform: capitalize;
    }

.carditemdetail {
    background: #ffffff;
    box-shadow: 0 3px 40px rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 1.5rem;
}

.cardicon_progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

    .cardicon_progress svg {
        height: 40px;
        width: 40px;
    }

.progressone {
    background: #fff1f1;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

    .progressone i {
        font-size: 13px;
        margin-right: 9px;
    }

.carditemdetail h3 {
    font-size: 1rem;
    color: #141313;
}

.carditemdetail h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0;
}

.cardsecton h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.carditem2 {
    background: #ffffff;
    box-shadow: 0 3px 40px rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 30px 50px;
    position: relative;
}

.icon1 {
    position: absolute;
    right: 50px;
    height: 40px;
    width: 40px;
}

.carditem2 h3 {
    font-size: 18px;
    color: #797979;
    margin: 0 0 8px;
}

.carditem2 h2 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 0;
}

.carditem2 p {
    margin-top: 20px;
    margin-bottom: 0;
}

    .carditem2 p span {
        color: #58AC79;
    }

.cardnotification {
    background: #ffffff;
    box-shadow: 0 3px 40px rgb(0 0 0 / 6%);
    border-radius: 20px;
    padding: 30px 30px;
    position: relative;
}

    .cardnotification::-webkit-scrollbar {
        width: 4px;
    }

    .cardnotification::-webkit-scrollbar-track {
        background: #ECE7E7;
        border-radius: 20px;
    }

    .cardnotification::-webkit-scrollbar-thumb {
        background: #A7A7A7;
        transition: all .3s ease;
        border-radius: 20px;
    }

        .cardnotification::-webkit-scrollbar-thumb:hover {
            background: #4B4848;
        }

    .cardnotification ul {
        padding-left: 18px;
    }

        .cardnotification ul li {
            font-size: 16px;
            color: #707070;
            padding-bottom: 20px;
        }

    .cardnotification marquee {
        height: 100%;
    }


.datatable-sec {
    margin: 25px 0px;
}

    .datatable-sec .bg-color1 {
        background-color: #fff5f5;
    }

    .datatable-sec .table-striped tbody tr:nth-of-type(odd) {
        background-color: #FBFBFB;
    }

    .datatable-sec table th, .datatable-sec table td {
        padding: 0.55rem 1rem;
        vertical-align: middle;
        font-size: 0.96rem;
        font-weight: 400;
    }

    .datatable-sec table td {
        border-color: #f8f8f8 !important;
    }

    .datatable-sec table thead th:first-child {
        border-radius: 20px 0 0 0;
        padding: 1rem;
    }

    .datatable-sec table thead th:last-child {
        border-radius: 0 20px 0 0;
    }

    .datatable-sec table thead th {
        white-space: nowrap;
        border-bottom: 0;
    }

    .datatable-sec table tbody tr:last-child td:first-child {
        border-radius: 0 0 0 20px;
    }

    .datatable-sec table tbody tr:last-child td:last-child {
        border-radius: 0 0 20px 0;
    }

    .datatable-sec .row:nth-child(2) > div {
        margin: 20px 0;
        overflow: auto;
    }

        .datatable-sec .row:nth-child(2) > div::-webkit-scrollbar {
            width: 4px;
            height: 4px;
        }

        .datatable-sec .row:nth-child(2) > div::-webkit-scrollbar-track {
            background: #ECE7E7;
            border-radius: 20px;
        }

        .datatable-sec .row:nth-child(2) > div::-webkit-scrollbar-thumb {
            background: #A7A7A7;
            transition: all .3s ease;
            border-radius: 20px;
        }

            .datatable-sec .row:nth-child(2) > div::-webkit-scrollbar-thumb:hover {
                background: #4B4848;
            }

    .datatable-sec table.dataTable.table-striped > tbody > tr.odd > * {
        box-shadow: inset 0 0 0 9999px #ffffff;
    }

    .datatable-sec table.dataTable.table-striped > tbody > tr.even > * {
        box-shadow: inset 0 0 0 9999px #f8f8f8;
    }


.usernameone {
    display: flex;
    align-items: center;
}

    .usernameone img {
        width: 40px;
        margin-right: 10px;
    }

.actionbtns {
    display: flex;
    column-gap: 0.5rem;
}

    .actionbtns .edit {
        color: #797979;
    }

    .actionbtns .dlt {
        color: #FF0000;
        margin-left: 10px;
    }

.pagination .page-item.active .page-link, .pagination .page-item .page-link:hover {
    z-index: 3;
    color: #fff;
    background: #b00000;
    border-color: #b00000;
}

.pagination .page-item .page-link:focus {
    box-shadow: none !important;
}

footer {
    background-color: #fff7f7;
    padding: 15px 15px;
}

    footer p {
        text-align: center;
        margin: 0;
    }

.pageheading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .pageheading h2 {
        font-size: 35px;
        font-weight: 700;
        margin-bottom: 0;
    }

.modal-backdrop.show {
    opacity: .8;
}

.modal-content2 .modal-header, .modal-content2 .modal-footer {
    border: none;
}

.modal-content2 .modal-title {
    color: #ffffff;
}

.modal-content2 .btn-close {
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
    box-shadow: none !important;
}

.frmgrp1 label {
    color: #ffffff;
    margin-bottom: 15px;
}

.tablemiddle table tbody tr td {
    vertical-align: middle;
}

.thumbimg img {
    border-radius: 10px;
    height: 65px;
    width: 90px;
    object-fit: cover;
}

.totalusers svg path {
    fill: #ff7272;
}

.welcometext h2 span {
    color: #e51d1d;
}

ul.menu-navigation li a.linkitem-1:hover .nav-icon {
    color: #000;
}

ul.menu-navigation li a.linkitem-1.active::before, ul.menu-navigation li a.linkitem-1:hover::before {
    content: '';
    width: 5px;
    height: 100%;
    background: #B00000;
    position: absolute;
    left: 0;
}

ul.menu-navigation li a.linkitem-1:hover .nav-icon svg path, ul.menu-navigation li a.linkitem-1.active .nav-icon svg path {
    fill: #B00000;
}

.notification .faBell {
    color: #141313;
}

table.dataTable thead > tr > th {
    font-weight: 500;
}

.pagination .page-link {
    color: #141313;
}

.nav-link.notification.search-toggle {
    color: #141313;
}

.cardnotification .apexcharts-toolbar {
    display: none;
}

.cardTitle {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

    .cardTitle .dhcBtn, .modal-footer .dhcBtn {
        color: #fff;
        background: #B00000;
        border-color: #B00000;
        font-weight: 500;
        font-size: 1rem;
    }

        .cardTitle .dhcBtn:hover, .modal-footer .dhcBtn:hover {
            color: #fff;
            background: #980f0f;
            border-color: #980f0f;
            font-weight: 500;
            font-size: 1rem;
        }

#navbarDropdownMenuLink {
    color: #b00000;
    font-size: 18px;
    font-weight: 400;
}

.addUserStatus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.modal.fade.show {
    background: #7e797933;
}

#calendar {
    max-width: 100%;
    margin-top: 2rem;
}

.fc .fc-button {
    text-transform: capitalize;
}

.fc-event-main {
    background: #B00000;
}

.fc-daygrid-event-dot {
    border: calc(var(--fc-daygrid-event-dot-width)/2) solid #b00000;
}

.search input[type="search"] {
    background-color: #fff5f5;
    color: #7f839a;
    font-size: 16px;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    height: 45px;
    border: 1px solid #ffeaea;
    margin-left: 2rem;
}

.search {
    position: relative;
}

.inputSearchIcon .btn {
    position: absolute;
    right: -28px;
    top: 5px;
    color: #b00000;
}

    .inputSearchIcon .btn:hover {
        color: #b00000;
    }

.search button.btn:active {
    border: transparent;
}

.search input:focus {
    box-shadow: unset;
}

.wrappper .headerNotification {
    position: relative;
}

.headerNotification .notificationDropDown {
    position: absolute;
    width: 350px;
    transform: translate(-44%, 21px);
    display: flex;
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 3px 40px rgba(0,0,0,0.07);
    border-radius: 20px;
    padding: 0;
    border-color: transparent;
}

ul.notificationDropDown.show {
    list-style-type: unset;
}

.flexbox {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slimScrollDiv {
    position: relative;
    overflow: hidden;
    width: auto;
    height: 220px;
}

    .slimScrollDiv ul {
        overflow: hidden;
        width: auto;
        height: 250px;
    }

        .slimScrollDiv ul.menu.sm-scrol {
            list-style-type: unset;
            padding: 0;
        }

        .slimScrollDiv ul li a i {
            margin-right: 1rem;
        }

        .slimScrollDiv ul li {
            border-top: 1px solid #d2d2d2;
            padding: 16px 1.5rem;
        }

.notificationDropDown .footer {
    display: flex;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem;
}

    .notificationDropDown .footer a {
        color: #707070;
    }

.header div {
    padding: 0.5rem;
}

.notificationDropDown.show .header {
    background: #f3f3f3;
    border-radius: 20px 20px 0 0;
}





/* --------------------------Page Not Found-------------------------- */

.main-error-page {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-error-page {
    min-height: 600px;
    margin: 0 auto;
    width: auto;
    max-width: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.error-title {
    font-size: 38px;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: center;
    color: #4b4b62;
    margin-bottom: 16px;
}

.error-subtitle {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.31;
    letter-spacing: normal;
    text-align: center;
    color: #4b4b62;
    margin-bottom: 24px;
    text-transform: capitalize;
}



.pao-atras {
    animation: leftright 1s alternate infinite;
    transform-origin: center;
}

.pao-frente {
    animation: leftright 1s 0.3s alternate infinite;
    transform-origin: center;
}

.olho-esq {
    animation: sad 2s alternate infinite;
    transform-origin: center;
}

.olho-dir {
    animation: sad 2s alternate infinite;
    transform-origin: center;
}

.boca {
    animation: sad 2s alternate infinite;
    transform-origin: center;
}

.raios {
    -webkit-animation: flicker-4 4s linear infinite both;
    -moz-animation: flicker-4 4s linear infinite both;
    -ms-animation: flicker-4 4s linear infinite both;
    -o-animation: flicker-4 4s linear infinite both;
    animation: flicker-4 4s linear infinite both;
}

.tomada {
    -webkit-animation: vibrate-1 3s linear infinite both;
    -moz-animation: vibrate-1 3s linear infinite both;
    -ms-animation: vibrate-1 3s linear infinite both;
    -o-animation: vibrate-1 3s linear infinite both;
    animation: vibrate-1 3s linear infinite both;
}

.fio-500 {
    -webkit-animation: vibrate-1 3s linear infinite both;
    -moz-animation: vibrate-1 3s linear infinite both;
    -ms-animation: vibrate-1 3s linear infinite both;
    -o-animation: vibrate-1 3s linear infinite both;
    animation: vibrate-1 3s linear infinite both;
}

.fio {
    -webkit-animation: vibrate-1 3s linear infinite both;
    -moz-animation: vibrate-1 3s linear infinite both;
    -ms-animation: vibrate-1 3s linear infinite both;
    -o-animation: vibrate-1 3s linear infinite both;
    animation: vibrate-1 3s linear infinite both;
}

@keyframes scales {
    from {
        transform: scale(0.98);
    }

    to {
        transform: scale(1);
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2020-4-1 14:58:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation flicker-4
 * ----------------------------------------
 */

@-webkit-keyframes flicker-4 {
    0%, 100% {
        opacity: 1;
    }

    31.98% {
        opacity: 1;
    }

    32% {
        opacity: 0;
    }

    32.8% {
        opacity: 0;
    }

    32.82% {
        opacity: 1;
    }

    34.98% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    35.7% {
        opacity: 0;
    }

    35.72% {
        opacity: 1;
    }

    36.98% {
        opacity: 1;
    }

    37% {
        opacity: 0;
    }

    37.6% {
        opacity: 0;
    }

    37.62% {
        opacity: 1;
    }

    67.98% {
        opacity: 1;
    }

    68% {
        opacity: 0;
    }

    68.4% {
        opacity: 0;
    }

    68.42% {
        opacity: 1;
    }

    95.98% {
        opacity: 1;
    }

    96% {
        opacity: 0;
    }

    96.7% {
        opacity: 0;
    }

    96.72% {
        opacity: 1;
    }

    98.98% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    99.6% {
        opacity: 0;
    }

    99.62% {
        opacity: 1;
    }
}

@keyframes flicker-4 {
    0%, 100% {
        opacity: 1;
    }

    31.98% {
        opacity: 1;
    }

    32% {
        opacity: 0;
    }

    32.8% {
        opacity: 0;
    }

    32.82% {
        opacity: 1;
    }

    34.98% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    35.7% {
        opacity: 0;
    }

    35.72% {
        opacity: 1;
    }

    36.98% {
        opacity: 1;
    }

    37% {
        opacity: 0;
    }

    37.6% {
        opacity: 0;
    }

    37.62% {
        opacity: 1;
    }

    67.98% {
        opacity: 1;
    }

    68% {
        opacity: 0;
    }

    68.4% {
        opacity: 0;
    }

    68.42% {
        opacity: 1;
    }

    95.98% {
        opacity: 1;
    }

    96% {
        opacity: 0;
    }

    96.7% {
        opacity: 0;
    }

    96.72% {
        opacity: 1;
    }

    98.98% {
        opacity: 1;
    }

    99% {
        opacity: 0;
    }

    99.6% {
        opacity: 0;
    }

    99.62% {
        opacity: 1;
    }
}


/* ----------------------------------------------
 * Generated by Animista on 2020-4-1 15:17:57
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation vibrate-1
 * ----------------------------------------
 */
@-webkit-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}


@keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}



@keyframes sad {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }

    100% {
        transform: rotateX(10deg) rotateY(5deg);
    }
}

@keyframes leftright {

    0% {
        transform: rotateZ( 0deg)
    }

    100% {
        transform: rotateZ( -15deg)
    }
}

.erwrapper {
    padding: 0;
}

    .erwrapper .landing-page {
        max-width: 100%;
        height: 100vh;
        margin: 0;
        box-shadow: 0px 0px 8px 1px #ccc;
        background: #fafafa;
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .erwrapper svg {
        width: 100%;
        max-height: 225px;
        height: auto;
        margin: 0 0 15px;
    }

    .erwrapper h1 {
        font-size: 48px;
        margin: 2rem auto 0;
    }

    .erwrapper p {
        font-size: 18px;
        width: 35%;
        margin: 16px auto 24px;
        text-align: center;
    }

    .erwrapper button {
        border-radius: 50px;
        padding: 8px 24px;
        font-size: 16px;
        cursor: pointer;
        background: #b00000;
        color: #fff;
        border: none;
        box-shadow: 0 4px 8px 0 #ccc;
    }

.underMt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .underMt h2 {
        text-transform: capitalize;
        margin-top: 2rem;
        color: #b00000;
    }

    .underMt p {
        font-size: 1.5rem;
        text-align: center;
    }

#changePassword {
    width: 30%;
}

.form-floating.w-100.mb-4 {
    margin: auto;
}

.changePassword {
    width: 50%;
    margin: auto;
    margin-top: 2rem;
}

.textArea {
    border: 1px solid #ced4da;
    border-radius: 0.357rem;
}

.userPOP .form-control {
    padding: 10px !important;
}

.myMod {
    font-size: 22px;
    font-weight: 600;
}

ul.menu-navigation li a.linkitem-1:hover i {
    color: #B00000;
}

ul.menu-navigation li a.linkitem-1.in-active i {
    color: #B00000;
}

.calderCove {
    margin: 1.5rem 0rem;
}

/*Give the padding to the #btnProviderlist */

select.js-states-padding {
    padding: 11px 1rem;
}

.appoint {
    text-align: end;
}

    .appoint button {
        color: #fff;
        font-size: 1.3rem;
        padding: 0.5rem 1rem;
        font-weight: 500;
        background: #B00000;
        border-radius: 7px;
        border: 1px solid #B00000;
    }

        .appoint button:hover {
            background: #830000;
        }

.appointTitle h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
}

.calderCove .fc-left h2 {
    font-size: 24px;
}

label.labelStart:after {
    content: "\2a";
    color: red;
    padding-left: 3px;
    font-size: 20px;
}

.form-floatingA .labelLogin {
    border: 0;
    font-weight: 300;
    font-size: 16px;
    color: red;
}

label.labelLogin.labelStart {
    position: relative;
}

button.submit-btn {
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}

.appointment-hed h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.appointment-area {
    margin-top: 20px;
}

.error-page {
    background-color: #e46050 !important;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.error-page-inner h1 {
    margin-top: 60px;
    color: #fff;
    text-shadow: 0 4px 0 rgba(0,0,0,.1);
    font-size: 120px;
    font-weight: 700;
    line-height: 140px;
}

.error-page-inner h2 {
    font-size: 50px;
    margin-bottom: 60px;
    color: rgba(0,0,0,.5);
    font-weight: 600;
}

.error-page-inner {
    text-align: center;
}

.error-btn {
    font-size: 20px;
    margin-bottom: 60px;
    color: rgba(0,0,0,.5);
    font-weight: 600;
}

.logo-sec {
    padding: 15px 0px;
    text-align: center;
}

    .logo-sec img {
        height: 70px;
    }

a.btn.btn-danger.error-btn {
    background: #e46050;
    padding: 5px 5px;
    color: white;
    font-size: 15px;
    border-radius: 6px;
}

/*.notfound-page {
    height: 100vh;
    display: flex;
    justify-content: center;
    background-color: #f4ab43 !important;
}*/



/*for searchable dropdown*/




.select2-container--default .select2-selection--single .select2-selection__arrow {
    line-height: 60px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 50px !important;
    margin-left: 5px !important;
}



/* CSS 5 Oct 2023 */
span.select2-selection.select2-selection--single {
    height: calc(3.5rem + 2px) !important;
    border-radius: 7px;
    padding-top: 0.625rem;
}

.drop-label {
    padding-top: 12px !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 18px !important;
    right: 6px !important;
}

span.select2.select2-container.select2-container--default {
    width: 100% !important;
}

.appontment-select span.select2-selection.select2-selection--single {
    height: calc(3.5rem + -6px) !important;
    padding-top: 0;
}

.appontment-select .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 11px !important;
}

.appontment-select span.select2.select2-container.select2-container--default {
    width: 210px !important;
}


/*ui fix 25/01/24*/
.spanrequired-top {
    top: 2px !important;
}
.spanrequired-top1 {
    top: 2px !important;
}

/*09/02/2024*/
.hopkins-select select {
    padding: 15px;
    border: 1px solid #9b9b9b;
    border-radius: 6px;
    margin-right: 15px;
}


/*30/03/2024*/
.header-dropdown-bold .dProfile {
    font-size: 20px;
    font-weight: 700 !important;
    margin-right: 10px;
}
.customFlexPayment{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.max-width-input-custom-220{
    width:210px;
}
.appoinmentflexCustom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.CustomFlexEnd{
    display:flex;
    justify-content:space-between;
    align-items:start;
}
@media(max-width:1440px) {
    .customFlexPayment{
        flex-direction:column;
        align-items:end;
        margin-bottom:20px;
    }
    .appoinmentflexCustom {
        flex-direction: column;
        align-items: end;
        margin-bottom: 20px;
    }
}


/*02/04/2024*/
.toast-success {
    background-color: green !important;
}
.toast-error {
    background-color: red !important;
}

.toast-warning {
    background-color: #FFA500 !important;
}




/*  new content css    */


@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0px;
    box-sizing: border-box
}

:root {
    --hover: #FFE1E1;
    --white: #fff;
    --h4: #202020;
    --td-text: #2F2F2F;
    --discharge: #FF6161;
    --admit: #03A900;
}

body {
    font-family: 'Poppins', sans-serif;
}

h4 {
    color: #202020;
    font-weight: 500;
}

.sidebar .text {
    display: none;
    transition: all 0.5s;
}

.sidebar {
    width: 100px !important;
    transition: all 0.5s;
}

.main .navbars.active {
}

.top-bar {
    background: var(--white);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
}

    .top-bar .right-section {
    }

.main .navbars {
    width: 220px;
    height: calc(100vh - 100px);
    padding: 25px 0px;
    position: absolute;
    top: 100px;
}

    .main .navbars ul li {
        padding: 10px 0px;
    }

        .main .navbars ul li a {
            padding: 15px 30px;
            font-weight: 500;
        }

            .main .navbars ul li a:hover {
                background-color: var(--hover);
                border-left: 5px solid #FF0000;
            }

.navbars ul .content {
    display: flex;
    align-items: center;
}

.navbars .content .icons {
    margin-right: 20px;
}

.actives {
    background-color: var(--hover);
    border-left: 5px solid #FF0000;
}

/*
.main-content {
    width: calc(100% - 220px);
    margin-left: 220px;
    transition: all 0.5s;
    padding: 20px 10px;
}
*/

.show .main-content {
    width: calc(100% - 100px);
    margin-left: 100px;
    transition: all 0.5s;
}

.main-content .head-bar .card {
    padding: 20px;
    height: 100%;
}

.head-bar .right-side .icons {
    padding: 20px 25px;
    background-color: var(--hover);
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    max-width:75px;
}

.main-content .head-bar .card .icons.dark-blue {
    background-color: #BBD2F4;
    padding: 24px 19px;
}

.main-content .head-bar .card .icons.light-blue {
    background-color: #C5E1EB;
    padding: 23px;
}

.main-content .head-bar .card .icons.green {
    background-color: #C8FFC7;
    padding: 20px;
}

.main-content .graphs-section .card {
    padding: 20px;
    height: 100%;
}

.graphs-section .card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .graphs-section .card-title a {
        background-color: var(--hover);
        padding: 10px 14px;
    }

        .graphs-section .card-title a span {
            margin-left: 10px;
        }

.graphs-section .charts svg {
    width: 100% !important;
}

.graphs-section .card-graph-options .nav-item:nth-child(1) .round {
    background: #147AD6;
    padding: 2px 13px;
    margin-right: 10px;
}

.graphs-section .card-graph-options .nav-item:nth-child(2) .round {
    background: #79D2DE;
    padding: 2px 13px;
    margin-right: 10px;
}

.graphs-section .card-graph-options .nav-item:nth-child(3) .round {
    background: #EC6666;
    padding: 2px 13px;
    margin-right: 10px;
}

tspan {
    font-size: 14px;
}

.main-content .detailed-section .card {
    padding: 20px;
}

.detailed-section table#myTable {
    width: 100%;
    border-color: #fff;
}

table#myTable thead th {
    background-color: #212121;
    color: var(--white);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
}

table#myTable tbody td {
    padding: 10px 10px 10px 20px;
    background-color: #E2E2E2;
    color: var(--td-text);
    font-weight: 500;
    /* min-width: 150px; */
}

.detailed-section a {
    color: #147AD6;
    text-decoration: none;
    font-weight: 500;
}

.detailed-section .search-section {
    padding: 20px 0px;
}

    .detailed-section .search-section input {
        width: 100%;
    }

.detailed-section .btn {
}

.detailed-section .search-section a {
    background-color: var(--hover);
    padding: 10px 14px;
    color: #202020;
}

.detailed-section .search-section .input {
    width: 100%;
    max-width: 60%;
}

.detailed-section .report-list {
    padding: 10px;
    border-radius: 5px;
    background: var(--white);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
    margin: 10px 0px;
}

.report-list .image {
    border-radius: 36px;
    object-fit: cover;
    max-width: 70px;
    max-height: 70px;
}

.doctor-card {
    max-height: 350px;
    overflow-y: auto;
}

.bottom-content .total-number {
    color:red;
}
.bottom-content .total-numbers {
    color: green;
}

.bottom-content .inactive-patient{
    margin-left:20px;
}

.bottom-content{
    padding-top:20px ;
    text-align:center;
}

/*.head-bar .right-side {
    display: flex;
    justify-content: center;
    align-items: end;
    height: 100%;
}*/

.left-side .top-head {
    display:flex;
    align-items:center;

}

/*.head-bar .left-side .bottom-content {
    padding-top: 30px !important;
}*/


.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #B00000 !important;
    border:none;
    color:#fff !important;
}

div#example_length, .dt-buttons {
    margin-bottom: 15px;
}

/*10/05/2024*/
.dashboardcard{
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.cstm-table .dataTables_wrapper {
    overflow: auto;
}

#Editpdfb{
    position: unset;
}




/*Agora Css*/
video#video_track-cam-1dc94ddb {
    width: 17%;
    height: 40%;
    position: fixed;
    right: 60px;
    top: 0px;
}

header {
    width: 100%;
    padding: 15px;
    background-color: #075E54;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

    header img {
        height: 30px;
        margin-right: 10px;
    }

#controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

    #controls input, #controls button {
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    #controls button {
        background-color: #25D366;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        #controls button:hover {
            background-color: #1EBE57;
        }

#videos {
    display: none;
    /*width: 75%*/;
    width: 100%;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #004d40;
    position: relative;
    height: 800px;
    justify-content: center;
    border-radius: 5px;
    margin-top: 20px;
}

#remote_video {
    width: 100%;
    height: 100%;
    background-color: black;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

#local_video {
    width: 350px;
    height: 300px;
    position: fixed;
    right: 60px;
    top: 125px;
    z-index: 1;
    border: 2px solid white;
    border-radius: 5px;
}



#remote_video_controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    justify-content: center;
}

.control_button {
    width: 50px;
    height: 50px;
    background-color: #00796b;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

    .control_button:hover {
        background-color: #004d40;
    }

    .control_button img {
        width: 24px;
        height: 24px;
    }

#chat {
    display: none;
    width: 90%;
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50px;
    right: 10px;
    height: calc(100vh - 100px);
}

.chat_message {
    padding: 10px;
    border-bottom: 1px solid #ccc;
}

.own_message {
    background-color: #dcf8c6;
    align-self: flex-end;
}

.received_message {
    background-color: #f3f3f3;
}

#messages {
    height: calc(102% - 81px);
    overflow-y: scroll;
    padding: 10px;
}

#message_input {
    width: calc(100% - 90px);
    padding: 10px;
    border: none;
    outline: none;
}

#send_message_btn {
    padding: 10px;
    background-color: #075E54;
    border: none;
    color: white;
    cursor: pointer;
}

#toggle_chat_btn {
    background-color: dodgerblue;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

#end_call_btn {
    color: white;
    background-color: red;
}

#screen_share_btn {
    background-color: dodgerblue;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
}

.sso-hidden {
    display: block;
}

.banner {
    padding: 0;
    background-color: #52575c;
    color: white;
}

.banner-text {
    padding: 8px 20px;
    margin: 0;
}


#join-form {
    margin-top: 10px;
}

.tips {
    font-size: 12px;
    margin-bottom: 2px;
    color: gray;
}

.join-info-text {
    margin-bottom: 2px;
}

.join-info-group input {
    width: 100%;
    margin-bottom: 2px;
}

.player {
    width: 480px;
    height: 320px;
}

.player-name {
    margin: 8px 0;
}

#success-alert, #success-alert-with-token {
    display: none;
}

@media (max-width: 640px) {
    .player {
        width: 320px;
        height: 240px;
    }
}

.collapse-wrapper {
    display: inline-block;
    position: relative;
}

.collapse-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999;
}


.collapse-wrapper .collapse-btn {
    padding-left: 6.5rem;
    padding-right: 6.5rem
}

@media (max-width: 640px) {
    .collapse-wrapper {
        margin-top: 10px;
    }
}

@media (max-width: 380px) {
    .collapse-wrapper .collapse-btn {
        padding-left: 4.5rem;
        padding-right: 4.5rem
    }
}

#camera-preview {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 160px;
    height: 120px;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
}



/*18/06/2024*/

.datatable-sec{
    width: 100%;
}

/*17/08/2024*/
.all-provider {
    padding: 6px 12px !important;
}






