/*
========================================================================================================================
VARIABLES
========================================================================================================================
*/

:root {

	--1px:.0625rem;--2px:.125rem;--3px:.1875rem;--4px:.250rem;--5px:.3125rem;--6px:.375rem;--7px:.4375rem;--8px:.5rem;--9px:.5625rem;--10px:.625rem;--11px:.6875rem;--12px:.750rem;--13px:.8125rem;--14px:.875rem;--15px:.9375rem;--16px:1rem;--17px:1.0625rem;--18px:1.125rem;--19px:1.1875rem;--20px:1.250rem;--21px:1.3125rem;--22px:1.375rem;--23px:1.4375rem;--24px:1.500rem;--25px:1.5625rem;--26px:1.625rem;--27px:1.6875rem;--28px:1.750rem;--29px:1.8125rem;--30px:1.875rem;--31px:1.9375rem;--32px:2rem;--33px:2.0625rem;--34px:2.125rem;--35px:2.1875rem;--36px:2.250rem;--37px:2.3125rem;--38px:2.375rem;--39px:2.4375rem;--40px:2.500rem;--41px:2.5625rem;--42px:2.625rem;--43px:2.6875rem;--44px:2.750rem;--45px:2.8125rem;--46px:2.875rem;--47px:2.9375rem;--48px:3rem;--49px:3.0625rem;--50px:3.125rem;--51px:3.1875rem;--52px:3.250rem;--53px:3.3125rem;--54px:3.375rem;--55px:3.4375rem;--56px:3.500rem;--57px:3.5625rem;--58px:3.625rem;--59px:3.6875rem;--60px:3.750rem;--61px:3.8125rem;--62px:3.875rem;--63px:3.9375rem;--64px:4rem;--65px:4.0625rem;--66px:4.125rem;--67px:4.1875rem;--68px:4.250rem;--69px:4.3125rem;--70px:4.375rem;--71px:4.4375rem;--72px:4.500rem;--73px:4.5625rem;--74px:4.625rem;--75px:4.6875rem;--76px:4.750rem;--77px:4.8125rem;--78px:4.875rem;--79px:4.9375rem;--80px:5rem;--81px:5.0625rem;--82px:5.125rem;--83px:5.1875rem;--84px:5.250rem;--85px:5.3125rem;--86px:5.375rem;--87px:5.4375rem;--88px:5.500rem;--89px:5.5625rem;--90px:5.625rem;--91px:5.6875rem;--92px:5.750rem;--93px:5.8125rem;--94px:5.875rem;--95px:5.9375rem;--96px:6rem;--97px:6.0625rem;--98px:6.125rem;--99px:6.1875rem;--100px:6.250rem;

	--max-width: 98.125rem;
	--space: .9375rem;

	--background1: #e9bbac;
	--background2: #f9edea;
	--background3: #d27556;

	--pink-100: #edc0ad;

	--grey-100: #f1f1f1;
	--grey-300: #d4d4d4;
	--grey-350: #c7c7c7;
	--grey-400: #9d9d9b;
	--grey-600: #545454;
	--grey-700: #4c4c4c;

	--theme-blue: #0d00aa;
	--theme-blue-light: #3a31a9;
	--theme-blue-alpha: #0d00aa21;

}

@media (min-width: 1024px)
{
	:root {
		--space: 2rem;
	}
}


/*
========================================================================================================================
GRID
========================================================================================================================
*/

.row {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-gap: 0 var(--30px);
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
	position: relative;
	width: 100%;
	min-height: 1px;
	grid-column: span 12;
}

.col-1  { grid-column: span 1  }
.col-2  { grid-column: span 2  }
.col-3  { grid-column: span 3  }
.col-4  { grid-column: span 4  }
.col-5  { grid-column: span 5  }
.col-6  { grid-column: span 6  }
.col-7  { grid-column: span 7  }
.col-8  { grid-column: span 8  }
.col-9  { grid-column: span 9  }
.col-10 { grid-column: span 10 }
.col-11 { grid-column: span 11 }
.col-12 { grid-column: span 12 }

@media (min-width: 767px) {
	.col-sm-1  { grid-column: span 1  }
	.col-sm-2  { grid-column: span 2  }
	.col-sm-3  { grid-column: span 3  }
	.col-sm-4  { grid-column: span 4  }
	.col-sm-5  { grid-column: span 5  }
	.col-sm-6  { grid-column: span 6  }
	.col-sm-7  { grid-column: span 7  }
	.col-sm-8  { grid-column: span 8  }
	.col-sm-9  { grid-column: span 9  }
	.col-sm-10 { grid-column: span 10 }
	.col-sm-11 { grid-column: span 11 }
	.col-sm-12 { grid-column: span 12 }
}
@media (min-width: 1025px) {
	.col-md-1  { grid-column: span 1  }
	.col-md-2  { grid-column: span 2  }
	.col-md-3  { grid-column: span 3  }
	.col-md-4  { grid-column: span 4  }
	.col-md-5  { grid-column: span 5  }
	.col-md-6  { grid-column: span 6  }
	.col-md-7  { grid-column: span 7  }
	.col-md-8  { grid-column: span 8  }
	.col-md-9  { grid-column: span 9  }
	.col-md-10 { grid-column: span 10 }
	.col-md-11 { grid-column: span 11 }
	.col-md-12 { grid-column: span 12 }
}
@media (min-width: 1920px) {
	.col-lg-1  { grid-column: span 1  }
	.col-lg-2  { grid-column: span 2  }
	.col-lg-3  { grid-column: span 3  }
	.col-lg-4  { grid-column: span 4  }
	.col-lg-5  { grid-column: span 5  }
	.col-lg-6  { grid-column: span 6  }
	.col-lg-7  { grid-column: span 7  }
	.col-lg-8  { grid-column: span 8  }
	.col-lg-9  { grid-column: span 9  }
	.col-lg-10 { grid-column: span 10 }
	.col-lg-11 { grid-column: span 11 }
	.col-lg-12 { grid-column: span 12 }
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding-left: var(--space);
	padding-right: var(--space);
}
.container-slim {
	max-width: calc( var(--max-width) * .75 );
	margin: 0 auto;
	padding-left: var(--space);
	padding-right: var(--space);
}
.container-ultra-slim {
	max-width: calc( var(--max-width) * .5 );
	margin: 0 auto;
	padding-left: var(--space);
	padding-right: var(--space);
}

					.container-fluid {
						max-width: var(--max-width);
						margin: 0 auto;
						padding-left: 0;
						padding-right: 0;
					}



/*
========================================================================================================================
000 TMP
========================================================================================================================
Definición de clases pendientes de aprobación final                                                                   */



#pagination_trigger {
	background: #fff;
	color: #333;
	align-items: center;
	align-content: center;
	display: inline-grid;
	font-size: 20px;
	font-weight: 600;
}



.enviroment-real .header {
	background: #d81a60;
}



.schedule .header {
	background: #63942a;
}

.schedule .subheader {
	background: #a7c289;
}
	.schedule .subheader .btn {
		background: #e1f32a;
		color: #333;
	}
	.schedule .subheader .btn:hover {
		background: #cddc39;
		border-color: #cddc39;
	}
		.schedule .subheader .number {
			color: #fff;
			background: rgba(0, 0, 0, 0.3);
		}

.schedule .sections li.selected:before {
	border-bottom-color: #a7c289;
}

.schedule .breadcrumb li a.active {
	background-color: #e1f32a;
	color: #000;
}

.schedule .breadcrumb li a.active:before {
	border-color: #e1f32a;
	border-left-color: transparent;
}

.schedule .breadcrumb li a.active:after {
	border-left-color: #e1f32a;
}


.schedule .breadcrumb li a.disabled {
	background-color: #fbfcf1;
}

.schedule .breadcrumb li a.disabled:before {
	border-color: #fbfcf1;
	border-left-color: transparent;
}

.schedule .breadcrumb li a.disabled:after {
	border-left-color: #fbfcf1;
}

.schedule .mydesign {
	display: none;
}



.custom-products .header {
	background: #942a4d;
}

.custom-products .subheader {
	background: #c2899a;
}
	.custom-products .subheader .btn {
		background: #ffffff;
		color: #333;
	}
	.custom-products .subheader .btn:hover {
		background: #f5f5f5;
		border-color: #f5f5f5;
	}
		.custom-products .subheader .number {
			color: #fff;
			background: rgba(0, 0, 0, 0.3);
		}

.custom-products .sections li.selected:before {
	border-bottom-color: #c2899a;
}

.custom-products .breadcrumb li a.active {
	background-color: #ffffff;
	color: #000;
}

.custom-products .breadcrumb li a.active:before {
	border-color: #ffffff;
	border-left-color: transparent;
}

.custom-products .breadcrumb li a.active:after {
	border-left-color: #ffffff;
}


.custom-products .breadcrumb li a.disabled {
	background-color: #fbfcf1;
}

.custom-products .breadcrumb li a.disabled:before {
	border-color: #fbfcf1;
	border-left-color: transparent;
}

.custom-products .breadcrumb li a.disabled:after {
	border-left-color: #fbfcf1;
}

/* .custom-products .mydesign {
	display: none;
} */


@media (min-width: 1200px)
{
	.header select[name="cart_type_id"] {
		background: none !important;
		border-color: transparent;
		color: #fff;
		font-weight: 500;
	}

	.header select[name="cart_type_id"]:focus {
		background: #0d1b39 !important;
	}

	.sections li.cart_selector {
		background: #0d1b39;
		padding-left: 14px;
		margin-right: 14px;
	}
	
	.schedule .sections li.cart_selector {
		background: #283b11;
	}

	.schedule .header select[name="cart_type_id"]:focus {
		background: #283b11 !important;
	}

	.custom-products .sections li.cart_selector {
		background: #2d0d18;
	}

	.custom-products .header select[name="cart_type_id"]:focus {
		background: #2d0d18 !important;
	}
	
}


.enviroment-betanet .header {
	background: green;
}


/*
========================================================================================================================
001 NORMALIZE
normalize.css v6.0.0 | MIT License | github.com/necolas/normalize.css
========================================================================================================================
Reseteamos el estilo por defecto de los navegadores                                                                   */

button,
hr,
input {
	overflow: visible
}

audio,
canvas,
progress,
video {
	display: inline-block
}

progress,
sub,
sup {
	vertical-align: baseline
}

[type=checkbox],
[type=radio],
legend {
	box-sizing: border-box;
	padding: 0
}

html {
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
	display: block
}

h1 {
	font-size: 2em;
	margin: .67em 0
}

figure {
	margin: 1em 40px
}

hr {
	box-sizing: content-box;
	height: 0
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em
}

a {
	background-color: transparent;
	-webkit-text-decoration-skip: objects
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted
}

b,
strong {
	font-weight: bolder
}

dfn {
	font-style: italic
}

mark {
	background-color: #ff0;
	color: #000
}

small {
	font-size: 80%
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative
}

sub {
	bottom: -.25em
}

sup {
	top: -.5em
}

audio:not([controls]) {
	display: none;
	height: 0
}

img {
	border-style: none
}

svg:not(:root) {
	overflow: hidden
}

button,
input,
optgroup,
select,
textarea {
	margin: 0
}

button,
select {
	text-transform: none
}

[type=reset],
[type=submit],
button,
html [type=button] {
	-webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
	border-style: none;
	padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
	outline: ButtonText dotted 1px
}

legend {
	color: inherit;
	display: table;
	max-width: 100%;
	white-space: normal
}

textarea {
	overflow: auto
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto
}

[type=search] {
	-webkit-appearance: textfield;
	outline-offset: -2px
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
	-webkit-appearance: none
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit
}

summary {
	display: list-item
}

[hidden],
template {
	display: none
}


/*
========================================================================================================================
002 LAZYLOAD
========================================================================================================================
Efecto fadeIn para la carga de imágenes mediante js                                                                   */

/*.lazyload, .lazyloading {	opacity: 0; } .lazyloaded {	opacity: 1;	transition: opacity .3s ease; }*/
.lazyload,
.lazyloading {
	opacity: 0;
}

.lazyloaded {
	opacity: 1;
	transition: none;
}



/*
========================================================================================================================
003 JQUERY UI TOOLTIP
v1.12.1 - 2017-09-23 | http://jqueryui.com
Includes: core.css, tooltip.css
Copyright jQuery Foundation and other contributors; Licensed MIT
========================================================================================================================
CSS mínimo de jQuery UI para mostrar los tooltips                                                                     */

.ui-helper-hidden {
	display: none
}

.ui-helper-hidden-accessible {
	border: 0;
	clip: rect(0 0 0 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px
}

.ui-helper-reset {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	line-height: 1.3;
	text-decoration: none;
	font-size: 100%;
	list-style: none
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
	content: "";
	display: table;
	border-collapse: collapse
}

.ui-helper-clearfix:after {
	clear: both
}

.ui-helper-zfix {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	opacity: 0;
	filter: Alpha(Opacity=0)
}

.ui-front {
	z-index: 100
}

.ui-state-disabled {
	cursor: default !important;
	pointer-events: none
}

.ui-icon {
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat
}

.ui-widget-icon-block {
	left: 50%;
	margin-left: -8px;
	display: block
}

.ui-widget-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.ui-tooltip {
	padding: 8px;
	position: absolute;
	z-index: 9999;
	max-width: 300px
}

body .ui-tooltip {
	border-width: 2px
}


/* 003.1 JQUERY UI TOOLTIP > PERSONALIZACIÓN
	======================================================================================================================
	Redefinición de las características del jQuery Tooltip                                                              */

.ui-tooltip {
	max-width: none;
	margin-left: 30px;
	margin-right: 30px;
	z-index: 9999;
	padding: 5px;
	border: 2px solid #999;
	position: absolute;
	background: #fff;
}

.ui-tooltip table.stock {
	width: 300px;
	margin: 0 auto;
}

.ui-tooltip table.stock td {
	min-width: 40px;
}

.pop-zoom {
	width: 45vh;
	height: 45vh;
	text-align: center;
}

.pop-zoom img {
	max-height: 100%;
	max-width: 100%;
	margin: 0 auto;
	display: inline-block;
}

body.desktop:not(.catalog):not(.schedule) .action-zoom {
	cursor: zoom-in;
}



/*
========================================================================================================================
004 BASE
========================================================================================================================
Definición de las características de los elementos básicos                                                            */

html,
body {
	font-size: 10px;
	height: 100%;
	-webkit-overflow-scrolling: touch;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
input,
select,
textarea {
	font-family: 'Segoe UI', 'Futura', 'Trebuchet MS', 'Tahoma', Arial, sans-serif;
	-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-feature-settings: "kern"1;
	-moz-font-feature-settings: "kern"1;
}

html {
	overflow-y: scroll !important;
	overflow-x: hidden;
}

body {
	margin: 0;
	background-color: #f6f6f6;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	text-decoration: none;
}

button {
	border: 0;
	margin: 0;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	outline: none;
	cursor: pointer;
}

h2 {
	font-size: 29px;
	line-height: 33px;
	font-weight: 300;
}

/* Impedimos que se muestre un color de fondo en los inputs con
autofill */
input,
input:focus {
	/*-webkit-transition: none !important;*/
}

input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #fff inset !important;
}

input:-webkit-autofill:focus {
	-webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
}

input.error:-webkit-autofill,
input.error:-webkit-autofill:focus,
.has-error input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px transparent inset !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
	transition: background-color 5000s ease-in-out 0s;
}

/* Impedimos la interacción con elementos de solo lectura */
input[readonly],
select[readonly],
textarea[readonly] {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Impedimos que se muestren las flechas de aumentar / disminuir en
los inputs de tipo numérico */
input[type='number'] {
	-moz-appearance: textfield;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

select:focus {
	outline: 0;
}

select:before {
	font-family: 'iconnet';
	content: '\e902';
	font-size: 16px;
	position: absolute;
	right: 0;
	top: 0;
	line-height: 1;
	width: 20px;
	height: 30px;
}


input,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	background: #fff;
}

select {
	background: url('../img/caret.svg') no-repeat center right !important;
}



/*
========================================================================================================================
005 LAYOUT
========================================================================================================================
Definición de los contenedores                                                                                        */

.content {
	width: 100%;
	padding-bottom: 30px;
	position: relative;
	left: 0;
	right: 0;
	background-color: #f6f6f6;
}

.container-fluid {
	padding-left: 30px;
	padding-right: 30px;
}

.container-fixed-lg {
	position: relative;
	margin: 0 auto;
	max-width: 1800px;
}

.table-container {
	position: relative;
}



/*
========================================================================================================================
006 LOGIN
========================================================================================================================
Estilos para la páginas de login inicial y la de login de agente                                                      */

body.login {
	background-color: #f8f8f8;
	background-image: url('https://www.joma-sport.net/ka/apps/joma_net_media/login/login.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	padding: 0;
}

body.login:before {
	content: ' ';
	position: absolute;
	/*	top: 0;
	right: 0;*/
	bottom: 0;
	left: 0;
	z-index: 0;
	padding: 2.25em 1.6875em;
	background-image: -webkit-repeating-radial-gradient(center center, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 100%);
	background-image: -moz-repeating-radial-gradient(center center, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 100%);
	background-image: -ms-repeating-radial-gradient(center center, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 100%);
	background-image: repeating-radial-gradient(center center, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2) 1px, transparent 1px, transparent 100%);
	-webkit-background-size: 3px 3px;
	-moz-background-size: 3px 3px;
	background-size: 3px 3px;
}


.login .content {
	height: 100%;
	padding: 0;
	background: transparent;
}

.form-access {
	opacity: 0;
	margin: 0 auto 30px auto;
	transition: all 0.6s ease;
	transition-delay: 0.2s;

	background: #fff;
	padding: 30px 20px 0 20px;
	border-radius: 3px;

}

.form-access.show {
	opacity: 1;
}

.login form {
	max-width: 350px;
	margin: 0 auto
}

.login .icon-logo {
	font-size: 32px;
	/*color: #21438F;*/
	color: #333;
	/*color: #0473c7;*/
	display: block;
	text-align: center;
	margin-bottom: 15px;
}

.login .form-group {
	position: relative;
	width: 100%;
	max-width: 100%;
	background-color: #fff;
	border: 2px solid rgba(0, 0, 0, .07);
	border-radius: 2px;
	overflow: hidden;
	transition: border-color .3s ease, background .3s ease;
	color: #626262;
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: normal;
	-webkit-font-smoothing: antialiased;
	margin-bottom: 10px;
	padding: 7px 12px 4px 12px;
}

.login .form-group.focused {
	border-color: #0473c7;
}


.login .form-group.has-error {
	border: 2px solid #F9D975 !important;
	background-color: #fffef9 !important;
}

.login .form-group.has-error.focused {
	border-color: #FFA000 !important;
}


.login label {
	display: block;
	margin: 10px auto;
	font-size: 10px;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0;
	opacity: 1;
	transition: opacity .2s ease;
	line-height: 20px;
	letter-spacing: .04em;
}

.login input {
	background: none;
	display: block;
	width: 100%;
	border: none;
	height: 25px;
	min-height: 25px;
	padding: 0;
	color: #2c2c2c;
	outline: 0;
	line-height: 22px;
	font-size: 14px;
	font-weight: 600;
	vertical-align: middle;
	-webkit-transition: all .12s ease;
	transition: all .12s ease;
	box-shadow: none;
	transition: border 1s ease;
}

#access button,
#agent button,
#addresses button {
	width: 100%;
	position: relative;
	padding: 8px 17px;
	border: 2px solid transparent;
	border-radius: 3px;
	outline: none;
	box-shadow: none;
	background-image: none;
	color: #fff;
	text-align: center;
	font-size: 11px;
	line-height: 21px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: .02rem;
	text-shadow: none;
	cursor: pointer;
	transition: background .3s ease;
	background: #0173c7;
}

#access button:hover,
#agent button:hover,
#addresses button:hover {
	background: #2d509a;
}

.form-access select {
	background: none;
	width: 100%;
	border: 0;
	outline: 0;
	padding: 0;
	cursor: pointer;
	color: #2c2c2c;
	outline: 0;
	line-height: 22px;
	font-size: 14px;
	font-weight: 600;
}

.form-access .btn-submit {
	border-color: #21438F;
	background: #21438F;
	color: #fff;
}

.form-access .btn-submit:active,
.form-access .btn-submit:focus,
.form-access .btn-submit:hover {
	border-color: #3a5fb3;
	background: #3a5fb3;
	color: #fff;
}

.login .version {
	font-family: 'Consolas', monospace;
	color: #333;
	font-size: 12px;
	display: block;
	text-align: right;
	margin-top: 10px;
}

.form-group.has-error {
	border-color: #F55753;
}

.login .error {
	display: block;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: 500;
	color: #957D32;
	font-family: 'Segoe UI', 'Futura', 'Trebuchet MS', 'Tahoma', 'Arial', sans-serif;
}

.login .global-error {
	display: none;
	margin: 10px 0;
	color: #F55753;
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

#access ::-moz-selection,
#agent ::-moz-selection {
	color: #fff;
	background: #333;
}

#access ::selection,
#agent ::selection {
	color: #fff;
	background: #333;
}


/*
========================================================================================================================
007 LOADING
========================================================================================================================
Controlamos el efecto de carga con las llamadas ajax                                                                  */

/* Evitamos la interacción del usuario durante el loading */
body.loading,
body.loading .header,
body.loading .subheader,
body.loading .content {
	/*pointer-events:none;*/
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version */
}

body.loading .content {
	pointer-events: none;
}

/* Definimos el loader */
body .loader {
	position: fixed;
	top: 55px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	cursor: default;
	background: transparent;
	transition: opacity 1.2s ease 0s, background 2s ease 0.5s;
	opacity: 0;
}

body.noloading .loader {
	display: none !important;
}

/* La hacemos visible al añadir la clase .loading al body */
body.loading .loader {
	z-index: 99999;
	/* z-index: 100; */
	background: rgba(255, 255, 255, 0.9);
	opacity: 1;
}

/* Definimos los elementos visuales de carga */
.loading-cube {
	width: 90px;
	height: 90px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -45px;
	margin-left: -45px;
	-webkit-transform: rotateZ(45deg);
	transform: rotateZ(45deg);
}

.loading-cube div {
	float: left;
	width: 50%;
	height: 50%;
	position: relative;
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}

.loading-cube div:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #039de3;
	-webkit-animation: EfectoLibro 2.4s infinite linear both;
	animation: EfectoLibro 2.4s infinite linear both;
	-webkit-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.loading-cube .cube2 {
	-webkit-transform: scale(1.1) rotateZ(90deg);
	transform: scale(1.1) rotateZ(90deg);
}

.loading-cube .cube3 {
	-webkit-transform: scale(1.1) rotateZ(180deg);
	transform: scale(1.1) rotateZ(180deg);
}

.loading-cube .cube4 {
	-webkit-transform: scale(1.1) rotateZ(270deg);
	transform: scale(1.1) rotateZ(270deg);
}

.loading-cube .cube2:before {
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.loading-cube .cube3:before {
	-webkit-animation-delay: 0.6s;
	animation-delay: 0.6s;
}

.loading-cube .cube4:before {
	-webkit-animation-delay: 0.9s;
	animation-delay: 0.9s;
}

@-webkit-keyframes EfectoLibro {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0deg);
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes EfectoLibro {

	0%,
	10% {
		-webkit-transform: perspective(140px) rotateX(-180deg);
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,
	75% {
		-webkit-transform: perspective(140px) rotateX(0deg);
		transform: perspective(140px) rotateX(0deg);
		opacity: 1;
	}

	90%,
	100% {
		-webkit-transform: perspective(140px) rotateY(180deg);
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}



/*
========================================================================================================================
008 BOTONES
========================================================================================================================
Definición de los botones base y todas sus variantes de color                                                         */

.btn {

	display: inline-block;

	font-family: 'Montserrat', sans-serif;
	position: relative;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.01em;
	margin-bottom: 0;
	border: 2px solid #e0e0e0;
	text-align: center;
	vertical-align: middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #626262;
	cursor: pointer;
	background-color: #fff;
	text-shadow: none;
	box-shadow: none;
	line-height: 21px;
	padding: 5px 17px;
	position: relative;
	transition: color 0.1s linear 0s,
		background-color 0.3s ease 0s,
		border-color 0.3s ease 0s,
		opacity 0.2s linear 0s;
	margin-right: 1px;
}

.btn:hover {
	color: #333;
	border-color: #999;
}

.btn i {
	font-size: 16px;
	vertical-align: middle;
}


/* 008.1 BOTONES > Tamaños
	======================================================================================================================
	Variantes de tamaño                                                                                                 */

.btn-large {
	line-height: 40px;
	min-width: 150px;
	font-size: 12px;
	/*letter-spacing: 1px; Si la fuente es igual a 11px, ponemos 1px */
}

.btn-block {
	display: block;
	width: 100%;
}

@media screen and (max-width: 1024px) {

	.footer.show-block-button-xs .btn-block-xs {
		display: block !important;
		width: 100% !important;
	}

}


@media screen and (max-width: 767px) {
	.btn-block-xs {
		float: none !important;
		display: block !important;
		width: 100% !important;
	}
}




/* 008.2 BOTONES > Estados
	======================================================================================================================
	Variantes de color en función de la naturaleza del botón                                                            */

/* Verde */
.btn-success {
	border-color: #CDDC39;
}

.btn-success:hover,
.btn-success:focus {
	border-color: #8BC34A;
}

/* Azul */
.btn-info {
	border-color: #64B5F6;
}

.btn-info:hover,
.btn-info:focus {
	border-color: #009aee;
}

/* Rojo */
.btn-danger {
	border-color: #d32f2f;
}

.btn-danger:hover,
.btn-danger:focus {
	color: #fff;
	background: #b71c1c;
	border-color: #b71c1c;
}

/* Rojo con fondo rojo */
.btn-danger-bg {
	color: #fff;
	background: #d32f2f;
	border-color: transparent;
}

.btn-danger-bg:hover,
.btn-danger-bg:focus {
	color: #fff;
	background: #b71c1c;
	border-color: #b71c1c;
}



/*
========================================================================================================================
009 HEADER
========================================================================================================================
Cabecera principal con el logotipo y los botones de navegación                                                        */

.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 998;
	/*z-index: 888;*/
	padding: 0;
	background-color: #21438F;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.logo {
	display: inline-block;
}

.logo .icon-logo {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	font-size: 31px;
}

.sections {
	float: right;
	padding: 0;
	margin: 0;
	font-size: 0;
	/*transition: all 1s ease;*/
}

.sections li {
	position: relative;
	display: inline-block;
	font-size: 14px;
	padding: 0;
	margin: 0;
}

.sections li a {
	display: block;
	text-transform: uppercase;
	padding-left: 15px;
	padding-right: 15px;
	font-weight: 500;
	color: #fff;
	opacity: 0.6;
	transition: all 0.3s ease;
	border-radius: 0;
	outline: none;
}

.sections li:last-child a {
	padding-right: 0;
}

.sections li.selected a,
.sections li a:hover {
	opacity: 1;
}

.sections>li.selected:before {
	content: "";
	position: absolute;
	left: calc(50% - 10px);
	width: 0;
	height: 0;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	clear: both;
}

/* Si hay alguna ventana modal abierta, ponemos el triángulo de color blanco */
.noscroll .sections>li.selected:before {
	border-bottom-color: #fff;
}

.sections>li.selected:last-child:before {
	left: 50%;
}

.header .trigger {
	float: right;
	color: #fff;
	font-size: 16px;
	line-height: 55px;
	height: 55px;
	width: 65px;
	background: none;
}


li.profile {
	position: relative;
}

li.profile:hover>a,
li.profile.open>a {
	opacity: 1;
	background: #fff;
	color: #000;
	transition: none;
}

li.profile>ul {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 1201px){

	li.profile>ul {
		display: none;
	}

}


li.profile:hover>ul,
li.profile.open>ul {
	display: block;
}

li.profile ul>li {
	display: block;
	line-height: 45px;
	white-space: nowrap;
	border-bottom: 1px solid #ddd;
	background: #fff;
}

li.profile ul>li:last-child {
	border-bottom: 0;
}

li.profile ul>li a {
	opacity: 1;
	padding-left: 20px;
	padding-right: 20px;
	color: #000;
	background: #fff;
	transition: all .3s ease;
}

li.profile ul>li a:hover {
	background: #eee;
}

li.profile ul>li.selected {
	border-bottom-color: #333;
}

li.profile ul>li.selected a {
	background: #333;
	color: #fff;
	pointer-events: none;
}


@media screen and (max-width: 1200px) {

	.sections li i {
		display: inline-block;
	}

	li.profile>ul {
		padding-left: 20px;
		border-top: 1px solid #ddd;
		background: #eee;
	}

	li.profile>ul li {
		border-left: 1px solid #ddd;
	}

	li.profile ul>li a {
		text-transform: none;
		text-align: left;
		line-height: 50px;
	}

}

@media screen and (min-width: 1201px) {

	li.profile>ul {
		position: absolute;
		top: 100%;
		right: -1px;
		border-left: 1px solid #ddd;
		border-right: 1px solid #ddd;
		background: #fff;
	}

}










/*
========================================================================================================================
010 SUBHEDADER
========================================================================================================================
Zona superior para albergar elementos específicos para cada página                                                    */

.subheader {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 777;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #e0e0e0;
	overflow: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.subheader table {
	border: 1px;
	width: 100%;
	border-collapse: collapse;
}

.subheader td {
	vertical-align: middle;
}

.subheader td.min {
	width: 1%;
	padding: 0;
	white-space: nowrap;
	font-size: 0;
}

.subheader .btn {
	display: inline-block;
	padding: 0;
	margin: 0;
	border: 0;
	background: #009aee;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	font-weight: 600;
	transition: background 0.3s ease;
	height: 55px;
	line-height: 55px;
}

.subheader .btn:hover {
	background: #1976D2;
	border-color: #1976D2;
}

.subheader .btn:first-child {
	margin-right: 5px;
}

.subheader .btn i {
	position: relative;
	font-size: 18px;
	vertical-align: center;
}


.subheader .btn-navigation {
	width: 55px;
	height: 55px;
}

.subheader button {
	font-size: 12px;
	white-space: nowrap;
}

.subheader .btn-cart {
	margin: 0 !important;
	border-right: 0;
	padding: 0 30px;
}

.subheader i {
	font-size: 16px;
}

.subheader .icon-cart {
	padding-right: 8px;
}

.subheader .icon-close {
	background: #ddd;
	border-radius: 4px;
	padding: 10px;
	transition: all .3s ease;
	margin: 0 5px 0 0;
}
.subheader .icon-close:hover {
	background: #ccc;
	cursor: pointer;
}

.subheader .icon-massive:before {
	content: "\e205";
}
.subheader .icon-massive {
	background: #ddd;
	border-radius: 4px;
	padding: 14px 10px;
	margin: 0 5px 0 0;
	transition: all .3s ease;
}
.subheader .icon-massive:hover {
	background: #ccc;
	cursor: pointer;
}



.subheader .icon-filter {
																background: #ddd;
																border-radius: 4px;
	padding: 10px;
																transition: all .3s ease;
	margin: 0 5px 0 0;
															}
.subheader .icon-filter:hover {
																background: #ccc;
																cursor: pointer;
															}

.subheader .number {
	display: inline-block;
	min-width: 26px;
	padding: 0 6px;
	color: #000;
	background: rgba(255, 255, 255, 0.8);
	text-align: center;
	line-height: 21px;
	border-radius: 5px;
	font-weight: 600;
	margin-left: 3px;
}

.subheader .searcher {
	position: relative;
	background: #fff;
	margin: 0;
	border-radius: 0;
}

.subheader label {
	position: absolute;
	top: 20px;
	left: 30px;
}

.subheader input {
	width: 100%;
	background: #fff;
	border: 0;
	margin: 0;
	border-radius: 4px;
	text-transform: uppercase;
	cursor: pointer;
	outline: none;
	color: #333;
	text-align: left;
	font-size: 16px;
	font-weight: 500;
	white-space: nowrap;
	padding: 0 15px 0 45px;
	height: 55px;
	line-height: 55px;
}

.subheader #search:focus::placeholder {
	color: transparent;
}




body.filters-open {
	overflow: hidden;
}


#FILTERS {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* min-height: 100vh; */
	/* background: hsl(66deg 70% 86%); */
	background: rgba(0,0,0,.6);
	z-index: 8888;
	opacity: 0;
	transition: all .3s ease;
	/* transform: translateY(-5px); */
	font-family: monospace;
	pointer-events: none;

	opacity: 0;
	pointer-events: none;
	overflow: hidden;
}
body.filters-open #FILTERS {
	opacity: 1;
	pointer-events: all;
	overflow: auto;
}

	#FILTERS header {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		min-height: 100px;
		padding: 30px;
		background: #fff;
		border-bottom: 1px solid #ddd;
		z-index: 1;
	}
	#FILTERS main {
		padding: 140px 30px 30px 30px;
		z-index: 0;
	}


		#FILTERS-TABS {
			display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			background: transparent;
			grid-gap: 1px;
			font-size: 20px;
		}
			#FILTERS-TABS button {
				background: #cdcbe6;
				color: var(--theme-blue);
				padding: 20px;
				font-weight: 600;
			}

			#FILTERS form[data-active="shoes"]    button[data-type="shoes"],
			#FILTERS form[data-active="textil"]     button[data-type="textil"],
			#FILTERS form[data-active="accesories"] button[data-type="accesories"] {
				background: #fff;
				color: var(--theme-blue);
			}

			/* Ajustamos el ancho de los grupos en funciÃ³n de la categorÃ­a que se estÃ© filtrando */
			/*
			#FILTERS form[data-active="shoes"] #f_gender,
			#FILTERS form[data-active="shoes"] #f_stock {
				grid-column: span 2;
			}
			#FILTERS form[data-active="textil"] #f_stock {
				grid-column: span 2;
			}
			#FILTERS form[data-active="accesories"] #f_stock {
				grid-column: span 4;
			}
		*/

		#FILTERS #f_sizes,
		#FILTERS #f_color,
		#FILTERS #f_sport,
		#FILTERS #f_category {
			grid-column: span 4;
		}

		#FILTERS #f_sizes .filter_box,
		#FILTERS #f_color .filter_box,
		#FILTERS #f_sport .filter_box,
		#FILTERS #f_category .filter_box {
			display: grid;
			grid-auto-columns: 1fr;
			grid-auto-flow: column;
		}
		#FILTERS #f_sizes .filter_box {
			grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
		}
		#FILTERS #f_color .filter_box,
		#FILTERS #f_sport .filter_box,
		#FILTERS #f_category .filter_box {
			grid-template-rows: 1fr 1fr 1fr 1fr;
		}




#FILTERS form[data-active="shoes"] .hide-shoes,
#FILTERS form[data-active="textil"] .hide-textil,
#FILTERS form[data-active="accesories"] .hide-accesories {
	display: none !important;
}






	#FILTERS .filters-selected {
		display: grid;
		grid-template-columns: auto 1fr auto auto auto;
		grid-gap: 15px;
	}
		#FILTERS .filters-selected h1 {
			margin: 0;
			align-self: center;
		}
		#FILTERS .filters-selected .tags {
			align-self: center;
		}
			#FILTERS .filters-selected span {
				display: inline-block;
				padding: 10px 15px;
				font-size: 18px;
				cursor: pointer;
				background: #333;
				color: #fff;
				margin-right: 5px;
				border-radius: 5px;
			}



	#FILTERS h5 {
		margin: 0 0 15px 0;
		font-size: 20px;
		font-family: monospace;
		color: var(--theme-blue);
	}



#FILTERS .FILTERS {
	display: grid;
	grid-template-rows: auto 1fr;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	grid-gap: 1px;
	background: #efeef5;
	border: 1px solid #ddd;
}



	#FILTERS .filter_group {
		border-bottom: 0;
		padding: 15px;
		background: #fff;
	}



	#FILTERS #f_color,
	#FILTERS #f_category,
	#FILTERS #f_sport {
		/* display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		grid-column: span 4; */
	}

/*
	#FILTERS #f_sport {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		grid-column: span 2;
	}
*/

	#FILTERS #f_string {
		display: grid;
		grid-column: span 4;
	}
	#FILTERS #f_string input {
		height: 40px;
		line-height: 40px;
		font-size: 20px;
		font-family: monospace;
	}

		#FILTERS #f_color h5,
		#FILTERS #f_category h5,
		#FILTERS #f_sport h5,
		#FILTERS #f_sizes h5 {
			grid-column: 1/-1;
		}


		#FILTERS .filter_item {
			padding-top: 5px;
			padding-bottom: 5px;
			cursor: pointer;
			display: grid;
    	grid-template-columns: auto 1fr;
			transition: all .3s ease;
		}
			#FILTERS label {
				width: 100%;
				font-size: 16px;
				padding: 5px 5px 5px 10px;
				cursor: pointer;
				border-bottom: 1px solid transparent;
				align-self: center;
			}
			#FILTERS .filter_group input[type="checkbox"]:focus:not(:checked) {
				border-color: #333;
			}
			#FILTERS .filter_group input[type="checkbox"] {
				outline: 0;
				cursor: pointer;
				margin: 0;
				border: 2px solid var(--theme-blue);
				width: 16px;
				height: 16px;
				margin-left: 10px;
				accent-color: #000;
				transition: all .3s ease;
				align-self: center;
			}

			#FILTERS .filter_group input:checked {
				background: var(--theme-blue-light);
				border-color: #000;
			}
			#FILTERS .filter_group input:checked ~ label {
				color: var(--theme-blue);
    		background: unset;
			}


			#FILTERS .filter_item:hover label {
				color: var(--theme-blue);
				background: var(--theme-blue-alpha);
			}
			#FILTERS .filter_item:hover input[type="checkbox"] {
				border-color: #333;
			}


			#FILTERS header .filter_group input[type="checkbox"] {
				width: 100%;
				height: 30px;
				line-height: 30px;
				font-size: 18px;
			}

			#FILTERS .filter_item:has(input[type=checkbox]:checked) {
				background: var(--theme-blue-alpha);
			}

			#FILTERS .filter-toggle button {
				background: #eee;
				color: #333;
				font-size: 16px;
				padding: 5px 15px 5px 15px;
				font-family: monospace;
				width: 100%;
				display: block;
				font-weight: 600;
				height: 100%;
				letter-spacing: 0;
				transition: all .3s ease;
			}
			#FILTERS .filter-toggle button:hover {
				background: #ddd;
			}
			#FILTERS .filter_item[data-more] {
				display: none;
			}
			#FILTERS .filter_item[data-more].visible {
				display: grid;
			}

			#FILTERS .filter-toggle[data-status="closed"] .opened {
				display: none;
			}
			#FILTERS .filter-toggle[data-status="opened"] .closed {
				display: none;
			}





	/*
	========================================================================================================================
	FILTERS
	========================================================================================================================
	*/

	@media screen and (max-width:1024px)
	{
		#FILTERS .FILTERS {
				grid-template-columns: 1fr;
		}

			#FILTERS .filter_group {
				display: block !important;
				grid-column: 1 !important;
			}
	}




/*
========================================================================================================================
011 MENU
========================================================================================================================
Botonera con todas las categorías principales del catálogo                                                            */

.menu {
	position: relative;
	width: 100%;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.menu ul {
	color: #000;
	padding: 0;
	margin: 0;
	font-size: 0;
	text-align: center;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

.menu li {
	padding-bottom: 3px;
	padding-right: 3px;
	padding-left: 0;
}

.menu li.subcategory,
.menu li.close,
.menu li.cart {
	display: none;
}

.menu li a {
	position: relative;
	display: block;
	padding: 0;
	cursor: pointer;
	text-transform: uppercase;
	font-weight: 500;
	box-sizing: border-box;
	border-width: 2px;
	border-style: solid;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	/*transition: all 0.3s ease;*/
}

.menu li a:hover {
	opacity: 1;
	color: #333;
	background: rgba(255, 255, 255, 0.05);
	border-color: #cbcbcb;
}

.menu li.selected a {
	color: #333;
	background: #fff;
	border-color: #b3b3b3;
	/*border-color: #009aee;*/
	opacity: 1;
}

.menu li a img {
	display: inline-block;
	max-width: 100%;
	width: auto;
	margin: 0 auto;
	padding-top: 3px;
	vertical-align: top;
}

.menu li a span {
	display: block;
	position: absolute;
	width: 90%;
	left: 5%;
	bottom: 0;
	overflow: hidden;
	text-align: center;
	color: #333;
	border-top: 1px solid #e0e0e0;
}

.menu.ai li { display: none; }
.menu.ai li.selected { display: block; width: 100%; }
.menu.ai li.selected > a { height: auto; }
.menu.ai:not(.open) li.selected a {
	text-align: center;
	border-color: #009aee;
	background: url(../img/menu_catalogo.png) no-repeat left top;
	background-color: #fff;
	background-size: 65px;
  background-position-y: center;
}
.menu.ai:not(.open) li.selected span {
	position: relative;
	width: 100%;
	left: auto;
	display: block;
	height: 65px;
	border: 0;
	line-height: 65px;
	position: relative;
	font-weight: 400;
}


/*
========================================================================================================================
012 ALMACENES
========================================================================================================================
Desplegable que muestran los almacenes a los usuarios con permisos                                                    */

.warehouses {
	/*margin-right: 10px;*/
	position: relative;
	height: 35px;
	padding: 0 7px 0 17px;
	line-height: 32px;

	font-weight: 500;
	font-family: "Montserrat";
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.01em;

	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-feature-settings: "kern"1;
	-moz-font-feature-settings: "kern"1;

	border: 2px solid #e0e0e0;
	text-align: center;
	vertical-align: middle;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	color: #626262;
	background-color: #fff;
	text-shadow: none;
	box-shadow: none;

	transition: color 0.1s linear 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.2s linear 0s;
}

.warehouses.actived {
	border-color: #8BC34A;
}

.warehouses select {
	cursor: pointer;
	padding: 0 10px 0 0;
	border: 0;
	font-weight: 500;
	font-family: "Montserrat";
	text-transform: uppercase;
	font-size: 11px;
	letter-spacing: 0.01em;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-webkit-font-feature-settings: "kern"1;
	-moz-font-feature-settings: "kern"1;
	background: transparent;
	line-height: 30px;
	height: 30px;
	color: #000;
}



/*
========================================================================================================================
013 ITEMS
========================================================================================================================
Productos y categorías de productos                                                                                   */

.items {
	position: relative;
}

.items h2,
.items .options {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.items h2 {
	margin-bottom: 10px;
}

.items h2:after {
	/* Añadimos un pseudoelemento al h2 para que al cargar la página no
	provoque saltos al cambiar de contenido */
	content: "\00a0";
}

.items .options {
	display: none;
}

.items .options>div {
	display: inline-block;
}

.items .options .actions {
	margin-right: 10px;
}

.items .options .btn.selected {
	/*border-color: #009aee;*/
	border-color: #8BC34A;
}

.items ul {
	padding: 0;
	margin: 0;
	font-size: 0;
	list-style: none;
	clear: both;
}



/*::-moz-selection { background: #fff; }*/
/*::selection { background: #fff; }*/

.items .buttons {
	bottom: 0;
	position: absolute;
	left: 0;
	right: 0;
	height: 40px;
	background: #e0e0e0;
	text-align: center;
	z-index: 2;
}

.items .buttons button {
	width: 50%;
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: #565656;
	line-height: 40px;
	background: #e7e7e7;
	transition: background 0.3s ease;
}

.items .buttons button i {
	position: relative;
	top: 3px;
}

.items .buttons button span {
	display: none;
	padding-left: 8px;
}

.items .buttons button:first-child {
	border-right: 1px solid #ccc;
}

.items ul li.added button.cart i:before {
	content: "\e301";
}

.items ul li:not(.added) button.cart i:before {
	content: "\e300";
}

.items ul li.in_modal button.info i:before {
	content: "\e202";
}

.items ul li:not(.in_modal) button.info i:before {
	content: "\e205";
}

.items li.added .buttons button.cart:hover {
	background: #eee;
	color: #333;
}

.items .buttons button:hover {
	background: #eee;
	color: #333;
}

.items .price strike {
	color: #E91E63;
}
.items .price strike.z {
	color: #9e1ee9;
}

/* Ocultamos todo el contenido que solo se puede ver cuando se muestre a pantalla completa */
.items ul.grid .stock-container,
.items .images,
.items .texts,
.items .tab {
	display: none !important;
}

.items ul.list .stock-container {
	display: block !important;
}


/* 013.1 ITEMS > SUBCATEGORIES
	======================================================================================================================
	Definición de los estilos de las subcategorías de una colección                                                     */

.items ul.subcategories li {
	display: inline-block;
	font-size: 13px;
	position: relative;
	background: #fff;
	text-align: center;
	border: 2px solid #f6f6f6;
	padding: 5px;
	cursor: pointer;
	margin: 3px;
	vertical-align: top;
	height: 290px;
}

.items ul.subcategories li.hover {
	border: 2px solid #e9e9e9;
}

.items ul.subcategories .image {
	height: 218px;
	line-height: 218px;
	text-align: center;
}

.items ul.subcategories .image img {
	display: inline-block;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	padding: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.items ul.subcategories .title {
	border-top: 1px solid #efefef;
	color: #333;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.8);
	min-height: 33px;
	max-height: 57px;
	overflow-y: hidden;
}


/* 013.2 ITEMS > GRUPOS
	======================================================================================================================
	Nombre de los grupos de elementos dentro de una colección                                                           */

body .items ul li.group,
body .items ul li.subtitle {
	display: block;
	width: 100%;
	background: #e0e9ef;
	/* eaeaea */
	text-align: center;
	padding: 10px 0;
	margin: 10px 0 5px 0;
	font-weight: 500;
	font-size: 15px;
	text-transform: uppercase;
	height: auto;
	pointer-events: none;
	min-height: 0;

	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version */

}

body .items ul li.subtitle {
	background: #009aee !important;
	color: #fff !important;
}


/* 013.3 ITEMS > ESTADOS
	======================================================================================================================
	Ayudas visuales para mostrar un producto como añadido a la cesta, en promoción o en oferta                          */

.items li.promo::before,
.items li.offer::before,
.items li.added::before {
	content: "";
	width: 60px;
	height: 60px;
	border-style: solid;
	border-width: 60px 60px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

.items li.promo::after,
.items li.offer::after,
.items li.added::after {
	font-family: 'iconnet' !important;
	position: absolute;
	top: 12px;
	left: 13px;
	z-index: 2;
	font-size: 13px;
}

.items li.promo:not(.offer)::after {
	/*content: "\e303";*/
	content: "*";
	font-size: 36px;
	top: -1px;
	left: 9px;
}

.items li.promo::before {
	border-color: #FFEB3B transparent transparent transparent;
}

.items li.offer::after {
	content: "\e304";
	color: #fff;
}

.items li.offer::before {
	border-color: #E91E63 transparent transparent transparent;
}
.items li.offer.z::before {
	border-color: #9e1ee9 transparent transparent transparent;
}


.items ul.grid li:not(.group).added,
.items ul.list li:not(.group).added {
	border-color: #009aee;
	color: #fff;
}

.items li.added:before {
	border-color: #009aee transparent transparent transparent;
}

.items li.added:after {
	content: "\e305";
}


/* 013.4 ITEMS > MODO GRID
	======================================================================================================================
	Modo en el que se muestran los productos en formato de rejilla                                                      */

.items ul.grid li:not(.group) {
	display: inline-block;
	font-size: 13px;
	position: relative;
	background: #fff;
	text-align: center;
	border: 2px solid #f6f6f6;
	/*transition: border-color 1.2s ease;*/
	padding: 5px;
	cursor: pointer;
	vertical-align: top;
	outline: 0;
}

.items ul.grid li.hover {
	border-color: #e9e9e9;
}

.items ul.grid .image {
	height: 185px;
	text-align: center;
}

.items ul.grid .image img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	padding: 0;
}

.items ul.grid .title {
	display: block;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	color: #333;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.8);
}

.items ul li.set .title {
	border-color: rgba(233, 114, 30, 0.08);
	background: rgba(233, 114, 30, 0.08);
	padding-left: 5px;
	padding-right: 5px;
}

.items ul.grid .ref {
	display: block;
	color: #009aee;
}

.items ul.grid .warehouse {
	color: #ea423d;
}

.items ul.grid .price {
	text-align: center;
	line-height: 40px;
	font-weight: 500;
	color: #000;
}


/* 013.5 ITEMS > MODO LISTA
	======================================================================================================================
	Modo en el que se muestran los productos en formato de lista                                                        */

.items ul.list li:not(.group) {
	display: block;
	font-size: 13px;
	position: relative;
	background: #fff;
	border: 2px solid #f6f6f6;
	/*transition: border-color 1.2s ease;*/
	cursor: pointer;
	vertical-align: top;
}

.items ul.list .on {
	text-align: center;
	overflow: hidden;
}

.items ul.list .image {
	height: 185px;
	margin-top: 5px;
}

.items ul.list .image img {
	display: inherit;
	max-width: 100%;
	max-height: 100%;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	padding: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.items ul.list .title {
	display: block;
	overflow: hidden;
	padding-top: 5px;
	border-top: 1px solid #efefef;
	border-bottom: 1px solid #efefef;
	color: #333;
	font-weight: 500;
	background: rgba(255, 255, 255, 0.8);
}

.items ul.list .ref {
	display: block;
	color: #009aee;
}

.items ul.list .warehouse {
	color: #ea423d;
}

.items ul.list .price {
	text-align: center;
	line-height: 40px;
	font-weight: 500;
	color: #000;
}

.items ul.list .table-container {
	display: block;
}


/* 013.6 ITEMS > PRECIO NETO Y PRECIO POR UNIDAD
	======================================================================================================================
	Ajustes visuales para indicar si el precio es neto o no y para mostrar el precio por unidad en un surtido           */

.items ul.grid .show_net_price .price,
.items ul.list .show_net_price .price {
	display: block;
}

.items .netprice {
	display: block;
	text-align: center;
	font-weight: 500;
	font-size: 13px;
	white-space: nowrap;
	color: #E91E63;
	text-transform: uppercase;
	padding-top: 3px;
}

.stock_info_price_range {
	text-align: left;
	font-weight: 500;
	font-size: 14px;
	white-space: nowrap;
	border: 2px solid transparent;
	padding: 4px 10px 4px 10px;
	color: #000;
}

.stock_info_price_range,
.net_price {
	display: none;
}

.show_unit_price .stock_info_price_range {
	display: block;
}

#fullscreen .net_price {
	display: block;
}




/* 013.7 ITEMS > ANIMACIÓN MINIMIZAR
	======================================================================================================================
	Mostramos un efecto visual para ayudar al usuario a localizar el producto que acaba de minimizar                    */

.items ul li:not(.group).minimize {
	animation-duration: 0.6s;
	animation-name: minimizar;
	z-index: 2;
}

@keyframes minimizar {
	0% {
		transform: scale(2);
		opacity: 0;
	}

	100% {
		transform: scale(1);
		opacity: 1;
	}
}



li.cantbesold {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
	pointer-events: none;
}

li.cantbesold .buttons span {
	display: block;
	padding-top: 13px;
	font-weight: 600;
}




/*
========================================================================================================================
014 FULLSCREEN
========================================================================================================================
Ficha de producto a pantalla completa                                                                                 */

#fullscreen {
	display: none;
}


/* 014.1 FULLSCREEN > OPEN
	======================================================================================================================
	Ajustes en el DOM para que se pueda ver la ficha de producto a pantalla completa                                    */

body.fullscreen-open {
	background: #fff;
	padding-top: 0 !important;
}

body.fullscreen-open .content {
	background: #fff;
}

/* Elementos visibles del catálogo: cabevera de navegación, barra de búsqueda, menú y productos */
body.fullscreen-open .header,
body.fullscreen-open .subheader,
body.fullscreen-open .menu,
body.fullscreen-open .items,
body.fullscreen-open .path,
body.fullscreen-open .btn-padel {
	display: none !important;
}

body.fullscreen-open #fullscreen {
	display: block;
}


/* 014.2 FULLSCREEN > CABECERA
	======================================================================================================================
	Sección superior que muestra la imagen pequeña de producto, el título, la referencia y la navegación                */

#fullscreen .head {
	z-index: 888;
	top: 0;
	left: 0;
	right: 0;
}

#fullscreen .image {
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	bottom: 0;
	text-align: center;
	background: #fff;
	border-bottom: 1px solid #ddd;
}

#fullscreen .image img {
	vertical-align: middle;
}

#fullscreen .ref {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	font-weight: bold;
	text-align: left;
}

#fullscreen .title {
	display: block;
	overflow: hidden;
	white-space: nowrap;
	border: none;
	font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
	text-align: left;
	text-transform: uppercase;
}


/* 014.3 FULLSCREEN > NAVIGATION
	======================================================================================================================
	Botones de navegación entre productos cuando un producto se muestra a pantalla completa                             */

#fullscreen .navigation button {
	position: absolute;
	font-size: 20px;
	color: #fff;
	text-align: center;
	background: rgba(0, 0, 0, 0.06);
}

#fullscreen button.prev {
	border-right: 1px solid rgba(0, 0, 0, 0.3);
}

#fullscreen button[disabled] {
	color: #666;
}


/* 014.4 FULLSCREEN > TABS
	======================================================================================================================
	Pestañas de contenido cuando un producto se muestra a pantalla completa: información general, galería, 360 y vídeo  */

#fullscreen .tabs {
	position: fixed;
	z-index: 9999;
}

#fullscreen .tabs button {
	display: inline-block;
	float: left;
	width: 25%;
	margin: 0;
	background: #e7e7e7;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	font-size: 16px;
	color: #333;
	text-align: center;
	text-transform: uppercase;
	/*transition: background 0.3s ease;*/
}

#fullscreen .tabs button:last-child {
	border-right: 0;
}

#fullscreen .tabs button i {
	position: relative;
}

#fullscreen .tabs button:not(.actived):hover {
	background: #efefee;
}

#fullscreen .tabs button.actived {
	background: #fff;
	border-bottom-color: #fff;
	color: #000;
	cursor: default;
}

#fullscreen .tabs button.disabled {
	color: #c5c5c5;
	cursor: default;
}

#fullscreen .tabs button.disabled:hover {
	background: #e7e7e7;
}


/* 014.5 FULLSCREEN > TAB
	======================================================================================================================
	Contenedor de información dentro de la ficha de producto a pantalla completa                                        */

#fullscreen .tab {
	background: #fff;
	display: none;
}

#fullscreen .stock_info_price_range {
	text-align: center;
}

#fullscreen .images {
	position: relative;
}

#fullscreen .images-container {
	text-align: center;
	position: relative;
	z-index: 0;
	display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
	max-width: 900px;
	margin: 30px auto 0 auto;
}
	#fullscreen .images-container > img {
	display: inline;
	max-width: 100%;
	border: 1px solid #eee;
	max-height: calc(80vh);
}
	@media screen and (min-width: 768px) {
		#fullscreen .images-container:not(.expanded) > img:nth-child(n+5) {
			display: none;
		}		
	}

#fullscreen .images-container::-webkit-scrollbar {
  height: 0;
}

#fullscreen .images-navigation {
	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: row;
	position: absolute;
  top: 0;
  height: calc( 100vw - 25px );
	width: 100%;
	pointer-events: none;
}
	#fullscreen .images-navigation > button {
		line-height: 0;
    padding: 10px;
    border-radius: 50%;
    background: #ffffff99;
		pointer-events: all;
	}
		#fullscreen .images-navigation > button > i {
			color: var(--theme-blue);
		}
	#fullscreen .images-navigation .img-prev {
		position: absolute;	
		left: 15px;
	}
	#fullscreen .images-navigation .img-next {
		position: absolute;	
		right: 15px;
	}

#fullscreen .texts {
	display: block;
	max-width: 900px;
	color: #000;
	font-size: 16px;
}

#fullscreen .texts h2 {
	display: block;
	text-align: center;
	height: auto;
}

#fullscreen .texts p {
	display: block;
	font-weight: 500;
	text-align: justify;
}

#fullscreen .texts>ul {
	list-style-type: disc;
}

#fullscreen .texts>ul ul {
	padding-bottom: 15px;
	list-style-type: none;
	padding-left: 0;
}

#fullscreen .tab.gallery {
	display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}

#fullscreen .tab.gallery img {
	display: block;
	/* margin: 0 auto 15px auto; */
	margin: 0 auto;
	border: 1px solid #eee;
	width: 100%;
	/* max-width: 100%; */
	/* max-height: calc(80vh); */
}

#fullscreen .tab.gallery img:last-child {
	margin-bottom: 0;
}

#fullscreen .tab.view360 {
	position: fixed;
	left: 0;
	right: 0;
	padding: 0;
	margin: 0;
	background: #fff;
	overflow: hidden;
}

#fullscreen .tab.view360 iframe {
	border: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

#fullscreen .tab.video {
	position: fixed;
	left: 0;
	right: 0;
	padding: 0;
	margin: 0;
	background: #fff;
	overflow: hidden;
}

#fullscreen .tab.video iframe {
	background: #000;
	border: 0;
	margin: 0;
	padding: 0;
}


/* 014.6 FULLSCREEN > ACCIONES
	======================================================================================================================
	Botonera con las acciones posibles a realizar con el producto que se encuentra a pantalla completa                  */

#fullscreen .actions button {
	background: #ddd;
	font-size: 14px;
	/*transition: background 0.3s ease;*/
}

#fullscreen .actions button:hover {
	background: #efefee;
}

#fullscreen .actions button span {
	display: inline;
}

#fullscreen button.minimize i:before {
	content: "\e202";
}

#fullscreen:not(.added) button.cart i:before {
	content: "\e300";
}

#fullscreen.added button.cart i:before {
	content: "\e301";
}



/* 014.7 FULLSCREEN > PRODUCTO AÑADIDO
	======================================================================================================================
	Ajustes visuales para el producto que se esté mostrando a pantalla completa y que esté añadido a la cesta           */

#fullscreen.added .head {
	background: #009aee;
	border-bottom-color: #009aee;
}

#fullscreen.added .title,
#fullscreen.added .ref {
	color: #fff;
}

#fullscreen.added .actions button.cart,
#fullscreen.added .actions button.cart:focus,
#fullscreen.added .actions button.cart:hover,
#fullscreen.added .actions button.cart:active {
	background: #009aee;
	color: #fff;
	border-bottom-color: #009aee;
	border-top-color: #009aee;
}

#fullscreen.added .actions button.cart i:before {
	/*content: "\e305";*/
}



/*
========================================================================================================================
015 TABLA DE TALLAS Y STOCK
========================================================================================================================
Características de la tabla que muestra las tallas y el stock disponible                                              */

.stock-container {
	border: 1px solid transparent;
}

table.stock {
	padding: 0;
	margin: 0;
	border: 1px solid transparent;
	width: auto;
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	color: #000;
}

table.stock.set {
	margin-top: 5px;
}

table.stock td {
	background: #f0f0f0;
	text-align: center;
	white-space: nowrap;
	padding-left: 3px;
	padding-right: 3px;
	font-weight: 500;
	/*width: 150px;*/
	width: 75px;
}

table.stock th {
	padding-left: 10px;
	padding-right: 10px;
	text-align: left;
	font-weight: 500;
	width: 175px;
	min-width: 175px;
	background: #f0f0f0;
	white-space: nowrap;
}

/* Esto lo hacemos para dar un ancho mayor para los botones de copiar, rellenar y pegar en la cesta */
body.cart table.stock th {
	min-width: 225px;
}

table.stock .row-stock td {
	background: #fafafa;
}

table.stock tr {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

table.stock th img {
	float: right;
	line-height: 10px;
	padding-top: 3px;
}

table.stock span,
table.stock .row-price td {
	color: #009aee;
}

table.stock .row-price.informative th,
table.stock .row-price.informative td {
	background: #ffe7e7;
}

table.stock strike {
	color: #E91E63;
	display: block;
}
table.stock strike.z {
	color: #9e1ee9;
}

table.stock .units {
	padding-top: 15px;
}

table.stock .units th {
	background: #dfdfdf;
}

table.stock .units td {
	background: transparent;
	margin: 0;
	padding: 0;
}

table.stock .units td:first-child {
	background: #fff;
}

table.stock .units input {
	border: 2px solid #f0f0f0;
	width: 100%;
	min-width: 50px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-weight: 600;
	color: #000;
	cursor: pointer;
	background: #fff;
	transition: all 0.2s ease !important;
	user-select: none;
	border-radius: 0;
}

table.stock .units input:hover {
	border-color: #e0e0e0;
}

table.stock .units input:focus {
	outline: none;
	/*border-color: #ccc;*/
	border-color: #8BC34A;
}

table.stock .units input.actived {
	border-color: #CDDC39;
	color: #33691E;
}

table.stock .units input.actived:focus {
	border-color: #8BC34A;
	color: #33691E;
}

table.stock .units input.error {
	border-color: #F44336;
	background: #F44336;
	color: #fff;
}

/* ELiminamos el color cuando seleccionamos el contenido de los inputs mediante javascript */
table.stock .units ::-moz-selection {
	background: transparent;
}

table.stock .units ::selection {
	background: transparent;
}

table.stock tr.available th {
	background: #90bd5c;
}

table.stock tr.available th span {
	color: #fff;
}

table.stock tr.available td {
	background: #edf8da;
}

table.stock tr.notavailable th {
	background: #ffb198;
}

table.stock tr.notavailable th span {
	color: #000;
}

table.stock tr.notavailable td {
	background: #ffcab9;
}

tr.unit-price td {
	text-align: left;
	padding-left: 10px;
	/*background: #fef4ef;*/
	background: #333;
	color: #fff;
}

tr.unit-price td:last-child {
	/* padding-left: 0; */
}

tr.unit-price td span {
	color: #8cd6ff;
	font-weight: bold;
}

table.stock .row-units-box th,
table.stock .row-units-box td {
	background: #333;
	color: #fff;
}

table.stock .row-units-set th,
table.stock .row-units-set td {
	background: #777;
	color: #fff;
}

table.stock tr.row-units-min th {
	text-transform: uppercase;
}

table.stock tr.row-units-min.ko th,
table.stock tr.row-units-min.ko td {
	background: #d32f2f;
	color: #fff;
}

table.stock tr.row-units-min.ok th,
table.stock tr.row-units-min.ok td {
	background: #CDDC39;
}




/*
========================================================================================================================
016 CART
========================================================================================================================
Estilos relacionados con el proceso de compra                                                                         */


/* 016.1 CART > BREADCRUMB
	======================================================================================================================
	Miga de pan del proceso de compra                                                                                   */

.breadcrumb {
	list-style: none;
	display: inline-block;
	width: 100%;
	padding: 0;
	margin: 0;
}

.breadcrumb li {
	float: left;
	width: 20%;
}

.breadcrumb li a {
	display: block;
	position: relative;
	background: #fff;
	color: #000;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
	text-align: center;
	cursor: pointer;
}

.breadcrumb li:first-child a:before {
	border: none;
}

.breadcrumb li:last-child a {
	margin-right: 0;
}

.breadcrumb li:last-child a:after {
	border: none;
}

.breadcrumb li i {
	position: relative;
	top: 2px;
}

.breadcrumb li span {
	padding-left: 10px;
}

.breadcrumb li a:before,
.breadcrumb li a:after {
	content: "";
	position: absolute;
	top: 0;
	border: 0 solid #fff;
	width: 0;
	height: 0;
}

.breadcrumb li a:before {
	border-left-color: transparent;
}

.breadcrumb li a:after {
	left: 100%;
	border-color: transparent;
	border-left-color: #fff;
}

.breadcrumb li a:hover {
	background-color: #F9FBE7;
	transition: all 0.3s ease;
}

.breadcrumb li a:hover:before {
	border-color: #F9FBE7;
	border-left-color: transparent;
	transition: all 0.3s ease;
}

.breadcrumb li a:hover:after {
	border-left-color: #F9FBE7;
	transition: all 0.3s ease;
}

.breadcrumb li a.active {
	background-color: #009aee;
	color: #fff;
}

.breadcrumb li a.active:before {
	border-color: #009aee;
	border-left-color: transparent;
}

.breadcrumb li a.active:after {
	border-left-color: #009aee;
}

.breadcrumb li a.disabled {
	background-color: #e5eaf1;
	color: #ababab;
	cursor: default;
}

.breadcrumb li a.disabled:before {
	border-color: #e5eaf1;
	border-left-color: transparent;
}

.breadcrumb li a.disabled:after {
	border-left-color: #e5eaf1;
}



.budget .breadcrumb li {
	width: 33%;
}



/* 016.2 CART > TITLE AND SUBTITLE
	======================================================================================================================
	Título y subtítulo de cada página durante el proceso de compra                                                      */

.cart:not(.order) h1.title {
	font-weight: 500;
	margin-bottom: 0;
}

.cart.order h1.title {
	font-weight: 500;
	color: #000;
	background: #E6EE9C;
}

.cart.order h2.subtitle {
	background: #E6EE9C;
	color: #000;
}


/* CESTA DE LA COMPRA */

@media all and (min-width: 768px) {

	.cart .items ul {
		padding-right: 40px;
	}

	.cart .items ul.list .buttons {
		position: absolute;
		top: 0;
		right: -40px;
		left: auto;
		display: block;
		width: 40px;
		height: auto;
		background: none;
	}

	.cart .items ul.list .buttons button {
		background: #eaeaea;
		font-size: 16px;
		line-height: 40px;
		color: #666;
		text-align: center;
		border: 0;
		width: 100%;
		display: block;
		margin-bottom: 6px;
		transition: background 0.3s ease;
	}

	.cart .items ul.list .buttons button {
		color: #000;
		background: #ddd;
	}

	.cart .items ul.list .buttons button.cart:hover {
		background: #ffcdd2;
	}

	.cart .items ul.list .buttons button.info:hover {
		background: #BBDEFB;
	}

}

.cart .items ul.list .buttons button.cart i:before {
	content: '\e301';
}

.cart input,
.cart textarea {
	border-color: #ddd;

}


/* Quitamos el cursor pointer que poníamos en catálogo */
.cart .items ul.list li {
	cursor: auto;
}

/* REVISAR EN CADA UNO DE LOS TAMAÑOS */
.cart .items ul.list li:not(.group) {
	min-height: 280px;
	margin-left: 0;
	margin-right: 0;
	border-bottom: 1px solid #ddd;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}













body.cart .items ul li:first-child {
	margin-top: 0;
}









/* Ocultamos manualmente algunos elementos del interfaz en esta pantalla */
.cart .items ul.list .price,
.cart .items li.offer::before {
	display: none;
}

.cart .items ul.list .title {
	border-bottom: none;
}




.cart .ask_remove {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	right: -40px;
	bottom: 0;
	background: rgba(0, 0, 0, 0.85);
	color: #fff;
	font-size: 22px;
	font-family: 'Montserrat', sans-serif;
	z-index: 999;
}

.cart .ask_remove .ask_buttons {
	display: block;
	margin-top: 20px;
}

.cart .ask_remove .question {
	position: absolute;
	width: 100%;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.cart .ask_remove button {
	display: inline-block;
	padding: 10px 15px;
	background: none;
	color: #fff;
	border: 2px solid #fff;
	min-width: 100px;
	transition: all 0.3s ease;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.cart .ask_remove button:hover {
	background: #fff;
	color: #000;
}

.cart .ask_remove button:first-child {
	margin-right: 20px;
}

.cart .ask_remove button[data-target="remove"]:hover {
	background: #d32f2f;
	border-color: #d32f2f;
	color: #fff;
}


.cart .notes {
	font-size: 14px;
	font-weight: 500;
	background: #FFCC80;
	/* padding: 15px; */
	padding: 0 15px;
	line-height: 40px;
	text-align: center;
	margin-bottom: 15px;
	border-radius: 4px;
}


.notes_container {
	font-size: 14px;
	font-weight: 500;
	background: #e53935;
	color: #fff;
	padding: 0 15px;
	text-align: center;
	line-height: 40px;
	margin-bottom: 15px;
	border-radius: 4px;
}







.cart .footer .disabled {
	background: #eee !important;
	color: #ddd !important;
	border-color: #eee !important;
}

.cart .footer {
	margin: 30px 0 0 0;
	border-top: 2px solid #ddd;
	padding: 30px 0 0 0;
}

.cart .modal .footer {
	border-top: 0;
}

.cart .footer:after {
	display: table;
	content: '';
	clear: both;
}

.cart .footer i {
	display: none;
}

.cart.resume .footer {
	/*border-bottom: 2px solid #ddd;*/
	padding-bottom: 30px;
}


@media screen and (max-width: 1024px) {

	.cart .content {
		padding-bottom: 70px;
	}

	.cart .footer {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
		height: 45px;
		border-top: 0;
		padding: 0;
		margin: 0;
		z-index: 2;
		transform: translate3d(0, 0, 0);
	}

	.cart #modal_container_date .footer {
    position: relative;
	}



	.cart .footer button,
	.cart .footer a {
		display: inline-block;
		width: 50%;
		height: 45px;
		line-height: 45px;
		font-size: 12px;
		font-weight: 500;
		color: #fff;
		background: #333;
		transition: background 0.3s ease;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 0;
	}

	.cart .footer button:hover,
	.cart .footer a:hover {
		background: #eee;
		color: #333;
	}

	.cart .footer button:first-child,
	.cart .footer a:first-child {
		/*border-right: 1px solid #ccc;*/
		border-right: 0;
	}

	.cart .footer button,
	.cart .footer a {
		background: #333;
		font-weight: 600;
	}

	.cart .footer .btn-info {
		background: #009aee;
		color: #fff;
	}

	.cart .footer .btn-success {
		background: #CDDC39;
		color: #000;
	}

	.cart .footer button span,
	.cart .footer a span {
		display: none;
		padding-left: 8px;
	}

	.cart .footer i {
		display: inline;
	}

}




























.panel {
	/*margin-top: 15px;*/
	margin-bottom: 15px;
	background: #fff;
	-webkit-border-bottom-left-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	border-bottom: 1px solid #ddd;
}


.panel.address {
	width: 100%;
}

.panel.shipping_mode {
	float: left;
	width: calc(33.33% - 8px);
	margin-right: 8px;
}

.panel.shipping_method {
	float: left;
	width: calc(33.33% - 16px);
	margin-left: 8px;
	margin-right: 8px;
}

.panel.totals {
	float: left;
	width: calc(33.3% - 8px);
	margin-left: 8px;
}

.panel h2 {
	font-weight: 500;
	font-size: 14px;
	text-transform: uppercase;
	padding: 5px 15px 5px 15px;
	margin: 0;
	background: #ddd;
	color: #000;
	-webkit-border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-topright: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.panel .in {
	padding: 20px 15px;
	font-size: 14px;
	font-weight: 500;
}

.panel.shipping_mode .in,
.panel.shipping_method .in,
.panel.totals .in {
	min-height: 158px;
}

.panel label,
.panel input,
.panel textarea,
.panel select {
	display: block;
	width: 100%;
	border: 2px solid #CDDC39;
	background: #fff;
	font-weight: 500;
	font-size: 14px;
	outline: none;
	resize: none;
}

.panel input,
.panel select {
	height: 40px;
	line-height: 40px;
	padding-left: 5px;
	padding-right: 15px;
	background: #fff;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.panel select {
	cursor: pointer;
}

.panel textarea {
	line-height: 24px;
	padding-left: 5px;
	padding-right: 5px;
	outline: none;
	resize: none;
}

.panel input:focus:not([readonly]),
.panel select:focus,
.panel textarea:focus {
	border-color: #8BC34A;
}

.panel label {
	cursor: pointer;
}

.panel small {
	display: block;
	padding-bottom: 10px;
	font-size: 14px;
	font-weight: 400;
}

.panel .option {
	padding-bottom: 15px;
	padding-left: 30px;
	position: relative;
}

.panel .option:last-child {
	padding-bottom: 0;
}

.panel .option input.date {
	font-weight: bold;
	border: 0;
	width: auto;
	border: 2px solid #ccc;
	width: 90px;
	text-align: center;
	padding: 3px;
}

.panel td {
	padding: 3px 0;
	vertical-align: top;
}

.panel:not(.totals) td:first-child {
	width: 160px;
}

.panel.totals table {
	width: 100%;
	border-collapse: collapse;
	border: 0;
}

.panel.totals table tr:last-child {
	font-size: 20px;
}

.panel.totals table td:last-child {
	text-align: right;
	white-space: nowrap;
}

.panel.totals table tr:last-child td {
	padding-top: 5px;
}

.panel.totals table tr:last-child hr {
	border: 0;
	border-top: 1px solid #ddd;
}

.panel.totals table tr:last-child span {
	color: #007acc;
}



.panel.shipping_mode .description {
	display: none;
}

#selected_shipping_date {
	display: inline;
	width: 100px;
	line-height: inherit;
	border-color: transparent;
	height: auto;
	border: 0;
	padding: 0;
	margin: 0;
}

.panel.shipping_mode .description button {
	display: block;
	margin: 10px auto 0 auto;
	color: #E91E63;
	background: none;
	font-size: 13px;
	font-weight: inherit;
	font-family: inherit;
}



@media all and (max-width: 1200px) {

	.panel.shipping_mode {
		width: calc(33.33% - 8px);
	}

	.panel .option {
		padding-bottom: 4px;
	}

	.panel.shipping_method {
		width: calc(33.33% - 16px);
	}

	.panel.totals {
		width: calc(33.33% - 8px);
	}

}

@media all and (max-width: 1023px) {

	.panel.shipping_mode {
		width: 100%;
	}

	.panel.shipping_mode .in {
		min-height: auto;
	}

	.panel.shipping_method {
		width: calc(50% - 8px);
		margin-left: 0;
	}

	.panel.totals {
		width: calc(50% - 8px);
	}

	.panel.shipping_method .in,
	.panel.totals .in {
		/*min-height: auto;*/
	}

}

@media all and (max-width: 1024px) {

	.panel {
		width: 100% !important;
		margin-right: 0 !important;
		margin-left: 0 !important;
	}

	.panel .in {
		min-height: auto !important;
	}

}















table.products {
	width: 100%;
	font-size: 14px;
	line-height: 22px;
	font-weight: 500;
	border-collapse: collapse;
	border: 0;
	background: #fff;
}

table.products thead th {
	padding: 5px;
	border-bottom: 2px solid #ddd;
	font-weight: 500;
}

table.products th,
table.products td {
	padding: 5px 0;
	text-align: center;
	border: 0;
}

table.products th {
	vertical-align: bottom;
}

table.products td {
	vertical-align: top;
}

table.products tbody>tr {
	transition: all 0.3s ease;
}

.shipping table.products tbody>tr:hover {
	background: #f6f6f6;
	cursor: pointer;
}

#modal_cart_incidences table.products tbody>tr:hover {
	background: inherit;
	cursor: auto;
}

table.products tbody>tr td {
	border-bottom: 1px solid #ddd;
	background: #fff;
}

table.products tbody>tr td:first-child {
	padding-left: 0;
}

table.products tbody>tr td:last-child {
	padding-right: 0;
}

table.products tbody>tr:last-child td {
	border-bottom: none;
}

table.products .name {
	width: auto;
	padding-left: 15px;
}

table.products .min {
	width: 1%;
	white-space: nowrap;
	padding: 4px;
}

table.products img {
	position: relative;
	display: block;
	margin: 0 auto;
	max-height: 70px;
	max-width: 110px;
	padding: 0 20px;
	background: #fff;
}

table.products tbody .text span {
	display: block;
	border-bottom: 1px dashed #ddd;
}

table.products tbody .text span:last-child {
	border: 0;
}

table.products span:last-child {
	border: 0;
}

table.products .color1 {
	color: #0173c7;
}

table.products .color2 {
	color: #333;
}

table.products .color3 {
	color: #d32f2f;
}


@media all and (max-width: 1280px) {

	table .hidden-small {
		display: none !important;
	}

	table .product_name {
		display: block;
		font-size: 11px;
		line-height: 10px;
		white-space: normal;
		margin: 5px 0 5px 0;
		padding: 0 3px;
		border: 0;
		background: #fff;
	}

}

@media all and (min-width: 1281px) {

	table .visible-small {
		display: none !important;
	}
}





input[type="radio"] {
	position: absolute;
	opacity: 0;
}

input[type="radio"]+label:before {
	content: '';
	background: #ffffff;
	border-radius: 100%;
	border: 2px solid #ccc;
	display: inline-block;
	width: 20px;
	height: 20px;
	position: absolute;
	top: -2px;
	left: 0;
	margin-right: 10px;
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

input[type="radio"]:checked+label:before {
	background-color: #CDDC39;
	box-shadow: inset 0 0 0 3px #ffffff;
}

input[type="radio"]:focus+label:before {
	outline: none;
}

input[type="radio"]:disabled+label:before {
	box-shadow: inset 0 0 0 3px #ffffff;
	border-color: #ccc;
	background: #ccc;
}

input[type="radio"]+label:empty:before {
	margin-right: 0;
}





.resume .panel {
	min-height: 500px;
}

#data td:first-child {
	padding-right: 10px;
}

@media screen and (max-width: 767px) {

	.resume .panel {
		min-height: 0;
	}

	.resume .panel .in {
		padding: 0 15px;
	}


}

.cart .panel table:not(.products) {
	width: 100%;
	border-collapse: collapse;
	max-width: 620px;
}

.cart .panel table:not(.products) td {
	vertical-align: middle;
}

.cart .panel table:not(.products) td:first-child {
	width: auto !important;
	padding-left: 0;
}

.cart .panel table:not(.products) td:last-child {
	padding-right: 0;
}

.cart .panel table strong {
	color: #E91E63;
	font-weight: 500;
}

.cart .panel.col-6 {
	width: calc(50% - 8px);
	float: left;
	margin-right: 8px;
}

.cart .panel.col-6.right {
	margin-right: 0;
	margin-left: 8px;
}

.cart .panel .total td {
	font-size: 20px;
	padding: 5px 0 20px 0;
	white-space: nowrap;
}

.cart .panel .total hr {
	border: 0;
	border-top: 1px solid #ddd;
}

.cart .panel .pink {
	color: #E91E63;
}

.cart .panel .total td:last-child {
	color: #007acc;
}

.cart .advice {
	font-size: 14px;
	background: #eee;
	padding: 15px;
	font-style: italic;
	margin: 15px 0 0 0;
}



.panel .internal {
	/*float: right;*/
	font-weight: normal;
	color: #999;
}


/* PERSONALIZACIÓN EN FUNCIÓN DE LA PANTALLA EN LA QUE SE MUESTRE */
.order .panel table:not(.products),
.resume .panel table:not(.products) {
	margin: 20px auto;
}

.order .panel table:not(.products) td,
.resume .panel table:not(.products) td {
	padding: 10px;
}

.order .panel table:not(.products) td:first-child,
.resume .panel table:not(.products) td:first-child {
	padding-right: 0;
}

.order .panel table:not(.products) td:last-child,
.resume .panel table:not(.products) td:last-child {
	padding-left: 0;
}








.order .panel.col-6 {
	min-height: 515px;
}

.order iframe {
	position: fixed;
	top: 10%;
	bottom: 10px;
	left: 10%;
	right: 10%;
	border: 1px solid #ddd;
	width: 80%;
	height: 80%;
}

.order iframe .services {
	display: none;
}

.order .modal .footer-fixed {
	position: fixed;
	bottom: 0;
	height: 10%;
	left: 10%;
	right: 10%;
	padding-top: 15px;

}

@media screen and (max-width: 767px) {

	.order .modal {
		top: 50px;
		z-index: 777;
	}

	.order .modal .btn {
		bottom: 0 !important;
		width: 100%;
	}

	.order iframe {
		position: fixed;
		top: 50px;
		bottom: 45px;
		left: 0;
		right: 0;
		border: 1px solid #ddd;
		width: 100%;
		height: calc(100% - 95px);
	}

}

@media screen and (max-width: 1024px) {

	.order .panel.col-6 {
		min-height: 0;
	}

	.order .panel.total .in,
	.order .panel.order .in {
		padding: 0 30px;
	}

}


@media print {

	.order h1.title,
	.order h2.subtitle,
	.order .sections,
	.order .header .trigger,
	.order .subheader,
	.order .panel.products h2,
	.order .footer {
		display: none;
	}

	.order .header {
		position: relative;
		background: transparent;
		margin-bottom: 0;
	}

	.order .logo .icon-logo {
		color: #21438F;
		font-size: 30px;
		padding-left: 8px;
	}

	.order .content {
		background: transparent;
	}

	.order .container-fluid {
		padding: 0;
	}

	.order .panel {
		border: 1px solid #ddd;
		border-radius: 0;
	}

	.order .panel.col-6 {
		width: calc(40% - 8px) !important;
		margin-right: 16px;
		min-height: 265px;
	}

	.order .panel.col-6.right {
		width: calc(60% - 8px) !important;
		margin-right: 0 !important;
		margin-left: 16px !important;
	}

	.order .panel.col-6 .in {
		min-height: 180px;
		padding-top: 0;
		padding-bottom: 0;
	}

	.order .panel h2 {
		border-radius: 0;
		font-weight: bold;
		font-size: 11px;
		-webkit-print-color-adjust: exact;
	}

	.order .panel .in {
		font-size: 10px;
	}

	.order .panel.products .in {
		padding: 0;
	}

	.order .panel .total td {
		font-size: 12px;
	}

	.order .panel table:not(.products) td {
		padding: 3px 10px;
	}

	.order .panel table:not(.products) td:first-child {
		width: 200px !important;
	}

	.order .panel:not(.totals) table.products td:first-child {
		width: auto;
	}



	.table-parent.overflowed {
		border: inherit;
	}

	.overflowed:before,
	.overflowed:after {
		display: none;
	}




	.order table.products {
		font-size: 10px;
	}

	.order table.products th {
		font-size: 11px;
		text-transform: uppercase;
		padding: 5px 15px 5px 15px;
		margin: 0;
		background: #ddd;
		-webkit-print-color-adjust: exact;
		line-height: 15px;
		font-weight: bold;
		border: 0 !important;
	}

	.order table.products th:first-child {
		padding-left: 0;
	}

	.order table.products thead span {
		border: 0;
	}

	.order table.products tbody span {
		/*border-bottom: 1px solid #f3f3f3;*/
		min-height: 24px;
	}


	.order table.products td:first-child {
		padding-left: 0;
	}

	.order table.products img {
		padding: 0 5px;
	}


}
























#modal_guide_sizes table {
	width: 100%;
	border: 1px solid #cbdde8;
	font-size: 14px;
	padding: 0;
	margin: 0;
}

#modal_guide_sizes th {
	color: #fff;
	background: #21438F;
	padding: 10px;
	text-transform: uppercase;
	text-align: center;
}

#modal_guide_sizes td {
	border-bottom: 1px solid #eee;
	padding: 5px;
	font-weight: 500;
}

#modal_guide_sizes td img {
	height: 24px;
	width: 24px;
}

#modal_guide_sizes tr td:first-child {
	border-right: 1px solid #eee;
}

#modal_guide_sizes tr td:nth-child(even) {
	background: rgba(0, 0, 0, 0.03);
}

#modal_guide_sizes tr.new_sizes td:first-child {
	white-space: nowrap;
}

#modal_guide_sizes tr.new_sizes td:nth-child(even) {
	/*background: rgba(203, 221, 232, 0.28);*/
}

#modal_guide_sizes tr:hover td:not(.empty) {
	background: rgba(203, 221, 232, 0.28);
	cursor: pointer;
}












/*
========================================================================================================================
017 OVERFLOWED
========================================================================================================================
Ayuda visual que indica que el contenido es mayor que el contenedor y que, por tanto, el usuario ha de hacer scroll   */

.overflowed {
	position: relative;
	border: 1px solid #CDDC39;
}

.overflowed:before {
	display: block;
	width: 50px;
	height: 100%;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: auto;
	content: '';
	pointer-events: none;
	background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 60%);
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 60%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 60%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
}

.overflowed:after {
	display: block;
	width: 40px;
	position: absolute;
	z-index: 2;
	top: calc(50% - 18px);
	right: 0;
	font-family: 'iconnet';
	content: '\e905';
	font-size: 24px;
	text-align: center;
	font-weight: 600;
	color: #333;
}

.overflowed:before,
.overflowed:after {
	opacity: 1;
	transition: all 0.6s ease;
}

.overflowed.hide:before,
.overflowed.hide:after {
	opacity: 0;
}

.overflowed .table-responsive {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
}

/*
.overflowed ::-webkit-scrollbar {
	-webkit-appearance: none;
}
.overflowed ::-webkit-scrollbar:horizontal {
	height: 8px;
}

.overflowed ::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	border: 2px solid #ffffff;
}

.overflowed ::-webkit-scrollbar-track {
	border-radius: 5px;
	background-color: #ffffff;
}
*/

/*
========================================================================================================================
018 MODAL
========================================================================================================================
Estilo de la ventana modal                                                                                            */

.modal {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	/*z-index: 88888;*/
	z-index: 900;
	background: rgba(255, 255, 255, 0.96);
	text-align: center;
}

.modal h2 {
	margin-bottom: 30px;
	padding-left: 20px;
	padding-right: 20px;
}

.modal .btn {
	margin-right: 30px;
}

.modal .btn:last-child {
	margin-right: 0;
}



/*
========================================================================================================================
MODAL CART INCIDENCES
========================================================================================================================
Definición de la ventana modal con algún tipo de incidencia de stock                                                  */

#modal_cart_incidences {
	overflow-y: auto;
}

#modal_cart_incidences .msg {
	font-size: 14px;
	font-weight: 500;
	padding: 15px;
	text-align: center;
	/*margin-bottom: 15px;*/
	/*border-radius: 4px;*/
}


#modal_cart_incidences .panel {
	border: 0;
}

#modal_cart_incidences .table-responsive {
	overflow-x: auto;
}

#modal_cart_incidences table.products tr:last-child td {
	border-bottom: 1px solid #ddd;
}

#modal_cart_incidences tbody td span {
	/*display: block;*/
}

#modal_cart_incidences img {
	max-height: 100px;
	max-width: 100px;
}

@media screen and (min-width: 769px) {

	.dialog .footer {
		position: relative;
		z-index: 1;
	}

	.dialog .footer button {
		margin: 30px 0 30px 0;
	}

	.dialog .btn-block {
		width: auto;
		display: inline-block;
	}

}

@media screen and (max-width: 768px) {

	.dialog {
		padding-bottom: 60px;
	}

	.dialog .footer {
		position: fixed;
		bottom: 0;
		left: 0;
		right: 0;
	}

	.modal.dialog .btn-block {
		border: 0;
		bottom: -45px;
		border-radius: 0;
		width: 100%;
		background: #333;
		color: #fff;
		font-weight: 600;
	}

	.modal.dialog .btn.btn-block:hover {
		background: #eee;
		color: #333;
	}

	#modal_cart_incidences img {
		max-height: 75px;
		max-width: 75px;
		padding: 0;
	}

}



.incidences_sizes {
	/*color: #009aee;
	padding: 0;*/
}

.incidences_sizes .row {
	text-align: left;
	border-bottom: 1px dashed #bbb;
}

.incidences_sizes .row:last-child {
	border-bottom: 0;
}

.incidences_sizes span {
	display: inline-block;
	/*font-size: 12px;*/
	/*padding: 3px 0;*/
	line-height: 18px;
	/*font-weight: bold;*/
	text-align: left;
}

.incidences_sizes .size_sys {
	color: #009aee;
	width: 50px;
	max-width: 50px;
}

.incidences_sizes .size_image {
	width: 35px;
}

.incidences_sizes .size_image img {
	position: relative;
	top: 3px;
	padding: 0;
}

.incidence_detail {
	max-width: 250px;
	padding: 15px 0;
}

#modal_cart_incidences table.products tr:last-child td {
	border-bottom: 0;
}

#modal_cart_incidences .footer {
	margin: 0;
}







@media all and (max-width: 991px) {

	#modal_cart_incidences h2 {
		margin-bottom: 15px;
		padding-left: 15px;
		padding-right: 15px;
		font-size: 20px;
		line-height: 25px;
		font-weight: 300;
	}

	table .incidence-hidden-small {
		display: none !important;
	}


	.incidences_sizes .row {
		border-bottom: 0;
		/*display: inline-block;*/
		/*padding-right: 10px;*/
	}

	.incidences_sizes .size_sys,
	.incidences_sizes .size_image,
	.incidences_sizes .size_sys {
		/*width: auto;*/
	}

}

@media all and (min-width: 992px) {

	table .incidence-visible-small {
		display: none !important;
	}
}



/*
========================================================================================================================
BÚSQUEDA MASIVA
========================================================================================================================
Definimos la ventana modal donde se permite al usuario buscar de forma masiva                                         */

.search-massive {
	max-width: 800px;
	width: 100%;
	padding: 15px;
	margin: 0 auto;
	border-collapse: collapse;
}

.search-massive .head {
	position: relative;
	top: 2px;
}

.search-massive .head button {
	width: 50%;
	float: left;
	padding: 15px;
	background: #fafafa;
	font-weight: bold;
	transition: color .3s ease, background .3s ease;
}

.search-massive .head button.active {
	border: 2px solid #ccc;
	border-bottom: 0;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
}

.search-massive .head button:not(.active) {
	border-bottom: 2px solid #ccc;
	color: #999;
	background: #fff;
}

.search-massive .head button:hover:not(.active) {
	color: #000;
}

.search-massive .body {
	border: 2px solid #ccc;
	border-top: 0;
	/*padding: 30px;*/
	clear: both;
	margin-bottom: 15px;
	position: relative;
	top: 2px;
}

.search-massive textarea {
	padding: 30px;
	width: 100%;
	resize: none;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	font-weight: 600;
	color: #555;
	border: 0;
	background: #fafafa;
}

.search-massive textarea:focus {
	outline: 0;
}

.action-search-massive-reset {
	position: absolute;
	right: 8px;
	bottom: 8px;
	background: #ddd;
	border-radius: 4px;
	width: 36px;
	height: 36px;
	font-size: 16px;
	line-height: 40px;
	transition: all .3s ease;
}

.action-search-massive-reset:hover {
	background: #ccc;
}

.search-massive .error {
	display: none;
	position: absolute;
	bottom: 8px;
	left: 8px;
	right: 50px;
	height: 36px;
	line-height: 36px;
	overflow: hidden;
	font-size: 14px;
	font-weight: bold;
	text-align: left;
	padding: 0 15px;
	font-family: 'Montserrat', sans-serif;
	background: rgba(255, 0, 0, .2);
	border-radius: 4px;
}


/*
========================================================================================================================
NOTIFICACIONES
========================================================================================================================
Es la barra inferior para comunicar algún tipo de notificación especial, como errores en los WS, waring, etc...       */

.notification {
	position: fixed;
	bottom: -100%;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 14px;
	font-weight: 500;
	padding: 10px 20px;
	transition: all .5s ease;
	z-index: 999999;
}

.notification.open {
	bottom: 0;
}

.notification.error,
.notification.wserror {
	background: #FF5722;
	padding: 0.6rem;
	color: #fff;
}

.notification.warning {
	background: #FFC107;
	color: #333;
}

.notification.success {
	background: #8BC34A;
	color: #fff;
}



/*
========================================================================================================================
CORONAVIRUS
========================================================================================================================
Es la barra inferior para comunicar algún tipo de notificación especial, como errores en los WS, waring, etc...       */

.coronavirus {
	text-align: center;
	font-weight: 500;
	padding: 15px 20px;
	transition: all .5s ease;
	background: #ffec3b;
	color: #000;
	font-size: 16px;
	/*margin-bottom: 30px;*/
}

body.login.coronavirus-on {
	padding: 0;
}

body.login.coronavirus-on .vertical-align {
	padding: 0;
}

body.fullscreen-open .coronavirus {
	display: none;
}

@media screen and (max-width: 1023px) {

	.coronavirus {
		font-size: 14px;
		padding: 15px;
	}

}


/*
========================================================================================================================
COLORES
========================================================================================================================
*/

.warning {
	background: #d32f2f;
	color: #fff;
}


.pink {
	color: #d32f2f;
}


/*
========================================================================================================================
019 VERTICAL ALIGN
========================================================================================================================
Definición de los 2 elementos necesarios para alinear verticalmente un objeto con contenido variable                  */

.vertical-align {
	display: table;
	height: 100%;
	width: 100%;
	padding: 30px 0;
}

.vertical-content {
	display: table-cell;
	vertical-align: middle;
	overflow-y: auto;
	max-height: 100%;
	width: 100%;
}



/*
========================================================================================================================
888 AJUSTES ESPECÍFICOS PARA NAVEGADORES
========================================================================================================================
Definición de todos los ajustes específicos para cada navegador                                                       */

/* 888.1 AJUSTES ESPECÍFICOS PARA NAVEGADORES > FIREFOX
	======================================================================================================================
	Ajustes de estilos para Firefox mediante un hack                                                                    */

@-moz-document url-prefix() {

	.menu li a,
	.items ul.subcategories .title,
	.items ul.grid .title,
	.items ul.grid .price,
	.items ul.list .title,
	.items ul.list .price,
	body .items ul li.group,
	table.stock,
	table.stock td,
	table.stock th {
		font-weight: 600;
	}

	.sections li a {
		font-weight: bold;
	}

}



/*
========================================================================================================================
999 HELPERS
========================================================================================================================
Clases de ayuda en la maquetación                                                                                     */

body.dev:after,
html.maintenance body:before {
	position: fixed;
	left: 0;
	background: rgba(216, 26, 96, 1);
	pointer-events: none;
	color: #fff;
	padding: 3px 10px;
	font-family: Consolas;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	z-index: 999;
}

body.dev:after {
	content: "dev";
	bottom: 0;
}

html.maintenance body:before {
	content: "maintenance";
	bottom: 26px;
}

html.maintenance {
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
}

@media screen and (min-width: 1024px) {

	body.dev:after,
	html.maintenance body:before {
		padding: 5px 15px;
		font-size: 13px;
	}
}

@media print {

	body.dev:after {
		display: none;
	}

}




/* HACK PARA MOSTRAR EN BLANCO LAS IMÁGENES CON EROR EN LA URL */
table.products .action-zoom {
	position: relative;
	height: 70px;
	vertical-align: middle;
}

table.products img:after,
#fullscreen img:after,
.items li img:after {
	/* content: " ";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #fff; */
}


/* Es el elemento que nos permite copiar en el portapapeles */
#clipboard {
	position: absolute;
	left: -10000%;
}

.noselect,
.noselect * {
	-webkit-touch-callout: none;
	/* iOS Safari */
	-webkit-user-select: none;
	/* Safari */
	-khtml-user-select: none;
	/* Konqueror HTML */
	-moz-user-select: none;
	/* Firefox */
	-ms-user-select: none;
	/* Internet Explorer/Edge */
	user-select: none;
	/* Non-prefixed version, currently
																	supported by Chrome and Opera */
}

.noscroll {
	position: fixed;
	overflow: hidden !important;
	width: 100%;
	height: 100%;
}

.nowrap {
	white-space: nowrap;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

.clear {
	clear: both;
	display: block !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.hidden {
	display: none;
}

@media (min-width: 1025px) {
	.hidden-lg {
		display: none;
	}
}

@media (max-width: 1024px) {
	.hidden-md {
		display: none;
	}
}

@media (max-width: 767px) {
	.hidden-sm {
		display: none;
	}
}

@media (max-width: 480px) {
	.hidden-xs {
		display: none;
	}
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
	display: none;
}

@media only screen and (min-width: 1025px) {
	.visible-lg {
		display: initial;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.visible-md {
		display: initial;
	}
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
	.visible-sm {
		display: initial;
	}
}

@media only screen and (max-width: 480px) {
	.visible-xs {
		display: initial;
	}
}

button[disabled] {
	cursor: default;
}


.sections li.mylook a {
	background: #e1f32a;
	color: #000;
	opacity: 1;
}

.sections li.mylook a:hover {
	background: hsla(65, 89%, 48%, 1);
}

.sections li.mydesign a {
	background: #f3ce2a;
	color: #000;
	opacity: 1;
}

.sections li.mydesign a:hover {
	background: hsla(49, 89%, 49%, 1);
}






.banner {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, .7);
	z-index: 999;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner .link {
	display: inline-block;
	margin: 50px;
}

.banner .link img {
	max-width: 100%;
	max-height: 100%;
}

.banner .btn-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
	height: 60px;
	font-size: 24px;
	line-height: 66px;
	background: rgba(216, 26, 96, 1);
	color: #fff;
	transition: all .3s ease;
}

.banner .btn-close i {}

.banner .btn-close:hover {
	background: #c51162;
}

.banner .mobile {
	display: none;
}


@media screen and (max-width: 767px) {

	.banner .link {
		display: inline-block;
		margin: 50px 10px;
	}

	.banner .mobile {
		display: block;
	}

	.banner .desktop {
		display: none;
	}

	.banner .btn-close {
		font-size: 16px;
		line-height: 55px;
		width: 50px;
		height: 50px;
	}

}






.message-top {
	background: #e1f32a;
	color: #000;
	text-align: center;
	padding: 20px;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
}




.areamap {
	position: relative;
}

body.mobile .areamap {
	display: none !important;
}

.areamap img {
	max-width: 100%;
}

.areamap button {
	display: none;
	position: absolute;
	border: 2px solid transparent;
	background: none;
}

.areamap button.added {
	border: 2px solid #009aee;
}

.areamap button.added::before {
	content: "";
	width: 60px;
	height: 60px;
	border-style: solid;
	border-width: 60px 60px 0 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	border-color: #009aee transparent transparent transparent;
}

.areamap button.added::after {
	font-family: 'iconnet' !important;
	position: absolute;
	top: 12px;
	left: 13px;
	z-index: 2;
	font-size: 13px;
	content: "\e305";
	color: #fff;
}

.areamap button span {
	position: absolute;
	bottom: 0;
	display: block;
	background: red;
	color: #fff;
	text-align: center;

	display: none;
}

.areamap.calculated button {
	display: block;
}


@media screen and (max-width: 1279px) {
	.areamap {
		display: none;
	}
}



/* Estado de un pedido */

.products .status_0 {
	color: #666;
}

.products .status_1 {
	color: #ff9f40;
}

.products .status_2 {
	color: #f0f000;
}

.products .status_3 {
	color: #00aa00;
}

.products .status_4 {
	color: #000;
}

.products .status_5 {
	color: #0198cd;
}

.products .status_10 {
	color: #0198cd;
}

.products .status_11 {
	color: #0000bb;
}

.products .status_12 {
	color: #8000ff;
}

.legend {
	list-style: none;
	padding: 0;
	margin: 30px 0 0 0;
}

.legend li {
	padding-bottom: 5px;
	padding-left: 30px;
	font-size: 14px;
	font-weight: 500;
	line-height: 16px;
}

.legend span {
	position: relative;
	top: 4px;
	left: -8px;
	display: inline-block;
	border-radius: 50%;
	width: 16px;
	height: 16px;
}

.legend .status_0 {
	background: #666;
}

.legend .status_1 {
	background: #ff9f40;
}

.legend .status_2 {
	background: #f0f000;
}

.legend .status_3 {
	background: #00aa00;
}

.legend .status_4 {
	background: #000;
}

.legend .status_5 {
	background: #0198cd;
}

.legend .status_10 {
	background: #0198cd;
}

.legend .status_11 {
	background: #0000bb;
}

.legend .status_12 {
	background: #8000ff;
}


.background_odd {
	background: #f7f7f7;
}

.status-button {
	display: inline-block;
	padding: 10px 15px;
	background: #E91E63;
	color: #fff;
	border-radius: 5px;
	transition: all .3s ease;
}

.status-button:hover {
	background: hsl(340deg 82% 40%);
}

.products .netprice {
	color: red;
	text-transform: uppercase;
}


.header select {
	border: 2px solid #eee;
	background: #fff !important;
	color: #000;
	margin-right: 10px;
	min-width: 115px;	
	font-size: 16px;
	appearance: auto;
}
@media screen and (max-width: 1024px){
	.header select {
		max-width: 210px;
	}
}

.header select:before {
	display: none;
}

/* Desactivamos esto por ahora */
.items .sizing_not_real {
	background: #ffcab9;
}

.items em {
	font-style: normal;
	color: #000;
}

tr.sizes-row em {
	font-style: italic;
	font-size: 11px;
	color: #ff6666;
	display: block;
	line-height: 13px;
}

.banner .link {
	text-align: center;
}

.banner .link img {
	max-height: 70vh;
	margin: 0 auto;
}

.banner p {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	max-width: 1024px;
	margin: 0 auto;
	padding: 15px;
	text-align: center;
}

@media screen and (max-width: 767px) {

	.banner p {
		font-size: 14px;
		max-width: 100%;
		margin: 0 auto;
	}

}







.path {
	display: block;
	width: 100%;
	background: #ddd;
	padding: 10px;
	margin: 10px 0;
	min-height: 44px;
	border-radius: 3px;
}

.path li {
	display: inline-block;
}

.path a {
	display: inline-block;
	color: #333;
	font-size: 16px;
	padding: 0 7px 0 10px;
	position: relative;
	transition: all .3s ease;
	line-height: 24px;
	font-weight: 500;
}

.path a:hover {
	color: #009aee;
}

.path a:after {
	content: ">";
	width: 10px;
	position: absolute;
	right: -7px;
	top: 2px;
	color: #000 !important;
	/* font-weight: bold; */
	content: "\e201";
	font-family: 'iconnet';
	font-size: 11px;
}

.path li:last-child a {
	pointer-events: none;
}

.path li:last-child a:after {
	display: none;
}





body.noclick .header .action-btn-logout {
	pointer-events: none !important;
}





table.stock .last_incoming th {
	background: #eeeec3;
}

table.stock .last_incoming th span {
	color: #000;
}

table.stock .last_incoming td {
	background: beige;
}


.too_much_lines {
	display: none;
}



.action-zoom-hover {
	transition: all .3s ease;
	background: #f0f0f0;
	color: #000;
}

.action-zoom-hover:hover {
	background: #ddd;
}

.action-zoom-hover span {
	display: inline-block;
	width: 80px;
}


#TMP {
	display: none;
}





#fullscreen .texts h3 {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 2px solid var(--theme-blue);
	font-weight: 500;
	color: var(--theme-blue);
}
#fullscreen .scale {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	grid-gap: 3px;
	background: #fff;
	height: 6px;
	margin-top: 10px;
	margin-bottom: 30px;
}
#fullscreen .scale span {
	background-color: #ddd;

}
#fullscreen .scale span.color {
	background-color: var(--theme-blue);
}

#fullscreen .texts .double-column {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 15px;
	padding: 0 30px;
}
#fullscreen .texts .triple-column {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 15px;
	padding: 0 30px;
}

#fullscreen .texts .cuidados-col {
	display: grid;
	grid-template-columns: 40px 1fr;
	grid-gap: 15px;
	padding: 0;
}
	#fullscreen .texts .cuidados-col > span {
		display: flex;
		justify-content: center;
		flex-direction: column;
		font-size: 15px;
	}

#fullscreen .texts > .no-style {
	list-style: none;
	padding: 0;
}

#fullscreen .texts ol {
	margin-left: 15px;
}
#fullscreen .texts ol li {
	padding-right: 30px;
}
#fullscreen .texts table {
	border-collapse: collapse;
	margin-left: 15px;
}
#fullscreen .texts table td {
	border-bottom: 1px solid var(--theme-blue);
	padding: 10px 0;
}
#fullscreen .texts table td:first-child {
	font-weight: 600;
	padding-right: 30px;
}

#fullscreen .tab.info button.show-more {
	display: none;
	color: var(--theme-blue);
	padding: 15px;
	margin-top: 15px;
	background: white;
	line-height: 1;
	text-transform: initial;
	font-weight: 600;
	border: 2px solid var(--theme-blue)
}
	#fullscreen .tab.info button.show-more.visible {
		display: inline-block;
	}
	#fullscreen .tab.info button.show-more > i {
		font-size: 9px;
		position: relative;
		display: inline-block;
		transform: rotate(90deg);
	}
	#fullscreen .tab.info button.show-more.expanded > i {
		transform: rotate(-90deg);
	}

#fullscreen .tab.info .care-item {
	display: flex;
  align-items: center;
  flex-direction: row;
}
#fullscreen .tab.info .care-item > img {
	width: 40px;
	display: inline-block;	
	aspect-ratio: 1 / 1;
	object-fit: cover;
	margin-right: 5px;	
}

#fullscreen .tab.info .technology-items {
	text-align: center;
}
	#fullscreen .tab.info .technology-items > li {
		width: 80px;
		display: inline-block;
		margin: 5px;
		vertical-align: bottom;
		position: relative;
	}
		#fullscreen .tab.info .technology-items > li > img {
			width: 100%;
			aspect-ratio: 1 / 1;
			object-fit: cover;
			border-radius: 50%;
			border: 2px solid var(--theme-blue);
			cursor: pointer;
		}
		#fullscreen .tab.info .technology-items > li > span {
			color: var(--theme-blue);
			font-size: 0.9rem;
			text-align: center;
			display: block;
			height: 2rem;
		}

@media screen and (max-width: 767px) {
	#fullscreen .images-container {
		display: block;
		height: calc( 100vw - 25px );
		overflow: auto;
		white-space: nowrap;
		padding: 0;		
	}
		#fullscreen .images-container > img {
			width: 100%;
			max-width: initial;
			max-height: initial;
			margin-right: 15px;
			display: inline-block;			
		}
		#fullscreen .images-container > img:last-child {
			margin-right: 0;
		}
	#fullscreen .images-navigation.visible {
		display: flex;
	}
	#fullscreen .texts .double-column,
	#fullscreen .texts .triple-column {
    display: block;
	}
	#fullscreen .tab.gallery {
		grid-template-columns: 1fr;
	}
	#fullscreen .tab.info button.show-more {
		display: none !important;
	}
}

#technology-popup {
	position: absolute;
  width: 300px;
  max-width: calc(100vw - 30px);
  left: 50%;
  bottom: calc(100% + 15px);
	transform: translateX(-50%);
  z-index: 9999;
  background: white;
  padding: 15px;
  box-shadow: 0 0 20px -4px rgba(0,0,0,0.25);
	text-align: left;
}
	#technology-popup > h5 {
		border-bottom: 1px solid #777;
		color: var(--theme-blue);
		padding-bottom: 5px;
		margin: 0 0 10px 0;
	}
	#technology-popup > span {
		font-size: 12px;
		line-height: 1.1;
		color: var(--theme-blue);
		text-align: left;
	}


/*
========================================================================================================================
ENTIDAD DEPORTIVA
========================================================================================================================
Modal para seleccionar entidad deportiva																																				      */

#mydesign_sports_entity_id {
	padding: 15px;
	width: 100%;
	border: 2px solid #64B5F6;
}
	#mydesign_sports_entity > div {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
		#mydesign_sports_entity > div > div { width: calc(100% - 30px); max-width: 420px; }    
	#mydesign_sports_entity label {
		line-height: 25px;
		text-align: center;
		font-weight: 600;
		font-size: var(--24px);
	}
#mydesign_sports_entity_name {
	border: 2px solid #f0f0f0;
	padding: 25px 0;
	width: 100%;
	min-width: 50px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	font-weight: 600;
	color: #000;
	cursor: pointer;
	background: #fff;
	transition: all 0.2s ease !important;
	user-select: none;
	border-radius: 0;
	font-size: var(--22px);
}
#mydesign_sports_entity_name:focus {
	outline: none;
	border-color: #8BC34A;
}


body.pv2:before,
html.pv2 body:before {
	position: fixed;
	left: 0;
	background: green;
	pointer-events: none;
	color: #fff;
	padding: 3px 10px;
	font-family: Consolas;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 600;
	z-index: 999;
	font-size: 14px;
	width: 51px;
	text-align: center;
}

body.pv2:before {
	content: "PV2";
	bottom: 30px;
}

body.pv2 h2.title {
	color: green !important;
}
body.pv2 .path {
	background-color: green !important;
}
body.pv2 .path a,
body.pv2 .path a:after {
	color: #fff !important;
}
