/* <!-- Including one css file into other --> */
@import "../fonts/Roboto/stylesheet.css";

body {
	background-color: rgb(245,246,248);
	margin: 0px;
	font-family: 'Roboto', sans-serif;
	text-rendering: optimizeLegibility !important;
	-webkit-font-smoothing: antialiased !important;
	-moz-osx-font-smoothing: grayscale !important;
	font-weight: 400;
	color: #484d5b;
	max-width: 100vw;
	max-height: 100vh;
	position: relative;
}

a {
  color: white;
  transition: all 0.2s ease-out;
  opacity: 1;
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

img {
  max-width: 100%;
  object-fit: scale-down;
}

textarea:focus, input:focus{
  outline: none;
}

textarea {
	resize: none;
	height: 150px;
	font-size: 14px;
}

textarea, input {
	font-family: 'Roboto', sans-serif;
}

button {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgb(205, 205, 205);
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: rgb(205, 205, 205);
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: rgb(205, 205, 205);
}

.icon-styler {
  color: white;
  user-select: none;
  cursor: pointer;
}

.custom-wrap {
	max-width: 95%;
	margin: 0 auto;
}

.main-wrapper {
  width: 100%;
  height: 100%;
	position: relative;
}

.dashboard-flex-layout {
	display: flex;
	margin-left: 250px;
}

.dashboard-sidebar {
  width: 250px;
}

.fixed-sidebar {
	background: transparent;
	position: fixed;
	height: 100%;
	width: 250px;
}

.fixed-nav-container {
	position: relative;
	height: 70px;
	width: 100%;
}

.fixed-top-nav {
	position: fixed;
	top: 0;
	background: #1d2126;
	width: 100%;
	height: 70px;
	box-shadow: 0px 4px 20px -1px rgba(0, 0, 0, 0.04);
	z-index: 100;
}

.nav-container {
  display: flex;
  height: 100%;
}

.logo-container {
	width: 250px;
	/* background: #080808; */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.nav-right-side, .nav-left-side {
  flex: 1 auto;
  display: flex;
  height: 100%;
  align-items: center;
  padding:0px 30px;
}

.nav-right-side {
  justify-content: flex-end;
}

.nav-item {
  padding:0px 10px;
}

.custom-search {
	border: none;
	padding: 10px 15px;
	background-color: rgb(46, 49, 52);
	color: rgb(208, 208, 208);
	width: 100%;
	font-weight: 300;
	font-size: 16px;
	text-transform: capitalize;
	padding-right: 30px;
}

.search-container {
  opacity: 0;
  visibility: hidden;
  width: 0px;
  transition: all 0.2s ease-out;
  position: relative;
}

.search-container.toggle {
  opacity: 1;
  visibility: visible;
  width: 350px;
  padding-left: 15px;
  padding-right: 40px;
  margin-right: 15px;
}

.ajax-search-container {
	width: 0px;
	background: #38414A;
	min-height: 0px;
	position: absolute;
	top: 47px;
	transition: min-height 0.2s ease-out;
	border-radius: 3px;
	box-shadow: 0 .5rem 1rem rgba(0, 0, 0, 0.05);
	opacity: 0;
	visibility: hidden;
}

.ajax-search-container.searching {
	position: absolute;
	opacity: 1;
	visibility: visible;
	width: 98%;
}

.input-clear i {
	position: absolute;
	top: 13px;
	font-size: 15px;
	right: 0;
	padding-right: 5px;
	color: rgb(116, 116, 116);
}

.modal {
	background: rgba(0, 0, 0, 0.89);
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-out;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.modal.open {
	opacity: 1;
	visibility: visible;
}

.modal-wrapper {
	width: 100%;
	background: rgb(255, 255, 255);
	height: 100%;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	color: rgb(0, 0, 0);
}

.message-modal {
	width: 650px;
	height: auto;
}

.search-modal {
	width: 80%;
	height: auto;
}

.modal-header {
	color: rgb(0, 0, 0);
	font-size: 24px;
	background: rgb(255, 255, 255);
	border-bottom: 1px solid #ebebeb;
	border-radius: 5px;
	display: flex;
	font-weight: 300;
}

.modal-title {
	padding: 15px 30px;
	flex: 1 auto;
	user-select: none;
}

.modal-close {
  flex: 1 auto;
  display: flex;
  justify-content: flex-end;
  align-self: center;
  padding: 0px 20px;
}

.modal-close i.material-icons {
  color: #323232;
}

.modal-content {
	display: flex;
	flex-direction: column;
	padding: 20px 30px;
}

.input-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px 0px;
}

.input-group .custom-label {
	font-size: 20px;
	font-weight: 300;
	user-select: none;
}


.custom-input-styler {
	padding: 10px 15px;
	margin-top: 10px;
	border-radius: 3px;
	border: 1px solid #ebebeb;
	background: rgb(255, 255, 255);
	color: #000000;
}

.modal-control {
  display: flex;
	flex-direction: row;
	padding: 20px 30px;
	border-top: 1px solid #ebebeb;
}

.button-group {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  gap: 10px;
}

.custom-btn {
	padding: 10px 25px;
	font-size: 15px;
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	border-radius: 5px;
	border:none;
}

.btn-primary {
	background: rgb(0, 100, 255);
	color: #fff;
}

.btn-close {
	color: rgb(255, 255, 255);
	background: #6c757d;
}

.btn-primary:hover {
	background: rgb(4, 92, 228);
	color: rgb(255, 255, 255);
}

.btn-close:hover {
	background: #5b6269;
	color: rgb(255, 255, 255);
}

.dashboard-main-content {
	width: 100%;
	margin-top: 30px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}

.card {
	height: 300px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 5px;
	box-shadow: 0 0.75rem 6rem rgba(56, 65, 74, 0.14);
	margin-bottom: 20px;
	margin-right: 20px;
}

.border-gradient {
  border: 10px solid;
  border-image-slice: 1;
  border-width: 3px;
  border-radius: 5px;
}

.border-gradient-purple {
	border-image-source: linear-gradient(to left, #3834b5, #572689);
}

.ajax-container {
	width: 100%;
}

.ajax-search-content {
	color: rgb(182, 178, 178);
}

.ajax-search-content > div {
	padding: 15px;
}

.search-title {
	font-size: 12px;
}

div.search-list {
	padding: 0px;
}

.found-item {
	font-size: 14px;
	transition: background 0.2s ease-out;
	cursor: pointer;
	padding: 10px 15px;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 5px;
}

.found-item:hover {
	background: #46505A;
}

.icon-container {
	display: flex;
}

.found-title {
	margin-top: 1px;
}

.sidebar {
	display: flex;
	flex-direction: column;
	margin-top: 30px;
	background: white;
	height: 100%;
	border-radius: 5px;
}

.sidebar a {
	color: #5a6072;
	display: flex;
	gap: 10px;
	align-items: center;
	padding: 10px 30px;
	font-size: 14px;
}

.sidebar a i {
	font-size: 18px;
}

.sidebar-header {
	padding: 30px 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px
}

.user-image {
	background: #e6e6e6;
	height: 56px;
	width: 56px;
	border-radius: 99999px;
}

.user-role {
	color: #9ea2a7;
	font-size: 13px;
}

.sidebar-apps-header {
	font-size: 12px;
	color: #70747f;
	padding: 10px 25px;
}

.sidebar a:hover {
	color: #2873d4;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.toggle-menu {
	display: none;
}

@media screen and (max-width: 992px) {
	.card {
		width: 100%;
	}
	.search-container {
		position: absolute;
		left:0;
		top:60px;
	}
	.custom-search {
		padding: 15px 15px;
		padding-right: 50px;
	}
	.search-container.toggle {
		padding-left: 0px; 
		padding-right: 0px;
		margin-right: 15px;
		width: 100%;
	} 
	.input-clear i {
		top: 16px;
		padding-right: 15px;
	}
	.ajax-search-container {
		top: 47px;
		border-radius: 0px;
	}
	
	.ajax-search-container.searching {
	width: 100%;
	}
}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 576px) {
	.row {
		display: block;
	}
	.dashboard-flex-layout {
		display: flex;
		margin-left: 0px;
	}
	.sidebar {
		margin-top: 0px;
		height: 100%;
		box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.06);
	}
	.custom-wrap {
		max-width: 100%;
	}
	.logo-container {
		padding-left: 15px;
	}
	.nav-right-side, .nav-left-side {
		padding: 0px 15px;
	}
	.nav-container {
		position: relative;
		width: 100%;
	}
	.fixed-sidebar {
		position: fixed;
		height: 100%;
		width: 50%;
		opacity: 0;
		visibility: hidden;
		z-index: 1;
		transition: margin-left 0.2s ease-out, visibility 0.2s ease-out, opacity 0.2s ease-out;
		margin-left:-300px;
	}
	.fixed-sidebar.show {
		opacity: 1;
		visibility: visible;
		margin-left:0px;
	}
	.toggle-menu {
		display: block;
	}
	.toggle-announcement {
		display: none;
	}
	.toggle-help {
		display: none;
	}
}
