:root {
	--color--1: #645fa5;
	--color--2: #9290BD;
	--color--3: #413e7f;
	/* color1 más oscuro */
	--color--4: #d9c8ff;
	--color--5: #a29dd4;
	/* violeta claro */
	--color--fondo1: #e8e6ff;
	--color--fondo2: #f0effc;
	--color--fondo3: #f6f5fd;
	--color--hero: #b28fd7;
}

/* ==========================================================================
   2. GENERAL
   ========================================================================== */
body {
	font-family: "Poppins", sans-serif;
	color: var(--color--1);
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	background: #fff;
	overflow-x: hidden;
}

html {
	overflow-x: hidden;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1280px;
	}
}

p {
	font-size: 18px;
	line-height: 1.6;
}

p.grande {
	font-size: 20px;
	line-height: 1.5;
}

strong {
	font-weight: 700;
}

a:hover,
a:focus {
	color: var(--color--2);
}

a {
	color: var(--color--1);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

ul {
	margin: 0;
	padding: 0;
}

ul li {
	list-style: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

a:not([href]):not([tabindex]) {
	color: #fff;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
	color: var(--color--2);
}

h1,
h2,
h3,
h4,
h5 {
	font-family: "Poppins";
}

.c-blanco {
	color: #fff;
}

.f-light {
	font-weight: 300;
}

.bg-01 {
	background: var(--color--fondo1);
}

.bg-02 {
	background: var(--color--fondo2);
}

h2 {
	font-size: clamp(26px, 3.4vw, 36px);
	font-weight: 600;
	line-height: 1.2;
}

h2.quote {
	font-size: 48px;
	font-weight: 700;
}

h3 {
	font-size: clamp(24px, 2.6vw, 30px);
	line-height: 1.3;
	font-weight: 600;
}

h4 {
	font-size: clamp(20px, 1.8vw, 24px);
	line-height: 1.4;
}

h5 {
	font-size: 16px;
}

h6 {
	font-size: 14px;
}

.nomargin {
	margin: 0 !important;
}

.c-violeta {
	color: var(--color--1);
}

.c-violeta-claro {
	color: var(--color--5);
}

.c-rosa {
	color: var(--color--2);
}

.c-lila {
	color: var(--color--4);
}

.f-robot {
	font-family: "Poppins";
}

.f-medium {
	font-weight: 600;
}

.f-light {
	font-weight: 300;
}

.col-12 {
	padding: 0 50px;
}
.pt-5{
	padding-top: 80px !important;
}
.pb-5{
	padding-bottom: 80px !important;
}
.small, small {
    font-size: 80%;
    font-weight: 400;
}
.highlighted {
	background-position: top left;
	background-repeat: no-repeat;
	background-size: 100% auto;
	transition: background-size 0.5s;
	background-image: linear-gradient(to top, #f8edf2 60%, transparent 0);
}

/* ===== Scrollbar CSS ===== */
/* Firefox */
* {
	scrollbar-width: auto;
	scrollbar-color: var(--color--1) #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 12px;
}

*::-webkit-scrollbar-track {
	background: #f7f7f7;
}

*::-webkit-scrollbar-thumb {
	background-color: var(--color--1);
	border-radius: 5px;
	border: 3px solid #ffffff;
}

/* ==========================================================================
   2.1 Section Title
   ========================================================================== */
.section {
	padding: 110px 0 80px;
}

.section-header {
	color: #fff;
	margin-bottom: 40px;
	text-align: center;
}

.section-header .section-title {
	font-size: 42px;
	margin-top: 0;
	color: #333;
	position: relative;
	letter-spacing: 3px;
}

.section-header .section-title.c-blanco {
	color: #fff;
}

.section-header .section-title span {
	color: var(--color--2);
}

.section-header .section-subtitle {
	margin-top: 15px;
	color: #333;
	font-size: 14px;
	font-weight: 400;
}

.section-header .lines {
	margin: auto;
	width: 70px;
	position: relative;
	border-top: 2px solid var(--color--2);
	margin-top: 15px;
}

.section-header .lines.c-blanco {
	border-top: 2px solid #fff;
}

/* ==========================================================================
   2.2 Buttons
   ========================================================================== */
.btn {
	font-size: 16px;
	padding: 10px 15px;
	border-radius: 0px;
	font-weight: 400;
	color: #333;

	white-space: normal;

	text-transform: uppercase;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
	display: inline-block;
}

.btn:focus,
.btn:active {
	box-shadow: none;
	outline: none;
	color: var(--color--2);
}

.btn-common {
	border: 2px solid white;
	background: #fff;
	position: relative;
	color: var(--color--1);
	z-index: 1;
	min-width: 220px;
	border-radius: 8px;
	font-weight: 600;
}

.btn-common:hover {
	border: 2px solid var(--color--2);
	color: #fff;
	background: transparent;
	transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
}

.btn-border {
	color: #333;
	background-color: transparent;
	border: 2px solid #333;
}

.btn-border:hover {
	border: 2px solid #fff;
	color: #fff;
	background-color: #333;
}

.btn-lg {
	padding: 14px 33px;
	text-transform: uppercase;
	font-size: 16px;
}

.btn-rm {
	padding: 7px 0px;
	color: #999;
	text-transform: capitalize;
}

.btn-rm i {
	vertical-align: middle;
}

.btn-singin {
	background: #d9c2ad;
	color: #fff;
	border: 2px solid #d9c2ad;
	padding: 8px 15px;
	margin-left: 30px;
	box-shadow: 0px 8px 9px 0px rgba(96, 94, 94, 0.17);
	font-weight: 700;
}

.btn-singin:hover {
	background: transparent;
	color: #fff;
}

.btn-reservar {
	background: #d5d176;
	padding: 10px 20px;
	color: #078282;
	font-size: 20px;
	margin-top: 25px;
}

.btn-reservar:hover {
	background: #078282;
	color: #d5d176;
}

button:focus {
	outline: none !important;
}

.clear {
	clear: both;
}

/* ==========================================================================
   2.3 Social Iocns
   ========================================================================== */
.social-icons {
	margin-top: 40px;
}

.social-icons ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.social-icons ul li {
	margin-bottom: 10px;
}

.social-icons ul li a {
	color: #333;
	font-size: 18px;
	text-transform: uppercase;
}

.social-icons ul li a i {
	display: inline-block;
	margin-right: 5px;

	color: #333;
}

.social-icons ul li a:hover {
	color: #333;
}

/* ==========================================================================
	 2.4  Pre Loader
	 ========================================================================== */
#loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--color--1);
	z-index: 9999999999;
}

.spinner {
	width: 40px;
	height: 40px;
	top: 45%;
	position: relative;
	margin: 0px auto;
}

.double-bounce1,
.double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2s infinite ease-in-out;
	animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1s;
	animation-delay: -1s;
}

@-webkit-keyframes sk-bounce {

	0%,
	100% {
		-webkit-transform: scale(0);
	}

	50% {
		-webkit-transform: scale(1);
	}
}

@keyframes sk-bounce {

	0%,
	100% {
		transform: scale(0);
		-webkit-transform: scale(0);
	}

	50% {
		transform: scale(1);
		-webkit-transform: scale(1);
	}
}

/* ========================================================================== 
  -2.5 Scroll To Up 
   ========================================================================== */
.back-to-top {
	display: none;
	position: fixed;
	bottom: 18px;
	right: 15px;
}

.back-to-top i {
	display: block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	border-radius: 100%;
	background-color: var(--color--1);
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
.social-icons-fixed{
	width: 40px;
	height: calc((40px * 2) + 10px);
	position: fixed;
	top: calc(50% - 40px - 5px);
	right: 0;
	z-index: 1000;
}
.social-icons-fixed .social-icon{
	background-color: #555192f0;
	width: 40px;
	height: 40px;
	margin-bottom: 5px;
	border-radius: 8px 0 0 8px;
	color: white;
	transition: all 0.3s ease;
}
.social-icons-fixed .social-icon:hover{
	background-color: var(--color--2);
}
.social-icons-fixed .social-icon a{
	display: block;
	height: inherit;
	width: inherit;
	display: flex;
	align-items: center;
	justify-content: center;
}
.social-icons-fixed .social-icon img{
	width: 22px;
	height: auto;
	max-height: 22px;
}
/* ==========================================================================
   3. Hero Area
   ========================================================================== */

#hero-area .col-12:last-of-type {
	padding: 0;
}


#hero-area {
	background: var(--color--1);
}
#hero-area.hero-comprar{
	background-color: var(--color--1);
}
#hero-area .contents h1 {
	color: #fff;
	font-size: clamp(32px, 3.5vw, 48px);
	font-weight: 600;
	margin-bottom: 25px;
	padding-bottom: 40px;
	position: relative;
}

#hero-area .contents h1:after {
	content: "";
	position: absolute;
	bottom: 0px;
	right: -50px;
	background: url("../img/linea-cora.png") no-repeat center;
	background-size: contain;
	height: 40px;
	width: 440px;
	opacity: .35;
}

#hero-area .contents h4 {
	font-size: clamp(22px, 2vw, 28px);
	color: #fff;
	font-weight: 300;
	line-height: 1.35;
	text-align: left;
	font-family: "Poppins";
	position: relative;
}


/* ==========================================================================
   Navbar Style
   ========================================================================== */

.con-fondo {
	background: #262524;
}

.con-fondo.menu-bg {
	position: fixed;
	width: 100%;
}

.menu-bg {
	background: #fff;
	box-shadow: 0 0 7px 1px rgba(0, 0, 0, 0.1);
	z-index: 9999;
	padding: .5rem 1rem;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

.menu-bg .menu-button {
	top: 0;
}

.menu-bg .menu-button:hover {
	cursor: pointer;
	color: var(--color--1);
}

.menu-bg .navbar-nav .nav-link,
.menu-bg .navbar-nav .nav-link:hover,
.menu-bg .navbar-nav .active {
	color: var(--color--1) !important;
}

.navbar-expand-lg .navbar-nav .nav-link {
	color: var(--color--1);
	font-size: 15px;
	padding: 8px 0px;
	margin-left: 26px;
	position: relative;
	font-weight: 700;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}

.navbar-expand-lg .navbar-nav .nav-link:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 4px;
	background: rgba(98, 90, 186, 0.2);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	transition: 0.3s;
}

.navbar-expand-lg .navbar-nav .active::before,
.navbar-expand-lg .navbar-nav .nav-link:hover::before {
	width: 100%;
}

.navbar-brand {
	color: #fff;
	width: 180px;
}

.navbar-expand-lg .navbar-nav .nav-link:focus,
.navbar-expand-lg .navbar-nav .nav-link:hover,
.navbar-expand-lg .navbar-nav .nav-link:hover:before {
	color: var(--color--1);
}

.navbar-expand-lg .navbar-nav .active>.nav-link,
.navbar-expand-lg .navbar-nav .nav-link.active,
.navbar-expand-lg .navbar-nav .nav-link.active:before,
.navbar-expand-lg .navbar-nav .nav-link.open,
.navbar-expand-lg .navbar-nav .open>.nav-link {
	color: var(--color--1);
}

.navbar-expand-lg .navbar-toggler {
	background: transparent;
	border: 0;
	border-radius: 0px;
	margin: 5px;
	cursor: pointer;
	float: right;
}

.navbar-expand-lg .navbar-toggler i {
	color: var(--color--1) !important;
}

.navbar-expand-lg .navbar-toggler:focus {
	outline: none;
}

/* ==========================================================================
 INTRO section
   ========================================================================== */

.bajada {
	background: var(--color--fondo1);
}

.bajada .col-12:first-of-type {
	display: flex;
	align-items: center;
}

.bajada .col-12:last-of-type {
	padding: 0 !important;
}

.bajada .ajusta-img img {
	object-position: center bottom;
}

.ajusta-img {
	position: relative;
	height: 100%;
	height: min(50vw, 740px);
}

.ajusta-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.ajusta-img-centro {
	position: relative;
	height: 100%;
	min-height: 680px;
}

.ajusta-img-centro img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.burbujas01 li {
	text-align: center;
	width: calc(80% / 3);
	max-width: 140px;
}
.burbujas01 li:nth-child(2) {
	margin: 0 10%;
}

.burbujas01 li img {
	margin-bottom: 15px;
	width: 100%;
	height: auto;
}

.burbujas01 li p {
	text-align: center;
	color: var(--color--1);
	font-family: "Poppins";
	font-size: clamp(13px, 1.2vw, 16px);
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 0;
}


.naturaleza .etiqueta {
	width: 215px;
	height: 42px;
	line-height: 42px;
	background: url("../img/etiqueta.png") no-repeat center;
	text-align: center;
	color: #fff;
	margin: 10px auto;
	text-transform: uppercase;
	font-weight: 700;
}

.ingrediente-destacado {
	width: 100%;
	max-width: 900px;
	display: flex;
	align-items: center;
	margin: 50px auto;

}

.ingrediente-destacado .col {
	margin: 0;
	padding: 0;
}

.ingrediente-destacado .col1 {
	width: 260px;
	margin-right: 50px;
}

.ingrediente-destacado .ingrediente-img {
	width: 260px;
}

.ingrediente-destacado .ingrediente-img img {
	width: 260px;
	height: 260px;
	object-fit: cover;
	border-radius: 100%;
	overflow: hidden;
}

.decora-01 {
	padding-right: 100px;
	background: url("../img/acido-hialuronico.png") center right no-repeat;
}

.deco-rulo,
.decora-01 .deco {
	position: relative;
}

.deco-rulo:after,
.decora-01 .deco:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 0;
	background: url("../img/flecha-04.png") no-repeat center;
	width: 282px;
	height: 27px;
}

.deco-rulo:after {
	content: "";
	position: absolute;
	bottom: -30px;
	left: 0;
	background: url("../img/flecha-04.png") no-repeat center;
	background-size: contain;
	width: 220px;
	height: 27px;
}

.razones {
	background: var(--color--fondo1);
}

.razones .col-12:last-of-type {
	padding: 0 !important;
}

.razones .ajusta-img {
	height: 100%;
}

.lista-razones li {
	display: flex;
	align-items: center;
	margin: 15px 0;
}

.lista-razones li img {
	margin-right: 10px;
}

.lista-razones li p {
	margin-bottom: 0px;
	color: var(--color--1);
}

.salud-vaginal {
	position: relative;
}
.salud-vaginal h4{
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}
.salud-vaginal:after,
.salud-vaginal:before {
	content: "";
	position: absolute;
	bottom: 0;
	width: 555px;
	height: 355px;
}

.salud-vaginal .col-12:nth-child(odd) {
	padding-left: 0px;
	padding-right: 30px;
}

.salud-vaginal .col-12:nth-child(even) {
	padding-left: 30px;
	padding-right: 0px;
}

.lista-salud {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.lista-salud li {
	width: calc(100% / 4 - 4%);
	text-align: center;
	margin-bottom: 10px;
	margin-left: 2%;
	margin-right: 2%;
}

.lista-salud li img {
	margin-bottom: 5px;
	max-width: 140px;
	width: 75%;
}

.lista-salud li h5 {
	font-size: 13px;
	color: var(--color--1);
	text-transform: uppercase;
	font-weight: 600;
}

.sintomas {
	background: var(--color--1);
}
.sintomas .col-12:nth-child(odd) {
	padding-left: 0px;
	padding-right: 50px;
}

.sintomas .col-12:nth-child(even) {
	padding-left: 50px;
	padding-right: 0px;
}

.lista-sintomas li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 25px;
	color: #fff;
	font-size: 21px;
}
.lista-sintomas li:last-of-type{
	margin-bottom: 0;
}

.lista-sintomas li:before {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	left: 0;
	top: 10px;
	border-radius: 100%;
	background: #cab5f9;
}

.box-texto {
	max-width: 590px;
}

.forma-uso {
	position: relative;
	background: #f4dce9;
}

.ajusta-arriba-02 {
	margin-top: -80px;
	position: relative;
}

.ajusta-arriba-02 .caja {
	position: absolute;
	bottom: -50px;
	right: 30px;
}

.como-usar {
	background-color: var(--color--fondo1);
}

.como-usar .col-12:last-of-type {
	display: flex;
	align-items: center;
}

.como-usar .col-12:first-of-type {
	padding: 0 !important;
}

.como-usar .ajusta-img img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.faq {
	position: relative;
}

.accordion-container {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.faq .col-12:last-of-type {
	padding: 0 !important;
}

.faq .boton-info {
	width: 200px;
	position: absolute;
	z-index: 1;
	bottom: 50px;
	left: 50px;
	padding: 8px 20px;
	background-color: var(--color--fondo1);
	font-size: 16px;
	text-transform: uppercase;
	text-align: center;
	font-weight: 600;
	border-radius: 8px;
}

#faq {
	max-width: 590px;
	width: 100%;
}

#faq .card {
	margin-bottom: 10px;
	border: 0;
}

#faq .card:last-of-type {
	margin-bottom: 0;
}

#faq .card .card-header {
	border: 0;
	border-radius: 2px;
	padding: 0;
}

#faq .card .card-header .btn-header-link {
	display: flex;
	justify-content: space-between;
    align-items: center;
	text-align: left;
	padding: 10px 20px 10px 10px;
	text-transform: none;
	font-weight: 600;
	color: var(--color--1);
	background-color: #dbd9f5;
	border-radius: 8px;
}

#faq .card .card-header .btn-header-link:after {
	content: "\f106";
	font-family: "FontAwesome";
	font-weight: 900;
	float: right;
}

#faq .card .card-header .btn-header-link.collapsed {
	background: var(--color--fondo2);
	color: var(--color--1);
}

#faq .card .card-header .btn-header-link.collapsed:after {
	content: "\f107";
}

#faq .card .card-body {
	line-height: 1.5;
}

#faq .card .collapsing {
	line-height: 30px;
}

#faq .card .collapse {
	border: 0;
}

#faq .card .collapse.show {
	line-height: 30px;
	color: var(--color--1);
}

/* ==========================================================================
  14. Contact Us
  ========================================================================== */
.consultorio {
	background: var(--color--1);
}

.consultorio .col-12:last-of-type {
	padding: 0;
}

.consultorio h3 {
	margin-bottom: 15px;
	font-weight: 400;
	max-width: 590px;
	width: 100%;
}
.consultorio .contact-address{
	padding-bottom: 50px;
}
.contact-block {
	max-width: 590px;
	width: 100%;
}

.contact-block .row {
	width: 100%;
	margin: 0;
	justify-content: space-between;
}

.contact-block .col-mitad {
	width: calc(50% - .5rem);
}

.contact-block .col-full {
	width: 100%;
}

.form-control {
	width: 100%;
	margin-bottom: 10px;
	padding: 14px;
	border-radius: 0px;
	background: #ffffff25;
	font-size: 14px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	color: #fff;
	border: 0;
	border-radius: 8px;
}

.form-control:focus {
	box-shadow: none;
	color: #fff;
	background: #ffffff45;
	outline: none;
	border: 0;
}

select.form-control {
	width: 100%;
	margin-bottom: 10px;
	padding: 0.5rem 0.75rem;
	border-radius: 0px;

	-webkit-appearance: none; /* elimina el estilo nativo en iOS Safari */
	-moz-appearance: none;
	appearance: none;
	background: transparent;

	font-size: 14px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	color: var(--color--1);
	font-weight: 700;
	border-radius: 8px;
	border: 2px solid white;
}
.select-wrapper{
	position: relative;
	border-radius: 8px;
	background-color: white;
}
.select-wrapper::after {
	content: '▾';
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	pointer-events: none;
	color: var(--color--1);
	font-size: 18px;
}
select.form-control:focus {
	box-shadow: none;
	color: var(--color--3);
	border: 2px solid var(--color--4);
	background: white;
	outline: none;
}

.btn.disabled,
.btn:disabled {
	opacity: 1;
}

.text-danger {
	font-size: 14px;
	margin-top: 16px;
	color: white !important;
}

.list-unstyled li {
	color: white;
	opacity: .7;
	font-size: 14px;
}

.form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: white;
}

.form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: white;
}

.form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: white;
}

.form-control:-moz-placeholder {
	/* Firefox 18- */
	color: white;
}

.text-success {
	color: #fcf4f9 !important;
	font-family: "Poppins";
	font-size: 18px;
	margin-top: 20px;
}

/* ==========================================================================
15. Footer Style
 ========================================================================== */
footer {
	background: #fff;
	padding: 30px 0;
	border-top: 1px solid #d5d3e7;
}

/* ==========================================================================
DONDE COMPRAR
 ========================================================================== */
.conpuntitos {
	position: relative;
}

.conpuntitos:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	background: url("../img/puntitos_01.png") no-repeat left center;
	background-size: auto;
	height: 100%;
}

.conpuntitos:after {
	content: "";
	position: absolute;
	left: 50%;
	width: 50%;
	top: 0;
	background: url("../img/puntitos_02.png") no-repeat right center;
	background-size: auto;
	height: 100%;
}

h2.con-deco {
	padding-bottom: 30px;
}

h2.con-deco:after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: -10px;
	background: url("../img/linea-ondulada-2.png") no-repeat center;
	height: 43px;
	width: 320px;
}

.bonus15 {
	background: url(../img/bonus_15.png) no-repeat 20px center rgba(223, 137, 200, 0.2);
	border-radius: 8px;
	padding: 10px 30px 10px 180px;
	height: 100%;
}

.titResultados {
	background: var(--color--1);
	border-radius: 8px;
	padding: 9px 15px;
	margin-bottom: 15px;
}
.titResultados p{
	line-height: 1.4;
}
.contieneResultados {
	height: 600px;
	overflow-y: auto;
	background: #fff;
	padding: 15px;
	border-radius: 8px;
}

.contieneResultados ul li {
	border-bottom: 1px solid var(--color--5);
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.2s ease-out;
	cursor: pointer;
}

.contieneResultados ul li .ver-mapa {
	min-width: 90px;
	background-color: var(--color--fondo1);
	border-radius: 8px;
	color: var(--color--1);
	text-align: center;
	text-transform: uppercase;
	padding: 5px 12px;
	margin: 10px 0 10px 20px;
	font-size: 80%;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.2s ease-out;
}

.contieneResultados ul li .ver-mapa:hover,
.contieneResultados ul li .ver-mapa.active {
	background-color: var(--color--1);
	color: white;
}

.contieneResultados ul li:first-child {
	padding-top: 0;
}

.contieneResultados ul li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.contieneResultados ul li h4 {
	font-size: 20px;
	color: var(--color--1);
	font-weight: 700;
	margin-bottom: 0px;
}

.contieneResultados ul li p {
	font-size: 16px;
	color: var(--color--1);
	margin-bottom: 0px;
}

.contieneResultados ul li a {
	padding: 5px 10px;
	border: 1px solid #df89c8;
	border-radius: 8px;
	color: #df89c8;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 14px;
	transition: 0.3s all;
}

.contieneResultados ul li a:hover,
.contieneResultados ul li a.active,
.contieneResultados ul li button.active {
	background: #df89c8;
	color: #fff;
	border: none;
	border-radius: 5px;
}

.contieneResultados ul li button.active:focus {
	outline: 0;
}


/** MAPA **/

.map-container {
	width: 100%;
	height: 100%;
	background-color: white;
	overflow: hidden;
	border-radius: 8px;
	border: 2px solid white;
	min-height: 400px;
}

.map-container #map {
	height: 100%;
	max-height: 100vw;
}

.pie-logos {
	width: 100%;

}

.pie-logos .container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pie-logos .pie-logo {
	width: 150px;
	margin-left: auto;
	margin-right: auto;
}

.pie-logos .marca-registrada {
	width: calc(100% - 400px);
	padding: 0 60px;
}

.pie-logos .licencia {
	width: 250px;
	display: flex;
}

.pie-logos .licencia .col {
	padding: 0 20px;
}

.compralo{
	padding-left: 30px;
	padding-right: 30px;
}
.compralo .accesos-farmacias{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}
.compralo .accesos-farmacias .item{
	width:190px;
	margin-right: 15px;
	margin-bottom: 15px;
}
.compralo .accesos-farmacias .item:last-of-type{
	margin-right: 0px;

}
.conseguilo{
	padding-left: 30px;
    padding-right: 30px;
}
.conseguilo .map-wrapper{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.conseguilo .map-wrapper .columna{
	flex: 0 0 calc(50% - 20px);
	max-width: calc(50% - 20px);
}
.conseguilo .map-wrapper .columna .selectores{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.conseguilo .map-wrapper .columna .selectores .selector{
	flex: 0 0 calc(50% - 8px);
	max-width: calc(50% - 8px);
}