﻿@import url('https://fonts.googleapis.com/css?family=Rubik&display=swap');

html {    
}

body {
    margin: 0 auto;
    max-width: 1440px;
    box-shadow: 0 10px 60px #DDDDDD;
	font-family: Rubik, Arial, Tahoma;
}
#body-div {
	min-height: 100vh;
	position:relative;
}
#main-div {
}

.decor-producto {
	height: 250px;
	box-shadow: 0 1px 5px #E0E0E0;
	margin-bottom: 0.75rem;
	flex-direction: column;
	position:relative;
	padding-top: 10px;
	margin-top:5px;
}
.boton-eliminar {
	position:absolute;
	right:0px;
	top:-15px;
	width:30px;
	height:30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(/images/eliminar-20.png);
    background-position: center center;
    background-repeat: no-repeat;
}
.boton-masmenos {	
	display: flex;
	justify-content: center;
	flex-direction: column;
	background-color:transparent;
	cursor: pointer;
}
.boton-masmenos>span {
	text-align:center;
	color: #1646a8;
	font-size: 1.25rem;	
}

@media only screen and (max-width: 720px) {
	.decor-producto {
		margin-left: -10px;
		margin-right: -10px;
		padding-left: 5px;
		padding-right: 5px;
	}
}
.control-cantidad {
	border: solid 1px #DDDDDD;
	height: 2.5rem;
	margin-bottom: 0.5rem;
}
.prod-titulo {	
	font-weight: bold;
	font-size: 1rem;	
}
.prod-precio {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}
.prod-total {
	font-weight: bold;
	margin-right: 1rem;
}
.footer-productos {
	height:3rem;
	width: 100%;
	color:white;
}
.footer-productos>div {
	height:3rem;
	position: fixed;
	bottom:	0px;
	width: 100%;
	font-weight: bold;
	padding-right: 1.5rem;
	display:flex;
	justify-content: flex-end;
	align-items: center;
	font-size:1.1rem;
}
.item-opcion {
	border: 1px solid #888888;
	border-radius: 0.25rem;
	padding: 0.5rem 0.5rem;
	cursor: pointer;
}
.input-cantidad {
	border: 0px;
	text-align: center;
	font-weight:bold;
}
.div-unidad-venta {
	display:flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8rem;
	color: #1646a8;
	text-decoration: underline;
	cursor: pointer;
}
.boton-fav {
	background-image: url("/images/fav-off.png");
    background-position: center center;
    background-repeat: no-repeat;
	cursor:pointer;
}
.boton-fav.on{
	background-image: url("/images/fav-on.png") !important;
}

.div-unidad-venta-des {
	display:flex;
	justify-content: center;
	align-items: center;
	font-size: 0.8rem;
}


.img-retain-width {
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	width: 100%;
}

.img-cat {
	height: 100px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-top: 0.25rem;
	margin-bottom: 0.5rem;
	
}

.row-header {
	font-weight: bold;
	min-height: 2.5rem;
}

.row-header > div {
	display: flex;
	align-items: center;
}
.row-content-mid {
	min-height: 2rem;
	border-bottom: 1px solid #D5D5D5;
}
.row-content-mid > div {
	display: flex;
	align-items: center;
}
.btn-buscar {
    background: url(/images/buscar.png);
    background-position: center center;
    background-repeat: no-repeat;
	width: 40px;
}

.floating-search {	
	position:relative;
	height: 3.5rem;
	margin-bottom: 0.5rem;
}
.floating-panel {
	position:fixed;
	top:0rem;
	z-index: 1001;
	width:100%;
	height: auto !important;
	max-width: 1440px;
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	padding: 0.5rem 0.5rem;
}
.menu-toggler {
	background-image: url(/images/menu.png);
	background-position: center center;
    background-repeat: no-repeat;
	margin-right: 0.5rem;
	border: 1px solid;
	border-color: rgba(255,255,255,.5);
	border-radius:0.25rem;
	cursor:pointer;
	width:40px;
}
.input-buscador {
	padding-top:0.2rem;
	padding-bottom:0.2rem;
	padding-left: 0.75rem;
	padding-right: 3rem;
	border-radius: .25rem;
	background-clip: padding-box;
    border: 1px solid #ced4da;	
	background: url(/images/buscar.png);
	background-color: white;
    background-position: calc(100% - 0.25rem) center;
    background-repeat: no-repeat;
	background-size: 20px 20px;
}
.buscador-results {
	background-color:white;
	border-radius: .25rem;
	display: flex;
	flex-direction: column;
	padding: 0rem 1rem;
}
#menu {
	width: 100%;
	padding-left: 1rem;
	display: flex;
	flex-direction: column;
	color: white;
	padding-top:0.5rem;
	font-size: 1.1rem;
}
#menu>div {
	background-repeat: no-repeat;
	background-position: 0% center;
	padding: 0.25rem 30px;
	cursor: pointer;
}
.buscador-results>div {
	padding-top: 0.35rem;
}
.articulo-buscador {
	cursor:pointer;
}
.w-20 {
	width:20%;
}
.w-40 {
	width:40%;
}
.color1 {
	background: red;
}
.color2 {
	background: blue;
}