*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box !important;
	transition: 0.5s all;
}
#loading {
    width: 100vw;
    height: 100vh;
    background: rgb(41 34 33 / 88%);
    position: fixed;
    z-index: 1000;
    display: grid;
    place-items: center;
}
/*.loader {*/
/*  width:10rem;*/
/*  height:10rem;*/
/*  position: relative;*/
/* }*/
.spin {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    border-right: 0.3rem solid #d75538;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: absolute;
}
@keyframes spin {
  from {transform: rotate(0deg);}
  to {transform: rotate(360deg);}
}
.loader h2 {
	width:10rem;
    height:10rem;
    position: absolute;
    color: #fff;
	display:flex;
    align-items: center;
    justify-content: center;
}

/*delvin ui 19-12-23 start --------------*/
        .loader {
            /*width: 20rem;*/
            /*height: 20rem;*/
            width: 200px;
            height: 200px;
            position: relative;
        }

        .loader .svg_loader {
            width: 100%;
            height: 100%;
        }

        .svg_loader #brain {
            -webkit-transform-origin: center;
            -ms-transform-origin: center;
            transform-origin: center;
            -webkit-transform: scale(0.8);
            -ms-transform: scale(0.8);
            transform: scale(0.8);
        }

        .svg_loader #anim_loader {
            -webkit-animation: logoSpin 2s infinite linear;
            animation: logoSpin 2s infinite linear;
            -webkit-transform-origin: center;
            -ms-transform-origin: center;
            transform-origin: center;
        }

        @-moz-keyframes logoSpin {
            0% {
                -moz-transform: rotate(0deg);
            }

            100% {
                -moz-transform: rotate(359deg);
            }
        }

        @-webkit-keyframes logoSpin {
            0% {
                -webkit-transform: rotate(0deg);
            }

            100% {
                -webkit-transform: rotate(359deg);
            }
        }

        @-o-keyframes logoSpin {
            0% {
                -o-transform: rotate(0deg);
            }

            100% {
                -o-transform: rotate(359deg);
            }
        }

        @-ms-keyframes logoSpin {
            0% {
                -ms-transform: rotate(0deg);
            }

            100% {
                -ms-transform: rotate(359deg);
            }
        }

        @keyframes logoSpin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(359deg);
            }
        }
/*delvin ui 19-12-23 end --------------*/


body{
	margin: 0px;
	padding: 0px;
	font-size:14px;
	font-family: 'Poppins', sans-serif;
	background:#fff;
	color:#000;	
}

.red {
    color: #ff002d;
}


.bg{
	background-image: url('../img/bg.jpg');
	background-position: center;
	background-repeat:no-repeat;
	 background-attachment: fixed;
	height:100vh;
	width:100%;
	background-size:cover;
	display:flex;
	align-items:center;
}
.far {
    font-size: 24px;
}
.login-bg {
    box-shadow: 0px 0px 7px #33b0e6;
    padding: 15px;
    border-radius: 5px;
    background: rgb(255 255 255);
}
.mybtn{
    color: #fff;
    text-decoration: none;
    text-align: center;
    background: #33b0e6;
    padding: 3px 15px;
    border-radius: 5px;
}
.login-bg .logo-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-bottom: 1px solid #34b1e6;
    margin-bottom: 15px;
}
.login-bg .logo {
    width: 100px;
    height: auto;
    border-radius: 50%;
}

.login-bg .login-btn{
	width:27%;
	height:auto;
}

.form-control{
	background-color:#fff;
	border-radius:25px;
	box-shadow:2px 2px 3px #988659;
}
/* Hide the datalist dropdown arrow in Chrome/Edge */
input[list]::-webkit-calendar-picker-indicator {
    display: none !important;
    appearance: none;
}

/* Firefox workaround */
input[type="text"]::-moz-list-datalist {
    display: none !important;
}

.form-control::before .far{
	position:relative;
	top:-20px;
}
.input-group-text {
    background-color: #fff;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    box-shadow: 2px 2px 3px #35b1e6;
    z-index: 1;
}
.btn-outline-secondary:hover {
    color: #fff;
    background-color: #35b1e6;
    border-color: #35b1e6;
}
.sidetoggle {
    background: transparent;
    border: none;
    display: none;
}
/*.collapse:not(.show) {
    display: block;
}*/
.sub_link{
    padding: 10px;
    background: #fff;
    margin-left: 5px;
}
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    border: none;
  }
.form-label {
    margin-bottom: 0;
}
.red {
    color: #c00000;
}
  .submit-btn {
    width: 282px; /* Fixed width */
}

.dropdown-menu {
    width: 282px; /* Matches the button width */
}
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #c00000;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 1;
    padding: 5px;
}
  
  .dropdown-content a {
    color: #ffe699;
    padding: 5px 13px;
    background: rgb(8 6 0 / 30%);
    text-decoration: none;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
  }
  
  .dropdown-content a:hover {background-color:#ffe699;color:#000;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: #3e8e41;}

  .dropdown-profile {
    display: none;
    position: absolute;
    background-color:#1c4b60;
    min-width: 160px;
    z-index: 1;
    padding: 5px;
    right: 0;
    box-shadow: 0px 0px 10px;
    border-radius: 5px;
}
  
  .dropdown-profile a {
    color:#fdfdfc;
    padding: 5px 13px;
    background: rgb(8 6 0 / 30%);
    text-decoration: none;
    display: block;
    border-radius: 5px;
    margin: 5px;
  }
  
  .dropdown-profile a:hover {background-color:#ffe699;color:#000;}

  .dropdown:hover .dropdown-profile {display:block;}

  .name {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #fdfdfc;
    font-weight: 700;
}
/*dashbord*/
.main{
	padding-top:112px;
	display: flex;
}
.header {
    background:#35b1e6;
    position: fixed;
    width: 100%;
    display: flex;
    z-index: 1;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
	box-shadow: 0px 5px 5px #0e5b7c;
}
.header .logo-holder{
	display:inline-block;
}
.header .logo {
    width:90px;
    height: auto;
    background: #fff;
    padding: 5px;
    border-radius: 4px;
}
.header .logo-holder .navbar-brand span {
    padding-left: 10px;
    color: #fdfdfc;
    font-weight: 700;
}
.header .navbar .header-link {
    color:#ffe699;
    padding: 5px 13px;
    background: rgb(8 6 0 / 30%);
    text-decoration: none;
    border-radius: 30px;
    margin-left: 10px;
}
.header .navbar .icon-holder {
    color:#fdfdfc;
    padding: 2px 8px;
    text-decoration: none;
    border-radius: 30px;
    margin-left: 10px;
    font-size: 135%;
    border: none;
    background: none;
}
.noti-count {
    width: 10px;
    height: 10px;
    background: #c00000;
    display: block;
    right: 5px;
    top: 0;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0px 0px 5px 3px #ffe699;
}
.input_btn1234{
    background: #fff;
    border-radius: 3px;
    box-shadow: 2px 2px 3px #35b1e6;
}
.sidebar {
    position: fixed;
    background: #35b1e6;
    width: 200px;
    height:92vh;
    overflow: auto;
}
.sidebar .navlist .mybtn {
    background: rgb(8 6 0 / 30%);
    border-radius: 0;
    transition: 0.5s all;
    margin: 5px 0px 0px 5px;
    display: block;
    padding: 5px 15px;
    text-align: center;
    color: #fdfdfc;
    text-decoration: none;
    border-bottom: 1px solid;
}
.mybtn-1 {
    background: #fff;
    border-radius: 30px 0px 0px 30px;
    transition: 0.5s all;
    margin: 5px 0px 0px 5px;
    display: block;
    padding: 5px 15px;
    text-align: center;
    color: #35b1e6;
    text-decoration: none;
}
.mybtn-1:hover{
    color:#c00000;
    text-decoration: none;
}
.sidebar .navlist .active {
    background: #fdfdfc;
    color: #000;
}
.sidebar .navlist .mybtn:hover{
    background:#fdfdfc;
    color: #000;
}
.content {
    position: static;
    width: 100%;
    height:89vh;
    overflow: auto;
    margin-left: 200px;
    padding: 15px;
    background-image: url(../img/bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}
.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: 0.25em 0.25em;
    color: #000;
    background: transparent url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%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;
    border: 0;
    border-radius: 0.25rem;
    opacity: .5;
    position: absolute;
    right: 10px;
}
.box {
    width: 100%;
}
.addbtn12{
        border: none;
        background: #35b1e6;
        padding: 5px 25px;
        margin-top: 2px;
        font-size: 18px;
        color: #fff;
        border-radius: 5px;
}
.daybox {
    display: flex;
    width: 90px;
    height: 90px;
    background: #e9ecef;
    border: 1px solid #33b0e6;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin: 5px;
    cursor: pointer;
}
.slot-btn {
    background-color: #66a304;
    border-radius: 5px;
    box-shadow: 2px 2px 3px #988659;
    border: 0;
    padding: 6px 15px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    margin: 10px;
}
.slot-btn:hover{
    color: #fff;
}
.slot-btn:focus{
    box-shadow:none;
}
hr {
    margin: 1rem 0;
    color: #35b1e6;
    background-color: currentColor;
    border: 0;
    opacity: 1;
}
.redday{
    background:#870000;
}
.box12{
    background: #fff;
    padding: 3px 15px;
    box-shadow: 2px 2px 3px;
    margin-left: 15px;
}
.daybox h6 {
    font-weight: 800;
}
.active123{
   background: #33b0e6; 
   color: #fff;
}
.dayHolder {
    display: flex;
    align-items: center;
    justify-content: center;
}
.daysec {
    background: #e9ecef;
    border-radius: 5px;
    padding: 15px;
    border: 1px solid #35b1e6;
}
.header-title {
    border-bottom: 1px solid #35b1e6;
    padding: 5px 0px;
    font-size: 115%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.checkbox-title {
    padding-left: 10px;
    padding-top: 3px;
    display: inline-block;
}
.title {
    border-bottom: 1px solid #FFF;
    padding: 5px 0px;
    font-size: 100%;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.content .box .form-control {
    border-radius: 3px;
    box-shadow: 2px 2px 3px #35b1e6;
}
.form {
    padding:15px;
}
.form-control-cust{
    width: 40%;
    display: inline-block;
}
.submit-btn {
    background-color: #35b1e6;
    border-radius: 2px;
    box-shadow: 2px 2px 3px #35b1e6;
    border: 0;
    padding: 5px 20px;
    color: #fff;
    font-size: 124%;
    font-weight: 700;
}
.add_sub_input{
	 background-color: #35b1e6;
    border-radius: 2px;
    box-shadow: 2px 2px 3px #35b1e6;
    border: 0;
    padding: 5px 20px;
    color: #fff;
    font-size: 124%;
    font-weight: 700;
}
.form-control-cust-text{
    padding-left: 10px;
}

.table>thead {
    vertical-align: middle;
    background: rgb(0 0 0 / 20%);
    font-weight: bold;
}
.icon-style{
	color: #c00000;
    font-size: 18px;
}
.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid  #37b1e6;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}
.icon{
	color:#37b1e6;
}
.page-item.disabled .page-link {
    color: #fff;
    pointer-events: none;
    background-color: #35b1e6;
    border: 1px solid #fdfdfc;
}
.page-link {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: #35b1e6;
    border: 1px solid #fdfdfc;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.page-item.active .page-link {
    z-index: 3;
    color: #35b1e6;
    background-color: #fdfdfc;
    border-color: #fdfdfc;
}

.footer {

    position: fixed;
    bottom: 0;
    display: flex;
    text-align: center;
    background: rgb(51, 176, 230);
    width: 100%;
    padding: 15px;
    color: #fff;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;

}
.footer a {
    color: #ffe699;
    font-size: 115%;
}

span.multiselect-native-select {
	position: relative
}
span.multiselect-native-select select {
	border: 0!important;
	clip: rect(0 0 0 0)!important;
	height: 1px!important;
	margin: -1px -1px -1px -3px!important;
	overflow: hidden!important;
	padding: 0!important;
	position: absolute!important;
	width: 1px!important;
	left: 50%;
	top: 30px
}
.multiselect-container {
	position: absolute;
	list-style-type: none;
	margin: 0;
	padding: 0
}
.multiselect-container .input-group {
	margin: 5px
}
.multiselect-container>li {
	padding: 0
}
.multiselect-container>li>a.multiselect-all label {
	font-weight: 700
}
.multiselect-container>li.multiselect-group label {
	margin: 0;
	padding: 3px 20px 3px 20px;
	height: 100%;
	font-weight: 700
}
.multiselect-container>li.multiselect-group-clickable label {
	cursor: pointer
}
.multiselect-container>li>a {
	padding: 0
}
.multiselect-container>li>a>label {
	margin: 0;
	height: 100%;
	cursor: pointer;
	font-weight: 400;
	padding: 3px 0 3px 30px
}
.multiselect-container>li>a>label.radio, .multiselect-container>li>a>label.checkbox {
	margin: 0
}
.multiselect-container>li>a>label>input[type=checkbox] {
	margin-bottom: 5px
}
.btn-group>.btn-group:nth-child(2)>.multiselect.btn {
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px
}
.form-inline .multiselect-container label.checkbox, .form-inline .multiselect-container label.radio {
	padding: 3px 20px 3px 40px
}
.form-inline .multiselect-container li a label.checkbox input[type=checkbox], .form-inline .multiselect-container li a label.radio input[type=radio] {
	margin-left: -20px;
	margin-right: 0
}
.box-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border: 1px solid;
    margin-bottom: 15px;
}
.text-holder{
    display: inline;
}
.icons-holder{
    display: inline;
}
.mybtn-2 {
    background: #fff;
    border-radius: 30px 0px 0px 30px;
    transition: 0.5s all;
    margin: 5px 0px 0px 5px;
    padding: 5px 15px;
    text-align: center;
    color: #35b1e6;
    text-decoration: none;
}

.icon-123{
    color: #e9ecef;
}
.input_box {
    border: 1px solid #35b1e6;
    border-radius: 5px;
    height: 38px;
    width: 200px;
}


@media (max-width:768px) {
    /* table, thead, tbody, th, td, tr {*/
    /*    display: block;*/
    /*}*/

    /*thead tr {*/
        /* display: none; Hide the table header */
    /*}*/

    /*tr {*/
    /*    margin-bottom: 10px;*/
    /*    border: 1px solid #ddd;*/
    /*    padding: 10px;*/
    /*}*/

    /*td {*/
    /*    display: flex;*/
    /*    justify-content: space-between;*/
    /*    padding: 10px;*/
    /*    border-bottom: 1px solid #ddd;*/
    /*    position: relative;*/
    /*}*/

    /*td:before {*/
    /*    content: attr(data-label);*/
    /*    font-weight: bold;*/
    /*    text-transform: uppercase;*/
    /*}*/
    
    .card-body {
    padding:0px;
}
    .table-wrapper {
    min-width: 100%;
    background: #fff;
    padding: 20px 25px;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}
    .table-title {
    color: #fff;
    padding: 16px 25px;
    margin: -20px -25px 10px;
    border-radius: 3px 3px 0 0;
}

.nc_leave_radio_btn_div {
        display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: center;
}
    
    .box {
    width: 100%;
    height:160vh;
}

body div.header-title.mb-3 div.left_nn {
    height: 115px;
    width: fit-content;
    overflow: hidden;
}
    .header {
        display: block;
    }
    .header .logo-holder {
        display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    }
    .main {
        padding-top:143px;
        display: flow-root;
    }
	.sidebar{
		width: 100%;
    height: auto;
    position: relative;
    padding-top:80px;
	display: none;
	}
    .collapse:not(.show) {
        display:none;
    }
    .sidebar .navlist .mybtn {
        margin:5px;
    }
	.content{
		width: 100%;
        height:auto;
		margin-left:0px;
        position: relative;
        padding-top: 78px;

	}
    .barsicon{
        background: #880200;
        font-size: 24px;
        padding: 3px 10px;
        color: #ffe699;
        border-radius: 5px;
    }
    .navbar {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        padding-top: 5px;
        padding-bottom: 5px;
        background: #00000038;
    }
    .sidetoggle {
        display:inline-flex;
    }

	
}

.main-sect_div {
    /* height: calc(100vh - 104px); */
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.neuro_card {
    width: 100%;
    max-width: 400px;
}

.footer {
    /*position: relative !important;*/ /*delvin css code 20-12-23-------*/
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 8px;
}

.footer {
    /* font-size: 20px; */
    font-weight: 400;
    font-size: 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

 td.action_btn_td {
    display: flex;
    width: fit-content;
} 

.action_btn_div {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.action_btn_div a {
    white-space: nowrap;
}

.text-center {
    white-space: nowrap;
}


@media only screen and (max-width: 768px) {

    .text-center {
        white-space: normal;
        vertical-align: middle;
    }

    .data_table {
        white-space: nowrap;
    }

    .action_btn_div {
        flex-direction: column;
        /* gap: 12px; */
        padding: 6px 0;
    }

    .mybtn {
        display: inline-block !important;
        margin: 0 !important;
        max-width: 150px !important;
        width: 100% !important;
    }


    .header_div .navbar-brand span {
        padding: 0px !important;
    }

    .header .logo {
        width: 65px;
    }

    .header .logo-holder {
        border: none;
        padding-bottom: 0px;
    }

    .header_div {
        display: flex;
        justify-content: space-between;
        /* gap: 8px; */
    }

    .navbar {
        background: transparent;
    }

    .footer,
    .footer * {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4px;
        text-align: center;
    }
}


/*end----- */

/*delvin ui start----------------- */


    /*common css start*/
        .p_smb_14 {
            font-size: 14px !important;
            line-height: 1.3 !important;
        }
    
        .ptag_500 {
            font-weight: 500 !important;
        }
    
        .ptag_600 {
            font-weight: 600 !important;
        }
    
        .p_tag {
            font-size: 16px !important;
            line-height: 24px !important;
        }
    
        .off_set_col {
            color: #9098B1 !important;
        }
    
        .display_h1 {
            font-size: 32px !important;
            line-height: 39px !important;
        }
        
        .box-content {
            border: 1px solid #ccc;
            /* border: 1px solid #35b1e6; */
            background-color: #e8f8ff;
            font-weight: 600;
            border-radius: 5px;
        }
        
        .box-content form button {
            outline: none;
            border: none;
        }
                
        body .flex_wrap_g6 {
            display: flex ;
            flex-wrap: wrap !important;
            gap: 6px;
        }
        
        .dayHolder {
            gap: 16px;
            flex-wrap: wrap;
        }
        
        .daybox {
            width: auto;
            height: auto;
            padding: 8px 16px;
            margin: 0px;
            border-radius: 8px;
        }
                
        .daybox h6 {
            margin: 0px;
        }
        
    /*common css end*/

    /* nav common css start*/
            body .header {
                position: sticky;
                top: 0;
                z-index: 4;
            }
            
            body .main {
                padding-top: 0px; 
            }
               form i {
cursor: pointer;
    display: flex;
    gap: 20%;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    align-items: center;
    top: 0;
    align-content: center;
    /*margin-top: -27px;*/
        }   
        
        .formpass{ background-color: rgb(27 4 4 / 8%);
    border-radius: 3px;
    box-shadow: 2px 2px 3px #988659;
    border: 0;
    /* display: block; */
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    /* background-color: #fff; */
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
 
       
            body .content {
                /*height: auto;*/
                padding-top: 15px; 
                    padding-bottom: 6%!important;
            }
            
            body .sidebar {
                border-right: 1.5px solid #000;
            }
            
            body .sub_link {
                display: flex;
                flex-direction: column;
                gap: 8px;
                padding: 8px;
                background: transparent;
                margin: 8px 8px 16px;
                margin-left: 8px;
                border: 2px solid #fff;
                border-radius: 4px;
            }
            
            .sidebar .navlist .mybtn{
                margin: 0px;
            }
    /* nav common css end*/

            
    /* table common css start*/
            .mv_span {
                display: none;
            }
        
            body .mv_table_nd {
                margin-top: 8px;
            }
        
            .patient_action_btn {
                display: flex;
                justify-content: center;
                gap: 6px;
                flex-wrap: wrap;
            }
        
            .table_mcard td {
                font-weight: 400;
                font-size: 16px;
                line-height: 30px;
                text-align: center;
            }
        
            body .mv_thead th,
            body .mv_thead td {
                white-space: nowrap;
            }
    /* table common css end*/
            
    /* table common css phone start*/
     @media only screen and (max-width: 1000px) {
            .mv_span {
                display: inline;
            }
    
            body table .table_mcard {
                background-color: rgb(255 255 255) !important;
                --bs-table-accent-bg: #fff !important;
    
                width: auto;
                display: grid;
                grid-row-gap: 16px;
                border-radius: 8px;
                box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.15);
                margin: 24px;
                padding: 12px;
                overflow: hidden;
            }
    
    
            .table_mcard td {
                text-align: start;
                padding: 0px;
                border: none;
            }
    
            .mv_thead {
                width: auto;
                overflow-x: scroll;
                background: #0000001a;
                display: flex;
                justify-content: flex-start;
                margin: auto;
                gap: 16px;
                padding: 8px;
                border-radius: 4px;
            }
    
            body .mv_thead th,
            body .mv_thead td {
                border-top: none;
                width: auto !important;
            }
    
    
            body .mv_remove_bg_col {
                background-color: transparent;
            }
        }
    /* table common css phone end*/

            
    /* nav common css phone start*/
         @media (max-width: 768px) {
            .box {
    width: 100%;
    height:150vh;
}
            body .sidebar {
                padding: 16px 0;
            }
            
            body .sub_link {
                flex-direction: row;
                flex-wrap: wrap;
            }
            
            .navlist {
                display: flex;
                flex-direction: column;
            }
        
            .mybtn {
                max-width: 180px !important;
                width: 100% !important;
            }
        
            .sub_link {
                padding: 10px;
                /* background: #fff; */
                margin-left: 5px;
                display: flex;
                /* flex-direction: column; */
                flex-wrap: wrap;
                gap: 8px;
            }
        
            /*.sidebar {*/
            /*    position: sticky;*/
            /*    z-index: 1;*/
            /*    top: 0;*/
            /*    width: 100%;*/
            /*    height: auto;*/
            /*     position: relative; */
            /*    padding-top: 8px;*/
            /*    display: none;*/
            /*    overflow-y: scroll;*/
            /*     max-height: 100%; */
            /*    height: calc(100vh - 143px);*/
            /*}*/
        
            /* body {
                overflow: hidden;
            } */
        
        }
    /* nav common css phone end*/
    
    /* table common css phone start*/
        @media only screen and (max-width: 600px) {
    
            .form {
                padding: 0px;
            }
    
            .mv_padding_0_8 {
                padding: 0 8px !important;
            }
    
            .mv_padding_0 {
                padding: 0px !important;
            }
    
            body .mv_table_nd {
                width: 100%;
                display: flex;
                flex-direction: column;
            }
    
            body table .table_mcard {
                margin: 24px 8px;
            }
    
        }

        @media only screen and (max-width: 500px) {
            .search-box {
    position: static!important;
    float: right;
}
            .form-select {display: block;
    width: 44%!important;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
            
            .table-title {
    color: #fff;
    padding: 16px 25px;
    margin: -20px -25px 10px;
    border-radius: 3px 3px 0 0;
}
            body div.header-title.mb-3 div.left_nn {
    height: 120px;
    width: fit-content;
    overflow: hidden;
}
            .page_title_nn {padding-top:48%;}
            .left_nn { padding-top:0%;}
            .box {
    width: 100%;
    height:160vh;
}
                   
            body table .table_mcard {
                grid-row-gap: 8px;
            }
        }

    /* table common css phone end*/


/*delvin ui end----------------- */

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

body .alert {
    position: fixed;
    width: fit-content;
    bottom: 0;
    z-index: 99;
    right: 24px;
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 6px 12px;
    /* opacity: 0; */
    animation: fadeOut 1s 10s forwards;
}

body .alert.alert-danger::after {
    content: "\f071";
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: inherit;
    padding-left: 8px;
    cursor: pointer;
}

body .alert.alert-success::after {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 24px;
    vertical-align: middle;
    color: inherit;
    padding-left: 8px;
    cursor: pointer;
}

