/*CSS ELEMENTOS COMUNES EN TODAS LAS PAGINAS*/
/*---GENERAL---*/
body {
	margin: 0;
	padding: 0;
	border: 0 none;
	font-family: var(--font-main);
	font-weight: var(--font-regular);
	font-size: 19px;
	color: var(--color-texto-principal);
}
body.page_logi {    
	background: #000 var(--fondo-principal) top center no-repeat;
	background-size: 100%;	
}
body.page_logi main.cont_cent { 
	box-sizing: border-box; 
	padding-bottom: 70px;
}
/*body.page_inic {    
	background: var(--color-terciario) var(--fondo-pantalla-completa) center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
body.page_mess {
	background: var(--color-terciario) var(--fondo-error) center center no-repeat;
	background-size: contain;
	background-attachment: fixed;
}*/
body.page_colo {
	background-color: var(--color-terciario);
}
a:link,a:visited {
	text-decoration: none;
	color: var(--color-texto-principal);
}
a:hover {	
	text-decoration: underline;
	color: var(--color-principal);
}
h1,h2,h3,h4,h5,h6,strong {
	font-weight: var(--font-bold);
}
.cont_larg {
	margin: 60px auto;
	width: 90%;
	max-width: 1280px;
}
.cont_larg h2 {
	margin-top: 0;
}
.cont_cent {
	text-align: center;
}
.cont_left {
	text-align: left;
}
.cont_rght {
	text-align: right;
}
.cont_hori {
	width: 100%;
	display: flex;
	align-items: center;
}
.cont_hori > div {
	flex: 1;
}
.cont_hide {
	display: none !important;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.tx-uc {
	text-transform: uppercase;
}
.tx-lc {
	text-transform: lowercase;
}
.mt-40 {
	margin-top: 40px;
}
.mt-50 {
	margin-top: 50px;
}
.mb-40 {
	margin-bottom: 40px;
}
.mb-50 {
	margin-bottom: 50px;
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}
a.link_butt:link,a.link_butt:visited {
	margin: 36px auto 0;
	padding: 18px 44px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	max-width: 100%;
	font-weight: var(--font-bold);
	font-size: 20px;
	line-height: 1.2em;
	color: #fff;
	background-color: var(--color-principal);
	display: inline-block;
}
a.link_butt:hover {
	text-decoration: none;
	color: #fff;
	background-color: #000;
}
/*---HEADER---*/
body.page_inte header {    
	background: #000 var(--fondo-principal) top center no-repeat;
	background-size: 100%;	
}
body.page_head header {
	background: var(--fondo-cabecera-pagina);
	background-position: center top;
	background-size: 100%;	
}
.head_main {
	box-sizing: border-box;
	padding: 0;
	border-bottom: 1px solid #fff;
	min-height: 87px;
	position: relative;
}
.head_main > div {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 0 97px;
	width: 100%;
}
.head_logo {
	margin: 28px auto 0;
	width: 188px;
	display: block;
}
.head_titl {
	margin:15px 0 0;
	font-weight: var(--font-bold);
	font-size: 27px;
	line-height: 1em;
	text-transform: uppercase;
	text-align: center;
}
.head_titl.titl_hide {
	font-size: 0;
	line-height: 27px;
}
header {
	padding-bottom: 0;
	position: relative;
}
header .head_left {
	float: left;
}
header .head_rght {
	padding-top: 28px;
	float: right;
}
header .head_left > *,header .head_rght > * {
	display: inline-block;
}
header .head_rght li {
	margin-left: 45px;
	display: inline-block;
	position: relative;
}
header .head_rght li img {
	width: auto;
	height: 32px;
	filter: brightness(0) saturate(100%) invert(100%) sepia(9%) saturate(7500%) hue-rotate(243deg) brightness(118%) contrast(113%);
	vertical-align: middle;
}
header .head_rght li.link_acti img {
	padding-bottom: 2px;
	border-bottom: 2px solid #fff;
	opacity: 0.7;
}
header .head_rght li.menu_icon,.main_menu .menu_clos {
	cursor: pointer;
	display: none;
}
.main_menu .menu_clos:hover {
	opacity: 0.8;
}
header .head_rght li:nth-child(1) {
	margin-left: 0;
}
header .head_rght li:hover {
	opacity: 0.8;
}
header .head_rght li.cart_icon span {
	-webkit-border-radius: 20px;
	border-radius: 20px;
	width: 16px;	
	font-weight: var(--font-bold);
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	background-color: #fff;
	position: absolute;
	top: 0;
  	right: -8px;
}
header .head_rght li.cart_icon a:link span,header .head_rght li.cart_icon a:visited span {
	color: var(--color-principal);
}
header .head_left > a:link,header .head_left > a:visited {
	padding: 0 14px 0 0;
	max-width: 220px;
	font-weight: var(--font-bold);
	font-size: 19px;
	line-height: 44px;
	text-overflow: ellipsis;
	color: #fff;
	/*background: transparent url('../img/icon-next.png') right center no-repeat;	*/
	white-space: nowrap;
	overflow: hidden;
	float: left;	
}
.cont_head {
	margin: 0 auto;
	padding-top: 28vw;
	padding-bottom: 38px;
	width: 90%;
	max-width: 700px;
	text-align: center;
	color: #fff;
}
body.page_head .cont_head {
	padding-top: 50px;
}
.cont_head h2 {
	margin: 0;
	font-weight: var(--font-bold);
	font-size: 38px;
	line-height: 1.2em;
	text-transform: uppercase;
}
.cont_head p {
	margin: 0;
	font-weight: var(--font-regular);
	font-size: 24px;
	line-height: 1.2em;
}
.cont_head p strong {
	font-weight: var(--font-bold);
}
.cont_head a.link_butt:link,.cont_head a.link_butt:visited {
	margin-top: 30px;
	padding-left: 10px;
	padding-right: 10px;
	min-width: 335px;
	color: var(--color-principal);
	background-color: #fff;
}
.cont_head a.link_butt:hover {
	color: #fff;
	background-color: var(--color-principal);
}
.cont_sald {	
	margin: -30px auto 36px;
	padding: 12px 10px 8px;
	border: 2px solid var(--color-secundario);
	min-width: 336px;
	max-width: 100%;
	font-weight: var(--font-bold);
	font-size: 26px;
	line-height: 1em;
	color: var(--color-secundario);
	display: inline-block;
}
body.page_head .cont_sald {
	margin: 0 auto;
}
/*---MENU PRINCIPAL---*/
.main_menu {
	-webkit-transition: all 400ms ease-in-out;
	-moz-transition: all 400ms ease-in-out;
	-ms-transition: all 400ms ease-in-out;
	-o-transition: all 400ms ease-in-out;
	transition: all 400ms ease-in-out;
}
.main_menu ul {
	margin: 0 auto;
	padding: 0;
	display: inline-block;
}
.main_menu li {
	margin-left: 40px;
	font-weight: var(--font-medium);
	font-size: 20px;
	line-height: 1em;
	text-transform: uppercase;
	display: inline-block;
}
.main_menu li:nth-child(1) {
	margin-left: 0;
}
.main_menu li a:link,.main_menu li a:visited {
	line-height: 32px;
	color: #fff;
	display: inline-block;
}
.main_menu li a:hover,.main_menu li.link_acti a:link,.main_menu li.link_acti a:visited,.main_menu li.link_acti a:hover {
	color: #fff;
	text-decoration: underline;
	opacity: 0.5;
}
/*---MENU PRINCIPAL: SUBMENU---*/
.main_menu li {
	position: relative;
	display: inline-block;
}
.main_menu li > ul {
	margin-left: -120px;
	padding: 0;
	width: 240px;		
	background-color: #f1f1f1;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	display: none;
	position: absolute;
	left: 50%;	
	z-index: 1;
}  
.main_menu li > ul > li {
	margin-left: 0 !important;
	color: black;
	text-decoration: none;
	display: block;
	font-size: 0.8em;
}  
.main_menu li > ul > li > a {
	box-sizing: border-box;
	padding: 12px 16px;
	width: 100%;
	display: block;
}  
.main_menu li > ul > li:hover {
	background-color: #ddd;
}
.main_menu li:hover > ul {
	display: block;
}
.main_menu li:hover a,.main_menu li.link_acti:hover a {
	color: #fff;
	text-decoration: underline;
	opacity: 0.5;
}
/*---CONTENIDO---*/
.cont_mess {
	box-sizing: border-box;
	margin: 40px auto 60px;	
	width: 90%;
	max-width: 574px;
}
.cont_mess a:link,.cont_mess a:visited {
	padding: 25px 105px 20px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	font-weight: var(--font-bold);
	font-size: 24px;
	text-transform: uppercase;
	color: #fff;
	background-color: var(--color-principal);
	display: inline-block;
}
.cont_mess a:hover {
	opacity: 0.7;
}
.cont_mess strong {
	margin: 0 0 15px;
	font-size: 26px;
	display: inline-block;
}
/*---FORMULARIO---*/
.form_titl {
	margin: 0  0 50px;
	font-size: 28px;
	line-height: 40px;
	text-transform: uppercase;
}
.form_cont form {
	box-sizing: border-box;
	margin: 15px auto 0;
	padding: 50px 54px;
	-webkit-border-radius: 23px;
	border-radius: 23px;
	width: 90%;
	max-width: 645px;
	background-color: #fff;
}  
.form_cont.back_tran form {
	background-color: transparent;
}
.form_cont h2 {	
	margin: 0 0 40px;
	font-weight: var(--font-bold);
	font-size: 30px;
	line-height: 1.2em;
	text-align: left;
} 
.form_cont label,.inpt_butt {	
	font-weight: var(--font-bold);
	font-size: 16px;
	line-height: 1.2em;
}
.form_cont label {
	margin: 26px 0 11px;
	text-align: left;
	color: #9794aa;
	display: block;
}
.form_cont.text_cent label {
	text-align: center;
}
.form_cont.form_ligh form {
	color: #fff;
}
.inpt_text,.inpt_butt,.inpt_sele,.inpt_numb input {
	box-sizing: border-box;
	padding: 21px 18px;
	border: 0 none;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	font-family: var(--font-main);
	font-size: 18px;
	line-height: 1.2em;
	color: #686677;
	background-color: #fff;
}
.inpt_text,.inpt_sele {
	margin: 0;
	border: 1px solid #686677;
	width: 100%;
}
.form_cont textarea.inpt_text {
	height: 100px;
}
.inpt_butt {
	margin: 20px 0 0;
    padding-left: 25px;
    padding-right: 25px;
	font-size: 18px;
	color: var(--color-texto-principal);
	appearance: none;
	-webkit-appearance: none;
}
.inpt_sele {	
	background: #fff url('../img/icon-select.png') right 20px center no-repeat;	
	appearance: none;
	-webkit-appearance: none;
	cursor: pointer;
}
.inpt_numb {
	display: inline-block;
	position: relative; 
}
.inpt_numb input {
	padding: 0;
	border: 1px solid #9794aa;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	width: 58px;
	font-weight: var(--font-bold);
	font-size: 22px;
	line-height: 35px;
	text-align: center;
	color: #9794aa;
	display: block;
	float: left;
}
.inpt_numb .numb_butt {
	box-sizing: border-box;
	margin: 11px 0;
	border-left: 0 none;
	width: 13px;
	height: 13px;
	background-color: transparent;
	background-position: center center;
	background-repeat: no-repeat;
	cursor: pointer;
	float: left;
}
.inpt_numb .numb_butt:hover {
	filter: brightness(0) saturate(100%)
}
.inpt_numb .numb_more {
	margin-left: 12px;
	background-image: url('../img/icon-more.png');
}
.inpt_numb .numb_less {
	margin-right: 12px;
	background-image: url('../img/icon-less.png');
}
.inpt_butt:hover {	
	background-color: #000;
	color: #fff;
	cursor: pointer;
}
a.inpt_butt {
	display: inline-block;
}
a.inpt_butt:hover {
	text-decoration: none;
}
.inpt_lock {
	color: #a5a5a5;
}
.form_cont .text_butt .inpt_text {
	width: calc(100% - 170px);
}
.form_cont .text_butt .inpt_butt {
	margin-top: 10px;
	float: right;
}
.form_cont input.inpt_butt,.form_cont a.inpt_butt {
	padding: 17px;
	width: 100%;
	font-weight: var(--font-medium);
	font-size: 20px;
	line-height: 1.2em;
	color: #fff;
	background-color: var(--color-principal);
}
.form_cont input.inpt_butt:hover,.form_cont a.inpt_butt:hover {
	color: #fff;
	background-color: #000;
}
.form_cont p {
	margin: 0 0 40px;
	font-size: 18px;
	line-height: 1.2em;
	text-align: left;
	color: #49475a;
}
.form_cont p small {
	font-weight: var(--font-regular);
	font-size: 16px;
}
.form_cont a {
	margin: 20px 0 0;
	font-weight: var(--font-regular);
	font-size: 18px;
	line-height: 1.2em;
    display: inline-block;
}
.form_cont p.form_line {
	margin: 30px auto 25px;
	max-width: 400px;
	text-align: center;
	background: url('../img/g100.jpg') center center repeat-x;
}
.form_cont p.form_line span {
	padding: 0 23px;
	font-weight: var(--font-bold);
	font-size: 20px;
	line-height: 1em;
	background-color: #fff;
}
.form_cont p.text_cent {
	margin-bottom: 15px;
	text-align: center;
}
.mess_erro,.mess_succ {
	width: 100%;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 2;
}
.mess_erro > div,.mess_succ > div {
	width: 100%;
	height: 100vh;
	text-align: center;
	display: table;
}
.mess_erro > div > div,.mess_succ > div > div {
	background: url('../img/k50.png') center center repeat;
	display: table-cell;
	vertical-align: middle;
}
.mess_erro > div > div > div {
	box-sizing: border-box;
	padding: 30px 50px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	width: 90%;
	max-width: 480px;
	color: #ff0000;
	background-color: #fed6db;
	display: inline-block;
}
.mess_succ > div > div > div {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 60px 50px;
	border: 1px solid #e5e5e5;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	width: 90%;
	max-width: 636px;
	min-height: 255px;
	text-align: center;
	color: #000;
	background-color: #fff;
	display: table;
	-webkit-box-shadow: 2px 2px 14px 0 #8F8F8F;
	box-shadow: 2px 2px 14px 0 #8F8F8F;
	position: relative;
}
.mess_succ > div > div > div > div {
	display: table-cell;
	vertical-align: middle;
}
.mess_erro .mess_clos {
	margin-top: 45px;
	margin-left: -21px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	width: 42px;
	height: 42px;
	background: #fed6db url('../img/icon-close-error.png') center center no-repeat;
	display: block;
	position: absolute;
	left: 50%;
	cursor: pointer;
}
.mess_succ .mess_clos {
	-webkit-border-radius: 30px;
	border-radius: 30px;
	width: 24px;
	height: 24px;
	background: #e5e5e5 url('../img/icon-close.png') center center no-repeat;
	background-size: 10px 10px;
	display: block;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
}


.mess_erro .mess_clos:hover,.mess_succ .mess_clos:hover {
	opacity: 0.7;
}
.mess_erro h3 {
	margin: 0 0 15px;
	font-weight: var(--font-bold);
	font-size: 23px;
	text-transform: uppercase;
}
.mess_succ h3 {
	margin: 0;
	font-weight: var(--font-bold);
	font-size: 30px;
	line-height: 1.2em;
}
.mess_succ h4 {
	margin: 10px 0 0;
	font-weight: var(--font-bold);
	font-size: 20px;
	line-height: 1.2em;
}
.mess_erro p,.mess_succ p {
	margin: 25px 0 0;
	font-weight: var(--font-regular);
	font-size: 18px;
	line-height: 1.2em;
	text-align: center;
}
.form_erro form {
	opacity: 0.4;
	pointer-events: none;
}
.form_mess form {
	opacity: 0.7;
	pointer-events: none;
}

.form_mess .mess_succ a.link_butt:link,.form_mess .mess_succ a.link_butt:visited {
	margin-top: 0;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	font-size: 18px;
	line-height: 1em;
	background-color: #000;
}
.form_mess .mess_succ a.link_butt:hover {
	background-color: var(--color-principal);
}
.form_mess .mess_succ.mess_st02 h3 {
	margin: 0;
	font-weight: var(--font-regular);
}
.form_mess .mess_succ.mess_st02 > div > div > div {
	padding: 40px 30px 30px;
}
.form_mess .mess_succ.mess_st02 p {
	margin: 10px 0 0;
}
.form_mess .mess_succ.mess_st02 a.link_butt {
	margin-top: 30px;
}
.form_erro .mess_erro,.form_mess .mess_succ {
	display: block;
}
.text_erro {
	padding: 15px 15px 15px 45px;
	-webkit-border-radius: 30px;
	border-radius: 30px;
	font-weight: var(--font-regular);
	font-size: 18px;
	color: #000;
	background: #fed6db url('../img/icon-close-error.png') 15px center no-repeat;
}
.succ_mess {
	width: 100%;
	text-align: center;
	display: table;
}
.page_erro .succ_mess {
	background: none;
}
.succ_mess > div {
	padding: 100px 0;
	height: 100%;
	display: table-cell;
	vertical-align: middle;
}
.succ_mess h2,.succ_mess p {
	margin: 0 auto;
	width: 90%;
	max-width: 640px;
}
.succ_mess h2 {
	font-size: 50px;
	text-transform: uppercase;
}
.succ_mess p {
	margin-top: 50px;
	font-size: 25px;
}
.succ_mess.regi_mess h2 {
	margin-bottom: 60px;
	max-width: 950px;
}
input[type="checkbox"] {
	margin: 0 8px 0 0;
	appearance: none;   
	-webkit-appearance: none; 
	width: 18px;        
	height: 18px;
	cursor: pointer;
	position: relative;
	border: 1px solid #686677;
	-webkit-borde-radius: 2px;
	border-radius: 2px;
	float: left;
}
input[type="checkbox"]:checked {
	background: url('../img/checkbox-checked.png') no-repeat center;
	background-size: contain;
}
input[type="checkbox"] + a {
	line-height: 20px;
	display: inline;
}
/*---UPLOAD FILE DRAG AND DROP---*/
.drop_area {
	box-sizing: border-box;
	padding: 90px 25px 25px;
	border: 2px dashed #a2a2a2;	
	-webkit-borde-radius: 24px;
	border-radius: 24px;
	width: 100%;
	text-align: center;
	color: #555;
	background: #fff url('../img/icon-upload-image.png') center 25px no-repeat;
	cursor: pointer;
}
.drop_area.highlight {
	border-color: #2a8cff;
	background: #eaf3ff;
}
.drop_area .drop_text {
	margin: 0;
	font-weight: var(--font-bold);
	text-align: center;
}
.drop_area .drop_text strong {
	color: #0ea4e9;
}
.drop_area .drop_text span {
	margin-top: 10px;
	font-weight: var(--font-regular);
	color: #a2a2a2;
	display: block;
}
.drop_area .file_name {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}
/*---CAROUSEL/SLIDER---*/
.cont_carr {
	position: relative;
}
.cont_carr .carr_arrw {
	margin-top: -25px;
	position: absolute;
	top: 50%;
	cursor: pointer;
	z-index: 99;
}
.cont_carr .carr_arrw.arrw_left {
	left: 0;
}
.cont_carr .carr_arrw.arrw_rght {
	right: 0;
}
.cont_carr .carr_arrw:hover {
	opacity: 0.7;
}
/*---TABLE---*/
.tabl_list table {
	margin-top: 50px;
	width: 100%;
}
.tabl_list table th,.tabl_list table td {
	padding: 15px;
	font-size: 15px;
	text-align: center;
}
.tabl_list table th {
	font-weight: var(--font-bold);
	color: #fff;
	background-color: var(--color-principal);
}
.tabl_list table td {
	background-color: var(--color-terciario);
}
.tabl_list table thead tr th:first-child {	
	-webkit-border-top-left-radius: 30px;
	border-top-left-radius: 30px;
}
.tabl_list table thead tr th:last-child {	
	-webkit-border-top-right-radius: 30px;
	border-top-right-radius: 30px;
}
.tabl_list table tbody tr:last-child td:first-child {	
	-webkit-border-bottom-left-radius: 30px;
	border-bottom-left-radius: 30px;
}
.tabl_list table tbody tr:last-child td:last-child {	
	-webkit-border-bottom-right-radius: 30px;
	border-bottom-right-radius: 30px;
}
.cont_tabl {
	overflow-x: auto;
}
.cont_tabl img {
	margin-right: 10px;
	max-width: 60px;
	vertical-align: middle;
}
.cont_tabl .tabl_pagi table {
	margin: 0 auto;
	width: auto;
}
.cont_tabl .tabl_pagi table td {
	padding: 3px;
}
.cont_tabl .tabl_pagi table td span,.cont_tabl .tabl_pagi table td a:link,.cont_tabl .tabl_pagi table td a:visited {
	box-sizing: border-box;
	padding: 12px 10px 8px;
	border: 1px solid #d4d4d4;
	-webkit-border-radius: 40px;
	border-radius: 4px;
	min-width: 37px;
	font-size: 18px;
	line-height: 1em;
	text-align: center;
	color: #000;
	background-color: transparent;
	display: inline-block;
}
.cont_tabl .tabl_pagi table td span {
	border-color: #000;
	color: #fff;
	background-color: #000;
}
.cont_tabl .tabl_pagi table td a:hover {
	border-color: var(--color-principal);
	text-decoration: none;
	color: #fff;
	background-color: var(--color-principal);
}
/*---CATALOGO---*/
.prod_cata > .cont_hori {
	align-items: start;
}
.prod_cata .prod_filt .cont_left {
	flex: inherit;
}
.inpt_srch {	
	box-sizing: border-box;
	padding: 0 90px 0 40px;
	border: 1px solid #d4d4d4;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	width: 100%;
	max-width: 426px;
	font-family: var(--font-main);
	font-weight: var(--font-regular);
	font-size: 15px;
	line-height: 35px;
	color: #a1a1a1;
	background: #fff url('../img/icon-search.png') 14px center no-repeat;
}
.butt_srch {
	box-sizing: border-box;
	margin-left: -78px;
	padding: 0;
	border: 0 none;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	width: 80px;
	font-family: var(--font-main);
	font-weight: var(--font-medium);
	font-size: 15px;
	line-height: 37px;
	color: #fff;
	background-color: #000;
	cursor: pointer;
	position: absolute;
}
.butt_srch:hover {
	background-color: var(--color-principal);
}
.sele_srch {
	margin:20px 10px 0 0;
	padding-right: 40px;
	width: 200px;
	line-height: 15px;
	background-color: #eee;
}
.prod_cata .prod_filt .cont_left p {
	margin: 20px 0;
	font-size: 16px;
	line-height: 1.2em;
	text-align: left;
	color: #404040;
}
.prod_cata .prod_filt .cont_rght > div {
	margin-top: 3px;
	display: inline-block;
}
.prod_cata .prod_filt .cont_rght p,.prod_cata .prod_filt .cont_rght ul,.prod_cata .prod_filt .cont_rght li {
	float: left;
}
.prod_cata .prod_filt .cont_rght p {
	margin: 0 10px 0 0;
	font-size: 17px;
	line-height: 30px;
}
.prod_cata .prod_filt .cont_rght ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.prod_cata .prod_filt .cont_rght li {
	margin-left: 8px;
}
.prod_cata .prod_filt .cont_rght li span {
	padding: 8px 12px 6px;
	border: 1px solid #d4d4d4;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1em;
	color: #404040;
	background-color: transparent;
	display: block;
	cursor: pointer;
}
.prod_cata .prod_filt .cont_rght li span.active {
	border-color: #000;
	color: #fff;
	background-color: #000;
}
.prod_cata .prod_filt .cont_rght li span:hover {
	border-color: var(--color-principal);;
	color: #fff;
	background-color: var(--color-principal);
}
.prod_cata .prod_list .cont_grid {
	margin-bottom: 58px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	justify-content: space-between;
	column-gap: 32px;
	row-gap: 58px;
}
.prod_cata .prod_list .cont_grid > div {
	padding: 15px 40px;
	-webkit-border-radius: 16px;
	border-radius: 16px;
	background-color: #ddd;
}
.prod_cata .prod_list .cont_grid > div:hover {
	background-color: #f6f6f6;
}
.prod_cata .prod_list .cont_grid > div a {
	text-align: center;
	display: block;
}
.prod_cata .prod_list .cont_grid > div a:hover {
	text-decoration: none;
}
.prod_cata .prod_list .cont_grid > div img {
	margin: 0 auto 10px;
	width: auto;
	max-width: 100%;
	display: block;
}
.prod_cata .prod_list .cont_grid > div strong,.prod_cata .prod_list .cont_grid > div span {
  text-align: center;
  display: block;
}
.prod_cata .prod_list .cont_grid > div strong {
  margin-bottom: 8px;
  font-weight: var(--font-bold);
  font-size: 20px;
  line-height: 1.2em;
}
.prod_cata .prod_list .cont_grid > div span {
  font-weight: var(--font-regular);
  font-size: 16px;
  line-height: 1.2em;
}
.prod_cata .prod_list .cont_grid > div h3 {
	margin: 5px 0 0;
	min-height: 48px;
	font-weight: var(--font-regular);
	font-size: 19px;
	line-height: 24px;
	text-transform: uppercase;
}
.prod_cata .prod_list .cont_grid > .grid_line,.prod_cata .prod_list .cont_grid > .grid_line:hover {
	margin: 20px 0;
	padding: 0;
	height: 2px;
	background-color: #cbcbcb;
	grid-column: 1/4;
}
.prod_cata .prod_list .cont_grid > div button {
	margin-top: 7px;
	padding: 15px 50px;
	border: 0 none;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	font-weight: var(--font-bold);
	font-size: 18px;
	line-height: 1em;
	color: #fff;
	background-color: var(--color-principal);
}
.prod_cata .prod_list .cont_grid > div button:hover {
	background-color: #000;
}
.prod_deta {
	width: 100%;
	display: table;
}
.prod_deta > div {
	box-sizing: border-box;
	display: table-cell;
	vertical-align: top;
}
.prod_deta .prod_imag {
	width: 40%;
	max-width: 520px;
}
.prod_deta .prod_imag img {
	max-width: 100%;
}
.prod_deta .prod_info {
	box-sizing: border-box;
	padding-left: 70px;
	padding-right: 40px;
	width: 60%;
}
.prod_deta .prod_info h1 {
	margin: 0;
	font-size: 40px;
	line-height: 1.2em;
}
.prod_deta .prod_info p {
	margin: 0;
}
.prod_deta .prod_info .prod_refe,.prod_deta .prod_info .prod_desc {
	font-size: 18px;
	line-height: 1.2em;
}
.prod_deta .prod_info .prod_refe,.prod_deta .prod_info .prod_poin {
	margin: 18px 0 0;
}
.prod_deta .prod_info .prod_refe {
	color: #9794aa;
}
.prod_deta .prod_info .prod_desc {
	margin: 30px 0 0;
}
.prod_deta .prod_info .prod_poin {
	font-size: 20px;
	line-height: 1.2em;
}
.prod_deta .prod_cart .inpt_numb {
	margin-top: 18px;
}
.prod_deta .prod_cart .inpt_numb input {
	background-color: transparent;
}
.prod_deta .prod_cart .inpt_butt {
	margin-top: 55px;
	padding: 12px 20px;
	-webkit-border-radius: 20px;
	border-radius: 20px;
	font-weight: var(--font-bold);
	font-size: 22px;
	line-height: 1em;
	color: #fff;
	background-color: var(--color-principal);
	display: block;
	clear: both;
}
.prod_deta .prod_cart .inpt_butt:hover {
	color: #fff;
	background-color: #000;
}
.prod_cata .prod_slid {
	padding-top: 10px;
}
/*---PERFIL---*/
.perf_imag {
	margin: 0 auto 45px;
	width: 230px;
	height: 230px;
}
.perf_imag > img {
	-webkit-border-radius: 200px;
	border-radius: 200px;
	width: 100%;
	display: block;
}
/*---FOOTER---*/
footer {
	box-sizing: border-box;	
	font-weight: var(--font-regular);
	font-size: 20px;
	line-height: 1.2em;
	background: url('../img/g70.png') center center repeat;
}
footer > div {
	box-sizing: border-box;
	margin: 0 auto;
	padding: 36px 0;	
	width: 90%;
	max-width: 1414px;
	align-items: center;
}
footer .cont_left li {
	margin: 8px 0;
}
footer .cont_cent a {
	padding-right: 12px;
}
footer .cont_cent img {
	width: 188px;
}
footer .cont_rght span {
	margin-top: 8px;
	display: block;
}
footer > div a:link,footer > div a:visited {
	text-decoration: underline;
}
.foot_fixe {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
}
/*---RESPONSIVE---*/
.mobl_show {
	display: none !important;
}
@media screen and (max-width: 1400px) { 
	footer .cont_hori{padding: 36px;}
	body.page_head header{background-size: cover;}
	.cont_carr .carr_arrw.arrw_left{left: 10px;}
	.cont_carr .carr_arrw.arrw_rght{right: 10px;}
}
@media screen and (max-width: 1300px) { 
	.prod_cata .prod_list .cont_grid > div{padding: 15px;}
	.prod_deta .prod_info{padding-left: 0;}
}
@media screen and (max-width: 1200px) { 
	.head_titl{font-size: 22px;}	
	.head_titl.titl_hide {line-height: 22px;}
	header .head_left,header .head_rght{margin-top: 0;top: 46px;}
	header .head_left{left: 30px;}
	header .head_rght{text-align: right;right: 30px;}
	header .head_left > a{padding-right: 20px;max-width: 186px;font-size: 16px;line-height: 37px;display: block;float: none;}
	header .head_rght ul img{height: 32px;}
	.main_menu ul{padding: 0 30px 25px 30px;}
	.main_menu li{margin-left: 30px;font-size: 18px;}
	.prod_cata .prod_list .cont_grid{grid-template-columns: 1fr 1fr 1fr;gap: 30px;}
	.prod_cata .prod_list .cont_grid > .grid_line{display: none;}
	footer{padding: 0 30px;}
	footer .cont_hori{display: block;}
	footer .cont_left{width: 50%;float: left;}
	footer .cont_cent{width: 50%;text-align: right;float: right;position: relative;}
	footer .cont_cent img{padding-right: 0;position: absolute;top: 0;left: -94px;}
	footer .cont_cent a{padding-right: 0;}
	footer .cont_cent span{text-align: right;display: block;}
	.head_main > div{padding: 0 36px;}
	.main_menu ul{padding-right: 0;}
	header .head_rght li{margin-left: 30px;}
	.cont_head{padding-top: 25vw;}
	.prod_cata .prod_filt{display: block;}
	.prod_cata .prod_filt .cont_rght{margin-bottom: 20px;text-align: left;}
	.prod_cata .prod_list .cont_grid > div button{padding: 15px;width: 100%;max-width: 200px;}
}
@media screen and (max-width: 900px) { 
	header .head_main{text-align: center;}
	header .head_left,header .head_rght{margin-top: 30px;text-align: center;position: static;display: inline-block;}
	header .head_left > a{margin-right: 14px;margin-left: 0;line-height: 30px;float: none;display: inline-block;}
	header .head_rght li.menu_icon{display: inline-block;}
	.main_menu{box-sizing: border-box;padding: 90px 30px;width: 50%;height: 100vh;position: fixed;top: 0;left: -100%;z-index: 1000;}
	.main_menu.menu_show{left: 0;}
	.main_menu .menu_clos{position: absolute;top: 30px;right: 30px;display: block;filter: brightness(0) saturate(100%) invert(96%) sepia(0%) saturate(0%) hue-rotate(85deg) brightness(105%) contrast(103%);}
	.main_menu ul,.main_menu ul li{margin-left: 0;margin-bottom: 20px;padding: 0;text-align: left;display: block;}
	.main_menu ul{border-bottom: 0 none;}
	.main_menu ul li{font-size: 20px;}
	.succ_mess.regi_mess h2{font-size: 40px;}
	.main_menu li > ul{margin-left: 0;width: 100%;background-color: transparent;box-shadow: none;display: block;position: static;}
	.main_menu li > ul > li{margin-bottom: 0;}
	.main_menu li > ul > li:hover{background-color: transparent;}
	.main_menu li > ul > li > a{padding-bottom: 0;}
	footer .cont_hori > div{width: 100%;float: none;}
	footer .cont_cent,footer .cont_rght{padding-top: 20px;text-align: left;}
	footer .cont_cent img{position: static;}
	body.page_logi,body.page_inte header{background-size: 1100px auto;}
	.cont_head{padding-top: 255px;}
	body.page_inte header .cont_head{padding-top: 275px;}
	.head_main{border: 0 none;}
	header .head_left, header .head_rght{margin-top: 0;}
	header .head_rght ul img{height: 26px;}
	header .head_rght li{margin-left: 20px;}
	.prod_cata .prod_list .cont_grid{gap: 20px;}
}
@media screen and (max-width: 700px) { 
	.form_cont form{padding: 50px;}
	.succ_mess h2{font-size: 40px;}
	.prod_cata .cont_hori{display: block;}
	.prod_cata .prod_list{margin-top: 30px;padding-left: 0;border-left: 0 none;}	
	.prod_back .inpt_butt{margin-top: 60px;}
	.prod_cata .prod_filt .cont_rght li{margin: 6px 6px 0 0;}
	.prod_cata .prod_filt .cont_rght li span{padding: 7px 7px 5px;}
	.prod_cata .prod_list .cont_grid{grid-template-columns: 1fr 1fr;}
}
@media screen and (max-width: 600px) { 
	.succ_mess{background-size: 100px auto;}
	footer .cont_hori{display: block;}
	footer .cont_hori > div{margin: 30px 0;width: 100%;text-align: center;}
	footer .cont_cent,footer .cont_rght{padding-top: 0;}
	footer .cont_rght ul > li{margin: 0 15px;}
	.head_logo{width: 160px;}
	.prod_deta,.prod_deta .prod_imag,.prod_deta .prod_info{width: 100%;;display: block;}
	.prod_deta .prod_imag{padding: 10px;margin-bottom: 10px;text-align: center;}
	.prod_deta .prod_imag img{max-height: 300px;}
	.prod_deta .prod_info{padding: 10px;}
	.cont_sald{padding-top: 8px;font-size: 22px;}
	.prod_deta .prod_cart .inpt_butt{margin: 35px auto 0;}
	.prod_view{margin-bottom: 30px;}
}
@media screen and (max-width: 500px) { 
	header .head_rght li{margin-left: 10px;}
	.main_menu{width: 100%;}
	.form_cont form{padding: 40px;}
	.form_cont p br{display: none;}
	.form_cont .text_butt{text-align: center;}
	.form_cont .text_butt .inpt_text,.form_cont .text_butt .inpt_butt{float: none;}
	.form_cont .text_butt .inpt_text{width: 100%;}
	.form_cont .text_butt .inpt_text{margin-bottom: 0;}
	.form_cont .text_butt .inpt_butt{margin-bottom: 18px;}
	.tabl_list .cont_hori{display: block;}
	.tabl_list .cont_hori .cont_rght{margin-top: 20px;text-align: left;}
	.form_cont form{padding: 25px;}
	.cont_head img{max-width: 100%;}
	.cont_head h2{font-size: 34px;}
	.cont_head p{padding: 0 30px;font-size: 22px;}
	.form_cont h2{margin-bottom: 20px;font-size: 25px;}
	.mess_succ > div > div > div{padding-left: 20px;padding-right: 20px;}
	.mess_succ h3{font-size: 23px;}
	.mess_erro p, .mess_succ p{margin-top: 10px;}
	.cont_head a.link_butt:link, .cont_head a.link_butt:visited{box-sizing: border-box;width: 100%;min-width: 0;}
	.cont_sald{padding-right: 20px;padding-left: 20px;min-width: 0;}
	body.page_head .cont_head{padding-top: 0;padding-bottom: 20px;}
	.form_mess .mess_succ.mess_st02 a.link_butt{margin-top: 10px;padding: 18px;}
	.prod_cata .prod_list .cont_grid{grid-template-columns: 1fr;}
	.cont_larg{margin: 40px auto;}
}