body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 1.2;
}
* {
	box-sizing: border-box;
}

.max {
	width: 100%;
	max-width: 1450px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 25px;
	padding-right: 25px;
}

.container {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
h1, h2 {
	font-family: 'Roboto Condensed', 'Arial';
	text-transform: uppercase;
}

a, a:visited {
	color: var(--color-link-texto);
}
a:hover {
	color: var(--color-link-hover);
}

.hidden {
	display: none;
}


/* HEADER */
header {
	/*margin-bottom: 20px;*/
	background: var(--color-header-fondo);
}


header .max {
	height: 109px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	
}
header .left {
	display:flex;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
}
header .logo {
	width: 100%;
	max-width: 140px;
}
header .logo img {
	width: 100%;
}

header .search {
	width: 100%;
	max-width: 685px;
}
header .search form {
	display: flex;
	justify-content: space-between;
}
header .search form input {
	flex-grow: 2;
	height: 42px;
	border: 1px solid #767676;
	border-top-left-radius: 1px;
	border-bottom-left-radius: 1px;
	border-right: none;
	padding: 0.1em 0.5em;
	transition: all 0.3s ease-in-out 0s;
}
header .search form input:focus {
	outline: 0;
	box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.5);
	transition: all 0.3s ease-in-out 0s;
}
header .search form button {
	width: 46px;
	height: 42px;
	border: 1px solid #767676;
	border-top-right-radius: 1px;
	border-bottom-right-radius: 1px;
	
	background: #ffffff;
	transition: all 0.3s ease-in-out 0s;
}
header .search form button:hover {
	background: #f00;
	color: #fff;
	transition: all 0.3s ease-in-out 0s;
}

header .right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 25px;
}


a.carritoLink, a.carritoLink:visited {
	color: #ccc;
}
/* /header mid */


/* header bottom */
header .bottom {
	height: 44px;
}
header .menu {
	text-transform: uppercase;
	line-height: 1.06;
}
header .menu ul.main {
	padding: 0;
	margin: 0;
	height: 44px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	list-style: none;
	
}
header .menu ul.main > li {
	margin: 0;
	padding: 0;
	position: relative;
}
header .menu ul.main > li a, header .bottom .menu ul.main > li a:visited {
	display: block;
	padding: 14px 15px;
	color: #484848;
	text-decoration: none;
}
header .menu ul.main > li a:hover {
	background: #b1252b;
	color: #fff !important;
	text-decoration: none;
}
header .menu a.openeable::after, header .menu a.openeableSub::after {
	margin-left: 5px;
	font-family: "FontAwesome";
	content: "\f0d7";
}

header .submenu {
	display: none;
	position: absolute;
	z-index: 1000;
	background: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
	margin: 0;
	padding: 0;
	top: 44px;
	flex-direction: column;
	list-style: none;
	width: 280px;
	
}
header .submenu li {
	margin: 0;
	padding: 0;
}
header .submenu li a, header .submenu li a:visited {
	display: block;
	padding: 14px 15px;
	border-bottom: 1px solid #ccc;
}
header .submenu li a:hover {
	background: #b1252b;
	color: #fff !important;
}

header .subsubmenu {
	list-style: none;
	display: none;
	position: absolute;
	top: -1px;
	left: 278px;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 1px solid #ccc;
	border-bottom: none;
	max-width: 500px;
	width: 100%;
}

header .mobile_menu {
	display:none;
	font-size: 22px;
	border: 1px solid #ccc;
	border-radius: 5px;
	padding: 5px;
	cursor: pointer;
}
header .mobile_menu:hover {
	color: #fff;
	background: #b1252b;
}
/* /header bottom */

.mobile {
	display: none;
	font-size: 26px;
	line-height: 1;
}
.user .dropdown-toggle::after {
	display: none;
}

/* /HEADER */


/* MENU */
header .menu {
	font-size: 16px;
	text-transform: none;
}
header .menu ul.main > li a:hover {
	background: none;
	color: #000 !important;
}


/* /MENU */


/* FOOTER */
.footer div {
	font-size: 16px;
	line-height: 1.375;
}
.subFooterTop {
	background: var(--color-footer-sup-fondo);
	padding: 60px 0;
}
.subFooterBottom {
	background: var(--color-footer-inf-fondo);
}
.footer .subFooterTop .max {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer .subFooterTop .max div {
	text-align: center;
	flex-grow: 2;
	width: 33%;
}
.footerIso {
	justify-content: center;
}
.footerIso img {
	max-width: 240px;
}

.footer .subFooterBottom .max {
	padding: 16px 0;
	display: block;
	text-align: center;
}
.footer a:hover {
	text-decoration: underline;
}
/* /FOOTER */


/* FORMS */
label {
	padding-top: 15px;
}
.form-control {
	background: #f5f5f5;
	border: none;
	/*border-radius: 12px;*/
}
label.custom-control-label {
	padding-top: 5px;
}
.btn, button.btn, a.btn  {
	padding: 10px 15px;
	border: none;
	/*border-radius: 12px;*/
	margin-bottom: 0;
	/*width: 100%;*/
	justify-content: center;
	background: var(--color-boton-fondo) !important;
}
.custom-control-input:checked~.custom-control-label::before {
	border-color: var(--color-boton-fondo);
	background-color: ;
}
/* /FORMS */


/* FILTRO */
.filtro {
	margin-top: 50px;
	margin-bottom: 50px;
}
.filtro form {
	/*background: linear-gradient(to right, #0795b9, #3a6979);
	border-radius: 30px;*/
	z-index: 500;
	/*border: 5px solid #0795b9;*/
	color: #333;
	background: #f0f0f0;/*var(--color-header-fondo);*/
	padding: 15px;
}
.filtro .box {
	padding: 0;
	margin-top: 15px;
}
.filtro form .row {
	align-items: flex-end;
}
.filtro h3 {
	color: #333;
	padding: 0 0 15px;
	/*border-bottom: 1px solid #ccc;*/
}
.filtro .form-control {
	background: #fff;
}
.filtro .btn {
	width: 100%;	
	margin: 0;
}

/* /FILTRO */

/* PAGINADOR */
.page-link {

}
.page-link {
	color: var(--color-texto);
	border-color: var(--color-texto);
}
.page-item.disabled .page-link {
	color: #CCC;
	border-color: var(--color-texto);
}
.page-item.active .page-link, .page-link:hover {
    background: var(--color-boton-fondo);
    border-color: var(--color-texto);
    color: var(--color-boton-texto);
}



/* /PAGINADOR */


/* CARRITO */
.carrito .botonera {
	gap: 10px;
}
.carrito .botonera .btn {
	width: 50%;
	margin: 0;
}

/* /CARRITO */


/* CARRUSEL */
.carruselMain {
	
}
h2.carru {
	font-size: 22px;
	font-weight: 700;
	margin-top: 15px;
}

h2.carru a, h2.carru a:visited {
	
	color: var(--color-titulo);
}
h2.carru a:hover {
	text-decoration: none;
	color: var(--color-link-hover);
}
.carruTitleLine {
	display: block;
	margin: 0 0 25px;
	width: 41px;
	height: 4px;
	background: var(--color-boton-fondo);
}

.carruselLine {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 10px;
}

.carruselCat {
	width: 266px;
	display: flex;
	align-items: stretch;
}

.carruselCat a.bloque {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.carruselCat img {
	width: 100%;
}

.carruselLine .content.max {
	max-width: calc(100% - 276px);
	width: calc(100% - 276px);
	flex-grow: 2;
	padding: 0;
}
.carruselHome {
	margin: 0 0 10px;
}
.carruselHome .grid .item {
	padding: 0;
	width: 266px;
	max-width: 266px;
	min-width: 266px;
	height: 479px;
	overflow: hidden;
}

.slidersInt .max {
	z-index: 500;
}

/* /CARRUSEL */




/* GRID */
.grid.row {
	/*
	max-width: 1370px;
	gap: 10px;
	margin-left: auto;
	margin-right: auto;
	*/
}
.grid.gridCat {
	margin-left: -15px;
	margin-right: -15px;
	/*margin-bottom: 25px;*/
}
.grid.gridCat .item {
	padding: 10px 15px 0;
}
 
.grid .bloque, .grid a.bloque, .grid a.bloque:visited {
	box-shadow: 0 0 3px 0 rgba(0,0,0,.25);
	margin-bottom: 15px;
	border: none;
	line-height: 1.25;
	justify-content: flex-start;
	padding: 12px;
}


.grid .bloque:hover, .grid a.bloque:hover {
	box-shadow: 0 0 7px 0 rgba(0,0,0,.4);
}
.grid a.bloque:hover .txt h3 {
	color: var(--color-link-texto);
	text-decoration: none;
}


.grid .img {
	width: 100%;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.grid .txt {
	padding-top: 10px;
}
.grid .txt h3 {
	display: block;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	padding: 5px 0;
}
.grid .txt .codigo, .grid .txt .dim {
	padding: 3px 0;
	display: block;
	text-align: left;
	font-weight: 400;
	font-size: 14px;
	line-height: 1.43;
}
.grid .precio .regular {
	padding: 15px 0 3px;
	display: block;
	text-align: left;
	font-weight: 400;
	font-size: 18px;
}
.grid .botonera {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 5px;
}
.grid .botonera .btn {
	display: block;
	margin: 10px 0;
	width: 30px;
	padding: 0;
}
.grid .botonera .btn i {
	margin: 0;
}

.grid.gridCat .bloque {
	border: none;
}
.grid.gridCat .img {
	/*border: 1px solid #ddd;*/
	margin-bottom: 10px;
}
.grid.gridCat .img img {
	width: 100%;
}
.grid.gridCat .txt {
	flex-grow: 2;
}
.grid.gridCat .txt h3 {
	font-family: 'Roboto Condensed', 'Arial';
	text-align: center;
	font-size: 18px;
	line-height: 1.1;
	text-transform: uppercase;
	padding-bottom: 10px;

}

.no-image {
	filter: grayscale(100%);
	opacity: 0.4;
}


.carruselHome .carruLeft, .carruselHome .carruRight {
	background: #fff;
	color: #666;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	top: calc(50% - 15px);
	opacity: 1;
	box-shadow: 0 0 3px 0 #00000040;
	font-size: 10px;
	line-height: 3;
	text-align: center;
	padding: 0;
	margin: 0;
}
.carruselHome .carruLeft:hover, .carruselHome .carruRight:hover {
	background: #b1252b;
	color: #fff;
}
.carruselHome .carruLeft {
	left: 10px;
}
.carruselHome .carruRight {
	right: 10px;
}

/* /GRID */


/* CONTENT */
.contact {
	margin-top: 50px;
	margin-bottom: 50px;
}
.contact .info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 25px 0;
}
.contact h3 {
	margin: 25px 0 5px 0;
	padding: 6px 10px 4px 80px;
	width: 180px;
	font-size: 16px;
	line-height: 1.25;
	background: var(--color-boton-fondo);
	color: var(--color-boton-texto);
	display: flex;
}
.contact p {
	padding-left: 80px;
	font-size: 14px;
	line-height: 1.3;
	
}


/* /CONTENT */


@media (max-width: 1420px) {
	.carruselMain.max {
		max-width: 1145px;
	}
	.carruselCat {
		width: 215px;
	}
	.carruselLine .content.max {
		max-width: calc(100% - 225px);
		width: calc(100% - 225px);
	}

	.carruselHome .grid .item {
		min-width: 215px;
		width: 215px;
		max-width: 215px;
		height: 387px;
	}
	.grid .txt .codigo, .grid .txt .dim {
		font-size: 13px;
	}
	.grid .txt h3 {
		font-size: 14px;
	}
	.grid .txt {
		font-size: 13px;
	}
}


@media (max-width: 1160px) {
	.carruselMain.max {
		max-width: 920px;
	}
	.carruselCat {
		display: none;
	}
	.carruselLine .content.max {
		width: 100%;
		max-width: 100%;
	}
	.carruselHome .grid .item {
		height: auto;
	}
	.grid .txt {
		max-height: none;
	}

}

@media (max-width: 940px) {
	.max {
		padding-left: 15px;
		padding-right: 15px;
	}

	.carruselMain.max {
		max-width: 695px;
	}
}

@media (max-width: 768px) {
	
	header .mobile_menu {
		display: block;
	}
	
	header .menu {
		display: none;
		position: absolute;
		width: 100%;
		top: 0;
		left: 0;
		z-index: 1000;
	}
	header .menu.opened {
		display: block;
	}
	
	header .bottom .max {
		padding: 0;
	}
	header .menu ul.main {
		flex-direction: column;
		align-items: stretch;
		background: #fff;
		height: auto;
	}
	header .menu ul.main li a {
		border-bottom: 1px solid #ccc;
	}
	header .submenu {
		position: static;
		width: 100%;
		border: none;
	}
	header .menu  ul.main li .submenu li a {
		padding-left: 30px;
	}
	header .subsubmenu {
		position: static;
		max-width: 100%;
		width: 100%;
		border: none;
	}
	header .menu  ul.main li .submenu li .subsubmenu li a {
		padding-left: 45px;
	}
	#filtro .btn {
		margin-top: 30px;
	}
	.grid {
		margin-left: -8px;
		margin-right: -8px;
	}
	.grid.gridCat {
		margin-left: -5px;
		margin-right: -5px;
	}
	.grid.gridCat .item {
		padding: 0 5px;
	}
}
@media (max-width: 720px) {
	.carruselMain.max {
		max-width: 470px;
	}
	.footer .subFooterTop .max {
		flex-direction: column;
		gap: 25px;
	}
	
	.footer .subFooterTop .max div {
		width: 100%;
	}
}
@media (max-width: 580px) {
	.max {
		padding-left: 10px;
		padding-right: 10px;
	}
	header .max {
		gap: 10px;
	}
	header .left {
		gap: 10px;
	}
	header .right {
		gap: 10px;
	}
	.grid .botonera {
		position: static;
	}
	.grid .img img {
		max-width: 100%;
	}
	.desk {
		display: none;
	}
	.mobile {
		display: block;
	}
}
@media (max-width: 480px) {
	.carruselMain.max {
		min-width: 320px;
		padding: 10px;
	}
	
	.grid .bloque, .grid a.bloque, .grid a.bloque:visited {
		padding: 5px;
	}
	.grid .txt {
		max-height: none;
	}
	h2.carru {
		font-size: 16px;
	}
	.grid.gridCat .txt h3 {
		font-size: 13px;
	}
	
}
