/*--------------------------------------------------------------*/
/*-----------------------ESTILO PRINCIPAL-----------------------*/
/*--------------------------------------------------------------*/

/* SE QUITA PORQUE NO RENDERIZA BIEN @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');*/

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('fonts/OpenSans.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root{
  --col0: #222222;
  --col1: #3598dc;
  --col2: #e84c3d;
  --col3: #bfd1dd;
  --col4: #888888;
  --col5: #ecf0f1;
  --col6: #ffffff;
}

*{
	font-family: 'Open Sans', sans-serif !important;
	color: var(--col0);
	margin: 0;
	padding: 0;
	line-height: 1.2;
	font-weight: 300;
	text-decoration: none;
	box-sizing: border-box;
	outline: none;
}
moz-selection{background: var(--col0);	color: var(--col6);}
*::-moz-selection{background: var(--col0);	color: var(--col6);}

a{color: var(--col1);}
a:hover{text-decoration: none;}

p{margin-bottom: 15px;}

.btn{
	border: none;
	box-shadow: none;
	display: inline-block;
	border-radius: 200px;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	padding: 15px 25px;
	transition:all 0.3s ease-out;
	-webkit-trasition:all 0.3s ease-out;
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: auto;
	line-height: 1.2;
}

.btn > span{font-size: inherit; font-weight: inherit; color: inherit;}

.btn-grande{
	padding: 20px 40px;
	font-size: 16px;
}

.btn:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.2), rgba(255,255,255,0.2), rgba(255,255,255,0));
	background-size: 300% 100%;
	z-index: -1;
	transition:all 0.3s ease-out;
	-webkit-trasition:all 0.3s ease-out;
}

.btn:hover:before, .btn:focus:before, .btn:active:before{background-position: 100% 0;}

.btn .mr{margin-right: 5px;}
.btn svg{
	width: 12px;
	height: 12px;
}
.btn svg *{fill: var(--col6);}

.btn1{
	/*box-shadow: 0 0 30px rgba(53,152,220,0.5);*/
	background-color: var(--col1);
	color: var(--col6) !important;
}
.btn1:hover,
.btn1:focus,
.btn1:active{
	box-shadow: 0 0 10px rgba(53,152,220,0.7);
	background-color: var(--col1);
}
.btn2{
	background-color: var(--col0);
	color: var(--col6) !important;
}
.btn2:hover,
.btn2:focus,
.btn2:active{
	box-shadow: 0 0 10px rgba(0,0,0,0.7);
	background-color: var(--col0);
}

.btn3{
	/*box-shadow: 0 0 30px rgba(53,152,220,0.5);*/
	background-color: var(--col2);
	color: var(--col6);
}
.btn3:hover,
.btn3:focus,
.btn3:active{
	box-shadow: 0 0 10px rgba(232,76,61,0.7);
}

.btn-circulo{
	padding: 0;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
}

.btn-small{
	padding: 9px 18px;
	font-size: 13px;
}
/*--------------------------------------------------------------*/
/*-------------------------ESTILO COMÚN-------------------------*/
/*--------------------------------------------------------------*/

header .launch{
	float: right;
	cursor: pointer;
	height: 25px;
	width: 35px;
	position: relative;
	z-index: 101;
}
header .launch span{
	background-color: #000000;
	display: block;
	height: 3px;
	left: 0;
	width: 100%;
	position: absolute;
	opacity: 1;
	-webkit-transition:all 0.3s ease-in-out;
	transition:all 0.3s ease-in-out;
}
header .launch.open span{background-color: var(--col6);}

header .launch span:nth-child(1){top: 0;}
header .launch span:nth-child(2){top: 10px;}
header .launch span:nth-child(3){top: 10px;}
header .launch span:nth-child(4){top: 20px;}

.sidr-open header .launch span:nth-child(1){top: 18px; left: 50%; width: 0;}
.sidr-open header .launch span:nth-child(2){transform: rotate(45deg); -webkit-transform: rotate(45deg);}
.sidr-open header .launch span:nth-child(3){transform: rotate(-45deg); -webkit-transform: rotate(-45deg);}
.sidr-open header .launch span:nth-child(4){top: 18px; left: 50%; width: 0;}

.anim3{transition:all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); -webkit-trasition:all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);}
.anim6{transition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1); -webkit-trasition:all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);}
.anim10{transition:all 1s cubic-bezier(0.165, 0.84, 0.44, 1); -webkit-trasition:all 1s cubic-bezier(0.165, 0.84, 0.44, 1);}

*::placeholder{color: inherit; opacity: 0.5;}
.ancla{cursor: pointer;}
img{width: auto; max-width: 100%; height: inherit;}
b{font-weight: bold; font-size: inherit; color: inherit;}
h1, h2, h3, h4, h5, h6{line-height: 1.2;}
input:not([type="checkbox"], [type="radio"]), button, select, textarea{font-family: inherit; margin: 0; width: 100%;}
select{-moz-appearance:none;-webkit-appearance:none;}
textarea{resize: vertical;}
textarea:focus, input:focus{box-shadow: none !important;}
div.icons > .btn-group, body > .jmodedit{display: none !important;}
.btn:hover, .btn:active, .btn:focus{text-decoration: none !important;}
.responsive{display: none !important;}

label.checkbox{margin-bottom: 0; position: relative; padding: 0;}
label.checkbox span{
	position: relative;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.2;
	cursor: pointer;
}
label.checkbox span a{font-size: inherit; font-weight: inherit; color: var(--col1);}
label.checkbox span a:hover{text-decoration: underline;}
label.checkbox input{position: absolute; top: 0; left: 0; opacity: 0;}
label.checkbox span:before{
	content: "\f00c" !important;
	font-family: "FontAwesome" !important;
	color: transparent;
	width: 20px;
	height: 20px;
	display: inline-block;
	vertical-align: text-top;
	margin-right: 7px;
	text-align: center;
	line-height: 20px;
	font-size: 13px;
	background-color: var(--col6);
	border: 1px solid #ccc;
	vertical-align: initial;
}

label.checkbox input[type="checkbox"]:checked + span:before{
  background-color: var(--col1);
  border-color: var(--col1);
  color: var(--col6) !important;
}
label.checkbox input:disabled + span:before{
  opacity: 0.5;
}

.cookies{
	background-color: var(--col6);
	position: fixed;
	z-index: 99;
	bottom: 0;
	left: 0;
	width: 100%;
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
	display: none;
}
.cookies p{margin: 0; padding: 0; font-size: 13px;}
.cookies .btn{
	font-size: 13px;
	padding: 5px 15px;
	vertical-align: middle;
	text-align: center;
}
body.notfound .cookies{display: none;}
.cms-cookies table{width: 100%; margin-bottom: 30px;}
.cms-cookies table td{
	padding: 5px 10px;
	background-color: rgba(0,0,0,0.05);
	border: 2px solid transparent;
	font-size: 15px;
}
.cms-cookies thead td{font-weight: bold;}

i.fa{color: inherit; font-family: "FontAwesome" !important;}

.mr{margin-right: 5px;}

.logo img{transition:all 0.3s ease-out; -webkit-trasition:all 0.3s ease-out;}

.w{color: var(--col6);}

.logo:hover img{opacity: 0.8;}

.alert{
	padding: 30px;
	background-color: #8BC34A;
	border: none;
	border-radius: 0;
	position: fixed;
	z-index: 9;
	width: 100%;
	left: 0;
	box-shadow: 0 0 100px rgba(0,0,0,0.5);
	text-align: center;
	transition:all 0.3s ease-out;
	-webkit-trasition:all 0.6s ease-out 0.2s;
	top: -200px;
}

.alert.mostrar{top: 77px;}
.alert *{
	color: var(--col6);
	box-shadow: none;
	text-shadow: none;
}
.alert-success{background-color: #8BC34A;}
.alert-warning{background-color: #FFC107;}
.alert-error{background-color: #F44336;}
.alert h4{display: none;}
.alert p{margin-bottom: 0; color: var(--col6); text-shadow: none; line-height: 1;}
.alert .close{color: var(--col6); text-shadow: none; opacity: 1; position: absolute; top: 0; right: 15px; font-size: 30px; cursor: pointer;}
.alert-warning *{color: var(--col0) !important;}

.popup{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: var(--col6);
	display: none;
	z-index: 100;
}
.popup > i{
	position: absolute;
	top: -40px;
	right: -40px;
	color: var(--col6);
	font-size: 32px;
	cursor: pointer;
}

.popup > div{display: none;}

.popupoverlay{
	position: fixed;
	cursor: pointer;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: opacity .3s ease-out;
	opacity: 0;
	background-image: radial-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
	z-index: 100;
	display: none;
	animation-name: fadeIn;
	animation-duration: 0.3s;
	animation-fill-mode: both;
}

.popupoverlay.open{display: block; opacity: 1;}
.popup.open{display: block;}
.popup a > img{display: block;}
.lpopup{cursor: pointer;}

.m{width: 100%; max-width: 1260px; margin: 0 auto;}
.m500{width: 100%; max-width: 500px; margin: 0 auto;}
.m700{width: 100%; max-width: 700px; margin: 0 auto;}
.m900{width: 100%; max-width: 900px; margin: 0 auto;}
.m1000{width: 100%; max-width: 1000px; margin: 0 auto;}

.ova{overflow: auto;}
.rel{position: relative;}

.tl{text-align: left;}
.tc{text-align: center;}
.tr{text-align: right;}
.tj{text-align: justify;}

.h100{height: 100%;}

.opcap{margin-bottom: 0;}
.opcap input{
	display: inline-block;
	width: 60px !important;
	padding: 5px 10px !important;
	margin-left: 5px;
}

.bg{background-repeat: no-repeat; background-position: center; background-size: cover;}

.f{display: flex; flex-flow: row wrap; justify-content: flex-start; align-content: flex-start;}
.f.lr{justify-content: space-between;}
.f.c{justify-content: center;}
.f.r{justify-content: flex-end;}
.f.cv{align-content: center; align-items: center;}
.f.b{align-content: flex-end; align-items: flex-end;}

.f > .c10{width: 100%;}
.f > .c9{width: 90%;}
.f > .c8{width: 80%;}
.f > .c7{width: calc(100% - 330px);}
.f > .c66{width: 66.6666666%;}
.f > .c6{width: 60%;}
.f > .c5{width: 50%;}
.f > .c4{width: 40%;}
.f > .c33{width: 33.3333333%;}
.f > .c3{width: 330px;}
.f > .c25{width: 25%;}
.f > .c2{width: 20%;}
.f > .c15{width: 15%;}
.f > .c1{width: 10%;}
.f > .c05{width: 05%;}
.f > .vac{align-self: center;}
.f > .f1{flex: 1;}

/* .f.f1 > *{width: calc(100%/1);} */
.f.f2 > *{width: calc(100%/2);}
.f.f3 > *{width: calc(100%/3);}
.f.f4 > *{width: calc(100%/4);}
.f.f5 > *{width: calc(100%/5);}
.f.f6 > *{width: calc(100%/6);}
.f.f7 > *{width: calc(100%/7);}
.f.f8 > *{width: calc(100%/8);}
.f.f9 > *{width: calc(100%/9);}
.f.f10 > *{width: calc(100%/10);}

.g{display: grid;}
.g.g1{grid-template-columns: repeat(1, 1fr);}
.g.g2{grid-template-columns: repeat(2, 1fr);}
.g.g3{grid-template-columns: repeat(3, 1fr);}
.g.g4{grid-template-columns: repeat(4, 1fr);}
.g.g5{grid-template-columns: repeat(5, 1fr);}
.g.g6{grid-template-columns: repeat(6, 1fr);}
.g.g7{grid-template-columns: repeat(7, 1fr);}
.g.g8{grid-template-columns: repeat(8, 1fr);}
.g.g9{grid-template-columns: repeat(9, 1fr);}
.g.g10{grid-template-columns: repeat(10, 1fr);}

.gap1{gap: 1px;}
.gap2{gap: 2px;}
.gap3{gap: 3px;}
.gap4{gap: 4px;}
.gap5{gap: 5px;}
.gap10{gap: 10px;}
.gap15{gap: 15px;}
.gap20{gap: 20px;}
.gap30{gap: 30px;}
.gap40{gap: 40px;}
.gap50{gap: 50px;}
.gap60{gap: 60px;}
.gap70{gap: 70px;}
.gap80{gap: 80px;}
.gap90{gap: 90px;}
.gap100{gap: 100px;}

.pd1{padding: 1px;}
.pd2{padding: 2px;}
.pd3{padding: 3px;}
.pd4{padding: 4px;}
.pd5{padding: 5px;}
.pd5-10{padding: 5px 10px;}
.pd5-0{padding: 5px 0px;}
.pd0-5{padding: 0px 5px;}
.pd10-5{padding: 10px 5px;}
.pd10{padding: 10px;}
.pd10-0{padding: 10px 0;}
.pd0-10{padding: 0 10px;}
.pd10-30{padding: 10px 30px;}
.pd10-20{padding: 10px 20px;}
.pd10-15{padding: 10px 15px;}

.pd15{padding: 15px;}
.pd15-0{padding: 15px 0;}
.pd0-15{padding: 0 15px;}
.pd15-30{padding: 15px 30px;}

.pd20{padding: 20px;}
.pd20-0{padding: 20px 0;}
.pd0-20{padding: 0 20px;}
.pd20-30{padding: 20px 30px;}
.pd20-15{padding: 20px 15px;}
.pd20-10{padding: 20px 10px;}

.pd30{padding: 30px;}
.pd30-0{padding: 30px 0;}
.pd0-30{padding: 0 30px;}
.pd30-20{padding: 30px 20px;}
.pd30-15{padding: 30px 15px;}
.pd30-10{padding: 30px 10px;}

.pd40{padding: 40px;}
.pd40-0{padding: 40px 0;}
.pd0-40{padding: 0 40px;}
.pd40-20{padding: 40px 20px;}
.pd40-15{padding: 40px 15px;}
.pd40-10{padding: 40px 10px;}

.pd50{padding: 50px;}
.pd50-0{padding: 50px 0;}
.pd0-50{padding: 0 50px;}
.pd50-30{padding: 50px 30px;}
.pd50-20{padding: 50px 20px;}
.pd50-15{padding: 50px 15px;}
.pd50-10{padding: 50px 10px;}

.pd60{padding: 60px;}
.pd60-0{padding: 60px 0;}
.pd0-60{padding: 0 60px;}
.pd60-30{padding: 60px 30px;}
.pd60-20{padding: 60px 20px;}
.pd60-15{padding: 60px 15px;}
.pd60-10{padding: 60px 10px;}

.pd70{padding: 70px;}
.pd70-0{padding: 70px 0;}
.pd0-70{padding: 0 70px;}
.pd70-30{padding: 70px 30px;}
.pd70-20{padding: 70px 20px;}
.pd70-15{padding: 70px 15px;}
.pd70-10{padding: 70px 10px;}

.pd80{padding: 80px;}
.pd80-0{padding: 80px 0;}
.pd0-80{padding: 0 80px;}
.pd80-30{padding: 80px 30px;}
.pd80-20{padding: 80px 20px;}
.pd80-15{padding: 80px 15px;}
.pd80-10{padding: 80px 10px;}

.pd90{padding: 90px;}
.pd90-0{padding: 90px 0;}
.pd0-90{padding: 0 90px;}
.pd90-30{padding: 90px 30px;}
.pd90-20{padding: 90px 20px;}
.pd90-15{padding: 90px 15px;}
.pd90-10{padding: 90px 10px;}

.pd100{padding: 100px;}
.pd100-0{padding: 100px 0;}
.pd0-100{padding: 0 100px;}
.pd100-30{padding: 100px 30px;}
.pd100-20{padding: 100px 20px;}
.pd100-15{padding: 100px 15px;}
.pd100-10{padding: 100px 10px;}

.pd120{padding: 120px;}
.pd120-0{padding: 120px 0;}
.pd0-120{padding: 0 120px;}
.pd120-30{padding: 120px 30px;}
.pd120-20{padding: 120px 20px;}
.pd120-15{padding: 120px 15px;}
.pd120-10{padding: 120px 10px;}

.pd150{padding: 150px;}
.pd150-0{padding: 150px 0;}
.pd0-150{padding: 0 150px;}
.pd150-30{padding: 150px 30px;}
.pd150-20{padding: 150px 20px;}
.pd150-15{padding: 150px 15px;}
.pd150-10{padding: 150px 10px;}

.pd-nr{padding-right: 0 !important;}
.pd-nl{padding-left: 0 !important;}
.pd-nt{padding-top: 0 !important;}
.pd-nb{padding-bottom: 0 !important;}

.mb5{margin-bottom: 5px;}
.mb10{margin-bottom: 10px;}
.mb15{margin-bottom: 15px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}
.mb60{margin-bottom: 60px;}
.mb70{margin-bottom: 70px;}
.mb80{margin-bottom: 80px;}
.mb90{margin-bottom: 90px;}
.mb100{margin-bottom: 100px;}

.mt5{margin-top: 5px;}
.mt10{margin-top: 10px;}
.mt15{margin-top: 15px;}
.mt20{margin-top: 20px;}
.mt30{margin-top: 30px;}
.mt40{margin-top: 40px;}
.mt50{margin-top: 50px;}
.mt60{margin-top: 60px;}
.mt70{margin-top: 70px;}
.mt80{margin-top: 80px;}
.mt90{margin-top: 90px;}
.mt100{margin-top: 100px;}

/*--------------------------------------------------------------*/
/*---------------------ESTILO MANTENIMIENTO---------------------*/
/*--------------------------------------------------------------*/

body{background-color: var(--col5);}

body.mantenimiento:after{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('/images/estructura/bg_mantenimiento.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: -1;
}
body.mantenimiento h1{
	margin-top: 50px;
	text-transform: uppercase;
	color: var(--col0);
	font-weight: bold;
	font-size: 55px;
}
body.mantenimiento h2{
	color: var(--col0);
	margin-bottom: 50px;
}
body.mantenimiento .sc i{
	background-color: var(--col6);
	color: var(--col1);
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
	font-size: 24px;
}
body.mantenimiento .sc i:hover{
	color: var(--col6);
	background-color: transparent;
	border: 2px solid var(--col6);
}
body.mantenimiento fieldset{
	border: none;
	padding-bottom: 40px;
	position: relative;
}
body.mantenimiento fieldset input{
	height: 35px;
	padding: 0 10px;
	margin-bottom: 5px;
}

/*--------------- SIDR ----------------*/
.sidr{
  display:none;
  position:absolute;
  position:fixed;
  top:0;
  height:100%;
  z-index:999999;
  width:250px;
  overflow-x:none;
  overflow-y:auto;
  font-size:15px;
  background:var(--col0);
  color:var(--col6);
  -webkit-box-shadow:inset 0 0 5px rgba(0,0,0,0.5);
  -moz-box-shadow:inset 0 0 5px rgba(0,0,0,0.5);
  box-shadow:inset 0 0 5px rgba(0,0,0,0.5);
}

.sidr .sidr-inner{padding:0;}
.sidr .btn{border-radius: 0; width: 100%; text-align: center; padding: 17px 25px;}

.sidr .sidr-inner>p{margin-left:15px;
  margin-right:15px}

.sidr.right{left:auto;
  right:-260px}

.sidr.left{left:-260px;
  right:auto}
/* mio */
.sidr{padding-top: 0px;}
.sidr .nav li a, .sidr .nav li span{color: #fff !important; display: block; line-height: 1; padding: 17px 20px !important; text-transform: uppercase; font-size: 14px; font-weight: 600;}
.sidr .nav li.parent > a, .sidr .nav li.parent > span{position: relative;}
.sidr .nav li.parent > a:after, .sidr .nav li.parent > span:after{
	content: "\f0d7";
	font-family: "FontAwesome" !important;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}
.sidr .nav li{display: block; border-bottom: 1px solid rgba(255,255,255,0.2);}
.sidr-class-menu > li{border-bottom: 1px solid #444;}

.sidr .nav li a:hover, .sidr .nav li.sidr-class-active > a, .sidr a:hover, .sidr a:focus, .sidr a:active{
  color: #fff !important;
}
.sidr .nav li ul{display: none; background-color: #444;}

.sidr ul.lang-inline{text-align: center; padding: 15px 0;}
.sidr ul.lang-inline li{display: inline-block; margin: 0 10px;}
/*#####################################*/

/*--------------------------------------------------------------*/
/*-------------------------SOLO FIREFOX-------------------------*/
/*--------------------------------------------------------------*/
@-moz-document url-prefix(){}

/*--------------------------------------------------------------*/
/*----------------------------ESTILO----------------------------*/
/*--------------------------------------------------------------*/

.bcfacebook{background-color: #3b5999; color: var(--col6) !important;}
.bcwhatsapp{background-color: #25D366; color: var(--col6) !important;}
.bctwitter{background-color: #55acee; color: var(--col6) !important;}
.bclinkedin{background-color: #0077B5; color: var(--col6) !important;}
.bcyoutube{background-color: #cd201f; color: var(--col6) !important;}
.bcinstagram{background-color: #e4405f; color: var(--col6) !important;}

.white{background-color: var(--col6);}

.bcfacebook i{color: var(--col6) !important;}
.bcwhatsapp i{color: var(--col6) !important;}
.bctwitter i{color: var(--col6) !important;}
.bclinkedin i{color: var(--col6) !important;}
.bcyoutube i{color: var(--col6) !important;}
.bcinstagram i{color: var(--col6) !important;}

header{
	position: relative;
	z-index: 10 !important;
	background-color: var(--col6);
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
}
header .logo img{
	height: 40px;
	width: 300px;
	display: block;
}

header nav{margin-right: 15px;}
header nav ul li{
	list-style: none;
	display: inline-block;
}

header nav ul li a{
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 15px;
	display: block;
	font-size: 14px;
	color: var(--col0);
}

header nav ul li a:hover{
	color: var(--col1);
	text-decoration: none;
}

header .btn{
	position: relative;
	overflow: visible;
}

header .btn .notificaciones{
	position: absolute;
	background-color: var(--col2);
	width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50%;
	font-weight: bold !important;
	line-height: 19px !important;
	top: -5px;
	right: 0;
	font-size: 8px;
	color: var(--col6);
}

section.portada{background-image: url("/images/estructura/bg_portada.jpg");}
section.portada h1{
	color: var(--col6);
	text-align: center;
	font-weight: bold;
	font-size: 60px;
	margin-bottom: 30px;
}

section.portada h1 span{
	display: block;
	color: inherit;
	font-weight: inherit;
	font-size: 30px;
	margin-top: 5px;
}

select.hijo option.filtro{display: none;}
select{
	border: none;
	box-shadow: none;
	font-size: 14px;
	font-weight: 600;
	padding: 15px 30px 15px 20px;
	background-image: url("/images/estructura/caret-down.svg");
	background-repeat: no-repeat;
	background-position: center right 15px;
	background-size: 10px;
	cursor: pointer;
	line-height: 1.25;
	background-color: var(--col6);
}
select:hover{box-shadow: 0 0 10px rgba(0,0,0,0.1);}
select option{font-weight: 600;}

section.portada .btn{border-radius: 0; height: 48px;}
section.portada form{
	border-radius: 3px;
	overflow: hidden;
	background-color: var(--col6);
}

section.portada select{
	border-right: 1px solid rgba(0,0,0,0.2);
}

section.portada select#xf_4{border: none;}

.pbl a{display: block;}
.pbl img{display: block; margin: 0 auto;}
.pbl div{margin: 0 auto; text-align: center;}


.h2{
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.h2:after{
	content: "";
	width: 30px;
	height: 6px;
	background-color: var(--col1);
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
}

.h3{
	font-weight: bold;
	font-size: 24px;
}
.h4{
	font-weight: bold;
	font-size: 18px;
}
.h5{
	font-weight: bold;
	font-size: 15px;
}
.h6{
	font-weight: bold;
	font-size: 12px;
}

.mb{margin-bottom: 20px;}

.k2vk.cat.noticias article{height: 100%;}
.k2vk.cat.noticias article a{
	height: 100%;
	display: block;
	background-color: var(--col6);
	position: relative;
	padding-bottom: 30px;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.k2vk.cat.noticias article picture img{display: block;}
.k2vk.cat.noticias article .info{padding: 30px;}
.k2vk.cat.noticias.XSmall article .info{padding: 20px;}
.k2vk.cat.noticias.XSmall article .info .h4{font-size: 14px; line-height: 1.3;}

.k2vk.cat.noticias.XSmall article .info .desc{font-size: 13px; line-height: 1.3;}

.k2vk.cat.noticias article .info .desc{
	margin-top: 5px;
	font-size: 15px;
	line-height: 1.4;
	color: var(--col4);
}

.k2vk.cat.noticias article .img{position: relative;}

.k2vk.cat.noticias article .video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.k2vk.cat.noticias article .gal{
	position: absolute;
	top: 0;
	left: 0;
	padding: 15px;
}

.k2vk.cat.noticias article .gal i{
	color: var(--col6);
	font-size: 20px;
	text-shadow: 0px 0 5px rgba(0,0,0,0.3);
}

.k2vk.cat.noticias article .video i{
	color: var(--col6);
	font-size: 22px;
	border: 2px solid var(--col6);
	width: 55px;
	height: 55px;
	line-height: 50px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.3);
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	padding-left: 19px;
}

.k2vk.cat.noticias article a:hover h3{
	color: var(--col1);
}

.k2vk.cat.noticias article a:hover picture{opacity: 0.8;}
.k2vk.cat.noticias article .comentarios svg{
	width: 15px;
	height: 15px;
	display: inline-block;
	margin-right: 5px;
}

.k2vk.cat.noticias article .dat{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	padding: 30px;
}
.k2vk.cat.noticias.XSmall article .dat{padding: 20px;}
.k2vk.cat.noticias article .dat *{
	font-size: 13px;
	color: var(--col4);
}

.k2vk.cat.noticias article .dat > .f > div{
	margin-right: 15px;
	border-right: 1px solid #ddd;
	padding-right: 15px;
}
.k2vk.cat.noticias article .dat > .f > div:last-child{margin-right: 0; padding-right: 0; border: none;}

.k2vk.cat.noticias.XSmall article .dat > div{margin-right: 10px; padding-right: 10px;}
.k2vk.cat.noticias.XSmall article .dat > div:last-child{margin-right: 0; padding-right: 0;}

.k2vk.manuales .subcats a{display: block;}
.k2vk.manuales .subcats svg{
	width: 75px;
	height: 75px;
	margin-right: 20px;
}
.k2vk.manuales .subcats svg *{fill: var(--col6);}

.k2vk.manuales .subcats h3{
	color: var(--col6);
	font-weight: bold;
	text-transform: uppercase;
	font-size: 23px;
}

.k2vk.manuales .subcats h3 span{
	display: block;
	font-weight: inherit;
	text-transform: uppercase;
	color: var(--col1);
}

.k2vk.manuales .subcats a:hover h3 span{color: var(--col0);}

.k2vk.manuales .subcats .item .info{
	background-color: rgba(0,0,0,0.6);
}

.k2vk.manuales .subcats a:hover .info{
	background-color: rgba(53,152,220,0.9);
}

.lindeg{
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent 300px);
}

.k2vk.cat.manuales article{position: relative; z-index: 1;}
.k2vk.cat.manuales article:hover{position: relative; z-index: 2;}
.k2vk.cat.manuales article a{
	display: block;
	background-color: var(--col6);
	margin-bottom: 5px;
}
.k2vk.cat.manuales article a:hover{
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.k2vk.manuales article svg{
	width: 13px;
	height: 13px;
	margin-right: 5px;
}
.k2vk.cat.manuales article h3{margin-bottom: 5px;}
.k2vk.cat.manuales article a:hover h3{
	color: var(--col1);
}

.k2vk.cat.manuales article .ico{padding: 10px;}
.k2vk.cat.manuales article .ico img{
	display: block;
	width: 62px;
}

.k2vk article .dat *{
	font-size: 13px;
	color: var(--col4);
}
.k2vk article .dat > div{
	margin-right: 15px;
	border-right: 1px solid #ddd;
	padding-right: 15px;
}

.k2vk article .dat > div:last-child{margin-right: 0; padding-right: 0; border-right: 0;}

.k2vk.cat.segunda_mano .deco{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
}

.k2vk.cat.segunda_mano .fotos .img{
	height: 305px;
}

.k2vk.cat.segunda_mano .items .item > .pitem{
	height: 100%;
	display: block;
	background-color: var(--col6);
	position: relative;
	padding-bottom: 40px;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.k2vk.cat.segunda_mano .items .item .precio{
	color: var(--col1);
	margin-top: 5px;
}

.k2vk.finalview.segunda_mano .info .precio{
	color: var(--col1);
	margin-top: 5px;
	font-weight: bold;
	font-size: 30px;
}

.k2vk.cat.segunda_mano .swiper-container .flechas{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	padding: 15px;
	height: 100%;
	transition:all 0.3s ease-out;
}
.k2vk.cat.segunda_mano .item .fecha{font-size: 13px; color: var(--col4); font-weight: 600;}
.k2vk.cat.segunda_mano .item .fecha.warning{color: var(--col2); font-weight: bold;}
.k2vk.cat.segunda_mano .item .flechas{opacity: 0;}
.k2vk.cat.segunda_mano .item a:hover .flechas{opacity: 1;}
.k2vk.segunda_mano .swiper-container .flechas i{
	color: var(--col6);
	font-size: 22px;
	border: 2px solid var(--col6);
	width: 45px;
	height: 45px;
	line-height: 40px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.3);
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	text-align: center;
	transition:all 0.1s ease-out;
	cursor: pointer;
}

.k2vk.finalview.segunda_mano .swiper-container .flechas i{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
.k2vk.finalview.segunda_mano .swiper-container .flechas i.sw-p{left: 15px;}
.k2vk.finalview.segunda_mano .swiper-container .flechas i.sw-n{right: 15px;}

.k2vk.segunda_mano .swiper-container .flechas i:hover{
	box-shadow: 0 0 10px rgba(53,152,220,0.7);
	background-color: var(--col1);
	border-color: var(--col1);
}

.k2vk.cat.segunda_mano .items .item .dat *{
	font-size: 13px;
	color: var(--col4);
}
.k2vk.cat.segunda_mano .items .item .dat .f > div:last-child{padding-right: 0;}
.k2vk.cat.segunda_mano .items .item .dat svg{
	width: 14px;
	height: 14px;
	margin-right: 5px;
}
.k2vk.cat.segunda_mano .items .item .dat svg *{fill: var(--col4);}
.k2vk.cat.segunda_mano .items .item .dat{padding: 15px 0 0 0;}
.k2vk.cat.segunda_mano .items .item .dat{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 30px;
}

.k2vk.cat.segunda_mano .items .item .dat > .f .c33:nth-child(2n) > .f{
	justify-content: center;
}
.k2vk.cat.segunda_mano .items .item .dat > .f .c33:nth-child(3n) > .f{
	justify-content: flex-end;
}

.k2vk.cat.segunda_mano .items .item .fotos .blur{background-color: var(--col0);}
.k2vk.cat.segunda_mano .items .item .fotos .blur .img{
	filter: blur(5px);
	opacity: 0.5;
}
.k2vk.cat.segunda_mano .items .item .fotos .blur .txt{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.k2vk.cat.segunda_mano .items .item .fotos .blur .txt i{
	color: var(--col6);
	font-size: 40px;
	margin-bottom: 10px;
}
.k2vk.cat.segunda_mano .items .item .fotos .blur .txt span{
	color: var(--col6);
	display: block;
}

.k2vk.cat.segunda_mano .items .item .h4:hover{
	color: var(--col1);
}

section.foro{
	background-image: url("/images/estructura/bg_home_foro.jpg");
	background-attachment: fixed;
}

section.foro img{
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.k2vk.cat.boards article.topic a{
	display: block;
	background-color: var(--col6);
	margin-bottom: 5px;
}

.k2vk.cat.boards article.topic.bloqueado a{
	background-color: var(--col3);
}

.k2vk.cat.boards article.topic.bloqueado .info *{
	color: rgba(0,0,0,0.5) !important;
	border-color: rgba(0,0,0,0.2) !important;
}


.k2vk.cat.boards article.topic:hover{position: relative; z-index: 2;}
.k2vk.cat.boards article.topic a:hover{
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.k2vk.cat.boards article.topic a:hover h3{color: var(--col1);}

.smf .avatar{
	width: 50px;
	height: 50px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.2);
}

.smf .avatar.letras{
	background-color: var(--col1);
	color: var(--col6);
	text-align: center;
	line-height: 50px;
	text-transform: uppercase;
	font-weight: bold;
	font-weight: 600;
}

.k2vk.cat.boards article.topic .d > div{opacity: 0.8; margin: 5px 0;}
.k2vk.cat.boards article.topic .d span{opacity: 0.6;}

.k2vk.cat.boards article.topic a{text-decoration: none !important;}
.k2vk.cat.boards article.topic h3{margin-bottom: 5px;}
.k2vk.cat.boards article.topic h3 i{margin-left: 10px;}
.k2vk.cat.boards article.topic .info *{
	font-size: 13px;
	color: var(--col4);
}
.k2vk.cat.boards article.topic .info i{
	margin-right: 5px;
}

.k2vk.cat.boards article.topic .info > div{
	margin-right: 15px;
	border-right: 1px solid #ddd;
	padding-right: 15px;
}

.k2vk.cat.boards article.topic .info > div:last-child{
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.k2vk.cat.boards article.topic .txt{
	margin-top: 20px;
	font-size: 15px;
	line-height: 1.4;
}

section.suscripcion .acy{
	background-color: var(--col1);
	background-image: url("/images/estructura/marcas_neumaticos.png"), url("/images/estructura/bg_newsletter.png");
	background-repeat: no-repeat, no-repeat;
	background-position: center left, center right;
}

section.suscripcion .acy .tit{
	color: var(--col6);
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 20px;
}
section.suscripcion .acy .desc{
	color: var(--col6);
	opacity: 0.7;
	font-size: 16px;
}

section.suscripcion .acy .frm{
	background-color: var(--col6);
	border-radius: 200px;
	margin-top: 60px;
	max-width: 500px;
}
section.suscripcion .acy input{
	background-color: transparent;
	border: none;
	display: block;
	padding: 15px 25px;
	font-weight: 600;
	font-size: 14px;
	height: auto;
	line-height: 1;
}

section.suscripcion .lpopup{
	display: block;
	background: var(--col1);
	height: 41px;
	width: 41px;
	border-radius: 50%;
	margin-right: 6px;
	text-align: center;
	color: var(--col6);
	line-height: 40px;
}
section.suscripcion .lpopup:hover{background-color: var(--col0);}

footer .f > .c3{width: 30%;}
footer .desc{
	font-size: 15px;
	line-height: 1.4;
}

footer .logo img{max-width: 250px; display: inline-block;}
footer .logo{margin-bottom: 10px; display: inline-block;}

footer ul li a{
	font-size: 15px;
	line-height: 1.4;
}

footer ul li{list-style: none;}

footer h5{
	margin-bottom: 28px;
	font-weight: bold;
	font-size: 16px;
}

footer .copyright{
	background-color: rgba(0,0,0,0.1);
	font-size: 12px;
	font-weight: 600;
	color: var(--col4);
}
footer .copyright a{
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	text-decoration: underline;
}
footer .copyright a:hover{
	color: var(--col1);
}

footer .anunciantes a{
	color: var(--col1);
	font-weight: 600;
	font-size: 14px;
	text-decoration: underline;
}

footer .nav li{margin-bottom: 3px;}
footer .nav li a{color: var(--col0);}
footer .nav li a:hover{color: var(--col1);}

footer .social{margin-top: 20px;}
footer .social i{
	border-radius: 50%;
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	color: var(--col6);
}
footer .social i:hover{background: var(--col0) !important;}

.sc.fa-facebook{background-color: #3b5999;}
.sc.fa-twitter{background-color: #55acee;}
.sc.fa-youtube-play{background-color: #cd201f;}
.sc.fa-instagram{background:
	radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%),
	radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%),
	radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%),
    radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent),
    linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

.breadcrumb li{display: inline-block; list-style: none;}
.breadcrumb li:first-child{display: none;}
.breadcrumb li span{
	font-size: 13px;
	font-weight: 600;
}
.breadcrumb li a span{color: var(--col1);}
.breadcrumb li a:hover span{text-decoration: underline;}

.breadcrumb li span.divider img{display: none;}
.breadcrumb li span.divider:after{
	content: "\f105";
	font-family: "FontAwesome";
	margin: 0 10px;
}

.breadcrumb li > span{opacity: 0.7;}
.pageheader .h1{
	font-weight: bold;
	margin-top: 10px;
	font-size: 40px;
}
.pageheader h2{
	font-size: 16px;
	font-weight: 600;
	opacity: 0.4;
	margin-top: 10px;
}

.cms-legal .h4{
	margin-bottom: 10px;
}

.texto *, p{
	font-size: 15px;
	line-height: 1.5;
}
strong{font-weight: bold; font-size: inherit; color: inherit;}
.texto a:hover{text-decoration: underline;}
.texto ul, .texto ol{margin-left: 15px;}
.texto li{margin-bottom: 10px;}
.texto img{display: block; float: none !important;}
.texto figure{margin-left: -30px; margin-right: -30px;}
figure figcaption{
	background: #333;
	padding: 5px 30px;
	color: var(--col6);
	font-size: 13px;
}
.texto iframe[id^="youtube"]{
	width: 100%;
	height: 455px;
}
.texto > *{margin-bottom: 20px;}
.texto > *:last-child{margin-bottom: 0;}
.texto p:empty:last-child{display: none;}
.texto p:empty{margin-bottom: 0;}

.texto h6{font-size: 14px; font-weight: bold; margin-bottom: 10px; margin-top: 30px;}
.texto h5{font-size: 16px; font-weight: bold; margin-bottom: 10px; margin-top: 30px;}
.texto h4{font-size: 18px; font-weight: bold; margin-bottom: 10px; margin-top: 30px;}
.texto h3{font-size: 23px; font-weight: bold; margin-bottom: 10px; margin-top: 30px;}
.texto h2{font-size: 28px; font-weight: bold; margin-bottom: 10px; margin-top: 30px;}
.texto h1{font-size: 32px; font-weight: bold; margin-bottom: 10px; margin-top: 30px;}

.texto h6:first-child{margin-top: 0;}
.texto h5:first-child{margin-top: 0;}
.texto h4:first-child{margin-top: 0;}
.texto h3:first-child{margin-top: 0;}
.texto h2:first-child{margin-top: 0;}
.texto h1:first-child{margin-top: 0;}

.cms-contacto form button{width: auto;}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form textarea{
	background-color: var(--col6);
	border: none;
	font-weight: 600;
	padding: 15px 25px;
	font-size: 14px;
}

form input[type="text"]:hover,
form input[type="email"]:hover,
form input[type="password"]:hover,
form input[type="number"]:hover,
form textarea:hover{
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.vkpagination{padding: 15px; margin-bottom: 15px;}
.vkpagination li.pagination-start, .vkpagination li.pagination-end{display: none !important;}
.vkpagination ul{
	text-align: center;
	display: flex;
	justify-content: center;
	margin-top: 15px;
	filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
}
.vkpagination ul li{
	list-style: none;
	margin: 0 1px;
}
.vkpagination ul li > *{
	width: 35px;
	height: 35px;
	line-height: 35px;
	background-color: var(--col6);
	font-weight: bold;
	text-align: center;
	display: block;
	font-size: 14px;
	color: var(--col4)
}
.vkpagination ul li:not([class]) > span{
	background-color: var(--col1);
	color: var(--col6);
}
.vkpagination ul li a:hover{
	background-color: var(--col0);
	color: var(--col6);
}
.vkpagination ul li.pagination-prev *,
.vkpagination ul li.pagination-next *{
	width: auto; padding: 0 15px;
}
.vkpagination ul li.pagination-prev *:before{
	content: "\f104";
	font-size: 14px;
	font-family: "FontAwesome" !important;
	margin-right: 10px;
}
.vkpagination ul li.pagination-next *:after{
	content: "\f105";
	font-size: 14px;
	font-family: "FontAwesome" !important;
	margin-left: 10px;
}

.vkpagination ul li span{color: rgba(0,0,0,0.3);}

.tooltip{position: absolute; display: none !important;}
/*.tooltip-inner{
	background-color: #666;
	color: var(--col6);
	font-weight: bold;
	line-height: 1;
	padding: 5px 10px;
	font-size: 12px;
	transform: translateY(-7px);
}
.tooltip-arrow{
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-top: 7px solid #666;
	border-right: 7px solid transparent;
	border-left: 7px solid transparent;
}*/

.c3_small .imag{
	width: 100px;
	min-height: 56px;
	height: 100%;
}
.c3_small .miniinfo{padding-left: 10px;}
.c3_small .minidat *{
	font-size: 11px;
	color: var(--col4);
}

.c3_small .h6{margin-bottom: 3px;}

.c3_small .minidat .comentarios{
	margin-right: 10px;
	border-right: 1px solid #ddd;
	padding-right: 10px;
}

.c3_small .item a{
	background-color: var(--col6);
	display: block;
	margin-bottom: 5px;
	padding: 15px;
	position: relative;
}

.c3_small .item a:hover{
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
	z-index: 2;
}

.c3_small .item a:hover .h6{color: var(--col1);}

.c3_small .item .video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.c3_small .item .gal{
	position: absolute;
	top: 0;
	left: 0;
	padding: 5px 10px;
}

.c3_small .item .gal i{
	color: var(--col6);
	font-size: 12px;
	text-shadow: 0px 0 5px rgba(0,0,0,0.3);
}

.c3_small .item .video i{
	color: var(--col6);
	font-size: 12px;
	border: 2px solid var(--col6);
	width: 35px;
	height: 35px;
	line-height: 32px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.3);
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	padding-left: 12px;
}

.share ul{display: flex;}
.share ul li{
	list-style: none;
}

.share ul li a{
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	color: var(--col6);
	display: block;
	margin-left: 5px;
	font-size: 13px;
}
.share ul li a:hover{
	opacity: 0.8;
}

.borderdark{
	color: var(--col4) !important;
	background-color: #ccc;
}

.pageheader .datos > div{
	margin-right: 15px;
	border-right: 1px solid #ccc;
	padding-right: 15px;
}

.pageheader .datos > div:last-child{
	margin-right: 0;
	padding-right: 0;
	border-right: 0;
}

.pageheader .datos > div{font-size: 13px; color: var(--col4);}
.pageheader .datos .comments:hover{color: var(--col1);}

.comparte{
	position: relative;
	cursor: pointer;
}
.comparte:hover .share{display: block;}
.comparte .share{
	position: absolute;
	top: 30px;
	left: 50%;
	background: var(--col6);
	padding: 10px;
	transform: translateX(-50%);
	box-shadow: 0 0 30px rgba(0,0,0,0.2);
	display: none;
	z-index: 5;
}
.comparte .share i{color: var(--col6);}

.comparte .share:before{
	content: "";
	border-right: 10px solid transparent;
	border-left: 10px solid transparent;
	border-bottom: 10px solid var(--col6);
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) translateY(-100%);
}
.comparte .share:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	z-index: 2;
	transform: translateY(-100%);
}

.finalview .articulo{
	background-color: var(--col6);
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

picture, picture img{display: block;}

.k2vk.finalview .articulo figure picture{position: relative;}
.k2vk.finalview .articulo figure .video i{
	color: var(--col6);
	font-size: 22px;
	border: 2px solid var(--col6);
	width: 75px;
	height: 75px;
	line-height: 72px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.3);
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	padding-left: 28px;
	transition:all 0.1s ease-out;
}
.k2vk.finalview .articulo figure .video i.fa-spin{
	font-size: 10px;
	padding-left: 10px;
}
.k2vk.finalview .articulo figure .pvideo:hover{background-color: rgba(255,255,255,0.1);}
.k2vk.finalview .articulo figure .pvideo:hover i{
	box-shadow: 0 0 10px rgba(53,152,220,0.7);
	background-color: var(--col1);
	border-color: var(--col1);
}

.k2vk.finalview .articulo figure .pvideo{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}
.k2vk.finalview .articulo figure .video{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.k2vk.finalview .articulo figure iframe{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

a.rokbox{
	display: block;
	position: relative;
	height: 130px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

a.rokbox:before{
	content: "";
	background-image: linear-gradient(to right, var(--col1), #5cace3);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.9;
	display: none;
}

a.rokbox:after{
	content: "\f002";
	font-family: "FontAwesome" !important;
	color: var(--col6);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 1;
	font-size: 27px;
	display: none;
}

a.rokbox:hover:before, a.rokbox:hover:after{
	display: block;
}

.rokbox-caption{
	font-weight: bold;
	font-size: 12px !important;
}

.comentarios .avatar{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.2);
}

.comentarios .avatar.letras{
	background-color: var(--col1);
	text-align: center;
	line-height: 39px;
	color: var(--col6);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
}

.comentarios .comentario{
	margin-bottom: 5px;
	background-color: var(--col6);
	padding: 20px;
}

.comentarios .comentario .nombre{
	font-weight: bold;
	font-size: 13px;
	margin-right: 5px;
}

.comentarios .comentario .fecha{
	font-size: 13px;
	color: rgba(0,0,0,0.5);
}

.comentarios .comentario .info{margin-bottom: 5px;}
.comentarios .comentario .txt{
	font-size: 15px;
	line-height: 1.4;
}

.comentarios .comentario .respuestas{
	color: var(--col1);
	font-weight: bold;
	font-size: 13px;
	margin-top: 5px;
	cursor: pointer;
}

.comentarios .comentario .replys .respuestas{margin-bottom: 15px;}

.comentarios .comentario .respuestas:hover{
	text-decoration: underline;
}

.comentarios .comentario .replys .avatar, .comentarios .comentario .form .avatar{
	width: 24px;
	height: 24px;
}
.comentarios .comentario .replys .avatar.letras, .comentarios .comentario .form .avatar.letras{
	line-height: 24px;
	font-size: 10px;
}

.comentarios .comentario .replys .comentario:first-child{margin-top: 20px;}

.comentarios .comentario .replys .comentario{
	margin-top: 0;
	margin-bottom: 10px;
	padding: 0;
}
.comentarios .comentario .replys .replys .comentario{margin-top: 0;}

.comentarios .comentario .toolbar{margin: 10px 0;}
.comentarios .comentario .toolbar *{
	color: rgba(0,0,0,0.5);
	font-size: 13px;
}

.comentarios .comentario .toolbar > *{margin-right: 10px;}

.comentarios .comentario .toolbar .responder,
.comentarios .comentario .toolbar .voto{cursor: pointer;}

.comentarios .comentario .toolbar .responder:hover,
.comentarios .comentario .toolbar .voto:hover *{color: #000;}

.like.activo *{color: #8bc34a !important;}
.dislike.activo *{color: #f44336 !important;}

.comentarios .comentario form a.btn{
	padding: 5px 15px;
	font-size: 12px;
	text-transform: none;
}

.comentarios .comentario form .form{
	background-color: var(--col5);
	padding: 15px;
}

.comentarios .comentario form .form .btn{
	padding: 5px 15px;
	font-size: 12px;
	text-transform: none;
}

.comentarios .loading{margin-top: 15px; text-align: center; font-size: 35px;}
.comentarios .comentario .replys .loading{margin-top: 15px; margin-left: 55px; text-align: left; font-size: 15px;}
.comentarios .comentario .replys .replys .loading{margin-top: 0;}

.comentarios .listado > .tc > .btn{margin-top: 15px;}

.k2vk.finalview .tags ul{margin-top: 10px; filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));}
.k2vk.finalview .tags ul li{list-style: none; display: inline-block;}
.k2vk.finalview .tags ul li a{
	font-size: 12px;
	padding: 5px 10px;
	line-height: 1.2;
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
	background-color: var(--col6);
	color: var(--col4);
}

.k2vk.finalview .tags ul li a:hover{
	box-shadow: 0 0 10px rgba(53,152,220,0.7);
	background-color: var(--col1);
	color: var(--col6);
}

.toggle{cursor: pointer;}
.togglehijo{display: none;}
button{width: auto;}
.white{background-color: var(--col6);}
.comentarios #form_comentarios textarea{background-color: var(--col5);}
.comentarios textarea{font-weight: 500; font-size: 15px;}

form .radio input{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	cursor: pointer;
	opacity: 0;
}
form .radio input:checked + .radio_cnt{background-color: var(--col1);}
form .radio input:checked + .radio_cnt *{color: var(--col6); fill: var(--col6);}
form .radio .radio_cnt{
	background-color: var(--col6);
	padding: 10px;
}

form .radio .radio_cnt svg{
	height: 75px;
	margin: 0 auto;
	display: block;
}

form .radio .radio_cnt label{
	font-size: 14px;
	font-weight: 600;
}

form .radio:hover .radio_cnt{box-shadow: 0 0 10px rgba(0,0,0,0.1);}

.c3 .filtro .btn, .c3 .contactoanuncio .btn{display: block; text-align: center; width: 100%; border-radius: 0;}

.msg{
	background-color: var(--col6);
	padding: 60px;
	font-weight: bold;
	font-size: 26px;
}

.msg > i{
	color: #bdbdbd;
	font-size: 70px;
	margin-bottom: 10px;
}

.msg .btn{margin-top: 20px;}

.mancat .subcats .item a{
	display: block;
	background-color: var(--col6);
	text-align: center;
	padding: 30px;
}

.mancat .subcats .item a svg{
	max-height: 185px;
}

.mancat .subcats .item a:hover{
	background-color: var(--col1);
}
.mancat .subcats .item a:hover *{color: var(--col6); fill: var(--col6);}
.mancat .items .item a{
	display: block;
	background-color: var(--col6);
	text-align: center;
	padding: 30px;
}
.mancat .items .item a:hover{box-shadow: 0 0 30px rgba(0,0,0,0.1);}
.mancat .items .item a:hover h3{color: var(--col1);}

.k2vk.finalview.manuales .articulo .info img{max-width: 135px;}
.k2vk.finalview.manuales .articulo .info .tit{
	font-weight: bold;
	font-size: 32px;
	padding-left: 15px;
}

.alerta.warning{
	background-color: #ffc107;
}
.alerta > i{
	font-size: 40px;
	margin-bottom: 5px;
}

details summary{
	margin-top: 5px;
	transition: all 0.3s ease;
	color: var(--col6);
	font-weight: 600;
	padding: 10px 15px;
	background-color: var(--col0);
	cursor: pointer;
}

details .detalles{
	margin-bottom: 30px;
	padding: 30px;
	background-color: #e5e5e5;
}

#___ytsubscribe_0{
	max-width: 125px;
}

.btnsocial{
	line-height: 1;
	padding: 3px 8px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
}

.btnsocial i{font-size: inherit;}

.informar{
	padding: 10px;
	font-size: 13px;
	color: var(--col4);
}

.informar-form .explicacion{
	background: var(--col6);
	padding: 30px;
	margin-top: 1px;
	display: none;
}

.segunda_mano .paises a{
    display: block;
    background-color: var(--col6);
    text-align: center;
    padding: 15px;
}
.segunda_mano .paises svg{
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin: 5px;
}
.segunda_mano .paises .item a:hover{box-shadow: 0 0 30px rgba(0,0,0,0.1); position: relative; z-index: 2;}
.segunda_mano .paises .item a:hover h3{color: var(--col1);}
.segunda_mano .nuevo .bg{background-image: url("/images/estructura/bg_nuevo_anun.jpg");}
.segunda_mano .nuevo .btn{overflow: clip;}

form label{
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 10px;
	display: block;
}

form .dinamico{display: none;}

.fotos.swiper-container .swiper-zoom-container{display: none;}
.k2vk.finalview.segunda_mano .fotos .swiper-slide a{
	height: 530px;
	display: block;
	background-size: auto 100%;
	background-color: var(--col0);
}
.k2vk.finalview.segunda_mano .fotos .swiper-pagination {
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 30px 15px 15px 15px;
    pointer-events: none;
}

.k2vk.finalview.segunda_mano .fotos .swiper-pagination span{color: inherit; font-weight: inherit;}

.k2vk.finalview.segunda_mano .miniaturas{margin-top: 10px;}
.k2vk.finalview.segunda_mano .miniaturas .swiper-slide {
    height: 120px;
    width: calc(20% - 8px);
    cursor: pointer;
}

.k2vk.finalview.segunda_mano .miniaturas.ncount_3 .swiper-slide{width: calc(33% - 6px);}
.k2vk.finalview.segunda_mano .miniaturas.ncount_4 .swiper-slide{width: calc(25% - 8px);}

.k2vk.finalview.segunda_mano .miniaturas .swiper-slide-active{border: 5px solid var(--col1);}

.grey{background-color: var(--col5);}

.k2vk.finalview.segunda_mano .caracteristicas .item{border-radius: 12px;}
.k2vk.finalview.segunda_mano .caracteristicas .item .ico{
	background: var(--col6);
	padding: 15px;
	border-radius: 12px;
	margin-right: 15px;
	box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.k2vk.finalview.segunda_mano .caracteristicas .item svg{
	width: 20px;
	height: 20px;
	display: block;
}

.k2vk.finalview.segunda_mano .caracteristicas .item svg *{fill: var(--col0);}
.k2vk.finalview.segunda_mano .caracteristicas .item .value, .k2vk.finalview.segunda_mano .especificaciones .value{
	color: var(--col4);
	font-size: 13px;
	margin-top: 2px;
	font-weight: 600;
}

.k2vk.finalview.segunda_mano .caracteristicas .c33:nth-child(3n + 1){padding-left: 0;}
.k2vk.finalview.segunda_mano .especificaciones .c33:nth-child(3n + 1){padding-left: 0;}

.zonadrop{
	position: relative;
	background-color: rgba(0,0,0,0.05);
	min-height: 200px;
	padding: 30px;
}
.zonadrop input{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	opacity: 0;
	z-index: 1;
	color: red;
	font-weight: bold;
}

.zonadrop .galeria .it{
	padding: 5px;
	width: 20%;
}
.zonadrop .galeria .bg{
	height: 100px;
	position: relative;
}

.zonadrop .galeria .it i{
	color: white;
	background-color: #E84C3D;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 29px;
	display: block;
	border-radius: 50%;
	font-size: 14px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 999;
	cursor: pointer;
	opacity: 0.9;
}

.dropzone{
	width: 100%;
	min-height: 150px;
	border: 2px dashed rgba(0,0,0,0.3);
	background: rgba(0,0,0,0.05);
	background-image: url("/images/estructura/bg_dropzone.png");
	background-repeat: no-repeat;
	background-position: top 20px center;
	position: relative;
	z-index: 9;
}

.dropzone.dz-started, .dropzone.dz-startede{background-image: none;}
.dropzone.dz-started:before, .dropzone.dz-startede:before{
	content: "⊙ Arrastra las fotos para ordenarlas";
	display: block;
	font-size: 14px;
}

.dropzone.dz-startede .dz-default.dz-message{display: none;}

.dropzone .dz-preview > div{max-height: 200px;}

.dropzone .dz-details{display: none;}
.dropzone .dz-preview:hover .dz-image img{
	filter: none !important;
	transform: none !important;
}
.dropzone .dz-preview{margin: 4px;}
.dropzone .dz-preview .dz-image{border-radius: 0;}
.dropzone > .dz-default.dz-message{margin-top: 150px;}

.dropzone .dz-preview .dz-success-mark svg *{fill: #5cb85c;}
.dropzone .dz-preview .dz-error-mark svg *{fill: #e84c3d;}

.dropzone .dz-preview .dz-success-mark svg, .dropzone .dz-preview .dz-error-mark svg{
	background: #fff;
	border-radius: 50%;
	padding: 2px;
}

.dropzone .dz-remove i{
	color: inherit;
	font-size: inherit;
}

.dropzone > .dz-success:nth-child(2){
	position: relative;
}
.dropzone > .dz-success:nth-child(2):after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 2px solid #3598dc;
	z-index: 20;
	pointer-events: none;
	box-sizing: border-box;
	border-top-width: 20px;
}

.dropzone > .dz-success:nth-child(2):before{
	content: "Foto principal";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	color: #fff;
	font-size: 13px;
	z-index: 21;
	pointer-events: none;
	box-sizing: border-box;
}

.dz-error-message, .dz-error-message *{
	font-size: 12px;
	color: #fff;
	line-height: 1.2;
}
.dropzone .dz-preview .dz-error-message{top: 150px;}

.dropzone .dz-preview.dz-file-preview .dz-image{
	border-radius: 0;
}

span.wr{
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
    color: var(--col1);
}

input[type="number"] {
    -moz-appearance: textfield;
}

.final .malert {
    background-color: #e84c3d;
    padding: 10px 15px;
    margin-bottom: 10px;
    color: var(--col6);
}

.btn.disabled, .btn[disabled]{
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

.o1{order: 1;}
.o2{order: 2;}

.final .btn {
    display: inline;
}

.inputfile{
	text-align: center;
	border: 2px dashed rgba(0,0,0,0.3);
	background-color: rgba(0,0,0,0.05);
	padding: 30px;
	position: relative;
}

.inputfile input{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	cursor: pointer;
	opacity: 0;
}

.inputfile i{
	font-size: 35px;
	margin-bottom: 10px;
}

section.dashboard .item{
	text-align: center;
	height: 100%;
}

section.dashboard .item a, section.dashboard .item button{
	display: block;
	padding: 20px 10px;
	background-color: var(--col6);
	height: 100%;
	width: 100%;
	border: none;
	cursor: pointer;
	position: relative;
}

section.dashboard .item .fx{
	position: absolute;
	background-color: var(--col2);
	width: 20px;
	height: 20px;
	text-align: center;
	border-radius: 50%;
	font-weight: bold !important;
	line-height: 19px !important;
	top: 15px;
	right: 15px;
	font-size: 11px;
	color: var(--col6);
}

section.dashboard .item svg{
	width: 70px;
	height: 70px;
}

section.dashboard .item svg *{fill: var(--col0);}

section.dashboard .item .tit{
	font-weight: 600;
	margin-top: 10px;
	text-align: center;
	font-size: 14px;
}

section.dashboard .item a:hover, section.dashboard .item button:hover{background-color: var(--col1);}
section.dashboard .item a:hover .tit, section.dashboard .item button:hover .tit{color: var(--col6);}
section.dashboard .item a:hover svg *, section.dashboard .item button:hover svg *{fill: var(--col6);}

.customlogins svg{
	width: 30px;
	height: 30px;
	display: block;
}

.customlogins .rel{overflow: hidden;}
.customlogins .abs, .customlogins .rel > div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.0001;
}

.customlogins > .f > div{
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(0,0,0,0.2);
}

.customlogins > .f > div:last-child{margin-right: 0; padding-right: 0; border: none;}
.customlogins > div{font-size: 14px;}

.com_users .control-group.field-spacer{display: none;}
.com_users .campos .control-group{width: 100%;}
.com_users form button{width: 100%; border-radius: 0;}
.com_users form .small{
	font-size: 12px;
	color: rgba(0,0,0,0.5);
	font-style: italic;
}

.com_users form a.small:hover{
	text-decoration: underline;
}

.com_users form .actions{font-size: 14px;}
.com_users form .actions a{
	text-decoration: underline;
	font-weight: bold;
}
.com_users form .control-group{margin: 10px 0;}

section.com_users .avatar{
	width: 100px;
	height: 100px;
	border-radius: 50%;
	margin: 10px auto;
	background-color: rgba(0,0,0,0.2);
}

section.com_users .avatar.letras{
	background-color: var(--col1);
	text-align: center;
	line-height: 100px;
	color: var(--col6);
	text-transform: uppercase;
	font-size: 40px;
}
.hidden{display: none; visibility: hidden;}

body.registration section.suscripcion,
body.profile section.suscripcion,
body.no-suscription section.suscripcion,
body.login section.suscripcion{display: none;}

body.registration footer,
body.profile footer,
body.no-footer footer,
body.login footer{display: none;}

.pinput{position: relative;}
.pinput svg{
	position: absolute;
	top: 0;
	left: 0;
	width: 49px;
	height: 100%;
	background-color: var(--col3);
	padding: 17px;
}
.pinput svg *{fill: var(--col0);}
.pinput input{padding-left: 70px !important;}

.popover {
    display: none !important;
}

*[disabled]{
	background: transparent !important;
	box-shadow: 0 0 0px 2px var(--col3) inset !important;
	cursor: no-drop;
}

.k2vk.cat.juegos .items .item a{
	display: block;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
}

.k2vk.cat.juegos .items .item img{display: block;}

.k2vk.cat.juegos .items .item a .tit{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 60px 15px 15px 15px;
	text-align: center;
	font-weight: bold;
	color: #fff;
	background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
	opacity: 0;
	bottom: -80px;
	transition: all 0.3s ease-in-out;
}

.k2vk.cat.juegos .items .item a:hover .tit{opacity: 1; bottom: 0;}
#xmap ul{
	margin-left: 15px;
	margin-bottom: 20px;
}

#xmap ul li img{display: none;}
#xmap ul li{margin: 3px 0;}
#xmap ul li a{
	color: var(--col0);
	font-size: 14px;
}
#xmap ul li a:hover{color: var(--col1);}

.datico .ico svg{
	width: 50px;
	margin-right: 15px;
	margin-top: -3px;
}

.datico .ico i{
	width: 50px;
	height: 50px;
	text-align: center;
	margin-right: 15px;
	margin-top: -3px;
	border-radius: 50%;
	color: var(--col6);
	line-height: 48px;
	font-size: 24px;
}

.datico .desc{
	font-size: 15px;
	line-height: 1.4;
	color: var(--col4);
}

.br100{border-radius: 50%;}

.servicios .item{
	height: 100%;
	background-color: var(--col6);
	position: relative;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.servicios .item .desc {
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.4;
  color: var(--col4);
}

.servicios .item .ico svg{
	width: 40px;
	height: 40px;
	fill: var(--col1);
	margin-bottom: 10px;
}

#unsubpage{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 100px 30px;
}
#unsubpage .unsubsurveytext{margin-bottom: 10px;}
#unsubpage textarea{width: 100% !important;}
#unsubpage input[type="submit"]{
	border: none;
	box-shadow: none;
	display: inline-block;
	border-radius: 200px;
	text-decoration: none;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
	padding: 15px 25px;
	transition:all 0.3s ease-out;
	-webkit-trasition:all 0.3s ease-out;
	position: relative;
	z-index: 1;
	overflow: hidden;
	height: auto;
	line-height: 1.2;
	text-shadow: none;
	background: var(--col1);
	color: var(--col6) !important;
	width: auto;
}

body.filtrando{overflow: hidden;}
.pfiltro.open{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow-y: auto;
	padding: 30px;
	z-index: 100;
	background-color: var(--col5);
}
.pfiltro .fa-close{
	background-color: var(--col0);
	color: var(--col6);
	width: 35px;
	height: 35px;
	line-height: 35px;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
}

.vkform .acysubscribe{display: none;}
.no-footer footer, .no-footer .suscripcion{display: none;}

section.suscribete .h1{
	font-weight: bold;
	font-size: 60px;
}
section.suscribete .precio{
	font-weight: bold;
	font-size: 50px;
}
section.suscribete .precio span{
	font-weight: inherit;
	font-size: 0.6em;
}
section.suscribete .ventajas{
	border-right: 1px solid rgba(0,0,0,0.2);
}
section.suscribete .ventajas .ico svg{
	width: 70px;
	aspect-ratio: 1/1;
	margin-right: 30px;
}
section.suscribete .ventajas .item .fa{
	background-color: var(--col1);
	color: var(--col6);
	aspect-ratio: 1/1;
	width: 35px;
	border-radius: 50%;
	margin-right: 10px;
}

#os_form .osm-payment-terms,
#os_form .form-actions,
#os_form #field_state,
#profile-page .form-actions,
#os_form .osm-terms-and-conditions-container{grid-column: 1 / -1;}

#os_form #osm-regular-amount-container,
#os_form #payment_method_container,
#os_form #regular_tax_amount_container,
#os_form #regular_gross_amount_container, 
#os_form #field_email,
#os_form .osm-payment-terms{display: none;}

#os_form .formError{
	position: relative !important;
	top: auto !important;
	left: auto !important;
	margin: 0 !important;
}
#os_form .formError .formErrorContent{
	border: none;
	box-shadow: none;
	border-radius: 0;
}
#os_form .formError .formErrorArrow{display: none;}
.osm-container{
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	padding: 100px 30px;
}
table.os_table td.title_cell{width: auto;}

.nav-tabs{
	display: flex;
	background-color: rgba(0,0,0,0.05);
  	padding: 3px;
	margin-bottom: 30px;
}
.nav-tabs li a{
	font-size: 12px;
	padding: 7px 14px;
	display: block;
	color: var(--col0);
}
.nav-tabs li.active a{background-color: var(--col6);}
.tab-content > .tab-pane{display: none;}
.tab-content > .tab-pane.active{display: block;}


#my-subscriptions-page .estado{
	display: block;
	text-align: center;
	color: #fff;
	border-radius: 100px;
	font-weight: bold;
	font-size: 15px;
	padding: 15px 25px;
	width: 190px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#my-subscriptions-page .estado:before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right,rgba(255,255,255,0),rgba(255,255,255,0.2),rgba(255,255,255,0.2),rgba(255,255,255,0));
	background-size: 300% 100%;
	z-index: -1;
}

#my-subscriptions-page .dat *{
	font-size: 13px;
	color: var(--col4);
}

#subscription-history-page table{width: 100%;}
#subscription-history-page table tr > *:first-child{display: none;}
#subscription-history-page table td, #subscription-history-page table th{
	padding: 5px 10px;
	background-color: rgba(0,0,0,0.05);
	border: 2px solid transparent;
	font-size: 15px;
	text-align: left;
}
#subscription-history-page table th{background-color: var(--col0); color: var(--col6); font-weight: bold;}

.fancybox-button svg path{fill: white;}
.f-button svg{stroke: white !important;}
.fancybox-infobar span, .fancybox__infobar, .fancybox__infobar span{color: white;}
.fancybox__infobar{display: none;}

#chatgpt_assistant_button{display: none !important;}
#chatgpt_assistant_interface.chat-interface{
	display: block !important;
	width: 100%;
	max-width: none;
	border: none;
	background-color: #efeae2;
	box-shadow: none;
	background-image: url('/images/estructura/bg_chat.png');
	border: 1px solid rgba(0,0,0,0.1);
	border-radius: 0 0 12px 12px;
	height: calc(100dvh - 227px);
}
.mekabot .chatgpt_assistant_wrapper .conversation-container .pending-message, .mekabot .chatgpt_assistant_wrapper .conversation-container .received-message{
	background-color: white;
	border-radius: 0 7px 7px 7px;
	position: relative;
}
.mekabot .chatgpt_assistant_wrapper .conversation-container .sent-message{background-color: var(--col1);}
.mekabot .chatgpt_assistant_wrapper .conversation-container .message{
	box-shadow: 0 1px .5px rgba(0,0,0,.13);
	padding: 10px;
	font-size: 15px;
  	line-height: 1.5;
	white-space: break-spaces;
}
.mekabot .chatgpt_assistant_wrapper .conversation-container{padding: 20px;}
.mekabot .chatgpt_assistant_wrapper .input-container{
	background-color: var(--col3);
	padding: 15px;
	box-shadow: 0 0 4px rgba(0,0,0,.1);
}
.mekabot .chatgpt_assistant_wrapper .input-container > input{
	border: none;
	border-radius: 8px;
	background-color: white;
	font-size: inherit;
	padding: 10px;
	flex: 1;
}
.mekabot .chatgpt_assistant_wrapper .input-container .btn-primary{
	background-color: var(--col1);
	color: var(--col6);
	border-radius: 8px;
}
.mekabot .cabecera{
	background-color: var(--col0);
	border-radius: 12px 12px 0 0;
}
.mekabot .cabecera img{
	display: block;
	width: 60px;
	border-radius: 50%;
}
.mekabot .cabecera .estado{
	font-size: 14px;
	margin-top: 3px;
	color: var(--col1);
}

.mekabot-info .white{border-radius: 30px;}

/*------------- SMF -------------*/
	body.smf #wrapper{
		box-shadow: none;
		border: none;
		background-color: transparent;
		width: 100%;
		max-width: 1260px;
		margin: 0 auto;
	}

	body.smf #main_content_section{padding: 0;}

	.board > a{
	display: block;
	background-color: var(--col6);
	position: relative;
	margin-bottom: 5px;
	text-decoration: none !important;
	}
	.board > a:hover{
		box-shadow: 0 0 30px rgba(0,0,0,0.1);
		z-index: 1;
	}

	.board > a:hover .tit{color: var(--col1);}

	.board > a .desc{
		margin-top: 5px;
		font-size: 15px;
		line-height: 1.4;
		color: var(--col4);
	}

	.board .ico{padding: 30px 0 0 30px;}
	.board .ico svg, .board .ico img{
		width: 60px;
		height: 60px;
		fill: var(--col0);
	}

	.board .ico svg{padding: 5px;}

	.boards .subcategoria{margin-bottom: 60px;}
	.boards .subcategoria > h2{margin-bottom: 15px;}
	.boards .subcategoria:last-child{margin-bottom: 0;}

	.board .dat{margin-top: 10px;}
	.board .dat > .f > div{
		margin-right: 15px;
		border-right: 1px solid #ddd;
		padding-right: 15px;
	}
	.board .dat > .f > div:last-child{margin-right: 0; padding-right: 0; border: none;}
	.board .dat *{
		font-size: 13px;
		color: var(--col4);
	}

	.board .dat .new *{color: var(--col1);}
	.board .dat .new{
		color: var(--col1);
		font-weight: bold;
	}

	.board .mensajes_nuevos{
		background-color: var(--col1);
		color: var(--col6);
		font-size: 12px;
		padding: 5px 10px;
		line-height: 1.2;
		font-weight: 600;
		margin-left: 5px;
		display: inline-block;
		vertical-align: bottom;
	}

	.smf_recientes .item > a{
		background-color: var(--col6);
		display: block;
		margin-bottom: 5px;
		padding: 15px;
		text-decoration: none;
		position: relative;
	}

	.smf_recientes .item > a:hover{
		box-shadow: 0 0 30px rgba(0,0,0,0.1);
		z-index: 2;
	}
	.smf_recientes .item .h6{margin-bottom: 3px;}
	.smf_recientes .item > a:hover .h6{color: var(--col1);}
	.smf_recientes .item .minidat *{
		font-size: 11px;
		color: var(--col4);
	}
	.smf_recientes .item .fecha{
		font-size: 11px;
		margin-bottom: 5px;
	}

	.smf_recientes .item .minidat > div{
		margin-right: 10px;
		border-right: 1px solid #ddd;
		padding-right: 10px;
	}
	.smf_recientes .item .minidat > div:last-child{margin-right: 0; padding-right: 0; border-right: none;}
	.board_icon, .info, .board_stats, .lastpost{align-self: auto;}

	.smfpagination > .pages{display: none;}
	.smfpagination > *{
		margin: 1px;
		min-width: 35px;
		min-height: 35px;
		line-height: 35px;
		background-color: var(--col6);
		font-weight: bold;
		text-align: center;
		display: inline-block;
		font-size: 14px;
		color: var(--col4);
	}
	.smfpagination > *:hover{
		background-color: var(--col0);
		color: var(--col6);
	}
	.smfpagination .current_page{
		background-color: var(--col1);
		color: var(--col6);
	}
	.smfpagination .current_page:after, .smfpagination .current_page:before{content: none;}
	.smfpagination > a > span.previous_page:before{content: "< Anterior";}
	.smfpagination > a > span.next_page:before{content: "Siguiente >";}
	.smfpagination > a > span:before{
		color: var(--col4);
		background: none;
		width: auto;
		padding: 0 15px;
		line-height: 1;
		font-weight: bold;
		font-size: 14px;
	}
	.smfpagination > a:hover > span:before{
		background-color: var(--col0);
		color: var(--col6);
	}

	.botones .sutiles > *{
		margin-right: 15px;
		border-right: 1px solid #ddd;
		padding-right: 15px;
		font-size: 13px;
		color: var(--col4);
		display: inline-block;
	}
	.botones .sutiles > *:hover{color: var(--col0);}
	.botones .sutiles > *:last-child{margin-right: 0; padding-right: 0; border-right: none;}

	.botones .sutiles .padre{
		position: relative;
		cursor: pointer;
	}
	.botones .sutiles .padre:hover .hijos{display: block;}
	.botones .sutiles .padre .hijos{
		position: absolute;
		top: 30px;
		left: 50%;
		background: var(--col6);
		padding: 10px;
		transform: translateX(-50%);
		box-shadow: 0 0 30px rgba(0,0,0,0.2);
		display: none;
		z-index: 5;
	}
	.botones .sutiles .padre .hijos i{color: var(--col6);}

	.botones .sutiles .padre .hijos:before{
		content: "";
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
		border-bottom: 10px solid var(--col6);
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%) translateY(-100%);
	}
	.botones .sutiles .padre .hijos:after{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 20px;
		z-index: 2;
		transform: translateY(-100%);
	}

	.botones .sutiles .padre .hijos ul li{display: block;}
	.botones .sutiles .padre .hijos ul li > *{
		display: block;
		white-space: nowrap;
		margin: 10px;
		font-size: 13px;
		color: var(--col4);
	}
	.botones .sutiles .padre .hijos ul li > *:hover{color: var(--col0);}

	.f > .c7 + .google-auto-placed{order: 99;}

	body.smf .alert{
		padding: inherit;
		background-color: inherit;
		border: inherit;
		position: static;
		box-shadow: inherit;
		text-align: inherit;
	}
	.smf #forumposts{margin: 0;}


	.smf .k2vk.finalview.board .items .item{
		padding: 30px;
		background-color: var(--col6);
		margin-bottom: 5px;
	}
	.smf .k2vk.finalview.board .items .item .pavatar{position: relative;}
	.smf .k2vk.finalview.board .items .item .avatar{margin: 10px auto;}
	.smf .k2vk.finalview.board .items .item .online .avatar{
		animation: 1s online ease-out infinite;
	}


	@keyframes online {
	from {
		box-shadow: 0 0 0 0px rgba(139,195,74,1);
	}
	to {
		box-shadow: 0 0 0 10px rgba(139,195,74,0);
	}
	}

	.smf .k2vk.finalview.board .items .item .online .estado{
		position: absolute;
		bottom: -4px;
		left: 0;
		width: 100%;
		line-height: 1;
	}

	.smf .k2vk.finalview.board .items .item .online .estado span{
		background-color: rgb(139, 195, 74);
		font-size: 9px;
		text-transform: uppercase;
		color: var(--col6);
		font-weight: bold;
		line-height: 1;
		padding: 1px 4px;
		transform: translateX(-50%);
		border-radius: 3px;
	}

	.smf .k2vk.finalview.board .items .item .nombre{font-weight: bold;}
	.smf .k2vk.finalview.board .items .item .usuario{width: 120px;}
	.smf .k2vk.finalview.board .items .item .usuario a{display: block;}
	.smf .k2vk.finalview.board .items .item .usuario .nivel img{width: 10px;}

	.smf .k2vk.finalview.board .items .item .usuario .grupo,
	.smf .k2vk.finalview.board .items .item .usuario .mensajes{color: var(--col4); font-size: 13px;}

	.smf .k2vk.finalview.board .items .item .mensaje{padding-left: 30px;}
	.smf .k2vk.finalview.board .items .item .mensaje .fecha{margin-bottom: 10px;}
	.smf .k2vk.finalview.board .items .item .mensaje .fecha *{
		font-size: 13px;
		color: rgba(0,0,0,0.5);
	}

	.smf .k2vk.finalview.board .items .item .mensaje .fecha .modificado{
		border-left: 1px solid rgba(0,0,0,0.3);
		margin-left: 10px;
		padding-left: 10px;
		font-style: italic;
	}
	.smf .k2vk.finalview.board .items .item .mensaje .txt{
		font-size: 15px;
		line-height: 1.4;
		padding: 0;
		margin: 0;
		border: none;
		box-shadow: none;
		min-height: 0;
		margin-bottom: 30px;
	}
	.smf .k2vk.finalview.board .items .item .mensaje .cuerpo > *:last-child{margin-bottom: 0; padding-bottom: 0;}

	.smf .k2vk.finalview.board .items .item .mensaje .citar{
		margin-left: 15px !important;
		border-left: 1px solid #ddd !important;
		padding-left: 15px !important;
	}

	.mensaje .toolbar{
		border-top: 1px solid #ddd;
		padding: 15px 0;
	}

	.smf .k2vk.finalview.board .items .item .mensaje .firma{
		border-top: 1px solid #ddd;
		padding: 15px 0;
		font-size: 12px;
		color: rgba(0,0,0,0.5);
	}

	.smf blockquote{
		background-color: var(--col5);
		margin: 0;
		border: none;
		padding: 15px;
		font-size: 13px;
		border-left: 3px solid rgba(0,0,0,0.2);
		margin-bottom: 5px;
	}

	.smf blockquote blockquote{background-color: rgba(0,0,0,0.05);}

	.smf blockquote cite{
		border: none;
		margin: 0;
		font-size: inherit;
		background-color: rgba(0,0,0,0.1);
		padding: 10px;
		transform: translate(-15px,-15px);
		width: calc(100% + 30px);
	}

	.smf blockquote cite::before{
		content: "\f10d";
		font-family: "FontAwesome" !important;
		font-size: inherit;
		color: var(--col4);
		margin-right: 5px;
	}
	.smf blockquote cite a{
		color: var(--col0);
		font-weight: bold;
		font-style: normal;
	}

	.smf .sceditor-container{
		border: none;
		border-radius: 0;
	}

	.smf .sceditor-container iframe, .smf .sceditor-container textarea{
		padding: 15px;
		font-size: 15px;
		line-height: 1.4;
		font-weight: 300;
	}
	.smf .sceditor-button:hover, .smf .sceditor-button:active, .smf .sceditor-button.active{box-shadow: none;}

	.smf div.sceditor-toolbar{background-color: transparent;}

	.smf div.sceditor-toolbar{
		padding: 10px;
		margin: 0;
		border: none;
		background: #ddd;
		border-radius: 0;
	}

	.smf div.sceditor-group{
		background-color: transparent;
		border-radius: 0;
		margin-right: 15px;
		border-right: 1px solid rgba(0,0,0,0.2);
		padding-right: 15px;
		border-bottom: 0;
	}

	.smf div.sceditor-group:nth-last-child(2){margin-right: 0; padding-right: 0; border: none;}
	.smf div.sceditor-insertemoticon{display: none;}
	.smf img.smiley{vertical-align: sub;}
	.smf #post_confirm_buttons .post_button_container{margin: 0 auto;}

	.smf .anteriorsiguiente a:first-child:before{
		content: "\f104";
		font-family: "FontAwesome" !important;
		margin-right: 5px;
	}

	.smf .anteriorsiguiente a:last-child:after{
		content: "\f105";
		font-family: "FontAwesome" !important;
		margin-left: 5px;
	}

	.smf .anteriorsiguiente a{
		font-size: 13px;
		color: var(--col4);
	}
	.smf .anteriorsiguiente a:hover{color: var(--col0);}

	.smf .sceditor-button-source div{background-position: 0 -576px;}

	.smf #post_header{padding: 6px 0;}
	.smf #post_header .pf_icon, .smf #post_header .pf_icon, .smf #post_header .clear.pf_subject{display: none;}
	.smf #post_header dd.pf_subject{float: none; width: 100%;}
	.smf ul.post_options{margin: 0;}
	.smf #attachment_previews{border: none; padding: 0 10px 10px 10px; display: flex !important;}
	.smf #postAttachment2{border: none; padding: 0;}
	.smf #postAttachment2 .fallback{margin: 0;}
	.smf #postAttachment2 .smalltext{margin: 0;}
	.smf #attachment_upload{
		padding: 20px;
		margin: 0;
		border: none;
		position: relative;
	}

	.smf #attachment_upload i.fa-paperclip{
		font-size: 30px;
		margin-right: 10px;
		vertical-align: middle;
	}

	.smf #post_area .adjuntos{
		background-color: var(--col5);
		border: 10px solid var(--col6);
	}

	.smf .adjuntos .fileinput-button{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
	}

	.smf #attach_upload_all{position: relative; z-index: 10; margin-top: 10px;}
	.smf #attach_cancel_all{display: none !important;}

	.smf #attachment_previews .dz-image-preview{
		margin: 5px;
		padding: 5px;
		border: none;
		background-color: var(--col6);
		position: relative;
		1px solid rgba(0,0,0,0.1)
	}

	.smf #attachment_previews .attachment_info{width: auto; overflow: hidden;}
	.smf #attachment_previews .attach-ui{min-height: 0; padding: 0; float: none;}
	.smf #attachment_previews .attach-ui .cancel{
		position: absolute;
		top: -5px;
		right: -5px;
		background-color: var(--col0);
		color: var(--col6);
		width: 20px;
		height: 20px;
		text-align: center;
		line-height: 19px;
		border-radius: 50%;
		font-size: 9px;
	}

	.smf #attachment_previews .attach-ui .insertBBC{display: none;}

	.smf .adjuntos .limites{display: none;}
	.smf .adjuntos .attached_BBC{display: none !important;}
	.smf ul.post_options li{width: 100%; float: none; margin: 5px 0;}
	.infobox::before{background: none;}

	.smf.action_profile #wrapper, .smf.action_pm #wrapper{
		padding: 100px 30px;
	}

	.smf div.cat_bar{
		background: var(--col0);
		border: none;
		box-shadow: none;
		border-radius: 0;
		text-shadow: none;
	}

	.smf .catbg, .smf .catbg span{color: var(--col6);}

	.smf .roundframe, .smf .information, .smf .windowbg{
		padding: 30px;
		background: var(--col6);
		border-radius: 0;
		border: none;
		box-shadow: none;
	}

	.smf form input[type="text"],
	.smf form input[type="email"],
	.smf form input[type="password"],
	.smf form input[type="number"],
	.smf form select,
	.smf form textarea{
		height: auto;
		line-height: inherit;
		box-shadow: none;
		border-radius: 0;
	}

	.smf form input[type="text"]:hover,
	.smf form input[type="email"]:hover,
	.smf form input[type="password"]:hover,
	.smf form input[type="number"]:hover,
	.smf form select:hover,
	.smf form textarea:hover{
		box-shadow: 0 0 10px rgba(0,0,0,0.1);
	}

	.smf .roundframe input[type="text"],
	.smf .roundframe input[type="email"],
	.smf .roundframe input[type="password"],
	.smf .roundframe input[type="number"],
	.smf .roundframe select,
	.smf .roundframe textarea,
	.smf .information input[type="text"],
	.smf .information input[type="email"],
	.smf .information input[type="password"],
	.smf .information input[type="number"],
	.smf .information select,
	.smf .information textarea,
	.smf .windowbg input[type="text"],
	.smf .windowbg input[type="email"],
	.smf .windowbg input[type="password"],
	.smf .windowbg input[type="number"],
	.smf .windowbg select,
	.smf .windowbg textarea
	{
		padding: 5px;
		border-radius: 0;
		border: 1px solid rgba(0,0,0,0.2);
		box-shadow: none !important;
	}

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

		.smf .generic_menu{margin-top: 30px;}
		.smf .dropmenu a{
			border-radius: 0 !important;
			text-shadow: none !important;
			box-shadow: none !important;
			color: var(--col4) !important;
			margin: 0 !important;
			padding: 0 !important;
			background: transparent !important;
			border: none !important;
		}

		.smf .dropmenu *{line-height: 1.2 !important;}

		.smf .dropmenu li:hover > a,
		.smf .dropmenu li > *:hover{color: var(--col0) !important;}

		.smf .dropmenu .subsections > a:after{
			content: "\f0d7";
			font-family: "FontAwesome" !important;
			margin-left: 5px;
		}

		.smf .dropmenu .subsections .subsections > a:after{
			content: "\f0da";
			position: static;
		}

		.smf .dropmenu li{background: transparent !important;}
		.smf .dropmenu li li{border: none !important; font-size: inherit !important;}
		.smf .dropmenu > li{
			margin-right: 15px;
			border-right: 1px solid #ddd;
			padding-right: 15px;
			font-size: 13px;
			color: var(--col4);
			display: inline-block;
			position: relative;
		}

		.smf .dropmenu > li:last-child{margin-right: 0; border-right: 0; padding-right: 0;}

		.smf .dropmenu li ul{
			top: 30px;
			border-radius: 0 !important;
			border: none !important;
			background: var(--col6);
			padding: 10px;
			box-shadow: 0 0 30px rgba(0,0,0,0.2);
		}
		.smf .dropmenu li ul li ul{
			top: auto;
			transform: translateY(-15px);
		}
		.smf .dropmenu li ul a{
			margin: 10px !important;
		}


		.smf .dropmenu > li > ul::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 20px;
		z-index: 2;
		transform: translateY(-100%);
		}
		.smf .dropmenu > li > ul::before {
		content: "";
		border-right: 10px solid transparent;
		border-left: 10px solid transparent;
		border-bottom: 10px solid var(--col6);
		position: absolute;
		top: 0;
		left: 30px;
		transform: translateX(-50%) translateY(-100%);
		}

		.smf .dropmenu > li > ul > li > ul::before {
		content: "";
		border-right: 10px solid var(--col6);
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		position: absolute;
		top: 12px;
		left: 0;
		transform: translateX(-100%);
		}
	}

	.title_bar {
	border: none;
	background-color: rgba(0,0,0,0.1);
	}

	.generic_bar .bar, .progress_bar .bar{background: var(--col1);}

	body.action_sitemap #main_content_section{
		width: 100%;
		max-width: 1260px;
		margin: 0 auto;
		padding: 100px 30px;
	}

	#sitemap_list tr{
		border-bottom: 3px solid var(--col5);
	}
	#sitemap_list tr:hover{background-color: var(--col6);}
	#sitemap_list tr a{background-color: transparent !important; box-shadow: none !important; margin: 0; padding: 5px;}
	#sitemap_list tr a:hover{text-decoration: underline !important;}

	body.action_sitemap .buttonlist ul li{display: inline-block; margin-right: 15px;}
/*--------------------------*/