/* Header */
/* .header {
	height: 68px;
	color: rgba(0, 0, 0, 0.6);
	margin: 0;
	padding: 0;
	background-color: var(--main-color);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(227, 227, 227, 1);
	-moz-box-shadow: 0px 2px 5px 0px rgba(227, 227, 227, 1);
	box-shadow: 0px 2px 5px 0px rgba(227, 227, 227, 1);
} */
.header .header-div {
	height: inherit;
	display: flex;
	justify-content: space-evenly;
}
.logo {
	height: inherit;
	cursor: pointer;
}
.logo img {
	max-width: 100%;
	display: block;
	height: inherit;
}
.buscador-container {
	width: 75%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.buscador-input-container {
	width: 100%;
	padding: 8px;
	border-radius: 5px;
	box-sizing: border-box;
	transition: 0.3s;
	background-color: rgba(228, 228, 228, 0.6);
	color: #333;
	display: flex;
	align-items: center;
}
.buscador-input-container input {
	border: none;
	width: 100%;
	padding-left: 20px;
	background-color: transparent;
}
.buscador-input-container input:focus {
	outline: none;
}
.menu {
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.menu a {
	text-decoration: none;
	color: inherit;
}
.enlaces {
	font-size: 1.7em;
	display: flex;
	border-radius: 50%;
	justify-content: center;
	align-items: center;
	transition: 0.4s;
	color: inherit;
	cursor: pointer;
}
.enlace-categorias {
	width: 5%;
}
.enlaces:hover {
	transform: scale(1.2);
}
.carrito {
	width: 50px;
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.carrito i {
	display: block;
	transform-origin: center top;
	font-weight: bold;
}
.carrito.notify i {
	animation-name: carrito;
	animation-duration: 0.3s;
	animation-timing-function: ease-in-out;
}
.carrito:after {
	content: attr(data-count);
	font-size: 11px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 14px;
	height: 14px;
	background: #ff4600;
	border-radius: 50%;
	font-family: Arial;
	position: absolute;
	top: 5px;
	right: 5px;
	opacity: 0;
	transition: 0.3s;
	transform: scale(0.5);
	will-change: opacity, transform;
}
.carrito.show-count:after {
	opacity: 1;
	transform: scale(1);
	color: white;
}
/* Side nav */
.sidenav {
	height: 100%;
	width: 250px;
	position: absolute;
	z-index: 2;
	top: 0;
	left: -250px;
	background-color: rgb(34, 34, 34);
	overflow-x: hidden;
	transition: 0.5s;
}
.sidenav a {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 20px;
	color: #818181;
	display: block;
	transition: 0.3s;
}
.sidenav a:hover {
	color: #f1f1f1;
}
.sidenav span {
	padding: 8px 8px 8px 32px;
	font-size: 20px;
	color: #f1f1f1;
	display: block;
}
.boton-categoria {
	padding: 8px 8px 8px 32px;
	text-decoration: none;
	font-size: 20px;
	color: #818181 !important;
	transition: 0.1s;
	width: 100% !important;
	text-align: inherit;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.flecha {
	transition: 0.3s;
	font-size: 16px;
}
.flecha-activa {
	transform: rotateZ(-90deg);
}
.boton-categoria:hover {
	color: #f1f1f1 !important;
}
.boton-categoria:focus {
	outline: none !important;
}
.subcategoria-containe {
	color: #818181 !important;
	margin-left: 15px;
}
.subcategoria-containe:hover {
	color: #f1f1f1 !important;
}
.sidenav .closebtn {
	position: absolute;
	top: 5px;
	right: 7px;
	font-size: 36px;
	margin-left: 50px;
	padding-left: 8px;
	height: 30px;
	width: 30px;
	display: flex;
	align-items: center;
	border: 1px solid;
	justify-content: center;
}
.openMain {
	transform: translateX(250px);
}
#main {
	transition: 0.5s;
}
/* Grid */

.grid {
	margin: 0 auto;
}
.grid:after {
	content: "";
	display: block;
	clear: both;
}
.grid-sizer,
.grid-item {
  width: 19%; /* Establece el tamaño de las columnas */
  margin: 8px;
}
.grid-item {
  height: auto;
 
  cursor: pointer;
}
.grid-item .image-container {
	position: relative;
}
.grid-item .image-container img {
	display: block;
  max-width: 100%;
  width: 100%;
}
.nombre-producto-container {
	font-size: 0.9em;
	display: flex;
	flex-direction: column;
}
.span-nombre-producto {
  font-size: 16px;
  margin-left: 5px;
}
.container-refdetalle {
  padding: 0 5px;
  width: 100%;
  display: flex;
  font-size: 1.2em;
  justify-content: space-between;
  align-items: baseline;
}
.span-descuento {
	font-size: 0.8em;
	color: gray;
}
.precio-con-descuento {
	text-decoration: line-through;
}
.porcentaje-descuento {
	margin-left: 5px;
}
.precio-detalle {
  font-weight: 600;
  font-size: 1.2em;
}
.container-cantidad {
	display: flex;
	position: relative;
	align-items: center;
	width: 100%;
	height: 44.25px;
	margin-top: -2px;
	/* bottom: 15px; */
	justify-content: space-evenly;
	padding: 0 25px;
}
.agregar_producto {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.botones-cantidad {
	height: 35px;
	width: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--main-color);
	cursor: pointer;
	border-radius: 50%;
}
.btn-menos {
	opacity: 0;
	transition: 0.3s;
}
.btn-menos.mostrar-boton-menos {
	opacity: 1;
}
.cantidad-producto {
	font-size: 3em;
	opacity: 0;
	font-weight: 600;
	border-radius: 50%;
	height: 40px !important;
	width: 40px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	border: none;
	background: rgba(0, 0, 0, 0.575);
	color: rgba(255, 255, 255, 0.575);
}
.input-cantidad {
	font-size: 30px;
}
.cantidad-producto:after {
	content: attr(data-count);
	opacity: 1;
	transition: 0.3s;
	will-change: opacity, transform;
}
.cantidad-producto.mostrar-cantidad {
	font-size: 40px;
	opacity: 1;
	transform: scale(1);
}
.cantidad-producto.animacion {
	animation-name: mostrar;
	animation-duration: 0.3s;
	animation-timing-function: ease-in-out;
}
/* Bar nav fixed bottom */
.fixed-bottom {
	display: flex;
	padding-top: 0;
	padding-bottom: 0;
}
.fixed-bottom a {
	font-size: 1;
}
.titulo-brand {
	font-size: 0.5em;
}
.navbar-brand {
	padding-top: 0.6rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
/* Modal */
.img-modal-container {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background-size: cover !important;
	background-repeat: no-repeat !important;
	background-position: center !important;
}
.modal-body-empresa {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.modal-img-container {
	width: 300px;
}
.modal-img {
	display: block !important;
	max-width: 100% !important;
}
.parrafo-modal {
	margin-top: 10px;
	margin-bottom: 10px;
}
/* Modal carrito */
.table {
	color: rgb(122, 122, 122);
}
.td-centrado {
	vertical-align: middle !important;
	text-align: left;
}
.cantidad-modal {
	margin: 0 5px;
}
td i {
	cursor: pointer;
}
/* Modal Producto */
.container-description-producto {
	padding: 17px;
}
/* Navbar bottom */
.barra_de_navegacion {
  justify-content: center;
  margin-left: 0;
  margin-right: 0;
}
.fixed-bottom {
	background-color: var(--main-color);
	height: 50px;
}
/* Boton agregar */
.agregar_producto {
	background-color: var(--main-color);
}
/*ref*/
.referencia-precio-container {
	display: flex;
	justify-content: space-between;
}
.container-imagen-sidenav {
	width: 100%;
	display: flex;
	justify-content: center;
}
.container-imagen-sidenav img {
	width: 100%;
}
/* Formulario de contacto seccion de registro publico */
.seccion-registro {
  width: 100%;
  height: 100vh;
  color: #fff;
	padding: 1rem;
	display: flex;
	position: relative;
	align-items: center;
  z-index: 0;
  background-position: center !important;
	background-size: cover !important;
	background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  overflow-x: hidden;
}
.seccion-registro:before {
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 0;
	background: rgba(58, 58, 58, 0.8);

}
.container-form {
	width: 100%;
}
.row.mi-row {
  justify-content: center;
  align-items: center;
}
.h2-registro {
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 25px;
	font-weight: 800;
}
.h2-registro:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 60px;
	height: 2px;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
	background: rgba(150, 47, 213, 1);
	background: -moz-linear-gradient(45deg, rgba(150, 47, 213, 1) 0%, rgba(245, 118, 142, 1) 100%);
	background: -webkit-gradient(
		left bottom,
		right top,
		color-stop(0%, rgba(150, 47, 213, 1)),
		color-stop(100%, rgba(245, 118, 142, 1))
	);
	background: -webkit-linear-gradient(45deg, rgba(150, 47, 213, 1) 0%, rgba(245, 118, 142, 1) 100%);
	background: -o-linear-gradient(45deg, rgba(150, 47, 213, 1) 0%, rgba(245, 118, 142, 1) 100%);
	background: -ms-linear-gradient(45deg, rgba(150, 47, 213, 1) 0%, rgba(245, 118, 142, 1) 100%);
	background: linear-gradient(45deg, rgba(150, 47, 213, 1) 0%, rgba(245, 118, 142, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#962fd5', endColorstr='#f5768e', GradientType=1 );
}
.input-registro {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
	border-radius: 90px;
	padding: 25px 20px;
	height: 48px;
	line-height: 48px;
	clear: both;
	color: #8a8a8a;
	border: 2px solid transparent;
	outline: none;
	height: calc(1.5em + 0.75rem + 2px);
	font-size: 1.05rem;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s;
}
.input-registro:focus {
	border-color: #962fd5;
}
input[type="number"].input-registro-number::-webkit-inner-spin-button,
input[type="number"].input-registro-number::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"].input-registro-number {
	-moz-appearance: textfield;
}

.boton-custom {
	background-image: linear-gradient(to right, #962fd5 0%, #f5768e 51%, #962fd5 100%);
	color: #fff;
	padding: 12px 36px;
	font-weight: 600;
	border: none;
	position: relative;
	font-family: "Raleway", sans-serif;
	display: inline-block;
	text-transform: uppercase;
	-webkit-border-radius: 90px;
	-moz-border-radius: 90px;
	border-radius: 90px;
	margin: 2px;
	background-size: 200% auto;
	flex: 1 1 auto;
	outline: medium none !important;
	cursor: pointer;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s;
}
.boton-custom:hover,
.boton-custom:focus {
	color: #ffffff;
	background-position: right center;
	-webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.1);
}
.form-div {
	margin-bottom: 0rem;
}
.titulo-caja {
	font-size: 2rem;
	font-family: "Raleway", sans-serif;
}
.div-alert {
  border-radius: 90px;
  display: flex;  
  align-items: center;
}
/* Ajustes de plantilla en general */
.navbar-custom-menu { 
  margin-right: 10px;
}
.custom-navbar-nav {
  display: flex;
  align-items: center;
}
/* Utilidades */
.mt-5 {
  margin-top: 5px;
}
.mt-10 { 
  margin-top: 10px;
}
.body-custom{
  height: 100vh !important;
}
.wrapper-custom {
  height: 100% !important;
}
.main-footer {
  position: fixed;
  width: 100%;
  bottom:0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
.content-wrapper {
  height: auto !important;
  margin-bottom: 40px;
}
.vendedor-wrapper {
  margin: 0;
}
.footer-vendedor {
  margin:0;
  position: fixed;
  bottom: 0;
}
.nav-tabs-custom {
  margin-bottom: 0px;
}
.dataTables_scrollBody{ 
  overflow: auto !important;
}
.login-box-body {
  position: relative;
}
.login-box-custom {
  display: flex;
  flex-direction: column;

}
.footer-copyright-container{
  position: relative;
  width: 280px;
  left: calc( 50% - 280px / 2);
  margin-top: auto;
}
.footer-copyright-registro{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container-img-herramienta{
  width: 30%;
  z-index: 50;
}
.refresh-container{ 
  padding-bottom: 15px;
}
.footer-back{
  position: relative;
  width: 200px;
  margin-right: 240px;
}
.page-item{
  cursor: pointer;
}
.iti__country-name {
  color: #000;
}

@media screen and (min-width: 1400px){
  .dataTables_scrollBody{
    overflow: visible !important;
  }
}
@media screen and (max-width: 768px) {
  .seccion-registro {
    height: 100%;
  }
  .container-img-herramienta{
    width: 50%;
  }
  .main-footer {
    position: relative;
  }
  .footer-back {
    width: 155px;
    margin-right: 0;
}
  .footer-vendedor {
    position: fixed;
  }
  .content-wrapper {
    height: auto !important;
    margin-bottom: 0px;
  }
  .vendedor-wrapper {
    margin-bottom: 40px;
  }
	.input-registro {
		font-size: 1rem;
	}
	.titulo-caja {
		font-size: 1rem;
	}
	.enlace-categorias {
		width: 25%;
	}
	.grid-sizer,
	.grid-item {
    width: 49%;
	}
	.enlace-carrito,
	.enlace-whatsapp {
		display: none;
	}
	.image-col,
	.logo {
		display: none !important;
	}
	.input-cantidad {
		font-size: 25px;
	}
}
@media screen and (max-width: 1366px) {
  .grid-sizer,
  .grid-item {
    width: 18.6%;
  }
}
@media screen and (max-width: 1023px) {
  .grid-sizer,
  .grid-item {
    width: 31%;
  }
}
@media screen and (min-width: 769px) {
	.fixed-bottom {
		display: none;
  }

}
@media screen and (max-width: 480px) {
	.grid-sizer,
	.grid-item {
		width: 45%;
	}
	.botones-cantidad {
		height: 30px;
		width: 30px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-color: var(--main-color);
		cursor: pointer;
		border-radius: 50%;
	}
	.mostrar-cantidad {
		font-size: 20px;
		transform: scale(0.8);
	}
	.container-cantidad {
		padding: 0px 0px;
	}
}
@keyframes carrito {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes mostrar {
	0% {
		transform: scale(0.8);
	}
	50% {
		transform: scale(1);
	}
	100% {
		transform: scale(0.8);
	}
}
