﻿#overlay,
.overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 66, 66, 0.6);
  text-align: center;
  z-index: 500;
}
#overlay #messageBox,
.overlay #messageBox {
  margin: 50vh auto 0 auto;
  position: relative;
  min-height: 10rem;
  width: 25rem;
  padding: 4rem 2rem;
  background-color: #f86624;
  color: #fff;
  overflow: visible;
  font-size: 1.2rem;
  transform: translateY(-50%);
  max-width: calc(100% - 1rem);
}
#overlay #messageBox.error,
.overlay #messageBox.error {
  background-color: #ea3546;
}
#overlay #messageBox .alert,
.overlay #messageBox .alert {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
#overlay #messageBox form,
.overlay #messageBox form {
  max-height: calc(100vh - 20rem);
  overflow: visible;
}
#overlay #messageBox form .special,
.overlay #messageBox form .special {
  font-weight: 100;
  font-size: 1rem;
  max-width: 80%;
  margin: 0 auto 3rem auto;
}
#overlay #messageBox form .fieldset,
.overlay #messageBox form .fieldset {
  max-width: 20rem;
  padding: 0.5rem 1rem;
  background-color: #f4f4f4;
  margin: 0 auto 1rem auto;
  text-align: left;
  color: #424242;
}
#overlay #messageBox form .fieldset span:before,
.overlay #messageBox form .fieldset span:before {
  vertical-align: middle;
}
#overlay #messageBox form .fieldset input,
.overlay #messageBox form .fieldset input,
#overlay #messageBox form .fieldset select,
.overlay #messageBox form .fieldset select {
  background-color: #f4f4f4;
  height: 100%;
  width: calc(100% - 3rem);
}
#overlay #messageBox form .fieldset label,
.overlay #messageBox form .fieldset label {
  position: absolute;
  top: -1rem;
  left: 0;
  font-size: 0.7rem;
  text-align: left;
  color: #fff;
  white-space: normal;
}
#overlay #messageBox form .fieldset label:nth-of-type(n + 2),
.overlay #messageBox form .fieldset label:nth-of-type(n + 2) {
  left: 2.75rem;
}
#overlay #messageBox form .fieldset.required,
.overlay #messageBox form .fieldset.required {
  position: relative;
}
#overlay #messageBox form .fieldset.required:before,
.overlay #messageBox form .fieldset.required:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  width: 1rem;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0.25rem;
  color: #f86624;
  font-size: 0.75rem;
  content: "\f069";
  z-index: 5;
}
#overlay #messageBox form .fieldset.leyend,
.overlay #messageBox form .fieldset.leyend {
  background-color: transparent;
  color: #fff;
}
#overlay #messageBox form .fieldset.leyend:before,
.overlay #messageBox form .fieldset.leyend:before {
  right: 0;
  top: 0;
  font-size: 0.5rem;
  color: #fff;
}
#overlay #messageBox form .fieldset.leyend:after,
.overlay #messageBox form .fieldset.leyend:after {
  content: var(--leyend, 'Campos requeridos.');
  font-size: 0.8rem;
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  color: #fff;
  font-weight: 500;
}
#overlay #messageBox form .fieldset:last-of-type,
.overlay #messageBox form .fieldset:last-of-type {
  margin-bottom: 0;
}
#overlay #messageBox .special,
.overlay #messageBox .special {
  font-size: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 0;
  display: block;
}
#overlay #messageBox ul.actions,
.overlay #messageBox ul.actions {
  display: -moz-flex;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  cursor: default;
  list-style: none;
  padding-left: 0;
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
#overlay #messageBox ul.actions button,
.overlay #messageBox ul.actions button,
#overlay #messageBox ul.actions .button,
.overlay #messageBox ul.actions .button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  height: 3.25rem;
  line-height: 3.25rem;
  padding: 0 2.25rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px var(--button-color, #f86624);
  color: var(--button-color, #f86624) !important;
}
#overlay #messageBox ul.actions button.filled,
.overlay #messageBox ul.actions button.filled,
#overlay #messageBox ul.actions .button.filled,
.overlay #messageBox ul.actions .button.filled {
  background-color: var(--button-color, #f86624) !important;
  color: var(--button-text-color, #fff) !important;
  box-shadow: inset 0 0 0 1px var(--button-color, #fff) !important;
}
#overlay #messageBox ul.actions button.filled:hover,
.overlay #messageBox ul.actions button.filled:hover,
#overlay #messageBox ul.actions .button.filled:hover,
.overlay #messageBox ul.actions .button.filled:hover {
  background-color: var(--button-color, #f86624) !important;
}
#overlay #messageBox ul.actions button.small,
.overlay #messageBox ul.actions button.small,
#overlay #messageBox ul.actions .button.small,
.overlay #messageBox ul.actions .button.small {
  font-size: 0.8rem;
  height: 2.4375rem;
  line-height: 2.4375rem;
  padding: 0 1.5rem;
}
#overlay #messageBox ul.actions button.extrasmall,
.overlay #messageBox ul.actions button.extrasmall,
#overlay #messageBox ul.actions .button.extrasmall,
.overlay #messageBox ul.actions .button.extrasmall {
  font-size: 0.7rem;
  height: 2rem;
  line-height: 2rem;
  padding: 0 0.5rem;
  margin-top: 1rem;
}
#overlay #messageBox ul.actions button.wide,
.overlay #messageBox ul.actions button.wide,
#overlay #messageBox ul.actions .button.wide,
.overlay #messageBox ul.actions .button.wide {
  min-width: 13rem;
}
#overlay #messageBox ul.actions button.large,
.overlay #messageBox ul.actions button.large,
#overlay #messageBox ul.actions .button.large,
.overlay #messageBox ul.actions .button.large {
  font-size: 1.35rem;
  height: 4.0625rem;
  line-height: 4.0625rem;
  padding: 0 3rem;
}
#overlay #messageBox ul.actions button.icon:before,
.overlay #messageBox ul.actions button.icon:before,
#overlay #messageBox ul.actions .button.icon:before,
.overlay #messageBox ul.actions .button.icon:before {
  font-size: 0.9rem;
  margin-right: 0.5rem;
}
#overlay #messageBox ul.actions button.fit,
.overlay #messageBox ul.actions button.fit,
#overlay #messageBox ul.actions .button.fit,
.overlay #messageBox ul.actions .button.fit {
  width: 100%;
}
#overlay #messageBox ul.actions button.disabled,
.overlay #messageBox ul.actions button.disabled,
#overlay #messageBox ul.actions .button.disabled,
.overlay #messageBox ul.actions .button.disabled,
#overlay #messageBox ul.actions button:disabled,
.overlay #messageBox ul.actions button:disabled,
#overlay #messageBox ul.actions .button:disabled,
.overlay #messageBox ul.actions .button:disabled {
  pointer-events: none;
  opacity: 0.5;
}
#overlay #messageBox ul.actions button:hover,
.overlay #messageBox ul.actions button:hover,
#overlay #messageBox ul.actions .button:hover,
.overlay #messageBox ul.actions .button:hover {
  background-color: rgba(248, 102, 36, 0.1);
}
#overlay #messageBox ul.actions button:hover:active,
.overlay #messageBox ul.actions button:hover:active,
#overlay #messageBox ul.actions .button:hover:active,
.overlay #messageBox ul.actions .button:hover:active {
  background-color: rgba(255, 139, 119, 0.25);
}
#overlay #messageBox ul.actions button.primary,
.overlay #messageBox ul.actions button.primary,
#overlay #messageBox ul.actions .button.primary,
.overlay #messageBox ul.actions .button.primary {
  background: #f86624;
  box-shadow: none;
  color: #fff !important;
}
#overlay #messageBox ul.actions button.primary:hover,
.overlay #messageBox ul.actions button.primary:hover,
#overlay #messageBox ul.actions .button.primary:hover,
.overlay #messageBox ul.actions .button.primary:hover {
  background-color: rgba(248, 102, 36, 0.5);
}
#overlay #messageBox ul.actions button.primary:hover:active,
.overlay #messageBox ul.actions button.primary:hover:active,
#overlay #messageBox ul.actions .button.primary:hover:active,
.overlay #messageBox ul.actions .button.primary:hover:active {
  background-color: rgba(248, 102, 36, 0.75);
}
#overlay #messageBox ul.actions li,
.overlay #messageBox ul.actions li {
  padding: 0 0 0 1rem;
  vertical-align: middle;
}
#overlay #messageBox ul.actions li:first-child,
.overlay #messageBox ul.actions li:first-child {
  padding: 0;
}
#overlay #messageBox ul.actions.special,
.overlay #messageBox ul.actions.special {
  -moz-justify-content: center;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  margin-left: 0;
  width: 100%;
}
#overlay #messageBox ul.actions.special li:first-child,
.overlay #messageBox ul.actions.special li:first-child {
  padding-left: 0;
}
#overlay #messageBox ul.actions.stacked,
.overlay #messageBox ul.actions.stacked {
  -moz-flex-direction: column;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0;
}
#overlay #messageBox ul.actions.stacked li,
.overlay #messageBox ul.actions.stacked li {
  padding: 1.3rem 0 0 0;
}
#overlay #messageBox ul.actions.stacked li:first-child,
.overlay #messageBox ul.actions.stacked li:first-child {
  padding-top: 0;
}
#overlay #messageBox ul.actions.fit,
.overlay #messageBox ul.actions.fit {
  width: calc(100% + 1rem);
}
#overlay #messageBox ul.actions.fit li,
.overlay #messageBox ul.actions.fit li {
  -moz-flex-grow: 1;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  -moz-flex-shrink: 1;
  -webkit-flex-shrink: 1;
  -ms-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
}
#overlay #messageBox ul.actions.fit li > *,
.overlay #messageBox ul.actions.fit li > * {
  width: 100%;
}
#overlay #messageBox ul.actions.fit.stacked,
.overlay #messageBox ul.actions.fit.stacked {
  width: 100%;
}
#overlay #messageBox .ok,
.overlay #messageBox .ok {
  display: block;
  font-size: 0.8rem;
  margin: 2rem auto 0 auto;
  --button-color: #fff;
  --button-text-color: #f86624;
}
#overlay #messageBox .cancel,
.overlay #messageBox .cancel {
  display: block;
  font-size: 0.8rem;
  margin: 2rem auto 0 auto;
}
#overlay #messageBox .close,
.overlay #messageBox .close {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  box-shadow: none;
  padding: 0 0.5rem;
  position: absolute;
  top: -1rem;
  right: -1rem;
  --button-color: #fff;
}
#overlay #messageBox .close:before,
.overlay #messageBox .close:before {
  font-size: 2rem;
}
#overlay .contentBox,
.overlay .contentBox {
  margin: 50vh auto 0 auto;
  position: relative;
  min-height: 10rem;
  width: 25rem;
  padding: 0;
  background-color: #fff;
  color: #424242;
  overflow: visible;
  font-size: 1.2rem;
  transform: translateY(-50%);
}
#overlay .contentBox .title,
.overlay .contentBox .title {
  font-size: 1.5rem;
  font-weight: bold;
  background-color: var(--dialog-color, #43bccd);
  color: #fff;
}
#overlay .contentBox form,
.overlay .contentBox form {
  max-height: calc(100vh - 20rem);
  overflow-x: hidden;
  overflow-y: auto;
}
#overlay .contentBox form .fieldset,
.overlay .contentBox form .fieldset {
  max-width: 20rem;
  padding: 0.5rem 1rem;
  background-color: #f4f4f4;
  margin: 0 auto 2rem auto;
  text-align: left;
}
#overlay .contentBox form .fieldset input,
.overlay .contentBox form .fieldset input,
#overlay .contentBox form .fieldset select,
.overlay .contentBox form .fieldset select,
#overlay .contentBox form .fieldset textarea,
.overlay .contentBox form .fieldset textarea {
  border: none;
  background-color: #f4f4f4;
  height: 100%;
  width: calc(100% - 3rem);
  white-space: normal;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
}
#overlay .contentBox form .fieldset input:nth-child(n + 3),
.overlay .contentBox form .fieldset input:nth-child(n + 3),
#overlay .contentBox form .fieldset select:nth-child(n + 3),
.overlay .contentBox form .fieldset select:nth-child(n + 3),
#overlay .contentBox form .fieldset textarea:nth-child(n + 3),
.overlay .contentBox form .fieldset textarea:nth-child(n + 3) {
  margin: 0.5rem 0 0 2rem;
}
#overlay .contentBox form .fieldset input:placeholder-shown + label,
.overlay .contentBox form .fieldset input:placeholder-shown + label,
#overlay .contentBox form .fieldset select:placeholder-shown + label,
.overlay .contentBox form .fieldset select:placeholder-shown + label,
#overlay .contentBox form .fieldset textarea:placeholder-shown + label,
.overlay .contentBox form .fieldset textarea:placeholder-shown + label {
  display: none;
}
#overlay .contentBox form .fieldset input:focus,
.overlay .contentBox form .fieldset input:focus,
#overlay .contentBox form .fieldset select:focus,
.overlay .contentBox form .fieldset select:focus,
#overlay .contentBox form .fieldset textarea:focus,
.overlay .contentBox form .fieldset textarea:focus {
  border: none;
}
#overlay .contentBox form .fieldset input:focus + label,
.overlay .contentBox form .fieldset input:focus + label,
#overlay .contentBox form .fieldset select:focus + label,
.overlay .contentBox form .fieldset select:focus + label,
#overlay .contentBox form .fieldset textarea:focus + label,
.overlay .contentBox form .fieldset textarea:focus + label {
  display: block;
  font-weight: 500;
  color: #424242;
}
#overlay .contentBox form .fieldset .switchContainer,
.overlay .contentBox form .fieldset .switchContainer {
  display: inline-block;
  width: calc(4rem + 2px);
  height: 1rem;
  overflow: visible;
  vertical-align: bottom;
  position: static;
}
#overlay .contentBox form .fieldset .switchContainer label.switch,
.overlay .contentBox form .fieldset .switchContainer label.switch {
  border: none;
  height: 1.7rem;
  max-height: 28px;
  margin-top: -0.25rem;
  width: 100%;
  white-space: normal;
  display: block;
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  position: static;
}
#overlay .contentBox form .fieldset .switchContainer label.switch input[type=url],
.overlay .contentBox form .fieldset .switchContainer label.switch input[type=url] {
  display: none;
}
#overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox],
.overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  z-index: 0;
  z-index: -1;
}
#overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:checked + .slider,
.overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:checked + .slider {
  background-color: #43bccd;
}
#overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:focus + .slider,
.overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:focus + .slider {
  box-shadow: 0 0 1px #43bccd;
}
#overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:checked + .slider:before,
.overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:checked + .slider:before {
  -webkit-transform: translateX(2rem);
  -ms-transform: translateX(2rem);
  transform: translateX(2rem);
}
#overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:checked ~ input[type=url],
.overlay .contentBox form .fieldset .switchContainer label.switch input[type=checkbox]:checked ~ input[type=url] {
  display: block;
  background: #fff;
}
#overlay .contentBox form .fieldset .switchContainer label.switch .slider,
.overlay .contentBox form .fieldset .switchContainer label.switch .slider {
  position: relative;
  cursor: pointer;
  background-color: #a8e0e8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
  display: block;
  height: 100%;
}
#overlay .contentBox form .fieldset .switchContainer label.switch .slider:before,
.overlay .contentBox form .fieldset .switchContainer label.switch .slider:before {
  position: absolute;
  content: "";
  height: calc(100% - 4px);
  width: calc(2rem - 4px);
  left: 2px;
  bottom: 2px;
  background-color: #f4f4f4;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
  top: 2px;
  margin: 0;
}
#overlay .contentBox form .fieldset .childList > ul,
.overlay .contentBox form .fieldset .childList > ul {
  border-top: solid 2px #8f8f8f;
  border-bottom: solid 2px #8f8f8f;
  max-height: none;
}
#overlay .contentBox form .fieldset .childList > ul li,
.overlay .contentBox form .fieldset .childList > ul li {
  border-bottom: solid 1px #8f8f8f;
}
#overlay .contentBox form .fieldset .childList > ul li.extra .selector,
.overlay .contentBox form .fieldset .childList > ul li.extra .selector {
  display: none;
}
#overlay .contentBox form .fieldset .childList > ul li.extra .info,
.overlay .contentBox form .fieldset .childList > ul li.extra .info {
  flex: 0 0 65%;
}
#overlay .contentBox form .fieldset .childList > ul li.extra .precio,
.overlay .contentBox form .fieldset .childList > ul li.extra .precio {
  flex: 0 0 35%;
}
#overlay .contentBox form .fieldset .childList > ul li.extra .cantidad,
.overlay .contentBox form .fieldset .childList > ul li.extra .cantidad {
  display: none;
}
#overlay .contentBox form .fieldset .childList > ul li.extra ul.actions,
.overlay .contentBox form .fieldset .childList > ul li.extra ul.actions {
  display: none;
}
#overlay .contentBox form .fieldset .childList > ul li.extra:last-of-type,
.overlay .contentBox form .fieldset .childList > ul li.extra:last-of-type {
  border-bottom: none;
}
#overlay .contentBox form .fieldset.required,
.overlay .contentBox form .fieldset.required {
  position: relative;
}
#overlay .contentBox form .fieldset.required:before,
.overlay .contentBox form .fieldset.required:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  width: 1rem;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0.25rem;
  color: #43bccd;
  font-size: 0.75rem;
  content: "\f069";
  z-index: 5;
}
#overlay .contentBox form .fieldset.leyend,
.overlay .contentBox form .fieldset.leyend {
  background-color: transparent;
}
#overlay .contentBox form .fieldset.leyend:before,
.overlay .contentBox form .fieldset.leyend:before {
  right: 0;
  top: 0;
  font-size: 0.5rem;
}
#overlay .contentBox form .fieldset.leyend:after,
.overlay .contentBox form .fieldset.leyend:after {
  content: var(--leyend, 'Campos requeridos.');
  font-size: 0.8rem;
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  color: #43bccd;
  font-weight: 500;
}
#overlay .contentBox form .fieldset:last-of-type,
.overlay .contentBox form .fieldset:last-of-type {
  margin-bottom: 0;
}
#overlay .contentBox .childList,
.overlay .contentBox .childList {
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  width: calc(100% - 3rem);
}
#overlay .contentBox .childList > button,
.overlay .contentBox .childList > button {
  --button-color: #43bccd;
  line-height: 1rem;
}
#overlay .contentBox .childList > button:before,
.overlay .contentBox .childList > button:before {
  margin-top: 0.125rem;
}
#overlay .contentBox .childList > ul,
.overlay .contentBox .childList > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  border-top: solid 2px #f4f4f4;
  border-bottom: solid 2px #f4f4f4;
  list-style: none;
  margin: 1rem 0;
  max-height: 50vh;
  overflow-x: hidden;
  overflow-y: auto;
}
#overlay .contentBox .childList > ul li.empty,
.overlay .contentBox .childList > ul li.empty {
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
  border: none !important;
  font-size: 0.8rem;
}
#overlay .contentBox .childList > ul li.extra,
.overlay .contentBox .childList > ul li.extra {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
  border-bottom: solid 1px #f4f4f4;
}
#overlay .contentBox .childList > ul li.extra .selector,
.overlay .contentBox .childList > ul li.extra .selector {
  flex: 0 0 10%;
  display: flex;
  justify-content: center;
  align-self: center;
  flex-direction: column;
  height: 1rem;
  width: 1rem;
}
#overlay .contentBox .childList > ul li.extra .info,
.overlay .contentBox .childList > ul li.extra .info {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  text-align: left;
}
#overlay .contentBox .childList > ul li.extra .info h4,
.overlay .contentBox .childList > ul li.extra .info h4 {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
#overlay .contentBox .childList > ul li.extra .info p,
.overlay .contentBox .childList > ul li.extra .info p {
  font-size: 0.8rem;
  margin: 0;
  padding: 0;
}
#overlay .contentBox .childList > ul li.extra .precio,
.overlay .contentBox .childList > ul li.extra .precio {
  flex: 0 0 30%;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: right;
}
#overlay .contentBox .childList > ul li.extra .cantidad,
.overlay .contentBox .childList > ul li.extra .cantidad {
  display: none;
}
#overlay .contentBox .childList > ul li.extra ul.actions,
.overlay .contentBox .childList > ul li.extra ul.actions {
  flex: 0 0 35%;
  justify-content: flex-end;
  display: flex;
  flex-direction: row;
  margin-left: 65%;
}
#overlay .contentBox .childList > ul li.extra ul.actions li button,
.overlay .contentBox .childList > ul li.extra ul.actions li button {
  --button-color: #43bccd;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0;
  height: auto;
  margin: 0;
  line-height: 1rem;
}
#overlay .contentBox .childList > ul li.extra ul.actions li button:before,
.overlay .contentBox .childList > ul li.extra ul.actions li button:before {
  margin: 0 auto;
}
#overlay .contentBox .childList > ul li.extra:last-child,
.overlay .contentBox .childList > ul li.extra:last-child {
  border-bottom: none;
}
#overlay .contentBox .childList > ul li.extra.inactivo,
.overlay .contentBox .childList > ul li.extra.inactivo {
  position: relative;
}
#overlay .contentBox .childList > ul li.extra.inactivo > *,
.overlay .contentBox .childList > ul li.extra.inactivo > * {
  opacity: 0.3;
}
#overlay .contentBox .childList > ul li.extra.inactivo:after,
.overlay .contentBox .childList > ul li.extra.inactivo:after {
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: rgba(76, 34, 116, 0.8);
  color: #fff;
  border-radius: 2px;
  padding: 0.5rem;
  content: "Extra INACTIVO\A-no se verá en tu menú-";
  z-index: 73;
  transform: translate(-50%, -50%);
  border-radius: 0.5rem;
  text-align: center;
  font-family: "Lato", Arial, Helvetica, sans-serif;
  white-space: pre;
}
#overlay .contentBox .special,
.overlay .contentBox .special {
  font-size: 0.8rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
#overlay .contentBox .ok,
.overlay .contentBox .ok {
  display: block;
  font-size: 0.8rem;
  margin: 0 auto;
  --button-color: var(--dialog-color, #43bccd);
  --button-text-color: #fff;
}
#overlay .contentBox .close,
.overlay .contentBox .close {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  box-shadow: none;
  padding: 0 0.5rem;
  position: absolute;
  top: 0.25rem;
  right: 0;
  --button-color: #fff;
}
#overlay .contentBox .close:before,
.overlay .contentBox .close:before {
  font-size: 1.3rem;
}
#overlay .modalContent,
.overlay .modalContent {
  margin: 50vh auto 0 auto;
  position: relative;
  min-height: 10rem;
  max-height: 90vh;
  width: 25rem;
  padding: 2rem;
  overflow: visible;
  font-size: 1.2rem;
  transform: translateY(-50%);
  max-width: calc(100% - 1rem);
  border-radius: 1rem;
  transition: all 0.25s;
  background-color: #fff;
  color: #424242;
  overflow: auto;
  overflow-wrap: break-word;
}
#overlay .modalContent h2,
.overlay .modalContent h2 {
  font-size: 1.5rem;
  margin-top: 1.5rem;
  line-height: 2rem;
}
#overlay .modalContent .iframeContainer,
.overlay .modalContent .iframeContainer {
  padding-bottom: 56.25%;
}
#overlay .modalContent .iframeContainer iframe,
.overlay .modalContent .iframeContainer iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#overlay .modalContent .close,
.overlay .modalContent .close {
  background-color: rgba(0, 0, 0, 0) !important;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0.5rem;
  right: 0;
  --button-color: #fff;
}
#overlay .modalContent .close:before,
.overlay .modalContent .close:before {
  font-size: 1.3rem;
}
.blink {
  animation: blink 1s 0.1s cubic-bezier(1, 1.4, 0.41, 1.01) forwards;
}
.helpButton {
  position: fixed;
  bottom: 0;
  right: 0;
  list-style: none;
  transform: translateY(-100%);
}
.helpButton a {
  --button-color: #ea3546;
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  padding: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  color: #25D366;
  position: relative;
}
.helpButton a:before {
  width: auto;
  font-size: 4rem;
  margin: 0;
  z-index: 1;
}
.helpButton a:after {
  position: absolute;
  z-index: -1;
  width: 3rem;
  height: 3rem;
  top: 0.5rem;
  left: 0.5rem;
  background-color: #fff;
  content: " ";
  display: block;
}
.helpButton a span {
  display: none;
}
.helpButton.scrolling {
  transform: rotateZ(-90deg) translateX(25%);
}
#createAccount {
  background-color: #fff;
  order: 2;
}
#createAccount h1 {
  font-size: 2rem;
  color: #43bccd;
  margin-bottom: 1rem;
}
#createAccount h1 + p {
  font-size: 0.8rem;
}
#createAccount > div {
  position: relative;
}
#createAccount > div .opcionesRegistro {
  transition: transform 0.6s, opacity 0.6s;
  transform-style: preserve-3d;
  background-color: #fff;
  margin: 0;
}
#createAccount > div .opcionesRegistro ul.actions {
  flex-direction: column;
  list-style: none;
  font-size: 1rem;
  margin-top: 1rem;
}
#createAccount > div .opcionesRegistro ul.actions li {
  padding-left: 0 !important;
}
#createAccount > div .opcionesRegistro ul.actions li button,
#createAccount > div .opcionesRegistro ul.actions li a {
  -moz-appearance: none;
  -webkit-appearance: none;
  -ms-appearance: none;
  appearance: none;
  -moz-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  -ms-transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  height: 3.25rem;
  line-height: 3.25rem;
  padding: 0 1rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  box-shadow: inset 0 0 0 1px var(--button-color, #f86624);
  color: var(--button-color, #f86624) !important;
  justify-content: center;
  align-items: baseline;
  --button-color: #424242;
  display: flex;
  flex: 0 0 auto;
  max-width: 17rem;
  width: 100%;
  margin: 2rem auto 0 auto;
  position: relative;
}
#createAccount > div .opcionesRegistro ul.actions li button.filled,
#createAccount > div .opcionesRegistro ul.actions li a.filled {
  background-color: var(--button-color, #f86624) !important;
  color: var(--button-text-color, #fff) !important;
  box-shadow: inset 0 0 0 1px var(--button-color, #fff) !important;
}
#createAccount > div .opcionesRegistro ul.actions li button.filled:hover,
#createAccount > div .opcionesRegistro ul.actions li a.filled:hover {
  background-color: var(--button-color, #f86624) !important;
}
#createAccount > div .opcionesRegistro ul.actions li button > .info,
#createAccount > div .opcionesRegistro ul.actions li a > .info {
  position: absolute;
  bottom: -2.25rem;
  width: 100%;
  text-align: center;
  display: block;
  left: 0;
  color: #424242;
  font-size: 0.8rem;
  font-weight: 300;
}
#createAccount > div .opcionesRegistro ul.actions li button:before,
#createAccount > div .opcionesRegistro ul.actions li a:before {
  margin-right: 1rem;
  margin-top: 1rem;
}
#createAccount > div .opcionesRegistro ul.actions li:first-of-type button,
#createAccount > div .opcionesRegistro ul.actions li:first-of-type a {
  margin-top: 0;
}
#createAccount > div .registroCorreo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  transform: rotateY(180deg);
  background-color: #fff;
}
#createAccount > div .registroCorreo form {
  margin: 1rem auto 0 auto;
}
#createAccount > div .registroCorreo form .icon:before {
  margin-top: 0.25em;
  margin-right: 0.5rem;
}
#createAccount > div .registroCorreo form .fieldset {
  max-width: 20rem;
  padding: 0.5rem 1rem;
  background-color: #f4f4f4;
  margin: 0 auto 1rem auto;
  text-align: left;
}
#createAccount > div .registroCorreo form .fieldset input,
#createAccount > div .registroCorreo form .fieldset select {
  background-color: #f4f4f4;
  height: 100%;
  width: calc(100% - 2rem);
}
#createAccount > div .registroCorreo form .fieldset.required {
  position: relative;
}
#createAccount > div .registroCorreo form .fieldset.required:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  width: 1rem;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0.25rem;
  color: #43bccd;
  font-size: 0.75rem;
  content: "\f069";
  z-index: 5;
}
#createAccount > div .registroCorreo form .fieldset.leyend {
  background-color: transparent;
}
#createAccount > div .registroCorreo form .fieldset.leyend:before {
  right: 0;
  top: 0;
  font-size: 0.5rem;
}
#createAccount > div .registroCorreo form .fieldset.leyend:after {
  content: var(--leyend, 'Campos requeridos.');
  font-size: 0.8rem;
  position: absolute;
  top: 0.25rem;
  right: 1rem;
  color: #43bccd;
  font-weight: 500;
}
#createAccount > div .registroCorreo form .fieldset:last-of-type {
  margin-bottom: 0;
}
#createAccount > div .registroCorreo form .link {
  --button-color: #43bccd;
  margin-top: 0;
  margin-bottom: 1rem;
}
#createAccount > div .registroCorreo form button,
#createAccount > div .registroCorreo form input[type=submit] {
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #43bccd;
  color: #fff;
  cursor: pointer;
  --button-color: #43bccd;
  --button-text-color: #fff;
}
#createAccount > div .registroCorreo ul.actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 2rem;
}
#createAccount > div .registroCorreo ul.actions li {
  display: flex;
}
#createAccount > div .registroCorreo ul.actions li span {
  display: none;
}
#createAccount > div.flipped .opcionesRegistro {
  transform: rotateY(180deg);
  opacity: 0;
}
#createAccount > div.flipped .registroCorreo {
  transform: rotateY(0);
}
#moreInfo {
  display: block !important;
}
#moreInfo h2 {
  font-size: 1.5rem;
}
#moreInfo > div {
  max-height: 70vh;
  overflow-x: hidden;
  overflow-y: auto;
}
#moreInfo > div h3 {
  font-size: 1.2rem;
  text-align: left;
  margin-bottom: 0.25rem;
}
#moreInfo > div > div {
  text-align: left;
  padding: 0.25rem 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
#moreInfo > div > div > ul {
  list-style: none;
}
#moreInfo > div > div > ul > li {
  margin-bottom: 0.5rem;
}
#moreInfo > div > div > ul > li:before {
  margin: 0.25rem 0.25rem 0 0;
  font-size: 0.7rem;
}
#moreInfo > div > div > ul > li > div {
  font-size: 0.7rem;
  margin-left: 1.5rem;
}
#moreInfo > div > div.address > a {
  color: var(--default-accent, #f86624);
  margin: 0.5rem 0 0 0;
  display: block;
  text-align: center;
}
#moreInfo > div > div.horarios > ul > li {
  display: flex;
  flex-direction: row;
}
#moreInfo > div > div.horarios > ul > li span:first-child {
  flex: 0 0 5rem;
}
#moreInfo > div > div.social span {
  font-weight: 500;
  color: #424242;
  text-decoration: none;
  border-bottom: none;
  position: relative;
  margin-bottom: 2rem;
}
#moreInfo > div > div.social span:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 1rem;
  vertical-align: top;
  width: 1rem;
  text-align: center;
  font-family: 'Font Awesome 5 Brands';
  color: #424242;
}
#moreInfo > div > div.social span:visited {
  color: #424242;
}
#moreInfo > div > div.social span.facebook:before {
  content: "\f39e";
}
#moreInfo > div > div.social span.twitter:before {
  content: "\f099";
}
#moreInfo > div > div.social span.instagram:before {
  content: "\f16d";
}
#moreInfo > div > div.social span.pinterest:before {
  content: "\f0d2";
}
#moreInfo > div > div.social span.youtube:before {
  content: "\f167";
}
#landing {
  transform: rotate(0);
  scroll-snap-type: y proximity;
  overflow-y: auto;
  overflow-x: hidden;
}
#landing h1 {
  font-size: 2.5rem;
  font-weight: 900;
}
#landing h2 {
  font-size: 2rem;
  font-weight: 800;
}
#landing section {
  scroll-snap-align: start;
}
#landing ul.actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  align-self: flex-start;
}
#landing ul.actions li {
  display: flex;
  flex-direction: column;
}
#landing ul.actions li a,
#landing ul.actions li button {
  padding: 1em 2em;
  border-radius: 0.5em;
  background-color: var(--button-color, #f86624);
  color: var(--text-color, #fff);
  font-weight: bold;
}
#landing .carrusel {
  position: relative;
}
#landing .carrusel > button {
  position: absolute;
  height: 100%;
  width: 50px;
  left: 0;
  top: 50%;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  z-index: 1;
}
#landing .carrusel > button:last-of-type {
  left: auto;
  right: 0;
}
#landing .carrusel > ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
}
#landing .carrusel > ul > li {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 0;
  transition: transform 0.5s ease-in-out;
  transform: translateX(var(--translate));
}
#landing .carrusel > ul > li:last-child {
  margin-right: 0;
}
#landing .carrusel > ul > li img {
  max-height: 75vh;
  width: min(100%, auto);
  margin: 0 auto;
  object-fit: scale-down;
}
#landing .carrusel > ul > li h3 {
  font-size: 1.5rem;
  margin-top: 1rem;
  text-align: center;
  margin-bottom: 0.5rem;
  min-height: 2rem;
}
#landing .carrusel > ul > li .copy {
  text-align: center;
}
#landing .vcarrusel {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 8rem);
  height: 100vh;
}
#landing .vcarrusel > button {
  width: 100%;
  height: 50px;
  background-size: auto;
  background-position: center;
  background-repeat: no-repeat;
}
#landing .vcarrusel > ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: calc(100vh - 8rem);
  height: 100vh;
  overflow: hidden;
}
#landing .vcarrusel > ul > li {
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: start;
  margin-right: 0;
  transition: transform 0.5s ease-in-out;
  transform: translateY(var(--translate));
}
#landing .vcarrusel > ul > li:last-child {
  margin-right: 0;
}
#landing #slider {
  min-height: 100vh;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-image: url('/sp-responsive-image/Landing/sliderbg.jpg?newFormat=webp&server=LocalStatic');
  background-size: cover;
  background-position: left bottom;
  position: relative;
  overflow: hidden;
}
#landing #slider .banner {
  width: 100%;
  height: 100%;
}
#landing #slider .banner:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--fondo);
  background-size: cover;
  background-position: right bottom;
  content: " ";
  z-index: 0;
  transition: opacity 3s ease-in-out;
  transition-delay: 0.5s;
  opacity: 0;
}
#landing #slider .banner:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/sp-responsive-image/Landing/sliderbg2.png?newFormat=webp&server=LocalStatic');
  background-size: cover;
  background-position: left bottom;
  content: " ";
  z-index: 1;
}
#landing #slider .banner .content {
  position: relative;
  width: 50%;
  height: 100%;
  min-height: 100vh;
  color: #fff;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 4rem;
  align-items: flex-start;
  justify-content: center;
  --button-color: #43bccd;
}
#landing #slider .banner .content img {
  max-height: 25vh;
  transition: opacity 0.5s ease-out;
  opacity: 0;
  transform: translateX(100%);
}
#landing #slider .banner .content h1 {
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition-delay: 1s;
  opacity: 0;
  transform: translateY(100%);
  text-shadow: 2px 2px 8px #000000;
}
#landing #slider .banner .content div.mensaje {
  font-size: 1.2rem;
  font-weight: 300;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
  transition-delay: 2s;
  opacity: 0;
  transform: translateY(100%);
  text-shadow: 2px 2px 8px #000000;
}
#landing #slider .banner .content div.mensaje p:first-of-type {
  font-weight: 400;
  margin-bottom: 1rem;
}
#landing #slider .banner .content div.mensaje strong {
  font-weight: 900;
  font-size: 1.2em;
}
#landing #slider .banner .content div.mensaje > ul {
  margin-top: 1.5rem;
  list-style: none;
}
#landing #slider .banner .content div.mensaje > ul > li {
  display: flex;
  margin-bottom: 0.5rem;
}
#landing #slider .banner .content div.mensaje > ul > li:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  width: 1rem;
  text-align: center;
  font-size: 1rem;
  content: "\f058";
  margin: 0.25rem 0.75rem 0 0;
  z-index: 5;
}
#landing #slider .banner .content ul.actions {
  transition: opacity 0.5s ease-out, transform 0.25s linear;
  transition-delay: 3.5s;
  opacity: 0;
  transform: scale(2);
}
#landing #slider .banner .personaje {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right bottom;
  z-index: 2;
  transition: opacity 3s ease-out;
  transition-delay: 0.5s;
  opacity: 0;
}
#landing #slider .banner .personaje.video {
  background-image: none;
}
#landing #slider .banner .personaje.video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: right bottom;
}
#landing #slider .banner .logo {
  position: absolute;
  bottom: 2rem;
  right: 4rem;
  width: 12.5vw;
  filter: drop-shadow(5px 5px 5px #424242);
  z-index: 2;
}
#landing #slider .banner.active:before,
#landing #slider .banner.active .content img,
#landing #slider .banner.active .content h1,
#landing #slider .banner.active .content h1 + div.mensaje,
#landing #slider .banner.active .content ul.actions,
#landing #slider .banner.active .personaje {
  opacity: 1;
  transform: translateY(0) scale(1);
}
#landing #slider .bullets {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}
#landing #slider .bullets > div {
  width: 1rem;
  height: 1rem;
  border: solid 4px var(--bullets-color, #fff);
  background-color: var(--bullets-color, #fff);
  border-radius: 50%;
  margin-bottom: 1rem;
  transform: translateY(15rem);
  background-color: transparent;
  width: 3rem;
  height: 3rem;
  transition: transform 0.25s ease-out;
  transition-delay: 4.375s;
  position: relative;
}
#landing #slider .bullets > div:after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  text-align: center;
  content: "\f107";
  font-size: 2rem;
  color: var(--bullets-color, #fff);
}
#landing #slider .bullets button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#landing #slider .bullets.active > div {
  transform: translateY(0);
}
#landing #slider.vertical .banner .content {
  right: 0;
  width: 100%;
}
#landing #slider.vertical .banner .personaje {
  display: none;
}
#landing #necesidad {
  display: flex;
  flex-direction: column;
  padding: 4rem;
  align-items: flex-start;
}
#landing #necesidad > div {
  display: flex;
}
#landing #necesidad > div.media {
  margin-top: 2rem;
  padding-bottom: 36%;
  background-image: url('/sp-responsive-image/Landing/cuadrado.png?newFormat=webp&server=LocalStatic');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 50%;
  position: relative;
  width: 100%;
  max-width: 40rem;
  margin: 0 auto;
}
#landing #necesidad > div.media .image {
  position: absolute;
  background-size: cover;
  width: 76%;
  padding-bottom: 57%;
  left: 12%;
  top: 5%;
}
#landing #necesidad > div.media .image img,
#landing #necesidad > div.media .image video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
#landing #necesidad > div.media .image video {
  cursor: pointer;
}
#landing #necesidad > div.copy {
  display: flex;
  flex-direction: column;
  padding: 1rem 2rem 2rem 2rem;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  max-width: 40rem;
}
#landing #necesidad > div.copy h2 {
  color: #4c2274;
  font-weight: 300;
}
#landing #necesidad > div.copy p {
  margin-bottom: 2rem;
}
#landing #necesidad > div.copy div.content {
  font-weight: 400;
}
#landing #necesidad > div.copy div.content > ul {
  margin-top: 1.5rem;
  list-style: none;
}
#landing #necesidad > div.copy div.content > ul > li {
  display: flex;
  margin-bottom: 1rem;
  justify-content: flex-start;
  text-align: left;
}
#landing #necesidad > div.copy div.content > ul > li:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  width: 1rem;
  text-align: center;
  font-size: 1rem;
  content: "\f058";
  margin: 0.25rem 0.75rem 0 0;
  z-index: 5;
}
#landing #necesidad > div.copy div.content .box {
  text-align: left;
  max-width: 80%;
  margin: 0 auto;
  border: solid 1px #424242;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
  padding: 2rem 1.5rem 0.5rem 1.5rem;
}
#landing #necesidad > div.copy div.content .box p {
  border-radius: 1.15rem;
  line-height: 1.25;
  padding: 0.125rem 0.875rem 0.5rem 0.875rem;
  position: relative;
  word-wrap: break-word;
  width: 100%;
  text-align: center;
}
#landing #necesidad > div.copy div.content .box p strong {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  display: inline-block;
}
#landing #necesidad > div.copy div.content .box p:before,
#landing #necesidad > div.copy div.content .box p:after {
  bottom: -0.1rem;
  content: "";
  height: 1rem;
  position: absolute;
}
#landing #necesidad > div.copy div.content .box p.from-them {
  align-self: flex-end;
  background-color: #9cd8e1;
  color: #424242;
  max-width: 75%;
  text-align: left;
}
#landing #necesidad > div.copy div.content .box p.from-them::before {
  border-bottom-left-radius: 0.8rem 0.7rem;
  border-right: 1rem solid #9cd8e1;
  right: -0.35rem;
  transform: translate(0, -0.1rem);
}
#landing #necesidad > div.copy div.content .box p.from-them::after {
  background-color: #f4f4f4;
  border-bottom-left-radius: 0.5rem;
  right: -40px;
  transform: translate(-30px, -2px);
  width: 10px;
}
#landing #necesidad > div.copy div.content .box p p[class^="from-"] {
  margin: 0.5rem 0;
  width: fit-content;
}
#landing #necesidad > div.copy div.content .box p.from-them ~ #landing #necesidad > div.copy div.content .box p.from-them {
  margin: 0.25rem 0 0;
}
#landing #necesidad > div.copy div.content .box p.from-them ~ #landing #necesidad > div.copy div.content .box p.from-them:not(:last-child) {
  margin: 0.25rem 0 0;
}
#landing #necesidad > div.copy div.content .box p.from-them ~ #landing #necesidad > div.copy div.content .box p.from-them:last-child {
  margin-bottom: 0.5rem;
}
#landing #necesidad > div.copy div.content .box p.from-me {
  align-items: flex-start;
  background-color: #8f8f8f;
  color: #fff;
  max-width: 75%;
  text-align: left;
}
#landing #necesidad > div.copy div.content .box p.from-me:before {
  border-bottom-right-radius: 0.8rem 0.7rem;
  border-left: 1rem solid #8f8f8f;
  left: -0.35rem;
  transform: translate(0, -0.1rem);
}
#landing #necesidad > div.copy div.content .box p.from-me::after {
  background-color: #f4f4f4;
  border-bottom-right-radius: 0.5rem;
  left: 20px;
  transform: translate(-30px, -2px);
  width: 10px;
}
#landing #necesidad > div.copy div.content .box p p[class^="from-"].emoji {
  background: none;
  font-size: 2.5rem;
}
#landing #necesidad > div.copy div.content .box p p[class^="from-"].emoji::before {
  content: none;
}
#landing #necesidad > div.copy ul.actions {
  align-self: center;
}
#landing #beneficios {
  padding: 4rem;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
}
#landing #beneficios h2 {
  text-align: center;
  color: #4c2274;
}
#landing #beneficios > .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 40rem;
  width: 100%;
  margin: 0 auto;
}
#landing #beneficios > .content .intro {
  display: flex;
  flex-direction: column;
  padding: 1% 5% 5% 5%;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
}
#landing #beneficios > .content .intro p {
  margin-bottom: 2rem;
}
#landing #beneficios > .content > div {
  flex: 0 0 33.33%;
  padding: 0 3rem;
}
#landing #beneficios > .content > div.carrusel > ul > li .info {
  text-align: center;
}
#landing #beneficios > .content > div.carrusel > ul > li .info h3 {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
#landing #beneficios > .content > div.carrusel > ul > li .info h3 span {
  transform: translateY(100%);
  display: inline-block;
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0s;
}
#landing #beneficios > .content > div.carrusel > ul > li .copy {
  padding: 0 0 2rem 0;
  opacity: 0;
  transition-duration: 0s;
  transition-delay: 0s;
}
#landing #beneficios > .content > div.carrusel > ul > li.in-view h3 span {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease-out 0.75s;
}
#landing #beneficios > .content > div.carrusel > ul > li.in-view .copy {
  opacity: 1;
  transition: all 0.5s ease-out 1.25s;
}
#landing #beneficios > .content div.image {
  margin-bottom: 0;
  background-size: auto 65%;
  background-position: center;
  background-repeat: no-repeat;
}
#landing #beneficios ul.actions {
  align-self: center;
  --button-color: #43bccd;
}
#landing #servicios {
  padding: 4rem;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  color: #fff;
  background-image: url('/sp-responsive-image/Landing/bg-contacto.jpg?newFormat=webp&server=LocalStatic');
  background-size: cover;
}
#landing #servicios h2 {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#landing #servicios h2 + p {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
#landing #servicios .content {
  margin-top: 4rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  align-items: center;
  gap: 2rem;
}
#landing #servicios .content li {
  text-align: center;
  flex: 0 0 33.3%;
}
#landing #servicios .content li > div:first-of-type {
  text-decoration: none;
  border-bottom: none;
  position: relative;
  margin-bottom: 0.5rem;
}
#landing #servicios .content li > div:first-of-type:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-size: 2.5rem;
  text-rendering: auto;
  font-weight: 900;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  color: inherit;
  vertical-align: top;
  text-align: center;
}
#landing #servicios .content li > div:first-of-type.a-domicilio:before {
  content: "\f21c";
  font-weight: 900;
}
#landing #servicios .content li > div:first-of-type.para-llevar:before {
  content: "\f290";
  font-weight: 900;
}
#landing #servicios .content li > div:first-of-type.en-sitio:before {
  content: "\f54f";
  font-weight: 900;
}
#landing #servicios .content li h3 + p {
  max-width: 70%;
  margin: 0 auto;
}
#landing #testimonial-carrusel {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  padding: 2rem 0rem;
  margin-bottom: 2rem;
}
#landing #testimonial-carrusel .copy {
  text-align: center;
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
#landing #testimonial-carrusel .copy h2 {
  color: #424242;
  font-weight: normal;
  margin: 0 auto 2rem auto;
  text-align: center;
  flex: 0 0 calc(100% - 2rem);
  padding-right: calc(65% - 1rem);
  margin-left: 1rem;
}
#landing #testimonial-carrusel .copy ul {
  max-width: calc(100% - 100px);
  margin-left: 50px;
}
#landing #testimonial-carrusel .copy blockquote {
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
#landing #testimonial-carrusel .copy blockquote .before {
  text-align: left;
  padding-right: 2rem;
}
#landing #testimonial-carrusel .copy blockquote .before:before {
  content: "\"";
}
#landing #testimonial-carrusel .copy blockquote .after {
  text-align: right;
  padding-left: 2rem;
  font-weight: 400;
}
#landing #testimonial-carrusel .copy blockquote .after:after {
  content: "\"";
}
#landing #testimonial-carrusel .copy .content {
  max-width: 35%;
  margin: 0 2rem 0 1rem;
}
#landing #testimonial-carrusel .copy .content.carrusel > ul {
  align-items: center;
  display: flex;
  height: 100%;
}
#landing #testimonial-carrusel .copy .content.carrusel > ul > li blockquote .before {
  opacity: 0;
  transition: all 1s ease-in 0.5s;
}
#landing #testimonial-carrusel .copy .content.carrusel > ul > li blockquote .after {
  opacity: 0;
  transition: all 1s ease-in 4s;
}
#landing #testimonial-carrusel .copy .content.carrusel > ul > li.in-view blockquote .before {
  opacity: 1;
  transition-delay: 0;
}
#landing #testimonial-carrusel .copy .content.carrusel > ul > li.in-view blockquote .after {
  opacity: 1;
  transition-delay: 0;
}
#landing #testimonial-carrusel .copy p + p {
  margin-top: 1rem;
}
#landing #testimonial-carrusel .copy img {
  flex: 0 0 65%;
  max-width: calc(65% - 4rem);
  width: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 100%;
}
#landing #testimonial-story {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-top: 2rem;
  padding: 2rem 0rem;
  margin-bottom: 2rem;
}
#landing #testimonial-story .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 25%;
}
#landing #testimonial-story .header h2 {
  font-weight: normal;
  text-align: center;
  margin: 4rem 0 0 0;
}
#landing #testimonial-story .header img {
  width: 100%;
}
#landing #testimonial-story .copy {
  text-align: center;
  flex: 1 1 auto;
  max-width: 50vw;
}
#landing #testimonial-story .copy p + p {
  margin-top: 1rem;
}
#landing #comunidad {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f4f4f4;
}
#landing #comunidad h2 {
  text-align: center;
  color: #4c2274;
  margin-bottom: 1rem;
}
#landing #comunidad > img {
  max-width: 25vw;
}
#landing #comunidad .content {
  margin-top: 2rem;
  padding: 0;
  overflow: hidden;
}
#landing #comunidad .content > ul#listaNegocios {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  max-width: 70vw;
  transition: transform 0.5s ease-out;
}
#landing #comunidad .content > ul#listaNegocios li {
  display: flex;
  flex: 0 0 20%;
  padding: 0 1rem;
  justify-content: center;
}
#landing #comunidad .content > ul#listaNegocios li button {
  text-align: center;
}
#landing #comunidad .content > ul#listaNegocios li h3 {
  color: #424242;
  font-weight: 500;
  font-size: 1.5rem;
  white-space: pre-wrap;
  word-break: break-word;
  margin-bottom: 0;
}
#landing #comunidad .content > ul#listaNegocios li img {
  width: 100%;
  filter: grayscale(100%);
}
#landing #comunidad .content > ul#listaNegocios li img + h3 {
  font-size: 0.8rem;
}
#landing #comunidad .content > ul#listaNegocios li:hover h3 {
  font-weight: 900;
}
#landing #comunidad .content > ul#listaNegocios li:hover img {
  filter: none;
}
#landing #comunidad .content > ul#negociosPager {
  display: flex;
  flex-direction: column;
  margin: 2rem auto 0 auto;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  max-width: 80vw;
  flex-wrap: wrap;
}
#landing #comunidad .content > ul#negociosPager li {
  margin-right: 1rem;
  margin-bottom: 1rem;
}
#landing #comunidad .content > ul#negociosPager li button {
  border: solid 0.187rem #4c2274;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}
#landing #comunidad .content > ul#negociosPager li button.active {
  background-color: #4c2274;
}
#landing #experiencia {
  padding: 4rem;
  background-color: #f4f4f4;
}
#landing #experiencia h2 {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #4c2274;
}
#landing #experiencia .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  align-items: center;
  max-width: 40rem;
  width: 100%;
}
#landing #experiencia .content > div {
  display: flex;
  align-content: center;
  margin-top: 1rem;
}
#landing #experiencia .content > div.carrusel {
  max-width: 40rem;
  width: 100%;
}
#landing #experiencia .content > div.carrusel > ul > li {
  transform: none !important;
}
#landing #experiencia .content > div.carrusel > ul > li figure {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
#landing #experiencia .content > div.carrusel > ul > li h3 {
  margin: 0;
}
#landing #experiencia .content > div.carrusel > ul > li span {
  opacity: 0;
  transition: all 0.25s ease-in-out 0.75s;
}
#landing #experiencia .content > div.carrusel > ul > li span.number {
  font-size: 2.5rem;
  border-radius: 50%;
  border: solid 4px #4c2274;
  display: inline-block;
  width: 3.5rem;
  height: 3.5rem;
  line-height: 3rem;
  padding: 0 0.2rem 0.5rem 0;
  background-color: #f9c80e;
  color: #4c2274;
  margin-right: 1rem;
  transform: scale(0);
  opacity: 1;
  transition: all 0.25s ease-in-out 0.5s;
}
#landing #experiencia .content > div.carrusel > ul > li:not(.in-view) {
  display: none;
}
#landing #experiencia .content > div.carrusel > ul > li.in-view {
  display: flex !important;
}
#landing #experiencia .content > div.carrusel > ul > li.in-view span {
  opacity: 1;
}
#landing #experiencia .content > div.carrusel > ul > li.in-view span.number {
  transform: scale(1);
}
#landing #experiencia .content > div.media {
  margin-top: 4rem;
  padding-bottom: 69%;
  background-image: url('/sp-responsive-image/Landing/cuadrado.png?newFormat=webp&server=LocalStatic');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 50%;
  position: relative;
  width: 100%;
  max-width: 40rem;
}
#landing #experiencia .content > div.media .image {
  position: absolute;
  background-size: cover;
  width: 76%;
  padding-bottom: 57%;
  left: 12%;
  top: 1%;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
#landing #experiencia .content > div.media .image img,
#landing #experiencia .content > div.media .image video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#landing #experiencia .content > div.media .image video {
  cursor: pointer;
  object-fit: contain;
  object-position: bottom;
}
#landing #experiencia .content > div.qr {
  display: flex;
  margin-top: 4rem;
  flex-direction: column;
  padding: 1% 2% 5% 2%;
  justify-content: center;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
#landing #experiencia .content > div.qr img {
  max-width: 20vw;
  width: 100%;
}
#landing #experiencia .content > div.qr .copy {
  margin-top: 2rem;
}
#landing #experiencia .content > div.qr h2 {
  color: #4c2274;
}
#landing #experiencia .content > div.qr p {
  margin-left: 0 !important;
  margin-bottom: 0;
  max-width: 25rem;
  display: inline-block;
}
#landing #experiencia .content > div.qr ul.actions {
  align-self: center;
  justify-content: center;
  width: 100%;
  max-width: 25rem;
}
#landing #experiencia .content > div.qr ul.actions li a {
  font-size: 0.8rem;
  white-space: nowrap;
  border: solid 2px #f86624;
  width: 10rem;
  padding-left: 0;
  padding-right: 0;
}
#landing #experiencia .content > div.qr ul.actions li:first-child a {
  background-color: transparent;
  color: #f86624;
}
#landing #serviceOffer {
  background-color: rgba(67, 188, 205, 0.75);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 4rem;
  align-items: flex-start;
}
#landing #serviceOffer h2 {
  color: #4c2274;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
}
#landing #serviceOffer .content {
  display: flex;
  flex-direction: row;
  margin: 4rem auto 2rem auto;
  max-width: 60rem;
}
#landing #serviceOffer .content .left {
  flex: 0 0 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 4rem;
}
#landing #serviceOffer .content .left ul {
  margin-top: 1.5rem;
  list-style: none;
}
#landing #serviceOffer .content .left ul > li {
  display: flex;
  margin-bottom: 3rem;
  font-size: 1.2rem;
  justify-content: flex-start;
  text-align: left;
}
#landing #serviceOffer .content .left ul > li:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  width: 1rem;
  text-align: center;
  font-size: 1.2rem;
  content: "\f058";
  margin: 0.35rem 1rem 0 0;
  z-index: 5;
}
#landing #serviceOffer .content .left ul.actions {
  align-self: center;
}
#landing #serviceOffer .content .right {
  flex: 0 0 35%;
  display: flex;
  justify-content: center;
}
#landing #serviceOffer .content .right img {
  max-height: calc(100vh - 8rem);
}
#landing #planes {
  padding: 4rem;
  background-color: #fff;
}
#landing #planes h2 {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #4c2274;
}
#landing #planes h2:before {
  width: 250px;
  background: url('/sp-responsive-image/Landing/linea.png?newFormat=webp&server=LocalStatic') right center no-repeat;
  background-size: 80%;
  content: " ";
  margin-right: 2rem;
}
#landing #planes h2:after {
  width: 250px;
  background: url('/sp-responsive-image/Landing/linea.png?newFormat=webp&server=LocalStatic') left center no-repeat;
  background-size: 80%;
  content: " ";
  margin-left: 2rem;
}
#landing #planes h2 + p {
  max-width: 40rem;
  text-align: center;
  margin: 2rem auto 4rem auto;
  font-size: 1.2rem;
  font-weight: 500;
  color: #424242;
}
#landing #planes h2 + p button {
  color: #424242;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
#landing #planes .content {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}
#landing #planes .content > .features {
  flex: 0 0 calc(70% - 1rem);
  margin-right: 2rem;
}
#landing #planes .content > .features > div:first-child {
  background-color: #f4f4f4;
  border-radius: 1rem;
  padding: 2rem 4rem 4rem 4rem;
  text-align: center;
}
#landing #planes .content > .features > div:first-child ul {
  margin-top: 3rem;
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 2rem;
  row-gap: 1rem;
  column-count: 2;
  width: 100%;
  text-align: left;
}
#landing #planes .content > .features > div:first-child ul li {
  display: flex;
  flex: 0 0 calc(50% - 1rem);
  flex-direction: row;
  font-size: 0.8rem;
  opacity: 0.5;
}
#landing #planes .content > .features > div:first-child ul li:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  vertical-align: top;
  text-align: center;
  color: #8f8f8f;
  font-size: 0.8rem;
  margin: 0.125rem 0.25rem 0 0;
  content: "\f058";
  z-index: 5;
}
#landing #planes .content > .features > div:first-child ul li.active {
  opacity: 1;
}
#landing #planes .content > .features > div:first-child ul li.active:before {
  color: var(--plan-color, #4c2274);
}
#landing #planes .content > .options {
  flex: 0 0 calc(30% - 1rem);
}
#landing #planes .content > .options ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: left;
  height: 100%;
  justify-content: space-around;
}
#landing #planes .content > .options ul li {
  text-align: center;
  text-align: left;
  font-weight: bold;
}
#landing #planes .content > .options ul li img {
  margin: 1rem auto 2rem auto;
  display: block;
  width: 100%;
  object-position: center;
  object-fit: contain;
}
#landing #planes .content > .options ul li button {
  background-color: #fff;
  border-radius: 1rem;
  border: solid 4px #f4f4f4;
}
#landing #planes .content > .options ul li button > div {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
#landing #planes .content > .options ul li button > div .info {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
#landing #planes .content > .options ul li button > div .info h3,
#landing #planes .content > .options ul li button > div .info h4,
#landing #planes .content > .options ul li button > div .info h5 {
  margin-bottom: 0;
}
#landing #planes .content > .options ul li button > div .info h3 {
  text-align: left;
  flex: 0 0 70%;
  position: relative;
  padding-left: 1.25rem;
}
#landing #planes .content > .options ul li button > div .info h3:before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  text-transform: none !important;
  font-family: 'Font Awesome 5 Free';
  font-weight: 300;
  color: inherit;
  vertical-align: top;
  text-align: center;
  font-size: 1rem;
  position: absolute;
  left: 0;
  top: 0.375rem;
  content: "\f111";
  z-index: 5;
  background-color: #fff;
  border-radius: 50%;
}
#landing #planes .content > .options ul li button > div .info .price {
  flex: 0 0 30%;
  font-size: 0.8rem;
}
#landing #planes .content > .options ul li button > div p {
  font-size: 0.8rem;
  text-align: left;
  margin-top: 0.5rem;
}
#landing #planes .content > .options ul li button.active {
  border: solid 4px var(--plan-color, #4c2274);
  background-color: var(--plan-bg-color, rgba(76, 34, 116, 0.1));
}
#landing #planes .content > .options ul li button.active > div .info h3:before {
  content: "\f192";
}
#landing #planes .content > .options ul li .button {
  --button-color: var(--plan-color);
  --button-text-color: #fff;
  padding: 1em 2em;
  border-radius: 0.5em;
  background-color: var(--button-color, #f86624);
  color: var(--text-color, #fff);
  font-weight: bold;
  margin: 0 auto;
  text-align: center;
}
#landing #planes .content > .options ul li .button:hover {
  width: 100%;
}
#landing #planes .content > .options ul li + li {
  margin-top: 2rem;
}
#landing #planes .content > .options ul li:last-child {
  text-align: center;
}
#landing #planes .content > .payment-forms {
  width: 100%;
  overflow: hidden;
  padding: 2rem 2rem 0 2rem;
  font-weight: bold;
}
#landing #planes .content > .payment-forms img {
  margin-top: 0.5rem;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
#landing #planes .content > .payment-forms img.med,
#landing #planes .content > .payment-forms img.small {
  display: none;
}
#landing #garantia {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 4rem 0 0 0;
  align-items: flex-start;
  background-color: #f9c80e;
}
#landing #garantia > div {
  display: flex;
  flex: 0 0 50%;
}
#landing #garantia > div.image {
  text-align: center;
  margin: 0 auto 1rem auto;
}
#landing #garantia > div.image img {
  display: inline;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
#landing #garantia > div.copy {
  display: flex;
  flex-direction: column;
  padding: 1% 5% 5% 5%;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
#landing #garantia > div.copy h2 {
  color: #4c2274;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#landing #garantia > div.copy sup {
  font-size: 0.8em;
}
#landing #garantia > div.copy div.content {
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 3rem;
}
#landing #garantia > div.copy div.content p {
  margin-bottom: 0.5rem;
}
#landing #garantia > div.copy div.content sup {
  font-size: 0.8rem;
}
#landing #garantia > div.copy div.notes {
  font-size: 0.8rem;
  max-width: 20rem;
  margin: 2rem auto 0 auto;
  text-align: center;
}
#landing #ultimatum {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 4rem 0 0 0;
  align-items: flex-start;
  background-color: #f4f4f4;
  text-align: center;
  align-items: center;
}
#landing #ultimatum .content {
  display: flex;
  margin-top: 2rem;
}
#landing #ultimatum .content .image {
  flex: 0 0 35%;
  text-align: center;
  margin: 0 auto 1rem auto;
}
#landing #ultimatum .content .image img {
  display: inline;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-height: 85vh;
  background-size: cover;
  background-position: center;
}
#landing #ultimatum .content .copy {
  flex: 0 0 65%;
  display: flex;
  flex-direction: column;
  padding: 1% 5% 5% 5%;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
#landing #ultimatum .content .copy h3 {
  color: #4c2274;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
#landing #ultimatum .content .copy ul.samples {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 2rem 0;
  margin: 2rem 1rem;
  border-radius: 0.5rem;
  row-gap: 1rem;
}
#landing #ultimatum .content .copy ul.samples li {
  flex: 0 0 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#landing #ultimatum .content .copy ul.samples li img {
  max-width: 199px;
  max-height: 66px;
  object-fit: contain;
  object-position: center;
}
#landing #ultimatum .content .copy p {
  margin-bottom: 0.5rem;
}
#landing #ultimatum .content .copy ul.actions {
  margin: 2rem auto 0 auto;
}
#landing #faq {
  color: #424242;
  padding: 4rem;
  text-align: center;
}
#landing #faq h2 {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  color: #4c2274;
  margin-bottom: 2rem;
}
#landing #faq h2:before {
  width: 250px;
  background: url('/sp-responsive-image/Landing/linea.png?newFormat=webp&server=LocalStatic') right center no-repeat;
  background-size: 80%;
  content: " ";
  margin-right: 2rem;
}
#landing #faq h2:after {
  width: 250px;
  background: url('/sp-responsive-image/Landing/linea.png?newFormat=webp&server=LocalStatic') left center no-repeat;
  background-size: 80%;
  content: " ";
  margin-left: 2rem;
}
#landing #faq > .content {
  max-width: 920px;
  margin: 4rem auto 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
  /*columns: 2;
            gap: 2rem;*/
}
#landing #faq > .content > div {
  flex: 1;
}
#landing #faq > .content > div + div {
  margin-left: 4rem;
}
#landing #faq > .content details {
  break-inside: avoid;
}
#landing #faq > .content details + details {
  margin-top: 2rem;
}
#landing #faq > .content details summary {
  font-weight: 400;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
#landing #faq > .content details > div {
  margin-top: 1rem;
  padding-left: 1rem;
  font-weight: 300;
}
#landing #faq > .content details > div a {
  color: #43bccd;
  font-weight: bold;
}
#landing #faq > .content details > div .icon:before {
  margin-right: 0rem;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
#landing #faq > .content .helpButton {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  margin: 4rem 0 0 0;
}
#landing #faq > .content .helpButton a {
  flex-direction: row;
  width: auto;
  text-align: center;
  margin: 0;
  justify-content: center;
}
#landing #faq > .content .helpButton a span {
  display: inline;
  margin-left: 1rem;
  font-size: 2rem;
}
#landing #faq > .content .helpButton a span span {
  display: block;
}
@keyframes blink {
  0% {
    background-color: rgba(249, 200, 14, 0);
  }
  25% {
    background-color: #f9c80e;
  }
  50% {
    background-color: rgba(249, 200, 14, 0);
  }
  75% {
    background-color: #f9c80e;
  }
  100% {
    background-color: rgba(249, 200, 14, 0);
  }
}
@media screen and (max-width: 1280px) {
  #landing #beneficios > .content div.image {
    flex: 0 0 24%;
  }
  #landing #beneficios > .content ul {
    flex: 1 0 38%;
  }
  #landing #beneficios > .content ul li {
    min-height: 76px;
  }
  #landing #beneficios > .content ul li .info {
    flex: 1 1 calc(100% - 105px);
  }
  #landing #beneficios > .content ul li .icon {
    flex: 0 0 105px;
    background-size: 75px 76px;
  }
  #landing #testimonial-carrusel .copy blockquote {
    margin: 1rem 0.25rem;
  }
  #landing #testimonial-carrusel .copy h2 {
    padding: 0;
  }
}
@media screen and (min-width: 981px) and (max-height: 75vw) {
  #landing #planes > .content {
    transform: none !important;
  }
}
@media screen and (min-height: 75vw), screen and (max-width: 980px) {
  #landing {
    transform: rotate(0);
  }
  #landing #slider .banner:before {
    background-image: var(--fondoResp);
    background-position: center bottom;
  }
  #landing #slider .banner:after {
    background-image: url('/sp-responsive-image/Landing/slideroverV.png?newFormat=webp&server=LocalStatic');
    background-position: right top;
  }
  #landing #slider .banner .content {
    right: 0;
    width: 100%;
    padding: 4rem 2rem;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
  #landing #slider .banner .content img {
    max-height: 15vh;
  }
  #landing #slider .banner .content h1 {
    font-size: 2em;
    margin-bottom: 0.5rem;
  }
  #landing #slider .banner .content div.mensaje {
    max-width: 85%;
  }
  #landing #slider .banner .content div.mensaje p + p {
    margin-top: 1rem;
  }
  #landing #slider .banner .content div.mensaje > ul {
    text-align: left;
    padding-left: 2rem;
  }
  #landing #slider .banner .content div.mensaje > ul li {
    background-color: rgba(66, 66, 66, 0.45);
  }
  #landing #slider .banner ul.actions {
    align-self: center;
  }
  #landing #slider .banner .personaje {
    display: none;
  }
  #landing #necesidad {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 4rem;
    align-items: stretch;
  }
  #landing #necesidad > div {
    flex: 0 0 100%;
  }
  #landing #necesidad > div.media {
    padding-bottom: 72%;
    margin-top: 0;
  }
  #landing #necesidad > div.copy {
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding: 0;
  }
  #landing #beneficios > .content {
    flex-direction: column;
    justify-content: space-around;
  }
  #landing #beneficios > .content ul {
    text-align: left;
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 2rem;
  }
  #landing #beneficios > .content div.image {
    max-height: 80vh;
    flex: unset;
    background-size: auto 100%;
  }
  #landing #testimonial-carrusel .copy .content {
    width: 100%;
    max-width: min(75vw, 30rem);
    margin: 0 auto;
  }
  #landing #testimonial-carrusel .copy img {
    position: static;
    max-width: 75vw;
    margin: 0 auto;
  }
  #landing #testimonial-story {
    flex-direction: column;
  }
  #landing #testimonial-story img {
    max-width: 75vw;
    margin: 0 auto;
  }
  #landing #planes {
    padding: 4rem 0;
  }
  #landing #planes > .content {
    padding: 0 2rem;
    flex-direction: column;
  }
  #landing #planes > .content .options {
    order: 2;
    max-width: 100%;
    margin-top: 2rem;
  }
  #landing #planes > .content .options ul {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
  }
  #landing #planes > .content .options ul li {
    flex: 0 0 calc(50% - 1rem);
    margin-top: 0;
    margin-bottom: 0;
  }
  #landing #planes > .content .options ul li button {
    height: 100%;
    align-items: flex-start;
    display: flex;
  }
  #landing #planes > .content .options ul li + li {
    margin-top: 0;
  }
  #landing #planes > .content .options ul li:last-child {
    flex: 0 0 100%;
    margin-top: 4rem;
  }
  #landing #planes > .content .payment-forms {
    order: 2;
    position: static;
    margin: 1rem auto 0 auto;
  }
  #landing #planes > .content .features {
    order: 1;
    margin-right: 0;
  }
  #landing #comunidad {
    padding: 4rem 0;
  }
  #landing #comunidad > img {
    max-width: 75vw;
  }
  #landing #comunidad .content {
    margin-top: 2rem;
    padding: 2rem 0;
  }
  #landing #comunidad .content > ul#listaNegocios {
    max-width: 90vw;
  }
  #landing #comunidad .content > ul#listaNegocios li {
    display: flex;
    flex: 0 0 50%;
    padding: 0 1rem;
    justify-content: center;
  }
  #landing #comunidad .content > ul#listaNegocios li button {
    text-align: center;
  }
  #landing #comunidad .content > ul#listaNegocios li h3 {
    color: #424242;
    font-weight: 500;
    font-size: 1.5rem;
    white-space: pre-wrap;
    word-break: break-word;
    margin-bottom: 0;
  }
  #landing #comunidad .content > ul#listaNegocios li img {
    width: 100%;
    filter: grayscale(100%);
  }
  #landing #comunidad .content > ul#listaNegocios li img + h3 {
    font-size: 0.8rem;
  }
  #landing #comunidad .content > ul#listaNegocios li:hover h3 {
    font-weight: 900;
  }
  #landing #comunidad .content > ul#listaNegocios li:hover img {
    filter: none;
  }
  #landing #experiencia {
    padding: 4rem 0;
  }
  #landing #experiencia .content {
    flex-direction: column;
    align-items: center;
  }
  #landing #experiencia .content > div {
    flex: 0 0 100%;
  }
  #landing #experiencia .content > div.media {
    margin-top: 2rem;
    padding-bottom: 56%;
    width: 80%;
  }
  #landing #experiencia .content > div.qr img {
    max-width: 50%;
  }
  #landing #experiencia .content > div.qr p {
    max-width: 70%;
  }
  #landing #experiencia .content > div.qr ul.actions {
    max-width: 70%;
  }
  #landing #serviceOffer .content {
    flex-direction: column;
  }
  #landing #serviceOffer .content .left {
    padding-right: 0;
  }
  #landing #serviceOffer .content .right {
    margin-top: 4rem;
  }
  #landing #ultimatum .content {
    flex-direction: column;
  }
  #landing #ultimatum .content .image {
    max-width: 75vw;
  }
}
@media screen and (max-width: 736px) {
  #landing #slider .bullets {
    display: none;
  }
  #landing #equipo {
    padding: 4rem 0;
  }
  #landing #equipo > ul li {
    width: 30%;
    flex: 0 0 30%;
  }
  #landing #planes .content > .payment-forms {
    margin-top: 2rem;
  }
  #landing #planes .content > .payment-forms img {
    margin-top: 2rem;
  }
  #landing #planes .content > .payment-forms img.full {
    display: none;
  }
  #landing #planes .content > .payment-forms img.med {
    display: block;
  }
  #landing #faq {
    padding: 4rem 2rem;
  }
  #landing #servicios .content {
    flex-direction: column;
  }
  #landing #servicios .content li + li {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 480px) {
  #overlay .modalContent {
    padding: 2rem 1rem;
  }
  #landing #slider {
    height: auto;
    min-height: 100vh;
  }
  #landing #slider .banner {
    position: static;
  }
  #landing #slider .banner .content {
    padding: 2rem 1rem;
    position: relative;
    background: url('/sp-responsive-image/Landing/slideroverV.png?newFormat=webp&server=LocalStatic');
  }
  #landing #slider .banner .content div.mensaje {
    max-width: 100%;
  }
  #landing #slider .banner .content div.mensaje > ul {
    padding-left: 0;
  }
  #landing #slider .banner:after {
    display: none;
  }
  #landing #slider .bullets {
    display: none;
  }
  #landing #necesidad {
    padding: 4rem 1rem !important;
  }
  #landing #necesidad > div.copy div.content .box {
    max-width: 100%;
  }
  #landing #necesidad > div.media .image {
    width: 90%;
    padding-bottom: 67%;
    left: 5%;
    top: 0%;
  }
  #landing #testimonial-carrusel .copy .content {
    max-width: 100%;
  }
  #landing #testimonial-story .copy {
    margin-top: 2rem;
    max-width: calc(100% - 4rem);
  }
  #landing #servicios {
    padding: 4rem 0;
  }
  #landing #servicios h2:before,
  #landing #servicios h2:after {
    display: none;
  }
  #landing #beneficios {
    padding: 4rem 1rem !important;
  }
  #landing #beneficios > .content ul {
    padding-right: 0 !important;
  }
  #landing #beneficios > .content ul li {
    min-height: 76px;
  }
  #landing #beneficios > .content ul li .info {
    flex: 1 1 calc(100% - 90px);
  }
  #landing #beneficios > .content ul li .icon {
    flex: 0 0 90px;
    background-size: 60px 60.8px;
  }
  #landing #experiencia {
    padding: 4rem 0;
  }
  #landing #experiencia .content {
    flex-direction: column;
    align-items: center;
  }
  #landing #experiencia .content > div {
    flex: 0 0 100%;
  }
  #landing #experiencia .content > div.media {
    padding-bottom: 66.5%;
    width: calc(100% - 2rem);
  }
  #landing #experiencia .content > div.media .image {
    width: 90%;
    padding-bottom: 67%;
    left: 5%;
    top: 0%;
  }
  #landing #experiencia .content > div.qr img {
    max-width: 78%;
  }
  #landing #experiencia .content > div.qr p {
    max-width: 100%;
  }
  #landing #experiencia .content > div.qr ul.actions {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #landing #experiencia .content > div.qr ul.actions li {
    margin-bottom: 2rem;
  }
  #landing #serviceOffer {
    padding: 2rem;
  }
  #landing #planes h2:before,
  #landing #planes h2:after {
    display: none;
  }
  #landing #planes .content > .features > div:first-child {
    padding: 1rem;
  }
  #landing #planes .content .options ul li {
    flex: 0 0 100%;
  }
  #landing #planes .content .options ul li + li {
    margin-top: 2rem;
  }
  #landing #planes .content .options ul li:last-child {
    margin-top: 3rem;
  }
  #landing #planes .content > .payment-forms {
    margin-top: 2rem;
    padding: 2rem 0;
  }
  #landing #planes .content > .payment-forms img {
    margin-top: 2rem;
  }
  #landing #planes .content > .payment-forms img.full,
  #landing #planes .content > .payment-forms img.med {
    display: none;
  }
  #landing #planes .content > .payment-forms img.small {
    display: block;
  }
  #landing #ultimatum .content .copy ul.samples {
    flex-direction: column;
    align-items: flex-start;
    align-content: space-around;
  }
  #landing #faq h2:before,
  #landing #faq h2:after {
    display: none;
  }
  #landing #faq > .content {
    flex-direction: column;
  }
  #landing #faq > .content > div + div {
    margin-left: 0;
  }
  #landing #faq > .content .helpButton a:before {
    font-size: 3rem;
  }
  #landing #faq > .content .helpButton a span {
    font-size: 1.5rem;
  }
  #landing #equipo > ul {
    flex-direction: column;
    align-items: center;
  }
  #landing #equipo > ul li {
    width: 80%;
    flex: 0 0 80%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  #landing #equipo > ul li .job {
    font-size: 1rem;
  }
  #landing #equipo > ul li .actions a:before {
    font-size: 1.5rem;
  }
  #landing #equipo > ul li:nth-child(1) {
    order: 2;
  }
  #landing #equipo > ul li:nth-child(2) {
    order: 1;
  }
  #landing #equipo > ul li:nth-child(3) {
    order: 3;
  }
  #landing #contacto {
    padding: 4rem 0;
  }
}
