@import url('https://fonts.googleapis.com/css2?family=Archivo: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&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root{
	--blue-color: #092143;
	--light-blue: #EEF4FF;
	--green-color: #fdad21;
	--shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;;
	--radius: 8px;
	--heading-font: 'Archivo', sans-serif;
	--para-font: 'Inter', sans-serif;
}
h1,h2,h3,h4,h5,h6{
	font-family: var(--heading-font);
}
.admin-login-wrapper{
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--light-blue);
}
.form-outer{
	/*background: var(--blue-color);
	padding: 20px;*/
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	border-radius: var(--radius);
}
.logo{
	width: 160px;
}
.admin-form{
	height: 100%;
	background: white;
	border-radius: var(--radius);
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
}
.admin-form form{
	width: 100%;
}
.lab-image{
	max-width: 480px;
}
.form-left-content h1{
	color: white;
	font-weight: bold;
	text-transform: uppercase;
}
.form-left-content h1 span{
	color: var(--green-color);
}
.arrow-button{
	background: var(--blue-color);
	padding: 10px 10px 10px 15px;
	color: white;
	border-radius: 8px;
	height: 50px;
	min-width: 160px;
	display: inline-flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}
.arrow-button span{
	margin-right: 10px;
}
.arrow-button i{
	font-size: 22px;
	background: white;
	height: 35px;
	width: 35px;
	border-radius: 8px;
	color: var(--blue-color);
	text-align: center;
	line-height: 35px;
}
.arrow-button-green{
	background: var(--green-color);
	padding: 10px 10px 10px 15px;
	color: white;
	border-radius: 8px;
	height: 50px;
	min-width: 160px;
	display: inline-flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    border: none;
}
.arrow-button-green span{
	margin-right: 10px;
}
.arrow-button-green i{
	font-size: 22px;
	background: white;
	height: 35px;
	width: 35px;
	border-radius: 8px;
	color: var(--green-color);
	text-align: center;
	line-height: 35px;
}
.admin-form h2{
	color: var(--blue-color);
	font-weight: bold;
	text-align: left;
}
.admin-form .line{
	height: 4px;
	width: 60px;
	background: var(--blue-color);
	margin-bottom: 20px;
}
.admin-wrapper{
	background: var(--light-blue);
	min-height: 100vh;
}
.login-button button, .login-button a{
	background: var(--light-blue);
	padding: 10px 15px;
	color: var(--blue-color);
	border-radius: 8px;
	height: 50px;
	display: flex;
    justify-content: space-between;
    align-items: center;
    border:2px solid var(--blue-color);
    text-decoration: none;
}
.cart-button{
	background: var(--blue-color);
	padding: 10px 15px;
	color: var(--blue-color);
	border-radius: 8px;
	height: 50px;
	line-height: 50px;
	display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  margin-right: 10px;
}
.cart-button a{
	text-decoration: none;
	color: white;
}
.cart-button .count{
	height: 20px;
	width: 20px;
	line-height: 18px;
	color: var(--blue-color);
	background: white;
	display: block;
	text-align: center;
	margin-left: 5px;
	border-radius: 50%;
}
.cart-button
.login-button button i, .login-button a i{
	font-size: 22px;
	background: white;
	height: 35px;
	width: 35px;
	border-radius: 8px;
	text-align: center;
}
.logo{
	width: 120px;
}
.login-button button span, .login-button a span {
    margin-right: 10px;
}
.top-header{
	background: white;
	box-shadow: var(--shadow);
	padding: 15px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.hamburger{
	height: 45px;
	width: 45px;
	background: var(--blue-color);
	border-radius: 5px;
	color: white;
}
.hamburger{
	font-size: 28px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}
.stats-box{
	padding: 20px;
	padding-top: 0;
	
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: 50px;
	margin-bottom: 20px;
}
.stats-img{
	height: 100px;
	width: 100px;
	background: white;
	padding: 10px;
	border-radius: 50%;
	margin-top: -50px;
	box-shadow: var(--shadow);
	margin-bottom: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.stats-img img{
	width: 70px;
}
.stats-box h5{
	font-weight: bold;
}
.stats-box h2{
	font-weight: bold;
}
.stats-section{
	padding: 30px;
}
.content-wrapper{
	transition: 0.5s;
	margin-left: 300px;
}
.content-wrapper.active{
	margin-left: 0px;
	transition: 0.5s;
}
.sidenav {
  height: 100%;
  width: 300px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: -100%;
  background-color: #fff;
  overflow-x: hidden;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: 0.5s;
}
.sidenav a, .dropdown-btn {
  padding: 6px 8px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}
.sidenav a:hover, .dropdown-btn:hover {
  color: var(--blue-color);
}
.main {
  margin-left: 200px; 
  font-size: 20px; 
  padding: 0px 10px;
}
.sidenav .dropdown-btn.active {
  background-color: var(--light-blue);
  color: var(--blue-color);
}
.hamburger.active{
	background-color: var(--light-blue);
  	color: var(--blue-color);
}
.dropdown-container {
	display: none;
  padding-left: 8px;
}
.sidenav .fa-caret-down {
  float: right;
  padding-right: 8px;
  margin-top: 6px;
}
.sidenav a i, .dropdown-btn i{
	font-size: 25px;
}
.sidenav.active{
	transition: 0.5s;
	left: 0;
}
.data-table-section{
	padding: 30px;
}
.data-table-section .inner-table{
	background: white;
	padding: 20px;
	border-radius: var(--radius);
	box-shadow: var(--sahdow);
}
.dataTables_wrapper .dataTables_paginate .paginate_button{
	padding: 0;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
	background: none;
	border:none;
	outline: none;
}
.form-section{
	padding: 30px;
}
.form-inner{
	background: white;
	padding: 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}
.heading{
	margin-bottom: 30px;
}
.heading h2{
	font-weight: bold;
	color: var(--blue-color);
}

.heading h2 span{
	color: var(--green-color);
}
.heading .line{
	height: 4px;
	width: 60px;
	background: var(--green-color);
}
.alert {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 500;
    width: auto;
}
.operations{
	display: flex;
	justify-content: center;
	align-items: center;
}
.operations a,.operations button{
	/*display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;*/
	text-align: center;
	text-decoration: none;
	padding: 10px 25px;
	margin: 0 5px;
	border:none;
}
.operations .edit-btn{
	background: #1EB85F;
	color: white;
	border-radius: 8px;
	box-shadow: var(--shadow);
	display: flex;
}
.operations a span, .operations button span{
	background: none;
	padding: 0;
	display: auto;
	border:none;
	color: white;
} 
.operations .delete-btn{
	background: #DA1313;
	color: white;
	border-radius: 8px;
	box-shadow: var(--shadow);	
	display: flex;
}
.operations .catalogue-btn{
	background: var(--green-color);
	color: white;
	border-radius: 8px;
	box-shadow: var(--shadow);	
	display: flex;
	text-align: center;
	text-decoration: none;
	padding: 10px 25px;
	outline: none;
	border:none;
	margin: 0 5px;
}
.category-img img{
	height:	100px;
	width: 100px;
	border-radius: 8px;
	overflow: hidden;
}
table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc, table.dataTable thead>tr>th.sorting_asc_disabled, table.dataTable thead>tr>th.sorting_desc_disabled, table.dataTable thead>tr>td.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>td.sorting_asc_disabled, table.dataTable thead>tr>td.sorting_desc_disabled{
	text-align: center;
	white-space: nowrap;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>td, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>th, .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>tbody>tr>td{
	text-align: center;
	white-space: nowrap;
}
.buttons-csv{
	background: var(--blue-color) !important;
	color: white !important;
	margin-left:10px !important;
	border-radius: var(--radius) !important;
}
.dataTables_wrapper .dataTables_length select{
	padding-right: 30px;
}
.profile-box{
	box-shadow: var(--shadow);
	padding: 20px;
	border-radius: var(--radius);
	text-align: center;
}
.profile-box h6{
	margin-bottom: 0;
	font-weight: bold;
}
.profile-box p{
	margin-bottom: 0;
}
.profile-box a{
	background: var(--blue-color);
	display: block;
	height: 100%;
	width: 100%;
	border-radius: var(--radius);
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
.profile-box a h5{
	color: white;
	margin-bottom: 0;
}
#passInput{
	width: 100%;
	border-radius: 8px;
	border:0;
	text-align: center;
}
.password-input{
	display: flex;
	justify-content: center;
	align-items: center;
}
.reports-section{
	padding: 30px;
}
.report-box{
	padding: 20px;
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	background: white;
	padding-top: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
}
.report-box .pdf-img{
	height: 80px;
	width: 80px;
	box-shadow: var(--shadow);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -25px;
	background: white;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
}
.report-box .pdf-img img{
	width: 40px;
}
.test-details h5{
	border-left: 3px solid var(--blue-color);
	padding-left: 5px;
}
.test-details span{
	font-size: 12px;
	color: #c7c7c7;
	margin-bottom: 0;
}
.tox .tox-notification--warn, .tox .tox-notification--warning{
	display: none !important;
}
div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0;
    display: block; 
    width: 100%;
    min-height: 45px;
}
div.dataTables_wrapper div.dataTables_filter label {
    width: 100%;
}
.dataTables_wrapper .dataTables_filter{
	float:none;
}
.simple-blue{
	background: var(--blue-color);
	padding: 8px 25px;
	border-radius: var(--radius);
	color: white;
	text-decoration: none;
	transition: 0.5s;
	display: inline-block;
	border:none;
}
.simple-blue:hover{
	transition: 0.5s;
	color: white;	
}
.image-outer{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-right: 10px;
}
.image-outer .image-cont{
	width: 150px;
	height: 100px;
	position: relative;
	margin-right: 10px;
}
.image-cont .img-box{
	width: 100%;
	height: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	
}
.image-cont .img-box img{
	width: 100%;
	
}
.image-cont button{
	position: absolute;
	top: -6px;
	right: -6px;
	height: 25px;
	width: 25px;
	line-height: 10px;
	text-align: center;
	background: red;
	border-radius: 50%;
	border:0;
	color: white;
}
.sl-toast-stack {
  right: 0;
  bottom:20px;
  height: auto;
  top: auto;
}
button[disabled=disabled], button:disabled {
    background-color: lightgray !important;
    color: black !important;
}
.dash-box{
	background: white;
	padding: 20px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	height: calc(100% - 15px);
	margin-bottom: 15px;
}
.dash-box-group{
	padding: 30px 30px 0 30px;
}
.dash-box h1{
	font-weight: bold;
	margin-bottom: 0;
}
.dash-box p{
	margin-bottom: 0;
	font-weight: 500;
	color: white;
}
.dash-box a{
	color: black;
	text-decoration: none;
}
.dash-box-group .row .col:nth-child(1) .dash-box{
	background: #95a5a6;
}
.dash-box-group .row .col:nth-child(1) .dash-box h1{
	color:white;
}
.dash-box-group .row .col:nth-child(1) .dash-box a{
	color: white;
}
.dash-box-group .row .col:nth-child(2) .dash-box{
	background: #1abc9c;
}
.dash-box-group .row .col:nth-child(2) .dash-box h1{
	color: white;
}
.dash-box-group .row .col:nth-child(2) .dash-box a{
	color: white;
}
.dash-box-group .row .col:nth-child(3) .dash-box{
	background: #f0932b;
}
.dash-box-group .row .col:nth-child(3) .dash-box h1{
	color: white;
}
.dash-box-group .row .col:nth-child(3) .dash-box a{
	color: white;
}
.dash-box-group .row .col:nth-child(4) .dash-box{
	background: #4834d4;
}
.dash-box-group .row .col:nth-child(4) .dash-box h1{
	color: white;
}
.dash-box-group .row .col:nth-child(4) .dash-box a{
	color: white;
}
.dash-box-group .row .col:nth-child(5) .dash-box{
	background: #22a6b3;
	background: #6ab04c;
}
.dash-box-group .row .col:nth-child(5) .dash-box h1{
	color: white;
}
.dash-box-group .row .col:nth-child(5) .dash-box a{
	color: white;
}
.dash-box-group .row .col:nth-child(6) .dash-box{
	background: #8e44ad;
}
.dash-box-group .row .col:nth-child(6) .dash-box h1{
	color: white;
}
.dash-box-group .row .col:nth-child(6) .dash-box a{
	color: white;
}
.dash-box-group .row .col:nth-child(7) .dash-box{
	background: #eb4d4b;
}
.dash-box-group .row .col:nth-child(7) .dash-box h1{
	color: white;
}
.dash-box-group .row .col:nth-child(7) .dash-box a{
	color: white;
}
.orderid{
	background: var(--blue-color);
  padding: 5px 10px;
  border-radius: 60px;
  text-decoration: none;
  color: white !important;
  transition: 0.5s;
}
.badge{
	width: 100%;
}
.order-details table {
    border-collapse:collapse;
    /*border:solid black 1px;*/
    border-radius:6px;
    background: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.order-details td, .order-details th {
    border-left:solid #b2b2b2 1.5px;
    border-top:solid #b2b2b2 1.5px;
    text-align: center;
    padding: 10px;
}
.order-details th {
    border-top: none;
}
.order-details td:first-child, .order-details th:first-child {
     border-left: none;
}
.add-comments{
	padding: 0 30px;
}
.modal-content{
	position: relative;
}
.modal-content .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.modal-content .modal-body{
	margin-top: 30px;
}
.comment-box{
	padding: 15px;
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	background: white;
	margin-bottom: 20px;
	position: relative;
	z-index: 5;
}
.file-box{
	padding: 15px;
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	background: white;
	margin-bottom: 20px;
	position: relative;
	z-index: 5;
}
.doc-files{
	padding: 0 30px;
}
.comment-box .date,.file-box .date{
	color: #b8b8b8;
	font-size: 13px;
}
.file-box .delete-btn a{
	padding: 10px;
    background: red;
    display: block;
    width: 40px;
    height: 40px;
    color: white;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    margin-top: 10px;
}
.comment-box .delete-btn a{
	padding: 10px;
	background: red;
	display: block;
	width: 40px;
	height: 40px;
	color: white;
	border-radius: 8px;
	text-align: center;
	margin-left: 5px;
}
.comment-box .delete-btn a i{
	line-height: 20px;
}
#exampleModal .modal-body{
	margin-top: 0;
}

.comment-btn-group {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
}
.outer-comment{
	position: relative;
}
.outer-comment:after {
    content: '';
    position: absolute;
    top: 0;
    height: calc(100% - 25px);
    left: 30px;
    width: 3px;
    z-index: 1;
    background: var(--blue-color);
}
.edit-button{
	background: white;
	padding: 8px 12px;
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	margin-bottom: 10px;
	color: var(--blue-color);
	text-decoration: none;
	border:none;
}
.profile{
	padding: 20px 30px 0 30px;
}
.profile .profile-card{
	padding: 15px;
	background: var(--blue-color);
	box-shadow: var(--shadow);
	border-radius: var(--radius);
	color: white;
}
.profile .profile-card .line{
	background: white;
	height: 4px;
	width: 60px;
	margin-bottom: 15px;
}
td span {
    background: #b7d4fd;
    color: var(--blue-color);
    font-weight: 600;
    border: 1.5px solid var(--blue-color);
    padding: 3px 15px;
    border-radius: 56px;
    /* width: 100%; */
    display: inline-block;
}
td span span{
	background: transparent !important;
	border:none !important;
	padding: 0 !important;
}
.badge{
	background-color: #b7d4fd !important;
    color: var(--blue-color);
    font-weight: 600;
    border: 1.5px solid var(--blue-color);
    padding: 3px 15px;
    border-radius: 56px;
    /* width: 100%; */
    display: inline-block;
    font-size: 16px;
}
.approved, .approved.enabled {
    text-align: center;
    text-decoration: none;
    padding: 8px 25px;
    margin: 0 5px;
    border: none;
    background: #1EB85F;
    color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
}
.approved.disabled, .unapproved.disabled {
    background-color: lightgray !important;
    color: black !important;
}
.unapproved, .unapproved.enabled {
    text-align: center;
    text-decoration: none;
    padding: 10px 25px;
    margin: 0 5px;
    border: none;
    background: #DA1313;
    color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
}
.edit-disabled{
	background-color: lightgray !important;
    color: black !important;
}
.edit-disabled span{
	color: black !important;	
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 52px;
    height: 100%;
}
.select2-container .select2-selection--single {
    height: 57px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
	height:57px;
}