.img_profile{
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid #fff;
	box-shadow: 0px 1px 3px 3px var(--color-secondary-blur);
	-webkit-box-shadow: 0px 1px 3px 3px var(--color-secondary-blur);
}
.img_profile .fa{
	margin-top: .8rem !important;
	height: 4rem !important;
	justify-content: center !important;
}
.img_inventory{
	width: 100%;
	height: 6rem;
	border-radius: 4px;
	overflow: hidden;
}
.aside_general{
	width: 220px;
	/* height: 100%; */
	position: fixed;
	overflow-y: scroll;
}
/* ::-webkit-scrollbar{
width: 2px;
}
::-webkit-scrollbar-thumb{
background: transparent !important;
} */
.img_general{
	width: 80%;
}
.aside_general .top_general{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 1rem;
	z-index:100 !important;
}
.aside_general .logo_general{
	display: flex;
	/* gap: .8rem; */
}

.aside_general .logo_general img{
	margin-left: 20px;
}

.aside_general .close{
	display: none;
}
/* navbar dashboard */
.aside_general .sidebar_general{
	display: flex;
	flex-direction: column;
	height: 100%;
	/* position: relative; */
	top: 3rem;
}

.aside_general .sidebar_general a{
	display: flex;
	color: var(--color-marine);
	margin-left: 2rem;
	gap: 1rem;
	align-items: center;
	position: relative;
	height: 3rem;
	transition: all 300ms ease;
}
/*.aside_general .sidebar_general a:last-child{
position: absolute;
bottom: 2rem;
width: 100%;
}*/
.aside_general .sidebar_general .link_general.active{
	background: var(--color-secondary-blur);
	color: var(--color-secondary);
	margin-left: 0;
}
.aside_general .sidebar_general .link_general.active::before{
	content: '';
	width: 6px;
	height: 100%;
	background: var(--color-secondary);
}
.aside_general .sidebar_general .link_general.active i{
	color: var(--color-secondary);
	margin-left: calc(1rem - 3px);
}
.aside_general .sidebar_general a:hover{
	color: var(--color-secondary);
}
.aside_general .sidebar_general a i{
	transition: all 300ms ease;
}
.aside_general .sidebar_general a:hover i{
	margin-left: 1rem;
}
.card_seccion{
	position: relative;
	width: 100%;
	/* padding-top: 20px; */
}

.card_info{
	position: relative;
	background: #FFF;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 7px 25px rgba(0, 0, 0, 0.08);
	display: flex;
	cursor: pointer;
	justify-content: space-between;
}
.card_seccion .card_info .card_number{
	position: relative;
	font-weight: 500;
	font-size: 2.4em;
}
.card_seccion .card_info .card_title{
	font-size: 1em;
	margin-top: 5px;
}
.card_seccion .card_info .card_icon{
	font-size: 3.3em;
	color: #CCC;
}
.search{
	position: relative;
	width: 100%;
	/* margin: 0 10px; */
}
.search label{
	position: relative;
	width: 100%;
}
.search label input{
	width: 100%;
	height: 40px;
	border-radius: 40px;
	/* padding: 5px 20px; */
	padding-left: 45px;
	font-size: 18px;
	outline: none;
	border: 1px solid #ccc;
}
.search label i{
	position: absolute;
	top: 0;
	padding-top: 19px;
	left: 12px;
	font-size: 1.2em;
}
.right{
	margin-top: 1.4rem;
}
.right .top_general{
	display: flex;
	justify-content: end;
}
.right .top_general span{
	display: none;
}
.right .top_general .profile{
	display: flex;
	gap:2rem;
	text-align: right;
}
.top_left{
	margin-top: 1.4rem;
}
.top_left .top_general{
	display: flex;
	justify-content:flex-start;
}
.top_left .top_general span{
	display: none;
}
.top_left .top_general .profile{
	display: flex;
	/* gap:2rem; */
	text-align: right;
}

/****************** MEDIA QUERY'S ************************/
@media (max-width:768px){
	.navbar{
		padding-top: 1rem !important;
		padding-right: 1rem !important;
	}
	.contentBox{
		width: 300px;
		height: auto;
		flex-direction: column;
		z-index: 10000 !important;
	}
	.contentBox .imgBox::before{
		content: '';
		position: absolute;
		width: 150px;
		height: 150px;
		background: #F7F7F7;
		border-radius: 50%;
	}
	.contentBox .imgBox img{
		position: relative;
		max-width: 100px;
		margin-left: 20px;
		z-index: 1 !important;
	}
	.contentBox .imgBox{
		height: 100px;
		justify-content: left;
		margin-left: 70px;

		transform: translateY(-50px);
	}
	.contentBox .imgBox::before{
		background: #fff;
	}
	.contentBox .content{
		height: auto;
		text-align: center;
		padding: 20px;
		padding-top: 0;
	}
}
@media screen and (max-width:1200px){
	.aside_general .logo_general .img_general{
		display: none;
	}
	.aside_general .sidebar_general h6{
		display: none;
	}
	.aside_general .sidebar_general a{
		width: 5.6rem;
	}

	/*.aside_general .sidebar_general a:last-child{
	position: relative;
	margin-top: 1.8rem;
	}*/
}
@media screen and (max-width:768px){
	.container_general{
		width: 100%;
	}
	.aside_general{
		position: fixed;
		left: -100%;
		background: #FFF !important;
		width: 18rem !important;
		z-index: 3 !important;
		box-shadow: .1rem .1rem .1rem var(--color-snow);
		height: 100%;
		padding-right: 1.8rem;
		display: none;
		animation: showMenu 400ms ease forwards;
	}

	@keyframes showMenu {
		to{
			left: 0;
		}
	}
	.aside_general .logo_general{
		margin-left: 1rem;
	}
	.aside_general .logo_general .img_general{
		display: inline;
	}
	.aside_general .sidebar_general h6{
		display: inline;
	}
	.aside_general .sidebar_general a{
		width: 100%;
		height: 3.4rem;
	}
	.padding_mobile{
		padding: 30px 0 0 0;
	}
	.aside_general .close{
		display: inline-block;
		cursor: pointer;
		margin-top: 8px;
	}
/*	.right{
		width: 94%;
		margin: 0 auto 4rem;
	}*/
	.right .top_general{
		position: fixed;
		top: 0;
		left: 0;
		align-items: center;
		padding: 0 .8rem;
		height: 4.6rem;
		background: #FFF;
		width: 100%;
		margin: 0;
		z-index: 2;
		box-shadow: .1rem .1rem .1rem var(--color-snow);
	}
	.right .profile .info_general{
		/* display: none; */
	}
	.right .top_general span{
		display: inline-block;
		cursor: pointer;
		color: var(--color-secondary);
		position: absolute;
		font-size: 1.4rem;
		left: 1rem;
	}
	.top_left{
		width: 100%;
		margin: 0 auto 4rem;
	}
	.top_left .top_general{
		position: fixed;
		top: 0;
		left: 0;
		align-items: center;
		padding: 0 .8rem;
		height: 4.6rem;
		background: #FFF;
		width: 100%;
		margin: 0;
		z-index: 2;
		box-shadow: .1rem .1rem .1rem var(--color-snow);
		/* display: flex; */
		justify-content:flex-start;
	}
	.top_left .top_general{
	}
	.top_left .profile .info_general{
		display: none;
	}
	.top_left .top_general span{
		position: relative;
		display:inline-block;
		cursor: pointer;
		color: var(--color-secondary);
		font-size: 1.4rem;
		left: 1rem;
		/* text-align: center; */
	}
	.margin_mobile{
		padding-top: 6rem;
	}
	.padding_mobile_nav{
		padding: .4rem;
	}
	.none_padding{
		margin-bottom: -80px !important;
	}

}
@media (min-width: 768px){
	.none_desktop{
		display: none;
	}
}
/* finish query's */
.no_search{
	margin-top: 60px;
}
.round_profile{
	/* border-radius: 50%; */
	width: auto !important;
	height: 150px;
	/* background: #F8F9FA !important; */
	border: 7px solid #fff;
	box-shadow: 0px 1px 6px 6px  rgba(244,132,118,0.8);
	-webkit-box-shadow: 0px 1px 3px 3px  rgba(244,132,118,0.8);
}
.round-icon{
	color: var(--color-secondary);
	margin-left: 20px;
	margin-top: 36px;
}
ul{
	padding: 0;
	list-style: none;
}
.margin-3{
	margin-top: 3rem;
}
.overflow_hidden{
	overflow: hidden;
}
.l-header{
	width: 100%;
	/* position: fixed; */
	top: 0;
	left: 0;
	z-index: 2;
	background-color: #FDFDFD;
}
.nav{
	height: 3.4rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

@media screen and (max-width: 768px){
	.l-header{
		position: fixed;
	}
	.nav{
		/* margin-bottom: 10px; */
	}
}

.nav_item{
	margin-bottom: 1.5rem;
}
.nav_link, .nav_logo, .nav_toggle{
	color: rgba(0,0,0,.5);
	font-weight: var(--font-semi-bold);
}
.nav_link{
	transition: .3s;
}
.nav_link:hover{
	color: #ff8772;
}
.nav_toggle{
	font-size: 1.3rem;
	cursor: pointer;
}
.show-menu{
	top: 4rem;
}

@media screen and (min-width: 768px){
	.section{
		padding-top: 5.2rem;
	}
	.nav{
		height: calc(5rem);
	}
	.nav_list{
		display: flex;
		align-items: center;
	}
	.nav_item{
		margin-left: 2.4rem !important;
		margin-bottom: 0;
	}
	.nav_toggle{
		display: none;
	}
}
.dropdown-item {
	display: block;
	width: 100%;
	clear: both;
	font-weight: 400;
	color: rgba(0,0,0,.5);
	text-align: left;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	padding: .6rem 1.5rem;
	background-color: #FDFDFD;
	font-size: 13px !important;
}

@media(min-width: 1400px){
	.dropdown-item{
		padding: 1rem 1.5rem;
	}
}
@media(max-width: 768px){
	.display_mobile {
		display: none;
	}
	.padding_mobile_nav{
		padding: 3rem 0 0 0;
	}
	.padding_left_mobile{
		padding-left: 1rem !important;
	}
	.padding_top{
		padding-top: 4.5rem !important;
	}
}

ul{
	padding: 0;
	list-style: none;
}
.margin-3{
	margin-top: 3rem;
}
.overflow_hidden{
	overflow: hidden;
}
.header_public{
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #FDFDFD;
}
.scroll-header{
	box-shadow: 0 1px 4px rgba(0,0,0,.28);
}
::placeholder {
	color: #ccc !important;
}
.aside_general::-webkit-scrollbar {
	display: none !important;
}
