/* Mejora en la declaración de fuentes para compatibilidad */
@font-face {
	font-family: "PF Centro Sans Pro";
	src: url(PFCentroSansPro/PFCentroSansPro-Regular.woff) format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap; /* Mejora el rendimiento */
}

@font-face {
	font-family: "Pragmatica Extended";
	src: url(Pragmatica/PragmaticaExtended-Book.woff) format("woff");
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

/*@import url("Pragmatica/stylesheet.css");*/

:root {
	--primary-color: rgba(225, 155, 0, 1);
	--secondary-color: rgba(250, 235, 215, 1);


	--tertiary-color: rgba(127, 179, 192, 1);

	--primary-contrast-color: rgba(244, 162, 97, 1);
	--secondary-contrast-color: rgba(233, 196, 106, 1);

	--btn-primary-color: rgba(21, 96, 100, .9);
	--btn-primary-color-hover: rgba(21, 96, 100, .7);

	--primary-background-color: rgba(243, 226, 214, 1);
	--secondary-background-color: rgba(245, 241, 230, 1);
	--tertiary-background-color: rgba(235, 249, 241, 1);

	--bgPositivePrimary: rgba(16, 196, 76, 1);

	--error-color: #dc3545;
	--accent-color: #ff6b6b;
	--light-color: #f8f9fa;
	--dark-color: #343a40;
	--success-color: #28a745;
}

html,
body {
	width: 100%;
	height: 100vh;
	margin: 0 auto;
	font-size: 18px;
	padding: 0;
}

body {
	font-family: "PF Centro Sans Pro", Arial, sans-serif;
	background-color: #080000;

	color: var(--primary-color);
}

h1 {
	margin: 0;
	padding: 0;
	font-weight: 800;
	line-height: 1.6rem;
	font-size: 1.7rem;
	letter-spacing: 1px;
	/*text-transform: uppercase;*/
}

h2 {
	margin: 0;
	padding: 0;
	font-weight: 700;
	line-height: 1.6rem;
	font-size: 1.7rem;
	letter-spacing: 1px;
}

h3 {
	margin: 0;
	padding: 0;
	font-weight: 700;
	line-height: 1.2rem;
	font-size: 1.3rem;
	letter-spacing: 1px;
}

h4 {
	margin: 0;
	padding: 0;
	font-weight: 600;
	line-height: 1.1rem;
	font-size: 1.2rem;
	letter-spacing: 1px;
}

.headerContainer {
	position: relative;
	float: left;
	width: 100%;
	background-color: #000;
}

.headerTop {
	position: fixed;
	top: 0;
	left: 0;
	float: left;
	width: 100%;
	height: 150px;
	background-color: #000;
	z-index: 1;
}

.social {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	float: left;
	width: -webkit-calc(50% - 50px);
	width: calc(50% - 50px);
	height: 70px;
	padding-left: 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.social img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
}

.headerPhone {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
}

.headerPhone span {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}

.headerPhone span:nth-child(2) {
	margin-top: 5px;
}

.headerPhone::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 25px;
	height: 25px;
	background-image: url(../../public/images/icons/icon-phone-orange.png);
	background-repeat: no-repeat;
	background-size: 25px;
}

.headerPhone a {
	margin-left: 30px;
	color: var(--primary-color);
	text-decoration: none;
}

.logo {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	float: left;
	width: 100px;
}

.logo img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.actions {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	position: relative;
	float: left;
	width: -webkit-calc(50% - 50px);
	width: calc(50% - 50px);
	height: 70px;
	padding-right: 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.actionLogin,
.actionReg,
.actionCart {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: relative;
	float: left;
	width: auto;
	height: 40px;
	cursor: pointer;
}

.actionLogin {
	margin-right: 10px;
}

.actionLogin a {
	display: block;
	width: auto;
	height: 20px;
}

/* Temporal */
.actionLogin a:hover {
	cursor: auto;
}

.actionLogin img {
	width: 20px;
	height: 20px;
}


.actionReg {
	margin-right: 10px;
}

.actionReg img {
	width: 20px;
	height: 20px;
}

.actionReg a {
	display: block;
	width: auto;
	height: 20px;
}

/* Temporal */
.actionReg a:hover {
	cursor: auto;
}

.actionCart {
	display: none;
	position: fixed;
	float: left;
	top: 100px;
	right: 50px;
	width: 90px;
	height: 90px;
	border-radius: 5px;
	background-color: #fff;
	padding: 15px;
	box-sizing: border-box;
	z-index: 10;


	border: 1px solid #fff;
}

.actionCart img {
	width: 40px;
	height: 40px;
}

.actionLogin span,
.actionReg span,
.actionCart span {
	position: relative;
	float: left;
	text-align: center;
	font-size: .7rem;
	color: var(--primary-color);
}


.actionCartStatus {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5px;
	right: 10px;
	width: 20px;
	height: 20px;
	background-color: var(--primary-color);
	border-radius: 50%;
	border: none;
	font-size: .9rem;
	color: #fff;
	text-align: center;
	z-index: 1;
}

.menuTop {
	position: relative;
	float: left;
	width: 100%;
	background-color: #000;
	/* #262626;*/
}

.menuItems {
	position: relative;
	float: left;
	width: 100%;
}

#menuResponseIcon {
	display: none;
}

.menuItems ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	float: left;
	width: 100%;
	margin: 0;
	padding: 10px 100px 20px 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.menuItems ul li {
	width: auto;
	list-style: none;
	/*font-family: "Helvetica", Arial, Pragmatica, sans-serif;*/
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.menuItems ul li a {
	text-decoration: none;
	color: var(--primary-color);
}

.linkActive {
	border-bottom: 2px solid var(--primary-color);
}

.socialIcon {
	display: flex;
	justify-content: center;
	align-items: center;
	float: left;
}

.bannerTop {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 150px;
	text-align: center;
}

.bannerTop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/*object-position: 100% 20%;*/
}

#show, #choice, #set, #aboutUs {
  scroll-margin-top: 160px; /* Altura del header fijo + un pequeño margen extra */
}

.pageTitle {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	position: absolute;
	top: 70px;
	left: 50%;
	width: 40%;
	text-shadow: 3px 3px 4px #000;
	border: 1px solid var(--primary-color);
	transform: translate(-50%, 0);
	padding: 25px 20px;
	box-sizing: border-box;
}

.pageTitle a {
	display: block;
	margin-top: 20px;
	width: 60%;
	background-color: var(--secondary-color);
	border-radius: 10px;
	color: #000;
	font-size: 1.5rem;
	font-weight: 700;
	text-shadow: none;
	text-decoration: none;
	padding: 10px 20px;
	box-sizing: border-box;
}

.featuresTitle {
	position: relative;
	float: left;
	width: 100%;
}

.featuresMainImage {
	position: relative;
	float: left;
	width: 350px;
	margin-top: -5px;
}

.pageTopDescription  {
	position: relative;
	float: left;
	margin-top: -230px;
	margin-left: 50%;
	width: 55%;
	transform: translate(-50%);
	border: 2px solid var(--primary-color);
	border-radius: 10px;
	padding: 20px;
	box-sizing: border-box;
}

.pageTopDescription h2 {
	font-size: 1.2rem;
}

.pageTopDescription .descriptionText  {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 5px;
	font-size: 1rem;
}

.pageTopDescription span {
	display: block;
	position: relative;
	float: left;
	margin-top: 5px;
}

.pageTopDescription span:first-child {
	margin-bottom: 5px;
	font-weight: 600;
}
.menuItem {
	position: relative;
	float: left;
	margin-top: 40px;
	margin-left: 150px;
	width: auto;
}

.menuItem span {
	display: inline-block;
	width: auto;
	height: 30px;
	margin-left: 10px;
	font-size: 1rem;
	color: #fff;
}

.menuItem span:first-child {
	margin-left: 0;	
}
.menuItem span a {
	text-decoration: none;
	color: var(--primary-color);
}

.menuItem span a:hover {
	color: var(--bgPositivePrimary);
	cursor: pointer;
}

.menuItem span a::after {
	content: "";
	display: inline-block;
	position: relative;
	margin-bottom: -5px;
	width: 20px;
	height: 20px;
	background-image: url(../../public/images/icons/icon-arrow-right.png);
	background-position: 0;
	background-size: 100%;
}

.partySetsTitle {
	position: relative;
	float: left;
	margin-top: 20px;
	margin-left: 50%;
	width: 100%;
	text-align: center;
	text-shadow: 3px 3px 4px #000;
	transform: translate(-50%, 0);
}

.mainContainer {
	position: relative;
	float: left;
	width: 100%;
	min-height: 100%;
	padding: 0 150px 30px 150px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.partySets {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 20px;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 100px;
}

.sectionSet {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 50px;
}

.primarySection {
	margin-top: 20px;
}

.sectionSetTitle {
	position: relative;
	float: left;
	margin-left: 50%;
	width: 100%;
	text-align: center;
	text-shadow: 3px 3px 4px #000;
	transform: translate(-50%, 0);
}

.partySet {
	position: relative;
	float: left;
	border-radius: 20px;
	background-color: #fff;
	color: #000;
	text-align: center;
	padding: 20px;
	box-sizing: border-box;
}

.partySet img {
	margin-top: -35%;
	width: 100%;
	border-radius: 50%;
	transition: transform 2s ease;
}

.partySet img:hover {
	/*transform: rotate(20deg);*/
	transform: rotate(20deg) scale(1.02);
	/* Rotar y agrandar */
	transform-origin: center;
	/* Predeterminado: centro */
}

.setName {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.setTitle {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 2px;
	font-size: .9rem;
	font-weight: 500;
}

.setDescription {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
	font-size: .8rem;
	line-height: 1.1rem;
	opacity: .9;

	/* Permitir 3 reglones en el texto */
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow-x: hidden;
	overflow-y: hidden;
	-ms-line-clamp: 3;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	display: -webkit-box;
	display: box;
	word-wrap: break-word;
	-webkit-box-orient: vertical;
}

.setPrice {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 15px;
	font-size: 1.5rem;
	font-weight: 700;
}

.setData form {
	display: block;
	float: left;
	width: 100%;
	height: auto;
}

.BtnItemSelect {
	width: 80%;
	margin-top: 20px;
	border-radius: 20px;
	border: none;
	background-color: var(--primary-color);
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	padding: 7px 0;
	box-sizing: border-box;
}

.BtnItemSelect:hover {
	background-color: var(--secondary-color);
	color: var(--primary-color);
	cursor: pointer;
}

.benefits {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 80px;
}

.benefitsIntroduction {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	font-size: 1rem;
}

.benefitsContent {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 40px;
}

.benefit {
	position: relative;
	float: left;
	width: 100%;
	border-radius: 20px;
	background-color: antiquewhite;
	padding: 20px;
	box-sizing: border-box;
}

.benefitImg {
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid var(--primary-color);
	padding: 10px 20px 30px 20px;
	box-sizing: border-box;
}

.benefitImg img {
	width: 70%;
	height: 70%;
}

.benefitTitle {
	position: relative;
	float: left;
	margin-top: 20px;
	text-align: center;
	/* Controla el contenido largo */
	overflow-wrap: break-word;
	word-wrap: break-word;
	hyphens: auto;
}

.benefitDescription {
	position: relative;
	float: left;
	margin-top: 10px;
	line-height: 1.2rem;
	font-size: 1rem;
	opacity: .8;
}

.recommendedCases {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 80px;
}

.recommendedCase {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 30px;
	font-size: 1rem;
}

.caseOffice, .caseHome, .caseParty {
	text-indent: 40px;
}

.caseOffice::before, .caseHome::before, .caseParty::before {
	content: "";
	position: absolute;
	top: -5px;
	left: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background-color: antiquewhite;
	background-image: url("/public/images/icons/icon-office.png");
	background-repeat: no-repeat;
	background-size: 25px;
	background-position: center;
}

.caseHome::before {
	background-image: url("/public/images/icons/icon-home.png");
}

.caseParty::before {
	background-image: url("/public/images/icons/icon-party.png");
}

.recommendedCase span {
	display: block;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
}

.hits {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 80px;
}


.gallery {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	grid-template-rows: auto auto;
	gap: 10px;
	position: relative;
	float: left;
	margin-top: 30px;
	width: 100%;
	height: 500px;
}

.image-1 {
	grid-row: span 2;
	/* abarca desde la fila 1 hasta la 3 (2 filas) */
}

.gallery>div {
	position: relative;
	float: left;
	overflow: hidden;
	/* para mantener el recorte si se usa object-fit */
}

.gallery img {
	display: block;
	/* elimina espacio extra debajo de la imagen */
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* ajusta la imagen sin deformarla, cubriendo el área */
}

.imagenCaption {
	position: absolute;
	left: 1%;
	top: 5px;
	width: 98%;
	border-radius: 10px;
	background-color: antiquewhite;
	font-size: .8rem;
	padding: 10px;
	box-sizing: border-box;
}

.image-1 .imagenCaption {
	top: auto;
	bottom: 5px;
}

.faqInPage {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 80px;
}

.faqInPage .faq {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
	font-size: 1rem;
}

.faqInPage .faq .answer {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 5px;
}

.faqInPage .faq .answer p {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 2px;
}

.faqInPage .faq .answer span {
	display: block;
	position: relative;
	float: left;
	width: 100%;
	line-height: 1.2rem;
}

.faqInPage .faq .answer a {
	color: #fff;
}

.aboutUs {
	position: relative;
	float: left;
	margin-top: 80px;
	margin-left: -150px;
	width: calc(100% + 300px);
	background-color: antiquewhite;
	background-image: url("../../public/images/banners/shef.png");
	background-size: auto 110%;
	background-position: 90% 55%;
	background-repeat: no-repeat;
	padding: 0px 150px 50px 150px;
	box-sizing: border-box;
}

.aboutUsContent {
	position: relative;
	float: left;
	width: 50%;
	font-size: 1.1rem;
	line-height: 1.2rem;
}

.aboutUsTitle {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 50px;
}

.aboutUsBrand {
	position: relative;
	float: left;
	margin-top: 20px;
	width: 100%;
	padding-right: 50px;
	box-sizing: border-box;
}

.aboutUsBrand span {
	font-size: 1.2rem;
	font-weight: 600;
}

.aboutUsProcess {
	position: relative;
	float: left;
	margin-top: 20px;
	width: 100%;
	padding-right: 50px;
	box-sizing: border-box;
}

.aboutUsImage {
	position: relative;
	float: left;
	width: 100%;



	border: 1px solid red;
	box-sizing: border-box;
}

.aboutUsImage img {
	width: 100%;
	max-height: 600px;
	overflow: hidden;
	-o-object-fit: cover;
	object-fit: cover;
	object-position: 100% 50%;
}

.reviews {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto auto;
	column-gap: 20px;
	row-gap: 40px;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 80px;
}

.reviewsTitle {
	grid-column-start: 1;
	grid-column-end: 3;
}

.reviewsImg {
	grid-column-start: 1;
	grid-column-end: 2;
	padding: 30px;
	box-sizing: border-box;
}

.reviewsImg img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
	object-fit: cover;
}

.reviewsContent {
	grid-column-start: 2;
	grid-column-end: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 20px;
	box-sizing: border-box;
}

.review {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
	border: 1px solid antiquewhite;
	border-radius: 20px;
	background-color: antiquewhite;
	padding: 50px;
	box-sizing: border-box;
}

.reviewUserPhoto {
	position: relative;
	float: left;
	width: 30%;
}

.reviewUserPhoto img {
	width: 80%;
	height: 80%;
	border-radius: 50%;
}

.reviewUserName {
	position: relative;
	float: left;
	width: 70%;
	text-align: left;
	font-size: 1.2rem;
	font-weight: 600;
	padding: 10px 0;
	box-sizing: border-box;
}

.reviewContent {
	position: relative;
	float: left;
	width: 100%;
	line-height: 1.3rem;
	font-size: 1rem;
	padding: 10px 0;
	box-sizing: border-box;
	opacity: .8;
}

/* Popup */
.popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.7);
	animation: fadeIn 0.3s ease;
	z-index: 10;
}

.popup-content {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 40%;
	max-height: 85vh;
	overflow-x: hidden;
	overflow-y: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	background: white;
	border-radius: 15px;
	transform: translate(-50%, -50%);
	animation: popupSlide 0.3s ease;
	padding: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
}

.close-popup {
	display: flex;
	align-items: center;
	justify-content: center;
	position: sticky;
	float: right;
	top: 2px;
	right: 2px;
	width: 40px;
	height: 40px;
	border: none;
	border-radius: 50%;
	background-color: #f0f0f0;
	font-size: 40px;
	color: #666;
	transition: background 0.3s;
	cursor: pointer;
	z-index: 13;
}

.close-popup:hover {
	background: #f0f0f1;
	color: var(--primary-color)
		/*#333*/
	;
}

/* Animaciones del popup */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes popupSlide {
	from {
		opacity: 0;
		/*transform: translate(-50%, -60%);*/
	}

	to {
		opacity: 1;
		/*transform: translate(-50%, -50%);*/
	}
}

/* Set */
.setContainer {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 30px;
}

.setImg {
	position: relative;
	float: left;
	width: 60%;
}

.setImg img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.setData {
	position: relative;
	float: left;
	width: 40%;
	height: auto;
	color: #fff;
	padding-left: 40px;
	box-sizing: border-box;
}

.setPrice {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
	font-size: 1.2rem;
	font-weight: 700;
}

.setSection {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.setSection label {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
}

.setSection select {
	width: auto;
	max-width: 100%;
	height: 30px;
	margin-top: 5px;
	border: 1px solid #ccc;
	outline: none;
	cursor: pointer;
}

.radioSauceSelect {
	display: grid;
	grid-template-columns: 30px auto;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 5px;
}

.radioSauceSelect input[type="radio"] {
	position: relative;
	float: left;
	width: 15px;
	height: 15px;
	cursor: pointer;
}

.radioSauceSelect label {
	position: relative;
	float: left;
	font-weight: normal;
	cursor: pointer;
}

.radioSauceSelect img {
	width: 50px;
	margin-bottom: -7px;
}

.custom-select {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.select-header {
	display: flex;
	align-items: center;
	position: relative;
	width: 300px;
	height: 30px;
	margin-top: 25px;
	border: 1px solid #ccc;
	font-size: 1rem;
	padding: 0 5px;
	box-sizing: border-box;
	cursor: pointer;
}

.select-header:after {
	content: "";
	position: absolute;
	top: 10px;
	right: 5px;
	width: 5px;
	height: 5px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(135deg);
}

.select-header img {
	margin-left: 5px;
	width: 50px;
	height: auto;
}

#selected-icon {
	display: none;
}

.select-options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 300px;
	border: 1px solid #ccc;
	background: white;
	z-index: 100;
}

.option-item {
	display: flex;
	align-items: center;
	height: 25px;
	color: #000;
	font-size: 1rem;
	padding: 0 5px;
	box-sizing: border-box;
	cursor: pointer;
}

.option-item:hover {
	background: #4d52f8;
	color: #fff;
}

.option-item img {
	margin-left: 5px;
	width: 50px;
	height: auto;
}

.setSection input[name="sauce_add_qty"] {
	position: relative;
	float: left;
	margin-top: 5px;
	width: 200px;
	height: 25px;
	border: 1px solid #ccc;
	outline: none;
}

.btnMakeOrder {
	width: auto;
	margin-top: 50px;
	border-radius: 20px;
	border: none;
	background-color: var(--primary-color);
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	padding: 7px 30px;
	box-sizing: border-box;
}

.btnMakeOrder:hover {
	background-color: var(--secondary-color);
	color: var(--primary-color);
	cursor: pointer;
}

/* Estilos de la carpeta */
.folder-container {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 40px;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

/* Lengüetas de la carpeta */
.folder-tabs {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.folder-tab {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: auto;
	margin-right: 5px;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.05);
	border-radius: 8px 8px 0 0;
	border: 1px solid #d1d9e6;
	border-bottom: none;
	background-color: var(--secondary-color);
	text-align: center;
	font-weight: 500;
	font-size: 1rem;
	color: #000;
	transition: all 0.3s ease;
	padding: 5px 10px;
	box-sizing: border-box;
	cursor: pointer;
}

.folder-tab:hover {
	background-color: #dfe5ee;
	color: #4a5a6d;
}

.folder-tab.active {
	box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.08);
	/*
	border-bottom: 1px solid #f9f9f9;
	margin-bottom: -1px;
	*/
	background-color: #f9f9f9;
	color: var(--primary-color);
	/*#3498db;*/
	z-index: 15;
}

.folder-tab i {
	margin-right: 8px;
	font-size: 1.1rem;
}

/* Contenido de la carpeta */
.folder {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 30px;
	border: 1px solid rgba(243, 243, 243, .4);
	border-radius: 0 0 8px 8px;
	background-color: #080000;
	box-shadow: 2px 2px 2px #fff;
	/* var(--secondary-color);rgba(0, 0, 0, 0.05);*/
	overflow: hidden;
}

.folder-content {
	position: relative;
	float: left;
	width: 100%;
	display: none;
	animation: fadeIn 0.5s ease;
	padding: 20px;
	box-sizing: border-box;
}

.folder-content.active {
	display: block;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.content-icon {
	font-size: 2.5rem;
	color: #3498db;
	margin-bottom: 20px;
}

.content-title {
	position: relative;
	float: left;
	width: 100%;
}

.content-title span {
	width: 100%;
	border-bottom: 2px solid var(--primary-color);
	font-size: 1.1rem;
	padding-bottom: 2px;
	box-sizing: border-box;
}

.content-text {
	position: relative;
	float: left;
	width: 100%;
	text-align: left;
	line-height: 1.2rem;
	font-size: 1rem;
	opacity: .9;
}

.content-text p {
	position: relative;
	width: 100%;
	font-size: 1.1rem;
	font-style: italic;
	margin-top: 15px;
	margin-bottom: 5px;
}

.content-text span {
	display: inline-block;
	position: relative;
	width: 100%;
	font-size: 1rem;
	margin-top: 15px;
}

.content-text span:first-child {
	margin-top: 0;
}

/* Efectos de carpeta realista */
.folder_::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 10px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
}

.folder_::after {
	content: "";
	position: absolute;
	bottom: 10px;
	right: 10px;
	width: 50px;
	height: 10px;
	background-color: rgba(0, 0, 0, 0.03);
	border-radius: 50%;
}

/* Order */
.orderContainer {
	position: relative;
	float: left;
	width: 100%;
	height: 100%;
	color: #000;
}

.orderTitle {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}

.inviteToBuy {
	position: relative;
	float: left;
	width: auto;
	height: auto;
	margin-top: 5px;
	font-size: .9rem;
	color: #fff;
	border-radius: 5px;
	background-color: var(--btn-primary-color);
	padding: 3px 15px;
	box-sizing: border-box;
	cursor: pointer;
}

.inviteToBuy a {
	width: 100%;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	padding: 2px 20px;
	box-sizing: border-box;
}

.orderContent {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.orderItem {
	display: grid;
	grid-template-columns: 1.4fr 0.6fr;
	grid-template-rows: auto auto;
	gap: 5px;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 5px;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 15px 0;
	box-sizing: border-box;
}

.ordenItemDataSection {
	position: relative;
	float: left;
}

.ordenItemDataSection:nth-child(2) {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.orderItemImg {
	position: relative;
	float: left;
	width: 80px;
}

.orderItemImg img {
	width: 100%;
	border-radius: 8px;
}

.orderItemData {
	position: relative;
	float: left;
	width: calc(100% - 80px);
	padding: 0 20px;
	box-sizing: border-box;
}

.orderItemName {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
}

.orderItemItems {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 5px;
	font-size: .8rem;
	opacity: .7;
}

.orderItemItems span {
	display: inline-block;
	position: relative;
	width: 100%;
}

.orderItemItems img {
	margin-bottom: -7px;
	width: 50px;
}

.orderItemQty {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	float: left;
	width: 80px;
}

.orderItemQty input[name="imageSubmit"] {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: 1px solid #ccc;
	opacity: .6;
}

.orderItemQty input[name="imageSubmit"]:hover {
	background-color: #ccc;
	opacity: 1;
}

.orderItemQty input[name="quantity"] {
	width: 50px;
	border: none;
	outline: none;
	text-align: center;
	padding: 0 2px;
	box-sizing: border-box;
}

/* Quitar flechas en input qty */
.orderItemQty input[name="quantity"]::-webkit-outer-spin-button,
.orderItemQty input[name="quantity"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.orderItemPrice {
	position: relative;
	float: left;
	width: 100px;
	text-align: center;
	font-size: 1rem;
}

.orderItemQtyDel {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	float: left;
	width: 40px;
}

.orderItemQtyDel img {
	width: 20px;
	cursor: pointer;
}

.deliveryOrder {
	position: relative;
	float: left;
	width: 100%;
	border-bottom: 1px solid #ccc;
	text-align: right;
	padding: 20px 0;
	box-sizing: border-box;
}

.deliveryOrder span:first-child {
	display: inline-block;
	position: relative;
	font-size: 1rem;
	font-weight: 300;
}

.deliveryOrder span:nth-child(2) {
	display: inline-block;
	position: relative;
	width: 100px;
	font-size: 1rem;
	font-weight: 500;
}

#deliveryOrder {
	display: none;
}


.orderItemsTotal {
	position: relative;
	float: right;
	margin-top: 30px;
	text-align: right;
}

.orderItemsTotal span:first-child {
	display: inline-block;
	position: relative;
	font-size: 1.2rem;
	font-weight: 400;
}

.orderItemsTotal span:nth-child(2) {
	display: inline-block;
	position: relative;
	width: 100px;
	font-size: 1.2rem;
	font-weight: 600;
}

.emptyCart {
	position: relative;
	float: left;
	width: 100%;
	height: auto;
	margin-top: 30px;
	background-color: #ffdddd;
	border: 1px dashed var(--primary-contrast-color);
	color: var(--primary-color);
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Order form */
.orderForm {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
	padding: 0 10px;
	box-sizing: border-box;
}

.orderForm .orderFormSection {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 25px;
}

.orderForm .orderFormSection label {
	position: relative;
	float: left;
	width: 100%;
	color: var(--primary-color);
	font-size: 1.05rem;
	font-weight: 500;
}

.orderForm .orderFormSection .mediaOutlet {
	position: relative;
	float: left;
	width: 50%;
}

.orderForm .orderFormSection .userPhone {
	position: relative;
	float: left;
	width: calc(50% - 20px);
	margin-left: 20px;
}

.orderForm .orderFormSection .userEmail {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
}

.orderForm .orderFormSection select {
	position: relative;
	float: left;
	width: 100%;
	height: 45px;
	margin-top: 10px;
	border: none;
	outline: none;
	/*
	-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
	*/
	aspect-ratio: var(--bgPositivePrimary);
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.04);
	font-size: 1rem;
	padding: 0 10px;
	box-sizing: border-box;
}

.orderForm .orderFormSection select option {
	width: 100%;
	height: 45px;
	border: none;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.04);
	outline: none;
	font-size: 1rem;
	padding: 0 10px;
	box-sizing: border-box;
}

.orderForm .orderFormSection input[type="text"] {
	position: relative;
	float: left;
	width: 100%;
	height: 45px;
	margin-top: 10px;
	border: none;
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.04);
	outline: none;
	font-size: 1rem;
	padding: 0 10px;
	box-sizing: border-box;
}

#deliveryOptionPersonal,
#deliveryOptionCourier {
	display: flex;
	align-items: center;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	color: #000;
	font-size: 1rem;
	font-weight: normal;
	cursor: pointer;
}

.orderForm .orderFormSection input[type="radio"] {
	width: 20px;
	height: 20px;
	margin-right: 15px;
}

.orderForm .orderFormSection .deliveryDate {
	position: relative;
	float: left;
	width: 50%;
}

.orderForm .orderFormSection .deliveryDate input {
	cursor: pointer;
}

.orderForm .orderFormSection .deliveryTime {
	position: relative;
	float: left;
	width: calc(50% - 20px);
	margin-left: 20px;
}

.orderForm .orderFormSection .deliveryTime select option:disabled:checked {
	color: #999;
}

.orderForm .orderFormSection textarea {
	position: relative;
	float: left;
	width: 100%;
	height: 50px;
	max-width: 100%;
	max-height: 50px;
	margin-top: 10px;
	font-size: 1rem;
	padding: 10px;
	box-sizing: border-box;
}

.orderForm .orderFormSection textarea::placeholder {
	font-size: .8rem;
}

.orderForm .orderFormSection .rules {
	position: relative;
	float: left;
	width: 100%;
}

.orderForm .orderFormSection .rules span {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}

.orderForm .orderFormSection .rules span:nth-child(2) {
	margin-top: 15px;
}

.orderForm .orderFormSection .rules input[name=rules],
.orderForm .orderFormSection .rules input[name=advertising_mailings] {
	position: absolute;
	top: -5px;
	left: 0;	
	width: 20px;
	height: 20px;
	margin-top: 7px;
	cursor: pointer;
}

.orderForm .orderFormSection .rules label {
	display: block;
	position: relative;
	float: left;
	text-indent: 40px;
	font-size: 1rem;
	font-weight: normal;
}

.orderForm .orderFormSection .rules label:hover {
	cursor: pointer;
}

.orderForm input[name="order_submit"] {
	width: 90%;
	height: 40px;
	margin-top: 50px;
	margin-left: 5%;
	margin-bottom: 60px;
	border-radius: 20px;
	border: none;
	background-color: var(--primary-color);
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	padding: 7px 0;
	box-sizing: border-box;
}

.orderForm input[name="order_submit"]:hover {
	cursor: pointer;
}

.popup-content .orderSuccessful {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 15px;
	line-height: 1.2rem;
	font-size: 1.1rem;
	text-align: center;
	border: 1px solid green;
	border-radius: 5px;
	background-color: rgba(8, 117, 6, 0.2);
	padding: 20px;
	box-sizing: border-box;
	opacity: .9;
}

.orderForm .showErrors {
	position: relative;
	float: left;
	width: 100%;
	line-height: 1.2rem;
	font-size: 1rem;
	margin-top: 15px;
	border: 1px dashed var(--primary-contrast-color);
	border-radius: 5px;
	background-color: rgba(158, 10, 10, 0.2);
	padding: 20px;
	box-sizing: border-box;
	opacity: .9;
}

/* /Order form */





/* /Order */





/* Item */
.currentItem {
	position: relative;
	float: left;
	width: 100%;
	padding: 100px 150px;
	box-sizing: border-box;
}

.currentItemImg {
	position: relative;
	float: left;
	width: 60%;
}

.currentItemImg img {
	width: 100%;
	height: 100%;
	border-radius: 20px;
}

.currentItemData {
	position: relative;
	float: left;
	width: 40%;
	height: auto;
	color: #000;
	padding-left: 40px;
	box-sizing: border-box;
}

.currentItemName {
	position: relative;
	float: left;
	width: 100%;
}

.currentItemPrice {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
	font-size: 1.2rem;
	font-weight: 700;
}

.currentItemSelect {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.currentItemSelect label {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	font-weight: 600;
}

.currentItemSelect select {
	width: auto;
	max-width: 100%;
	height: 30px;
	margin-top: 5px;
	border: 1px solid #ccc;
	cursor: pointer;
}

.currentItemSelect input[name="sauce_add_qty"] {
	position: relative;
	float: left;
	margin-top: 5px;
	width: 200px;
	height: 25px;
	border: 1px solid #ccc;
}

/* /Item */


/* ////////////////////////////////////////////// */


/* Login */
.loggedMsg {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1em;
	font-style: italic;
	padding: 0 10px 20px 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: .8;
}

/* courses */
.courseContainer {
	position: relative;
	float: left;
	width: 100%;
	height: 250px;
	margin-bottom: 30px;
	background-color: #262626;
}

.courseInfo {
	position: relative;
	float: left;
	width: -webkit-calc(100% - 300px);
	width: calc(100% - 300px);
}

.courseTitle {
	position: relative;
	float: left;
	width: 100%;
	color: #fff;
	padding-left: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.courseDescription {
	position: relative;
	float: left;
	width: 100%;
	height: 110px;
	font-size: 1.2em;
	color: #fff;
	padding: 5px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	opacity: .7;
}

.courseAction {
	position: relative;
	float: left;
	width: 100%;
	text-align: right;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.courseAction a {
	display: inline-block;
	width: auto;
	margin-right: 20px;
	font-size: 1.4em;
	color: #fff;
	text-decoration: none;
	padding-bottom: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.courseAction a:hover {
	border-bottom: 1px solid yellow;
}

.courseImg {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-o-object-position: center;
	object-position: center;
	position: relative;
	float: left;
	width: 300px;
}

.courseImg img {
	width: 100%;
	height: 250px;
}

/* customer courses */
.customerCoursesContainer {
	position: relative;
	float: left;
	width: 100%;
	padding: 10px 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.customerWelcomeMsg,
.customerOffers,
.customerNotPurchase {
	position: relative;
	float: left;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	opacity: .8;
}

.customerWelcomeMsg span {
	display: inline-block;
	padding-left: 10px;
}

/* register form */
.customerNewForm {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	float: left;
	width: 100%;

}

.customerNewForm input {
	width: 100%;
	height: 30px;
	margin-bottom: 10px;
	font-size: 1.2em;
	padding-left: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


/*
input[name=rules] {
	width: 15px;
	margin-top: 7px;
}

input[name=register] {
	width: 80%;
	height: 40px;
	background-color: #000;
	color: #fff;
	font-size: 1.2em;
	cursor: pointer;
}
*/

/* Items */
.itemsContainer {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 20px;
	row-gap: 30px;
	position: relative;
	float: left;
	margin-top: 20px;
	width: 100%;
}

.item {
	position: relative;
	float: left;
	transition: transform .3s;
}

.item:hover {
	transform: scale(1.03);
}

.itemImg {
	position: relative;
	float: left;
}

.itemImg img {
	width: 100%;
	object-fit: cover;
}

.itemImg img:hover {
	cursor: pointer;
}

.itemTitle {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	padding: 10px 5px;
	box-sizing: border-box;
}

.itemTitle:hover {
	cursor: pointer;
}

.itemDescription {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1.1rem;
	font-style: oblique;
	padding: 5px 5px;
	box-sizing: border-box;
	opacity: .8;

	/* Permitir 4 reglones en el texto */
	-ms-text-overflow: hidden;
	-o-text-overflow: hidden;
	text-overflow: hidden;
	overflow-y: hidden;
	-ms-line-clamp: 4;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	display: -webkit-box;
	display: box;
	word-wrap: break-word;
	-webkit-box-orient: vertical;
	box-orient: vertical;
}

.itemDescription:hover {
	cursor: pointer;
}

.itemArticle {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	font-size: .8rem;
	padding: 0 5px;
	box-sizing: border-box;
	opacity: .7;
}

.itemArticle span {
	position: relative;
	float: left;
	padding-right: 10px;
	box-sizing: border-box;
}

.itemPrice {
	position: relative;
	float: left;
	width: 100%;
	text-align: center;
	font-size: 1.5rem;
	font-weight: 700;
	padding: 20px 5px;
	box-sizing: border-box;

}

.priceSale {
	display: inline-block;
	color: #fff;
	/*ffcc66;*/
}

.priceInic {
	display: inline-block;
	position: relative;
	color: tomato;
}

.priceInic:before {
	position: absolute;
	content: "";
	left: -5px;
	top: 50%;
	right: -5px;
	border-top: 2px solid;
	border-color: tomato;

	-webkit-transform: rotate(-5deg);
	-moz-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	-o-transform: rotate(-5deg);
	transform: rotate(-5deg);
}

.itemDetails {
	position: relative;
	float: left;
	width: 100%;
	color: #ffcc66;
	font-size: 1rem;
	text-align: right;
	padding-right: 10%;
	box-sizing: border-box;
}

.itemDetails:hover {
	cursor: pointer;
}

.btnToCardShowcase {
	width: 150px;
	margin-top: 20px;
	margin-left: calc(50% - 75px);
	margin-bottom: 20px;
	background-color: #000;
	font-size: 1.3rem;
	color: #fff;
	border: 1px solid #fff;
	padding: 2px 0 6px 0;
	box-sizing: border-box;
}

.btnToCardShowcase:hover {
	cursor: pointer;
}

.itemContainer {
	position: relative;
	float: left;
	width: 100%;
}

.itemView {
	position: relative;
	float: left;
	width: 50%;
}

.itemViewImg {
	position: relative;
	float: left;
	width: 100%;
}

.itemViewImg img {
	width: 100%;
}

.itemViewGallery {
	position: relative;
	float: left;
	width: 100%;
	overflow: hidden;
	margin-top: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.itemViewGallery a {
	outline: none;
}

.itemViewGalleryLeftArrow {
	position: absolute;
	top: 50%;
	left: 0;
	float: left;
	width: 35px;
	margin-top: -15px;
	z-index: 1;
}

.itemViewGalleryLeftArrow img {
	width: 100%;
}

.itemViewGalleryRightArrow {
	position: absolute;
	top: 50%;
	right: 0;
	float: left;
	width: 35px;
	margin-top: -15px;
	z-index: 1;
}

.itemViewGalleryRightArrow img {
	width: 100%;
}

.itemViewGalleryImages {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	float: left;
}

.itemViewGalleryImagen {
	position: relative;
	float: left;
	width: calc(25% - 10px);
	margin-right: 13.33px;
}

.itemViewGalleryImagen:last-child {
	margin-right: 0;
}

.itemViewGalleryImagen:first-child img {
	border: 1px solid blue;
	opacity: 1;
}

.itemViewGalleryImg {
	width: 100%;
	cursor: pointer;
	opacity: .6;
}







.itemViewDetails {
	position: relative;
	float: left;
	width: 50%;
	padding-left: 15px;
	box-sizing: border-box;
}

.itemViewTitle {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1.4rem;
	font-weight: 500;
}

.itemViewArticle {
	position: relative;
	float: left;
	width: 100%;
	font-size: .8rem;
	margin-top: 5px;
	opacity: .7;
}

.itemViewArticle span {
	position: relative;
	float: left;
	padding-right: 10px;
	box-sizing: border-box;
}

.itemViewWarning {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	margin-top: 20px;
	border: 1px solid #000;
	border-radius: 5px;
	padding: 0px 10px;
	box-sizing: border-box;
	opacity: .9;
}

.itemViewDescription {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	font-size: 1rem;
	opacity: .9;
}

.itemViewDescriptionDetails {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	text-indent: 18px;
	font-size: 1rem;
	opacity: .8;
}

.itemViewDescriptionDetails::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 15px;
	height: 15px;
	background-image: url("/public/images/icons/icon-black-star.png");
	background-repeat: no-repeat;
	background-size: 15px;
}

.itemViewDescriptionDetails span {
	display: block;
	width: 100%;
	margin-top: 5px;
}

.itemViewDescriptionDetails span:nth-child(2) {
	margin-top: 10px;
}




.itemViewPrice {
	position: relative;
	float: left;
	width: 100%;
	text-align: left;
	font-size: 1.5rem;
	font-weight: 800;
	padding: 20px 0;
	box-sizing: border-box;
}

.priceViewSale {
	display: inline-block;
	color: #000
}

.priceViewInic {
	display: inline-block;
	position: relative;
	color: tomato;
}

.priceViewInic:before {
	content: "";
	position: absolute;
	left: -5px;
	top: 50%;
	right: -5px;
	border-top: 1.5px solid;
	border-color: #fa2306;
	-webkit-transform: rotate(-5deg);
	-ms-transform: rotate(-5deg);
	transform: rotate(-5deg);
}

.btnToCardItem {
	width: 150px;
	margin-top: 20px;
	margin-left: calc(50% - 75px);
	margin-bottom: 20px;
	font-size: 1.3rem !important;
	font-weight: 500;
	color: #fff;
	background-color: #000;
	border: 1px solid #fff;
	padding: 4px 0 6px 0;
	box-sizing: border-box;
}

.btnToCardItem:hover {
	cursor: pointer;
}

.itemViewRating {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.itemViewReviews {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.itemViewRating img {
	width: 30%;
}

/* Store order form */
.orderStoreFormContainer {
	position: relative;
	float: left;
	width: 100%;
}

.orderStoreFormContainer .orderForm {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	float: left;
	width: 100%;
}

.orderStoreFormContainer .orderForm input::placeholder {
	font-size: .9rem;
	opacity: .4;
}

.orderStoreFormContainer .orderCustomerDetails {
	position: relative;
	float: left;
	width: 100%;
}

.orderStoreFormContainer .orderCustomerDetails input {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 5px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	outline: none;
	font-size: 1rem !important;
	padding: 2px 0 2px 5px;
	box-sizing: border-box;
}

.orderStoreFormContainer .orderCustomerDetails input:last-child {
	margin-bottom: 0;
}

.orderStoreFormContainer .orderDeliveryQty {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	margin-top: 15px;
}

.orderStoreFormContainer .orderDeliveryQty input[type="number"] {
	position: relative;
	float: left;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.2);
	outline: none;
	padding: 2px 0 2px 5px;
	box-sizing: border-box;
}

.orderStoreFormContainer .orderDeliveryMethod {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 15px;
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryMethodLabel {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryMethod span {
	position: relative;
	float: left;
	width: 100%;
}

.orderStoreFormContainer .orderDeliveryMethod span label {
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryMethod span label:hover {
	cursor: pointer;
}

.orderStoreFormContainer input[name=delivery_method] {
	width: 15px;
	height: 15px;
}

.orderStoreFormContainer .orderDeliveryMethodPostOfficeData {
	display: none;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 15px;
	margin-bottom: -15px;
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryGeneralInformation {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 15px;
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryMethodCourierData {
	display: none;
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryMethodPostOfficeData .orderDeliveryAddressIndex,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryCity,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressStreet {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryMethodPostOfficeData .orderDeliveryAddressIndex input,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryCity input,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressStreet input {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 5px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	outline: none;
	font-size: 1rem !important;
	padding: 2px 0 2px 5px;
	box-sizing: border-box;
}

.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressHouse,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressKorpus,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressApartment,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressEntrance,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressFloor,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressIntercom {
	position: relative;
	float: left;
	width: 33%;
	margin-right: 0.5%;
	font-size: 1rem;
}

.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressApartment,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressIntercom {
	margin-right: 0;
}

.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressHouse input,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressKorpus input,
.orderStoreFormContainer .orderDeliveryGeneralInformation .orderDeliveryAddressApartment input,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressEntrance input,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressFloor input,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressIntercom input {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 5px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	outline: none;
	font-size: 1rem !important;
	padding: 2px 0 2px 5px;
	box-sizing: border-box;
}

.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressEntrance input,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressFloor input,
.orderStoreFormContainer .orderDeliveryMethodCourierData .orderDeliveryAddressIntercom input {
	margin-bottom: 0;
}

.orderStoreFormContainer .orderComment {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 15px;
}

.orderStoreFormContainer .orderComment textarea {
	position: relative;
	float: left;
	width: 100%;
	height: 60px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	font-size: 1rem;
	outline: none;
	padding: 5px;
	box-sizing: border-box;
}

.orderStoreFormContainer .orderComment textarea::placeholder {
	opacity: .4;
}

.orderStoreFormContainer .rules {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 15px;
}

.orderStoreFormContainer .rules input[name=rules] {
	width: 25px;
	height: 25px;
	margin-top: 0;
	font-size: 1rem;
}

.orderStoreFormContainer .rules label {
	padding-left: 10px;
	font-size: .9rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.orderStoreFormContainer .rules label:hover {
	cursor: pointer;
}

.orderStoreFormContainer input[name=orderSubmit] {
	position: relative;
	float: left;
	width: 150px;
	margin-top: 20px;
	background-color: #000;
	outline: none;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-size: 1.3rem !important;
	font-weight: 400;
	padding: 4px 0 6px 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
}

/* /Store order form */


.customerItemsContainer,
.customerItemsOfferContainer {
	position: relative;
	float: left;
	width: 100%;
	padding: 20px 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.customerItemsTitle,
.customerItemsOfferTitle {
	position: relative;
	float: left;
	width: 100%;
	margin-bottom: 10px;
	text-align: left;
	color: #fff;
	border-left: 5px solid yellow;
	padding: 5px 0 5px 10px;
	box-sizing: border-box;
}

.customerItems,
.customerItemsOffer {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	column-gap: 20px;
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.customerItem,
.customerItemOffer {
	position: relative;
	float: left;
}

.customerItemOffer {
	transition: transform .3s;
}

.customerItemOffer:hover {
	transform: scale(1.03);
}

.customerItemImg,
.customerItemOfferImg {
	position: relative;
	float: left;
	width: 100%;
}

.customerItemImg img,
.customerItemOfferImg img {
	width: 100%;
}

.customerItemImg img:hover,
.customerItemOfferImg img:hover {
	cursor: pointer;
}

.customerItemTitle,
.customerItemOfferTitle {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
}

.customerItemDescription,
.customerItemOfferDescription {
	position: relative;
	float: left;
	width: 100%;
	font-size: .9rem;
	padding: 0 5px;
	box-sizing: border-box;
	opacity: .9;
}

.customerItemReviewAdd {
	position: relative;
	float: left;
	width: 250px;
	font-size: 1rem;
	text-align: center;
	margin-top: 10px;



	background-color: #000;
	outline: none;
	text-decoration: none;
	color: #fff;
	text-align: center;
	font-size: 1.1em;
	padding: 5px 20px;
	box-sizing: border-box;
	cursor: pointer;
}

.customerItemReviewAdd:hover {
	cursor: pointer;
}

.customerItemOfferArticle {
	position: relative;
	float: left;
	width: 100%;
	font-size: .8rem;
	padding: 0 5px;
	box-sizing: border-box;
	opacity: .7;
}

.customerItemOfferArticle span {
	position: relative;
	float: left;
	padding-right: 10px;
	box-sizing: border-box;
}

.customerItemOfferPrice {
	position: relative;
	float: left;
	width: 100%;
	text-align: center;
	padding: 5px;
	box-sizing: border-box;
}

.customerItemOfferDetails {
	position: relative;
	float: left;
	width: 100%;
	font-size: .9rem;
	text-align: right;
	padding: 5px;
	box-sizing: border-box;
}

.customerItemOfferDetails:hover {
	cursor: pointer;
}



/* footer  */
.footer {
	position: relative;
	float: left;
	width: 100%;
	background-color: #000;
	font-size: 1rem;
	color: var(--primary-color);
	padding: 30px 100px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.footerInfo {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	position: relative;
	float: left;
	width: 100%;
}

.footerInfo .seller {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	text-align: left;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.footerInfo label {
	display: inline-block;
	position: relative;
	width: 100%;
	margin-bottom: 20px;
	font-size: 1.2rem;
	font-weight: 500;
}

.footerInfo span {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1rem;
	text-align: left;
}

.footerInfo a {
	position: relative;
	float: left;
	width: 100%;
	color: var(--primary-color);
	outline: none;
	text-decoration: none;
	margin-bottom: 10px;
}

.footerInfo a:hover {
	color: var(--bgPositivePrimary);
}

.footerCopy {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 30px;
	font-size: .9rem;
	text-align: center;
}

/* Video */
.video-container {
	display: none; /* inline-block; */
	/* se ajusta al ancho del video */
	position: fixed;
	bottom: 20px;
	right: 50px;
	border-radius: 10px;
	z-index: 20;
}

/* Estilos del video */
video {
	display: block;
	width: 150px;
	height: auto;
	border-radius: 10px;
	transition: width 0.2s ease;
	background: #000;
}

video:hover {
	cursor: pointer;
}

/* Clase que expande el video a 300px */
video.expanded {
	width: 350px;
}

/* Botón para reducir */
.shrink-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 5px;
	right: 5px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	border: none;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	font-size: 18px;
	line-height: 1;
	transition: background 0.2s;
	cursor: pointer;
	z-index: 21;
	visibility: hidden;
}

.shrink-btn:hover {
	background: rgba(0, 0, 0, 0.9);
}

/* Botón para cerrar */
.close-btn {
	display: none;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 5px;
	right: 5px;
	background: rgba(0, 0, 0, 0.6);
	color: white;
	border: none;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	font-size: 18px;
	line-height: 1;
	transition: background 0.2s;
	cursor: pointer;
	z-index: 21;
}

.close-btn:hover {
	background: rgba(0, 0, 0, 0.9);
}

.video-container:hover .close-btn {
	display: flex;
}

/* Si el video está expandido, ocultar el botón de cerrar (incluso en hover) */
video.expanded~.close-btn {
	display: none !important;
}

/* Cookies */
.useOfCookies {
	position: fixed;
	bottom: 20px;
	right: 250px;
	float: left;
	width: 350px;
	background-color: antiquewhite;
	border-radius: 8px;
	padding: 20px;
	box-sizing: border-box;
	z-index: 19;
	visibility: hidden;
}

.useOfCookiesTitle {
	position: relative;
	float: left;
	width: 100%;
	text-align: left;
	font-size: 1.1rem;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.useOfCookiesText {
	position: relative;
	float: left;
	width: 100%;
	text-align: left;
	font-size: .8rem;
	color: #000;
	padding-bottom: 20px;
	box-sizing: border-box;
}

.useOfCookiesText label,
.useOfCookiesText a {
	display: inline-block;
	color: var(--primary-color);
	text-decoration: underline;
}

.useCookiesUnderstood {
	position: relative;
	float: left;
	width: 100%;
}

.useCookiesUnderstood span {
	position: relative;
	float: left;
	width: auto;
	background-color: var(--primary-color);
	font-size: .9rem;
	color: #330D6C;
	border-radius: 10px;
	padding: 4px 20px;
	box-sizing: border-box;
}

.useCookiesUnderstood span:hover {
	background-color: var(--bgPositivePrimary);
	cursor: pointer;
}

/* /Cookies */

.privacyContainer {
	position: relative;
	float: left;
	width: 100%;
}

.privacyContainer p {
	position: relative;
	float: left;
	width: 100%;
	line-height: 1.2rem;
	font-size: 1rem;
	text-indent: 10px;
}

.privacyTitle {
	position: relative;
	float: left;
	width: 100%;
	font-size: 1.1rem;
	margin-top: 20px;
}





/* Customer auth form */
.dialog {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	padding: 0 10px 10px 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.dialogResult {
	position: relative;
	float: left;
	width: 100%;
	font-size: .9rem;
}

.dialogErrorMsg {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: .8rem;
	font-style: italic;
	border: 1px solid red;
	border-style: dashed;
	background-color: rgba(248, 85, 57, 0.3);
	padding: 10px;
	box-sizing: border-box;
	opacity: .7;
}

.dialogErrorMsg li {
	margin-left: 10px;
	margin-bottom: 5px;
}

.dialogForm {
	position: relative;
	float: left;
	width: 100%;
}

.customerForm {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	float: left;
	width: 100%;
}

.customerForm input {
	width: 100%;
	height: 30px;
	margin-bottom: 10px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	background-color: rgba(0, 0, 0, 0.04);
	outline: none;
	font-size: 1rem;
	padding: 5px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.customerForm .rules {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 20px;
}

.customerForm .rules span {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}

.customerForm .rules span:nth-child(2) {
	margin-top: 15px;
}

.customerForm .rules input[name=rules],
.customerForm .rules input[name=advertising_mailings] {
	position: absolute;
	top: -2px;
	left: 0;
	width: 15px;
	height: 15px;
	cursor: pointer;
}

.customerForm .rules label {
	display: block;
	position: relative;
	float: left;
	text-indent: 30px;
	font-size: .9rem;
}

.customerForm .rules label:hover {
	cursor: pointer;
}

.customerForm input[name=authorization],
.customerForm input[name=register] {
	position: relative;
	float: left;
	width: 80%;
	height: 40px;
	margin-top: 30px;
	margin-left: 50%;
	margin-bottom: 30px;
	border-radius: 20px;
	border: none;
	background-color: var(--primary-color);
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	transform: translate(-50%);
	padding: 7px 0;
	box-sizing: border-box;
}

.customerForm input[name=authorization]:hover,
.customerForm input[name=register]:hover {
	background-color: var(--bgPositivePrimary);
	cursor: pointer;
}

.customerNotAccount,
.customerNotPwd {
	position: relative;
	float: left;
	width: 100%;
	margin-top: 10px;
	color: #000;
	text-align: center;
	font-size: .8rem;
}

/* Personalizacion dialog jquery */
.ui-dialog .ui-dialog-title {
	text-align: center;
	font-size: 1.3rem;
	font-weight: 600;
}

.ui-dialog .ui-dialog-titlebar-close {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 20px;
	height: 20px;
	background-image: url("../images/icons/icon-close-black.png");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: 0;
	opacity: .7;
}

.ui-dialog .ui-dialog-titlebar-close:hover {
	background-image: url("../images/icons/icon-close-black.png");
	background-repeat: no-repeat;
	background-size: 20px;
	background-position: 0;
	opacity: 1;
}

/* Contacts page */
.contactsContainer {
	position: relative;
	width: 100%;
	height: auto;
	float: left;
	margin-bottom: 20px;
}

.page-title {
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 2rem;
	color: var(--primary-color);
}

.feedback-container {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.contact-info {
	flex: 1;
	min-width: 300px;
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	;
}

.contact-info h3 {
	font-size: 1.2rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.contact-icon {
	background-color: var(--primary-color);
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 1rem;
	flex-shrink: 0;
}

.contact-details h3 {
	font-size: 1.1rem;
	margin-bottom: 0.3rem;
}

.feedback-form-container {
	flex: 2;
	min-width: 300px;
	background-color: white;
	padding: 2rem;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	;
}

.feedback-form h2 {
	font-size: 1.3rem;
	margin-bottom: 1.5rem;
	color: var(--primary-color);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
}

.form-control {
	width: calc(100% - 20px);
	padding: 0.75rem;
	border: 1px solid #ced4da;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 2px rgba(74, 111, 165, 0.25);
}

textarea.form-control {
	min-height: 150px;
	resize: vertical;
}

.form-row {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.form-row .form-group {
	flex: 1;
	min-width: 200px;
}

.btn {
	display: inline-block;
	background-color: var(--primary-color);
	color: white;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}

.btn:hover {
	background-color: var(--secondary-color);
	transform: translateY(-2px);
}

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

.form-message {
	padding: 0.75rem;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.form-warning {
	width: 100%;
	height: auto;
	margin-top: 10px;
	background-color: #ffdddd;
	border: 1px dashed var(--primary-contrast-color);
	/*tomato;*/
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.form-success {
	width: 100%;
	height: auto;
	margin-top: 10px;
	background-color: var(--secondary-color);
	border: 1px dashed var(--bgPositivePrimary);
	/*tomato;*/
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.contactsRules {
	cursor: pointer;
}

.contactsRules input {
	width: 18px;
	height: 18px;
	margin-right: 5px;
	cursor: pointer;
}

.form-message.success {
	background-color: rgba(40, 167, 69, 0.1);
	border: 1px solid var(--success-color);
	color: var(--success-color);
}

.form-message.error {
	background-color: rgba(220, 53, 69, 0.1);
	border: 1px solid var(--error-color);
	color: var(--error-color);
}


@media (max-width: 768px) {
	.feedback-container {
		flex-direction: column;
	}
}

/* /Contacts page */

/* Boton subir */
#scrollTopBtn {
	display: none;
	position: fixed;
	bottom: 20px;
	right: 30px;
	width: 50px;
	height: 50px;
	font-size: 18px;
	border: none;
	outline: none;
	border-radius: 50%;
	background-color: var(--primary-color);
	color: white;
	transition: all 0.3s ease;
	cursor: pointer;
	padding: 15px;
	z-index: 99;
}

#scrollTopBtn:hover {
	background-color: var(--bgPositivePrimary);
	transform: scale(1.1);
}





/* Faq page */
.faqContainer {
  position: relative;
  width: 100%;
  height: auto;
  float: left;
	margin-top: 20px;
  margin-bottom: 20px;
}

.faqTitle {
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  text-align: center;
  padding: 10px 10px 5px 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.faqQuestion {
  display: flex;
  /*justify-content: space-between;*/
  align-items: center;
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  margin-top: 10px;
  font-size: 1.05rem;
  padding: 5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  cursor: pointer;
}

.iconArrow {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  transition: transform 0.3s ease;
}

.faqQuestion:hover {
  font-size: 1.1rem;
  font-weight: 600;
}

.faqQuestion.active {
  font-size: 1.1rem;
  font-weight: 600;

}

.faqAnswer {
  display: none;
  position: relative;
  float: left;
  width: 100%;
  height: auto;
  margin-top: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-style: oblique;
  font-size: 1rem;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: .8;
}

.faqAnswer.active {
  display: block;
  background-color: #fff;
	color: #000;
}

.faqAnswer p {
  margin-top: 5px;
}

.faqAnswer a {
  display: block;
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #000;
}

.faqAnswer a:hover {
  color: var(--primary-color);
  /*blue;*/
}

.faqAnswer a:active {
  color: #000;
}

/* /Faq page */
