/*
==================================================================
Theme Name: Por Siempre
Version: 2.0
Author: Neobrand
Author URI: https://neobrand.com
==================================================================
*/

:root {
	--blue: #3b62f3;
	--blue-light: #5facff;
	--pink: #f68683;
	--pink-light: #f8b1af;
	--black: #1c1c1c;
	--grey: #bbbbbb;
	--grey-light: #f5f5f5;
}

/* General */

.mobile{
	display: none;
}

.desktop{
	display: block;
}

html,body {
	font-family: system-ui, sans-serif;
	font-weight: 400;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	width: 100%;
	position: relative;
	display: flex !important;
	flex-direction: column;
}

body figure {
	margin: 0;
}

body.noscroll {
	overflow: hidden;
}

* {
	font-family: system-ui, sans-serif;
}

a {
	text-decoration: none;
	transition: all 260ms ease;
	color: var(--blue);
}

img {
	max-width: 100%;
	height: auto;
}

::-moz-selection {
	color: #fff;
	background: var(--blue);
	text-shadow: 0 0 0 transparent;
}

::selection {
	color: #fff;
	background: var(--blue);
	text-shadow: 0 0 0 transparent;
}

::-webkit-input-placeholder {
	color: var(--black);
}

:-moz-placeholder {
	color: var(--black);
	opacity: 1;
}

::-moz-placeholder {
	color: var(--black);
	opacity: 1;
}

:-ms-input-placeholder {
	color: var(--black);
}

.wrapper {
	width: 90%;
	max-width: 1500px;
	margin: 0 auto;
}

.wrapper.small {
	max-width: 1500px;
}

.clear,
.clear::before,
.clear::after {
	content: '';
	width: 100%;
	clear: both;
}

.page-title {
	width: 100%;
	margin-bottom: 30px;
	padding-bottom: 15px;
	border-bottom: 1px dashed #c5c6c7;
	font-size: 16pt;
	color: var(--blue);
	float: left;
}

.home #main h3.page-title{
	margin-top: 50px;
}

.page-title span {
	position: relative;
	display: inline-block;
}

.page-title span::after {
	content: '';
	width: 100%;
	height: 10px;
	background-color: var(--blue);
	position: absolute;
	bottom: -20px;
	left: 0;
}

a.button {
	padding: 20px;
	margin-top: 20px;
	border: 2px solid var(--blue);
	font-size: 16pt;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	background-color: var(--blue);
	color: #fff !important;
	float: left;
}

a.button:hover {
	text-decoration: none !important;
	color: var(--blue) !important;
	background-color: transparent;
}

input {
	font-family: system-ui, sans-serif;
}


/* Header */

#header {
	width: 100%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	position: sticky;
	z-index: 11;
	transition: all 280ms ease;
}

.woocommerce-demo-store #header.open {
	top: 0 !important;
	z-index: 9999999;
}

#header #top {
	display: flex;
	width: 100%;
	padding: 15px 0;
}

#header .wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#header #top .wrapper #logo {
	display: flex;
}

#header #top .wrapper #logo img {
	height: 30px;
	display: flex;
}

#header #top .wrapper .features {
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	gap: 10px;
}

#header #top .wrapper .features > div {
	font-size: 15px;
	color: var(--black);
}

#header #top .wrapper .features > div i {
	color: var(--blue);
	width: 14px;
	height: 14px;
	margin-right: 1px;
	transform: rotate(45deg);
	position: relative;
	top: -2px;
	display: inline-block;
}

#header #top .wrapper .features > div i::before {
	content: '';
	position: absolute;
	width: 3px;
	height: 10px;
	background-color: var(--blue);
	left: 11px;
	top: 2px;
}

#header #top .wrapper .features > div i::after {
	content: '';
	position: absolute;
	width: 4px;
	height: 3px;
	background-color: var(--blue);
	left: 7px;
	top: 9px;
}

#header .wrapper .right{
	display: flex;
	align-items: center;
	gap: 25px;
}

#header #top .wrapper .right .phone{
	display: flex;
	align-items: center;
	gap: 5px;
}

#header #top .wrapper .right .phone i {
	font-size: 14pt;
	transform: rotate(135deg);
	color: var(--blue);
}

#header #top .wrapper .right a.cart {
	display: flex;
	align-items: center;
	gap: 5px;
	color: var(--black);
}

#header #top .wrapper .right a.cart span {
	font-weight: 700;
}

#header #top .wrapper .right #mobile {
	display: none;
}

#header #bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: var(--blue);
}

#header #bottom #menu-product,
#header #bottom #menu-secondary{
	display: flex;
	gap: 25px;
}

#header #bottom a {
	display: flex;
	color: white;
	font-weight: 700;
	padding: 15px 0;
}

#header #bottom li.current-menu-item > a,
#header #bottom li.active > a,
#header #bottom a:hover {
	color: var(--blue-light);
}

#header #bottom #menu-secondary {
	padding-right: 25px;
	border-right: 1px solid white;
}

#header #bottom .social {
	display: flex;
	align-items: center;
	gap: 5px;
}

#header #bottom .social a {
	display: flex;
	align-items: center;
	justify-content: center;
}

#header #menu-product li .sub-menu {
	padding: 10px 25px;
	border: 1px solid white;
	background-color: var(--blue);
	border-radius: 0 0 5px 5px;
	opacity: 0;
	transform: translateY(10px);
	transition: all 260ms ease;
	pointer-events: none;
	position: absolute;
	top: 112px;
}

#header #menu-product li.active .sub-menu {
	opacity: 1;
	transform: translateY(0);
	pointer-events: all;
}

#header .phoneMovil {
	display: none;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding: 25px;
	background-color: white;
	border-bottom: 2px solid var(--blue);
	gap: 5px;
}

#header .phoneMovil i {
	font-size: 14pt;
	transform: rotate(135deg);
	color: var(--blue);
	position: relative;
	top: 2px;
}

#header .phoneMovil a {
	color: var(--blue);
}

#main {
	width: 100%;
	padding-top: 40px;
}

#main #intro {
	width: 100%;
	display: flex;
	gap: 50px;
	padding-top: 20px;
	margin-top: 40px;
	border-top: 1px solid #ccc;
}

#main #intro #claim {
	width: calc((100% / 6) * 4);
}

#main #intro p {
	width: 100%;
	padding-top: 20px;
	margin: 0;
	line-height: 24px;
	color: var(--black);
	float: left;
}

#main #intro ul {
	display: inline-block;
	width: 100%;
	margin: 20px 0;
}

#main #intro li {
	margin-bottom: 0.6em;
	list-style: circle;
	list-style-position: inside;
}

#main #intro h2,
#main #intro h3 {
	width: 100%;
	margin-top: 20px;
	color: var(--black);
	float: left;
}

#main #intro nav {
	width: 100%;
	margin-bottom: 30px;
	float: left;
}

.home #main .content nav{
	width: 100%;
	display: flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

#main #intro nav a,
.home #main .content nav a{
	padding: 8px 15px;
	border: 2px solid var(--blue);
	border-radius: 3px;
	font-size: 18px;
	font-weight: 700;
	background-color: var(--blue);
	color: white;
}

#main #intro nav a:hover,
.home #main .content nav a:hover {
	color: var(--blue);
	background-color: #fff;
}

#main #intro h1 {
	color: var(--blue);
	font-size: 18px;
}

#main #intro p {
	margin-top: 10px;
	font-size: 14px;
	line-height: 21px;
	text-align: justify;
	overflow: hidden;
	hyphens: auto;
	color: var(--black);
	position: relative;
	transition: all 260ms ease;
}

#main #intro #reviews-wrapper {
	width: calc((100% / 6) * 2);
}

#main #intro .trustpilot-widget {
	width: 100%;
	padding: 10px;
	margin-bottom: 20px;
	border: 2px solid #00b67a;
	background-color: #fafafa;
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 4px;
	float: left;
	transition: all 720ms ease;
	position: relative;
}

#main #intro .trustpilot-widget > a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#main #intro .trustpilot-widget p{
	padding: 0;
	margin: 0;
	font-weight: 600;
}

#main #intro .trustpilot-widget figure {
	margin: 0;
	float: right;
}

#main #intro .trustpilot-widget figure svg {
	width: 100%;
	height: 24px;
}

#main #intro .trustpilot-widget{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#main #intro #reviews {
	width: 100%;
	display: flex;
	flex-direction: column;
}

#main #intro #reviews .owl-dots {
	width: 100%;
	text-align: center;
	float: left;
}

#main #intro #reviews .owl-dots .owl-dot {
	width: 8px;
	height: 8px;
	margin: 0 2px;
	border-radius: 100%;
	background-color: #ccc;
	display: inline-block;
}

#main #intro #reviews .owl-dots .owl-dot.active {
	background-color: var(--blue);
}

#main #intro #reviews article {
	width: 100%;
	padding: 0 20px 20px 20px;
	margin-top: 10px;
	border: 1px solid;
	position: relative;
	display: flex;
	flex-direction: column;
}

#main #intro #reviews article p {
	text-align: left;
}

#main #intro #reviews a.main-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

#main #intro #reviews article.facebook {
	border-color: #4267b2;
}

#main #intro #reviews article.trustpilot {
	border-color: var(--blue);
}

#main #intro #reviews strong {
	padding: 0 10px;
	margin-left: -10px;
	font-size: 14px;
	color: var(--black);
	background-color: #fff;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	float: left;
}

#main #intro #reviews strong .stars {
	margin-top: -2px;
	font-size: 10px;
	color: #ffc107;
	display: inline-block;
	margin-left: 5px;
}

#main #intro #reviews article p {
	clear: both;
}

#main #intro #reviews article .link {
	font-weight: 700;
	align-items: center;
	display: flex;
	position: absolute;
	right: 20px;
	bottom: 20px;
}

#main #intro #reviews article .icon {
	height: 24px;
	margin-right: 5px;
	float: left;
}

#main #intro #reviews article.facebook .icon {
	width: 11.182px;
}

#main #intro #reviews article.trustpilot .icon {
	width: 25.237px;
}

#main #intro #reviews article .icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	float: left;
}

#main #intro #reviews article .link a {
	font-weight: 700;
	margin-top: 4px;
}

#main #intro #reviews article a img {
	height: 30px;
	display: inline-block;
}

#main #intro #reviews article.facebook a {
	color: #4267b2;
}

#main #intro #reviews article.trustpilot a {
	color: #009d69;
}

.home #main .content {
	width: 100%;
	padding-left: 0;
}

/* Main */

#banner {
	display: flex;
	width: 100%;
	margin-bottom: 20px;
	position: relative;
	height: 300px;
	overflow: hidden;
}

#banner .wrapper {
	display: flex;
	align-items: center;
	position: relative;
}

#banner nav {
	position: absolute;
	left: 0;
	bottom: 10px;
	width: 100%;
	display: flex;
	gap: 10px;
	justify-content: end;
	align-items: center;
	flex-wrap: wrap;
}

#banner nav a{
	padding: 6px 12px;
	border-radius: 3px;
	font-size: 16px;
	font-weight: 600;
	background-color: rgba(255, 255, 255, 0.5);
	color: var(--black);
}

#banner nav a:hover{
	color: var(--blue);
	background-color: #fff;
}

#banner .contenido{
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 1;
}

#banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}

#main-categories {
	width: 20%;
	float: left;
	position: relative;
	margin-bottom: 25px;
}

.blog #main-categories {
	width: 100%;
}

#main-categories .wrapper {
	position: relative;
}

#main-categories .categories-wrapper {
	width: 100%;
	margin-bottom: 2px;
	float: left;
}

#main-categories .categories-wrapper a {
	width: 100%;
	min-height: 80px;
	margin-bottom: 2px;
	padding: 10px 10px 10px 20px;
	color: #fff;
	text-align: left;
	font-weight: 700;
	background-color: var(--grey);
	overflow: hidden;
	transition: all 260ms ease;
	float: left;
	position: relative;
	display: flex;
	align-items: center;
}

#main-categories .categories-wrapper a:hover,
#main-categories .categories-wrapper a.current {
	padding-left: 25px;
	background-color: var(--blue);
	text-decoration: none;
}

#main-categories .categories-wrapper a span {
	width: calc(100% - 70px);
	float: left;
}

#main-categories .categories-wrapper a img {
	width: auto;
	height: 60px;
	transition: all 260ms ease;
	position: absolute;
	right: 0;
	bottom: 0;
}

#main-categories .categories-wrapper a:hover img {
	transform: scale(1.1);
}

#main-categories .categories-wrapper a.sub {
	display: none;
	padding: 15px 20px;
	min-height: auto;
	font-size: 14px;
	line-height: 18px;
}

.blog #main #sidebar #main-categories .categories-wrapper a.materials,
#main-categories .categories-wrapper a.materials {
	width: calc((100% - 2px) / 3);
	margin-right: 1px;
	padding: 10px;
}

#main-categories .categories-wrapper a.materials::after {
	content: '';
	width: 30px;
	height: 30px;
	box-shadow: 0 5px 5px black;
	transform: rotate(45deg);
	position: absolute;
	top: -15px;
	left: -15px;
}

#main-categories .categories-wrapper a.materials:nth-child(1)::after {
	background-color: #ccc;
}

#main-categories .categories-wrapper a.materials:nth-child(2)::after {
	background-color: #b2b2b2;
}

#main-categories .categories-wrapper a.materials:nth-child(3)::after {
	background-color: #ccac00;
}

.blog #main #sidebar #main-categories .categories-wrapper a.materials:nth-child(3),
#main-categories .categories-wrapper a.materials:nth-child(3) {
	margin-right: 0;
}

#main-categories .categories-wrapper a.materials span {
	width: 100%;
	text-align: center;
}

#main-categories .info {
	width: 100%;
	height: 150px;
	font-size: 16pt;
	text-align: center;
	background-color: var(--pink);
	color: #fff;
	align-items: center;
	display: flex;
	float: right;
}

#main-categories .info:hover {
	background-color: var(--pink-light);
}

#main-categories .info span {
	width: 100%;
	text-align: center;
	transition: all 260ms ease;
	float: left;
	filter: invert(100%);
}

#main-categories .info:hover span {
	transform: translateY(-5px);
}

#main-categories .info i {
	width: 100%;
	margin-bottom: 10px;
	font-size: 42pt;
	float: left;
}

#main #products {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-gap: 20px;
	margin-bottom: 50px;
}

#main #products article {
	width: 100%;
	margin-bottom: 30px;
	float: left;
}

.single-product #main #products {
	grid-template-columns: repeat(5, 1fr);
}

.single-product #main #products article {
	width: 100%;
	margin-bottom: 0;
	float: left;
}

.single-product article .main-info .share{
	margin-top: 0 ;
	flex-direction: row;
}

.home #main #products article {
	margin-bottom: 20px;
}

.single-product #main article .breadcrumbs {
	width: 100%;
	margin-bottom: 10px;
	font-size: 10pt;
	font-weight: 700;
	color: var(--black);
	float: left;
}

.single-product #main article .breadcrumbs i,
.single-product #main article .breadcrumbs a {
	color: var(--black);
}

.single-product #main article .breadcrumbs i {
	margin: 0 5px;
	font-size: 7pt;
	display: inline-block;
	position: relative;
	top: 0;
}

.single-product #main article .breadcrumbs a:hover {
	color: var(--blue);
}

.single-product #main .features {
	width: 100%;
	padding: 10px;
	background-color: var(--grey-light);
	float: left;
}

.single-product #main .features li {
	margin-right: 10px;
	font-size: 11pt;
	color: var(--black);
	float: left;
}

.single-product #main .features li i {
	color: var(--blue);
}

.single-product #main #popup {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
	display: none;
	border: 1px solid #e01919;
	text-align: center;
	background-color: white;
	padding: 20px;
	border-radius: 10px 0 0 0;
	color: #e01919;
}

.single-product #main #popup p {
	margin-top: 0;
}

.single-product #main #popup a {
	padding: 10px 20px;
	border: 2px solid #e01919;
	font-weight: 700;
	border-radius: 5px;
	background-color: #e01919;
	color: #fff;
	display: inline-block;
}

.single-product #main #popup a:hover {
	background-color: transparent;
	color: #e01919;
}

#main #products article .thumbnail,
#main #products article .thumbnail img {
	width: 100%;
	height: auto;
	transition: all 260ms ease;
	float: left;
}

#main #products article .thumbnail {
	border: 1px solid #e8e9ea;
	overflow: hidden;
	position: relative;
}

#main #products article .thumbnail .ribbon {
	color: #fff;
	font-weight: 700;
	position: absolute;
	top: 3px;
	right: 6px;
	z-index: 3;
}

#main #products article .thumbnail .ribbon::after {
	content: '';
	width: 125%;
	height: 30px;
	padding: 10px 30px;
	background-color: var(--blue);
	transform: rotate(-12deg);
	position: absolute;
	right: -60px;
	top: -28px;
	z-index: 0;
	border-radius: 12px;
}

#main #products article .thumbnail .ribbon span {
	position: relative;
	font-size: 12px;
	z-index: 1;
}

#main #products article .text {
	width: 100%;
	margin-top: 10px;
	text-align: center;
	float: left;
}

#main #products article .text h3 a {
	color: var(--black);
	transition: all 260ms ease;
	font-weight: 700;
	font-size: 16px;
}

#main #products article .text .price {
	width: 100%;
	margin-top: 10px;
	font-weight: 700;
	color: var(--blue);
	float: left;
}

#main #products article .text .price .old-price {
	color: #ccc;
}

#main #products article:hover .thumbnail {
	border-color: var(--blue);
}

#main #products article:hover .thumbnail img {
	transform: scale(1.2);
}

#main #products article:hover .text h3 a {
	color: var(--blue);
}

#main #blog {
	width: 100%;
	float: left;
}

#main #blog article {
	width: calc(50% - 25px);
	float: left;
}

#main #blog article:first-child {
	margin-right: 50px;
}

#main #blog article .thumbnail {
	width: 210px;
/* 	height: 210px; */
	overflow: hidden;
	float: left;
	position: relative;
}

#main #blog article .thumbnail img{
	float: left;
	transition: all 260ms ease;
}

/* #main #blog article .thumbnail img {
	width: 210px;
	height: 210px;
	transition: all 260ms ease;
	float: left;
} */

#main #blog article .thumbnail:hover img {
	transform: scale(1.1);
}

#main #blog article .text {
	width: calc(100% - 240px);
	margin-left: 30px;
	float: left;
}

#main #blog article .text h4 {
	font-size: 20pt;
	font-weight: 700;
}

#main #blog article .text h4 a {
	color: var(--black);
}

#main #blog article .text h4 a:hover {
	color: var(--blue);
}

#main #blog article .text .excerpt {
	width: 100%;
	margin: 20px 0 0 0;
	line-height: 24px;
	color: var(--black);
	float: left;
}

#main .page-title.facebook {
	padding-bottom: 0;
	font-weight: 400;
	font-size: 10pt;
	color: #fff;
	margin-top: 50px;
	float: left;
}

#main .page-title.facebook span {
	padding: 10px;
	margin-bottom: -1px;
	background-color: #3b5998;
}

#main .page-title.facebook span::after {
	display: none;
}

#main .page-title.facebook span i {
	margin: 0 2px;
	color: #ddcd0f;
	display: inline-block;
}

#main #comments {
	width: 100%;
	float: left;
}

#main #comments .item {
	width: calc(100% / 3 - 80px / 3);
	float: left;
	padding: 0 10px;
}

#main #comments > div:nth-child(2) {
	margin: 0 40px;
}

#main #comments .item .name {
	color: var(--black);
}

#main #comments .item .name span {
	font-weight: 700;
	color: var(--black);
}

#main #comments .item p {
	line-height: 24px;
	color: var(--black);
}

.shop .entry-title {
	width: 100%;
	margin-bottom: 20px;
	color: var(--blue);
	text-align: center;
	font-size: 18pt;
	float: left;
}

#trustpilot {
	float: left;
	width: 100%;
}

#trustpilot .wrapper a {
	width: 100%;
	float: left;
	padding: 30px;
	background-color: var(--grey-light);
	font-size: 14px;
	color: var(--black);
	font-weight: 700;
}

#trustpilot .wrapper img {
	width: 15%;
	float: left;
	padding-right: 20px;
}

#trustpilot .wrapper .comentario {
	width: 85%;
	float: right;
	text-align: center;
	padding: 25px;
	border: 1px solid #1cb57c;
	line-height: 20px;
}

#trustpilot .wrapper .nombre {
	font-size: 16px;
	font-weight: 700;
	float: left;
	width: 100%;
	color: #1cb57c;
	margin-top: 10px;
}

.shop p.subtitle {
	width: 100%;
	margin: 0 0 30px 0;
	line-height: 22px;
	color: var(--black);
	text-align: center;
	float: left;
}

.shop p.subtitle:empty {
	display: none;
}

.shop .filter-bar {
	width: 100%;
	padding-bottom: 5px;
	margin-top: 6px;
	margin-bottom: 15px;
	border-bottom: 1px dashed #c5c6c7;
	float: left;
}

.shop .subcategories {
	float: left;
}

.shop .subcategories li {
	margin-right: 5px;
	font-weight: 700;
	float: left;
}

.shop .subcategories li:last-child {
	margin-right: 0;
}

.shop .subcategories li a {
	padding: 5px 15px;
	background-color: #c5c6c7;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	float: left;
}

.shop .subcategories li a:hover,
.shop .subcategories li.current-menu-item a {
	background-color: var(--blue);
	color: #fff;
}

.shop .woocommerce-ordering {
	float: right;
}

.shop .woocommerce-ordering label {
	color: #c5c6c7;
	position: relative;
}

.shop .woocommerce-ordering label i {
	font-size: 9pt;
	transition: all 260ms ease;
	position: absolute;
	top: 5px;
	right: 0;
	z-index: -1;
}

.shop .woocommerce-ordering select {
	padding: 5px 25px 5px 5px;
	color: #c5c6c7;
	border: 1px solid #c5c6c7;
	border-radius: 3px;
	background: transparent;
	cursor: pointer;
	transition: all 260ms ease;
	appearance: none;
	background: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23c5c6c7%22%2F%3E%3C%2Fsvg%3E) no-repeat right 5px top 55%;
	background-size: 16px 16px;
}

.shop .woocommerce-ordering label:hover i,
.shop .woocommerce-ordering label:hover select {
	color: var(--black);
}

.single-product article {
	width: 100%;
	float: left;
	position: relative;
}

.single-product article .main-info {
	width: 100%;
	float: left;
	position: relative;
}

.single-product article .main-info #video-player {
	width: 240px;
	height: 135px;
	background-size: 100px;
	background-color: whitesmoke;
	background-image: url('./images/loading.gif');
	background-repeat: no-repeat;
	background-position: center;
	transform: translateX(calc(-100% - 60px));
	cursor: pointer;
	overflow: hidden;
	display: flex;
	align-items: center;
	position: absolute;
	top: 10px;
	z-index: 3;
}

.single-product article .main-info #video-player iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.single-product article .main-info .onsale {
	padding: 16px;
	background-color: transparent;
	line-height: normal;
	font-size: 14px;
	color: #fff;
	font-weight: 700;
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	z-index: 3;
	overflow: hidden;
}

.single-product article .main-info .onsale::after {
	content: '';
	width: 150%;
	height: 60px;
	padding: 10px 30px;
	background-color: var(--blue);
	transform: rotate(30deg);
	position: absolute;
	right: -33px;
	top: -37px;
	z-index: -1;
}

.single-product article #product-gallery {
	width: 45%;
	overflow: hidden;
	border: 1px solid #e8e9ea;
	transition: all 260ms ease;
	float: left;
	position: relative;
}

.single-product article #product-gallery.hidden {
	position: absolute;
	opacity: 0;
}

.single-product article #product-gallery .product-image img {
	width: 100%;
	height: auto;
}

.single-product article #product-gallery .owl-nav {
	opacity: 0.1;
	transition: all 260ms ease;
}

.single-product article #product-gallery:hover .owl-nav {
	opacity: 1;
}

.single-product article #product-gallery .owl-nav > div {
	width: 50px;
	height: 50px;
	padding-top: 8px;
	margin-top: -25px;
	font-size: 24pt;
	background-color: rgba(255, 255, 255, 0.5);
	text-align: center;
	transition: all 260ms ease;
	position: absolute;
	top: 50%;
}

.single-product article #product-gallery .owl-nav > div:hover {
	color: var(--blue);
}

.single-product article #product-gallery .owl-nav .owl-prev {
	left: 0;
	border-radius: 0 5px 5px 0;
}

.single-product article #product-gallery .owl-nav .owl-next {
	right: 0;
	border-radius: 5px 0 0 5px;
}

.single-product article #product-gallery .owl-dots {
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 15px;
}

.single-product article #product-gallery .owl-dots .owl-dot {
	width: 16px;
	height: 16px;
	padding: 1px;
	margin: 0 5px;
	border: 1px solid var(--blue);
	transition: all 260ms ease;
	display: inline-block;
	border-radius: 5px;
}

.single-product article #product-gallery .owl-dots .owl-dot.active,
.single-product article #product-gallery .owl-dots .owl-dot.active:hover {
	background-color: var(--blue);
	transform: rotate(45deg);
}

.single-product article #product-gallery .owl-dots .owl-dot:hover {
	background-color: rgba(125, 200, 208, 0.3);
}

.single-product article #product-content {
	width: calc(55% - 50px);
	float: right;
	position: relative;
}

.single-product article #product-content .entry-title {
	width: 100%;
	margin-top: 0;
	font-size: 36px;
	text-align: left;
	color: var(--blue);
	float: left;
}

.single-product article #product-content .price {
	width: 100%;
	font-size: 28pt;
	font-weight: 700;
	color: var(--black);
	float: left;
}

.single-product article #product-content .price .old-price {
	font-size: 14pt;
	color: var(--black);
}

.single-product article #product-content .price .old-price span {
	text-decoration: line-through;
}

.single-product article #product-content .description {
	width: 100%;
	margin: 20px 0 0 0;
	font-size: 14pt;
	line-height: 24px;
	color: var(--black);
	float: left;
}

.single-product article #product-content .add-to-cart {
	width: 100%;
	margin-top: 30px;
	margin-bottom: 20px;
	float: left;
}

.single-product article #product-content .add-to-cart .screen-reader-text {
	display: none;
}

.single-product article #product-content .add-to-cart input[type=number]::-webkit-inner-spin-button,
.single-product article #product-content .add-to-cart input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.single-product article #product-content .add-to-cart input[type=number] {
	-moz-appearance: textfield;
	font-weight: 700;
}

.single-product article #product-content .add-to-cart input[type=number] {
	width: 70px;
	height: 70px;
	border: 0 none;
	border-bottom: 5px solid var(--blue);
	color: var(--black);
	font-size: 16pt;
	text-align: center;
	background-color: var(--grey-light);
	float: left;
}

.single-product article #product-content .add-to-cart .quantity-nav {
	
	height: 70px;
	margin-left: 1px;
	float: left;
}

.single-product article #product-content .add-to-cart .quantity-nav > a {
	width: 35px;
	height: 35px;
	font-size: 25px;
	color: var(--black);
	text-align: center;
	background-color: var(--grey-light);
	cursor: pointer;
	clear: both;
	float: left;
	display: flex;
	justify-content: center;
	align-items: center;
}

.single-product article #product-content .add-to-cart .quantity-nav > a:first-child {
	border-bottom: 1px solid #fff;
}

.single-product article #product-content .add-to-cart .add-button {
	height: 70px;
	padding: 0 30px;
	margin-left: 20px;
	border: 2px solid var(--blue);
	border-radius: 5px;
	font-weight: 700;
	background-color: var(--blue);
	transition: all 260ms ease;
	font-size: 16pt;
	color: #fff;
	cursor: pointer;
	float: left;
	display: flex;
    align-items: center;
}
.single-product article #product-content .add-to-cart .add-button svg{
	margin-right: 5px;
}

.single-product article #product-content .add-to-cart a.add-button {
	margin-left: 0;
	align-items: center;
	display: flex;
}

.single-product article #product-content .add-to-cart a.add-button small {
	margin-top: 3px;
	margin-left: 5px;
	font-size: 12px;
}

.single-product article #product-content .add-to-cart .add-button:hover {
	background-color: transparent;
	color: var(--blue);
}

.single-product article #product-content .trust {
	width: 100%;
	padding: 10px;
	margin-top: 30px;
	border: 2px solid #00b67a;
	background-color: #fafafa;
	align-items: center;
	display: flex;
	justify-content: space-between;
	gap: 4px;
	float: left;
	transition: all 720ms ease;
	position: relative;
}

.single-product article #product-content .trust a {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.single-product article #product-content .trust p {
	margin: 0;
	font-weight: 600;
}

.single-product article #product-content .trust figure {
	margin: 0;
	float: right;
}

.single-product article #product-content .trust figure svg {
	width: 100%;
	height: 24px;
}

.single-product article #product-content .trust:hover {
	transform: scale(1.05);
}

.single-product article #product-content .trust img {
	width: 130px;
	margin-right: 15px;
}

.single-product article #product-content .trust a.main-link {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.single-product article .main-info .share {
	width: auto;
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: 3;
}

.single-product article .main-info .share a {
	width: 50px;
}

.single-product article .bottom-block {
	width: calc(55% - 50px);
	margin-left: 50px;
	margin-top: 10px;
	float: right;
}

.single-product article .bottom-block > div {
	width: 100%;
	padding: 10px;
	border: 2px solid var(--grey-light);
	float: left;
}

.single-product article .bottom-block > div p {
	width: 100%;
	margin: 0;
	line-height: 20px;
	font-size: 14px;
	color: var(--black);
	float: left;
}

.single-product article .bottom-block .gift h5 {
	width: 100%;
	color: var(--blue);
	font-size: 18px;
	margin-bottom: 10px;
	float: left;
}

.single-product article .bottom-block .gift img {
	width: 100%;
}

.single-product article .bottom-block .gift .ebook {
	width: 100%;
	margin-top: 10px;
	align-items: center;
	display: flex;
	float: left;
}

.single-product article .bottom-block .gift .ebook img {
	width: 100px;
	float: left;
}

.single-product article .bottom-block .donations {
	align-items: center;
	display: flex;
	margin-top: 10px;
}

.single-product article .bottom-block .donations img {
	width: 75px;
	height: auto;
	margin-right: 10px;
	float: left;
}

.single-product article .secondary-info .page-title {
	margin-top: 60px;
}

.single-product article .secondary-info .description {
	width: 100%;
	line-height: 24px;
	color: var(--black);
	float: left;
}

.single-product article .secondary-info .description p {
	margin-top: 0;
	margin-bottom: 20px;
}

.single-product article .secondary-info .description a {
	color: var(--blue);
}

.single-product article .secondary-info .description a:hover {
	text-decoration: underline;
}

.single-product article .secondary-info .reviews {
	width: 50%;
	padding-left: 25px;
	float: left;
}

.single-product article .secondary-info .reviews .star-rating span::before {
	font-family: star;
	color: #ff9800;
}

.woocommerce #reviews #comments h2,
.single-product article .secondary-info .reviews #reply-title {
	display: none;
}

.single-product article .secondary-info .reviews p.stars {
	width: auto;
	margin-left: 10px;
	display: inline-block;
}

.single-product article .secondary-info .reviews p.stars a {
	color: #ff9800;
}

.single-product article .secondary-info .reviews #commentform {
	width: 100%;
	padding: 20px;
	border: 1px solid #e4e1e3;
	border-radius: 10px;
	float: left;
}

.single-product article .secondary-info .woocommerce-noreviews,
.single-product article .secondary-info .reviews #commentform label {
	font-size: 16px;
	font-weight: bolder;
	color: #777;
	display: inline-block;
}

.single-product article .secondary-info .reviews #commentform label[for="comment"] {
	margin-bottom: 5px;
}

.woocommerce #review_form textarea {
	width: calc(50% - 5px);
	padding: 15px;
	height: 250px;
	margin-bottom: 10px;
	border: 0 none;
	border-bottom: 5px solid var(--blue);
	background-color: var(--grey-light);
	resize: none;
	float: left;
}

.woocommerce #review_form #respond .form-submit input {
	background-color: var(--blue);
	color: #fff;
	float: right;
}

.woocommerce #review_form #respond .form-submit input:hover {
	background-color: transparent;
	color: var(--blue);
}

.single-product article .secondary-info .block {
	width: 50%;
	padding-right: 20px;
	float: left;
}

.single-product article .secondary-info .block:last-child {
	padding-right: 0;
	padding-left: 20px;
}

.single-product article .secondary-info .block h6 {
	width: 100%;
	margin-bottom: 20px;
	font-size: 16pt;
	color: var(--blue);
	float: left;
}

.single-product article .secondary-info .block ul li {
	width: 100%;
	padding-left: 20px;
	margin-bottom: 20px;
	line-height: 24px;
	font-weight: 700;
	color: var(--black);
	float: left;
}

.single-product article .secondary-info .block ul li i {
	margin-left: -20px;
	margin-right: 5px;
	font-size: 9pt;
	color: var(--blue);
	position: relative;
	top: -2px;
}

.pagination {
	display: flex;
	width: 100%;
	margin: 50px 0;
	justify-content: center;
}

.pagination:empty {
	display: none;
}

.pagination ul{
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 5px
}

.pagination ul li a,
.pagination ul li span {
	display: flex;
	align-items: center;
  justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 3px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background-color: #c5c6c7;
}

.pagination ul li span.current,
.pagination ul li a:hover {
	background-color: var(--blue);
}

.pagination ul li span.dots {
	font-size: 16pt;
	background-color: transparent;
	color: #666;
}

.about #main .block {
	width: calc(50% - 20px);
	float: left;
}

.about #main .block.last {
	float: right;
}

.about #main .page-title {
	font-size: 16pt;
	font-weight: 700;
}

.about #main .content h2,
.about #main .content h3 {
	width: 100%;
	margin-bottom: 10px;
	font-size: 24px;
	color: var(--black);
	float: left;
}

.about #main .content p {
	width: 100%;
	margin-top: 0;
	margin-bottom: 20px;
	font-size: 14pt;
	color: var(--black);
	line-height: 28px;
	float: left;
}

.about #main .content a {
	color: var(--blue);
}

.about .wpcf7 {
	width: 100%;
	margin-bottom: 60px;
	float: left;
}

.about .wpcf7 textarea,
.about .wpcf7 input {
	width: calc(50% - 5px);
	padding: 15px;
	height: 250px;
	border: 0 none;
	border-bottom: 5px solid var(--blue);
	background-color: var(--grey-light);
	resize: none;
	float: left;
}

.about .wpcf7 input {
	height: 50px;
	margin-bottom: 7px;
	float: right;
}

.about .wpcf7 small {
	width: calc(50% - 5px);
	margin-bottom: 15px;
	color: var(--black);
	float: right;
}

.about .wpcf7 p.notice {
	width: 100%;
	font-size: 12px;
	color: var(--black);
	text-align: justify;
	hyphens: auto;
	float: left;
}

.about .wpcf7 input[type=checkbox] {
	visibility: hidden;
	opacity: 0;
	position: absolute;
}

.about .wpcf7 label[for=accept] {
	width: 15px;
	height: 15px;
	margin-right: 10px;
	border: 2px solid var(--blue);
	cursor: pointer;
	display: block;
	float: left;
}

.about .wpcf7 label[for=accept]::after {
	content: '';
	display: block;
	width: 13px;
	height: 13px;
	background-color: var(--blue);
	opacity: 0;
	float: left;
	transition: opacity 260ms ease;
}

.about .wpcf7 label[for=accept].checked::after {
	opacity: 1;
}

.about .wpcf7 .accept-policy {
	width: 30%;
	margin-left: 10px;
	margin-top: 13px;
	float: left;
}

.about .wpcf7 .policy {
	margin-top: 1px;
	font-size: 10pt;
	color: var(--black);
	float: left;
}

.about .wpcf7 .policy a {
	color: var(--blue);
}

.about .wpcf7 .policy a:hover::after {
	content: " \f08e";
	margin: 1px 0 0 0;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: inherit;
	text-rendering: auto;
	font-size: 9pt;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.about .wpcf7 input[type=submit] {
	width: 15%;
	padding: 15px 20px;
	margin-bottom: 0;
	border: 2px solid var(--blue);
	border-radius: 5px;
	font-weight: 700;
	background-color: var(--blue);
	transition: all 260ms ease;
	color: #fff;
	cursor: pointer;
	float: right;
}

.about .wpcf7 input[type=submit]:hover {
	background-color: transparent;
	color: var(--blue);
}

.about .wpcf7 input[type=submit][disabled=disabled],
.about .wpcf7 input[type=submit][disabled],
.about .wpcf7 input[type=submit][disabled=disabled]:hover,
.about .wpcf7 input[type=submit][disabled]:hover {
	background-color: #ff9a92;
	border-color: #ff9a92;
	color: #fff;
	cursor: not-allowed;
}

.about .wpcf7 div.wpcf7-validation-errors {
	width: 100%;
	margin: 20px 0 0 0;
	padding: 20px 0 0 0;
	border: 0 none;
	border-top: 2px solid var(--black);
	color: var(--black);
	text-align: center;
	float: left;
}

.about .wpcf7 textarea.wpcf7-not-valid,
.about .wpcf7 input.wpcf7-not-valid {
	border-bottom-color: #ff9a92;
}

.about .wpcf7 span.wpcf7-not-valid-tip {
	display: none !important;
}

.about .contacts {
	width: 100%;
	margin-bottom: 40px;
	color: var(--black);
	float: left;
}

.about .contacts li {
	width: 100%;
	margin-bottom: 20px;
	float: left;
}

.about .contacts li:last-child {
	margin-bottom: 0;
}

.about .contacts li i {
	font-size: 9pt;
	margin-right: 5px;
	color: var(--blue);
	position: relative;
	top: -1px;
}

.blog #main .page-title i {
	font-size: 14pt;
	position: relative;
	top: -2px;
}

.blog #main p.subtitle {
	width: 100%;
	margin: 0 0 20px 0;
	line-height: 22px;
	color: var(--black);
	float: left;
}

.blog #main p.subtitle:empty {
	display: none;
}

.blog #main #content {
	width: calc(100% - 390px);
	float: left;
}

.blog #main #content .page-title {
	font-size: 16pt;
}

.blog #main #blog article {
	width: 100%;
	padding-bottom: 20px;
	margin-bottom: 30px;
	margin-right: 0;
	border-bottom: 1px dashed #c5c6c7;
	position: relative;
}

.blog #main #blog article .thumbnail,
.blog #main #blog article .thumbnail img {
	width: 50px;
	transition: all 280ms ease;
	/* height: 290px; */
}

.blog #main #blog article .thumbnail,
.blog #main #blog article .thumbnail img{
	height: auto;
	width: 120px;
}

.blog #main #blog article .text {
	width: calc(100% - 150px);
}

.blog #main #blog article .text > header{
	display: flex;
	align-items: center;
	gap: 20px;
	background-color: var(--grey-light);
}

.blog.single-ayuda #main #blog article .text {
	width: 100%;
	margin-left: 0;
}

.blog.single-ayuda #main #blog article .text .more-help {
	width: 100%;
	margin-top: 40px;
	padding-top: 20px;
	border-top: 1px solid #eee;
	font-weight: 700;
	color: var(--black);
	float: left;
}

.blog.single-ayuda #main #blog article .text .more-help a {
	color: var(--blue);
}

.blog.single-ayuda #main #blog article .text .more-help a:hover {
	text-decoration: underline;
}

.blog #main #blog article a.more {
	padding: 10px 20px;
	border: 1px solid var(--blue);
	border-radius: 2px;
	font-size: 12pt;
	font-weight: 500;
	color: var(--blue);
	float: right;
}

.blog #main #blog article a.more:hover {
	background-color: var(--blue);
	color: #fff;
}

.blog #main #sidebar {
	width: 340px;
	float: right;
}

.single-ayuda.blog #main #content {
	width: calc(100% - 490px);
	float: right;
}

.single-ayuda.blog #main #sidebar {
	width: 440px;
	float: left;
}

.blog #main #sidebar .page-title i {
	top: auto;
}

.blog #main #sidebar form {
	width: 100%;
	margin-bottom: 50px;
	float: left;
}

.blog #main #sidebar form input[type=search] {
	width: calc(100% - 50px);
	padding: 15px;
	height: 50px;
	border: 0 none;
	border-bottom: 5px solid var(--blue);
	background-color: var(--grey-light);
	resize: none;
	float: left;
}

.blog #main #sidebar form button[type=submit] {
	width: 50px;
	height: 50px;
	border: 5px solid var(--blue);
	background-color: var(--blue);
	color: #fff;
	transition: all 260ms ease;
	cursor: pointer;
}

.blog #main #sidebar form button[type=submit]:hover {
	background-color: transparent;
	color: var(--blue);
}

.blog #main #sidebar #main-categories .info {
	height: 190px;
	position: static;
}

.blog #main #sidebar a.faq {
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid #eee;
	font-weight: 700;
	color: var(--black);
	float: left;
}

.blog #main #sidebar a.faq:hover,
.blog #main #sidebar a.faq.current {
	padding-left: 10px;
	color: var(--blue);
}

.single-post #main #blog article .thumbnail {
	position: sticky;
	top: 60px;
	left: 0;
}

.single-post #main #blog article .thumbnail.sticky {
	position: fixed;
	top: 142px;
}

.single-post #main #blog article .thumbnail.bottom {
	position: absolute;
	top: auto;
	bottom: 80px;
}

.single-post #main #blog article .thumbnail:hover img {
	transform: scale(1);
}

.single-post #main #blog article .thumbnail.sticky img {
	opacity: 0.7;
}

.single-post #main #blog article .thumbnail .hidden-title {
	padding: 20px;
	font-size: 15pt;
	font-weight: 700;
	overflow: hidden;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 3;
}

.single-post #main #blog article .thumbnail .hidden-title .title {
	transform: translateX(-150%);
	color: #fff;
	text-shadow: 0 0 3px black;
	transition: all 260ms ease;
}

.single-post #main #blog article .thumbnail.sticky .hidden-title .title {
	transform: translateX(0);
}

.share {
	width: 50px;
	margin-top: 70px;
	display: flex;
	flex-direction: column;
}

.share a {
	/* width: calc((100% / 3) - 1px); */
	width: 100%;
	height: 50px;
	padding-top: 12px;
	margin-right: 1px;
	font-size: 16pt;
	text-align: center;
	color: var(--black);
	background-color: var(--grey-light);
	float: left;
	position: relative;
}

.share a i {
	position: relative;
	z-index: 1;
}

.share a:hover {
	color: #fff;
}

.share a::after {
	content: '';
	width: 100%;
	height: 5px;
	background-color: var(--blue);
	transition: all 260ms ease;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.share a:hover::after {
	height: 100%;
}

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

#main #blog article .text.margin {
	margin-left: 320px;
}


.single-post #main #blog article h2,
.single-post #main #blog article h3,
.single-post #main #blog article h4,
.single-post #main #blog article h5,
.single-post #main #blog article h6 {
	width: 100%;
	margin-top: 25px;
	color: var(--black);
	float: left;
}

.single-post #main #blog article h1{
	width: 100%;
	color: var(--black);
	float: left;	
}

.single-post #main #blog article .text > div[class*="form"] {
	width: 100%;
	display: inline-block;
	margin: auto;
	text-align: center;
}

.single-post #main #blog article .text > div[class*="form"] form {
	border: 2px solid #eaeaea !important;
	border-radius: 5px !important;
}

.single-post #main #blog article p {
	width: 100%;
	margin: 20px 0 0 0;
	line-height: 24px;
	color: var(--black);
	float: left;
}

.single-post #main #blog article figure {
	width: fit-content;
	object-fit: cover;
	height: 100%;
	float: left;
	margin: 0;
}
.single-post #main #blog article figure img{
	float: left;	
}

.single-post #main #blog article .iframe-wrapper {
	width: 100%;
	height: 0;
	padding-bottom: 56.2%;
	position: relative;
	float: left;
}

.single-post #main #blog article .iframe-wrapper iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.single-post #main #blog article footer {
	display: none;
}

blockquote {
	background-color: var(--grey-light);
	padding: 10px;
	margin: 20px 0 0 0;
	border-left: 3px solid var(--blue-light);
	font-size: 18px;
	font-weight: 700;
	float: left;
}

blockquote p {
	margin: 0 !important;
}

blockquote a {
	float: left;
}

blockquote a:hover {
	text-decoration: none !important;
}

blockquote a::after {
	content: '';
	width: 7px;
	height: 7px;
	margin: 1px 5px 0 5px;
	border-top: 3px solid var(--blue);
	border-right: 3px solid var(--blue);
	transform: rotate(45deg);
	transition: all 280ms ease;
	position: relative;
	top: 7px;
    float: right;
}

blockquote a:hover {
	padding-left: 10px;
}

.single-post #main #blog article p a {
	color: var(--blue);
}

.single-post #main #blog article ul,
.single-post #main #blog article ol {
	width: 100%;
	margin: 20px 0 0 0;
	line-height: 24px;
	color: var(--black);
	float: left;
}

.single-post #main #blog article ul li {
	margin-bottom: 10px;
}

.single-post.postid-5089 #main #blog article ul li {
	padding-left: 10px;
	margin-bottom: 20px;
	border-left: 2px solid var(--black);
}

.single-post #main #blog article ol li {
	margin-left: 20px;
	list-style-type: decimal;
}

.single-post #main #blog article .related-product {
	width: 100%;
	padding: 10px;
	margin: 40px 0 20px;
	border: 2px dashed #eee;
	border-radius: 5px;
	float: left;
	position: relative;
}

.single-post #main #blog article .related-product .ribbon {
	padding: 10px;
	border-radius: 0 0 0 5px;
	font-weight: 700;
	color: #fff;
	background-color: var(--blue);
	justify-content: center;
	align-items: center;
	display: flex;
	position: absolute;
	top: -2px;
	right: -2px;
	z-index: 3;
}

.single-post #main #blog article .related-product .ribbon span {
	position: relative;
	z-index: 1;
}

.single-post #main #blog article .related-product .product-thumbnail {
	width: 150px;
	height: 150px;
	border: 1px solid #e8e9ea;
	overflow: hidden;
	float: left;
	position: relative;
}

.single-post #main #blog article .related-product .product-thumbnail img {
	width: 100%;
	height: auto;
	transition: all 260ms ease;
	float: left;
}

.single-post #main #blog article .related-product .product-thumbnail:hover {
	border: 1px solid var(--blue);
}

.single-post #main #blog article .related-product .product-thumbnail:hover img {
	transform: scale(1.2);
}

.single-post #main #blog article .related-product .product-text {
	width: calc(100% - 170px);
	margin-left: 20px;
	float: left;
}

.single-post #main #blog article .related-product .product-text h4 {
	font-size: 15pt;
	margin: 0 0 -10px 0;
}

.single-post #main #blog article .related-product .product-text .price {
	width: 100%;
	margin-top: 10px;
	font-weight: 700;
	color: var(--blue);
	float: left;
}

.single-post #main #blog article .related-product .product-text .price .old-price {
	font-size: 95%;
	color: #ccc;
}

.single-post #main #blog article iframe.wp-embedded-content {
	display: none;
}

.single-post ._form_3{
	width: 100%;
	display: inline-block;
	margin: auto;
	text-align: center;
}

.wrapper.small .content {
	width: 80%;
	padding-left: 30px;
	float: right;
}

.wrapper.small a {
	color: var(--blue);
}

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

.wrapper.small p,
.wrapper.small ul {
	width: 100%;
	margin-top: 0;
	margin-bottom: 20px;
	line-height: 24px;
	color: var(--black);
	float: left;
}

.wrapper.small ul li {
	margin-left: 20px;
	margin-bottom: 10px;
	list-style-type: square;
}

.wrapper.small h1,
.wrapper.small h2,
.wrapper.small h3,
.wrapper.small h4,
.wrapper.small h5,
.wrapper.small h6 {
	color: var(--black);
}

/* Footer */
#features-bar {
	width: 100%;
	height: 80px;
	margin-top: 60px;
	background-color: #e8e9ea;
	overflow: hidden;
	float: left;
	position: relative;
}

#features-bar::before {
	content: '';
	width: 20px;
	height: 80px;
	background-color: #e8e9ea;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

#features-bar::after {
	content: '';
	width: 150px;
	height: 80px;
	background: -moz-linear-gradient(left, rgba(232, 233, 234, 0) 0%, rgba(232, 233, 234, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(232, 233, 234, 0) 0%, rgba(232, 233, 234, 1) 100%);
	background: linear-gradient(to right, rgba(232, 233, 234, 0) 0%, rgba(232, 233, 234, 1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00e8e9ea', endColorstr='#a6e8e9ea', GradientType=1);
	position: absolute;
	right: 20px;
	top: 0;
	z-index: 10;
}

#features-bar .title-box {
	height: 100px;
	width: calc(20% + 40px);
	background-color: var(--blue);
	position: absolute;
	border-radius: 2px;
	left: -40px;
	top: -10px;
	transform: skew(-30deg);
}

#features-bar .title-box::after {
	content: '';
	width: 50px;
	height: 100px;
	background-color: var(--blue);
	transform: rotate(45deg);
}

#features-bar h5 {
	width: 100%;
	height: 100px;
	padding-left: 80px;
	padding-right: 20px;
	font-size: 11pt;
	color: #fff;
	transform: skew(30deg);
	float: left;
	position: relative;
	z-index: 1;
	display: table;
}

#features-bar h5 span {
	height: 100%;
	vertical-align: middle;
	display: table-cell;
}

#features-bar .features {
	width: calc(80% - 40px);
	margin-top: 30px;
	float: right;
}

#features-bar .features.owl-carousel .owl-stage-outer {
	height: 25px;
}

#features-bar .features span {
	margin-left: 16px;
	color: var(--black);
	font-weight: 700;
	font-size: 12pt;
	float: left;
}

#features-bar .features span:first-child {
	margin-left: 0;
}

#features-bar .features span i {
	width: 14px;
	height: 14px;
	margin-right: 2px;
	transform: rotate(45deg);
	position: relative;
	top: -4px;
	display: inline-block;
}


#features-bar .features span i::before {
	content: '';
	position: absolute;
	width: 3px;
	height: 13px;
	background-color: var(--blue);
	left: 11px;
	top: 2px;
}

#features-bar .features span i::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 3px;
	background-color: var(--blue);
	left: 6px;
	top: 12px;
}

#footer {
	width: 100%;
	padding-bottom: 20px;
	background-color: var(--grey-light);
	float: left;
}

#footer .wrapper {
	position: relative;
}

#footer #widgets,
#footer #copy {
	width: 100%;
	margin-top: 60px;
	float: left;
	position: relative;
	z-index: 1;
}

#footer #widgets .block {
	width: calc(100% / 3 - (100px / 3));
	margin-left: 50px;
	float: right;
}

#footer #widgets > div:last-child {
	margin-left: 0;
}

#footer #widgets .block .widget {
	width: 100%;
	margin-bottom: 30px;
	border-radius: 10px;
	background-color: #fff;
	float: left;
}

#footer #widgets .block .widget .widget-title {
	width: 100%;
	padding: 12px 0;
	font-size: 14pt;
	font-weight: 700;
	background-color: var(--blue);
	border-radius: 5px 5px 0 0;
	text-align: center;
	color: #fff;
	float: left;
}

#footer #widgets .block .widget > div,
#footer #widgets .block .widget ul {
	width: 100%;
	overflow: hidden;
	padding: 20px;
	float: left;
}

#footer #widgets .block .widget > div.menu-enlaces-de-interes-container {
	padding: 0;
}

#footer #widgets .block .widget ul li > ul {
	width: 100%;
	padding: 15px 0 15px 20px;
	float: left;
}

#footer #widgets .block .widget ul li {
	width: 100%;
	margin-bottom: 15px;
	float: left;
}

#footer #widgets .block .widget ul li a {
	width: 100%;
	line-height: 22px;
	font-weight: 700;
	color: var(--black);
	float: left;
}

#footer #widgets .block .widget ul.product-categories > li > a::before {
	content: '';
	width: 7px;
	height: 7px;
	margin: 1px 5px 0 0;
	border-top: 3px solid var(--black);
	border-right: 3px solid var(--black);
	transform: rotate(45deg);
	transition: all 280ms ease;
	position: relative;
	top: 4px;
	float: left;
}

#footer #widgets .block .widget ul li a:hover {
	transform: translateX(10px);
	color: var(--blue);
}

#footer #widgets .block .widget ul li a:hover::before {
	border-color: var(--blue);
}

#footer #widgets .block .widget .textwidget {
	color: var(--black);
}

#footer #widgets .block .widget .textwidget p,
#footer #widgets .block .widget .textwidget a {
	width: 100%;
	margin-top: 0;
	line-height: 24px;
	float: left;
}

#footer #widgets .block .widget .textwidget a {
	width: 100%;
	font-weight: 700;
	color: var(--black);
	float: left;
}

#footer #widgets .block .widget .textwidget a:hover {
	transform: translateX(10px);
	color: var(--blue);
}

#footer #widgets .block .widget .textwidget a i.fa-phone {
	transform: rotate(135deg);
}

#footer #copy {
	width: 100%;
	margin-top: 0;
	font-size: 10pt;
	color: var(--black);
	line-height: 24px;
	float: right;
}

#footer #copy .info {
	float: left;
}

#footer #copy .info p span {
	font-weight: 700;
}

#footer #copy .data {
	text-align: right;
	float: right;
}

#footer #copy .data a {
	color: var(--black);
}

#footer #copy .data a:hover {
	color: var(--blue);
}

/* WooCommerce */
#main .woocommerce-error,
#main .woocommerce-info,
#main .woocommerce-message {
	width: 100%;
	float: left;
}

#main .woocommerce-error a,
#main .woocommerce-info a,
#main .woocommerce-message a {
	color: var(--blue);
}

.woocommerce-page #main table a {
	color: var(--blue);
}

#main .checkout_coupon {
	width: 100%;
	float: left;
}

.woocommerce-cart #main table.cart img {
	width: 150px;
	height: 150px;
	border: 1px solid #e8e9ea;
}

.woocommerce-cart #main table.cart td,
.woocommerce-cart #main table.cart th {
	text-align: center;
}

.woocommerce-checkout #main .col2-set {
	width: 50%;
	padding-right: 20px;
	float: left;
}

.woocommerce-checkout #main h3 {
	padding: 3px;
	margin-bottom: 15px;
	font-weight: 700;
	color: var(--blue);
}

.woocommerce-checkout #main .col2-set .col-1,
.woocommerce-checkout #main .col2-set .col-2 {
	width: 100%;
	float: left;
}

.woocommerce-checkout #main .col2-set .col-2 {
	padding-top: 20px;
}

.woocommerce-checkout #main #order_review_heading {
	width: 50%;
	padding-bottom: 20px;
	padding-left: 20px;
	float: right;
}

.woocommerce-checkout #main #order_review {
	width: 50%;
	padding-left: 20px;
	float: right;
}

.woocommerce-cart #main .woocommerce-cart-form {
	width: 60%;
	padding-right: 20px;
	float: left;
}

.woocommerce-checkout #main .woocommerce-cart-form table tr:last-child td {
	padding: 0;
}

.woocommerce-checkout #main table.cart td.actions .coupon .input-text {
	width: 300px;
	height: 50px;
	padding-left: 20px;
	font-weight: 700;
	border: 0 none;
	border-radius: 0 0 0 5px;
}

.woocommerce-checkout #main table.cart td.actions input[type=submit] {
	height: 50px;
	border-radius: 0;
}

.woocommerce-checkout #main .woocommerce-cart-form input[name=update_cart] {
	border-radius: 0 0 5px 0;
	float: right;
}

.woocommerce-cart #main .cart-collaterals {
	width: 40%;
	padding-left: 20px;
	float: left;
}

.woocommerce-cart #main .cart-collaterals .cart_totals {
	width: 100%;
	float: left;
}

.woocommerce-cart #main .cart-collaterals .cart_totals h2 {
	width: 100%;
	margin-bottom: 20px;
	font-weight: 700;
	color: var(--blue);
	float: left;
}

.woocommerce-cart #main #respond input#submit.alt,
.woocommerce-cart #main a.button.alt,
.woocommerce-cart #main button.button.alt,
.woocommerce-cart #main input.button.alt,
.woocommerce-checkout #main #respond input#submit.alt,
.woocommerce-checkout #main a.button.alt,
.woocommerce-checkout #main button.button.alt,
.woocommerce-checkout #main input.button.alt {
	border: 2px solid var(--blue);
	background-color: var(--blue);
	transition: all 260ms ease;
}

.woocommerce-cart #main #respond input#submit.alt:hover,
.woocommerce-cart #main a.button.alt:hover,
.woocommerce-cart #main button.button.alt:hover,
.woocommerce-cart #main input.button.alt:hover,
.woocommerce-checkout #main #respond input#submit.alt:hover,
.woocommerce-checkout #main a.button.alt:hover,
.woocommerce-checkout #main button.button.alt:hover,
.woocommerce-checkout #main input.button.alt:hover {
	background-color: transparent;
	color: var(--blue);
}

.woocommerce-checkout #main form .form-row input.input-text {
	height: 50px;
	padding: 10px;
	border: 1px solid #e8e9ea;
	border-radius: 4px;
}

.woocommerce-checkout #main form .form-row.woocommerce-validated input.input-text {
	border: 1px solid var(--blue);
}

.woocommerce-checkout #main .select2-container .select2-selection--single {
	height: 50px;
	padding-top: 10px;
}

.woocommerce-checkout #main .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 50px;
}

.woocommerce-checkout #main #payment a {
	color: var(--blue);
}

.woocommerce-checkout #payment ul.payment_methods li img {
	width: 120px;
	position: relative;
	top: 4px;
}

.woocommerce-checkout #main #place_order {
	width: 100%;
	height: 75px;
	font-size: 18pt;
	transition: all 260ms ease;
	float: left;
}

.woocommerce-cart .woocommerce-store-notice,
.woocommerce-cart p.demo_store,
.woocommerce-checkout .woocommerce-store-notice,
.woocommerce-checkout p.demo_store,
.woocommerce-store-notice,
p.demo_store {
	width: 100%;
	margin: 0;
	padding: 15px 10px;
	text-align: center;
	color: #7dc8d1;
	background-color: #fff;
	border-bottom: 2px dashed var(--blue);
	position: fixed;
	top: 0;
	z-index: 99999;
}

.woocommerce-cart .woocommerce-store-notice a,
.woocommerce-cart p.demo_store a,
.woocommerce-checkout .woocommerce-store-notice a,
.woocommerce-checkout p.demo_store a,
.woocommerce-store-notice a,
p.demo_store a {
	color: var(--blue);
	text-decoration: underline;
}

p.demo_store a:hover {
	color: var(--black);
}

.woocommerce form .form-row#newsletter_compra_field {
	width: 100%;
	margin-top: 10px;
	float: left;
	display: none;
}

.woocommerce form .form-row#newsletter_compra_field label {
	font-weight: 700;
	color: var(--blue);
	font-size: 18px;
}

.woocommerce form .form-row textarea {
	min-height: 100px;
	padding: 10px;
	border: 1px solid #e8e9ea;
	border-radius: 4px;
	resize: vertical;
}

.cart-widget {
	width: calc(40% - 20px);
	margin-left: 20px;
	float: left;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 5px;
	text-align: center;
	border: 2px dashed var(--blue);
	color: var(--blue);
}

.page-thumbnail {
	width: 30%;
	float: right;
}

.page-thumbnail img {
	width: 100%;
}

.page-thumbnail a.button {
	width: 100%;
	padding: 20px;
	margin-top: 20px;
	border: 2px solid var(--blue);
	font-size: 16pt;
	border-radius: 5px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	background-color: var(--blue);
	color: #fff;
	float: left;
}

.page-thumbnail a.button:hover {
	background-color: transparent;
	color: var(--blue);
	text-decoration: none;
}

.page-text {
	width: 70%;
	padding-right: 20px;
	float: left;
}

.message-widget {
	width: 100%;
	padding: 0 10px;
	margin-top: -20px;
	margin-bottom: 40px;
	background-color: var(--blue);
	text-align: center;
	float: left;
	position: relative;
	z-index: 1;
}

.home .message-widget {
	margin-top: 0;
	margin-bottom: 0;
}

.message-widget p {
	padding: 10px 0 0 0;
	margin-top: 0;
	margin-bottom: 10px;
	font-weight: 400;
	font-size: 12pt;
	color: #fff;
	display: inline-block;
}

.message-widget .textwidget {
	display: inline-block;
}

.message-widget .textwidget i {
	margin-right: 5px;
	display: inline-block;
}

.message-widget .textwidget a:hover {
	text-decoration: underline;
}

/* Thank you */
/* 
#main .woocommerce{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.wrapper {
	display: flex;
	flex-direction: column;
}

 */



/* Popup */
.overlay-content {
	padding: 20px !important;
	color: var(--black);
}

.overlay-content h4 {
	width: 100%;
	padding-bottom: 5px;
	margin-bottom: 20px;
	border-bottom: 1px dashed var(--blue);
	font-size: 16pt;
	color: var(--blue);
	float: left;
}

.overlay-content p:empty {
	display: none;
}

.overlay-content .close-btn {
	display: inline-block;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--black);
	box-shadow: 0 0 0 transparent;
	border-radius: 4px;
	top: 10px;
	right: 10px;
}

.error404 #banner {
	margin-top: 0;
}

.error404 #main p {
	width: 100%;
	margin: 0;
	line-height: 26px;
	font-size: 18px;
	color: var(--black);
	float: left;
}

.error404 #main p a {
	color: var(--blue);
}

.error404 #main .content404,
.error404 #main .content {
	width: 80%;
	padding-left: 50px;
	float: left;
}

#disqus_thread {
	margin-bottom: 50px;
	float: left;
	width: 100%;
}

#disqus_thread a {
	color: var(--blue);
}

.kk-star-ratings {
	clear: both;
	float: left;
}

.kk-star-ratings.lft {
	clear: both;
	margin-top: 20px;
}

.woocommerce-cart .woocommerce-shipping-destination {
	display: none;
}

#whatsapp {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
	color: #fff;
	font-size: 30px;
	justify-content: center;
	align-items: center;
	display: flex;
	background-color: #25d366;
	animation-name: pop;
	animation-duration: 560ms;
	animation-delay: 1s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateX(calc(100% + 20px));
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 99;
}

@keyframes pop {
	0% {
		opacity: 0;
		transform: translateX(calc(100% + 20px));
	}

	70% {
		opacity: 1;
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}

}

.single-product #whatsapp {
	bottom: 140px;
}

.menu-resolvemos-sus-dudas-container {
	padding: 0 !important;
}

.woocommerce-form-coupon-toggle {
	display: none;
}

body.woocommerce-checkout table.cart img {
	width: 150px;
}

body.woocommerce-checkout table.cart td.product-name {
	font-size: 20px;
	font-weight: 700;
}

.cc-link {
	padding: 0;
}

/* Order received */

.woocommerce-order-received .wrapper .woocommerce{
	display: flex;
    flex-direction: column;
    width: 100%;
}

.woocommerce-order-received .wrapper .woocommerce .cart-empty,
.woocommerce-order-received .wrapper .woocommerce .return-to-shop{
	display: none;
}

.woocommerce-bacs-bank-details{

}

.woocommerce-order-received .woocommerce ul.order_details{
	border: 2px solid black;
    padding: 10px;
    width: 700px;
}

.woocommerce-order-received .woocommerce ul.order_details li strong{
	font-size: 1.6em;
}

.woocommerce-order-received .order-again{
	display: none;
}

.woocommerce-order-received .woocommerce-bacs-bank-details h2,.woocommerce-order-received .woocommerce-order-details__title{
	padding-bottom: 15px;
}

.woocommerce-order-received .wrapper .woocommerce .woocommerce-order-details{
	display: flex;
    flex-direction: column;
}

.woocommerce-order-received .wrapper .woocommerce h2.woocommerce-column__title{
	padding: 0 0 10px 0;
}

.woocommerce-order-received .woocommerce-order .woocommerce-customer-details > .addresses{
	display: grid;
	width: 100% !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.woocommerce-order-received .woocommerce-order .woocommerce-customer-details > .addresses .woocommerce-column--billing-address{
	grid-column: 1/ 2;
}

.woocommerce-order-received .woocommerce-order .woocommerce-customer-details > .addresses .woocommerce-column--shipping-address{
	grid-column: 2/ -1;
}

.woocommerce-order-received.woocommerce-checkout #main .col2-set .col-2{
	padding-top: 0;	
}

.woocommerce-order-received .woocommerce-order .woocommerce-customer-details address{
	padding: 9px 12px;
}
.woocommerce-order-received .woocommerce .woocommerce-order-details,
.woocommerce-order-received .woocommerce .woocommerce-customer-details{
	margin-bottom: 0;
}

.woocommerce-order-received .woocommerce ul.order_details li{
	padding-bottom: 10px;
	border-right: none;
}

#compartir{
	width: 115px;
    height: 45px;
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding-top: 0;
	position: fixed;
	z-index: 99;
	left: 10px;
    bottom: 10px;
    border-radius: 20px;
    box-shadow: 0 0 5px rgb(0 0 0 / 25%);
    font-size: 14px;
}

#compatir::after{
	display: none !important;
	visibility:  hidden;

}

.share a.compartir::after{
	display: none !important;
	visibility:  hidden;
}

/* icons */


#footer #widgets .textwidget a{
	display: flex;
}

#header #top .contact .phone{
	display: flex;
	align-items: center;
}
#header #top .contact .phone strong{
	padding-left: 5px;
}
#header #top .contact .phone svg{
	transform: rotate(45deg);
}
#main .share a svg{
	position: relative;
	z-index: 9;
	transition: color .3 easy;
}
#main .share a:hover .svg{
	fill: white;
	color: white;
}

.gg-search {
	box-sizing: border-box;
	position: relative;
	display: block;
	transform: scale(var(--ggs, 1));
	width: 16px;
	height: 16px;
	border: 2px solid;
	border-radius: 100%;
	margin-left: -4px;
	margin-top: -4px
}

.gg-search::after {
	content: "";
	display: block;
	box-sizing: border-box;
	position: absolute;
	border-radius: 3px;
	width: 2px;
	height: 8px;
	background: currentColor;
	transform: rotate(-45deg);
	top: 10px;
	left: 12px
}

.woocommerce-checkout .shipping_address {
	display: none;
}

.woocommerce form .form-row select {
	height: 50px;
	padding: 10px;
	border: 1px solid #e8e9ea;
	border-radius: 4px;
}

.woocommerce-checkout label[for="coupon_code"] {
	display: none;
}