/*=====================================================
					Tipografia
======================================================*/
@font-face {
	font-family: "RobotoCondensedLight";
	src: url("../librerias/fonts/robotocondensed-light.ttf"),
		url("../librerias/fonts/robotocondensed-light.eot"),
		url("../librerias/fonts/robotocondensed-light.woff"),
		url("../librerias/fonts/robotocondensed-light.woff2"),
		url("../librerias/fonts/robotocondensed-light.svg");
}

@font-face {
	font-family: "RobotoRegular";
	src: url("../librerias/fonts/roboto-regular.ttf"),
		url("../librerias/fonts/roboto-regular.eot"),
		url("../librerias/fonts/roboto-regular.woff"),
		url("../librerias/fonts/roboto-regular.woff2"),
		url("../librerias/fonts/roboto-regular.svg");
}

@font-face {
	font-family: "OswaldLight";
	src: url("../librerias/fonts/oswald-light.ttf"),
		url("../librerias/fonts/oswald-light.eot"),
		url("../librerias/fonts/oswald-light.woff"),
		url("../librerias/fonts/oswald-light.woff2"),
		url("../librerias/fonts/oswald-light.svg");
}

/*=====================================================
					Estilos generales
======================================================*/
:root {
	--color-text: #070700;
	--primary-color: #2B2B2C;
	/*--acent-color: #d8ca0b;*/
	--acent-color: #FFC500;
}

html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-family: "RobotoRegular";
	position: relative;
	background-color: #fff;
}

.text-condensedLight {
	font-family: "RobotoCondensedLight";
}

.text-center {
	text-align: center;
}

.tittles {
	font-family: "OswaldLight";
}

.mdl-textfield {
	width: 100%;
}

.full-width {
	margin: 0;
	padding: 0;
	width: 100%;
	box-sizing: border-box;
}

.list-unstyle {
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

.img-responsive {
	width: 100%;
	height: auto;
}

.table-responsive {
	overflow: auto;
}

.divider-menu-h {
	height: 0;
	border-top: 1px solid rgba(255, 255, 255, .09);
	width: 85%;
	margin: 0 auto;
}

.cover {
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}

.mdl-list__item-avatar {
	line-height: 40px;
	text-align: center;
	font-size: 30px;
}

.table-responsive {
	width: 100%;
	height: auto;
	overflow-x: scroll;
	position: relative;
}

/*====== paneles*/
.panel {
	height: auto;
}

.panel-tittle {
	height: 45px;
	display: block;
	line-height: 45px;
	color: #fff;
	font-size: 20px;
}

.panel-content {
	display: block;
	padding: 10px;
}

/*====== encabezados de paginas*/
.header-well,
.header-well-icon,
.header-well-text {
	min-height: 150px; /*espacio entre el titulo y las pestañas*/
	height: auto;
}

.header-well {
	position: relative;
}

.header-well-icon,
.header-well-text {
	position: absolute;
	top: 0;
	color: #333;
}

.header-well-icon {
	left: 0;
	width: 25%;
}

.header-well-icon i,
.header-well-text p {
	position: absolute;
	top: 50%;
	display: block;
	width: 100%; /*MOVER EN X LA IMAGEN DE LOS TITULOS DE LOS MODULOS*/
	transform: translateY(-50%); /*MOVER EN Y LA IMAGEN DE LOS TITULOS DE LOS MODULOS*/
	
}


.header-well-icon i {
	text-align: center;
	/*font-size: 60px; TAMAÑO DE LAS IMAGENES DE LOS TITULOS DEL MODULO*/
	font-size: 100px; 
}

.header-well-text {
	right: 0;
	width: 75%;
}

/*.header-well-text-cambio{
	right: 0;
	width: 15%;
	position: absolute;
	top: 30px;
	color: #333;
}*/

.header-well-text p {
	font-size: 25px;
	margin: 0;
	padding: 0;
}

/*=== Estilos para las tablas
thead {
	background-color: #FFC500;
}*/
/*====== Area de notificacion*/
.container-notifications{
    position: fixed;
	height: 100%;
	top: 0;
	left: 0;
	pointer-events: none;
	opacity: 0;
    z-index: 997;
}
.container-notifications-bg{
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: rgba(0,0,0,.5);
}
.container-notifications-show{
	pointer-events: auto;
	opacity: 1;
}
.NotificationArea{
	box-sizing: border-box;
    background-color: #fff;
    height: 100%;
    width: 300px;
    top: 0;
    z-index: 999;
    right: -300px;
    transition: all .3s ease-in-out;
    position: absolute;
}
.NotificationArea-title{
	font-size: 21px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    background-color: var(--primary-color);
    box-sizing: border-box;
}
.NotificationArea-title i{
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 25px;
    cursor: pointer;
}
.Notification,
.Notification-icon,
.Notification-text{
    margin: 0;
    padding: 0;
    height: 80px;
    box-sizing: border-box;
}
.Notification{
    position: relative;
    display: block;
    width: 300px;
    border-top: 1px solid #f3f3f3;
    color: #2b2b2c;
    font-size: 14px;
    transition: all .3s ease-in-out;
}
.Notification:hover{
	background-color: rgba(0,0,0,.07);
}
.Notification small{
    color: #BDBDBD;
}
.Notification-icon,
.Notification-text{
    position: absolute;
    top: 0;
}
.Notification-icon{
    width: 80px;
    left: 0;
    box-sizing: border-box;
}
.Notification-icon i{
    height: 50px;
    width: 50px;
    line-height: 50px;
    margin-left: 15px;
    margin-top: 15px;
    text-align: center;
    font-size: 20px;
    color: #fff;
    background-color: #D9534F;
    border-radius: 50%;
}
.Notification-text{
    width: 220px;
    right: 0;
}
.Notification-text p{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.NotificationArea-show{
    right: 0;
}


/*====== Backgrouns color*/
.bg-primary {
	background-color: #FFC500 !important;
}

.bg-success {
	background-color: #FFC500 !important;
}

.bg-danger {
	background-color: #d9534f !important;
}

.bg-info {
	background-color: #5bc0de !important;
}

/*=============Estilos login*/
.login-wrap {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text);
	background-image: url(../assets/img/fontLogin.jpg);
}

.container-login {
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	height: auto;
	margin: 0;
	padding: 30px;
	background-color: rgba(255, 255, 255);
	border-radius: 5px;
}

/*=============Estilos barra superior*/
.navBar {
	background-color: var(--primary-color);
	height: 45px;
	color: #fff;
}

.navBar-options {
	line-height: 45px;
	height: 45px;
	position: absolute;
	width: 100%;
	top: 0;
	right: 0;
	padding: 0;
	transition: all .3s ease-in-out;
}

.navBar-options-change {
	width: 100%;
}

.navBar-options .btn-menu,
.navBar-options-list {
	line-height: 45px;
	position: absolute;
	top: 0;
	height: 45px;
	margin: 0;
	padding: 0;
}

.navBar-options .btn-menu {
	width: 40px;
	left: 0;
	font-size: 23px;
	cursor: pointer;
	user-select: none;
	text-align: center;
	outline: none;
	margin-left: 9px;
}

.navBar-options-list {
	right: 9px;
}

.navBar-options-list .noLink {
	cursor: inherit !important;
}

.navBar-options-list ul {
	height: 45px;
}

.navBar-options-list ul li {
	height: 45px;
	line-height: 45px;
	cursor: pointer;
	display: inline-block;
	padding: 0 7px;
	font-size: 21px;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.navBar-options-list ul li {
	outline: none;
}

.navBar-options-list ul li figure,
.navBar-options-list ul li figure img {
	margin: 0;
	padding: 0;
	padding-top: 0;
	margin-top: 0;
	box-sizing: border-box;
}

.navBar-options-list ul li figure {
	height: 45px;
}

.navBar-options-list ul li figure img {
	border: 1px solid #E1E1E1;
	border-radius: 50%;
	width: 39px;
	height: 39px;
	margin-bottom: 3px;
}

.navBar-options-list ul li i.zmdi-notifications-active {
	color: #FF4081;
}

/*=============Estilos en comun navegacion lateral y contenido pagina*/
.navLateral,
.navLateral-body,
.navLateral-bg {
	position: absolute;
	top: 0;
	height: 100%;
}

/*=============Estilos navegacion lateral*/
.navLateral {
	left: 0;
	width: 300px;
	z-index: 100;
	/*transition: all .06s ease-in-out; /*VELOCIDAD EN QUE SE ABRE EL MENU LATERAL Y SE OCULTA estaba transition: all .3s ease-in-out;*/
	background-image: url("../assets/img/FontNavLateral.jpg");
	background-size: cover;
	color: #fff;
	overflow: hidden;
}

.navLateral-change {
	pointer-events: none;
	opacity: 0;
	width: 0;
}

.navLateral-body {
	z-index: 82;
	left: 0;
	padding-bottom: 30px;
	background-color: rgba(43, 43, 44, .9);
}

.navLateral-body-logo {
	height: 45px;
	line-height: 45px;
	color: #fff;
	width: 100%;
	font-size: 18px;
	background-color: var(--acent-color);
}

.navLateral-body-logo .zmdi-close {
	width: 0;
	height: 0;
	pointer-events: none;
	opacity: 0;
}

.navLateral-body-cl,
.navLateral-body-cr {
	box-sizing: border-box;
	height: 77px;
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
}

.navLateral-body-cl {
	width: 30%;
}

.navLateral-body-cl img {
	width: 57px;
	height: 57px;
	margin: 0 auto;
	display: block;
	margin-top: 10px;
}

.navLateral-body-cr {
	width: 70%;
	font-family: "RobotoCondensedLight";
}

.navLateral-body-cr span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	width: 100%;
}

.navLateral-body-tittle-menu {
	text-align: center;
	padding: 30px 0;
}

.navLateral-body-tittle-menu img {
	max-width: 70px;
}

.menu-principal li,
.menu-principal li a {
	display: block;
}

.menu-principal li a {
	height: 45px;
	color: #fff;
	position: relative;
	/*transition: all .3s ease-in-out;*/
}

.menu-principal>li>a:hover {
	background-color: var(--acent-color);
}

.menu-principal li a div.navLateral-body-cl,
.menu-principal li a div.navLateral-body-cr {
	height: 45px;
	line-height: 45px;
}

.menu-principal li a div.navLateral-body-cl {
	text-align: center;
	font-size: 20px;
}

.btn-subMenu span {
	position: absolute;
	top: 0;
	right: 7px;
	line-height: 45px;
	height: 45px;
	font-size: 19px;
}

.sub-menu-options {
	height: 0;
	overflow-y: hidden;
	overflow-x: hidden;
	background-color: rgba(255, 255, 255, .1);
	/*transition: all .3s ease-in-out;*/
}

.sub-menu-options-show {
	height: auto;
	overflow-y: auto;
	overflow-x: hidden;
}

/*=============Estilos contenido pagina*/
.pageContent {
	padding-left: 300px;
	width: 100%;
	height: 100%;
	/*overflow: hidden;*/
	z-index: 77;
	background-color: rgb(251, 251, 251);
	/*transition: all .1s ease-in-out;*/
}

.pageContent-change {
	padding-left: 0;
}

.inputFormularioDetallesVentas{
	font-size:medium; border: 0;
	background-color: #FBFBFB;
	outline: none;
}

/*===ESTILOS PARA LOS NOMBRES DE LOS INPUT =========== */
.mdl-textfield__label {
    bottom: 0;
    color: rgba(0,0,0,.45);
    font-size: 16px;
    left: 0;
    right: 0;
    pointer-events: none;
    position: absolute;
    display: block;
    top: 24px;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
}


/*=============Estilos para los avatar de fomularios*/
.avatarImg {
	height: 45px;
	width: 45px;
}

.avatarRefacciones {
	height: 70px;
	width: 75px;
}

/*=====================================================
					Estilos home
======================================================*/
/*=============Azulejos o accesos directos(Tiles)*/
.tile {
	border: 1px solid #E1E1E1;
	height: 140px;
	width: 25%;
	/*width: 30%;*/
	margin: 0 1%;
	position: relative;
	transition: all .3s ease-in-out;
	overflow: hidden;
	cursor: pointer;
	margin-bottom: 20px;
	display: inline-block;
}

.tile:hover .tile-text span {
	color: #000000;
}

.tile:hover .tile-icon {
	transform: scale(1.2) translate(-10px, -10px);
}

.tile:hover .tile-icon {
	color: rgb(255, 197, 0);
}

.tile-text {
	display: block;
	height: 140px;
	width: 100%;
	box-sizing: border-box;
}

.tile-text span,
.tile-icon {
	position: absolute;
	color: rgba(0, 0, 0, .3);
	transition: all .3s ease-in-out;
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.tile-text span {
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	display: block;
	font-size: 25px;
	z-index: 2;
}

.tile-icon {
	bottom: 9px;
	right: 14px;
	font-size: 90px;
	line-height: 80px;
	z-index: 1;
}


/*=====================================================
	Estilos products y previsualizacion de imagen
======================================================*/
.menu-categories ul li {
	display: inline-block;
	margin: 5px 7px;
}

.menu-categories ul li a {
	text-decoration: none;
	font-size: 19px;
	font-family: "RobotoCondensedLight";
}

.product-card {
	display: inline-block;
	margin: 5px;
	width: 300px;
	text-align: left;
}

.product-card .mdl-card__actions button,
.product-card .mdl-card__actions a {
	float: right;
}

/*Estilos para el cuadro de previsualizacion de imagen*/
.prevPhoto {
	display: flex;
	justify-content: space-between;
	width: 180px;
	height: 170px;
	border: 1px solid #CCC;
	position: relative;
	cursor: pointer;
	background: url(../assets/img/carga-imagen.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin: auto;
}

.prevPhoto label {
	cursor: pointer;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.prevPhoto img {
	width: 100%;
	height: 100%;
}

.upimg,
.notBlock {
	display: none !important;
}

.errorArchivo {
	font-size: 16px;
	font-family: "RobotoRegular";
	color: #cc0000;
	text-align: center;
	font-weight: bold;
	margin-top: 10px;
}

.delPhoto {
	color: #FFF;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	width: 25px;
	height: 25px;
	background: red;
	position: absolute;
	right: -10px;
	top: -10px;
	z-index: 10;
}

#tbl_list_productos img {
	width: 50px;
}

.imgProductoDelete {
	width: 175px;
}


/*=====================================================
	ESTILOS PARA LOS BOTONES ALERT DE LOS REGISTRAR
======================================================*/

.alert{
	width: 100%;
	background: #66E07D66;
	border-radius: 6px;
	margin: 20px auto;
}

.msg_error{
	color: #e65656;
}

.msg_save{
	color: #126e00;
}

.alert p{
	padding: 10px;
}


/*=====================================================
					Media  Queries
======================================================*/
/*Phone*/
@media (max-width: 479px) {
	.hide-on-phone {
		width: 0;
		height: 0;
		pointer-events: none;
		opacity: 0;
	}

	.visible-on-phone {
		pointer-events: auto;
		opacity: 1;
	}

	.visible-on-tablet,
	.visible-on-desktop {
		pointer-events: none;
		opacity: 0;
		width: 0;
		height: 0;
	}

	.header-well-icon,
	.header-well-text {
		position: relative;
		display: block;
		width: 100%;
		text-align: center;
	}

	.tile {
		width: 97%;
	}

	.product-card {
		width: 100%;
		margin: 0;
	}
	
	.modal-title {
		margin-bottom: -5px;
		line-height: 2;
		margin-top: -7px;
		font-family:"RobotoCondensedLight";
	}
}

@media (max-width: 800px) {
	.navLateral {
		width: 100%;
		position: fixed;
		pointer-events: none;
		opacity: 0;
		background-image: none;
	}

	.navLateral-bg {
		left: 0;
		background-color: rgba(0, 0, 0, .5);
		z-index: 81;
	}

	.navLateral-body {
		width: 300px;
		background-color: #333;
	}

	.navLateral-body-logo .zmdi-close {
		position: absolute;
		top: 0;
		left: 11px;
		padding: 0 9px;
		cursor: pointer;
		height: 45px;
		line-height: 45px;
		pointer-events: auto;
		opacity: 1;
	}

	.navLateral-change {
		pointer-events: auto;
		opacity: 1;
	}

	.pageContent {
		width: 100%;
		padding-left: 0;
	}
	.modal-title {
		margin-bottom: -5px;
		line-height: 2;
		margin-top: -7px;
		font-family:"RobotoCondensedLight";
	}
}

/*Tablet*/
@media (min-width: 480px) and (max-width: 839px) {
	.hide-on-tablet {
		width: 0;
		height: 0;
		pointer-events: none;
		opacity: 0;
	}

	.visible-on-tablet {
		pointer-events: auto;
		opacity: 1;
	}

	.visible-on-desktop,
	.visible-on-phone {
		pointer-events: none;
		opacity: 0;
		width: 0;
		height: 0;
	}

	.tile {
		width: 47%;
	}
	.modal-title {
		margin-bottom: -5px;
		line-height: 2;
		margin-top: -7px;
		font-family:"RobotoCondensedLight";
	}
}

/*Desktop*/
@media (min-width: 840px) {
	.hide-on-desktop {
		width: 0;
		height: 0;
		pointer-events: none;
		opacity: 0;
	}

	.visible-on-desktop {
		pointer-events: auto;
		opacity: 1;
	}

	.visible-on-tablet,
	.visible-on-phone {
		pointer-events: none;
		opacity: 0;
		width: 0;
		height: 0;
	}

}


	/*CUANDO LA CAMPANA TENGA UNA NOTIFICACION SE ACTIVARA LA ANIMACION */
	.tiempoAnimacion{
		animation: wobble 2s infinite;
	}

	/*TITULOS COMO "DATOS GENERALES" DE LOS FORMULARIOS DE REGISTROS*/
	legend {
		display: block;
		width: 100%;
		max-width: 100%;
		padding: 0;
		margin-bottom: 0.5rem;
		font-size: 1rem;
		line-height: inherit;
		color: inherit;
		white-space: normal;
	}
	/*CAMBIA EL COLOR DE FONDO DE LOS ENCABEZADOS DE LOS MODALES*/
	.modal-header {
		background-color: #FFC500;
	}

