* {
	margin: 0;
	padding: 0;
	color: #f2f2f2;
	box-sizing: border-box;
	font-family: 'Montserrat', sans-serif;
}

body {
	background: #f2f2f2;
}

/* Products */
div.contProducts {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

div.prdcontenido {
	width: 230px;
	height: 300px;
	margin: 0 5px 5px 5px;
	background-color: #FFFFFF;
	position: relative;
	border-radius: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	border: rgba(187, 187, 187, 0,40);
	display: flex;
}

.prdcontenido:hover {
	box-shadow: 2px 2px 8px rgba(47, 47, 47, 0.40);
	cursor: pointer;
}

.time {
	position: absolute;
	top: 8px;
	right: 20px;
	color: #002a45;
	font-weight: bold; 
}

.img-box {
	width: 230px;
	height: 190px;
	margin-top: -50px;
}

.img-box img {
	width: auto;
	max-width: 90%;
	height: 100%;
}

.detail {
	position: absolute;
	font-weight: bold;
	color: #323232;
	font-size: 16px;
	margin-top: 170px; 
}

.pricebusq {
	position: absolute;
	font-size: 20px;
	color: #006924;
	text-decoration: none;
	font-weight: bold;
	margin-top: 250px; 
}

/* Users */
table.tab-users {
	width: 1000px;
}

div.usercard {
	width: 290px;
	height: 150px;
	margin: 0 15px 10px 15px;
	border-radius: 10px;
	background: #ffffff;
}

div.usercard a {
	text-decoration: none;
}

div.photo-usu-box {
	display: flex;
	height: 65%;
}

div.usercard-img {
	margin: 20px 0 0 10px;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	overflow: hidden;
}

div.usercard-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

div.cont-info-user p {
	font-weight: bold;
	margin: 20px 0 0 10px;
	color: #454545;
}

div.usercard button.btn-agregar {
	height: 35px;
	width: 130px;
	border: none;
	margin-left: 85px;
	border-radius: 8px;
	color: #ffffff;
	font-weight: bold;
	background: #6299e5;
	cursor: pointer;
}

div.usercard:hover {
	box-shadow: 2px 2px 8px rgba(47, 47, 47, 0.40);
	cursor: pointer;
}

/* Empty container */
div.emptycontainer {
	width: 950px;
	height: 550px;
	margin: 0 15px 0 15px;
	border-radius: 10px;
	background: #ffffff;
	display: none;
}

div.emptycontainer h2 {
	color: #454545;
	padding-top: 25%;
}

/* Content */
div.cont-bus-products {
	display: flex;
	margin: 20px;
}

div.contData {
	width: 80%;
}

div.filters {
	background: #ffffff;
	width: 20%;
	max-height: 550px;
	min-height: 550px;
	margin-right: 10px;
	color: #454545;
	border-radius: 10px;
}

div.filters h3, div.filters p, div.filters label {
	color: #454545;
}

div.filters h3 {
	margin: 10px;
}

div.filters p {
	font-weight: bold;
	margin: 20px 0 0 10px;
}

div.filters label {
	margin: 0 0 0 20px;
}

input.preciomin, input.preciomax {
	width:  auto;
	min-width: 20px;
	max-width: 100px;
	height: 25px;
	padding: 5px;
	color: #454545;
	border-radius: 5px;
	border: 1px solid gray;
}

label.containercantidad input {
	border: 1px solid red;
}

#contrang {
	margin-left: 5px;
}

select#estadousu, select#estadousuSel {
	width: 150px;
	height: 25px;
	color: #454545;
	border-radius: 5px;
	border: 1px solid gray;
}

select#estadousu option, select#estadousuSel option {
	color: #454545;
}

div.containerbuscar {
	padding-top: 50px;
}

div.filters input[type="submit"] {
	height: 35px;
	width: 130px;
	border: none;
	border-radius: 8px;
	color: #ffffff;
	font-weight: bold;
	background: #6299e5;
	cursor: pointer;
}

/* Paginacion */
div.container-pagination {
	margin-top: 30px;
}

a.numPag, a.enPag, a.btnsiguiente, a.btnanterior {
	text-decoration: none;
}

.numPag {
	margin: 3px;
	font-size: 18px;
	padding: 8px;
	border: 1px solid gray;
	border-radius: 10px;
	color: #454545;
}

.enPag {
	margin: 3px;
	font-size: 18px;
	padding: 8px;
	background-color: #6299e5;
	color: white;
	border: 1px solid #6299e5;
	border-radius: 10px;
}

.numPag:hover, .btnsiguiente:hover, .btnanterior:hover {
	border: 2px solid gray;
}

.btnsiguiente, .btnanterior {
	padding: 8px;
	border: 1px solid gray;
	border-radius: 10px;
	color: #454545;
}

/* Responsive desing */
@media (max-width: 1210px) {
	/* User card */
	div.usercard {
		width: 240px;
	}

	div.cont-info-user p {
		font-size: 14px;
	}

	div.usercard button.btn-agregar {
		margin-left: 60px;
	}
}

@media (max-width: 1150px) {
	/* Footer */
	div.footer-category h2 {
		font-size: 22px;
	}

	div.footer-information ul li a, div.footer-description p, div.containercategory ul li a {
		font-size: 14px;
	}
}

@media (max-width: 960px) {
	div.contData {
		width: 75%;
	}

	div.filters {
		width: 25%;
	}

	.filters h3 {
		font-size: 18px;
	}

	div.filters form p {
		font-size: 14px;
	}

	div.filters form label {
		font-size: 14px;
	}

	div.filters input[type="submit"] {
		height: 30px;
		width: 110px;
		font-size: 14px;
	}

	/* Products */
	p.time {
		font-size: 14px;
	}

	p.detail {
		font-size: 14px; 
	}

	p.pricebusq {
		font-size: 18px;
	}

	/* Users */
	table.tab-users tr td:nth-child(3n) {
		display: none;
	}

	/* Pagination */
	a.numPag, a.enPag, a.btnsiguiente, a.btnanterior {
		font-size: 14px;
	}

	/* Footer */
	div.footer-category h2 {
		font-size: 20px;
	}

	div.footer-information ul li a, div.footer-description p, div.containercategory ul li a {
		font-size: 12px;
	}
}

@media (max-width: 780px) {
	div.contData {
		width: 70%;
	}

	div.filters {
		width: 30%;
	}
}

@media (max-width: 680px) {
	div.contData {
		width: 65%;
	}

	div.filters {
		width: 35%;
	}
}

@media (max-width: 600px) {
	div.contData {
		width: 60%;
	}

	div.filters {
		width: 40%;
	}
}

@media (max-width: 540px) {
	div.contData {
		width: 55%;
	}

	div.filters {
		width: 45%;
	}
}

@media (max-width: 500px) {
	/* Products */
	div.prdcontenido {
		width: 180px;
		height: 250px;
		margin: 0 5px 10px 5px;
	}

	.time {
		top: 8px;
		right: 20px;
	}

	.img-box {
		width: 180px;
		height: 130px;
		margin-top: -50px;
	}

	.img-box img {
		width: auto;
		max-width: 90%;
		height: 100%;
	}

	.detail {
		margin-top: 130px; 
	}

	.pricebusq {
		margin-top: 200px; 
	}
}

@media (max-width: 450px) {
	/* Filters */
	#cantrng {
		width: 100px;
	}

	input.preciomin, input.preciomax {
		max-width: 80px;
	}

	/* Pagination */
	.numPag {
		margin: 2px;
		padding: 5px;
	}

	.enPag {
		margin: 2px;		
		padding: 5px;
	}

	.btnsiguiente, .btnanterior {
		padding: 5px;
	}
}

@media (max-width: 400px) {
	/* Filters */
	div.contData {
		width: 50%;
	}

	div.filters {
		width: 50%;
	}

	.filters h3 {
		font-size: 16px;
	}

	div.filters form p {
		font-size: 12px;
	}

	div.filters form label {
		font-size: 12px;
	}

	div.filters input[type="submit"] {
		height: 25px;
		width: 100px;
		font-size: 12px;
	}

	/* Products */
	div.prdcontenido {
		width: 160px;
		height: 220px;
	}

	.img-box {
		width: 150px;
		height: 110px;
		margin-top: -50px;
	}

	.detail {
		margin-top: 120px; 
	}

	.pricebusq {
		margin-top: 170px; 
	}
}

@media (max-width: 360px) {
	/* Products */
	div.prdcontenido {
		width: 140px;
		height: 200px;
	}

	.img-box {
		width: 120px;
		height: 100px;
	}

	.detail {
		margin-top: 100px; 
	}

	.pricebusq {
		margin-top: 150px; 
	}

	/* Pagination */
	.numPag {
		margin: 1px;
		padding: 3px;
	}

	.enPag {
		margin: 1px;		
		padding: 3px;
	}

	.btnsiguiente, .btnanterior {
		padding: 3px;
	}
}

@media (max-width: 300px) {
	/* Filters */
	#cantrng {
		width: 60px;
	}

	input.preciomin, input.preciomax {
		max-width: 60px;
	}
}