/* Barra fija */
.header-holder {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff; /* o el color que uses */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* opcional: para dar sombra */
}
/* Barra superior */
.top-bar {
    display: block;
    border-bottom: 1px solid var(--color-border);
}

.top-bar, .main-nav {
    padding-block: var(--space-xxs);
}
/* Enlaces de la barra superior */
.publish-link {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.publish-link:hover {
    color: var(--color-secondary);
}

.login-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.login-link, button.login-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: color 0.2s;
    color:var(--color-blue-super-light-2);
    cursor: pointer;
    background: none;
    border: none;
    font-size:0.75rem;
}

.login-link:hover {
    color: var(--color-blue-super-light-2);
}

.domain {
    font-size: 0.75rem;
    color: var(--color-blue-light);
    margin-left: 0.25rem;
}
.mobile-controls {
    display: none;
}

/* Enlaces de navegación */
.nav-link {
    color: var(--color-blue-super-light-2);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover, .seasonal-link:hover{
    color: var(--color-secondary);
}

.seasonal-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: var(--space-xxs);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    min-width: 200px;
    z-index: 50;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-xl);
    text-decoration: none;
    color: var(--color-blue-super-light-2);
    transition: background-color 0.2s;
}

.dropdown-item:hover {
    background-color: var(--color-light);
}

.mobile-controls button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-blue-super-light-2);
    transition: color 0.2s;
}

.mobile-controls button:hover {
    color: var(--color-secondary);
}

/* Popup de búsqueda */
.search-popup {
    position: fixed;
    inset: 0;
    background-color: var(--overlay-dark);
    z-index: 50;
    /*display: flex !important;*/
    align-items: flex-start;
    justify-content: center;
}

.search-container {
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    width: 28rem;
    max-width: 100vw;
    padding: var(--space-xl);
    margin-top: 3rem;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.search-header h3 {
    font-size: 1.125rem;
    font-weight: 500;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    outline: none;
}

.search-submit {
    padding: 0.5rem 0.75rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.popular-searches h4 {
    font-size: 0.875rem;
    color: var(--color-gris);
    margin-bottom: 0.5rem;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.search-tag {
    padding: 0.25rem 0.75rem;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.search-tag:hover {
    background-color: var(--color-light);
}

/* Menú móvil */
.mobile-menu {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 1rem 0;
}

.mobile-menu-links {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0;
    text-decoration: none;
    transition: color 0.2s;
    color: var(--color-blue-super-light-2);
}

.mobile-menu a:hover {
    color: var(--color-secondary);
}

.mobile-menu .mobile-publish {
    color: var(--color-secondary);
}

.mobile-categories h3 {
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.category-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0.5rem;
}

/* Categorías con iconos */
.category-icons {
    display: none;
    border-top: 1px solid var(--color-border);
    padding: 0.75rem 0;
}

@media (min-width: 768px) {
    .category-icons {
        display: block;
    }
}

.icon-list {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.icon {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.icon-item span {
    font-size: 0.875rem;
    color: var(--color-blue-super-light-2);
    transition: color 0.2s;
}

.icon-item:hover span {
    color: var(--color-secondary);
}

/* Botón flotante */
.floating-cart {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}

@media (min-width: 768px) {
    .floating-cart {
        display: block;
    }
}

.cart-link:hover, .floating-cart-button:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    /* Controles móviles críticos */
    .mobile-controls {
        display: flex;
        align-items: center;
        gap: var(--space-2xl);   
    }
}@media (min-width: 768px) {
    .row.no-space{
        margin-right: 0px;
        margin-left: 0px;
    }
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,

    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12,

    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,

    .col-xlg-1,
    .col-xlg-2,
    .col-xlg-3,
    .col-xlg-4,
    .col-xlg-5,
    .col-xlg-6,
    .col-xlg-7,
    .col-xlg-8,
    .col-xlg-9,
    .col-xlg-10,
    .col-xlg-11,
    .col-xlg-12 {
        padding-right: 17px;
        padding-left: 17px;

        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .row.no-space > [class*="col-"]{
        padding-right: 0px;
        padding-left: 0px;
    }


    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        display:inline-block;
        vertical-align:top;
    }
    .col-sm-12 {
        width: 100%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-8 {
        width: 66.66666667%;
    }
    .col-sm-7 {
        width: 58.33333333%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-5 {
        width: 41.66666667%;
    }
    .col-sm-4 {
        width: 33.33333333%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-2 {
        width: 16.66666667%;
    }
    .col-sm-1 {
        width: 8.33333333%;
    }
    .col-sm-offset-12 {
        margin-left: 100%;
    }
    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-sm-offset-9 {
        margin-left: 75%;
    }
    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-sm-offset-6 {
        margin-left: 50%;
    }
    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-sm-offset-3 {
        margin-left: 25%;
    }
    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-sm-offset-0 {
        margin-left: 0
    }
}

/* DESKTOP */

@media (min-width: 980px) {
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        display:inline-block;
        vertical-align:top;
    }
    .col-md-12 {
        width: 100%;
    }
    .col-md-11 {
        width: 91.66666667%;
    }
    .col-md-10 {
        width: 83.33333333%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-8 {
        width: 66.66666667%;
    }
    .col-md-7 {
        width: 58.33333333%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-5 {
        width: 41.66666667%;
    }
    .col-md-4 {
        width: 33.33333333%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-2 {
        width: 16.66666667%;
    }
    .col-md-1 {
        width: 8.33333333%;
    }
    .col-md-offset-12 {
        margin-left: 100%;
    }
    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-md-offset-9 {
        margin-left: 75%;
    }
    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-md-offset-6 {
        margin-left: 50%;
    }
    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-md-offset-3 {
        margin-left: 25%;
    }
    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-md-offset-0 {
        margin-left: 0
    }

}

/* HD */

@media (min-width: 1200px) {
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        display:inline-block;
        vertical-align:top;
    }
    .col-lg-12 {
        width: 100%;
    }
    .col-lg-11 {
        width: 91.66666667%;
    }
    .col-lg-10 {
        width: 83.33333333%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-8 {
        width: 66.66666667%;
    }
    .col-lg-7 {
        width: 58.33333333%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-5 {
        width: 41.66666667%;
    }
    .col-lg-4 {
        width: 33.33333333%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-2 {
        width: 16.66666667%;
    }
    .col-lg-1 {
        width: 8.33333333%;
    }
    .col-lg-offset-12 {
        margin-left: 100%;
    }
    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-lg-offset-9 {
        margin-left: 75%;
    }
    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-lg-offset-6 {
        margin-left: 50%;
    }
    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-lg-offset-3 {
        margin-left: 25%;
    }
    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-lg-offset-0 {
        margin-left: 0
    }
}

/* HD */

@media (min-width: 1600px) {
    .col-xlg-1,
    .col-xlg-2,
    .col-xlg-3,
    .col-xlg-4,
    .col-xlg-5,
    .col-xlg-6,
    .col-xlg-7,
    .col-xlg-8,
    .col-xlg-9,
    .col-xlg-10,
    .col-xlg-11,
    .col-xlg-12 {
        display:inline-block;
        vertical-align:top;
    }
    .col-xlg-12 {
        width: 100%;
    }
    .col-xlg-11 {
        width: 91.66666667%;
    }
    .col-xlg-10 {
        width: 83.33333333%;
    }
    .col-xlg-9 {
        width: 75%;
    }
    .col-xlg-8 {
        width: 66.66666667%;
    }
    .col-xlg-7 {
        width: 58.33333333%;
    }
    .col-xlg-6 {
        width: 50%;
    }
    .col-xlg-5 {
        width: 41.66666667%;
    }
    .col-xlg-4 {
        width: 33.33333333%;
    }
    .col-xlg-3 {
        width: 25%;
    }
    .col-xlg-2 {
        width: 16.66666667%;
    }
    .col-xlg-1 {
        width: 8.33333333%;
    }
    .col-xlg-offset-12 {
        margin-left: 100%;
    }
    .col-xlg-offset-11 {
        margin-left: 91.66666667%;
    }
    .col-xlg-offset-10 {
        margin-left: 83.33333333%;
    }
    .col-xlg-offset-9 {
        margin-left: 75%;
    }
    .col-xlg-offset-8 {
        margin-left: 66.66666667%;
    }
    .col-xlg-offset-7 {
        margin-left: 58.33333333%;
    }
    .col-xlg-offset-6 {
        margin-left: 50%;
    }
    .col-xlg-offset-5 {
        margin-left: 41.66666667%;
    }
    .col-xlg-offset-4 {
        margin-left: 33.33333333%;
    }
    .col-xlg-offset-3 {
        margin-left: 25%;
    }
    .col-xlg-offset-2 {
        margin-left: 16.66666667%;
    }
    .col-xlg-offset-1 {
        margin-left: 8.33333333%;
    }
    .col-xlg-offset-0 {
        margin-left: 0
    }
}
/* ******* MOBILE ******* */
/* GENERAL - */
.notVisible {
  position: absolute;
  left: -9999px;
}

.scrollable {
  width: 100%;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  overflow-scrolling: touch;
}

.scrollable.scroll-x {
  overflow: hidden;
  overflow-x: auto;
}

.image,
.imageSlider {
  background: no-repeat center/cover;
}

/* ALIGNS */
.align-middle:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.align-middle > .align {
  display: inline-block;
  vertical-align: middle;
}

/* SECTION */

.section-t {
  padding-top: 50px;
}

.section-b {
  padding-bottom: 50px;
}

.border-t {
  border-top: 1px solid #f2f2f2;
}

/* HEADER */

/* RESULTS HOLDER */

.results-holder {
  height: 45px;
  position: relative;
  z-index: 489;
}

.results-holder .results-container {
  width: 100%;
  height: 45px;
  position: fixed;
  left: 0;
  top: 58px;
  z-index: 500;
  padding-top: 11px;
  padding-bottom: 11px;
  background: #143666;
  text-align: center;
}

.results-holder .results-container .text {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4em;
  color: var(--color-white);
}

.results-holder .results-container .select-container {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
  position: relative;
}

.results-holder .results-container .select-container:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -6px;
  right: 10px;
  width: 6px;
  height: 6px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  transform: rotate(-45deg);
}

.results-holder .results-container .select-container .select {
  font-size: 1.4em;
  color: #fff;
  width: 118px;
  font-weight: 700;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
  padding: 2px 8px;
  padding-right: 28px;
  border-radius: 10px;
}

body[data-event-type="1"] div.results-holder .results-container .select-container .select {
  background: #FEB902;
}

body[data-event-type="2"] div.results-holder .results-container .select-container .select {
  background: #b479f2;
}

body[data-event-type="3"] div.results-holder .results-container .select-container .select {
  background: #f17b7b;
}

body[data-event-type="4"] div.results-holder .results-container .select-container .select {
  background: #98d85b;
}

/* ON EVENT LOAD */

.onEventLoad {
  display: none;
}

.pageLoader {
  display: none;
  margin-top: 60px;
  margin-bottom: 70px;
}

.pageLoader:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto;
  border: 5px solid rgba(249, 148, 65, 0.3);
  border-top-color: #f99441;
  border-radius: 50%;
  animation: loading 700ms linear infinite;
}

.pageLoader.loading {
  display: block;
}

/* TEXT */

.cursive,
.heading {
  font-weight: 400;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.caption {
  opacity: 0.7;
  font-style: italic;
}

/* HEADING */

.heading {
  font-size: 2em;
  text-align: center;
  color: var(--color-primary);
}

.heading.xs {
  font-size: 3em;
  line-height: 1;
}

.heading.text-left {
  text-align: left;
}

.heading.text-right {
  text-align: right;
}

.heading.orange {
  color: #f99441;
}

.heading.white {
  color: #fff;
}

/* Underline */

[class*="underline"] {
  position: relative;
  padding-bottom: 20px;
}

[class*="underline"]:after {
  content: "";
  display: block;
  width: auto;
  height: 7px;
  position: absolute;
  right: 25px;
  left: 25px;
  bottom: 0;
  background: no-repeat center;
  background-size: 320px auto;
}


.underline-xs:after,
.underline-xxs:after {
  background-size: 184px auto;
  background-size: auto 7px;
}


.underline-xxs {
  padding-bottom: 17px;
}

.underline-xxs:after {
  background-size: auto 5px;
}

.underline-md {
  padding-bottom: 18px;
}

.underline-md:after {
  background-size: auto 6px;
}

[class*="underline"].text-left:after {
  left: 0;
  background-position: left bottom;
}

/* NEWSLETTER */
.newsletter{
	background: var(--color-primary);
	color: var(--color-white);
} 
.newsletter .heading {
	color: inherit;
	font-size: 1.5em;
	text-align: left;
}

.newsletter .checkboxes .label{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	top: -1px;
	padding: 3px 0 3px 22px;
	cursor: pointer;
}
.newsletter .checkboxes .label input{
	position: absolute;
	left: -9999px;
}

.newsletter .checkboxes .label .checkbox{
	display: block;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -8px;
	background-color: #fff;
	border-radius: 3px;
}


.newsletter .checkboxes .label .checkbox:before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: no-repeat center/contain;
	opacity: 0;
	transition: opacity 200ms ease-out;
}

.newsletter .checkboxes .label input:checked ~ .checkbox:before{
	opacity: 1;
}

.newsletter .checkboxes .label-holder,
.newsletter .checkboxes > .text{
	display: block;
	margin-top: 3px;
}

.newsletter .checkboxes > .text{
	margin-bottom: 6px;
}

.newsletter p{
	color: inherit;
  margin-top: 15px;
}

.newsletter .input-holder{
	display: block;
	padding-right: 46px;
	position: relative;
	margin: 27px auto 0;
	border-radius: 12px 20px 20px 12px;
	background-color: #fff;
	box-shadow: 0px 8px 17px -5px rgba(0, 0, 0, 0.15);
  max-width: 500px;
}


.newsletter .input-holder .input{
	display: block;
	width: 100%;
	padding: 10px 16px;
	color: var(--color-primary);
}

.newsletter .input-holder .input::placeholder {
	color: var(--color-text);
	font-weight: 400;
  font-style: italic;
}

.newsletter .input-holder .submit{
	display: block;
	width: 46px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background-color: var(--color-secondary);
	border-radius: 0 12px 12px 0;
}

.newsletter .input-holder .submit:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	position: absolute;
	top: 50%;
	left: 50%;
	border: solid var(--color-white);
	border-width: 2px 2px 0 0;
	transform: translate(-50%, -50%) rotate(45deg);
}


/* Spark */
.heading .spark {
  display: inline;
  position: relative;
  line-height: 0;
}

.heading .spark:before {
  content: "";
  display: block;
  width: 22px;
  height: 19px;
  position: absolute;
  left: 0;
  top: 50%;
  background: no-repeat center/contain;
  transform: translate(22%, -117%);
}

.heading .spark.left:before {
  transform: translate(-120%, 100%) rotate(180deg);
}


/* ROUNDED BTN */
.rounded-btn {
  display: inline-block;
  position: relative;
  left: -2px;
  font-size: 1.5em;
  font-weight: 700;
  padding: 10px 18px;
  padding-right: 33px;
  border-radius: 100px;
  background-color: #f99441;
  color: #fff;
}

.rounded-btn:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  right: 16px;
  top: 50%;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  transform: translateY(-50%) rotate(45deg);
}

/* ARROW LINK */

.arrow-link {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding: 6px 0;
  padding-right: 13px;
  /*font-size: 1.5em;*/
  font-weight: 700;
  color: #f99441;
}

.arrow-link:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  border: solid #f99441;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}

/* INTRO */
.intro {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  align-items: center;
  justify-content: space-between;
}

.intro .background,
.intro .background:before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.intro .background:before {
  content: "";
  z-index: 1;
  background-color: rgba(41 40 40 / 60%)
}


/* laura INI 
.intro .background:before{
  background-color: rgba(89, 89, 89, 0.3) !important;
}*/
/* HOME */
.intro .video-holder{
  overflow: hidden;
}
.intro .video-holder video{
  display: block;
  height: 100%;
  width: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1921px){
  .intro .video-holder video{
      width: 100%;
      height: auto;
  }
}

.intro .no-video-fallback{
  display: none;
}
.intro.no-video .no-video-fallback{
  display: block;
}
.intro.no-video .video-holder{
  display: none;
}

.intro .event-type-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    max-width: 100%;
}

body[data-event-type="1"] .intro .background:before {
  background-color: rgba(72, 70, 67, 0.6);
}

body[data-event-type="2"] .intro .background:before {
  background-color: rgba(73, 70, 74, 0.5);
}

body[data-event-type="3"] .intro .background:before {
  background-color: rgba(74, 72, 70, 0.6);
}

body[data-event-type="4"] .intro .background:before {
  background-color: rgba(71, 74, 70, 0.6);
}

.intro .background:after {
  content: "";
  display: block;
  width: 100%;
  height: 88px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: no-repeat center bottom/cover;
}

.intro .wrapper {
  position: relative;
  z-index: 1;
  padding-block: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: clamp(2rem, 4vw, 3rem);
}

.intro .event-caption {
  display: inline-block;
  padding: 5px 9px 4px;
  margin: -10px 0 8px;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 5px;
  background-color: #f99441;
}

body[data-event-type="1"] .intro .event-caption {
  background-color: #FEB902;
}

body[data-event-type="2"] .intro .event-caption {
  background-color: #b479f2;
}

body[data-event-type="3"] .intro .event-caption {
  background-color: #f17b7b;
}

body[data-event-type="4"] .intro .event-caption {
  background-color: #98d85b;
}

.intro .title {
  font-size: clamp(2rem, 6vw, 4rem); /* arranca ~28px y escala hasta 48px aprox */
  font-weight: 700;
  word-break: break-word;
}

.intro .description {
  font-size: clamp(1.5rem, 4vw, 3rem); /* arranca ~17px y escala hasta 32px */
  font-weight: 600;
}
.intro .description-tf {  
  font-weight: 600;
}  

.intro .title,
.intro .description,
.intro .description-tf {
  line-height: 1.2;
  text-align: left;
  align-self: flex-start;
  color:var(--color-white);
  text-shadow: 2px 2px 5px #000;
  margin-bottom: 1.5rem;
  max-width: 100%;
}


.intro .more-btn {
  display: inline-block;
  padding: 5px 0;
  position: relative;
  right: -3px;
  margin-top: 6px;
  font-size: 1.4em;
  line-height: 1.3;
  color: #fff;
}

.intro .more-btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  position: relative;
  top: -3px;
  margin-left: 7px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.intro .shares {
  margin-top: 15px;
}

/* Xs */

.intro.xs .wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}

.intro.xs .heading {
  display: inline-block;
  padding-right: 15px;
  padding-left: 15px;
}

.intro.xs .text {
  margin-top: 15px;
}

.intro.xs .text p {
  color: #fff;
  font-size: 1.4em;
}

/* DARK SLIDER ARROWS */
.darkSliderArrows .bx-prev,
.darkSliderArrows .bx-next,
.darkSliderArrows .owl-prev,
.darkSliderArrows .owl-next {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  z-index: 50;
  border-radius: 0 100% 100% 0;
}

.darkSliderArrows .owl-prev,
.darkSliderArrows .owl-next {
  background-color:var(--color-blue-super-light-2);
}
.darkSliderArrows .bx-prev,
.darkSliderArrows .bx-next{
	background-color: var(--color-white);
}


.darkSliderArrows .bx-next,
.darkSliderArrows .owl-next {
  left: auto;
  right: 0;
  border-radius: 100% 0 0 100%;
}

.darkSliderArrows .bx-prev:before,
.darkSliderArrows .bx-next:before,
.darkSliderArrows .owl-prev:before,
.darkSliderArrows .owl-next:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -6px 0 0 -5px;
  transform: rotate(45deg);
}


.darkSliderArrows .bx-prev:before,
.darkSliderArrows .bx-next:before{
border:solid var(--color-blue-super-light-2);
}
.darkSliderArrows .owl-prev:before,
.darkSliderArrows .owl-next:before {
  border: solid var(--color-white);
}


.darkSliderArrows .bx-next:before,
.darkSliderArrows .owl-next:before {
  border-width: 2px 2px 0 0;
  margin-left: -7px;
}
.darkSliderArrows .bx-prev:before,
.darkSliderArrows .owl-prev:before {
  border-width: 0 0 2px 2px;
  margin-left: -7px;
}

.wrapper .darkSliderArrows .bx-prev {
  left: -32px;
}

.wrapper .darkSliderArrows .bx-next {
  right: -32px;
}


/* EVENT TYPE LIST */
.event-type-list > .item {
  width: 100%;
  aspect-ratio: 1/1;
  min-width: 120px;
  margin-inline: auto;
}

.event-type-list > .item .btn {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    text-align: center;
    text-decoration: none;
    color: var(--color-primary);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.event-type-list > .item .btn:hover {
  animation: growAndShadow 0.3s ease forwards;
}

.event-type-list > .item .btn .icon,
.main-search .option-group .event-type-options .item .label .holder .icon
 {
  background-color: var(--color-primary);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  border-radius: 50%;
  width: 3em;
  height: 3em;
}

.event-type-list > .item .btn:hover .icon {
  background-color: var(--color-secondary);
    transition: background-color 0.3s ease;

}
/* TOOLTIP */

.tooltip-holder .tooltip {
  display: none;
}

/* POPUP */

.popup:not(.visibleForSeo) {
  display: none;
}

/* Seo */

.popup.visibleForSeo {
  display: block;
  position: absolute;
  left: -9999px;
}

/* FOOTER */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--color-white);
  background-color: var(--gray-800);
}

.footer .wrapper {
  padding-bottom: 40px;
} 

.footer .title {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer [class*="col-"]:first-child .title {
  margin-top: 0;
}

.footer ul.row {
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  justify-content: space-between;
}

li.list-footer {
  width: 50%;
}

.footer .list li a:hover,
.footer .list li a:focus {
  color: var(--color-secondary);
}

.footer .list {
  padding-top: 3px;
}

.footer .list li a,
.copyright {
  display: inline-block;
  padding: 3px 0;
  color: var(--color-white);
}

.copyright a {
  color: var(--color-white);
  font-weight: 700;
}

.footer .social { 
  margin-top: 10px;
}

.footer .social li {
  display: inline-block;
}

.footer .social li a {
  display: block;
  width: 30px;
  height: 30px;
  background: no-repeat center/24px;
}

.footer .bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--color-white);
}
.footer .IdeasNovedades {
  margin-bottom: 0px;
  margin-top: 2rem;
}

/* STORE CARD */
.store-card {
  padding-top: 10px;
  padding-bottom: 40px;
}

.store-card .holder {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 18px 45px -15px rgba(20, 54, 102, 0.15),
        inset 0px 1px 0px 1px rgba(20, 54, 102, 0.05);
}

.store-card .holder .image,
.store-card .holder .imageHome {
  display: block;
  border-radius: 16px 16px 0 0;
}

.store-card .holder .image:before,
.store-card .holder .imageHome:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 94%;
}

.store-card .holder .info {
  padding: 25px 20px;
  text-align: left;
}

.store-card .holder .info .title {
  font-size: 1.6em;
  line-height: 1.2;
  font-weight: 700;
}

.store-card .holder .info .title a {
  color: inherit;
}

.store-card .holder .info .price {
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1.2;
  color: #143666;
  margin-top: 10px;
}

.store-card .holder .info .price .num {
  vertical-align: middle;
  position: relative;
  top: -2px;
  font-size: 1.6em;
  line-height: 1;
  margin-left: 3px;
}

.store-card .holder .info .arrow-link {
  margin-top: 15px;
}

/* Carousel */

.store-carousel {
  position: relative;
}

.store-carousel .carousel.notInit {
  height: 0 !important;
  overflow: hidden !important;
  margin-bottom: 355px;
}

.store-carousel .owl-nav.disabled {
  opacity: 0.2;
}

.store-carousel .owl-nav .owl-prev,
.store-carousel .owl-nav .owl-next {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: -115px;
  left: 50%;
  z-index: 50;
  margin-left: -155px;
  cursor: pointer;
}

.store-carousel .owl-nav .owl-next {
  margin-left: 115px;
}

.store-carousel .owl-nav .owl-prev:before,
.store-carousel .owl-nav .owl-next:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 50%;
  top: 50%;
  border: solid #d6d6d6;
  border-width: 0 0 2px 2px;
  margin: -5px 0 0 -5px;
  transform: rotate(45deg);
}

.store-carousel .owl-nav .owl-next:before {
  border-width: 2px 2px 0 0;
}

/* LOCATION TEXT */

.location-text {
  position: relative;
  padding-left: var(--space-3xl);
  font-size: 0.8em;
  line-height: 1.2;
}

.location-text:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  left: 0;
  top: 0;
  background: no-repeat center/contain;
}

/* SHARES */



.shares .share {
  display: inline-block;
  vertical-align: top;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff no-repeat center/contain;
  margin-left: 15px;
}

.shares .share:first-child {
  margin-left: 0;
}

/* POPUP */
.popup:not(.visibleForSeo) {
  width: 100%;
  height: 100%;
  padding: 20px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 600;
  background-color: var(--color-primary);
  text-align: center;
}

.popup:not(.visibleForSeo):before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.popup:not(.visibleForSeo) > .holder {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 690px;
  padding: 40px 30px;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border-radius: 16px;
  text-align: left;
}

.popup .overlay {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.popup .close-btn {
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 7px;
  top: 7px;
  line-height: 0;
}

.popup .close-btn span,
.popup .close-btn span:before {
  display: inline-block;
  width: 18px;
  height: 2px;
  position: relative;
  background-color: #ed5656;
  border-radius: 3px;
  transform: rotate(45deg);
}

.popup .close-btn span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(90deg);
}

/* Animations */

.popup:not(.visibleForSeo) {
  background-color: rgba(20, 54, 102, 0);
  transition: background-color 350ms ease-out 300ms;
}

.popup:not(.visibleForSeo) > .holder {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 250ms ease-out,
        transform 350ms cubic-bezier(0.47, 0, 0.75, 0.72);
}

.popup:not(.visibleForSeo).show {
  background-color: rgba(20, 54, 102, 0.85);
  transition: background-color 200ms ease-out;
}

.popup:not(.visibleForSeo).show > .holder {
  opacity: 1;
  transform: scale(1);
  transition: opacity 250ms ease-in 150ms,
        transform 330ms cubic-bezier(0.39, 0.58, 0.57, 1) 50ms;
}


#jsProvsIncluidos {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas */
    gap: 10px; /* Espacio entre las filas y columnas */
    padding: 10px; /* Espaciado interno opcional */
    max-height: 300px; /* Ajusta según lo necesario */
    overflow-y: auto; /* Para agregar un scroll si hay demasiados elementos */
}
#jsProvsIncluidos .tag {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f5f5f5; /* Fondo claro para cada proveedor */
    border: 1px solid #ccc; /* Borde opcional */
    border-radius: 5px; /* Esquinas redondeadas */
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra opcional */
}


#jsProvsIncluidos .tag .delete {
    display:inline-block;
    vertical-align: middle;
    margin-top: -5px;
    background: no-repeat center / 20px auto;
    background-image: url(../images/b64/filters-clean.svg);
    height: 20px;
    width: 20px;
     cursor: pointer; 
}

/* CONTENT */
.content h1,
.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  margin-top: 30px;
  color: #143666;
  font-weight: 700;
}

.content h1,
.content h2 {
  font-size: 2em;
}

.content h2.heading {
  font-size: 2.4em;
}

.content h3 {
  font-size: 1.7em;
}

.content h4,
.content h5,
.content h6 {
  font-size: 1.5em;
}

/* Text */

.content p,
.content ul,
.content ol,
.content blockquote {
  margin-top: 10px;
}

.content > *:first-child {
  margin-top: 0;
}

.content p {
  font-size: 1.5em;
}

.content a {
  position: relative;
  color: #f99441;
  border-bottom: 1px solid rgba(249, 148, 65, 0.5);
}

.content a:hover,
.content a:focus {
  color: #143666;
  border-color: #143666;
}

/* Blockquote */

.content blockquote {
  margin: 20px 0;
  padding: 15px;
  font-size: 1.5em;
  line-height: 1.6;
  color: #f28625;
  border: 1px solid #f28625;
  ;
}

.content blockquote p {
  font-size: 1em;
  margin-top: 0;
}

/* List */

.content li {
  position: relative;
  padding-left: 16px;
  margin-top: 5px;
  font-size: 1.5em;
  line-height: 1.4;
  ;
}

.content li li {
  font-size: 1em;
}

.content ul > li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 6px;
  background: #f28625;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 0;
}

.content ul > li > ul > li:before {
  width: 7px;
  height: 7px;
  top: 6px;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px #f28625;
}

.content ul > li > ul > li > ul > li:before {
  width: 6px;
  height: 2px;
  top: 9px;
  background: #f28625;
  border-radius: 6px;
  box-shadow: none;
}

.content ol {
  counter-reset: number-section;
}

.content ol > li:before {
  counter-increment: number-section;
  content: counter(number-section) ".";
  display: inline-block;
  position: absolute;
  top: 2px;
  left: -2px;
  color: #f28625;
  font-size: 0.9em;
  font-weight: 700;
}

.content ol ol {
  counter-reset: letter-section;
}

.content ol ol > li:before {
  counter-increment: letter-section;
  content: counter(letter-section, lower-alpha) ".";
  font-weight: 400;
}

.content ol ol ol > li {
  padding-left: 20px;
}

.content ol ol ol > li:before {
  counter-increment: letter-section;
  content: counter(letter-section, upper-roman) ".";
}

/* Image */

.content .image,
.content .imageHome {
  position: relative;
  margin-bottom: 25px;
}

.content .image:before,
.content .imageHome:before {
  content: "";
  display: block;
  height: 0;
  padding-bottom: 56.25%;
}

.content img {
  display: block;
  max-width: 100%;
  margin: 28px 0;
}

/* TEXT PAGE */



.text-page .title {
  font-size: 2.8em;
  font-weight: 700;
  color: #143666;
  text-align: center;
  line-height: 1;
}

.text-page .section + .section {
  padding-top: 0;
}

.text-page .content {
  margin-top: 35px;
}

/* STYLED FORM */

.styled-form {
  position: relative;
}

.form-page .styled-form {
  margin-top: -22px;
}

.styled-form .label {
  margin-top: 22px;
  display: block;
}

.styled-form .label .text {
  display: block;
  font-size: 1.4em;
  font-weight: 700;
  color: #606060;
  padding-left: 1px;
}

.styled-form .label .input {
  display: block;
  width: 100%;
  padding: 10px 18px;
  margin-top: 8px;
  background: #f4f4f4;
  border-radius: 12px;
  font-size: 1.5em;
  color: #606060;
  box-shadow: inset 0px 0px 0px 1px rgba(249, 148, 65, 0);
  transition: box-shadow 200ms ease-out;
}

.styled-form .label .input:focus {
  box-shadow: inset 0px 0px 0px 1px rgba(249, 148, 65, 0.5);
}

.styled-form .label textarea {
  overflow: auto;
}

.styled-form .label .input[type="date"] {
  height: 40px;
  padding: 9px 18px;
}

/* Placeholder */

.styled-form .input.placeholder,
.styled-form .select-holder .select.placeholder {
  color: rgba(96, 96, 96, 0.6);
  font-style: italic;
}


/* Select */

.styled-form .select-holder {
  display: block;
  position: relative;
}

.styled-form .select-holder:after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 20px;
  border: solid #c6c6c6;
  border-width: 2px 2px 0 0;
  pointer-events: none;
  transform: rotate(135deg);
}

.styled-form .select-holder .select.input {
  padding-right: 30px;
}

.styled-form .select-holder select::expand {
  display: none;
}

.styled-form label.error {
  display: block;
  margin-top: 5px;
  padding-left: 1px;
  font-size: 1.3em;
  line-height: 1.1;
  color: #ed5656;
}

/* Submit */

.styled-form .submit-holder {
  margin-top: 40px;
  text-align: center;
}

.styled-form .submit-btn .text,
.styled-form .submit-btn:after {
  transition: opacity 100ms ease-out;
}

.styled-form .submit-btn .loader {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -11px 0 0 -11px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 100ms ease-out;
}

/* Message */

.styled-form .response {
  display: none;
  font-size: 1.6em;
  color: #4caf50;
  font-weight: 700;
  padding: 9px 0;
}

.styled-form[data-success="false"] .response {
  display: block;
  color: #ed5656;
  margin-top: 7px;
}

/* Sending */

.styled-form.sending:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
}

.styled-form.sending .submit-btn .text,
.styled-form.sending .submit-btn:after {
  opacity: 0;
}

.styled-form.sending .loader {
  opacity: 1;
  animation: loading 600ms linear infinite;
}

/* Sent */

.styled-form.sent .submit-btn {
  display: none;
}

.styled-form.sent .response {
  display: block;
}

/* SLIDER */

.slider.notInit {
  overflow: hidden;
}
/* laura 
.slider.notInit > .notInitHide {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}*/

/* QUOTE BAR */

.quote-bar,
.quote-bar > .holder,
.quote-bar .align-middle:before {
  height: 58px;
}

.quote-bar,
.quote-bar > .holder {
  display: block;
  width: 100%;
}

.quote-bar > .holder {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 450;
  background-color: #fff;
  box-shadow: 0px -1px 0px 0px rgba(89, 89, 89, 0.1),
        0px 0px 10px 0px rgba(89, 89, 89, 0.05);
}

.quote-bar .wrapper {
  padding: 0 75px;
}

.quote-bar .filter-btn {
  display: block;
  width: 58px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  box-shadow: 1px 0px 0px 0px #f2f2f2;
}

.quote-bar .filter-btn:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  background: no-repeat center/contain;
  transform: translate3d(0, 0, 0);
  transition: transform 200ms ease-out;
}

.quote-bar .filter-btn:after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  position: absolute;
  left: 50%;
  bottom: 10px;
  background-color: #f99441;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, 10px, 0);
  transition: transform 200ms ease-out,
        opacity 200ms ease-out;
}

.quote-bar .filter-btn.active:before {
  transform: translate3d(0, -4px, 0);
}

.quote-bar .filter-btn.active:after {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.quote-bar .info {
  width: 100%;
  position: relative;
  padding-left: 26px;
}

.quote-bar .info .text {
  padding-top: 8px;
  font-size: 1.4em;
  font-weight: 700;
  line-height: 1;
}

.quote-bar .info .text .num-holder {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.quote-bar .num-holder:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border: 2px solid #f99441;
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
}

.quote-bar .text.highlight .num-holder:before {
  animation: quoteHighlight 850ms cubic-bezier(0.46, 0.03, 0.52, 0.96);
}

/* ***************************************************************************** */
.quote-bar .info .text .num-holder .num {
  display: block;
  position: relative;
  z-index: 1;
  background-color: #666;
  font-size: 0.9em;
  color: #fff;
  text-align: center;
  border-radius: 50%;
}

.quote-bar .info .arrow-link {
  margin: -6px 0 0 1px;
  font-size: 1.4em;
}

.quote-bar .submit-btn {
  display: block;
  width: 54px;
  height: 38px;
  position: absolute;
  right: 16px;
  top: 50%;
  background: #96d65f no-repeat center/20px auto;
  border-radius: 12px;
  transform: translateY(-50%);
  background-color: #f99441;
}

.quote-bar .submit-btn[disabled] {
  background-color: #666 !important;
  opacity: 0.3 !important;
  cursor: default !important;
}

.quote-bar .submit-btn .text {
  display: none;
}

/* QUOTE BAR */

.quote-bar .submit-btn.add,
.quote-bar .submit-btn.delete {
  background-color: #143666;
  margin-left: 5px;
  height: auto;
  color:#fff;
}

.quote-bar .submit-btn.delete {
  padding: 0 20px;
  margin-left: 5px;
}

/* No filter */

.quote-bar.no-filter .included-btn {
  left: 20px !important;
}

/* TUTORIAL */

.tutorial {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 440;
  background-color: rgba(20, 54, 102, 0.85);
  padding-top: 18vh;
   ;
}

.tutorial .close-btn {
  display: block;
  padding: 12px 14px;
  position: absolute;
  right: 7px;
  top: 7px;
}

.tutorial .close-btn .text {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.3em;
  line-height: 1;
  color: #fff;
  margin-right: 3px;
}

.tutorial .close-btn .icon,
.tutorial .close-btn .icon:before {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 2px;
  position: relative;
  background-color: #ed5656;
  border-radius: 3px;
  transform: rotate(45deg);
}

.tutorial .close-btn .icon:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(90deg);
}

.tutorial .title {
  display: block;
  max-width: 346px;
  margin: 0 auto;
  font-size: 1.8em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.tutorial .text-holder {
  display: block;
  max-width: 200px;
  position: absolute;
  bottom: 65px;
  font-size: 1.3em;
  line-height: 1.2;
  color: #fff;
  text-align: left;
}

.tutorial .text-holder .text {
  display: block;
  transform: rotate(-7.5deg);
}

.tutorial .text-holder:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: no-repeat left bottom/contain;
}

.tutorial .text-holder.position-1 {
  left: 30px;
  padding-bottom: 190px;
}

.tutorial .text-holder.position-1:before {
  width: 73px;
  height: 179px;
  left: -10px;
}

.tutorial .text-holder.position-2 {
  left: 20.3%;
  padding-bottom: 75px;
}

.tutorial .text-holder.position-2:before {
  width: 20px;
  height: 63px;
  left: 60px;
}

.tutorial .text-holder.position-2 .text {
  transform: rotate(-6.5deg);
}

.tutorial .text-holder.position-3 {
  right: 30px;
  padding-bottom: 150px;
  text-align: right;
}

.tutorial .text-holder.position-3:before {
  width: 73px;
  height: 140px;
  right: 0;
  bottom: 5px;
}

.tutorial .text-holder.position-3 .text {
  transform: rotate(-9.5deg);
}

/* Show */

html.showTutorial .page-blur {
  filter: blur(4px);
}

html.showTutorial .tutorial {
  display: block;
  z-index: 540;
}

html.showTutorial .quote-bar > .holder {
  z-index: 550;
}

html.showTutorial .quote-bar > .holder:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}

/* INCLUDED POPUP */

.popup.included-popup {
  height: auto;
  top: 0;
}

.popup.included-popup,
.popup.included-popup:after {
  bottom: 58px;
}

.popup.included-popup:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: fixed;
  left: 0;
  z-index: 10;
  background-color: rgba(89, 89, 89, 0.1);
  pointer-events: none;
}

.popup.included-popup .holder {
  overflow: hidden;
  padding-bottom: 0 !important;
}

.popup.included-popup .title {
  color: #143666;
  font-size: 1.8em;
}

.popup.included-popup .list {
  margin-top: 20px;
  margin-bottom:20px;
}

.popup.included-popup .list .item {
  position: relative;
  margin-top: 15px;
}

.popup.included-popup .list .avatar {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #eaeaea;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -20px;
}

.popup.included-popup .list .info {
  padding: 8px 0 3px 56px;
    
}

.popup.included-popup .list .info .name {
  font-size: 1.2em;
  line-height: 1.1;
  color: inherit;
}

.popup.included-popup .list .info .location-text {
  margin-top: 2px;
  font-size: 1.3em;
}

.popup.included-popup .quote-cta {
  margin: 0 -30px;
  margin-top: 30px;
  width: auto;
  padding: 14px 20px 18px 0;
  text-align: right;
    
}

.popup.included-popup .quote-cta .heading {
  display: inline-block;
  vertical-align: middle;
  text-align: right;
  font-size: 2em;
  padding: 0;
}

.popup.included-popup .quote-cta .icon-arrow {
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
  width: 26px;
  height: 26px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* QUOTE FORM */

.quote-form .title {
  line-height: 1.1;
  font-weight: 700;
  color: #143666;
}

.quote-form .criteria {
  margin: 10px 0 0;
  position: relative;
}

.quote-form .criteria + .separator {
  margin-top: -1px;
}

.quote-form .criteria:after {
  content: "";
  display: block;
  width: 40px;
  height: calc(100% - 3px);
  position: absolute;
  right: -30px;
  top: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 70%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}

.quote-form .separator {
  padding-top: 25px;
  border-top: 1px solid #f2f2f2;
}

.quote-form .separator {
  padding-top: 25px;
  border-top: 1px solid #f2f2f2;
}

.quote-form .submit-holder {
  text-align: left;
}

/* CRITERIA */

.criteria .title {
  font-size: 1.5em;
  font-weight: 700;
  line-height: 1.1;
  opacity: 0.8;
}

.criteria .tag {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 9px 17px 10px;
  padding-right: 30px;
  margin-right: 10px;
  font-size: 1.3em;
  line-height: 1.1;
  background-color: rgba(102, 102, 102, 0.05);
  border-radius: 100px;
    
}

.criteria .tag .delete {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
}

.criteria .tag .delete:before,
.criteria .tag .delete:after {
  content: "";
  display: block;
  width: 11px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -1px;
  border-radius: 3px;
  background-color: #ed5656;
  transform: translate(-50%, -50%) rotate(45deg);
}

.criteria .tag .delete:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Scrollbar */

.criteria .scroll-x {
  width: auto;
  height: auto;
  margin: 14px -30px 0 0;
  padding: 0 30px 18px 0;
  white-space: nowrap;
  /* iPhone fix */
overflow-scrolling: initial;
}

.criteria .scroll-x::scrollbar-track {
  background-color: transparent;
}

.criteria .scroll-x::scrollbar {
  height: 3px;
  background-color: #f4f4f4;
}

.criteria .scroll-x::scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 3px;
  border: none;
}

/* QUOTE SUCCESS */

.popup .quote-success {
  max-width: 720px !important;
}

.quote-success .message {
  max-width: 456px;
  margin: 0 auto;
  text-align: center;
}

.quote-success .message .icon {
  display: block;
  width: 65px;
  height: 65px;
  margin: 0 auto;
  background: no-repeat center/contain;
}

.quote-success .message .heading {
  color: #90c65c;
  font-size: 3.2em;
  margin-top: 15px;
}

.quote-success .message .text {
  font-size: 1.4em;
  margin-top: 20px;
}

.quote-success .remarketing-banner {
  max-width: 300px;
  margin: 30px auto 0;
}

.quote-success .remarketing-banner,
.quote-success .remarketing-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.quote-success .store-list {
  margin-top: 20px;
  padding-right: 10px;
  padding-left: 10px;
}

.quote-success .store-card {
  max-width: 240px;
  margin: 0 auto;
}

.quote-success .store-card .holder {
  box-shadow: 0px 18px 45px -15px rgba(20, 54, 102, 0.15),
        inset 0px 1px 0px 1px rgba(20, 54, 102, 0.05);
}

.quote-success .store-card .holder .info .arrow-link {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 15px;
    
}

.quote-success .store-card .holder .info .arrow-link:after {
  right: 2px;
}

/* QUOTE CTA */

.quote-cta {
  text-align: center;
  background: #f99441 repeat center/100px;
  color: #fff;
}

body[data-event-type="1"] .quote-cta {
  background-color: var(--color-white);
}

body[data-event-type="2"] .quote-cta {
  background-color: var(--color-white);
}

body[data-event-type="3"] .quote-cta {
  background-color: var(--color-white);
}

body[data-event-type="4"] .quote-cta {
  background-color: var(--color-white);
}

.quote-cta .rounded-btn {
  margin-top: 40px;
  background-color: #90c65c;
  box-shadow: 0px 12px 20px -8px rgba(51, 51, 51, 0.15);
}

.quote-cta .styled-form .label {
  text-align: left;
}

.quote-cta .styled-form .label .text {
  color: #fff;
}

.quote-cta .styled-form .label .input {
  box-shadow: 0px 12px 20px -6px rgba(20, 54, 102, 0.1),
        0px 0px 0px 2px rgba(20, 54, 102, 0);
}

.quote-cta .styled-form .label .input:focus {
  box-shadow: 0px 12px 20px -6px rgba(20, 54, 102, 0.1),
        0px 0px 0px 1px rgba(20, 54, 102, 0.5);
}

.quote-cta .styled-form .rounded-btn {
  background-color: #143666;
  margin-top: 0;
  box-shadow: 0px 12px 20px -6px rgba(51, 51, 51, 0.25);
}

.quote-cta .styled-form label.error {
  color: #fff;
}

/* LOGIN POPUP */

.popup.user-popup .holder {
  padding: 0 0 30px !important;
  overflow: hidden;
  max-width: 450px;
}

.popup.user-popup .holder .head {
  padding: 25px 30px;
  background-image: url(../images/home/newsletter-pattern.svg);
  background-color: #f99441;
  background-repeat: repeat;
  background-position: center;
  background-size: 120px;
    
}

.popup.user-popup .holder .head .title {
  font-size: 2em;
  color: #fff;
  font-weight: 700;
}

.popup.user-popup .holder .head .text {
  margin-top: 5px;
  font-size: 1.5em;
  line-height: 1.1;
  color: #fff;
}

.popup.user-popup .holder .head .text span {
  margin-right: 6px;
}

.popup.user-popup .holder .head .text .arrow-link {
  vertical-align: initial;
  padding-right: 11px;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
}

.popup.user-popup .holder .head .text .arrow-link:after {
  border-color: #fff;
}

.popup.user-popup .holder .styled-form {
  padding: 0px 30px;
}

.popup.user-popup .holder .submit-holder {
  margin-top: 35px;
}

.popup.user-popup .holder .links {
  margin: 20px 0 -3px;
  text-align: center;
}

.popup.id-password-popup .holder {
  max-width: 400px;
}

/* PROVIDERS BOOK POPUP */

.popup.providers-book-popup .holder {
  max-width: 930px;
}

.popup.providers-book-popup .title {
  color: #143666;
  font-size: 1.8em;
}

.popup.providers-book-popup .list {
  display: block;
  padding: 25px 0px 20px;
  color: #666;
    
}

.popup.providers-book-popup .list + .list {
  border-top: 1px solid rgba(214, 214, 214, 0.45);
}

.popup.providers-book-popup .list:last-of-type {
  padding-bottom: 0;
}

.popup.providers-book-popup .list .name {
  display: block;
  font-size: 1.5em;
  line-height: 1.2;
  font-weight: 700;
  color: #606060;
  margin-bottom: 6px;
}

.popup.providers-book-popup .list .tag {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 8px 0;
  font-size: 1.5em;
  line-height: 1.2;
  color: #666;
  transition: color 200ms ease-out;
}

.popup.providers-book-popup .list .tag:hover,
.popup.providers-book-popup .list .tag:focus {
  color: #4f9cd6;
}

.popup.providers-book-popup .list .tag.active {
  font-weight: 700;
  color: #f28625;
}

.popup.providers-book-popup .list .tag.active:before {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  right: -13px;
  left: -12px;
  z-index: -1;
  background-color: rgba(102, 102, 102, 0.08);
  border-radius: 100px;
  transition: background-color 200ms ease-out;
}

.popup.providers-book-popup .filters-header {
  position: relative;
}

.popup.providers-book-popup .filters {
  display: block;
  height: 60px;
  position: relative;
  width: auto;
  margin: 0 -30px;
  margin-top: 15px;
  padding: 0 30px;
  padding-right: 90px;
  border-bottom: 1px solid rgba(89, 89, 89, 0.1);
  border-top: 1px solid rgba(89, 89, 89, 0.1);
    
}

.popup.providers-book-popup .filters .text {
  display: inline-block;
  line-height: 60px;
  font-size: 1.6em;
  margin-left: 30px;
}

.popup.providers-book-popup .filters .item {
  width: 58px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  border-left: 1px solid rgba(89, 89, 89, 0.1);
}

.popup.providers-book-popup .filters .item .btn {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
}

.popup.providers-book-popup .filters .item .hidden-select {
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  opacity: 0;
  font-size: 14px;
  cursor: pointer;
}

.popup.providers-book-popup .filters .item .btn:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: relative;
  top: 0;
  margin: 0 auto;
  border: solid #d6d6d6;
  border-width: 0 0 1px 1px;
  transform: rotate(-45deg);
  transition: transform 200ms ease-out, top 200ms ease-out;
    
}

.popup.providers-book-popup .filters .item .btn .icon {
  display: block;
  background: no-repeat center/36px;
  width: 60%;
  height: 60%;
  margin: 5px auto 0;
  background-size: contain;
  transition: all 200ms ease-out;
}

.popup.providers-book-popup .filters .input-holder {
  position: relative;
  margin: 11px -2px 0;
}

.popup.providers-book-popup .filters .input-holder .input {
  display: block;
  width: 100%;
  padding: 10px 17px 11px;
  font-size: 1.5em;
  line-height: 1.1;
  color: #143666;
  background-color: rgba(102, 102, 102, 0.05);
  border-radius: 12px;
    
}

.popup.providers-book-popup .filters .input-holder .submit {
  display: block;
  width: 42px;
  height: 38px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  background: no-repeat center;
  transform: translateY(-50%);
}

/* HELLO BAR */

.hello-bar,
.hello-bar .bar {
  height: 106px;
}

.hello-bar .bar {
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
  position: fixed;
  left: 0;
  top: 58px;
  z-index: 400;
  background-color: #143666;
  text-align: center;
    
}

.hello-bar .text {
  color: #fff;
  font-size: 1.4em;
}

.hello-bar .btn {
  display: inline-block;
  padding: 3px 11px 5px;
  margin-top: 6px;
  margin-bottom: 4px;
  background-color: #4f9cd6;
  font-size: 1.3em;
  font-weight: 700;
  color: #fff;
  border-radius: 6px;
}

/* FEATURED */

/* Main */

.featured-main {
  position: relative;
  text-align: center;
}

.featured-main .image,
.featured-main .imageHome {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.featured-main .image:before,
.featured-main .imageHome:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 83.333%;
}

/* Slider */

.featured-slider {
  max-width: 300px;
  position: relative;
  margin: 0 auto 25px;
}

.featured-slider .image,
.featured-slider .imageHome {
  display: block;
  box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15);
}

.featured-slider .image:before,
.featured-slider .imageHome:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 33.3333%;
}

.featured-slider .slider.notInit {
  overflow: hidden;
}

.featured-slider .slider.notInit > .notInitHide {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

.featured-slider .bx-pager {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -25px;
  text-align: center;
}

.featured-slider .bx-pager .bx-pager-item {
  display: inline-block;
  vertical-align: top;
  margin-left: 6px;
}

.featured-slider .bx-pager .bx-pager-item:first-child {
  margin-left: 0;
}

.featured-slider .bx-pager .bx-pager-item a {
  display: block;
  width: 8px;
  height: 8px;
  background-color: rgba(109, 109, 109, 0);
  box-shadow: 0px 0px 0px 1px rgba(109, 109, 109, 0.3);
  border-radius: 50%;
  text-indent: -999px;
  overflow: hidden;
  transition: background-color 200ms ease-out;
}

.featured-slider .bx-pager .bx-pager-item a.active {
  background-color: rgba(109, 109, 109, 0.3);
}

.featured-slider .bx-controls-direction .bx-prev,
.featured-slider .bx-controls-direction .bx-next {
  top: 50%;
  margin-top: -20px;
  left: -38px;
}

.featured-slider .bx-controls-direction .bx-next {
  left: auto;
  right: -37px;
}

/* HELLO BAR V2 */

.hello-bar-v2 {
  width: 100%;
  padding: 30px 0 40px;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999;
  text-align: center;
  background-color: var(--primary-color);
  border-top: 4px solid var(--color-white);
  box-shadow: 0px -5px 30px 0px var(--color-primary-shadow);
}

.hello-bar-v2 .text {
  color: #fff;
  font-size: 1.8em;
}

.hello-bar-v2.shake .wrapper {
  animation: wobble 800ms;
}

.hello-bar-v2 .event-type-list {
  max-width: 346px;
  margin: 0 auto;
}

.hello-bar-v2 .event-type-list > .item .btn:before {
  padding-bottom: 86%;
}

/* SERVICES LIST */

.services-list {
  border-top: 1px solid #eaeaea;
}

.services-list .sub-title {
  font-size: 2em;
  color: var(--primary-color);
  text-transform: uppercase;
}

.services-list .item {
  margin-top: var(--space-xs);
  position: relative;

}

.services-list .item:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #606060;
  opacity: 0.3;
}

.services-list .item .tag {
  margin-left: 10px;
  color: var(--color-text);
}

body[data-event-type="1"] .services-list.highlighted .item .tag {
  color: #f1ab10;
}

body[data-event-type="1"] .services-list.highlighted .item:before {
  background: #f1ab10;
}

body[data-event-type="2"] .services-list.highlighted .item .tag {
  color: #b479f2;
}

body[data-event-type="2"] .services-list.highlighted .item:before {
  background: #b479f2;
}

body[data-event-type="3"] .services-list.highlighted .item .tag {
  color: #f17b7b;
}

body[data-event-type="3"] .services-list.highlighted .item:before {
  background: #f17b7b;
}

body[data-event-type="4"] .services-list.highlighted .item .tag {
  color: #8cc357;
}

body[data-event-type="4"] .services-list.highlighted .item:before {
  background: #8cc357;
}

/* ********************** de Mobile a TABLET ********************** */

/* ********************** de Tablet a DESKTOP ********************** */

/* ********************** de Desktop a HD ********************** */

/* KEYFRAMES loading */

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* KEYFRAMES wobble */




@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}


@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

/* nuevo diseño */
@keyframes growAndShadow {
  0% {
    transform: scale(1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}



/* ***************************************************************************************** */
/* Contenedor del toaster - el div toaster está en ../Particle/Apps/Views/layout/default/footer.tpl */
/* Estilo general del toaster */
.toaster {
    position: fixed;
    bottom: 9%;
    left: 20%;
    max-width: 200px;
    padding: 15px;
    border-radius: 5px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transform: translateY(30px); /* Comienza deslizándose hacia arriba */
    z-index: 9999;
}

/* Estilo para cuando el toaster está activo */
.toaster.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Aparece deslizándose hacia arriba */
}

/* Estilo para cuando se agrega un proveedor */
.toaster.agregado {
    background-color: #8CC357;
    border-left: 5px solid #2E7D32; /* Un borde para acento */
}

/* Estilo para cuando se quita un proveedor */
.toaster.quitado {
    background-color:#f99441;
    border-left: 5px solid #D8680C; /* Un borde para acento */
}

/* Opcional: sombreado para mayor contraste */
.toaster {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 500px) {
  .hello-bar,
  .hello-bar .bar {
    height: 86px;
  }
}

@media (min-width: 501px) {
  .quote-bar.proveedor-quote-bar .wrapper {
    padding: 16px 60px;
  }
}

@media (min-width: 768px) {
  /* GENERAL */
  .newsletter .checkboxes {
   display:inline-flex;
   gap: var(--space-xl);
  }

  /* INTRO */
    .intro {
        min-height: auto;
        height: 80vh;
        justify-content: center;
    }

    .intro .event-type-list {
      grid-template-columns: repeat(4, minmax(150px, 1fr)); 
      gap: 2.5rem;
    }

    #formNewsLetter,
    .section-nav.wrapper {
        max-width: 750px;
    }

    .intro .description ~ .event-type-list{
        margin-top: 45px;
    }
  

    .intro .description ~ .main-search{
        margin-top: 40px;
    }
  /* SECTION */
  .section-t {
    padding-top: 75px;
  }

  .section-b {
    padding-bottom: 75px;
  }

  /* RESULTS HOLDER */

  .results-holder {
    height: 45px;
  }

  .results-holder .results-container {
    top: 120px;
  }

  /* INTRO */

  .intro .event-caption {
    padding: 6px 12px 5px;
    margin: -20px 0 10px;
    font-size: 1.4em;
  }

  /* Xs */
  .intro.xs .wrapper {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .intro.xs .text {
    width: 90%;
    max-width: 670px;
    margin: 18px auto 0;
  }

  .intro.xs .text p {
    font-size: 1.6em;
  }

  .intro.xs .text p.caption {
    font-size: 1.4em;
  }

  /* DARK SLIDER ARROWS */

  .wrapper .darkSliderArrows .bx-prev,
  .wrapper .darkSliderArrows .owl-prev {
    left: -50px;
  }

  .wrapper .darkSliderArrows .bx-next,
  .wrapper .darkSliderArrows .owl-next {
    right: -50px;
  }

  /* Spark */

  .heading .spark:before {
    width: 24px;
    transform: translate(26%, -120%);
  }

  .heading .spark.left:before {
    transform: translate(-130%, 110%) rotate(180deg);
  }

  .heading.xs .spark.left:before {
    transform: translate(-130%, 80%) rotate(180deg);
  }

  /* FOOTER */

  .footer .wrapper {
    text-align: left;
  }

  .footer .bottom .bloque {
    position: absolute;
    right: 50px;
    top: 50%;
    margin-top: 0;
    padding-left: 0;
    transform: translateY(-50%);
  }
    li.list-footer{
      width:25%;
      padding-right: 1.5rem;
  }


  /* POPUP */

  .popup:not(.visibleForSeo) > .holder {
    padding: 17px 50px;
  }

  /* CONTENT */

  .content h1,
  .content h2 {
    font-size: 3em;
  }

  .content h2.heading {
    font-size: 3.8em;
  }

  .content h3 {
    font-size: 2.2em;
  }

  .content h4,
  .content h5,
  .content h6 {
    font-size: 1.8em;
  }

  .content p,
  .content ul,
  .content ol,
  .content blockquote {
    margin-top: 15px;
  }

  .content li,
  .content p {
    font-size: 1.6em;
  }

  .content li {
    padding-left: 32px;
    margin-top: 8px;
  }

  .content ul > li:before {
    left: 10px;
  }

  .content ol > li:before {
    top: 1px;
    left: 8px;
  }

  .content ol ol ol > li {
    padding-left: 32px;
  }

  /* TEXT PAGE */
  .text-page .content {
    margin-top: 40px;
  }

  .text-page .title {
    font-size: 3em;
  }

  /* STYLED FORM */

  .form-page .styled-form {
    margin-top: -30px;
  }

  .styled-form .label {
    margin-top: 30px;
  }

  .styled-form .label .text {
    font-size: 1.5em;
  }

  .styled-form label.error {
    margin-top: 7px;
    font-size: 1.4em;
  }

  /* Message */

  .styled-form .response {
    font-size: 1.8em;
    padding: 8px 0;
  }

  /* No filter */

  .quote-bar.no-filter .wrapper {
    padding: 0 75px;
  }

  .quote-bar .submit-btn {
    display: inline-block;
    vertical-align: top;
    height: 44px;
    right: 50px;
    position: static;
    background-size: 22px auto;
    transform: none !important;
  }

  /* ex DESKTOP */

  /* QUOTE BAR */

  .quote-bar,
  .quote-bar > .holder,
  .quote-bar .align-middle:before {
    height: 58px;
  }

  .quote-bar .wrapper {
    padding: 0 75px;
    position: relative;
  }

  .quote-bar.proveedor-quote-bar .wrapper {
    padding: 0 50px;
  }

  .quote-bar .info {
    padding-left: 38px;
  }

  .quote-bar .info .text {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    margin: 0 7px 0 0;
    font-size: 1.6em;
  }

  .quote-bar .info .text .num-holder {
    width: 24px;
    height: 24px;
    line-height: 24px;
  }

  .quote-bar .info .arrow-link {
    display: inline-block;
    vertical-align: middle;
    margin: 0;
    font-size: 1.6em;
  }

  .quote-bar .btns {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
  }

  .quote-bar .submit-btn {
    width: auto;
    height: auto;
    position: static;
    padding: 7px 20px 6px 36px;
    font-size: 1.4em;
    background-position: 14px center;
    background-size: 14px auto;
    transform: none;
  }

  .quote-bar .submit-btn .text {
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
  }

  .quote-bar .submit-btn.all {
    height: auto;
    background-color: #143666;
    margin-left: 7px;
  }

  .quote-bar .submit-btn:not([disabled]):hover,
  .quote-bar .submit-btn:not([disabled]):focus {
    background-color: #4f9cd6 !important;
  }

  .quote-bar .submit-btn.add,
  .quote-bar .submit-btn.delete {
    padding: 7px 20px 6px 36px;
    font-size: 1.4em;
    background-position: 14px center;
    background-size: 14px auto;
  }

  /* No filter */

  .quote-bar.no-filter .wrapper {
    padding: 0 50px;
  }

  /* TUTORIAL */

  .tutorial {
    padding-top: 30px;
  }

  .tutorial .close-btn {
    padding-right: 0;
    padding-left: 0;
    right: 50px;
    top: 54px;
  }

  .tutorial .close-btn .text {
    font-size: 1.5em;
    margin-right: 6px;
  }

  .tutorial .title {
    width: 100%;
    max-width: 520px;
    position: absolute;
    left: 50%;
    top: 35%;
    font-size: 2.4em;
    font-weight: 700;
    transform: translate(-50%, -100%);
  }



  .tutorial .text-holder {
    max-width: 300px;
    bottom: 85px;
    font-size: 1.8em;
  }

  .tutorial .text-holder.position-1 {
    left: 75px;
    padding-bottom: 252px;
  }

  .tutorial .text-holder.position-1:before {
    width: 93px;
    height: 229px;
  }

  .tutorial .text-holder.position-2 {
    max-width: 250px;
    padding-bottom: 93px;
    left: 26%;
  }

  .tutorial .text-holder.position-2:before {
    width: 30px;
    height: 78px;
    left: 70px;
  }

  .tutorial .text-holder.position-3 {
    right: 130px;
    padding-bottom: 170px;
  }

  .tutorial .text-holder.position-3:before {
    width: 93px;
    height: 160px;
    right: -25px;
    transform: rotate(10deg);
  }

  .tutorial .text-holder.position-4 {
    max-width: 330px;
    right: 50px;
    padding-bottom: 260px;
    bottom: 90px;
    text-align: right;
  }

  .tutorial .text-holder.position-4:before {
    width: 53px;
    height: 264px;
    right: -20px;
    bottom: 12px;
  }

  /* INCLUDED POPUP */

  .popup.included-popup,
  .popup.included-popup:after {
    bottom: 62px;
  }

  .popup.included-popup .list {
    margin-top: 5px;
    margin-bottom:15px;
  }

  .popup.included-popup .list .item {
    margin-top: 10px;
  }

  .popup.included-popup .list .avatar {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    left: 17px;
  }

  .popup.included-popup .list .info {
    padding-left: 68px;
  }

  .popup.included-popup .quote-cta {
    margin: 0 -50px;
    margin-top: 50px;
    padding: 13px 30px 18px 0;
  }

  .popup.included-popup .quote-cta .heading {
    font-size: 2.2em;
  }

  .popup.included-popup .quote-cta .icon-arrow {
    margin-left: 14px;
    position: relative;
    top: 3px;
  }

  /* QUOTE FORM */

  .quote-form .title {
    font-size: 1.8em;
    font-weight: 400;
  }

  .quote-form .criteria {
    margin: 10px 0 0 -3px;
  }

  .quote-form .criteria .tag {
    margin-top: 10px;
    padding: 8px 30px 9px 17px;
    font-size: 1.4em;
  }

  .quote-form .criteria .scroll-x {
    margin-right: 0;
  }

  .quote-form .criteria:after {
    width: 30px;
    right: -5px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 70%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
  }
  .quote-form .separator {
    padding-top: 30px;
    margin-top: 30px;
  }

  /* QUOTE SUCCESS */

  .quote-success .remarketing-banner {
    max-width: 500px;
    margin-top: 40px;
  }

  .quote-success .store-list {
    margin-top: 25px;
    margin-bottom: -45px;
    padding-right: 0;
    padding-left: 0;
  }

  .quote-success .message .icon {
    width: 74px;
    height: 74px;
  }

  .quote-success .message .heading {
    font-size: 4em;
  }

  .quote-success .store-card {
    max-width: none;
    margin: auto;
  }

  .quote-success .store-list [class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
  }

  /* LOGIN POPUP */

  .popup.user-popup .holder {
    padding-bottom: 50px !important;
  }

  .popup.user-popup .holder .head {
    padding: 35px 50px 30px;
    margin-bottom: 10px;
  }

  .popup.user-popup .holder .head .title {
    font-size: 2.4em;
  }

  .popup.user-popup .holder .head .text {
    margin-top: -2px;
  }

  .popup.user-popup .holder .styled-form {
    padding: 0px 50px;
  }

  .popup.user-popup .holder .submit-holder {
    margin-top: 45px;
  }

  .popup.user-popup .holder .links {
    margin-bottom: -8px;
  }

  /* PROVIDERS BOOK POPUP */

  .popup.providers-book-popup .holder {
    padding-bottom: 90px !important;
  }

  .popup.providers-book-popup .filters-header {
    position: relative;
    border-bottom: 1px solid rgba(214, 214, 214, 0.45);
  }

  .popup.providers-book-popup .filters {
    border: none;
    padding-right: 30px;
  }

  .popup.providers-book-popup .event-type-nav {
    position: absolute;
    top: -25px;
    right: 0;
    padding: 8px 0;
  }

  .popup.providers-book-popup .event-type-nav .item {
    display: inline-block;
    vertical-align: top;
    margin-left: 13px;
  }

  .popup.providers-book-popup .event-type-nav .item:first-child {
    margin-left: 0;
  }

  .popup.providers-book-popup .event-type-nav .item .btn,
  .popup.providers-book-popup .event-type-nav .item .btn .icon {
    display: block;
    width: 36px;
    height: 36px;
    position: relative;
    background: no-repeat center/contain;
  }

  .popup.providers-book-popup .event-type-nav .item .btn[disabled] {
    opacity: 0.2;
    cursor: default;
  }

  .popup.providers-book-popup .event-type-nav .item .btn .icon {
    display: block;
    width: 100%;
    height: 100%;
  }

  .popup.providers-book-popup .event-type-nav .item .btn:after {
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    left: 2px;
    right: 2px;
    bottom: -10px;
    opacity: 0;
    transition: opacity 200ms ease-out;
  }

  .popup.providers-book-popup .event-type-nav .item .btn.active:after {
    opacity: 1;
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="1"]:after {
    background-color: #FEB902;
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="1"] .icon {
    /*background-image: url(../images/icons/evento-1.svg);*/
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="2"]:after {
    background-color: #b479f2;
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="2"] .icon {
    /*background-image: url(../images/icons/evento-2.svg);*/
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="3"]:after {
    background-color: #f17b7b;
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="3"] .icon {
    /*background-image: url(../images/icons/evento-3.svg);*/
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="4"]:after {
    background-color: #98d85b;
  }

  .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="4"] .icon {
    /*background-image: url(../images/icons/evento-4.svg);*/
  }

  /* HELLO BAR */

  .hello-bar,
  .hello-bar .bar {
    height: 52px;
  }

  .hello-bar .bar {
    top: 110px;
    padding-right: 50px;
    padding-left: 50px;
    text-align: justify;
    line-height: 0;
  }

  .hello-bar .bar .align {
    width: 100%;
    padding-top: 2px;
  }

  .hello-bar .bar .align:after {
    content: "";
    display: inline-block;
    width: 100%;
  }

  .hello-bar .text {
    display: inline-block;
    font-size: 1.5em;
  }

  .hello-bar .btn {
    font-size: 1.4em;
    margin: 0 0 0 10px;
  }

  /* FEATURED */

  .featured-main .image,
  .featured-main .imageHome {
    max-width: none;
  }

  .featured-main .image:before,
  .featured-main .imageHome:before {
    padding-bottom: 30%;
  }

  /* Slider */

  .featured-slider {
    max-width: none;
    margin: 0;
  }

  .featured-slider .image:before,
  .featured-slider .imageHome:before {
    padding-bottom: 13.636%;
  }

  .featured-slider .bx-pager .bx-pager-item {
    margin-left: 8px;
  }

  /* HELLO BAR V2 */

  .hello-bar-v2 {
    box-shadow: 0px -5px 30px 0px rgba(0, 0, 0, 0.2);
    padding: 40px 0 50px;
  }

  .hello-bar-v2 .text {
    font-size: 2em;
  }

  .hello-bar-v2 .event-type-list {
    max-width: 650px;
  }

  .hello-bar-v2 .event-type-list > .item {
    width: 25%;
  }

  .hello-bar-v2 .event-type-list > .item .btn {
    border-radius: 15px;
  }

  .hello-bar-v2 .event-type-list > .item .btn:before {
    padding-bottom: 100%;
  }

  .hello-bar-v2 .event-type-list > .item .btn .text {
    font-size: 1.6em;
  }
}

@media (min-width: 980px) {
      /* EVENT TYPE LIST */
    .intro .event-type-list > .item .btn:hover .text,
    .intro .event-type-list > .item .btn:focus .text{
        color: rgba(20, 54, 102, 0.8);
    }

    .intro .event-type-list > .item .btn .tooltip{
    	top: calc(100% + 4px);
    }
    .intro .event-type-list > .item .btn.event-type-4 .tooltip{
    	background-color: #72a244;
    }
    .intro .event-type-list > .item .btn.event-type-4 .tooltip:before{
    	border-bottom-color: #72a244;
    }
    .intro .event-type-list > .item .btn.event-type-4 .tooltip .item:before{
    	background-color: #98d85b;
    }

  .store-carousel .store-list {
    margin-right: -17px;
    margin-left: -17px;
  }

  .store-carousel .store-list .store-card {
    padding-right: 17px;
    padding-left: 17px;
      
  }

  .store-carousel .owl-nav .owl-prev {
    margin-left: -195px;
  }

  .store-carousel .owl-nav .owl-next {
    margin-left: 155px;
  }

  /* SECTION */
  .section-t {
    padding-top: 60px;
  }

  .section-b {
    padding-bottom: 60px;
  }


  /* NAV */

  .nav,
  .nav .scrollable,
  .nav .menu,
  .nav .menu li,
  .nav .menu li a,
  .nav .menu li button {
    display: inline-block;
    vertical-align: middle;
  }

  .nav {
    display: none;
    margin-left: 25px;
  }

  .id-nav.nav {
    display: inline-block !important;
  }

  .nav .scrollable {
    width: auto;
    height: auto;
    overflow: visible;
  }

  .nav .menu li {
    margin-left: 20px;
  }

  .nav .menu li:first-child {
    margin-left: 0;
  }

  .nav .menu li a,
  .nav .menu li button {
    padding: 5px 0;
    font-size: 1.5em;
    color: #666;
  }

  .nav .menu li.active a,
  .nav .menu li.active button {
    color: #f99441;
    font-weight: 700;
  }

  .nav .menu li.highlight a,
  .nav .menu li.highlight button {
    color: #143666;
    font-weight: 700;
  }

  .nav .menu li a:hover,
  .nav .menu li a:focus,
  .nav .menu li button:hover,
  .nav .menu li button:focus {
    color: #4f9cd6;
  }

  .nav .menu li.highlight a:hover,
  .nav .menu li.highlight a:focus,
  .nav .menu li.highlight button:hover,
  .nav .menu li.highlight button:focus {
    color: #4f9cd6;
  }

  .results-holder .results-container .wrapper {
    position: relative;
    text-align: justify;
  }

  .results-holder .results-container .wrapper:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 100%;
  }

  .results-holder .results-container {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .results-holder .results-container .results,
  .results-holder .results-container .actual-result {
    display: inline-block;
    vertical-align: middle;
  }

  .results-holder .results-container .results .results-list,
  .results-holder .results-container .results .results-list .item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
  }

  .results-holder .results-container .results .results-list .item .link {
    font-size: 1.4em;
    padding: 3px 8px;
    color: #fff;
    background: red;
    border-radius: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    transition: opacity 250ms ease-out;
      
  }

  .results-holder .results-container .results .results-list .item .link:hover,
  .results-holder .results-container .results .results-list .item .link:focus {
    opacity: .5;
  }

  .results-container .results .results-list .item .link[data-event-type="1"] {
    background: #FEB902;
  }

  .results-container .results .results-list .item .link[data-event-type="2"] {
    background: #b479f2;
  }

  .results-container .results .results-list .item .link[data-event-type="3"] {
    background: #f17b7b;
  }

  .results-container .results .results-list .item .link[data-event-type="4"] {
    background: #98d85b;
  }

  .results-holder .results-container .actual-result .text {
    font-weight: 700;
  }

  .results-holder .results-container .actual-result .icon {
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 35px;
    margin: 0 3px;
  }

  body[data-event-type="1"] div.results-holder .results-container .actual-result .icon {
    background-image: url(../images/icons/evento-1-w2.svg);
  }

  body[data-event-type="2"] div.results-holder .results-container .actual-result .icon {
    background-image: url(../images/icons/evento-2-w2.svg);
  }

  body[data-event-type="3"] div.results-holder .results-container .actual-result .icon {
    background-image: url(../images/icons/evento-3-w2.svg);
  }

  body[data-event-type="4"] div.results-holder .results-container .actual-result .icon {
    background-image: url(../images/icons/evento-4-w2.svg);
  }

  /* Header modal */

  .id-event-type-nav {
    display: none !important;
  }

  /* ROUNDED BTN */

  .rounded-btn:hover,
  .rounded-btn:focus {
    background-color: #4f9cd6;
  }

  /* ARROW LINK */

  .arrow-link:after {
    transition: border-color 200ms ease-out;
  }

  .arrow-link:hover,
  .arrow-link:focus {
    color: #4f9cd6;
  }

  .arrow-link:hover:after,
  .arrow-link:focus:after {
    border-color: #4f9cd6;
  }

  /* SLIDER ARROWS */

  .darkSliderArrows .bx-prev,
  .darkSliderArrows .bx-next,
  .darkSliderArrows .owl-prev,
  .darkSliderArrows .owl-next {
    transition: background-color 200ms ease-out;
  }

  .darkSliderArrows .bx-prev:hover,
  .darkSliderArrows .bx-prev:focus,
  .darkSliderArrows .bx-next:hover,
  .darkSliderArrows .bx-next:focus,
  .darkSliderArrows .owl-nav:not(.disabled) .owl-prev:hover,
  .darkSliderArrows .owl-nav:not(.disabled) .owl-prev:focus,
  .darkSliderArrows .owl-nav:not(.disabled) .owl-next:hover,
  .darkSliderArrows .owl-nav:not(.disabled) .owl-next:focus {
    background-color: #4f9cd6;
  }

  /* TOOLTIP */

  .tooltip-holder .tooltip {
    display: block;
    padding: 6px 12px 7px;
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 2;
    line-height: 1.1;
    white-space: nowrap;
    color: var(--color-white);
    background-color: var(--color-primary);
    border-radius: 8px;
    box-shadow: 0px 7px 10px -3px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translate3d(-50%, 8px, 0);
    pointer-events: none;
    transition: transform 200ms ease-out,
            opacity 200ms ease-out;
  }

  .tooltip-holder .tooltip:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: -8px;
    margin-left: -8px;
    border-bottom: 8px solid var(--color-primary);
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }

  .tooltip-holder:hover .tooltip {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
    transition-delay: 300ms;
  }

  .tooltip-holder .tooltip.list {
    white-space: initial;
    text-align: left;
    padding: 13px 14px 13px;
  }

  .tooltip-holder .tooltip.list .item {
    display: block;
    white-space: nowrap;
    margin-top: 5px;
  }

  .tooltip-holder .tooltip.list .item:first-child {
    margin-top: 0;
  }

  .tooltip-holder .tooltip.list .item:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    margin-right: 8px;
    background: #fff;
    border-radius: 50%;
  }

  /* FOOTER */
  .footer .list li a:hover,
  .footer .list li a:focus {
    color: #4f9cd6;
  }

  .footer .social li a {
    width: 32px;
    height: 32px;
    background-size: 28px;
  }

  .footer .social li a:hover,
  .footer .social li a:focus {
    opacity: 0.3;
  }


  .footer .bottom .wrapper {
    padding-right: 200px;
  }

  /* POPUP */

  .popup:not(.visibleForSeo) > .holder {
    padding: 60px 75px;
  }

  /* QUOTE BAR */

  .quote-bar .submit-btn {
    font-size: 1.6em;
  }

  .quote-bar .submit-btn.add,
  .quote-bar .submit-btn.delete {
    font-size: 1.6em;
  }

  /* TUTORIAL */

  .tutorial {
    padding: 0;
  }

  .tutorial .wrapper {
    height: 100%;
    position: relative;
  }

  .tutorial .close-btn {
    top: 40px;
  }

  .tutorial .title {
    top: 39%;
  }

  .tutorial .text-holder {
    max-width: 400px;
    font-size: 2em;
  }

  .tutorial .text-holder.position-2 {
    max-width: 300px;
    padding-bottom: 130px;
    left: 50px;
  }

  .tutorial .text-holder.position-2:before {
    width: 150px;
    height: 120px;
    left: 100px;
  }

  .tutorial .text-holder.position-2 .text {
    transform: rotate(-12.5deg);
  }

  .tutorial .text-holder.position-3 {
    max-width: 300px;
    text-align: right;
    right: 322px;
    padding-bottom: 65px;
    bottom: 75px;
  }

  .tutorial .text-holder.position-3:before {
    width: 84px;
    height: 94px;
    right: -95px;
    transform: none;
  }

  .tutorial .text-holder.position-3 .text {
    transform: rotate(-4.5deg);
  }

  .tutorial .text-holder.position-4 {
    max-width: 400px;
    right: 47px;
    bottom: 85px;
    padding-bottom: 210px;
    text-align: right;
    transform: rotate(-5deg);
  }

  .tutorial .text-holder.position-4:before {
    width: 56px;
    height: 210px;
    right: 35px;
    bottom: 0;
  }

  /* INCLUDED POPUP */

  .popup.included-popup,
  .popup.included-popup:after {
    bottom: 58px;
  }

  .popup.included-popup .quote-cta {
    margin: 0 -75px;
    margin-top: 50px;
  }

  /* CRITERIA */

  .criteria .tag {
    margin-top: 10px;
    padding: 8px 30px 9px 17px;
  }

  .criteria .tag .delete:before,
  .criteria .tag .delete:after {
    transition: background-color 200ms ease-out;
  }

  .criteria .tag .delete:hover:before,
  .criteria .tag .delete:hover:after,
  .criteria .tag .delete:focus:before,
  .criteria .tag .delete:focus:after {
    background-color: #4f9cd6;
  }

  /* QUOTE SUCCESS */

  .quote-success .store-list {
    margin-right: -25px;
    margin-left: -25px;
  }

  /* QUOTE CTA */

  .quote-cta .rounded-btn:hover,
  .quote-cta .rounded-btn:focus {
    background-color: #4f9cd6;
  }

  /* HELLO BAR */

  .hello-bar,
  .hello-bar .bar {
    height: 46px;
    text-align: center;
  }

  .hello-bar .bar .align {
    width: auto;
    padding: 0;
  }

  .hello-bar .bar .align:after {
    display: none;
  }

  .hello-bar .text {
    position: relative;
    padding-right: 88px;
  }

  .hello-bar .text:after {
    content: "";
    display: block;
    width: 74px;
    height: 26px;
    position: absolute;
    right: 0;
    top: 50%;
    background: no-repeat center/contain;
    transform: translateY(-50%);
  }

  /* HELLO BAR V2 */

  .hello-bar-v2 {
    /*
        bottom: auto;
        top: 50vh;
        padding-bottom: 55px;
        */
    bottom: 0;
    padding: 20px;
    border-bottom: 4px solid #fff;
    box-shadow: 0px -5px 30px 0px rgba(0, 0, 0, 0.2),
            0px 5px 30px 0px rgba(0, 0, 0, 0.2);
  }

  .hello-bar-v2 .text {
    font-size: 2.2em;
  }

  .hello-bar-v2 .event-type-list > .item .btn .text {
    font-size: 1.7em;
    transition: color 250ms ease-out;
  }

  .hello-bar-v2 .event-type-list > .item .btn:hover .text,
  .hello-bar-v2 .event-type-list > .item .btn:focus .text {
    color: rgba(20, 54, 102, 0.8);
  }

  /* SERVICES LIST */
  .services-list .item .tag:hover {
    color: #4f9cd6;
  }
}

@media (min-width: 1200px) {

  .hidden-lg {
    display: none !important;
  }

  /* NAV */
  .nav {
    margin-left: 45px;
  }

  .nav .menu li {
    margin-left: 30px;
  }

  .nav .menu li a,
  .nav .menu li button {
    font-size: 1.6em;
  }

  .nav .menu li.active a {
    color: #f99441;
    font-weight: 700;
  }

  .nav .menu li.highlight a {
    color: #143666;
    font-weight: 700;
  }

  /* SLIDER ARROWS */
  .darkSliderArrows .bx-prev,
  .darkSliderArrows .bx-next,
  .darkSliderArrows .owl-prev,
  .darkSliderArrows .owl-next {
    border-radius: 50%;
  }

  /* FEATURED */

  /* Slider */

  .featured-slider {
    margin-bottom: 45px;
  }

  .featured-slider .bx-pager {
    bottom: -45px;
  }

  .featured-slider .bx-pager .bx-pager-item {
    margin-left: 10px;
  }

  /* HELLO BAR V2 */

  .hello-bar-v2 .event-type-list {
    max-width: 720px;
  }
}

@media (min-width: 1200px) and (min-height: 800px) {
 /* SECTION */
  .section-t {
    padding-top: 75px;
  }

  .section-b {
    padding-bottom: 75px;
  }

  /* QUOTE BAR */

  .quote-bar,
  .quote-bar > .holder,
  .quote-bar .align-middle:before {
    height: 65px;
  }

  .quote-bar .submit-btn {
    /*padding-top: 9px;*/
    /*padding-bottom: 8px;*/
  }

  /* TUTORIAL */

  .tutorial .title {
    font-size: 2.8em;
    max-width: 626px;
  }

  .tutorial .close-btn {
    top: 54px;
  }

  .tutorial .text-holder {
    bottom: 100px;
  }

  .tutorial .text-holder.position-3 {
    bottom: 90px;
  }

  /* INCLUDED POPUP */

  .popup.included-popup,
  .popup.included-popup:after {
    bottom: 65px;
  }
}

@media (min-width: 1350px) {
  /* DARK SLIDER ARROWS */

  .wrapper .darkSliderArrows .bx-prev,
  .wrapper .darkSliderArrows .owl-prev {
    left: -70px;
  }

  .wrapper .darkSliderArrows .bx-next,
  .wrapper .darkSliderArrows .owl-next {
    right: -70px;
  }
}


@media (max-width: 979px) {
  
  /* NAV */
  .nav {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 490;
    background-color: #fff;
  }

  .nav .scrollable {
    text-align: center;
  }

  .nav .scrollable:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .nav .scrollable .align {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    max-width: 386px;
    text-align: left;
  }

  .nav .menu {
    padding: 88px 20px 40px 64px;
      
  }

  .nav .menu li + li {
    margin-top: 10px;
  }

  .nav .menu li a,
  .nav .menu li button {
    display: inline-block;
    position: relative;
    color: #666;
    font-size: 1.9em;
    line-height: 1.2;
    padding: 10px 0;
    padding-left: 10px;
  }

  .nav .menu li a:before,
  .nav .menu li button:before {
    content: "";
    display: block;
    width: 9px;
    height: 13px;
    position: absolute;
    left: -12px;
    top: 50%;
    background: no-repeat center/contain;
    transform: translateY(-50%);
  }

  .nav .menu li.active a {
    color: #f99441;
    font-weight: 700;
  }

  .nav .menu li.highlight a {
    color: #143666;
    font-weight: 700;
  }

  /* Animation */

  .nav {
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 350ms ease-out 300ms;
  }

  .nav .align {
    opacity: 0;
    transform: translate3d(0, -80px, 0);
    transition: opacity 250ms ease-out,
            transform 350ms cubic-bezier(0.47, 0, 0.75, 0.72);
  }

  .nav.show {
    background-color: #fff;
    transition: background-color 200ms ease-out;
  }

  .nav.show .align {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 250ms ease-in 150ms,
            transform 330ms cubic-bezier(0.39, 0.58, 0.57, 1) 150ms;
  }

  .quote-bar .submit-btn.all {
    width: auto;
    height: auto;
    padding: 7px 11px;
    padding-left: 27px;
    background: #143666 no-repeat 10px center/12px auto;
    top: auto;
    bottom: 100%;
    transform: translateY(-10px);
  }

  .quote-bar .submit-btn.all .text {
    display: block;
    color: #fff;
    /*font-size: 1.2em;*/
    font-weight: 700;
  }
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  /* Btns group */

  .header .btns-group {
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
  }

  .header .btns-group .item {
    display: inline-block;
    vertical-align: top;
    width: 58px;
    height: 100%;
    position: relative;
    border-left: 1px solid rgba(89, 89, 89, 0.1);
  }

  .header .btns-group .item .btn {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .header .btns-group .item .btn .icon {
    display: block;
    width: 100%;
    height: 100%;
    background: no-repeat center/36px;
  }

  /* Btns guia */

  .header .btns-guia {
    height: 100%;
    position: absolute;
    right: 20px;
    top: 0;
  }

  .header .btns-guia .btn {
    font-size: 1.4em;
    line-height: 1.1;
    color: #999999;
    height: 100%;
    padding: 0 10px;
    text-align: right;
  }

  .header .btns-guia .btn:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    border: solid #999999;
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
  }

  .header .btns-guia .user-btn .icon {
    display: block;
    width: 100%;
    height: 100%;
    background: no-repeat center/36px;
  }

  .header .btns-guia .user-btn {
    float: left;
    width: 50px;
    padding: 0 10px;
    border-left: 1px solid rgba(89,89,89,.1);
    border-right: 1px solid rgba(89,89,89,.1);
  }

  /* Event type btn */

  .header .btns-group .item .event-type-btn .icon {
    width: 60%;
    height: 60%;
    margin: 0 auto;
    background-size: contain;
    /*background-image: url(../images/icons/evento-4.svg);*/
  }

  body[data-event-type=""] .header .btns-group .item .event-type-btn .icon,
  body[data-event-type="0"] .header .btns-group .item .event-type-btn .icon {
    opacity: 0.4;
  }

  /* User btn */

  .header .btns-group .item .user-btn .icon {
    /*background-image: url(../images/icons/user.svg);*/
    transform: scale(1);
    transform-origin: 50% 0%;
    transition: transform 200ms ease-out;
  }


  .header .btns-group .user-btn.active .icon {
    transform: scale(0.9);
  }


  /* User btn Guia */

  .header .btns-guia .item .user-btn .icon {
    /*background-image: url(../images/icons/user.svg);*/
    transform: scale(1);
    transform-origin: 50% 0%;
    transition: transform 200ms ease-out;
  }

  .header .btns-guia .user-btn.active .icon {
    transform: scale(0.9);
  }
  /* Event type btn */

  .header .btns-group .item .event-type-btn:after,
  .header .btns-guia .user-btn:after,
  .header .btns-group .item .user-btn:after{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: relative;
    top: 0;
    margin: 0 auto;
    border: solid #666;
    border-width: 0 0 1px 1px;
    transform: rotate(-45deg);
    transition: transform 200ms ease-out, top 200ms ease-out;
      
  }

  .header .btns-guia .user-btn:after,
  .header .btns-group .item .user-btn:after {
    top: -14px !important;
  }

  .header .btns-group .item .event-type-btn.active:after,
  .header .btns-guia .user-btn.active:after,
  .header .btns-group .item .user-btn.active:after {
    top: 4px;
    transform: rotate(135deg);
  }

  .header .btns-guia .user-btn.active:after,
  .header .btns-group .item .user-btn.active:after {
    top: -8px !important;
  }

  .header .btns-group .item .event-type-btn .icon {
    transition: all 200ms ease-out;
  }

  body[data-event-type="1"] .header .btns-group .item .event-type-btn .icon {
    /*background-image: url(../images/icons/evento-1.svg);*/
  }

  body[data-event-type="2"] .header .btns-group .item .event-type-btn .icon {
    /*background-image: url(../images/icons/evento-2.svg);*/
  }

  body[data-event-type="3"] .header .btns-group .item .event-type-btn .icon {
    /*background-image: url(../images/icons/evento-3.svg);*/
  }

  body[data-event-type="4"] .header .btns-group .item .event-type-btn .icon {
    /*background-image: url(../images/icons/evento-4.svg);*/
  }

  /* Id event type nav */



  .id-event-type-nav .align {
    padding: 30px;
      
  }

  /*    .id-event-type-nav .event-type-list > .item .btn.active{
            opacity: 0.15;
        }*/

  [class*="underline"]:after {
    /*background-image: url(../images/underline/underline-b-xs.svg);*/
    background-size: 184px auto;
  }

  .underline-xxs:after {
    background-size: auto 4px;
  }

  .underline-md {
    padding-bottom: 16px;
  }

  .underline-md:after {
    background-size: auto 6px;
  }

  html.showTutorial .quote-bar > .holder .submit-btn.all {
    display: none;
  }

  .quote-bar .wrapper {
    padding: 8px 60px;
    text-align: center;
  }

  .quote-bar .btns {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }

  .quote-bar .submit-btn {
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: auto;
    position: static;
    padding: 7px 10px 6px 29px;
    font-size: 1.3em;
    background-position: 10px center;
    background-size: 12px auto;
    transform: none;
  }

  .quote-bar .submit-btn.all {
    width: auto;
    height: auto;
    background: #143666 no-repeat 10px center/12px auto;
    top: auto;
    bottom: 100%;
    margin-left: 5px;
    padding: 6px 11px;
    padding-left: 27px;
    transform: none;
  }

  .quote-bar .submit-btn .text {
    display: block;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
  }

  .quote-bar .submit-btn.all .text {
    font-size: 1em;
  }

  /* .quote-bar .submit-btn.add,
  .quote-bar .submit-btn.delete {
    height: 27px;
  } */

  .quote-bar .included-btn {
    display: block;
    width: 23px;
    height: 23px;
    line-height: 22px;
    position: absolute;
    left: 60px;
    top: 50%;
    font-size: 1.3em;
    font-weight: 700;
    background-color: #666;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    transform: translateY(-50%);
  }
}

@media (max-height: 500px) and (max-width: 767px) {
  .tutorial {
    padding-top: 40px;
  }
}

@media (max-height: 449px) and (max-width: 767px) {
  .tutorial {
    padding-top: 30px;
  }

  .tutorial .wrapper {
    padding: 0 20px;
  }

  .tutorial .title {
    font-size: 1.4em;
  }

  .tutorial .text-holder:before {
    background-size: 80% auto;
  }

  .tutorial .text-holder .text {
    transform: none !important;
  }

  .tutorial .text-holder.position-1 {
    padding-bottom: 75px;
  }

  .tutorial .text-holder.position-1:before {
    height: 65px;
  }

  .tutorial .text-holder.position-2 {
    padding-bottom: 30px;
  }

  .tutorial .text-holder.position-2:before {
    height: 25px;
  }

  .tutorial .text-holder.position-3 {
    padding-bottom: 128px;
  }

  .tutorial .text-holder.position-3:before {
    height: 110px;
    right: -20px;
    transform: rotate(5deg);
  }
}

@media (max-height: 350px) and (max-width: 767px) {
  .tutorial .title {
    padding-bottom: 15px;
  }

  .tutorial .title:after {
    background-size: 140px auto;
  }

  .tutorial .text-holder:before {
    background-size: 70% auto;
  }

  .tutorial .text-holder.position-1 {
    width: 160px;
    padding-bottom: 70px;
    left: 25px;
  }

  .tutorial .text-holder.position-1:before {
    height: 60px;
    left: 0;
  }

  .tutorial .text-holder.position-2 {
    padding-bottom: 20px;
    left: 27%;
  }

  .tutorial .text-holder.position-2:before {
    height: 15px;
  }

  .tutorial .text-holder.position-3 {
    width: 110px;
    padding-bottom: 60px;
  }

  .tutorial .text-holder.position-3:before {
    height: 46px;
  }
}

@media (min-height: 500px) and (max-width: 767px) {
  .tutorial {
    padding-top: 22vh;
  }

  .tutorial .text-holder {
    bottom: 80px;
  }
}

@media (max-width: 599px) {
  .quote-cta .heading.xs {
    position: relative;
    padding-right: 15px;
    padding-left: 15px;
  }

  .quote-cta .heading.xs br {
    display: none;
  }

  .quote-cta .heading.xs .spark {
    position: static;
  }

  .quote-cta .heading.xs .spark.right:before {
    left: auto;
    right: 0;
    top: 0;
    transform: translate(80%, -80%);
  }

  .quote-cta .heading.xs .spark.left:before {
    top: auto;
    bottom: 0;
    transform: translate(0, -50%) rotate(180deg);
  }
}

@media (max-width: 500px) {
  .results-holder {
    height: 65px;
  }

  .results-holder .results-container {
    height: 65px;
    padding-top: 8px;
  }

  .results-holder .results-container .text {
    display: block;
    margin-bottom: 5px;
  }

  .results-holder .results-container .select-container {
    margin-left: 0;
  }

  .results-holder .results-container .select-container .select {
    width: auto;
  }

  .quote-bar.proveedor-quote-bar .submit-btn {
    text-align: left;
    padding: 7px 7px 6px 28px;
    max-width: 120px; 

  }
}

@media (max-width: 479px) {
  .store-carousel {
    margin-right: -80px;
    margin-left: -80px;
  }
}

@media (max-width: 360px) {
  .quote-bar,
  .quote-bar > .holder,
  .quote-bar .align-middle:before {
    height: 54px;
  }

  .quote-bar .wrapper {
    padding: 6px 65px !important;
  }

  .quote-bar .filter-btn {
    width: 48px;
  }

  .quote-bar .info .text {
    font-size: 1.3em;
  }

  .quote-bar .info .arrow-link {
    font-size: 1.3em;
  }

  /* .quote-bar .submit-btn {
    width: 48px;
  } */

  .popup.included-popup,
  .popup.included-popup:after {
    bottom: 54px;
  }

  .featured-slider .bx-controls-direction .bx-prev {
    left: -30px;
  }

  .featured-slider .bx-controls-direction .bx-next {
    right: -30px;
  }
}

@media (min-width: 768px) and (max-width: 979px) {
  .hidden-sm {
    display: none !important;
  }

  .store-carousel {
    margin-right: 0;
    margin-left: 0;
  }

  .store-carousel .owl-stage-outer {
    overflow: visible !important;
  }

  .store-carousel .owl-nav .owl-prev {
    margin-left: -185px;
  }

  .store-carousel .owl-nav .owl-next {
    margin-left: 145px;
  }

  /* NAV */

  .nav {
    height: auto;
    top: 110px;
    bottom: 0px;
    box-shadow: inset 0px 1px 0px 0px rgba(89, 89, 89, 0.1);
  }

  .nav .menu {
    padding: 30px;
    padding-bottom: 80px;
  }
}

@media (min-width: 980px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 480px) and (max-width: 769px) {
  .store-carousel {
    margin-right: -150px;
    margin-left: -2px;
  }

  .store-carousel .owl-nav .owl-prev {
    margin-left: -226px;
  }

  .store-carousel .owl-nav .owl-next {
    margin-left: 40px;
  }
}

@media (min-width: 360px) and (max-width:767px) {
  .quote-bar .included-btn {
    left: 72px;
  }
}

@media (max-height: 500px) {
  .hello-bar-v2 .event-type-list > .item .btn:before {
    padding-bottom: 80%;
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .hello-bar-v2 .event-type-list {
    max-width: 500px;
  }

  .hello-bar-v2 .event-type-list > .item {
    width: 25%;
  }

  .hello-bar-v2 .event-type-list > .item .btn:before {
    padding-bottom: 100%;
  }
}
/*Estilo generales de los botones*/
/* Estilo base para todos los botones de navegación */
/* ----------------------------------------
   🌐 Botones de navegación (tabs)
---------------------------------------- */

/*MenÃº de navegaciÃ³n*/
.fixed-section-nav,
.section-nav {
  display: flex;
  gap: var(--space-xs);
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  background: var(--color-light);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  justify-content: center;
}


.fixed-section-nav a,
.section-nav a, .submit-btn{
  padding: var(--space-xs) var(--space-ml);
  cursor: pointer;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.8rem;
  white-space: nowrap;
  transition: all 0.3s ease;
  font-weight: 500;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* Activos y botón submit → estilo destacado */
.fixed-section-nav a.active,
.section-nav a.active,
.submit-btn {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

/* Iconos normales en tabs */
.section-nav a i {
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: all .3s ease;
}

/* Iconos en tab activo */
.section-nav a.active i {
  color: var(--color-white);
}

/* Hover visual para .section-nav */
.section-nav a:hover {
  background: var(--color-light);
  transform: translateY(-2px);
  border-color: var(--color-border);
}

/* Hover visual para .fixed-section-nav */
.fixed-section-nav a:hover {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* Oculta scroll horizontal de navegación */
.section-nav::-webkit-scrollbar {
  display: none;
}/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
      transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }
/* quito inicio session de header */
@media (min-width: 768px) {
    .results-holder .results-container {
        top: 88px;
    } 
}
.styled-form .submit-holder {
    margin-top: 10px !important;
    margin-bottom: 15px;
    text-align: center;
    clear: both;
}
.styled-form .links button {
    font-size: 14px;
    float: right;
}
.styled-form .label {
    margin-top: 15px !important;
}
.titleAuthLoginEmail {
    text-align: center;
    font-size: 17px;
    font-weight: bold;

}
.btnInvitado, .btnInvitadoComment {
    background-color: #fff;
    color: #000;
    border: 1px solid;
    padding: 8px;
    text-align: center;
    font-size: 18px;
    margin-top: 15px;
    cursor: pointer;
    margin-bottom: -30px;
}
.btnAuth a {
    display: block;
    position: relative;
    height: 45px;
    font-size: 18px;
    line-height: 45px;
    border-radius: 3px;
    text-align: center;
    margin-bottom: 15px
}
.btnAuthGoogle a {
    color: #fff;
    background-color: #de4a34;
    padding-left: 23px;
}
.btnAuthFacebook a {
    background-color: #4067b4;
    color: #fff;
    padding-left: 39px;
}
.btnAuthMicrosoft a {
    color: #fff;
    background-color: gray;
    padding-left: 13px;
}
.btnAuthRegistro a {
    color: #4d7aff;
    font-size: 17px;
}
.btnAuthRegistro {

    text-align: center;
    /*
    background-color: gray;
    padding: 15px;
    border: 1px solid;
    margin-top: 10px; */
}
.results-holder .results-container .text{
    font-size: 1.5em;
    font-weight: bold;
}
.results-container .results .results-list .item .link[data-event-type="4"]{
    color: #143666;
}
.hide {
    display: none;
}
.imageSlider, .imageHome {
    background: no-repeat center/cover;
}
.clear-btn-all {
	display: inline-block;
    vertical-align: middle;
    width: 35px;
    height: 35px;
    margin-top: -5px;
    background: no-repeat center/20px auto;
    background-image: url(../images/b64/filters-clean.svg);
}

.id-included-popup p.title, .id-quote-popup p.title {
	display: inline-block;
	margin-top: 5px;
}

.id-login-popup .holder .title {
    font-size: 2.6em;
    color: #606060;
    font-weight: 700;
    margin-bottom: 10px;
}

.id-login-popup .holder .text-exp {
    font-size: 16px;
}

.quote-bar .info .text .num-holder{
    width: 30px !important;
    height: 30px !important;
    line-height: 30px !important;
}
/* SWITCH TIPO FESTEJO BARRA ACTIVA 
.header .event-type-nav .item .btn:after {
    left: 0;
    right: 0;
    bottom: 45px;
    height: 8px;
}*/
.homeEventType{
    text-align: center;
    margin-bottom: 10px;
}

.popup.included-popup .quote-cta .heading{
    cursor: pointer;
}

/* Hotjar */
#_hj-f5b2a1eb-9b07_feedback {
    bottom: -20% !important;
}
#_hj-f5b2a1eb-9b07_hotjar_branding{
    display: none;
}
/* Star */
.rating-holder {
  display: inline-block;
  background-color: var(--color-white);
  border-radius: 1.5625em;
}

.c-rating button {
  display: inline-block;
  width: 2.25em;
  height: 2.25em;
  border: 0;
  text-indent: -9999px;
  outline: none;
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
  cursor: pointer;
  transition: background 0.25s ease;
}


.c-rating[data-rating-value="0"] button:nth-child(-n+0) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.25"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.25"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.5"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.5"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.75"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="0.75"] button:nth-child(1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1"] button:nth-child(-n+1) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.25"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.25"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.5"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.5"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.75"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="1.75"] button:nth-child(2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2"] button:nth-child(-n+2) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.25"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.25"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.5"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.5"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.75"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="2.75"] button:nth-child(3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3"] button:nth-child(-n+3) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.25"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.25"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.5"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.5"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.75"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="3.75"] button:nth-child(4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4"] button:nth-child(-n+4) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.25"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.25"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M196.208 415.2v-224.8l-139.504 20.272 100.944 98.384-23.84 138.928z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.5"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.5"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M258.672 64l-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6v-318.4z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.75"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="4.75"] button:nth-child(5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M321.616 190.496l-0.656-0.096-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 63.024 33.136z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat, url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23ddd%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating[data-rating-value="5"] button:nth-child(-n+5) {
  background: url("data:image/svg+xml;utf8,%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%22512%22%20height%3D%22512%22%20viewBox%3D%220%200%20512%20512%22%3E%3Cpath%20fill%3D%22%23f99441%22%20d%3D%22M457.888 210.672l-139.504-20.272-62.384-126.4-62.384 126.4-139.504 20.272 100.944 98.384-23.84 138.928 124.768-65.6 124.768 65.6-23.84-138.928c0 0 100.944-98.384 100.944-98.384z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E") center/cover no-repeat;
}
.c-rating--small {
  font-size: 50%;
}
.c-rating--big {
  font-size: 150%;
}

.id-festipuntos-popup .holder {
  padding: 50px 30px !important;
}

.id-festipuntos-popup .heading {
  margin-bottom: 30px;
}

.id-festipuntos-popup .holder .btn-sistemafesti {
  float: left;
}

.id-festipuntos-popup .holder .btn-canjefesti {
  float: right;
}

.grecaptcha-badge {
  display: none;
}

@media (max-width: 320px) {
  .clear-btn-all {
     width: 20px !important;
     height: 20px !important;
     margin-left: 3px;
  }
  .id-quote-popup p.title {
  	margin-top: 10px !important;
  }
  .id-included-popup p.title {
  	font-size: 16px !important;
  }
  .filters-header .filters .input-holder {
    margin: 15px -5px 0 !important;
  }
  .info .location-text:before {
   /* laura -21-11-2024  - lo comentamos por nuevo diseño de listado
   left: -15px !important; */
  }
  .info .location-text {
    padding-left: 0px !important;
  }
}

@media (max-width: 768px) {
  .quote-bar .info .text .num-holder{
    width: 24px !important;
    height: 24px !important;
    line-height: 24px !important;
    left: -5px;
  }

  .id-festipuntos-popup .holder .submit-btn {
    height: 60px;
  }

  .id-festipuntos-popup .holder .btn-sistemafesti {
    margin: 0 0 10px 0;
  }

  .id-festipuntos-popup .holder .btn-canjefesti {
    margin: 10px 0px 0px 0px;
    float: left;
    width: 100%;
  }
}

#avisoContacto .row {
    display: flex;
    justify-content: space-around; /* Ajusta el espacio entre las columnas */
}

#avisoContacto .column {
    flex: 1; /* Cada columna ocupa el mismo espacio */
    padding: 15px; /* Espacio alrededor del contenido de la columna */
    text-align: center; /* Centra el texto y el botón */
}

#avisoContacto button {
    margin-top: 15px; /* Espacio por encima del botón */
}
@-webkit-keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}
@keyframes load4 {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
  }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  25% {
    box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
  }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
  }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
  }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
  }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
  }
}

/* HEADER */

@media (max-width: 767px){

   /* .header .logo a {
        background-image: url(../images/logo-r.svg);
       
    }*/

    /* User btn */
    .header .btns-guia .user-btn .icon {
        background-image: url(../images/icons/user.svg);
    }

    .header .btns-group .item .user-btn .icon{
        background-image: url(../images/icons/user.svg);
    }
    .header .btns-group .item .event-type-btn .icon{
        background-image: url(../images/icons/evento-4.svg);
    }

    body[data-event-type="1"] .header .btns-group .item .event-type-btn .icon{
        background-image: url(../images/icons/evento-1.svg);
    }
    body[data-event-type="2"] .header .btns-group .item .event-type-btn .icon{
        background-image: url(../images/icons/evento-2.svg);
    }
    body[data-event-type="3"] .header .btns-group .item .event-type-btn .icon{
        background-image: url(../images/icons/evento-3.svg);
    }
    body[data-event-type="4"] .header .btns-group .item .event-type-btn .icon{
        background-image: url(../images/icons/evento-4.svg);
    }
}

@media (max-width: 979px){
    .nav .menu li a:before,
    .nav .menu li button:before{
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxOHB4IiBoZWlnaHQ9IjI2cHgiIHZpZXdCb3g9IjAgMCAxOCAyNiIgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMTggMjYiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwYXRoIGZpbGw9IiNGMjg2MjUiIGQ9Ik0xNy4zMDIsMTEuODY2QzEyLjgyLDguMTM0LDguMjIzLDQuNjY1LDMuOTY3LDAuNjYyQzEuNzUzLTEuNDItMS40NjcsMS44OTEsMC43NTIsMy45NzhjMy42NDUsMy40MjksNy4wNzMsNi40NjcsMTEuMjg5LDkuNjEzYy0zLjcxMSwyLjc4Mi03LjgxNiw1LjItMTEuMjg5LDguNDM4Yy0yLjIyOSwyLjA3OCwwLjk5Miw1LjM4NywzLjIxNSwzLjMxNmM0LjE2LTMuODc5LDguOTcyLTYuNTg0LDEzLjMzNi0xMC4xNjJDMTguMjM4LDE0LjQxNSwxOC4yMjcsMTIuNjM2LDE3LjMwMiwxMS44NjZ6Ii8+PC9zdmc+);
    }
}



/* UNDERLINE */

[class*="underline"]:after{
    background-image: url(../images/underline/underline-b.svg);
}
[class*="underline"].white:after{
    background-image: url(../images/underline/underline-w.svg);
}
[class*="underline"].orange:after{
    background-image: url(../images/underline/underline-o.svg);
}

.underline-xs:after,
.underline-xxs:after{
    background-image: url(../images/underline/underline-b-xs.svg);
}
.underline-xs.white:after,
.underline-xxs.white:after{
    background-image: url(../images/underline/underline-w-xs.svg);
}
.underline-xs.orange:after,
.underline-xxs.orange:after{
    background-image: url(../images/underline/underline-o-xs.svg);
}

@media (max-width: 767px){
    [class*="underline"]:after{
        background-image: url(../images/underline/underline-b-xs.svg);
    }
    [class*="underline"].white:after{
        background-image: url(../images/underline/underline-w-xs.svg);
    }
    [class*="underline"].orange:after{
        background-image: url(../images/underline/underline-o-xs.svg);
    }
}

/* Spark */

.heading .spark:before{
    background-image: url(../images/sparks/spark-orange.svg);
}
.heading.white .spark:before{
    background-image: url(../images/sparks/spark-white.svg);
}



/* INTRO */

.intro .background:after{
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI1MDBweCIgaGVpZ2h0PSI2NXB4IiB2aWV3Qm94PSIwIDAgNTAwIDY1IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MDAgNjUiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxnPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik01MDAsMzEuMzQ5QzE4NS4yODgsMTA3LjM2MSwwLDE0LjEzOSwwLDE0LjEzOVY3MGg1MDBWMzEuMzQ5eiIvPjwvZz48cGF0aCBmaWxsPSIjREREREREIiBkPSJNNTAwLDIxLjU4NkMxODUuMjc2LDExNi45MjUsMCwwLDAsMHYxNS41OTZjMCwwLDE4NS4yNzYsOTMuMjIyLDUwMCwxNy4yMVYyMS41ODZ6Ii8+PC9nPjwvc3ZnPg==);
}
@media (min-width: 501px){
    .intro .background:after{
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMDI0cHgiIGhlaWdodD0iNzZweCIgdmlld0JveD0iMCAwIDEwMjQgNzYiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDEwMjQgNzYiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxnPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xMDI0LDM3LjE3MUMzNzkuNDY5LDEyNy4zLDAsMTYuNzY1LDAsMTYuNzY1VjgzaDEwMjRWMzcuMTcxeiIvPjwvZz48cGF0aCBmaWxsPSIjREREREREIiBkPSJNMTAyNCwyNS41OTVDMzc5LjQ0NSwxMzguNjQsMCwwLDAsMHYxOC40OTJjMCwwLDM3OS40NDUsMTEwLjUzNSwxMDI0LDIwLjQwNlYyNS41OTV6Ii8+PC9nPjwvc3ZnPg==);
    }
}
@media (min-width: 1025px){
    .intro .background:after{
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxOTIwcHgiIGhlaWdodD0iODhweCIgdmlld0JveD0iMCAwIDE5MjAgODgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE5MjAgODgiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0xOTIwLDQzLjA0QzcxMS40OTksMTQ3LjQsMCwxOS40MTIsMCwxOS40MTJWOTYuNWgxOTIwVjQzLjA0eiIvPjwvZz48cGF0aCBmaWxsPSIjREREREREIiBkPSJNMTkyMCwyOS42MzZDNzExLjQ1NywxNjAuNTMsMCwwLDAsMHYyMS40MTJjMCwwLDcxMS40NTcsMTI3Ljk4OCwxOTIwLDIzLjYyOSIvPjwvc3ZnPg==);
    }
}
@media (min-width: 1921px){
    .intro .background:after{
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIyNTYwcHgiIGhlaWdodD0iODhweCIgdmlld0JveD0iLTMyMCAwIDI1NjAgODgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgLTMyMCAwIDI1NjAgODgiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yMjQwLDQzLjA0QzYyOC42NjYsMTQ3LjQtMzIwLDE5LjQxMi0zMjAsMTkuNDEyVjk2LjVoMjU2MFY0My4wNHoiLz48L2c+PHBhdGggZmlsbD0iI0RERERERCIgZD0iTTIyNDAsMjkuNjM2QzYyOC42MSwxNjAuNTMtMzIwLDAtMzIwLDB2MjEuNDEyYzAsMCw5NDguNjEsMTI3Ljk4OCwyNTYwLDIzLjYyOSIvPjwvc3ZnPg==);
    }
}

/* EVENT TYPE LIST */
.event-type-list > .item .btn[data-event-type="1"] .icon, 
.main-search .option-group .event-type-options .item .label.event-type-1 .holder .icon
 {
    background-image: url(../images/icons/evento-1-w2.svg);
}
.event-type-list > .item .btn[data-event-type="2"] .icon,
.main-search .option-group .event-type-options .item .label.event-type-2 .holder .icon
{
    background-image: url(../images/icons/evento-2-w2.svg);
}
.event-type-list > .item .btn[data-event-type="3"] .icon,
.main-search .option-group .event-type-options .item .label.event-type-3 .holder .icon
{
    background-image: url(../images/icons/evento-3-w2.svg);
}
.event-type-list > .item .btn[data-event-type="4"] .icon,
.main-search .option-group .event-type-options .item .label.event-type-4 .holder .icon
{
    background-image: url(../images/icons/evento-4-w2.svg);
}

/* FOOTER */
.footer .social li a.ig{
    background-image: url(../images/footer/social-ig.svg);
}
.footer .social li a.fb{
    background-image: url(../images/footer/social-fb.svg);
}
.footer .social li a.tw{
    background-image: url(../images/footer/social-tw.svg);
}
.footer .social li a.yt{
    background-image: url(../images/footer/social-yt.svg);
}
.footer .social li a.gp{
    background-image: url(../images/footer/social-gp.svg);
}
.footer .bottom .bloque a{
    background-image: url(../images/footer/bloque@2.png);
}

/* LOCATION */
.location-text:before{
   background-image: url('data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 24 24%22 fill=%22%23143666%22%3E%3Cpath d=%22M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5S13.38 11.5 12 11.5z%22%3E%3C/path%3E%3C/svg%3E');
}

/* SHARES */
.shares .share.fb{
    background-image: url(../images/shares/facebook.svg);
}
.shares .share.tw{
    background-image: url(../images/shares/twitter.svg);
}
.shares .share.gp{
    background-image: url(../images/shares/google.svg);
}
.shares .share.in{
    background-image: url(../images/shares/instagram.svg);
}
.shares .share.yt{
    background-image: url(../images/shares/youtube.svg);
}
.shares .share.wp{
    background-image: url(../images/shares/whatsapp.svg);
}


/* QUOTE CTA */
body[data-event-type="1"] .quote-cta{
    background-image: url(../images/provider/quote-pattern-1.svg);
}
body[data-event-type="2"] .quote-cta{
    background-image: url(../images/provider/quote-pattern-2.svg);
}
body[data-event-type="3"] .quote-cta{
    background-image: url(../images/provider/quote-pattern-3.svg);
}
body[data-event-type="4"] .quote-cta{
    background-image: url(../images/provider/quote-pattern-4.svg);
}

/* QUOTE BAR */
.quote-bar .filter-btn:before{
    background-image: url(../images/providers/filters-icon.svg);
}
.quote-bar .submit-btn.form-popup{
    background-image: url(../images/providers/submit-icon.svg) !important;
}

/* TUTORIAL */
.tutorial .text-holder.position-1:before{
    background-image: url(../images/providers/tut-arrow-1-xs.svg);
}
.tutorial .text-holder.position-2:before{
    background-image: url(../images/providers/tut-arrow-2-xs.svg);
}
.tutorial .text-holder.position-3:before{
    background-image: url(../images/providers/tut-arrow-3-xs.svg);
}
.tutorial .text-holder.position-4:before{
    background-image: url(../images/providers/tut-arrow-4-xs.svg);
}

/* INCLUDED POPUP */
.popup.included-popup .quote-cta .icon-arrow{
    background-image: url(../images/providers/included-cta-arrow.svg);
}

/* QUOTE SUCCESS */
.quote-success .message .icon{
    background-image: url(../images/providers/quote-success-icon.svg);
}

/* PROVIDERS BOOK POPUP */

.popup.providers-book-popup .filters .item .btn[data-event-type="1"] .icon{
    background-image: url(../images/icons/evento-1.svg);
}
.popup.providers-book-popup .filters .item .btn[data-event-type="2"] .icon{
    background-image: url(../images/icons/evento-2.svg);
}
.popup.providers-book-popup .filters .item .btn[data-event-type="3"] .icon{
    background-image: url(../images/icons/evento-3.svg);
}
.popup.providers-book-popup .filters .item .btn .icon,
.popup.providers-book-popup .filters .item .btn[data-event-type="4"] .icon{
    background-image: url(../images/icons/evento-4.svg);
}

/* Main */
.featured-main .info:after{
    background-image: url(../images/home/featured-decoration@2.png);
}


/* ********************** de Mobile a TABLET ********************** */
@media (min-width: 768px) {
    /* PROVIDERS BOOK POPUP */
    .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="1"] .icon{
        background-image: url(../images/icons/evento-1.svg);
    }
    .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="2"] .icon{
        background-image: url(../images/icons/evento-2.svg);
    }
    .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="3"] .icon{
        background-image: url(../images/icons/evento-3.svg);
    }
    .popup.providers-book-popup .event-type-nav .item .btn[data-event-type="4"] .icon{
        background-image: url(../images/icons/evento-4.svg);
    }

    /* FEATURED */
    .featured-main .info:after{
        background-image: url(../images/home/featured-decoration-vertical@2.png);
    }

}
/* ********************** de Tablet a DESKTOP ********************** */
@media (min-width: 980px) {
    /* TUTORIAL */
    .tutorial .text-holder.position-2:before{
        background-image: url(../images/providers/tut-arrow-2.svg);
    }
    .tutorial .text-holder.position-3:before{
        background-image: url(../images/providers/tut-arrow-3.svg);
    }
    .tutorial .text-holder.position-4:before{
        background-image: url(../images/providers/tut-arrow-4.svg);
    }
}
.newsletter{
	background-image: url(../images/home/newsletter-pattern.svg);
}
.newsletter .checkboxes .label .checkbox:before{
	background-image: url(../images/b64/checkbox-check.svg);
}/* Variables globales */
:root {
    --color-primary: #3345AC;
    --color-secondary: #f90;
    --color-text: #2c3e50;
    --color-blue-light: #94a3b8;
    --color-blue-super-light-: #64748b;
    --color-blue-super-light-2: #4a5568;
    --color-gris: #777777;
    --color-light: #f8f9fa;
    --color-border: #e9ecef;
    --color-white: #fff;
    --color-naranjita-light: #fff4e3;

    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #081557;    
    --orange-600: #ea580c;
    --yellow-500: #eab308;
    --purple-500: #a855f7;
    --red-400: #f87171;
    --green-500: #22c55e;

    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-white: rgba(255,255,255,0.1);
    --shadow-sm: 0 2px 4px rgba(0,0,0,.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,.1);
    --radius-sm: .5rem; /*8px*/
    --radius-md: 1rem;/*16px*/
    --radius-lg: 1.5rem; /*24px*/
    --space-xxs: 0.25rem;  /* 4px */
    --space-xs:  0.35rem;  /* 5.6px (aparece varias veces) */
    --space-sm:  0.5rem;   /* 8px */
    --space-md:  0.6rem;   /* 9.6px (usado en promo-discount) */
    --space-ml:  0.75rem;  /* 12px */
    --space-lg:  0.8rem;   /* 12.8px */
    --space-xl:  1rem;     /* 16px */
    --space-2xl: 1.25rem;  /* 20px */
    --space-3xl: 1.5rem;   /* 24px */
    --space-4xl: 2rem;     /* 32px */
    --space-5xl: 2.5rem;     /* 340px */
    --content-max-width: 1200px;
}
/* Reset crítico mínimo */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-decoration: none;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}


  ol,
  ul {
    list-style: none;
  }
  
  blockquote,
  q {
    quotes: none;
  }
  
  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: '';
    content: none;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* BODY */
  body,
  input,
  textarea,
  select,
  button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    color: var(--color-text);
  }
  body {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
    padding-top: 5rem;
  }


  p, .parrafo, .description {
    text-rendering: optimizeLegibility;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.4;
    color: inherit;
  }

  strong {
    font-weight: 700;
  }
  
  em {
    font-style: italic;
  }
  /* se usa */
  input,
  textarea,
  select,
  button {
    border: none;
    outline: none;
    resize: none;
    border-radius: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
  }
  
  input:not([type="checkbox"]):not([type="radio"]),
  textarea,
  select,
  button {
    -webkit-appearance: none;
  }
  
  button {
    overflow: visible;
  }
  
  a,
  button {
    color: #f99441;
    -webkit-tap-highlight-color: rgba(249, 148, 65, 0);
    cursor: pointer;
    outline: none;
    transition: color 300ms ease-out,
          background 300ms ease-out,
          border 300ms ease-out,
          opacity 300ms ease-out,
          box-shadow 300ms ease-out;
    -webkit-transition: color 300ms ease-out,
          background 300ms ease-out,
          border 300ms ease-out,
          opacity 300ms ease-out,
          box-shadow 300ms ease-out;
    -moz-transition: color 300ms ease-out,
          background 300ms ease-out,
          border 300ms ease-out,
          opacity 300ms ease-out,
          box-shadow 300ms ease-out;
    -o-transition: color 300ms ease-out,
          background 300ms ease-out,
          border 300ms ease-out,
          opacity 300ms ease-out,
          box-shadow 300ms ease-out;
  }
  
  img {
    display: inline-block;
    max-width: 100%;
  }
  
  html:not(.wf-active) body,
  html:not(.wf-active) input,
  html:not(.wf-active) textarea,
  html:not(.wf-active) select,
  html:not(.wf-active) button,
  html:not(.wf-active) .heading,
  html:not(.wf-active) .cursive {
    font-family: 'Inter', sans-serif;
  }
/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
    text-align: left;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
}

h2, h4, h5, h6 {
    margin-bottom: 1.1rem;
}

h1 {
    /*max-width: 500px;
    padding: .25rem 0;*/
    color: var(--color-white);
}

h1,h2 { font-size: 1.2rem; }

h3 { font-size: 1.2rem; }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }

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

small {
    font-size: 0.8rem;
    color: var(--color-gris);
}

.wrapper {
    max-width: var(--content-max-width);
    margin: 0 auto;
    padding: 0 var(--space-4xl);
}

/* Header y navegación crítica */
.header {
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 50;
}

/* Navegación principal crítica */
.main-nav .wrapper,
.top-bar .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 var(--space-md);
}

/* Logo crítico */
.logo {
    text-decoration: none;
    max-width: 120px;
}

.logo a {
    display: flex;
}

/* Navegación desktop crítica */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: var(--space-3xl);  
}
/* Navegación desktop */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    body {
        padding-top: 3rem;
    }
}

/* Carrito */
.cart-link, .floating-cart-button {
    position: relative; /* NUEVO: permite posicionar .cart-count relativo al botón */
    display: flex;
    align-items: center;
    gap: var(--space-xxs);
    padding: var(--space-xs) var(--space-ml);
    background-color: var(--color-primary);
    color: var(--color-white);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}
/* Posicionamiento correcto del contador */
.cart-count, .floating-cart-count, .mobile-cart-count {
    position: absolute;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    border: 1px solid var(--color-primary);
}

.cart-count, .floating-cart-count {
  top: -0.4rem;
  right: -0.4rem;
  width: var(--space-2xl);
  height: var(--space-2xl);
  font-weight: bold;
}

.floating-cart-count {
    top: -0.5rem;
    right: -0.5rem;
}

.mobile-cart {
    position: relative;
    display: flex;
    align-items: center;
    padding: var(--space-sm);
    color: var(--color-primary);
    text-decoration: none;
  }

.mobile-cart .cart-count {
  top: 0px;
  right: 0px;
  } 
