/*
	Theme Name: BebeAway 2021
	Theme URI: https://wwww.loygorri.com
	Description: HTML5 Blank WordPress Theme
	Version: 2.1
	Author: https://loygorri.com
	Author URI: https://loygorri.com
	Tags: Blank, HTML5, CSS3
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	/*font-size:62.5%;*/
}
body {
	font-family: 'Raleway', sans-serif;
	/*font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
	color:#444;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width:1280px;
	width:95%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {

}
/* logo */
.logo {

}
.logo-img {

}
/* nav */
.nav {

}
/* sidebar */
.sidebar {

}
/* footer */
.footer {

}

/*------------------------------------*\
    PAGES
\*------------------------------------*/



/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/



/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

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

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

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

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}

/*------------------------------------*\
    BEBEAWAY
\*------------------------------------*/

body{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 100vh;
    position: relative;
    z-index: 1;
}

hr{
	display: none;
}

.centrado{
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.header{
	position: sticky;
	top: 0px;
    z-index: 1;
}

.header .main-nav{
	background-color: rgba(0,0,0,0.3);
    width: 100vw;
    min-height: 80px;
    overflow: hidden;
    position: absolute;
    left: 0px;
    top: 0px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    visibility: visible;
    padding-bottom: 10px;
    padding-top: 10px;
    color: rgba(255,255,255,1); /* BLANCO */
    transition: all .3s ease-in-out;
}

.abajo .header .main-nav{
    background-color:rgba(154,207,203,1.00); /* VERDE */
}

body:not(.home) .header .main-nav{
	background-color:rgba(154,207,203,1.00); /* VERDE */
}


.header .centrado > .home_url{
	display: flex;
	align-items: center;
	justify-content: center;
	max-height: 60px;
}

.header .centrado .home_url img{
	min-height: 60px;
	min-width: 50px;
}

.header .main-nav .centrado{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header .main-nav .centrado > .categorias{
    display: flex;
    flex-direction: row;
    flex-grow: 2;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    position: absolute;
    z-index: 1;
    left: calc(50% - 210px);
    /*width: 100%;*/
    width: 420px;
    top:  -120px;
}

.abajo .header .main-nav .centrado > .categorias{
    top: 10px;
}

.header .main-nav .centrado > .categorias ul{
    display: flex;
    flex-direction: row;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.header .main-nav .centrado > .categorias ul li {
    text-align: center;
    padding: 0px 5px 10px;
}

.header .main-nav .centrado > .categorias ul li a {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(255,255,255,1);
    border-radius: 60px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: rgba(74,74,74,1);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center center;
    margin: auto;
    padding: 10px;
    transition: all .3s ease-in-out;
    position: relative;
}

.header .main-nav .centrado > .categorias ul li a:hover,
.header .main-nav .centrado > .categorias ul li.current-menu-item a,
.header .main-nav .centrado > .categorias ul li.current-post-ancestor a
 {
    background-color: rgba(255,145,145,1.00); /* ROSA */
}

.header .main-nav .centrado > .categorias ul li a span {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: -100px;
    top: 0px;
    transition: all .3s ease-in-out;
}

.header .main-nav .centrado > .categorias ul li a:hover span {
    left: 0px;
}

.header .main-nav .centrado > .categorias ul li a span:last-child {
    width: 60px;
    height: 60px;
    display: flex;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .3s ease-in-out;
}

.header .main-nav .centrado > .categorias ul li a:hover span:last-child {
    left: -100px;
}


.header .main-nav .centrado p{
	padding: 0px;
	margin: 0px;
	flex-grow: 2;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: rgba(255,255,255,1); /* BLANCO */
	padding-left: 10px;
	padding-right: 10px;
    transition: all .3s ease-in-out;
    opacity: 1;
}

.header .main-nav .centrado p span {
    white-space: nowrap;
}

.header .main-nav .centrado p span:after {
    content: " | ";
    padding-right: 5px;
}

.header .main-nav .centrado p span:last-of-type:after {
    content: "";
    padding-right: 0px;
}

.header .main-nav .centrado p a{
    font-weight: 700;
    transition: all .3s ease-in-out;
	color: rgba(255,255,255,1); /* BLANCO */
}

.header .main-nav .centrado p img,
.language-menu,
.burger-menu{
    opacity: 1;
	filter: invert();
    transition: all .3s ease-in-out;
}

.abajo .header .main-nav .centrado p{
    /*display: none;*/
    color: rgba(255,255,255,1); /* BLANCO */
    opacity: 0;
}

.abajo .header .main-nav .centrado p span{}

.abajo .header .main-nav .centrado p img{
    opacity: 0;
}

.abajo .header .main-nav .centrado p a{
    color: rgba(255,255,255,0); /* BLANCO */
}

.language-menu{
	margin-right: 15px;
}

.language-menu,
.burger-menu{
	cursor: pointer;
}

.header .main-nav .centrado p span{}

.header .main-nav .centrado .menu-principal{
    list-style-type: none;
    margin: 0px;
	display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: fixed;
    z-index: 2;
    top: 0px;
    right: -300px;
    height: 100vh;
    width: 300px;
    background-color: rgba(255,145,145,1.00);
    transition: all .3s ease-in-out;
}

.header .main-nav .centrado .menu-principal .home_url{
    margin: 20px;
    max-width: 75px;
}

.header .main-nav .centrado .menu-principal .home_url img{
    width: 100%;
}

.header .main-nav .centrado .menu-principal ul{
    list-style-type: none;
    margin: 0px;
    padding: 0px;
    width: 100%;
}

.header .main-nav .centrado .menu-principal ul li{}

.header .main-nav .centrado .menu-principal ul > li.visible > a{
    background-color: rgba(255,255,255,0.25);
}

.header .main-nav .centrado .menu-principal > ul > li > a,
.header .main-nav .centrado .menu-principal > ul > li > ul > li > a{
    color: rgba(255,255,255,1);
    width: 100%;
    display: block;
    padding: 10px;
    padding-right: 30px;
    transition: all .3s ease-in-out;
    text-align: right;
    cursor: pointer;
    font-weight: 700;
}

.header .main-nav .centrado .menu-principal > ul > li > a:hover,
.header .main-nav .centrado .menu-principal > ul > li > ul > li > a:hover{
    background-color: rgba(255,255,255,1);
    color: rgba(74,74,74,1);
}

.header .main-nav .centrado .menu-principal ul.sub-menu{
    display: none;
}

.header .main-nav .centrado .menu-principal ul.sub-menu.visible{
    background-color: rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}


.header .main-nav .centrado .menu-principal ul.social-media-pie{
    display: flex;
    padding: 20px;
    padding-top: 0px;
    width: 100%;
    justify-content: flex-end;
    align-items: flex-end;
}

.header .main-nav .centrado .menu-principal ul.social-media-pie li{
    border-top: rgba(255,255,255,1);
    border-top: 1px solid rgba(255,255,255,1);
   /* width: calc(100% / 3);*/
}

.header .main-nav .centrado .menu-principal ul.social-media-pie li a{
    padding-right: 10px;
}

.header .main-nav .centrado .menu-principal ul.social-media-pie span{
    display: none;
}

.header .main-nav .centrado .menu-principal ul.social-media-pie img{
    filter: invert();
}

.header .main-nav .centrado .menu-principal.visible{
    right: 0px;
}

.cerrar-menu{
    position: fixed;
    top: 0px;
    left: -100vw;
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.cerrar-menu.visible {
    left: 0vw;  
}

/**/

main{
	display: flex;
	flex-direction: column;
	flex-grow: 2;
}

main .presentacion{
	min-height: 100vh;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

main .presentacion .esfera{
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-align: center;
	align-items: center;
	flex-grow: 2;
}

main .presentacion .esfera .logo{
	background-color: rgba(255,255,255,1); /* BLANCO*/
	border-radius: 100%;
	width: 300px;
	height: 300px;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .presentacion .esfera .logo a{
	width: 70%;
	height: 70%;
	display: flex;
	justify-content: center;
	align-items: center;
}

main .presentacion .esfera .logo a img{
	width: 100%;
	height: 100%;

}

main .presentacion .esfera .logo span{
	display: none;
}

main .presentacion p{
	padding: 0px;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: flex-end;
	flex-grow: 2;
	padding-bottom: 5vh;
	padding-left: 10vw;
    padding-right: 10vw;
    font-size: 2.8vw;
    font-weight: 700;
    margin: auto;
    color: rgba(255,255,255,1);
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 1);
}

main .presentacion ul{
	background-color:rgba(154,207,203,1.00); /* VERDE */
	width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-self: flex-end;
    padding: 0px;
    margin: 0px;
    list-style-type: none;
}

main .presentacion ul li{
	display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}

main .presentacion ul li a{
	display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 30px 20px;
    color: rgba(255,255,255,1);
    font-weight: bold;
    text-decoration: none;
    font-size: 20px;
    transition: all .4s ease-in-out;
    height: 100%;
    cursor: pointer;
}

main .presentacion ul li a:hover {
    background-color: rgba(255,145,145,1.00);
    text-decoration: none;
}

main .como {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main .como .wrap-in {
    text-align: center;
}

main .como .wrap-in h2 {
    font-size: 40px;
    padding: 20px;
    color:rgba(255,145,145,1.00); /* ROSA */
}

main .como .varias-filas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

main .como .varias-filas .fila {
    padding: 10px;
}

main .como .varias-filas .fila .puntos span.numero {
    font-size: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    border-radius: 200px;
    margin: auto;
    background-color: rgba(154,207,203,1.00);
    transition: all .3s ease-in-out;
    cursor: pointer;
}

main .como .varias-filas .fila .puntos span.numero:hover,
main .como .varias-filas .fila .puntos span.numero.activo {
    background-color: rgba(255,145,145,1.00);
    color: rgba(255,255,255,1);
    font-size: 90px;
}

main .como .varias-filas .fila .puntos span.numero a {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;
    transition: all .3s ease-in-out;
    color: rgba(74,74,74,1);
}

main .como .varias-filas .fila .puntos span.numero a:hover {
    color: rgba(255,255,255,1);
}

main .como .varias-filas .fila .puntos span.numero img{
	width: 50%;
	height: 50%;
	transition: all .3s ease-in-out;
}



main .como .varias-filas .fila .puntos span.numero:hover img,
main .como .varias-filas .fila .puntos span.numero.activo img{
	width: 30%;
	height: 30%;
	filter: invert();

}

main .como .varias-filas .fila .puntos span.titulo {
    font-size: 20px;
    display: block;
    margin-top: 20px;
}

main .como .objetivo {
    float: left;
    clear: both;
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    background-color: rgba(255,145,145,1.00);
    display: flex;
    flex-direction: column;
}

main .como .objetivo p {
    font-size: 19px;
    font-weight: bold;
    width: 100%;
    clear: both;
}


main .como .objetivo ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

main .como .objetivo  ul li {
    text-align: center;
    padding: 0px 10px 10px;
}

main .como .objetivo  ul li a{
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
    width: 100px;
    height: 100px;
    background-color: rgba(255,255,255,1);
    border-radius: 100px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    color: rgba(74,74,74,1);
    background-repeat: no-repeat;
    background-size: 70%;
    background-position: center center;
    margin: auto;
    padding: 10px;
    transition: all .3s ease-in-out;
    position: relative;
}

main .como .objetivo  ul li a:hover{
	background-color:rgba(154,207,203,1.00); /* VERDE */
}

main .como .objetivo  ul li a span{
	width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0px;
    top: 0px;
    transition: all .3s ease-in-out;
}

main .como .objetivo  ul li a span:last-child{
	width: 100px;
    height: 100px;
    display: flex;
    position: absolute;
    left: 100px;
    top: 0px;
    transition: all .3s ease-in-out;
}

main .como .objetivo  ul li a:hover span{
	left: -100px;
}

main .como .objetivo  ul li a:hover span:last-child{
	left: 0px;
}

.comentarios h2{
    margin: 0px;
    padding: 0px !important;
    font-size: 30px;
    color: rgba(255,145,145,1.00);
}

/**/

.interior main{
	padding-top: 150px;
}

.interior main h1 {
    font-size: 40px;
    padding: 0px;
    margin: 0px;
    padding-bottom: 20px;
    color:rgba(255,145,145,1.00); /* ROSA */
}

.interior main p strong,
.interior main p a{
	color:rgba(255,145,145,1.00); /* ROSA */
}

.interior main h2 {
    font-size: 30px;
    color: rgba(154,207,203,1.00);
}

dl.slides dt {
    font-size: 30px;
    color: rgba(154,207,203,1.00);
}

dl.slides dd {
    font-size: 16px;
    line-height: 22px;
    margin-left: 0px;
}

/**/

.tabla-generica {
    width: 100%;
    display: table;
    margin-top: 50px;
}

.tabla-generica .row:nth-child(odd) {
    background-color: rgba(0,0,0,0.05);
}

.tabla-generica .row:nth-child(even) {}

.tabla-generica .row {
    display: table-row;
    border-radius: 10px;
}

.tabla-generica .row .cell {
    display: table-cell;
    text-align: center;
    padding: 10px;
    margin: 0px;
    vertical-align: middle;
    font-weight: bold;
    transition: all .4s ease-in-out;
}

.tabla-generica .row:hover .cell {
    background-color: rgba(255,145,145,1.00);
}

.tabla-generica .row .cell a {
    color: rgba(255,145,145,1.00);
    text-decoration: none;
    font-weight: bold;
    transition: all .4s ease-in-out;
}

.tabla-generica .row:hover .cell a {
    color: rgba(255,255,255,1);
}

.tabla-generica .row .cell span{
    display: block;
    white-space: nowrap;
    transition: all .4s ease-in-out;
}

.tabla-generica .row:hover  .cell span{
	color: rgba(255,255,255,1);
}

.tabla-generica .row .cell .link_foto {
	float: left;
    margin-right: 0px;
    width: 40%;
    padding-right: 10px;
    margin-right: 0px;
    text-align: center;
    display: block;
    width: 100%;
}

.tabla-generica .row .cell .link_foto img {
    height: 75px;
    border-radius: 10px;
    border: 1px solid rgba(255,145,145,1.00);
}

/**/

.categoria .centrado h1 {
    margin: 0px;
    font-size: 40px;
    padding: 0px;
    color: rgba(255,145,145,1.00);
    padding-top: 100px;
}

.categoria .centrado .listado-producto-categoria{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.categoria .centrado .item {
    float: left;
    width: 100%;
    max-width: 50%;
    padding: 2%;
}

.categoria .centrado .item h2 a {
    text-decoration: none;
    color: rgba(154,207,203,1.00);
    transition: all .3s ease-in-out;
}

.categoria .centrado .item h2 a:hover{
    color: rgba(255,145,145,1.00);
}

.categoria .centrado .item .link_foto {
    float: left;
    margin-right: 0px;
    width: 40%;
    padding-right: 10px;
}

.categoria .centrado .item .marco {
    width: 60%;
    float: right;
}

.categoria .centrado .item .marco h3.mas-precios {
    margin: 0px;
    padding: 8px;
    font-size: 20px;
}

.categoria .centrado .item .marco .precios{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}


.categoria .centrado .item .marco h4{
    margin: 0px;
    float: left;
    text-align: center;
    padding: 8px;
    margin-bottom: 15px;
    background-color: rgba(255,145,145,1.00);
    margin-right: 1px;
    flex-grow: 2;
}

.categoria .centrado .item .marco h4:first-child{
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.categoria .centrado .item .marco h4:last-child{
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.categoria .centrado .item .marco h4 span {
    display: block;
}

.categoria .centrado .item .marco .iconos {
    display: table;
    width: 100%;
    border-spacing: 5px;
    margin-bottom: 15px;
}

.categoria .centrado .item .iconos h3{
	margin: 0px;
    padding: 0px;
    padding-bottom: 5px;
}

.categoria .centrado .item a.reservar-categoria {
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: rgba(154,207,203,1.00);
    border-radius: 6px;
    cursor: pointer;
    width: 200px;
    display: block;
    clear: both;
    text-align: center;
    transition: all .3s ease-in-out;
}

.categoria .centrado .item a.reservar-categoria:hover{
    color: rgba(255,255,255,1);
    background-color: rgba(255,145,145,1.00);
}

/**/

.producto h1 {
    font-size: 40px;
    padding: 0px;
    margin: 0px;
    padding-bottom: 20px;
    color: rgba(255,145,145,1.00);
    padding-top: 100px;
}

.producto img.foto {
    
    float: left;
    margin-bottom: 20px;
    padding-right: 20px;
}

.producto article img.foto{
    max-width: 30%;
}

.marco-producto {
    /*width: 70%;*/
    float: left;
}

.marco-producto h3 {
    font-weight: normal;
    margin: 0px;
    padding: 8px;
}

.marco-producto h3.bold {
    font-weight: bold;
    margin: 0px;
    padding: 8px;
}

.marco-producto .precios{
    width: 100%;
    display: flex;
}

.marco-producto h4 {
    margin: 0px;
    float: left;
    text-align: center;
    padding: 8px;
    margin-bottom: 15px;
    background-color: rgba(255,145,145,1.00);
    border-right: 1px solid rgba(255,255,255,1);
    width: calc(25% - 1px);
}

.marco-producto h4:first-child{
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}

.marco-producto h4:last-child{
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
    border-right: 0px;
    width: 25%;
}


.marco-producto h4 span {
    display: block;
}

.graficos {
    display: table;
    display: flex;
    width: 100%;
    margin-bottom: 20px;
}

.graficos h3 {
    padding: 5px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graficos h3 img{
    margin: 0px;
    display: block;
    height: 20px;
    width: inherit;
    padding-right: 0px;

}

.graficos h3 span{
    padding-left: 10px;
}

.contacto_producto{
    font-weight: bold;
    color: white;
    text-decoration: none;
    padding: 10px;
    background-color: rgba(154,207,203,1.00);
    border-radius: 6px;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 20px;
    transition: all .3s ease-in-out;
}

.contacto_producto:hover{
    background-color:rgba(255,145,145,1.00); /* ROSA */
    color:rgba(255,255,255,1.00); 
}


.informacion-extra {
    clear: both;
    width: 100%;
}

.informacion-extra ul.lista {
    display: table;
    width: 100%;
    list-style: none;
    margin: 0px;
    padding: 0px;
}

.informacion-extra ul.lista li {
    display: table-cell;
    border: 1px solid rgba(0,0,0,0.15);
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
}

.informacion-extra ul.lista li:hover,
.informacion-extra ul.lista li.activo {
    background-color: rgba(0,0,0,0.05);
}

.informacion-extra ul.lista li.activo {
    border-bottom: 0px solid rgba(0,0,0,0.05);
}


.informacion-extra ul.lista li:first-child{
	border-top-left-radius: 6px;
}

.informacion-extra ul.lista li:last-child{
	border-top-right-radius: 6px;
}

.informacion-extra p {
    display: none;
    padding: 20px;
    margin: 0px;
    background-color: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.15);
    border-top: 0px solid rgba(0,0,0,0.15);
    margin-bottom: 0px;
    width: 100%;
    margin-bottom: 20px;
    line-height: 20px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.informacion-extra p.activo {
    display: inline-block;
}

.informacion-extra p span {
    display: block;
    font-weight: bold;
}

.producto h2 {
    margin: 0px;
    padding: 8px;
    font-size: 30px;
    color: rgba(255,145,145,1.00);
}


.fotos{
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 50px;
    justify-content: space-between;
}

.fotos h2{
	width: 100%;
}

.fotos img{
	width: inherit;
	max-width: calc(100% / 4);
	padding: 0px;
	margin: 0px;
}


.array_comentario{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.item_comentario{
    width: 50%;
    padding-bottom: 25px;
}

.item_comentario:nth-child(odd){
    padding-right: 50px;
}

.item_comentario h3{
    text-align: right;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.item_comentario h3 a{
    text-decoration: none;
    color: rgba(154,207,203,1.00);
    transition: all .3s ease-in-out;
}

.item_comentario .fecha{
    text-transform: uppercase;
    font-weight: bold;
}

.item_comentario .comment{
    line-height: 1.5em;
}

.item_comentario .autor{
    font-weight: bold;
    text-align: right;
}

.home .item_comentario .autor{
    padding-top: 0px;
    margin-top: 0px;
}

.more_items {
    width: 100%;
    padding: 20px;
    display: block;
    clear: both;
    float: left;
    overflow: hidden;
    background-color: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
}

.more_items h2 {
	width: 100%;
    margin: 0px;
    padding: 0px;
    font-size: 30px;
    color: rgba(255,145,145,1.00);
}

.more_items .anterior{
    float: left;
    width: 100%;
    max-width: 50%;
}

.more_items .siguiente {
    float: right;
    width: 100%;
    max-width: 50%;
}

.more_items div:first-of-type{}

.more_items div:last-of-type{}

.more_items h3{}

.more_items a.imagen {
    display: block;
    width: 30%;
    float: left;
    margin-right: 20px;
    border-radius: 5px;
    border: 1px solid rgba(0,0,0,0.15);
}

.more_items a.imagen{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0px;
	background-color: rgba(255,255,255,1);
}

.more_items a.imagen img {
    width: 100%;
    padding: 20px;
    margin: 0px;
    transition: all .3s ease-in-out;
}

.more_items a.imagen:hover img {
    width: 100%;
    padding: 10px;
    margin: 0px;
}

.more_items p {
    line-height: 20px;
    padding-right: 20px;
}

.more_items h3 a {
    color: rgba(154,207,203,1.00);
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.more_items h3 a:hover {
    color: rgba(255,145,145,1.00);
}

/**/

.footer{
	font-size: 14px;
}

.pie{
	background-color:rgba(154,207,203,1.00); /* VERDE */
	margin-top: 25px;
}

.pie .centrado{
	display: flex;
	justify-content: space-between;
	padding-bottom: 50px;
	padding-top: 50px;
}

.pie .centrado .logo{
	display: flex;
	flex-direction: column;
	align-items: center;
}

.pie .centrado .logo .logo-img{
	width: 100%;
	max-width: 300px;
}

.pie .centrado .logo ul{
	display: flex;
	justify-content: center;
}

.pie .centrado .logo ul li{
	padding: 10px;
	padding-bottom: 0px;
}

.pie .centrado .logo ul li a{
	filter: invert();
}

.pie .centrado .logo ul li span{
	display: none;
}

.pie .centrado .logo .cam{
	width: 100%;
	max-width: 400px;
	margin-top: 20px;
	/*filter: grayscale();*/
}

.pie .centrado ul{
	text-align: right;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

.pie .centrado ul li{
	padding-bottom: 10px;
}

.pie .centrado ul li:last-child{
	padding-bottom: 0px;
}

.pie .centrado ul li a{
}

.pie .centrado .categorias ul li a img{
	display: none;
}


.legal{
	background-color:rgba(255,145,145,1.00); /* ROSA */
}

.legal .centrado{}

.legal .centrado ul{
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	display: flex;
	justify-content: space-between;
}

.legal .centrado ul li{
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: center;
	padding: 15px;
	max-width: calc(100% / 3);
}

.legal .centrado ul li:first-child{
	padding-left: 0px;
}

.legal .centrado ul li:last-child{
	padding-right: 0px;
}

.legal .centrado ul li a{
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-align: center;
}

.footer a{
	color: rgba(255,255,255,1); /* BLANCO*/
	cursor: pointer;
}

.footer a:hover{
	text-decoration: underline;
}




.cerrar-formulario{
    position: fixed;
    top: 0px;
    left: 100vw;
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 100;
    transition: all .4s ease-in-out;
    cursor: pointer;
}

.cerrar-formulario.visible {
   	left: 0vw;  
}

.formulario-auxiliar {
    width: 300px;
    padding: 20px;
    padding-bottom: 50px;
    height: 100vh;
    position: fixed;
    top: 0px;
    left: -330px;
    z-index: 1111;
    background-color: rgba(154,207,203,1.00);
    transition: all .3s ease-in-out .1s;
    overflow: scroll;
}

.formulario-auxiliar.visible{
	left: 0px;
}

.formulario-auxiliar input {
    border: 0px solid rgba(74,74,74,1);
    width: 100%;
    padding: 5px;
    font-size: 16px;
}

.formulario-auxiliar textarea {
    border: 0px solid rgba(74,74,74,1);
    width: 100%;
    padding: 5px;
    font-size: 16px;
}

.wpcf7 form a{
	text-decoration: underline;
}

.formulario-auxiliar input[type=submit] {
    color: rgba(255,255,255,1);
    background-color: rgba(255,145,145,1.00);
    border: 0px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0px;
    padding: 5px 10px;
    
}

.wpcf7 form.spam .wpcf7-response-output{
	background-color: #f56e28;
	color: rgba(255,255,255,1); /* BLANCO */
}

.wpcf7 form.sent .wpcf7-response-output {
    background-color: #46b450;
    color: rgba(255,255,255,1); /* BLANCO */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output{
	background-color: #ffb900;
}








/*------------------------------------*\
   				1200px
\*------------------------------------*/


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

	.centrado{
		padding-left: 10px;
		padding-right: 10px;
	}
}


/*------------------------------------*\
                1024px
\*------------------------------------*/


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

    .categoria .centrado .item {
        float: left;
        width: 100%;
        max-width: 50%;
        padding: 0%;
    }

    
}


/*------------------------------------*\
                768px
\*------------------------------------*/


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

    main .presentacion ul li a {
        font-size: 17px;
    }

    main .como .varias-filas .fila{
        width: 50%;
    }

    main .como .objetivo ul li{
        width: calc(100% / 3);
    }

    .categoria .centrado .item{
        max-width: 100%;
    }

    .categoria .centrado .item .marco h4{
        width: calc(99% / 4);
    }

    
}









/*------------------------------------*\
   				500px
\*------------------------------------*/


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

	.header .main-nav .centrado p{
		display: flex;
		flex-direction: column;
	}

	.header .main-nav .centrado p span:after {
	    content: "";
	    padding-right: 0px;
	}


}












/*------------------------------------*\
   				500px
\*------------------------------------*/


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

	.header .main-nav .centrado p{
		display: flex;
		flex-direction: column;
	}

	.header .main-nav .centrado p span:last-child {
		display: none;
	}


}










/*------------------------------------*\
   				414px
\*------------------------------------*/


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

	main .presentacion .esfera .logo{
		width: 250px;
   		height: 250px;
	}

	main .presentacion p{
		font-size: 25px;
	}

	main .presentacion ul{
		display: none
	}

    .header .main-nav .centrado{
        padding: 0px;
    }

    .header .centrado > .home_url{
        margin-left: 10px;
    }

    .burger-menu{
        margin-right: 10px;
    }

    .abajo .header .main-nav .centrado > .categorias{
        top: 0px;
        height: 80px;
    }

    .header .main-nav .centrado > .categorias ul{
        width: 100vw;
    }

    .header .main-nav .centrado > .categorias ul li{
        padding: 0px;
        width: calc(100% / 6);
    }

    .header .main-nav .centrado > .categorias ul li a{
        border-radius: 0px;
        height: 80px;
        width: 100%;
        background-color:rgba(154,207,203,1.00); /* VERDE */
    }

    .header .main-nav .centrado > .categorias ul li a span{
        height: 80px;
        width: 100%;
    }

    .header .main-nav .centrado > .categorias ul li a span:last-child{
        height: 80px;
        width: 100%;
    }

    main .como .varias-filas .fila .puntos span.numero{
        width: 150px;
        height: 150px;
    }

    .tabla-generica .row .cell:first-child {
        display: none;
    }

    .tabla-generica .row .cell {
        display: block;
        float: left;
        width: 25%;
        border-right: 1px solid white;
        background-color: rgba(255,145,145,1.00);
        font-weight: bold;
        padding: 5px;
        margin-bottom: 20px;
    }

    .tabla-generica .row:nth-child(odd) {
        background-color: transparent;
    }

    .tabla-generica .row .cell.roto {
        display: block;
        float: left;
        width: 100%;
        background-color: rgba(255,255,255,1.00);
        color: rgba(255,145,145,1.00);
        font-weight: bold;
        margin-bottom: 0px;
        padding-top: 20px;
    }

    /**/

    .categoria .centrado .item .link_foto{
        width: 100%;
        padding-right: 0px;
    }

    .categoria .centrado .item .link_foto img{
        margin: auto;
    }

    .categoria .centrado .item .marco {
        width: 100%;
    }

    .categoria .centrado .item .marco h4 {
        width: calc(98% / 4);
    }

    /**/

    .producto img.foto {
        width: 100%;
        padding-right: 0px;
    }

    .producto article img.foto {
        max-width: inherit;
        width: auto;
    }

    .marco-producto {
        width: 100%;
        float: left;
    }

    .graficos{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .graficos h3{
        width: 100%;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        border-bottom: 1px solid rgba(0,0,0,0.4);
    }

    .graficos h3:last-child{
        border-bottom: 0px;
    }

    .graficos h3 img{
        width: auto;
    }

    .contacto_producto{
        width: 48%;
        text-align: center;
    }

    .contacto_producto.llamada {
        float: right;
    }


    .informacion-extra ul.lista {
        display: none;
    }

    .informacion-extra p:first-of-type{
        padding-top: 20px;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
    }

    .informacion-extra p:last-of-type{
        padding-bottom: 40px;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .informacion-extra p {
        display: block;
        margin-bottom: 0px;
    }

    .informacion-extra p {
        border-top: 0px solid rgba(0,0,0,0.15);
        border-left: 0px solid rgba(0,0,0,0.15);
        border-right: 0px solid rgba(0,0,0,0.15);
        border-bottom: 0px solid rgba(0,0,0,0.15);
        padding: 10px 20px;
    }

    .fotos img{
        max-width: 90%;
        margin: auto;
    }

    .item_comentario {
        width: 100%;
        padding-bottom: 25px;
    }

    .item_comentario:nth-child(odd) {
        padding-right: 0px;
    }

    .more_items .anterior,
    .more_items .siguiente{
        max-width: 100%;
    }

    /**/

    .nav-pie,
    .pie .categorias{
        display: none;
    }


}



/*------------------------------------*\
    MULTI IDIOMA
\*------------------------------------*/

.wpml-ls-legacy-list-vertical.wpml-ls-statics-footer{
    position: fixed;
    top: 0px;
    right: -100%;
    z-index: 2;
    background-color: rgba(255,145,145,1.00);
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    height: 100vh;
    width: 200px;
    margin: 0px;
    transition: all .3s ease-in-out;
}

.wpml-ls-legacy-list-vertical.wpml-ls-statics-footer.visible{
    right: 0px;
}

.wpml-ls-statics-footer ul{}

.wpml-ls-legacy-list-vertical.wpml-ls-statics-footer ul li.wpml-ls-item{
    padding: 20px;
}

.wpml-ls-statics-footer ul li a{
    background-color: transparent;
    font-weight: 700;
    color: rgba(255,255,255,1.00);

}

.wpml-ls-statics-footer ul li a:hover{
    background-color: transparent;
}


.cerrar-idioma {
    position: fixed;
    top: 0px;
    left: -100vw;
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.cerrar-idioma.visible {
    left: 0vw;
}

/*------------------------------------*\
    GOOGLE CATPCHA
\*------------------------------------*/

.grecaptcha-badge { 
    visibility: hidden;
}




.kit {
	width: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 20px;
  background-color: rgba(154,207,203,1.00);
}
.kit .kit_1 {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_1 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 50px;
}
.kit .kit_2 {
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.kit .kit_2 img {
  display: block;
  width: auto;
  height: 100%;
  max-height: 50px;
}
@media only screen and (max-width: 550px) {
  .kit .kit_2 img {
    height: 50px;
  }
}

