/*COLOR AZUL: #0001fe*/
/*COLOR NARANJA: #ffb703*/
* {
	margin: 0px;
	box-sizing: border-box;
}

.cart_div {
	width: 70px;
	height: 100%;
	float: right;
	margin-right: 8px;
	cursor: pointer;
}
.cart_badge_div {
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background-color: #ffb703;
	float: left;
}
.cart_badge_text {
	margin: 0px;
	margin-top: 1px;
	color: white;
	font-size: 12px;
}
.cart_slide {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 20;
	top: 0;
	right: -18;
	background-color: white;
	border-left: 8px solid #ffb703;
	overflow-x: hidden;
	transition: 0.5s;
	display: flex;
	flex-direction: column;
	box-shadow: -3px 0px 9px -2px #000000;
}
.cart_slide_header {
	width: 292px;
	height: 50px;
}
.cart_slide_header_text {
	margin: 0px;
	font-size: 20px;
	color: black;
	margin-left: 20px;
	cursor: pointer;
	float: left;
}
.cart_slide_header_btn {
	margin: 0px;
	font-size: 30px;
	color: black;
	margin-right: 20px;
	cursor: pointer;
	float: right;
}
.cart_slide_middle {
	width: 292px;
	height: 300px;
	flex: auto;
	padding-top: 30px;
	overflow: scroll;
}
.cart_slide_middle_noitems {
	width: 100%;
	height: 30px;
	display: block;
}
.cart_slide_middle_noitems_text {
	margin: 0px;
	font-size: 15px;
	color: #545454;
}
.cart_slide_item {
	width: 90%;
	height: 90px;
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
}
.cart_slide_item_left {
	width: 90px;
	height: 100%;
	float: left;
}
.cart_slide_item_left_image {
	width: 100%;
	height: 100%;
	background-color: #f0f0f0;
}
.cart_slide_item_right {
	flex: 1;
	height: 100%;
	float: left;
}
.cart_slide_item_right_title {
	margin: 0px;
	color: black;
	font-family: 'Myriad Pro Bold';
	font-size: 12px;
	margin-left: 10px;
}
.cart_slide_item_right_desc {
	margin: 0px;
	color: #272727;
	font-size: 13px;
	margin-left: 10px;
	margin-top: 5px;
}
.cart_slide_item_right_qty_div {
	width: 70px;
	height: 25px;
	background-color: aqua;
	background-color: lightgray;
	border-radius: 2px;
	margin-left: 10px;
	margin-top: 25px;
	float: left;
}
.cart_slide_item_right_qty_div_left {
	width: 33.33333%;
	height: 100%;
	float: left;
	cursor: pointer;
}
.cart_slide_item_right_qty_div_left_text {
	margin: 0px;
	font-size: 20px;
	color: black;
}
.cart_slide_item_right_qty_div_middle{
	width: 33.33333%;
	height: 100%;
	float: left;
}
.cart_slide_item_right_qty_div_middle_input {
	-webkit-appearance: none;
	border: none;
	width: 100%;
	height: 100%;
	color: black;
	font-weight: bold;
	text-align: center;
}
.cart_slide_item_right_qty_div_right {
	width: 33.33333%;
	height: 100%;
	float: left;
	cursor: pointer;
}
.cart_slide_item_right_qty_div_right_text {
	margin: 0px;
	font-size: 20px;
	color: black;
}
.cart_slide_item_right_price {
	margin: 0px;
	color: #272727;
	font-size: 13px;
	margin-right: 20px;
	margin-top: 29px;
	float: right;
}
.tienda_item_div_price {
	margin: 0px;
	color: #000000;
	font-size: 13px;
}
.cart_slide_footer {
	width: 292px;
	height: 150px;
}
.cart_slide_footer_header {
	width: 100%;
	height: 50px;
}
.cart_slide_footer_title {
	margin: 0px;
	font-size: 20px;
	color: black;
	float: left;
	font-family: 'Myriad Pro Bold';
	margin-left: 20px;
}
.cart_slide_footer_subtotal{
	margin: 0px;
	font-size: 20px;
	color: black;
	float: right;
	margin-right: 20px;
}
.cart_slide_footer_checkout {
	-webkit-appearance: none;
	border: none;
	width: 90%;
	height: 40px;
	background-color: white;
	color: #0001fe;
	font-size: 18px;
	border-radius: 3px;
	margin-top: 5px;
	cursor: pointer;
	border: thin solid #0001fe;
}
/*INDICE*/
.indice {
	width: 300px;
	height: auto;
	position: absolute;
	top: 40px;
	left: 0;
}
.indice_dept {
	width: 100%;
	height: 40px;
	background-color: #d5d5d5;
	box-sizing: border-box;
	padding-top: 3px;
}
.indice_dept:hover {
	background-color: #b0b0b0;
}
.indice_dept_txt {
	margin: 0px;
	font-size: 17px;
	color: black;
	margin-left: 20px;
	float: left;
}
.indice_dept_txt_icon {
	float: right;
	margin-right: 20px;
	color: black;
}
.indice_subdept {
	width: 100%;
	height: 100%;
	background-color: #b0b0b0;
	position: absolute;
	top: 0;
	left: 100%;
}
.indice_subdept_item {
	width: 100%;
	height: 40px;
}
.indice_subdept_item:hover {
	background-color: #e4e4e4;
}
.indice_subdept_item_text {
	margin: 0px;
	font-size: 17px;
	color: black;
	margin-left: 20px;
}
.tienda_main {
	width: 100%;
	height: auto;
	padding-top: 50px;
	padding-bottom: 50px;
}
.tienda_main_in {
	width: 1450px;
	overflow: auto;
}
.tienda_main_search_header {
	width: 100%;
	height: 40px;
}
.tienda_main_search_header_btn {
	position: relative;
	z-index: 10;
	-webkit-appearance: none;
	border: none;
	width: 200px;
	height: 100%;
	border-radius: 5px;
	border: 2px solid #0001fe;
	background-color: transparent;
	color: #0001fe;
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	cursor: pointer;
}
.tienda_main_search_header_btn p {
	font-size: 12px;
	color: #0001fe;
	float: left;
}
.tienda_main_search_header_btn i {
	font-size: 12px;
	color: #0001fe;
	float: right;
}
.tienda_main_search_header_btn_dropdown {
	position: absolute;
	top: 45;
	left: 0;
	width: 200px;
	height: auto;
	background-color: #e5e5e5;
	box-shadow: 0px 9px 12px -5px #000000;
	display: none;
}
.tienda_main_search_header_btn_dropdown .item {
	position: relative;
	width: 100%;
	height: 30px;
	margin-bottom: 3px;
	background-color: #cecece;
	color: black;
	padding-left: 10px;
	padding-right: 10px;
}
.tienda_main_search_header_btn_dropdown .item:hover {
	background-color: #ffb703;
}
.tienda_main_search_header_btn_dropdown .item p {
	float: left;
	color: black;
	font-size: 12px;
}
.tienda_main_search_header_btn_dropdown .item i {
	float: right;
	color: #4f4f4f;
}
.tienda_main_search_header_btn_dropdown_subdeptos {
	position: absolute;
	top: 0;
	left: 200;
	width: 200px;
	height: auto;
	box-shadow: 13px 10px 17px -15px #000000;
	background-color: #e5e5e5;
	display: none;
}
.tienda_main_search_header_btn_dropdown_subdeptos .itemSub {
	width: 100%;
	height: 30px;
	margin-bottom: 3px;
	background-color: #cecece;
	color: black;
	padding-left: 10px;
	padding-right: 10px;
}
.tienda_main_search_header_btn_dropdown_subdeptos .itemSub:hover {
	background-color: #ffb703;
}
.tienda_main_search_header_btn_dropdown_subdeptos .itemSub p {
	float: left;
	color: black;
	font-size: 12px;
}
.tienda_main_search_header_searchbar_div {
	width: 350px;
	height: 100%;
	border: 2px solid #0001fe;
	border-radius: 5px;
	overflow: hidden;
	float: right;
}
.tienda_main_search_header_searchbar_div input {
	-webkit-appearance: none;
	border: none;
	border-radius: none;
	width: 85%;
	height: 100%;
	padding-left: 10px;
	float: left;
}
.tienda_main_search_header_searchbar_div div {
	width: 15%;
	height: 100%;
	background-color: #0001fe;
	float: right;
	color: white;
}
.tienda_main_in_header {
	width: 100%;
	height: 100px;
}
.tienda_main_in_header_text {
	margin: 0px;
	color: black;
	font-size: 30px;
	font-family: 'Myriad Pro Bold';
	position: relative;
}
.tienda_main_in_header_product_rows {
	min-height: calc(100vh - 450px);
}
.tienda_item_div {
	width: 250px;
	height: auto;
	margin: 20px;
	float: left;
}
.tienda_item_div_image_div {
	width: 100%;
	height: 250px;
	margin-bottom: 20px;
	background-color: #f3f3f3;
}
.tienda_item_div_image {
	width: 100%;
	height: 100%;
}
.tienda_item_div_info_div {
	width: 70%;
	height: auto;
	float: left;
}
.tienda_item_div_title_div {
	width: 100%;
	height: 20px;
}
.tienda_item_div_title {
	margin: 0px;
	color: black;
	font-family: 'Myriad Pro Bold';
	font-size: 12px;
}
.tienda_item_div_desc_div {
	width: 100%;
	height: 20px;
}
.tienda_item_div_desc {
	margin: 0px;
	color: #272727;
	font-size: 13px;
}
.tienda_item_div_price_div {
	width: 100%;
	height: 20px;
}
.tienda_item_div_price {
	margin: 0px;
	color: #000000;
	font-size: 20px;
}
.tienda_item_div_price_sinstock {
	margin: 0px;
	color: #ff0000;
	font-family: 'Myriad Pro Bold';
	font-size: 15px;
}
.tienda_item_div_addto_div {
	width: 30%;
	height: 60px;
	float: left;
}
.tienda_item_div_addto_btn {
	-webkit-appearance: none;
	border: none;
	width: 80%;
	height: 80%;
	color: white;
	background-color: #e7e7e7;
	border: thin solid #63C73D;
	border-radius: 5px;
	cursor: pointer;
}

@media only screen and (max-width: 1500px) {
	.tienda_main_in {
		width: 1160px;
	}
}
@media only screen and (max-width: 1200px) {
	.tienda_main_in {
		width: 870px;
	}
}
@media only screen and (max-width: 990px) {
	.indice_div_in {
		margin-left: 20px;
	}
}
@media only screen and (max-width: 910px) {
	.tienda_main_in {
		width: 580px;
	}
}
@media only screen and (max-width: 590px) {
	.cart_div {
		margin-right: 0px;
	}
	.tienda_main_in {
		width: 480px;
	}
	.tienda_item_div {
		width: 200px;
	}
	.tienda_item_div_image_div {
		height: 200px;
	}
	.tienda_main_search_header_btn {
		width: 150px;
	}
	.tienda_main_search_header_searchbar_div {
		width: 250px;
	}
	.tienda_main_in_header_text {
		font-size: 25px;
	}
}
@media only screen and (max-width: 559px) {
	.cart_div {
		margin-right: 0px;
	}
	.tienda_main {
		padding-top: 40px;
	}
	.tienda_main_in {
		width: 375px;
	}
	.tienda_main_in_header {
		width: 100%;
		height: 40px;
	}
	.tienda_main_in_header_text {
		margin-left: 20px;
		font-size: 20px;
	}
	.tienda_item_div {
		width: 150px;
		margin: 18px;
	}
	.tienda_item_div_image_div {
		height: 150px;
	}
	.tienda_item_div_title {
		font-size: 12px;
	}
	.tienda_item_div_desc {
		margin: 0px;
		color: #272727;
		font-size: 10px;
	}
	.tienda_item_div_addto_btn {
		height: 60%;
		width: 90%
	}
	.tienda_item_div_addto_btn img {
		width: 19px;
		margin: 0px;
	}
	.indice_div_in_column_header_div_text {
		font-size: 15px;
	}
	.indice_div_in_column_text {
		font-size: 10px;
	}
	.tienda_main_search_header {
		width: 90%;
		margin-bottom: 20px;
	}
	.tienda_main_search_header_btn {
		width: 140px;
	}
	.tienda_main_search_header_searchbar_div {
		width: 180px;
	}
	.tienda_main_search_header_btn_dropdown {
		width: 160px;
	}
	.tienda_main_search_header_btn_dropdown_subdeptos {
		width: 160px;
		left: 160;
	}
}
































