@import 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet';

:root {
	--dk-gray-100: #F3F4F6;
	--dk-gray-200: #E5E7EB;
	--dk-gray-300: #D1D5DB;
	--dk-gray-400: #9CA3AF;
	--dk-gray-500: #6B7280;
	--dk-gray-600: #4B5563;
	--dk-gray-700: #374151;
	--dk-gray-800: #1F2937;
	--dk-gray-900: #111827;
	--dk-dark-bg: #313348;
	--dk-darker-bg: #2a2b3d;
	--navbar-bg-color: #6f6486;
	--sidebar-bg-color: #252636;
	--sidebar-width: 250px;
	--blue: #003366;
	--lightblue: #012952;
	--darkblue: #002446;
	--lightgry: #F7F7F7;
	--white: #ffffff;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	background-color: var(--lightgry);
	font-size: .925rem;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row>.col, .form-row>[class*=col-] {
    padding-right: 10px;
    padding-left: 10px;
}

.App:has(.sidebar){
	background: #f7f7f7;
    position: relative;
    /* height: 100dvh; */
}

#wrapper {
	margin-left: var(--sidebar-width);
	transition: all .3s ease-in-out;
}

#wrapper.fullwidth {
	margin-left: 0;
}



/** --------------------------------
 -- Sidebar
-------------------------------- */
.sidebar {
	background-color: var(--lightblue);
	width: var(--sidebar-width);
	transition: all .3s ease-in-out;
	transform: translateX(0);
	margin: 18px 0px 18px 0px;
    border-radius: 0px 32px 32px 0px;
	display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.sidebar .close-aside {
	position: absolute;
	top: 7px;
	right: 7px;
	cursor: pointer;
	color: #EEE;
}

.sidebar .sidebar-header {
	border-bottom: unset;
}

.sidebar .sidebar-header h5 a {
	color: var(--dk-gray-300)
}

.sidebar .sidebar-header p {
	color: var(--dk-gray-400);
	font-size: .825rem;
}

.sidebar .search .form-control ~ i {
	color: #2b2f3a;
	right: 40px;
	top: 22px;
}

.sidebar ul.categories{
	background-color: var(--darkblue);
	flex-grow: 1;
}

.sidebar > ul > li {
	padding: .7rem .7rem .7rem 1rem;
    background: #123654;
    margin: .7rem 1rem;
    border-radius: 15px;
	cursor: pointer;
}

.sidebar > ul > li:hover{
	background-color: var(--white);
}

.sidebar ul > li > a {
	color: var(--white);
	font-size: small;
	text-decoration: none;
	font-weight: 500;
}

.sidebar > ul > li:hover a{
	color: var(--blue);
}

/* Start numbers */
.sidebar ul > li > a > .num {
	line-height: 0;
	border-radius: 3px;
	font-size: 14px;
	padding: 0px 5px
}

.sidebar ul > li > i {
	font-size: medium;
	margin-right: .7rem;
	color: var(--white);
	font-weight: 500;
}

.sidebar > ul > li:hover i{
	color: var(--blue);
}

.sidebar ul > li.has-dropdown > a:after {
	content: '\eb3a';
	font-family: unicons-line;
	font-size: x-large;
	line-height: 1.2;
	float: right;
	color: var(--white);
	transition: all .3s ease-in-out;
	font-weight: 500;
}

.sidebar > ul > li:hover a:after{
	color: var(--blue);
}

.sidebar ul .opened > a:after {
	transform: rotate(-90deg);
}

/* Start dropdown menu */
.sidebar ul .sidebar-dropdown {
	padding-top: 10px;
	padding-left: 30px;
	display: none;
}
.sidebar ul .sidebar-dropdown.active {
	display: block;
}

.sidebar ul .sidebar-dropdown > li > a {
  font-size: .85rem;
	padding: .5rem 0;
	display: block;
}
/* End dropdown menu */

.show-sidebar {
	transform: translateX(-270px) !important;
}

.sb-sidenav-footer{
	padding: 0.75rem;
    flex-shrink: 0;
    background: var(--lightblue);
    padding-bottom: 2rem;
	justify-content: center !important;
    gap: 39px;
    padding-top: 0rem;
	align-items: center !important;
	display: flex;
}

.sb-sidenav-footer .fa{
	color: #ffff;
	font-size: larger;
}

@media (max-width: 767px) {
	.sidebar ul > li {
		padding-top: 12px;
		padding-bottom: 12px;
	}

	.sidebar .search {
		padding: 10px 0 10px 30px
	}
}

/** --------------------------------
 -- welcome
-------------------------------- */
.welcome {
	color: var(--dk-gray-300);
}

.welcome .content {
	background-color: unset;
	gap: 14px;
}

.welcome p {
	font-family: 'Poppins';
    font-size: medium;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #888888;
}

.welcome .content .menu-opens{
	width: 44px;
    height: 44px;
    padding: 8px;
    gap: 10px;
    border-radius: 12px;
    background-color: #D9D9D9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: unset;
    color: black;
    font-size: larger;
}
.welcome .content .page-title .fs-2{
	color: black;
	font-weight: 600;
}
.welcome .content .btn{
	display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}
.welcome .content .btn .fa{
	font-weight: 400;
}

/*Popup css start*/
#addpopup-form .modal-content{
	border-radius: 18px;
	border: unset;
}
#addpopup-form .close{
	padding: 1rem;
    margin: -1rem -1rem -1rem auto;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
    font-size: xx-large;
    color: var(--bs-dark-text-emphasis);
	line-height: 6px;
}

#addpopup-form .form-inner form .field {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 1rem;
}

#addpopup-form form label {
    display: inline-block;
    margin-bottom: .5rem;
    float: left;
    font-family: system-ui;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-align: left;
}

#addpopup-form form input {
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    border: 1px solid #0000001F;
    background-color: #00000005 !important;
    font-family: 'Poppins';
    font-size: small;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    border-radius: 12px;
    padding: 12px 20px 12px 20px;
}

#addpopup-form form select {
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    border: 1px solid #0000001F;
    background-color: #00000005 !important;
    font-family: 'Poppins';
    font-size: small;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    border-radius: 12px;
    padding: 10px 20px 10px 20px;
}


/** --------------------------------
 -- Statistics
-------------------------------- */
.statistics {
	color: var(--dk-gray-200);
}

.statistics .box {
	background: #ffff;
    box-shadow: 0px 5px 22px 0px #0000000A;
    border-radius: 20px;
}

.statistics .box i {
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.statistics .box p {
	color: var(--dk-gray-400);
}

/** --------------------------------
 -- Please don't do that in real-world projects!
 -- overwrite Bootstrap variables instead.
-------------------------------- */

.navbar {
	background-color: var(--navbar-bg-color) !important;
	border: none !important;
}
.navbar .dropdown-menu {
	right: auto !important;
	left: 0 !important;
}
.navbar .navbar-nav>li>a {
	color: #EEE !important;
	line-height: 55px !important;
	padding: 0 10px !important;
}
.navbar .navbar-brand {color:#FFF !important}
.navbar .navbar-nav>li>a:focus,
.navbar .navbar-nav>li>a:hover {color: #EEE !important}

.navbar .navbar-nav>.open>a,
.navbar .navbar-nav>.open>a:focus,
.navbar .navbar-nav>.open>a:hover {background-color: transparent !important; color: #FFF !important}

.navbar .navbar-brand {line-height: 55px !important; padding: 0 !important}
.navbar .navbar-brand:focus,
.navbar .navbar-brand:hover {color: #FFF !important}
.navbar>.container .navbar-brand, .navbar>.container-fluid .navbar-brand {margin: 0 !important}
@media (max-width: 767px) {
	.navbar>.container-fluid .navbar-brand {
		margin-left: 15px !important;
	}
	.navbar .navbar-nav>li>a {
		padding-left: 0 !important;
	}
	.navbar-nav {
		margin: 0 !important;
	}
	.navbar .navbar-collapse,
	.navbar .navbar-form {
		border: none !important;
	}
}

.navbar .navbar-nav>li>a {
	float: left !important;
}
.navbar .navbar-nav>li>a>span:not(.caret) {
	background-color: #e74c3c !important;
	border-radius: 50% !important;
	height: 25px !important;
	width: 25px !important;
	padding: 2px !important;
	font-size: 11px !important;
	position: relative !important;
	top: -10px !important;
	right: 5px !important
}
.dropdown-menu>li>a {
	padding-top: 5px !important;
	padding-right: 5px !important;
}
.navbar .navbar-nav>li>a>i {
	font-size: 18px !important;
}




/* Start media query */

@media (max-width: 767px) {
	#wrapper {
		margin: 0 !important
	}
	.statistics .box {
		margin-bottom: 25px !important;
	}
	.navbar .navbar-nav .open .dropdown-menu>li>a {
		color: #CCC !important
	}
	.navbar .navbar-nav .open .dropdown-menu>li>a:hover {
		color: #FFF !important
	}
	.navbar .navbar-toggle{
		border:none !important;
		color: #EEE !important;
		font-size: 18px !important;
	}
	.navbar .navbar-toggle:focus, .navbar .navbar-toggle:hover {background-color: transparent !important}
}


::-webkit-scrollbar {
	background: transparent;
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #ffffff00;
}

::-webkit-scrollbar-thumb:hover {
	background-color: rgba(0, 0, 0, 0);
}

/*Table css start*/

.table-responsive{
	display: block;
    width: 100%;
}

.table-responsive td:first-of-type, .table-responsive th:first-of-type {
    padding-left: 1.5rem;
}
.table-responsive td:last-of-type, .table-responsive th:last-of-type {
    padding-right: 1.5rem;
}

.table-responsive th:first-of-type{
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
}

.table-responsive th:last-of-type{
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	/* display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem; */
}

.table-responsive thead .action-block{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.table-responsive td:last-of-type{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
}

.table-responsive .table thead tr th{
	font-size: medium;
    text-transform: uppercase;
    font-weight: 500;
	align-content: center;
	background: #f7f7f7;
    border-bottom: unset;
	padding-top: 1rem;
    padding-bottom: 1rem;
}

.table-responsive .table thead tr th i{
	width: 36px;
    height: 36px;
    padding: 8px;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #d7d5d5;
    opacity: 0px;
    font-weight: 100;
    font-size: larger;
    line-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-responsive .table tbody tr{
	border-bottom: 1px solid #dbdada;
}

.table-responsive .table tbody tr td{
	font-size: small;
    text-transform: capitalize;
    font-weight: 500;
	align-content: center;
    border-bottom: 1px solid #0000001F;
	padding-top: 1.5rem;
    padding-bottom: 1.5rem;
	color: #444444;
	border-bottom: unset;
}

.table-responsive .checkbox {
    border: 0;
    height: 1.5rem;
    position: relative;
	padding: .75rem 1rem;
	background-color: #ffff;
	border-radius: .25rem;
}

.table-responsive .checkbox::after {
	background: #ffff;
	border: 1px solid #0000001F;
	border-radius: .25rem;
	box-sizing: border-box;
	content: '';
	cursor: pointer;
	display: inline-flex;
	height: 1.5rem;
	opacity: 1;
	position: absolute;
	top: 0;
	width: 1.5rem;
  }
  
  .table-responsive .checkbox:checked::after {
	background-color: var(--blue);
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZkZmRmZSIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMzIuNDksODAuNDlsLTEyOCwxMjhhMTIsMTIsMCwwLDEtMTcsMGwtNTYtNTZhMTIsMTIsMCwxLDEsMTctMTdMOTYsMTgzLDIxNS41MSw2My41MWExMiwxMiwwLDAsMSwxNywxN1oiPjwvcGF0aD48L3N2Zz4=");
	background-position: center;
	background-repeat: no-repeat;
	border: 0;
  }

  .table-responsive .checktask{
	display: flex;
    gap: 1.5rem;
    align-items: center;
  }

  .table-responsive .table tbody tr td .status{
	color: #20C198;
    padding: 5px 10px 5px 10px;
    border-radius: 28px;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 700;
    line-height: 18.62px;
    text-align: left;
    background: #20c1981f;
  }
  .table-responsive .table tbody tr td .severity{
	background: #D32F2F1A;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 700;
    line-height: 18.62px;
    text-align: left;
    color: #D32F2F;
    padding: 5px 10px 5px 10px;
    border-radius: 28px;
  }
  .table-footer .footerdetails{
	display: flex;
    justify-content: space-between;
  }
  .table-footer .footerdetails .left-row{
	display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex: 1 0 50%;
    align-items: center;
  }
  .table-footer .footerdetails .left-row p{
	margin-bottom: unset;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: #646464;
  }
  .table-footer .footerdetails .left-row .form-control{
	flex: 0 1 10%;
    height: auto;
  }
  .table-footer .footerdetails .left-row .form-select{
	flex: 0 1 15%;
  }
  .table-footer .footerdetails .right-row{
	display: flex;
    justify-content: flex-end;
    flex: 0 1 50%;
	align-items: center;
  }
  .table-footer .footerdetails .right-row p{
	margin-bottom: unset;
    font-family: 'Poppins';
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    text-align: left;
    color: #646464;
  }
  .table-footer .footerdetails .right-row i{
	line-height: unset;
    font-size: x-large;
    color: #646464;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
	cursor: pointer;
  }

  input.input.checkbox {
    border: 0;
    height: 1.5rem;
    position: relative;
	padding: .75rem 1rem;
	background-color: #ffff;
	border-radius: .25rem;
}

input.input.checkbox::after {
	background: #ffff;
	border: 1px solid #0000001F;
	border-radius: .25rem;
	box-sizing: border-box;
	content: '';
	cursor: pointer;
	display: inline-flex;
	height: 1.5rem;
	opacity: 1;
	position: absolute;
	top: 0;
	width: 1.5rem;
  }
  
  input.input.checkbox:checked::after {
	background-color: var(--blue);
	background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2ZkZmRmZSIgdmlld0JveD0iMCAwIDI1NiAyNTYiPjxwYXRoIGQ9Ik0yMzIuNDksODAuNDlsLTEyOCwxMjhhMTIsMTIsMCwwLDEtMTcsMGwtNTYtNTZhMTIsMTIsMCwxLDEsMTctMTdMOTYsMTgzLDIxNS41MSw2My41MWExMiwxMiwwLDAsMSwxNywxN1oiPjwvcGF0aD48L3N2Zz4=");
	background-position: center;
	background-repeat: no-repeat;
	border: 0;
  }

  .table-topsection{
	display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
  }

  .table-topsection .left-bar{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
  }
  .table-topsection .left-bar .form-select{
	border: unset;
  }

  .table-topsection .right-bar{
	display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
	flex: 0 1 50%;
  }
  .table-topsection .form-control{
	width: 100%;
    outline: none;
    transition: all 0.3s ease;
    border: 1px solid #0000001F;
    background-color: #00000005 !important;
    font-family: 'Poppins';
    font-size: small;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    border-radius: 12px;
    padding: 12px 20px 12px 20px;
  }

  .table-topsection .right-bar img{
	width: 36px;
    height: 36px;
    padding: 6px;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #d7d5d5;
    opacity: 0px;
    font-weight: 100;
    font-size: larger;
    line-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /*Image Upload*/

  .imgaeuploader form{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #FF6C001A;
    border: 1px dashed #FF6C0066;
	height: 200px;
	cursor: pointer;
	border-radius: 5px;
  }
  
  .imgaeuploader .uploaded-row{
	margin: 10px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	border-radius: 5px;
	background-color: #e9f0ff;
  }
  
  .imgaeuploader .upload-content{
	display: flex;
	align-items: center;
  }

  @media (max-width: 767px) {
	.sidebar {
		z-index: 9;
		transform: translateX(-270px) !important;
	}
	.show-sidebar {
		transform: translateX(0px) !important;
	}
	#wrapper .welcome .content {
		flex-direction: column !important;
	}
	.table-topsection{
		flex-direction: column !important;
	}
	.table-topsection .right-bar {
		margin-top: 1rem;
		gap: 10px;
		margin-bottom: 1rem;
	}
	#wrapper .welcome #topmenuoption{
		flex-direction: row-reverse !important;
	}
	.welcome .content .menu-opens {
		width: 70px;
		height: 50px;
	}
  }