.wrap {
  background-color: var(--titWhite);
}
p {
  line-height: 1.2em;
}
.text-blue {
  color: var(--titClientDarkBlue);
}
.text-light-blue {
  color: var(--lightBlue);
}
.text-light-blue-hover:hover {
  color: var(--lightBlue);
}
.text-orange {
  color: var(--titOrange);
}
.text-green {
  color: var(--btnGreen);
}
.title {
  margin-bottom: 32px;
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .title {
    margin-bottom: 10px;
  }
}
/* Buttons */
.btn {
  margin: 0;
  border-radius: var(--btnBorderRadius) !important;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 24px;
  color: var(--textGray);
  font-family: Roboto, sans-serif;
  font-style: normal;
  line-height: 20.912px;
  /* 174.27% */
  letter-spacing: -0.12px;
}
.btn .material-icons {
  font-size: 14px;
}
.btn.m-r-12 {
  margin-left: 0;
  margin-right: 12px;
}
.btn.btn-cancel {
  background: transparent;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  box-shadow: none;
  color: var(--lightBlue);
}
.btn.btn-cancel:hover {
  border: 1px solid rgba(color-mix(in srgb, var(--lightBlue), black 10%), 50%);
  color: color-mix(in srgb, var(--lightBlue), black 10%);
}
.btn.btn-secondary {
  background: var(--progressBarBackground);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  box-shadow: none;
  color: var(--blueBackgroundMenu);
  border: 1px solid var(--progressBarBackground);
}
.btn.btn-secondary:hover {
  background: var(--blueBackgroundMenu);
  border: 1px solid var(--blueBackgroundMenu);
  color: white;
}
.btn.btn-blue,
.btn.btn-primary {
  background: var(--lightBlue);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  border: 1px solid var(--lightBlue);
  color: var(--titWhite);
}
.btn.btn-blue:hover,
.btn.btn-primary:hover {
  background: var(--titWhite);
  color: var(--lightBlue);
}
.btn.btn-blue:hover svg path,
.btn.btn-primary:hover svg path {
  fill: var(--lightBlue);
}
.btn.btn-blue:hover:disabled,
.btn.btn-primary:hover:disabled,
.btn.btn-blue:hover [disabled],
.btn.btn-primary:hover [disabled] {
  background: var(--lightBlue);
  border: 1px solid var(--lightBlue);
  color: var(--titWhite);
}
.btn.btn-blue:disabled,
.btn.btn-primary:disabled,
.btn.btn-blue [disabled],
.btn.btn-primary [disabled] {
  opacity: 0.65;
}
.btn.btn-blue.inverted,
.btn.btn-primary.inverted {
  background: var(--titWhite);
  color: var(--lightBlue);
  border: 1px solid var(--titWhite);
}
.btn.btn-blue.inverted:hover,
.btn.btn-primary.inverted:hover {
  background: var(--lightBlue);
  color: var(--titWhite);
  border: 1px solid var(--lightBlue);
}
.btn.btn-blue.inverted:hover svg path,
.btn.btn-primary.inverted:hover svg path {
  fill: var(--titWhite);
}
.btn.btn-whatsapp {
  background: var(--titWhatsapp);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  border: 1px solid var(--titWhatsapp);
  color: var(--titWhite);
}
.btn.btn-whatsapp:hover {
  background: var(--titWhite);
  color: var(--titWhatsapp);
}
.btn.btn-whatsapp:hover svg path {
  fill: var(--titWhatsapp);
}
.btn.btn-whatsapp:hover:disabled,
.btn.btn-whatsapp:hover [disabled] {
  background: var(--titWhatsapp);
  border: 1px solid var(--titWhatsapp);
  color: var(--titWhite);
}
.btn.btn-whatsapp:disabled,
.btn.btn-whatsapp [disabled] {
  opacity: 0.65;
}
.btn.btn-light-blue {
  background: var(--lightBlueSelect);
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  color: var(--blueBackgroundMenu);
}
.btn.btn-light-blue:hover {
  background: var(--lightBlueBorder);
}
.btn.btn-negative-blue {
  background: white;
  border: 1px solid var(--lightBlue);
  color: var(--lightBlue);
  -webkit-transition: border 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
}
.btn.btn-negative-blue:hover {
  border-color: var(--titClientDarkBlue);
  color: var(--titClientDarkBlue);
}
.btn.btn-outline-blue,
.btn.btn-outline-primary,
.btn.btn-outline-light-blue {
  background: transparent;
  border: 1px solid var(--lightBlue);
  color: var(--lightBlue);
  -webkit-transition: border 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
}
.btn.btn-outline-blue:hover,
.btn.btn-outline-primary:hover,
.btn.btn-outline-light-blue:hover {
  border: 1px solid var(--titClientDarkBlue);
  color: var(--titClientDarkBlue);
}
.btn.btn-green {
  background: var(--btnGreen);
  -webkit-transition: background 1s;
  transition: background 1s;
}
.btn.btn-green:hover {
  background: color-mix(in srgb, var(--btnGreen), black 10%);
}
.btn.btn-negative-green {
  background: white;
  border: 1px solid var(--btnGreen);
  color: var(--btnGreen);
  -webkit-transition: border 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
}
.btn.btn-negative-green:hover {
  border-color: var(--btnLightGreen);
  color: var(--btnLightGreen);
}
.btn.btn-light-green {
  background: var(--btnLightGreen);
  -webkit-transition: background 1s;
  transition: background 1s;
}
.btn.btn-light-green:hover {
  background: color-mix(in srgb, var(--btnLightGreen), black 10%);
}
.btn.btn-orange {
  background: var(--titOrange);
  -webkit-transition: background 1s;
  transition: background 1s;
}
.btn.btn-orange:hover {
  background: color-mix(in srgb, var(--titOrange), black 10%);
}
.btn.btn-red {
  background: var(--titRed);
  -webkit-transition: background 1s;
  transition: background 1s;
}
.btn.btn-red:hover {
  background: color-mix(in srgb, var(--titRed), black 10%);
}
.btn.btn-dark-blue,
.btn.btn-tertiary {
  background: color-mix(in srgb, var(--titClientPrincipalBlue), black 10%);
  -webkit-transition: background 1s;
  transition: background 1s;
}
.btn.btn-dark-blue:hover,
.btn.btn-tertiary:hover {
  background: var(--titClientPrincipalBlue);
}
.btn.btn-create {
  border: 1px solid var(--titBlueHome);
  font-weight: bold;
  color: var(--titBlueHome);
  text-decoration: none;
}
.btn.btn-create:hover {
  background-color: var(--titBlueHome);
  color: white;
}
.btn.btn-outline-dark-blue {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--titClientPrincipalBlue), black 10%);
  color: color-mix(in srgb, var(--titClientPrincipalBlue), black 10%);
  -webkit-transition: border 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
}
.btn.btn-outline-dark-blue:hover {
  border: 1px solid var(--titClientPrincipalBlue);
}
.btn.btn-outline-white {
  background: transparent;
  border: 1px solid white;
  color: white;
  -webkit-transition: border 0.5s, color 0.5s;
  transition: border 0.5s, color 0.5s;
  box-shadow: none;
}
.btn.btn-outline-white:hover {
  border: 1px solid var(--titLighterGrey);
  color: var(--titLighterGrey);
}
.btn.btn-link {
  background: transparent;
  color: var(--titGrey1);
  box-shadow: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  padding: 0;
  margin: 0;
}
.btn.btn-link i {
  font-size: 19px;
  width: 25px;
}
.btn.btn-link i,
.btn.btn-link span {
  vertical-align: middle;
}
.btn.btn-link.btn-primary-color {
  color: var(--lightBlue) !important;
}
.btn.btn-link.btn-primary-color:hover {
  color: var(--titClientDarkBlue) !important;
  text-decoration: none;
  background-color: transparent !important;
}
.btn.btn-grey {
  background: var(--titGrey1);
  -webkit-transition: background 1s;
  transition: background 1s;
}
.btn.btn-grey:hover {
  background: color-mix(in srgb, var(--titGrey1), black 10%);
}
.btn.btn-facebook {
  background: var(--titFacebook) !important;
  color: white !important;
  -webkit-transition: background 1s;
  transition: background 1s;
  font-size: 17px;
  font-family: 'Roboto';
  text-transform: none;
  font-weight: bold;
}
.btn.btn-facebook p {
  color: white !important;
}
.btn.btn-facebook:hover {
  background: color-mix(in srgb, var(--titFacebook), black 20%) !important;
  color: white !important;
}
.btn.btn-facebook:hover p {
  color: white !important;
}
.btn.btn-filter {
  box-shadow: none !important;
  background-color: var(--titLighterGrey) !important;
  color: var(--textGray) !important;
  font-weight: 400 !important;
  border-radius: var(--btnBorderRadius);
  padding: 4px 24px !important;
  font-size: 12px !important;
  display: block;
  line-height: 22px !important;
}
.btn.btn-filter i {
  display: none !important;
}
.btn.btn-filter span {
  color: var(--textGray) !important;
}
.btn.btn-filter:hover {
  background-color: var(--titDarkGrey) !important;
}
.btn.btn-tiendanube {
  background: var(--titTiendanube) !important;
  color: white !important;
  -webkit-transition: background 1s;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  transition: background 1s;
  text-transform: none;
}
.btn.btn-tiendanube p {
  color: white !important;
}
.btn.btn-tiendanube:hover {
  background: color-mix(in srgb, var(--titTiendanube), black 20%) !important;
  color: white !important;
}
.btn.btn-tiendanube:hover p {
  color: white !important;
}
.btn.btn-mercadoshops {
  background: var(--titMercadoshops) !important;
  color: white !important;
  -webkit-transition: background 1s;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  transition: background 1s;
  text-transform: none;
}
.btn.btn-mercadoshops p {
  color: white !important;
}
.btn.btn-mercadoshops:hover {
  background: color-mix(in srgb, var(--titMercadoshops), black 20%) !important;
  color: white !important;
}
.btn.btn-mercadoshops:hover p {
  color: white !important;
}
.btn.btn-mp {
  background: var(--mpBlue);
  -webkit-transition: background 1s;
  transition: background 1s;
}
.btn.btn-mp:hover {
  background: color-mix(in srgb, var(--mpBlue), black 10%);
}
.btn.btn-google {
  background: var(--titGoogle) !important;
  color: #fff !important;
  text-align: center !important;
  transition: color 0.3s, background 0.5s;
  font-weight: bold;
  font-size: 17px;
  font-family: 'Roboto';
  text-transform: none;
  box-shadow: 0 2px 2px 0 rgba(var(--titGoogle), 80%), 0 3px 1px -2px rgba(var(--titGoogle), 80%), 0 1px 5px 0 rgba(var(--titGoogle), 80%);
}
.btn.btn-google p {
  color: white !important;
}
.btn.btn-google:hover {
  background: color-mix(in srgb, var(--titGoogle), black 20%) !important;
  color: #fff !important;
}
.btn.btn-google:hover p {
  color: white !important;
}
.btn.btn-redes {
  border-radius: 50px;
  padding: 7px 16px 7px 50px;
  position: relative;
  background: var(--titDarkGrey);
  color: white;
  text-align: center;
  margin-left: 0px;
  align-items: center;
  min-width: 150px;
  font-size: 12px;
  line-height: 12px;
  transition: color 0.3s, background 0.5s;
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .btn.btn-redes {
    margin-left: 0px;
    margin-bottom: 22px;
  }
}
.btn.btn-titan-lg {
  padding: 18px 28px;
}
@media screen and (min-width: 768px) {
  .btn.btn-titan-lg {
    padding: 17px 0;
  }
}
.btn.btn-programmed,
.btn.btn-sent,
.btn.btn-exclamation,
.btn.btn-cancelled {
  border: none;
  cursor: not-allowed;
}
.btn.btn-programmed span,
.btn.btn-sent span,
.btn.btn-exclamation span,
.btn.btn-cancelled span {
  display: inline-block;
  margin: -9px -16px -9px 16px;
  width: 38px;
  height: 38px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
}
.btn.btn-programmed span::after,
.btn.btn-sent span::after,
.btn.btn-exclamation span::after,
.btn.btn-cancelled span::after {
  content: " ";
  margin-top: 6px;
  margin-bottom: -6px;
  width: 24px;
  height: 24px;
  display: inline-block;
}
.btn.btn-programmed {
  background: var(--btnPink);
  color: #fff;
  transition: background 0.3s;
}
.btn.btn-programmed span {
  background: none;
  width: 28px;
  height: 28px;
}
.btn.btn-programmed span::after {
  margin-top: 0;
  margin-bottom: -9px;
  background: var(--textGray);
  mask: url('../../../images/icons/clock.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/clock.svg') no-repeat 50% 50%;
}
.btn.btn-sent {
  background: var(--btnDimmedGreen);
  color: #fff;
  transition: background 0.3s;
}
.btn.btn-sent span::after {
  background: white;
  mask: url('../../../images/icons/check.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/check.svg') no-repeat 50% 50%;
}
.btn.btn-cancelled {
  background: var(--titRed);
  color: #fff;
  transition: background 0.3s;
  margin-right: 0 !important;
}
.btn.btn-cancelled span {
  background: color-mix(in srgb, var(--titRed), white 20%);
}
.btn.btn-cancelled span::after {
  background: white;
  mask: url('../../../images/icons/block.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/block.svg') no-repeat 50% 50%;
}
.btn.btn-exclamation {
  background: var(--titYellow);
  color: #fff;
  transition: background 0.3s;
}
.btn.btn-exclamation span {
  background: var(--titLightYellow);
}
.btn.btn-exclamation span::after {
  background: white;
  mask: url('../../../images/icons/exclamation.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/exclamation.svg') no-repeat 50% 50%;
}
.btn.btn-success.btn-lighten {
  background: var(--btnLightGreen);
}
.btn.btn-success.btn-lighten:hover {
  border-left: none;
}
.btn.btn-warning.btn-lighten {
  background: #ffbb00;
}
.btn.btn-warning.btn-lighten:hover {
  border-left: none;
}
.btn.btn-small,
.btn.btn-sm {
  padding: 8px 14px;
}
.btn.btn-small .material-icons,
.btn.btn-sm .material-icons {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .btn.btn-small,
  .btn.btn-sm {
    padding: 4px;
  }
  .btn.btn-small.logged,
  .btn.btn-sm.logged {
    padding: 4px 8px;
  }
}
.btn.btn-xs {
  padding: 2px 4px;
  font-size: 10px;
  line-height: 1;
  border-radius: 3px;
}
.btn.btn-big {
  padding: 13px 28px;
  line-height: 1em;
  font-size: 18px;
}
.btn:hover {
  outline: none;
}
.btn-add {
  color: var(--titWhite);
  border-radius: var(--btnBorderRadius);
  background-color: var(--lightBlue);
  border: 1px solid var(--lightBlue);
  text-decoration: none;
  padding: 4px 24px;
  font-size: 12px;
  display: block;
  line-height: 22px;
}
.btn-add i {
  vertical-align: middle;
  max-width: 40px;
  display: inline !important;
  font-size: 18px !important;
  line-height: 22px;
}
.btn-add:hover {
  color: var(--lightBlue);
  background-color: var(--titWhite);
  border: 1px solid var(--lightBlue);
}
.btn-add:hover,
.btn-add:focus,
.btn-add:active {
  text-decoration: none;
  outline: none;
}
.btn-add.inline-block {
  display: inline-block;
}
a.text-secondary {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  color: var(--lightBlue);
}
a.text-secondary:hover {
  color: var(--titClientDarkBlue);
}
a.text-blue,
a .text-primary {
  color: var(--titClientDarkBlue);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a.text-blue:hover,
a .text-primary:hover {
  color: var(--lightBlue);
}
a.text-light-blue {
  color: var(--lightBlue);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a.text-light-blue:hover {
  color: color-mix(in srgb, var(--lightBlue), black 10%);
}
a.text-grey {
  color: var(--titGrey1);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a.text-grey:hover {
  color: color-mix(in srgb, var(--titGrey1), black 10%);
}
a.text-light-grey {
  color: var(--titDarkGrey);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
a.text-light-grey:hover {
  color: color-mix(in srgb, var(--titDarkGrey), black 10%);
}
a.text-green {
  color: var(--btnGreen);
  -webkit-transition: color 1s;
  transition: color 1s;
}
a.text-green:hover {
  color: color-mix(in srgb, var(--btnGreen), black 10%);
}
a.text-orange {
  color: var(--titOrange);
  -webkit-transition: color 1s;
  transition: color 1s;
}
a.text-orange:hover {
  color: color-mix(in srgb, var(--titOrange), black 10%);
}
a.text-red {
  color: var(--titRed);
  -webkit-transition: color 1s;
  transition: color 1s;
}
a.text-red:hover {
  color: color-mix(in srgb, var(--titRed), black 10%);
}
a.text-dark-blue,
a.text-tertiary {
  color: color-mix(in srgb, var(--titClientPrincipalBlue), black 10%);
  -webkit-transition: color 1s;
  transition: color 1s;
}
a.text-dark-blue:hover,
a.text-tertiary:hover {
  color: var(--titClientPrincipalBlue);
}
a.text-facebook {
  color: var(--titFacebook);
  -webkit-transition: color 1s;
  transition: color 1s;
}
a.text-facebook:hover {
  color: color-mix(in srgb, var(--titFacebook), black 10%);
}
a.text-tiendanube {
  color: var(--titTiendanube);
  -webkit-transition: color 1s;
  transition: color 1s;
}
a.text-tiendanube:hover {
  color: color-mix(in srgb, var(--titTiendanube), black 10%);
}
a.text-whatsapp {
  color: var(--titWhatsapp);
  -webkit-transition: color 1s;
  transition: color 1s;
}
a.text-whatsapp:hover {
  color: color-mix(in srgb, var(--titWhatsapp), black 10%);
}
@media (max-width: 1024px) {
  .visible-tb-landscape {
    display: inherit;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hidden-tb-landscape {
    display: none !important;
  }
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-t-12 {
  margin-top: 12px !important;
}
.status-circle {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  display: inline-block;
  margin-right: 3px;
}
.status-circle.success {
  background: var(--btnGreen);
}
.status-circle.blue {
  background: var(--titClientDarkBlue);
}
.status-circle.light-blue {
  background: var(--lightBlue);
}
.status-circle.grey {
  background: var(--titDarkGrey);
}
.status-circle.yellow {
  background: var(--titLightYellow);
}
.status-circle.orange {
  background: var(--titOrange);
}
.status-circle.red {
  background: var(--titRed);
}
.label.label-blue-tp {
  background: var(--titClientDarkBlue);
  color: var(--titWhite);
}
.label.label-blue-tp:hover {
  color: var(--titClientDarkBlue);
  background: var(--titWhite);
}
.label.label-ai {
  background: var(--titPurpleAi);
  color: var(--titWhite);
}
i.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
}
i.icon.icon-add {
  background: white;
  mask: url('../../../images/icons/add.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/add.svg') no-repeat 50% 50%;
}
i.icon.icon-ads {
  background: white;
  mask: url('../../../images/icons/ads.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/ads.svg') no-repeat 50% 50%;
}
i.icon.icon-brain {
  background: white;
  mask: url('../../../images/icons/brain.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/brain.svg') no-repeat 50% 50%;
}
i.icon.icon-social-ia {
  background: white;
  mask: url('../../../images/icons/social_ia.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/social_ia.svg') no-repeat 50% 50%;
}
i.icon.icon-arrow-down {
  background: url('../../../images/icons/arrow-down.svg');
  background-size: cover;
}
i.icon.icon-arrow-right {
  background: var(--titGrey1);
  mask: url('../../../images/icons/arrow-right.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/arrow-right.svg') no-repeat 50% 50%;
}
i.icon.icon-arrow-up {
  background: url('../../../images/icons/arrow-up.svg');
  background-size: cover;
}
i.icon.icon-bell {
  background: var(--titGrey1);
  mask: url('../../../images/icons/bell.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/bell.svg') no-repeat 50% 50%;
}
i.icon.icon-bubbles {
  background: white;
  mask: url('../../../images/icons/bubbles.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/bubbles.svg') no-repeat 50% 50%;
}
i.icon.icon-instagram {
  background: var(--titWhite);
  mask: url('../../../images/icons/instagram.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/instagram.svg') no-repeat 50% 50%;
}
i.icon.icon-recommended {
  background: white;
  mask: url('../../../images/icons/cards.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/cards.svg') no-repeat 50% 50%;
}
i.icon.icon-share {
  background: white;
  mask: url('../../../images/icons/share.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/share.svg') no-repeat 50% 50%;
}
i.icon.icon-chart {
  background: white;
  mask: url('../../../images/icons/chart.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/chart.svg') no-repeat 50% 50%;
}
i.icon.icon-chat {
  background: white;
  mask: url('../../../images/icons/chat.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/chat.svg') no-repeat 50% 50%;
}
i.icon.icon-check {
  background: white;
  mask: url('../../../images/icons/check.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/check.svg') no-repeat 50% 50%;
}
i.icon.icon-checked {
  background: white;
  mask: url('../../../images/icons/checked.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/checked.svg') no-repeat 50% 50%;
}
i.icon.icon-checked-gray {
  background: var(--titGrey1);
  mask: url('../../../images/icons/checked.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/checked.svg') no-repeat 50% 50%;
}
i.icon.icon-checkbox {
  background: var(--titGrey1);
  mask: url('../../../images/icons/checkbox.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/checkbox.svg') no-repeat 50% 50%;
}
i.icon.icon-checked-green {
  background: url('../../../images/icons/checked-green.svg');
  background-size: cover;
}
i.icon.icon-checkbox-checked {
  background: var(--lightBlue);
  mask: url('../../../images/icons/checkbox-checked.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/checkbox-checked.svg') no-repeat 50% 50%;
}
i.icon.icon-close {
  background: white;
  mask: url('../../../images/icons/close.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/close.svg') no-repeat 50% 50%;
}
i.icon.icon-copy {
  background: var(--titGrey1);
  mask: url('../../../images/icons/copy.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/copy.svg') no-repeat 50% 50%;
}
i.icon.icon-dashboard {
  background: white;
  mask: url('../../../images/icons/dashboard.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/dashboard.svg') no-repeat 50% 50%;
}
i.icon.icon-delete {
  background: white;
  mask: url('../../../images/icons/delete.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/delete.svg') no-repeat 50% 50%;
}
i.icon.icon-desktop {
  background: var(--lightBlue);
  mask: url('../../../images/icons/desktop.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/desktop.svg') no-repeat 50% 50%;
}
i.icon.icon-edit {
  background: var(--titGrey1);
  mask: url('../../../images/icons/edit.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/edit.svg') no-repeat 50% 50%;
}
i.icon.icon-eye-on {
  background: var(--titGrey1);
  mask: url('../../../images/icons/eye_on.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/eye_on.svg') no-repeat 50% 50%;
}
i.icon.icon-eye-off {
  background: var(--titGrey1);
  mask: url('../../../images/icons/eye_off.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/eye_off.svg') no-repeat 50% 50%;
}
i.icon.icon-support {
  background: var(--titGrey1);
  mask: url('../../../images/icons/support.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/support.svg') no-repeat 50% 50%;
}
i.icon.icon-trash-outline {
  background: var(--titGrey1);
  mask: url('../../../images/icons/trash_outline.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/trash_outline.svg') no-repeat 50% 50%;
}
i.icon.icon-error {
  background: white;
  mask: url('../../../images/icons/error.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/error.svg') no-repeat 50% 50%;
}
i.icon.icon-error.icon-red {
  background: var(--titRed);
}
i.icon.icon-lock {
  background: var(--darkBlue);
  mask: url('../../../images/icons/lock.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/lock.svg') no-repeat 50% 50%;
}
i.icon.icon-lock.icon-red {
  background: var(--titRed);
}
i.icon.icon-mail-outline {
  background: var(--darkBlue);
  mask: url('../../../images/icons/mail_outline.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/mail_outline.svg') no-repeat 50% 50%;
}
i.icon.icon-mail-outline.icon-red {
  background: var(--titRed);
}
i.icon.icon-arrow-forward {
  background: var(--titWhite);
  mask: url('../../../images/icons/arrow_forward.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/arrow_forward.svg') no-repeat 50% 50%;
}
i.icon.icon-arrow-forward.icon-red {
  background: var(--titRed);
}
i.icon.icon-exit {
  background: var(--titGrey1);
  mask: url('../../../images/icons/exit.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/exit.svg') no-repeat 50% 50%;
}
i.icon.icon-exit-popup {
  background: var(--titGrey1);
  mask: url('../../../images/icons/exit_popup.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/exit_popup.svg') no-repeat 50% 50%;
}
i.icon.icon-filter {
  background: white;
  mask: url('../../../images/icons/filter.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/filter.svg') no-repeat 50% 50%;
}
i.icon.icon-filtered {
  background: white;
  mask: url('../../../images/icons/filtered.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/filtered.svg') no-repeat 50% 50%;
}
i.icon.icon-flag {
  background: white;
  mask: url('../../../images/icons/flag.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/flag.svg') no-repeat 50% 50%;
}
i.icon.icon-help {
  background: white;
  mask: url('../../../images/icons/help.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/help.svg') no-repeat 50% 50%;
}
i.icon.icon-home {
  background: white;
  mask: url('../../../images/icons/home.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/home.svg') no-repeat 50% 50%;
}
i.icon.icon-help-2 {
  background: white;
  mask: url('../../../images/icons/help-2.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/help-2.svg') no-repeat 50% 50%;
}
i.icon.icon-history {
  background: white;
  mask: url('../../../images/icons/history.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/history.svg') no-repeat 50% 50%;
}
i.icon.icon-info {
  background: white;
  mask: url('../../../images/icons/info.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/info.svg') no-repeat 50% 50%;
}
i.icon.icon-linkpage {
  background: var(--titGrey1);
  mask: url('../../../images/icons/linkpage.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/linkpage.svg') no-repeat 50% 50%;
}
i.icon.icon-mobile {
  background: var(--lightBlue);
  mask: url('../../../images/icons/mobile.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/mobile.svg') no-repeat 50% 50%;
}
i.icon.icon-most-viewed {
  background: white;
  mask: url('../../../images/icons/most_viewed.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/most-viewed.svg') no-repeat 50% 50%;
}
i.icon.icon-carousel {
  background: white;
  mask: url('../../../images/icons/carousel.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/carousel.svg') no-repeat 50% 50%;
}
i.icon.icon-optin {
  background: white;
  mask: url('../../../images/icons/optin.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/optin.svg') no-repeat 50% 50%;
}
i.icon.icon-popup-banner {
  background: white;
  mask: url('../../../images/icons/banner_popup.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/banner_popup.svg') no-repeat 50% 50%;
}
i.icon.icon-promotions {
  background: white;
  mask: url('../../../images/icons/promotion.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/promotion.svg') no-repeat 50% 50%;
}
i.icon.icon-recommended {
  background: white;
  mask: url('../../../images/icons/recommended.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/recommended.svg') no-repeat 50% 50%;
}
i.icon.icon-roles {
  background: white;
  mask: url('../../../images/icons/roles.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/roles.svg') no-repeat 50% 50%;
}
i.icon.icon-roles-dark {
  background: var(--titGrey1);
  mask: url('../../../images/icons/roles.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/roles.svg') no-repeat 50% 50%;
}
i.icon.icon-search {
  background: white;
  mask: url('../../../images/icons/search.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/search.svg') no-repeat 50% 50%;
}
i.icon.icon-setting {
  background: white;
  mask: url('../../../images/icons/setting.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/setting.svg') no-repeat 50% 50%;
}
i.icon.icon-sleep {
  background: black;
  mask: url('../../../images/icons/sleep.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/sleep.svg') no-repeat 50% 50%;
}
i.icon.icon-star {
  background: var(--titGrey1);
  mask: url('../../../images/icons/star.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/star.svg') no-repeat 50% 50%;
}
i.icon.icon-send {
  background: var(--titGrey1);
  mask: url('../../../images/icons/send.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/send.svg') no-repeat 50% 50%;
}
i.icon.icon-tool {
  background: white;
  mask: url('../../../images/icons/tool.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/tool.svg') no-repeat 50% 50%;
}
i.icon.icon-users {
  background: white;
  mask: url('../../../images/icons/users.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/users.svg') no-repeat 50% 50%;
}
i.icon.icon-warning {
  background: white;
  mask: url('../../../images/icons/warning.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/warning.svg') no-repeat 50% 50%;
}
i.icon.icon-world {
  background: white;
  mask: url('../../../images/icons/world.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/world.svg') no-repeat 50% 50%;
}
i.icon.icon-promotions {
  background: white;
  mask: url('../../../images/icons/promotion.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/promotion.svg') no-repeat 50% 50%;
}
i.icon.icon-comment {
  background: white;
  mask: url('../../../images/icons/comment.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/comment.svg') no-repeat 50% 50%;
}
i.icon.icon-align-left {
  background: var(--titGrey1);
  mask: url('../../../images/icons/align-left.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/align-left.svg') no-repeat 50% 50%;
}
i.icon.icon-align-center {
  background: var(--titGrey1);
  mask: url('../../../images/icons/align-center.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/align-center.svg') no-repeat 50% 50%;
}
i.icon.icon-user {
  background: white;
  mask: url('../../../images/icons/user.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/user.svg') no-repeat 50% 50%;
}
i.icon.icon-ai {
  background: var(--titGrey1);
  mask: url('../../../images/icons/ai.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/ai.svg') no-repeat 50% 50%;
}
i.icon.icon-copilot {
  background: var(--titGrey1);
  mask: url('../../../images/icons/copilot.svg') no-repeat 50% 50%;
  -webkit-mask: url('../../../images/icons/copilot.svg') no-repeat 50% 50%;
}
.input-right {
  display: block;
}
.input-right label {
  padding-left: 0;
  font-size: 14px !important;
  display: block;
  position: relative;
  width: 100%;
  padding-right: 30px;
  font-weight: 400;
}
.input-right label input[type="checkbox"],
.input-right label input[type="radio"] {
  right: 0;
  margin-left: 0 !important;
  position: absolute !important;
}
.input-right label input[type="radio"] {
  height: 15px;
  width: 15px;
}
.trash-icon-outline::before {
  content: url('data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20xmlns%3Axlink%3D%22http%3A//www.w3.org/1999/xlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2020%2022.915%22%20style%3D%22enable-background%3Anew%200%200%2020%2022.915%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23606060%3B%22%20d%3D%22M9.99%2C22.912c-1.435%2C0-2.87%2C0.003-4.305-0.001c-1.799-0.004-2.904-1.114-3.018-2.907c-0.186-2.919-0.431-5.833-0.647-8.75C1.86%2C9.1%2C1.69%2C6.946%2C1.562%2C4.789c-0.028-0.47-0.2-0.594-0.626-0.559C0.587%2C4.258%2C0.233%2C4.236%2C0.065%2C3.838c-0.22-0.519%2C0.134-0.943%2C0.839-0.953c1.148-0.017%2C2.297-0.027%2C3.444%2C0.005c0.458%2C0.013%2C0.749-0.12%2C0.966-0.528C5.547%2C1.925%2C5.84%2C1.52%2C6.106%2C1.1c0.457-0.724%2C1.132-1.074%2C1.97-1.085c1.301-0.018%2C2.603-0.022%2C3.903%2C0.002c0.788%2C0.014%2C1.443%2C0.338%2C1.886%2C1.019c0.302%2C0.465%2C0.627%2C0.918%2C0.89%2C1.405c0.194%2C0.36%2C0.451%2C0.454%2C0.835%2C0.447c1.071-0.02%2C2.143-0.009%2C3.214-0.005c0.209%2C0.001%2C0.42%2C0.023%2C0.628%2C0.047c0.39%2C0.046%2C0.583%2C0.292%2C0.567%2C0.665c-0.015%2C0.368-0.22%2C0.589-0.609%2C0.636c-0.863%2C0.105-0.888%2C0.11-0.963%2C1c-0.14%2C1.657-0.246%2C3.318-0.369%2C4.977c-0.222%2C2.993-0.446%2C5.985-0.67%2C8.977c-0.036%2C0.475-0.029%2C0.959-0.121%2C1.424c-0.284%2C1.423-1.343%2C2.287-2.8%2C2.3C12.975%2C22.922%2C11.483%2C22.912%2C9.99%2C22.912z%20M10.052%2C4.236c-2.163%2C0-4.327%2C0.02-6.49-0.013c-0.581-0.009-0.71%2C0.184-0.664%2C0.726c0.171%2C2.001%2C0.303%2C4.005%2C0.452%2C6.008c0.225%2C3.013%2C0.459%2C6.026%2C0.675%2C9.04c0.068%2C0.949%2C0.601%2C1.561%2C1.554%2C1.569c2.948%2C0.024%2C5.896%2C0.026%2C8.844%2C0c0.985-0.009%2C1.524-0.611%2C1.58-1.607c0.023-0.401%2C0.05-0.802%2C0.079-1.202c0.166-2.308%2C0.331-4.616%2C0.501-6.924c0.17-2.308%2C0.324-4.618%2C0.532-6.923c0.051-0.561-0.1-0.689-0.632-0.683C14.34%2C4.25%2C12.196%2C4.236%2C10.052%2C4.236z%20M13.323%2C2.847c-0.536-1.323-0.724-1.454-1.996-1.454c-0.955%2C0-1.91%2C0-2.865%2C0c-0.983%2C0-1.505%2C0.439-1.704%2C1.454C8.93%2C2.847%2C11.097%2C2.847%2C13.323%2C2.847z%22/%3E%3C/svg%3E');
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
}
.trash-icon-outline.in-table::before {
  vertical-align: top;
  width: 14px;
  height: 14px;
}
/** SELECT **/
.form-group.titan-select {
  max-width: 100%;
}
.form-group.titan-select select.form-control {
  width: auto !important;
  max-width: 100%;
  box-shadow: none;
  border: none;
  height: auto;
  font-size: 12px;
  border-bottom: 1px solid var(--titDarkGrey);
  -webkit-appearance: button;
  border-radius: 0;
  padding: 4px 20px 4px 0 !important;
  background: url("../../../images/drop-on.png");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right center;
  color: var(--titGrey1);
}
.form-group.titan-select select.form-control:focus,
.form-group.titan-select select.form-control:active {
  border-bottom: 1px solid var(--lightBlue);
  outline: none;
}
.form-group.titan-select select.form-control option {
  color: var(--titGrey1);
}
.form-group.titan-select select.form-control[disabled] {
  border-color: var(--titGrey1);
}
.form-group.titan-select.select-right {
  width: 100%;
  display: flex;
}
.form-group.titan-select.select-right label {
  flex: 1 1 auto;
}
.form-group.titan-select.select-right select {
  flex: 0 0 auto;
}
.form-group.titan-select.full-width select.form-control {
  width: 100% !important;
}
td .form-group.titan-select {
  margin-bottom: 0;
}
.form-group .form-control {
  width: 100%;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid var(--titDarkGrey);
  border-radius: 0;
  background-color: transparent;
  box-shadow: none;
  padding: 4px 2px;
  height: auto !important;
  font-size: 12px;
  color: var(--titGrey1);
}
.form-group .form-control:active,
.form-group .form-control:focus {
  outline: none;
}
.form-group .form-control:hover,
.form-group .form-control :active {
  border-color: var(--lightBlue);
}
.form-group .form-control[disabled],
.form-group .form-control[readonly],
.form-group fieldset[disabled] .form-control {
  width: 100%;
  max-width: 100%;
  border: none;
  border-bottom: 1px solid var(--titDarkGrey);
  -webkit-appearance: button;
  border-radius: 0;
  background-color: transparent !important;
  box-shadow: none;
  padding: 4px 0;
  height: auto !important;
  font-size: 12px;
  color: var(--titGrey1);
}
.form-group.has-success .form-control {
  box-shadow: none;
}
.radio-titan .radio-group .radio-item {
  margin: 0 12px 0 0;
  padding: 0;
  font-size: 12px;
  display: inline-block;
}
.radio-titan .radio-group .radio-item:last-child {
  margin-right: 0;
}
.radio-titan .radio-group .radio-item .radio {
  padding: 0;
  border: 1px solid var(--titDarkGrey);
  color: var(--textGray);
  border-radius: 16px;
  line-height: 1.2em;
}
.radio-titan .radio-group .radio-item .radio label {
  padding: 4px 24px;
  border-radius: 4px;
  color: var(--textGray);
  font-size: 12px;
  font-style: normal;
  line-height: 21px;
}
.radio-titan .radio-group .radio-item .radio label input[type=radio] {
  display: none;
}
.radio-titan .radio-group .radio-item .radio.checked-radio {
  border: 1px solid var(--lightBlue);
}
.radio-titan .radio-group .radio-item .radio.checked-radio label {
  font-weight: 600;
  color: var(--lightBlue);
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 10px;
  transform: translateY(5px);
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--sliderBackground);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: -5px;
  background-color: var(--titRed);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.switch .slider.round {
  border-radius: 34px;
}
.switch .slider.round:before {
  border-radius: 50%;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: var(--sliderBackground);
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
  background-color: var(--lightBlue);
}
.switch input:focus + .slider {
  box-shadow: 0 0 1px var(--lightBlue);
}
#slider-output {
  display: inline-block;
  margin-left: 15px;
  font-weight: 600;
}
#slider-output.opt-in-form {
  margin-left: 0;
  margin-right: 15px;
}
.site-index .animated,
.site-index .animated-load {
  visibility: hidden;
}
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }
  50% {
    transform: translateY(-8%);
  }
  65% {
    transform: translateY(4%);
  }
  80% {
    transform: translateY(-4%);
  }
  95% {
    transform: translateY(2%);
  }
  100% {
    transform: translateY(0%);
  }
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }
  50% {
    -webkit-transform: translateY(-8%);
  }
  65% {
    -webkit-transform: translateY(4%);
  }
  80% {
    -webkit-transform: translateY(-4%);
  }
  95% {
    -webkit-transform: translateY(2%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
  -webkit-animation-name: slideInLeft;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideInLeft {
  0% {
    transform: translateX(100%);
  }
  50% {
    transform: translateX(-8%);
  }
  65% {
    transform: translateX(4%);
  }
  80% {
    transform: translateX(-4%);
  }
  95% {
    transform: translateX(2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(100%);
  }
  50% {
    -webkit-transform: translateX(-8%);
  }
  65% {
    -webkit-transform: translateX(4%);
  }
  80% {
    -webkit-transform: translateX(-4%);
  }
  95% {
    -webkit-transform: translateX(2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
.slideInRight {
  animation-name: slideInRight;
  -webkit-animation-name: slideInRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}
@keyframes slideInRight {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(8%);
  }
  65% {
    transform: translateX(-4%);
  }
  80% {
    transform: translateX(4%);
  }
  95% {
    transform: translateX(-2%);
  }
  100% {
    transform: translateX(0%);
  }
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(-100%);
  }
  50% {
    -webkit-transform: translateX(8%);
  }
  65% {
    -webkit-transform: translateX(-4%);
  }
  80% {
    -webkit-transform: translateX(4%);
  }
  95% {
    -webkit-transform: translateX(-2%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
:root {
  --titFacebook: #3b5998;
  --titTiendanube: #4dbecf;
  --titMercadoshops: #e82e8a;
  --titWhatsapp: #25d366;
  --waHeaderGreen: #075e54;
  --waChatBackground: #e5ddd5;
  --waBubbleGreen: #dcf8c6;
  --waTextPrimary: #111b21;
  --waTextSecondary: #667781;
  --waTeal: #128c7e;
  --waLightBackground: #f0f2f5;
  --waAvatarGrey: #dfe5e7;
  --waIconGrey: #aebac1;
  --waBlueCheck: #53bdeb;
  --mpBlue: #009ee3;
  --menuBackground: #f1f5f8;
  --blueBackgroundMenu: #003C80;
  --titWhite: #FFFFFF;
  --titWhiteGrey: #F5F5F5;
  --greenDarkness: #239619;
  --lightBlue: #0077ff;
  --titGoogle: #dd4b39;
  --greyBody: #3C4858;
  --focusGrey: #f0f0f0;
  --focusBlue: #3466cc;
  --titlePlan: #07132d;
  --darkerBlue: #00244D;
  --lightBlueSelect: #E6F1FF;
  --lightBlueBorder: #80BBFF;
  --darkBlue: #344256;
  --darkerGrey: #65758B;
  --veryLightBlue: #89b9ff;
  --sliderBackground: #C9C9C9;
  --titPrimary: #212121;
  --titOrange: #FF7043;
  --titYellow: #ffbb00;
  --titLightYellow: #ffd569;
  --titRed: #FF3633;
  --titGrey: #4D4D4D;
  --titBlueGrey: #333333;
  --titDiego: #EEEEEE;
  --titLightBlueGrey: #78909C;
  --textBlack: #000000;
  --textGray: #404040;
  --btnGreen: #0F9D58;
  --btnLightGreen: #49E69A;
  --btnPink: #ff7878;
  --errorRed: #a94442;
  --greenOK: #00ab17;
  --titGrey1: #707070;
  --titDarkGrey: #a8a8a8;
  --lighterIntGrey: #dbdbdb;
  --titInterGrey: #e4e4e4;
  --titLighterGrey: #EFF4F4;
  --greyPlans: #f4f4f4;
  --greyBlue: #64748B;
  --titClientPrincipalBlue: #001B65;
  --titClientDarkBlue: #0049B2;
  --titClientLighterBlue: #64B5F6;
  --newWarningAlertBackground: #FFE5D6;
  --newWarningAlertBorder: #FF9C85;
  --optionActiveLightBlueBackground: #def0ff;
  --mostViewedRed: #FF1400;
  --titLightBlueHome: #1074ff;
  --titBlueHome: #3f86fd;
  --titBlueHomeLigher: #0E204D;
  --titBlueHomeDarker: #050E1F;
  --grey900: #0F172A;
  --grayBlurred: #CBD5E1;
  --titPinkHomeLighter: #FF78CE;
  --titPinkHomeDarkerGradientStart: #FF7882;
  --titLightGreyHome: #808080;
  --titGreyHomeLighter: #848484;
  --titNewGrey: #334155;
  --progressBarBackground: #E5F1FF;
  --modalBorder: #E2E8F0;
  --alertSuccessBackground: #D7F7D4;
  --alertSuccessColor: #0A2C07;
  --alertSuccessBorder: #9AED92;
  --warningBackground: #FFF9E5;
  --alertWarningColor: #332800;
  --alertWarningBorder: #FFE380;
  --alertDangerColor: #7B0A30;
  --alertDangerBorder: #FF9B85;
  --alertDarkColor: #B71A34;
  --solutionsBorder: #E1E7EF;
  --btnDimmedGreen: #B7F2A6;
  --previewBackground: #F0EFEF;
  --disabledRed: #DB5D5D;
  --T2-neutral-900: #0F1729;
  --T2-neutral-700: #374151;
  --T2-neutral-600: #4B5563;
  --T2-neutral-500: #6B7280;
  --titPurpleAi: #8e44ad;
  --btnBorderRadius: 8px;
}
body {
  background-color: white;
}
body *:focus {
  outline: none !important;
}
.below-the-fold {
  content-visibility: auto;
}
.container-index {
  padding: 0;
}
.modal-open {
  overflow: auto;
  padding-right: 0 !important;
}
.increase-sales {
  color: var(--titLightBlueHome);
}
.btn-tp {
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--titLightBlueHome);
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 22px 45px;
  transition: 0.3s;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .btn-tp {
    font-size: 18px;
    padding: 19px 0;
    text-align: center;
  }
}
@media screen and (min-width: 1360px) {
  .btn-tp {
    font-size: 2rem;
  }
}
.btn-tp:hover {
  background-color: white;
  color: var(--titBlueHome);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .btn-block-only-xs {
    display: block;
  }
}
.mercado-shops-solutions-container {
  background: var(--titWhite) !important;
}
.mercado-shops-solutions-container .section-title.solutions {
  color: var(--lightBlue) !important;
}
.mercado-shops-solutions-container .container-title-notification.title {
  padding: 0;
}
.mercado-shops-solutions-container .lists-container {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media screen and (min-width: 1360px) {
  .mercado-shops-solutions-container .lists-container {
    flex-direction: row;
    font-size: 5rem;
    margin-bottom: 80px;
  }
}
.mercado-shops-solutions-container .lists-container .solutions-list-container {
  font-family: 'Roboto', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  cursor: pointer;
}
.mercado-shops-solutions-container .lists-container .solutions-list-container .solution-card {
  border: 1px solid #E1E7EF;
  border-radius: 8px;
  padding: 16px 24px;
  width: 80%;
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 1360px) {
  .mercado-shops-solutions-container .lists-container .solutions-list-container .solution-card {
    width: 100%;
  }
}
.mercado-shops-solutions-container .lists-container .solutions-list-container .solution-card .icon-container img {
  height: 22px;
}
.mercado-shops-solutions-container .lists-container .solutions-list-container .solution-card .solution-title {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: var(--lightBlue);
}
@media screen and (min-width: 1360px) {
  .mercado-shops-solutions-container .lists-container .solutions-list-container .solution-card .solution-title {
    font-size: 20px;
    line-height: 24px;
  }
}
.mercado-shops-solutions-container .lists-container .solutions-list-container .solution-card .solution-description {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #344256;
}
@media screen and (min-width: 1400px) {
  .mercado-shops-solutions-container .lists-container .solutions-list-container .solution-card .solution-description {
    font-size: 16px;
    line-height: 19px;
  }
}
.gradient-bg {
  background: var(--primary-gradient, linear-gradient(180deg, #CCE4FF 0%, #FFF 100%));
}
.site-home .cover-picture {
  min-height: calc(100vh - 65px);
  margin-top: 65px;
}
@media screen and (min-width: 768px) {
  .site-home .cover-picture {
    min-height: calc(100vh - 75px);
    margin-top: 75px;
  }
}
.site-home .cover-picture .container-free {
  display: flex;
  align-content: center;
  flex-direction: column;
  min-height: calc(100vh - 65px);
  margin-top: 65px;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .site-home .cover-picture .container-free {
    justify-content: center;
    min-height: calc(100vh - 75px);
    margin-top: 75px;
  }
}
.site-home .cover-picture video {
  max-width: 100%;
}
.site-home .cover-picture .footer-cover {
  position: absolute;
  width: 100%;
  bottom: 20px;
}
@media screen and (min-width: 768px) {
  .site-home .cover-picture .footer-cover {
    bottom: 50px;
  }
}
.site-home .cover-picture .footer-cover img {
  max-width: 60px;
}
@media screen and (min-width: 768px) {
  .site-home .cover-picture .footer-cover img {
    max-width: 80px;
  }
}
.site-home .cover-picture .texts {
  text-align: center;
  margin-bottom: 40px;
}
.site-home .cover-picture .texts h1 {
  color: var(--titWhite);
  font-size: 25px;
  font-weight: bold;
  margin: 0 auto;
  width: 67%;
}
@media screen and (min-width: 767px) {
  .site-home .cover-picture .texts h1 {
    font-size: 49px;
    line-height: 1.2em;
  }
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .site-home .cover-picture .texts h1 {
    width: 90%;
    font-size: 35px;
    margin: 0 auto;
  }
}
.site-home .cover-picture .texts h4 {
  color: var(--titWhite);
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .site-home .cover-picture .texts {
    text-align: center;
    margin-bottom: 141px;
  }
}
.site-home .cover-picture .circle {
  top: -150px;
  position: relative;
  z-index: 2;
  bottom: -1px;
  overflow: hidden;
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .site-home .cover-picture .circle img {
    position: relative;
    max-width: 150%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.site-home .cover-picture .cover-btn-container {
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: 100px;
}
@media screen and (min-width: 768px) {
  .site-home .cover-picture .cover-btn-container {
    position: absolute;
    width: 100%;
    bottom: 200px;
  }
}
.site-home .cover-picture .btn:hover {
  color: #5593e0;
}
.site-home .cover-picture .btn-cover {
  background-color: white;
  color: #1484e6;
  padding: 18px 28px;
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  font-family: 'Roboto';
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  letter-spacing: normal;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  font-size: 18px;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .site-home .cover-picture .btn-cover {
    width: auto;
    padding: 18px 70px;
    font-size: 2rem;
    transition: 0.3s;
  }
}
.site-home .cover-picture .btn-cover:hover {
  background-color: var(--titBlueHome);
  box-shadow: none;
  color: white;
}
.site-home .pink-background {
  position: relative;
  background-image: linear-gradient(to top, var(--titPinkHomeLighter), var(--titPinkHomeDarkerGradientStart));
}
.site-home .about {
  padding: 60px 0 20px;
}
@media screen and (min-width: 769px) {
  .site-home .about {
    padding: 40px 0;
  }
}
@media screen and (min-width: 1400px) {
  .site-home .about {
    padding: 160px 0 40px;
  }
}
.site-home .about .button-arrow {
  margin-bottom: 20px;
}
@media screen and (max-width: 769px) {
  .site-home .about #about {
    padding-top: 80px;
  }
}
.site-home .about .illus {
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1025px) {
  .site-home .about .illus {
    height: 500px;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .about .illus {
    margin: 0;
    max-height: 700px;
    float: right;
  }
}
.site-home .about .texto {
  padding-top: 20px;
  text-align: center;
  color: var(--titWhiteGrey);
  font-weight: 300;
}
@media screen and (max-width: 767px) {
  .site-home .about .texto {
    padding: 20px 30px 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1025px) {
  .site-home .about .texto {
    padding-top: 150px;
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .site-home .about .texto {
    padding-top: 200px;
    text-align: left;
  }
}
.site-home .about .texto h2 {
  margin: 0;
}
.site-home .about .texto h2.bold {
  font-weight: 600;
}
.site-home .about .texto p {
  margin: 40px 0 0;
}
.site-home .notification-push {
  min-height: calc(100vh - 125px);
  background-color: white;
  padding: 0 40px;
  position: relative;
}
.site-home .notification-push.not-full-height {
  min-height: 40vh;
}
.site-home .notification-push.first-notification {
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push.first-notification {
    min-height: initial;
  }
}
@media screen and (max-width: 767px) {
  .site-home .notification-push {
    padding: 0 17px;
    display: flex;
    align-items: center;
  }
  .site-home .notification-push.first-margin-top {
    margin-top: 30px;
  }
  .site-home .notification-push.last-margin-bottom {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .site-home .notification-push {
    min-height: calc(100vh - 75px);
  }
  .site-home .notification-push#home-notification-section {
    background: url("/images/home/img_notification_effect.png");
    background-position: left center;
    background-repeat: no-repeat;
  }
  .site-home .notification-push#home-chat-section {
    background-image: url("/images/home/img_chat_effect.png");
    background-position: right center;
    background-repeat: no-repeat;
  }
  .site-home .notification-push#home-popup-section {
    background: url("/images/home/img_exit_popup_effect.png");
    background-position: left center;
    background-repeat: no-repeat;
  }
  .site-home .notification-push#home-banner-section {
    background: url("/images/home/img_banner_effect.png");
    background-position: right center;
    background-repeat: no-repeat;
  }
  .site-home .notification-push#home-linkpage-section {
    background: url("/images/home/img_notification_effect.png");
    background-position: left center;
    background-repeat: no-repeat;
  }
  .site-home .notification-push#home-history-section {
    background: url("/images/home/img_history_effect.png");
    background-position: right center;
    background-repeat: no-repeat;
  }
  .site-home .notification-push#home-most-viewed-section {
    background: url("/images/home/img_most_viewed_effect.png");
    background-position: left center;
    background-repeat: no-repeat;
  }
}
.site-home .notification-push .footer-landings {
  position: absolute;
  width: calc(100% - 80px);
  text-align: center;
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push .footer-landings {
    width: calc(100% - 25px);
    position: absolute;
  }
}
@media screen and (max-width: 767px) and (min-height: 640px) {
  .site-home .notification-push .footer-landings {
    bottom: 20px;
  }
}
@media screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-width: 768px) and (min-resolution: 144dpi) {
  .site-home .notification-push .footer-landings {
    bottom: 100px;
  }
}
@media screen and (min-width: 1920px) {
  .site-home .notification-push .footer-landings {
    bottom: 80px;
  }
}
.site-home .notification-push .container-notification-desktop {
  display: flex;
  align-items: center;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push .container-notification-desktop {
    height: auto;
    min-height: calc(100vh - 75px);
  }
}
.site-home .notification-push .container-notification-desktop .image-notification-mobile-desktop {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push .container-notification-desktop .image-notification-mobile-desktop {
    width: auto;
    margin: auto;
  }
}
.site-home .notification-push .container-notification-desktop .index-row {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push .container-notification-desktop .index-row {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .site-home .notification-push .container-notification-desktop .index-row .notification-mobile-desktop {
    justify-content: flex-end;
  }
}
@media screen and (min-width: 768px) {
  .site-home .notification-push .container-notification-desktop .index-row .notification-mobile-desktop.even-container {
    justify-content: flex-start;
  }
  .site-home .notification-push .container-notification-desktop .index-row .notification-mobile-desktop.even-container .container-notification-mobile-desktop {
    margin-left: 30px;
  }
}
.site-home .notification-push .container-notification-desktop .internal-row {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push .container-notification-desktop .internal-row {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 768px) {
}
.site-home .notification-push .container-notification-desktop .color-type-notification {
  position: absolute;
  left: 0;
}
.site-home .notification-push .container-notification-desktop .color-type-chat {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop {
    display: flex;
    align-items: center;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop {
    padding: 0 9px;
    text-align: center;
  }
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .title-index-xs {
  color: var(--titGreyHomeLighter);
}
@media screen and (max-width: 767px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .subtitle-notification {
    text-align: center ;
  }
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .title-blue {
  color: var(--titBlueHome);
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .title-pink {
  color: var(--btnPink);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .title-pink {
    text-align: center;
  }
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .subtitle-notification,
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop h4 {
  font-family: 'Roboto';
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: left;
  color: var(--titGreyHomeLighter);
}
@media screen and (max-width: 767px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .subtitle-notification,
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop h4 {
    text-align: center;
    font-size: 14px;
  }
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .subtitle-notification,
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop h4 {
    width: 100%;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .subtitle-notification,
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop h4 {
    font-size: 2rem;
    margin: 20px 0;
  }
}
@media screen and (min-width: 1400px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .subtitle-notification,
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop h4 {
    font-size: 3rem;
  }
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .btn-ver-mas {
  font-family: 'Roboto';
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.09;
  letter-spacing: normal;
  color: var(--titBlueHome);
  width: 53%;
  text-align: left;
  text-decoration: none;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .btn-ver-mas {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
  }
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .container-notification-mobile-desktop .btn-ver-mas:hover {
  text-decoration: none;
  font-weight: bold;
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .start-free-button {
  width: 68%;
  height: 55px;
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: var(--titLightBlueHome);
  margin-right: 88px;
  margin-top: 15px;
  margin-bottom: 10px;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .start-free-button {
    text-align: center;
    width: 113%;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    height: 52px;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .start-free-button {
    height: 64px;
    font-size: 2rem;
  }
}
@media screen and (min-width: 1400px) {
  .site-home .notification-push .container-notification-desktop .notification-mobile-desktop .start-free-button {
    font-size: 3rem;
  }
}
.site-home .notification-push .container-notification-desktop .notification-mobile-desktop .start-free-button:hover {
  background-color: white;
  color: var(--titBlueHome);
}
.site-home .notification-push.first-notification {
  position: relative;
}
@media screen and (min-width: 1920px) {
  .site-home .notification-push.first-notification {
    min-height: calc(100vh - 45px);
  }
}
@media screen and (min-width: 768px) {
  .site-home .notification-push.first-notification .container-notification-desktop {
    margin-top: 75px;
  }
}
@media screen and (min-width: 1920px) {
  .site-home .notification-push.first-notification .container-notification-desktop {
    margin-top: 45px;
  }
}
.site-home .notification-push.first-notification .container-notification-desktop .image-notification-mobile-desktop {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push.first-notification .container-notification-desktop .image-notification-mobile-desktop {
    width: auto;
    margin: auto;
  }
}
.site-home .notification-push#client-reviews,
.site-home .notification-push#brands {
  padding: 96px 120px 0;
  color: var(--titGreyHomeLighter);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push#client-reviews,
  .site-home .notification-push#brands {
    padding: 40px 17px 70px;
    display: block;
  }
  .site-home .notification-push#client-reviews#client-reviews,
  .site-home .notification-push#brands#client-reviews {
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 52px;
    min-height: auto;
  }
}
.site-home .notification-push#client-reviews .title-notification,
.site-home .notification-push#brands .title-notification {
  text-align: center;
  margin-bottom: 40px;
}
.site-home .notification-push#client-reviews .integration-title,
.site-home .notification-push#brands .integration-title {
  margin-top: 90px;
  margin-bottom: 45px;
  font-weight: 600;
  color: var(--darkBlue);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-style: normal;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push#client-reviews .integration-title,
  .site-home .notification-push#brands .integration-title {
    font-style: normal;
    font-weight: 600;
    margin-top: 26px;
  }
}
.site-home .notification-push#client-reviews .integration-title.title-blue,
.site-home .notification-push#brands .integration-title.title-blue {
  color: var(--lightBlue);
}
@media screen and (min-width: 1200px) {
  .site-home .notification-push#client-reviews .integration-title.big-text,
  .site-home .notification-push#brands .integration-title.big-text {
    font-size: 45px;
  }
}
.site-home .notification-push#client-reviews .integration-subtitle,
.site-home .notification-push#brands .integration-subtitle {
  color: var(--darkBlue);
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 40px;
}
@media screen and (min-width: 1200px) {
  .site-home .notification-push#client-reviews .integration-subtitle,
  .site-home .notification-push#brands .integration-subtitle {
    font-size: 24px;
  }
}
.site-home .notification-push#client-reviews .integrations .brand-container,
.site-home .notification-push#brands .integrations .brand-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push#client-reviews .integrations .brand-container,
  .site-home .notification-push#brands .integrations .brand-container {
    margin-bottom: 20px;
    row-gap: 20px;
  }
}
.site-home .notification-push#client-reviews .integrations .brand-container a,
.site-home .notification-push#brands .integrations .brand-container a {
  max-width: 170px;
}
.site-home .notification-push#client-reviews .integrations .brand-container a img,
.site-home .notification-push#brands .integrations .brand-container a img {
  max-width: 90%;
  height: auto;
}
@media screen and (min-width: 1200px) {
  .site-home .notification-push#client-reviews .integrations .brand-container,
  .site-home .notification-push#brands .integrations .brand-container {
    display: inherit;
  }
  .site-home .notification-push#client-reviews .integrations .brand-container a,
  .site-home .notification-push#brands .integrations .brand-container a {
    max-width: initial;
  }
}
.site-home .notification-push#client-reviews .integrations img,
.site-home .notification-push#brands .integrations img {
  margin: 0 20px;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push#client-reviews .integrations img,
  .site-home .notification-push#brands .integrations img {
    margin: 0;
  }
}
.site-home .notification-push .title-notification,
.site-home .notification-push h1 {
  color: var(--blueBackgroundMenu);
  font-family: 'Poppins', sans-serif;
  font-stretch: normal;
  font-style: normal;
  font-weight: 500;
  letter-spacing: normal;
  line-height: normal;
  min-width: 100%;
  margin-top: 32px;
  text-align: left;
  font-size: 24px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push .title-notification,
  .site-home .notification-push h1 {
    font-size: 5rem;
    margin-bottom: 16px;
    line-height: 1.11;
    text-align: left;
    margin-top: 0;
  }
}
@media screen and (min-width: 1025px) {
  .site-home .notification-push .title-notification,
  .site-home .notification-push h1 {
    min-width: 438px;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .notification-push .title-notification,
  .site-home .notification-push h1 {
    font-size: 4rem;
    min-width: 500px;
  }
}
@media screen and (min-width: 1400px) {
  .site-home .notification-push .title-notification,
  .site-home .notification-push h1 {
    font-size: 5rem;
  }
}
.site-home .history {
  height: calc(100vh - 75px);
  box-shadow: 0 20px 80px 0 rgba(0, 0, 0, 0.16);
  background-image: linear-gradient(to bottom, #ff7878, #ff76ce);
  min-height: 700px;
  position: relative;
}
@media screen and (min-width: 1025px) {
  .site-home .history {
    min-height: 750px;
  }
}
.site-home .history .footer-landings {
  position: fixed;
  width: 100%;
  text-align: center;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .site-home .history .footer-landings {
    width: calc(100% - 34px);
  }
}
@media screen and (max-width: 1024px) and (min-height: 640px) {
  .site-home .history .footer-landings {
    bottom: 20px;
  }
}
@media screen and (min-width: 1025px), screen and (min-width: 768px) and (-webkit-min-device-pixel-ratio: 1.5), screen and (min-width: 768px) and (min-resolution: 144dpi) {
  .site-home .history .footer-landings {
    bottom: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .site-home .history .footer-landings {
    bottom: 80px;
  }
}
.site-home .history .container-notification-desktop {
  display: flex;
  justify-content: space-around;
  align-content: center;
  flex-direction: row;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .site-home .history .container-notification-desktop {
    flex-direction: column;
  }
}
.site-home .history .container-notification-desktop .notification-mobile-desktop {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .site-home .history .container-notification-desktop .notification-mobile-desktop {
    width: 100%;
    margin-bottom: -184px;
  }
}
.site-home .history .container-notification-desktop .notification-mobile-desktop h1 {
  width: 58%;
  font-family: 'Roboto';
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .site-home .history .container-notification-desktop .notification-mobile-desktop h1 {
    width: 100%;
    text-align: center;
    font-size: 23px;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .history .container-notification-desktop .notification-mobile-desktop h1 {
    width: 61%;
    font-size: 5rem;
  }
}
.site-home .history .container-notification-desktop .notification-mobile-desktop .subtitle-notification,
.site-home .history .container-notification-desktop .notification-mobile-desktop h4 {
  width: 57%;
  font-family: 'Roboto';
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.38;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .site-home .history .container-notification-desktop .notification-mobile-desktop .subtitle-notification,
  .site-home .history .container-notification-desktop .notification-mobile-desktop h4 {
    width: 88%;
    text-align: center;
    font-size: 14px;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .history .container-notification-desktop .notification-mobile-desktop .subtitle-notification,
  .site-home .history .container-notification-desktop .notification-mobile-desktop h4 {
    font-size: 2rem;
    width: 60%;
  }
}
.site-home .history .container-notification-desktop .image-notification-mobile-desktop {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .site-home .history .container-notification-desktop .image-notification-mobile-desktop {
    height: 53%;
    width: 100%;
  }
}
.site-home .history .container-notification-desktop .image-notification-mobile-desktop .container-history {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: calc(100vh - 75px);
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .site-home .history .container-notification-desktop .image-notification-mobile-desktop .container-history {
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .site-home .history .container-notification-desktop .image-notification-mobile-desktop .container-history {
    margin-right: 60px;
  }
}
.site-home .history .container-notification-desktop .image-notification-mobile-desktop .container-history .history-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-home .history .container-notification-desktop .image-notification-mobile-desktop .container-history .history-cards img {
  height: 80%;
}
@media screen and (max-width: 1024px) {
  .site-home .history .container-notification-desktop .image-notification-mobile-desktop .container-history .history-cards img {
    max-height: 318px;
    margin-right: -18px;
  }
}
.site-home .notification-push-types {
  min-height: 100vh;
  background-color: var(--titLightBlueHome);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 178px 0;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push-types {
    padding: 50px 0 138px;
  }
}
.site-home .notification-push-types.not-full-height {
  min-height: 40vh;
}
.site-home .notification-push-types .container-title-notification {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push-types .container-title-notification {
    padding: 75px 17px 0 !important;
  }
}
.site-home .notification-push-types .container-title-notification.title {
  padding-bottom: 30px;
}
.site-home .notification-push-types .container-title-notification.action-button {
  display: inline;
  padding-top: 30px;
}
.site-home .notification-push-types .container-title-notification .section-title,
.site-home .notification-push-types .container-title-notification h1 {
  margin: 0;
  width: 100%;
  height: 45%;
  font-family: 'Open Sans', sans-serif;
  font-size: 43px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.11;
  letter-spacing: normal;
  text-align: center;
  color: var(--titWhite);
  background-color: transparent;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push-types .container-title-notification .section-title,
  .site-home .notification-push-types .container-title-notification h1 {
    width: 100%;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    /* 133.333% */
  }
}
.site-home .notification-push-types .container-title-notification .section-title.expand-business-title,
.site-home .notification-push-types .container-title-notification h1.expand-business-title {
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  font-size: 24px;
  background-color: transparent;
}
@media screen and (min-width: 1200px) {
  .site-home .notification-push-types .container-title-notification .section-title.expand-business-title,
  .site-home .notification-push-types .container-title-notification h1.expand-business-title {
    font-size: 32px;
  }
}
.site-home .notification-push-types .container-title-notification .start-now-button {
  padding: 20px 70px;
  border-radius: 8px;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  background-color: #ffffff;
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: 3.09;
  letter-spacing: normal;
  text-align: center;
  color: var(--titLightBlueHome);
  margin: 40px 0 100px;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push-types .container-title-notification .start-now-button {
    width: 91%;
    font-size: 18px;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .notification-push-types .container-title-notification .start-now-button {
    font-size: 2rem;
    padding: 20px 70px;
  }
}
.site-home .notification-push-types .container-title-notification .start-now-button:hover {
  background-color: var(--titBlueHome);
  box-shadow: none;
  color: white;
}
.site-home .notification-push-types .container-imgs-notification {
  width: 100%;
}
.site-home .notification-push-types .container-imgs-notification .container-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 calc((100% - 1200px)/2);
}
@media screen and (min-width: 1200px) {
  .site-home .notification-push-types .container-imgs-notification .container-cards img {
    width: 250px;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .site-home .notification-push-types .container-imgs-notification .item {
    padding: 0 5px;
  }
}
.site-home .notification-push-types .container-imgs-notification .carousel-indicators {
  bottom: -20px;
  display: flex;
  justify-content: center;
  gap: 50px;
}
.site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card {
  margin-right: -20px;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card {
    margin: 0 -20px;
  }
}
@media screen and (min-width: 768px) {
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card img {
    max-height: 270px;
    margin: 0 4px;
  }
}
@media screen and (min-width: 1399px) {
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card img {
    max-height: 270px;
  }
}
@media screen and (min-width: 1920px) {
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card img {
    max-height: 320px;
  }
}
@media screen and (min-width: 768px) {
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card:first-child:nth-last-child(6) img,
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card:first-child:nth-last-child(6) ~ .link-card img {
    max-width: calc((100vw + 100px) / 6);
    margin: 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card:first-child:nth-last-child(7) img,
  .site-home .notification-push-types .container-imgs-notification .carousel-inner .container-cards .link-card:first-child:nth-last-child(7) ~ .link-card img {
    max-width: calc((100vw + 100px) / 7);
    margin: 0 10px;
  }
}
.site-home .notification-push-types .container-imgs-notification .carousel-control {
  background: transparent;
  min-width: 10px;
  top: 0;
  width: 32px;
}
@media screen and (min-width: 768px) {
  .site-home .notification-push-types .container-imgs-notification .carousel-control {
    width: 145px;
    top: 0;
  }
}
.site-home .notification-push-types .container-imgs-notification .preview-responsive {
  padding: 0;
}
.site-home .notification-push-types .container-imgs-notification .img-preview-feedback {
  margin-top: -9px;
}
@media screen and (max-width: 767px) {
  .site-home .notification-push-types .container-imgs-notification .img-preview-feedback {
    margin-top: 0;
  }
}
.site-home .notification-push-types#map-numbers {
  padding-bottom: 0;
  color: white;
}
.site-home .notification-push-types#map-numbers .indicators {
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-bottom: 60px;
  width: 100%;
}
.site-home .notification-push-types#map-numbers .indicators > div {
  width: 20%;
}
.site-home .notification-push-types#map-numbers .indicators .number-map {
  font-weight: 600;
  font-size: 57px;
  line-height: 64px;
}
.site-home .notification-push-types#map-numbers .indicators .type-map {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  font-family: "Open Sans";
}
@media screen and (max-width: 767px) {
  .site-home .notification-push-types#map-numbers .indicators {
    gap: 50px;
  }
  .site-home .notification-push-types#map-numbers .indicators .number-map {
    font-size: 36px;
    line-height: 30px;
    display: flex;
    justify-content: center;
  }
  .site-home .notification-push-types#map-numbers .indicators .type-map {
    font-size: 14px;
    line-height: 21px;
  }
}
.site-home .brands-container {
  background-color: var(--titWhite);
  position: relative;
  top: -400px;
  margin-bottom: -400px;
  padding: 170px 0 70px;
}
@media screen and (min-width: 1025px) {
  .site-home .brands-container {
    padding: 250px 0 150px;
  }
}
.site-home .brands-container h2 {
  margin: 30px 0 10px;
  color: var(--titGrey);
}
.site-home .brands-container p {
  color: var(--titGrey);
  margin-bottom: 30px;
}
.site-home .brands-container .brands {
  padding: 40px 0;
  line-height: 40px;
  text-align: center;
}
.site-home .brands-container .brands a {
  display: inline-block;
}
.site-home .brands-container .brands a img {
  max-height: 35px;
  margin: 0 5px;
}
.site-home .brands-container .brands-mobile img {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .site-home .responsive-notification {
    height: auto;
    justify-content: flex-start;
  }
}
.site-home .chat-news {
  background-image: linear-gradient(to bottom, #ff7878, #ff76ce);
  display: block;
  padding: 178px 44px;
}
@media screen and (max-width: 767px) {
  .site-home .chat-news {
    padding: 120px 4px ;
  }
}
.site-home .chat-news .item {
  border-radius: 18px;
  width: 100%;
  margin-bottom: -8px;
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .img-responsive-pt {
    margin-bottom: -3px;
  }
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .img-responsive-es,
  .site-home .chat-news .img-responsive-en {
    margin-bottom: -2px;
  }
}
@media screen and (min-width: 1025px) {
  .site-home .chat-news {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .chat-news {
    min-height: 110vh;
  }
}
.site-home .chat-news .goals-information-container {
  width: 100%;
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .site-home .chat-news .goals-information-container {
    height: 43%;
  }
}
.site-home .chat-news .goals-information-container .goals {
  padding-left: 15%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .goals-information-container .goals {
    margin-top: 0;
  }
}
.site-home .chat-news .goals-information-container .goals .title-notification,
.site-home .chat-news .goals-information-container .goals h1 {
  color: var(--titWhite);
  font-family: 'Roboto';
  font-weight: 500;
}
@media screen and (min-width: 1025px) {
  .site-home .chat-news .goals-information-container .goals .title-notification,
  .site-home .chat-news .goals-information-container .goals h1 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 1400px) {
  .site-home .chat-news .goals-information-container .goals .title-notification,
  .site-home .chat-news .goals-information-container .goals h1 {
    font-size: 5rem;
  }
}
.site-home .chat-news .goals-information-container .goals .subtitle-notification,
.site-home .chat-news .goals-information-container .goals h4 {
  width: 62%;
  color: var(--titWhiteGrey);
  line-height: 1.38;
  margin-left: 2px;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .goals-information-container .goals .subtitle-notification,
  .site-home .chat-news .goals-information-container .goals h4 {
    font-size: 14px;
    width: 84%;
    font-weight: 400;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .chat-news .goals-information-container .goals .subtitle-notification,
  .site-home .chat-news .goals-information-container .goals h4 {
    font-size: 2rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .goals-information-container .goals img {
    height: 33px;
  }
}
@media screen and (min-width: 1360px) {
  .site-home .chat-news .goals-information-container .goals img {
    margin-left: -15px;
    height: 80px;
  }
}
.site-home .chat-news .goals-information-container .goals:nth-child(2) {
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .goals-information-container .goals:nth-child(2) {
    margin-top: 40%;
  }
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .site-home .chat-news .goals-information-container .goals:nth-child(2) {
    margin-top: 50px;
  }
}
.site-home .chat-news .title-chat-news {
  height: 32%;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .title-chat-news .responsive-title h2 {
    width: 100%;
    font-size: 18px;
    margin-bottom: 32%;
  }
}
.site-home .chat-news .title-chat-news h2 {
  width: auto;
  font-size: 3.5rem;
  text-align: center;
  font-family: 'Roboto';
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: normal;
  color: #ffffff;
  margin-bottom: 74px;
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .title-chat-news h2 {
    width: 100%;
    font-size: 18px;
  }
}
@media screen and (min-width: 360px) and (max-width: 480px) {
  .site-home .chat-news .title-chat-news h2 {
    font-size: 19px;
    margin-bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  .site-home .chat-news .title-chat-news {
    height: 18%;
    align-items: center;
  }
}
.site-home .chat-news .container-imgs-chat-news {
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .img-responsive,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .img-responsive,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .img-responsive {
  max-height: 278px;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-notification-new .second-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-notification-new .third-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .third-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .third-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-notification-new .fourth-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-notification-bar img {
  border-radius: 10px;
  height: 8px;
}
@media screen and (min-width: 1360px) {
  .site-home .chat-news .container-imgs-chat-news .images-notification-new .first-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .first-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .first-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-notification-new .second-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-notification-new .third-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .third-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .third-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-notification-new .fourth-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-notification-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-notification-bar img {
    height: 12px;
  }
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .first-new-notification-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .first-new-notification-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .first-new-notification-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-notification-new .second-new-notification-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-notification-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-notification-bar-en img {
  margin-top: -40px !important;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .first-new-notification-bar,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .first-new-notification-bar,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .first-new-notification-bar,
.site-home .chat-news .container-imgs-chat-news .images-notification-new .fourth-new-notification-bar,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-notification-bar,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-notification-bar {
  text-align: center;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-notification-new .fourth-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-notification-bar img {
  width: 86%;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .first-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-notification-new .second-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-notification-bar img {
  margin-top: -51px;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .second-new-notification-bar,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-notification-bar,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-notification-bar {
  text-align: right;
  padding-right: 7%;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .third-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .third-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .third-new-notification-bar img {
  margin-bottom: -33px;
  margin-left: 7%;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .fourth-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-notification-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-notification-bar img {
  margin-bottom: -33px;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new .first-img-chat,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .first-img-chat,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .first-img-chat {
  margin-bottom: -46px;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new:nth-child(2n) {
  margin: 32px -47px 0;
}
.site-home .chat-news .container-imgs-chat-news .images-notification-new:nth-child(3) {
  margin-top: 58px;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-feedback-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-feedback-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-feedback-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-feedback-bar img {
  border-radius: 10px;
  height: 8px;
}
@media screen and (min-width: 1360px) {
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-chat-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-chat-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-chat-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-chat-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-feedback-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-feedback-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-chat-new .second-new-feedback-bar img,
  .site-home .chat-news .container-imgs-chat-news .images-feedback-new .second-new-feedback-bar img {
    height: 12px;
  }
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-chat-bar,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-chat-bar,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-feedback-bar,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-feedback-bar {
  text-align: center;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new .fourth-new-feedback-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new .fourth-new-feedback-bar img {
  width: 86%;
  margin-bottom: -34px;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n),
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) {
  margin-left: -46px;
  margin-bottom: 17px;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-chat-bar,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-chat-bar,
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-feedback-bar,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-feedback-bar {
  text-align: left;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-chat-bar img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-feedback-bar img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-feedback-bar img {
  margin-top: -57px;
  margin-left: 41px;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-chat-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-chat-bar-en img {
  margin-top: -40px !important;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-banner-exit-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-banner-exit-bar-en img {
  margin-bottom: -16px;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-banner-exit-bar-es img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-banner-exit-bar-es img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-banner-exit-bar-pt img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-banner-exit-bar-pt img {
  margin-bottom: -11px;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-chat-bar-es img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-chat-bar-es img,
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-chat-bar-pt img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-chat-bar-pt img {
  margin-bottom: -6px;
}
.site-home .chat-news .container-imgs-chat-news .images-chat-new:nth-child(2n) .second-new-feedback-bar-en img,
.site-home .chat-news .container-imgs-chat-news .images-feedback-new:nth-child(2n) .second-new-feedback-bar-en img {
  margin-bottom: -16px;
}
.site-home .chat-news .visible-xs-mobile .container .image-row-container {
  display: flex;
  justify-content: space-evenly;
}
.site-home .chat-news .visible-xs-mobile .container .image-row-container .container-images-mobile:nth-child(2n) {
  margin-left: -8px;
}
.site-home .chat-news .visible-xs-mobile .container .image-row-container .separator-chat {
  height: 8px !important;
  width: 32% !important;
}
.site-home .chat-news .visible-xs-mobile .container .image-row-container .separator-feedback {
  margin-top: 10px !important;
  margin-bottom: -4px !important;
  width: 32% !important;
}
.site-home .chat-news .visible-xs-mobile .container .image-row-container .separator-left {
  background: white;
  height: 7px;
  border-radius: 20px;
  width: 23%;
  float: right;
  margin-right: 10px;
}
.site-home .chat-news .visible-xs-mobile .container .image-row-container .separator-right {
  background: white;
  height: 7px;
  border-radius: 20px;
  width: 23%;
  margin-top: 10px;
  margin-left: 10px;
}
.site-home .clients {
  background-color: var(--titLightBlueHome);
  padding: 70px 0 0;
  margin-bottom: -1px;
}
@media screen and (min-width: 1025px) {
  .site-home .clients {
    padding: 150px 0 50px;
  }
}
.site-home .clients h2 {
  margin: 0 0 20px;
  color: var(--titWhite);
}
.site-home .clients .clients-container {
  margin-top: 20px;
  margin-bottom: 20px;
}
.site-home .clients .clients-container .carousel .carousel-indicators {
  bottom: -20px;
  left: 50%;
}
@media screen and (min-width: 767px) {
  .site-home .clients .clients-container .carousel .carousel-indicators {
    left: 15px;
  }
}
.site-home .clients .clients-container .client-item {
  width: 100%;
  float: left;
  padding: 0 15px;
}
@media screen and (min-width: 1025px) {
  .site-home .clients .clients-container .client-item {
    width: 50%;
  }
}
.site-home .clients .clients-container .client {
  background-color: var(--titWhite);
  position: relative;
  padding: 30px 20px;
  margin-bottom: 30px;
  display: block;
  width: 100%;
  min-height: 310px;
  border-radius: 4px;
  -webkit-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.4);
}
.site-home .clients .clients-container .client h4,
.site-home .clients .clients-container .client h6,
.site-home .clients .clients-container .client span {
  line-height: 1.4em;
  color: var(--titLightGreyHome);
  text-align: left;
  font-weight: 300;
  text-transform: none;
  margin: 0;
}
.site-home .clients .clients-container .client h4 {
  font-size: 20px;
  margin-bottom: 5px;
}
.site-home .clients .clients-container .client h6 {
  font-size: 16px;
  color: var(--titBlueGrey);
}
@media screen and (min-width: 1025px) {
  .site-home .clients .clients-container .client h6 {
    margin-bottom: 20px;
    height: 100px;
  }
}
.site-home .clients .clients-container .client span {
  font-size: 16px;
}
.site-home .clients .clients-container .client img.brand {
  max-height: 40px;
}
@media screen and (min-width: 1025px) {
  .site-home .clients .clients-container .client img.brand {
    max-height: 60px;
  }
}
.site-home .clients .clients-container .client .paragraph {
  padding-top: 20px;
  height: 150px;
}
@media screen and (min-width: 767px) {
  .site-home .clients .clients-container .client {
    min-height: 240px;
  }
  .site-home .clients .clients-container .client h4,
  .site-home .clients .clients-container .client h6,
  .site-home .clients .clients-container .client span {
    line-height: 1.2em;
  }
  .site-home .clients .clients-container .client h4 {
    font-size: 16px;
  }
  .site-home .clients .clients-container .client span,
  .site-home .clients .clients-container .client h6 {
    font-size: 14px;
  }
  .site-home .clients .clients-container .client img.brand {
    max-height: 25px;
  }
}
.site-home .start-now {
  padding: 70px 20px;
}
@media screen and (min-width: 1025px) {
  .site-home .start-now {
    padding: 150px 0;
  }
}
.site-home .start-now h2 {
  margin: 0;
  color: var(--titWhite);
  font-size: 24px;
}
.site-home .start-now .btn {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .btn.btn-big.start-now-btn {
    font-size: 3vw;
  }
}
.btn {
  border-radius: 8px !important;
}
.preview-responsive {
  text-align: center;
}
.preview-responsive img {
  max-width: 100%;
}
#mobile-hide-landscape.loader-back.blue {
  background-color: rgba(0, 27, 101, 0.9);
}
#mobile-hide-landscape .rotation-image-container {
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
}
#mobile-hide-landscape .rotation-image-container img {
  display: block;
  max-width: 400px;
}
.title-terms {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .title-terms {
    position: absolute;
    top: 98px;
    left: 34px;
    width: auto;
  }
  .title-terms h1 {
    font-size: 49px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: normal;
    text-align: left;
    color: #ffffff;
  }
}
@media screen and (min-width: 768px) {
  .terms-container {
    margin-top: 85px;
  }
}
@media screen and (min-width: 768px) {
  .section-separator {
    height: 100px;
  }
}
.redirect-link {
  cursor: pointer;
}
#reviews-carousel .carousel-inner,
#brands-carousel .carousel-inner {
  margin: 0 auto;
}
#reviews-carousel .item .review-container,
#brands-carousel .item .review-container {
  display: flex;
  margin-bottom: 20px;
}
#reviews-carousel .item .review-container .review-card,
#brands-carousel .item .review-container .review-card {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--solutionsBorder);
  background: var(--titWhite);
  box-shadow: 0 24px 80px 0 rgba(15, 23, 42, 0.07);
  text-align: left;
  margin: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}
#reviews-carousel .item .review-container .review-card svg,
#brands-carousel .item .review-container .review-card svg {
  margin-bottom: 16px;
  width: 48px;
}
@media screen and (min-width: 1200px) {
  #reviews-carousel .item .review-container .review-card,
  #brands-carousel .item .review-container .review-card {
    max-width: 50%;
    height: 320px;
    box-shadow: none;
  }
  #reviews-carousel .item .review-container .review-card:first-child,
  #brands-carousel .item .review-container .review-card:first-child {
    margin-right: 24px;
  }
}
#reviews-carousel .item .review-container .review-card .review-header,
#brands-carousel .item .review-container .review-card .review-header {
  display: flex;
  flex-direction: row;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #reviews-carousel .item .review-container .review-card .review-header,
  #brands-carousel .item .review-container .review-card .review-header {
    margin-top: 16px;
  }
  #reviews-carousel .item .review-container .review-card .review-header :first-child,
  #brands-carousel .item .review-container .review-card .review-header :first-child {
    flex: 0 0 auto;
    /* take only what it needs; never grow */
  }
  #reviews-carousel .item .review-container .review-card .review-header :last-child,
  #brands-carousel .item .review-container .review-card .review-header :last-child {
    flex: 1 1 auto;
    /* grow to fill remaining space */
    min-width: 0;
  }
}
#reviews-carousel .item .review-container .review-card .review-header .review-image-container,
#brands-carousel .item .review-container .review-card .review-header .review-image-container {
  margin-right: 8px;
  border-radius: 50%;
}
#reviews-carousel .item .review-container .review-card .review-header .review-image-container img,
#brands-carousel .item .review-container .review-card .review-header .review-image-container img {
  object-fit: cover;
  display: block;
}
#reviews-carousel .item .review-container .review-card .review-header .review-place,
#brands-carousel .item .review-container .review-card .review-header .review-place {
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 20px;
}
#reviews-carousel .item .review-container .review-card .review-header .review-place a,
#brands-carousel .item .review-container .review-card .review-header .review-place a {
  color: var(--lightBlue);
}
@media screen and (min-width: 1200px) {
  #reviews-carousel .item .review-container .review-card .review-header .review-place,
  #brands-carousel .item .review-container .review-card .review-header .review-place {
    font-size: 24px;
    line-height: 28px;
  }
}
#reviews-carousel .item .review-container .review-card .review-header .review-world,
#brands-carousel .item .review-container .review-card .review-header .review-world {
  margin-right: 6px;
}
#reviews-carousel .item .review-container .review-card .review-header .review-link,
#brands-carousel .item .review-container .review-card .review-header .review-link {
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
}
#reviews-carousel .item .review-container .review-card .review-content,
#brands-carousel .item .review-container .review-card .review-content {
  margin-top: 10px;
  flex-grow: 1;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
#reviews-carousel .item .review-container .review-card .review-authors,
#brands-carousel .item .review-container .review-card .review-authors {
  margin-top: 16px;
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
}
#reviews-carousel .item .review-container .review-card .review-authors .name,
#brands-carousel .item .review-container .review-card .review-authors .name {
  color: var(--darkBlue);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
}
#reviews-carousel .item .review-container .review-card .review-authors .position,
#brands-carousel .item .review-container .review-card .review-authors .position {
  color: var(--darkerGrey);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (min-width: 1200px) {
  #reviews-carousel .item .review-container .review-card .review-authors,
  #brands-carousel .item .review-container .review-card .review-authors {
    margin-top: 0;
  }
  #reviews-carousel .item .review-container .review-card .review-authors .name,
  #brands-carousel .item .review-container .review-card .review-authors .name {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
  }
}
@media screen and (max-width: 767px) {
  #reviews-carousel .item .review-container .review-card,
  #brands-carousel .item .review-container .review-card {
    width: 100%;
    text-align: left;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    line-height: 24px;
    box-shadow: none;
    margin: 0;
  }
}
#reviews-carousel .carousel-control,
#brands-carousel .carousel-control {
  width: 20px;
  background: none;
  opacity: 1;
  text-shadow: none;
}
#reviews-carousel .carousel-control.left,
#brands-carousel .carousel-control.left {
  left: -40px;
}
#reviews-carousel .carousel-control.right,
#brands-carousel .carousel-control.right {
  right: -40px;
}
@media screen and (max-width: 767px) {
  #reviews-carousel .carousel-control.left,
  #brands-carousel .carousel-control.left {
    left: -15px;
  }
  #reviews-carousel .carousel-control.right,
  #brands-carousel .carousel-control.right {
    right: -15px;
  }
}
#reviews-carousel .carousel-control .glyphicon,
#brands-carousel .carousel-control .glyphicon {
  color: #848484;
}
#reviews-carousel .carousel-control .glyphicon:before,
#brands-carousel .carousel-control .glyphicon:before {
  font-size: 14px;
}
#reviews-carousel .carousel-indicators,
#brands-carousel .carousel-indicators {
  bottom: -24px;
  width: 100%;
  left: inherit;
  margin-left: inherit;
}
#reviews-carousel .carousel-indicators li,
#brands-carousel .carousel-indicators li {
  background-color: #D9D9D9;
  border: none;
  margin: 0 10px;
  width: 12px;
  height: 12px;
}
#reviews-carousel .carousel-indicators li.active,
#brands-carousel .carousel-indicators li.active {
  background-color: var(--lightBlue);
}
.container-title-notification.action-button .buttons {
  display: flex;
  gap: 20px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container-title-notification.action-button .buttons {
    width: auto;
  }
}
.container-title-notification.action-button .buttons .titan-button {
  width: calc(50% - 10px);
  min-width: initial;
  max-width: initial;
  margin: 0;
  font-size: 14px;
  height: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  /* 142.857% */
  padding: 0;
}
@media screen and (min-width: 768px) {
  .container-title-notification.action-button .buttons .titan-button {
    min-width: 151px;
    max-width: 160px;
    padding: inherit;
  }
}
.container-title-notification.action-button .new-companies {
  color: var(--darkBlue);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-top: 8px;
  text-align: left;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .container-title-notification.action-button .new-companies {
    margin-bottom: 0;
  }
}
.clients-home {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 35px;
}
.clients-home .title {
  color: var(--blueBackgroundMenu);
  font-weight: 600;
  font-size: 19px;
  font-family: "Open Sans", sans-serif;
  text-align: left;
  margin: 0;
}
.clients-home .clients-subgroup {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .clients-home .clients-subgroup {
    justify-content: initial;
  }
}
.clients-home .clients-subgroup img {
  width: 120px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .clients-home {
    margin-top: 70px;
  }
  .clients-home .container-subgroups {
    display: flex;
    gap: 24px;
  }
}
.adopt-unique-tools {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 32px;
  font-family: "Open Sans", sans-serif;
  text-align: left;
}
@keyframes hero-gradient-animation {
  0% {
    background-image: radial-gradient(circle at 93% 87%, hsl(0, 0%, 100%) 14%, transparent 87%), radial-gradient(circle at 22% 55%, hsl(170, 74%, 97%) 14%, transparent 87%), radial-gradient(circle at 16% 78%, hsl(212, 100%, 75%) 14%, transparent 87%);
  }
  100% {
    background-image: radial-gradient(circle at 10% 100%, hsl(0, 0%, 100%) 14%, transparent 87%), radial-gradient(circle at 23% 13%, hsl(170, 74%, 97%) 14%, transparent 87%), radial-gradient(circle at 2% 9%, hsl(212, 100%, 75%) 14%, transparent 87%);
  }
}
.hero-container {
  height: 100dvh;
  display: flex;
  padding-block: clamp(48px, 8vw, 90px);
  padding-inline: clamp(16px, 6vw, 100px);
  gap: clamp(16px, 4vw, 48px);
  align-items: center;
  justify-content: space-between;
  background-color: hsla(200, 80%, 97%, 1);
  background-image: radial-gradient(circle at 93% 87%, hsla(177, 0%, 100%, 1) 14%, transparent 87%),
          radial-gradient(circle at 22% 55%, hsla(170, 74%, 97%, 1) 14%, transparent 87%),
          radial-gradient(circle at 16% 78%, hsla(212, 100%, 75%, 1) 14%, transparent 87%);
  background-blend-mode: normal, normal, normal;
  animation: hero-gradient-animation 10s linear infinite alternate;
}
.hero-container > div {
  flex: 1 1 0;
  /* all items same width */
  min-width: 0;
  /* prevents overflow issues */
}
.hero-container .title-container h1 {
  color: var(--titlePlan);
  /* Display M */
  font-family: Poppins, sans-serif;
  font-size: clamp(32px, 4.8vw, 45px);
  line-height: 1.25;
  font-weight: 600;
  margin: 0 0 16px 0;
}
.hero-container .title-container h2 {
  color: var(--darkBlue);
  /* Body L/400 */
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  /* ~24px when 16px */
  font-weight: 400;
  margin: 0 0 clamp(24px, 3vw, 32px) 0;
  max-width: 60ch;
}
.hero-container .title-container .btn {
  text-transform: none;
  padding: 12px 24px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  /* ~20px when 14px */
  font-weight: 700;
}
.hero-container .image-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .hero-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .hero-container .title-container {
    order: 1;
    text-align: left;
    padding-top: 48px;
  }
  .hero-container .image-container {
    order: 2;
    margin-top: clamp(12px, 4vw, 24px);
    overflow: hidden;
  }
  .hero-container .title-container h2 {
    margin-left: auto;
    margin-right: auto;
  }
}
.services-features-section {
  display: grid;
  padding-block: clamp(48px, 8vw, 90px);
  padding-inline: clamp(16px, 6vw, 100px);
  gap: clamp(16px, 3vw, 48px);
  grid-template-columns: 1fr;
  /* mobile */
}
@media (min-width: 768px) {
  .services-features-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto;
  }
  .services-features-section > .feature {
    flex: 0 0 calc((100% - clamp(16px, 3vw, 48px) * 2) / 3);
  }
}
.services-features-section .feature {
  transition: all 0.15s;
}
.services-features-section .feature:hover {
  transform: translateY(-4px);
}
@media (max-width: 767px) {
  .services-features-section .feature {
    padding: 18px 16px;
    border: 1px solid hsl(210 20% 88% / .8);
    border-radius: 16px;
    margin-bottom: 16px;
    background: #fff;
  }
  .services-features-section .feature:last-child {
    margin-bottom: 0;
  }
}
.services-features-section .feature .feature-icon {
  margin-bottom: clamp(14px, 2.2vw, 26px);
}
.services-features-section .feature .feature-icon img {
  width: clamp(40px, 6vw, 56px);
  height: clamp(40px, 6vw, 56px);
}
.services-features-section .feature .feature-content {
  font-family: "Open Sans", sans-serif;
}
.services-features-section .feature .feature-content h3 {
  color: var(--titlePlan);
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  /* ~30px when 22px */
  margin: 0 0 clamp(6px, 1.2vw, 8px) 0;
}
.services-features-section .feature .feature-content p {
  margin: 0;
  color: var(--darkBlue);
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.5;
  /* ~24px when 16px */
}
.feature-details {
  display: flex;
  padding: 0 16px;
  gap: 36px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 36px;
}
@media screen and (min-width: 768px) {
  .feature-details {
    flex-direction: row;
    padding: 0 40px;
    gap: 48px;
    margin-bottom: 0;
  }
}
.feature-details .feature-detail {
  max-width: 100%;
  width: 450px;
  font-family: "Open Sans", sans-serif;
}
.feature-details .feature-detail h3 {
  margin: 26px 0 8px;
  color: var(--T2-neutral-900);
  font-family: "Open Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  /* 136.364% */
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature-details .feature-detail h3 {
    text-align: left;
  }
}
.feature-details .feature-detail p {
  margin: 0;
  color: var(--darkBlue);
  /* Body L/400 */
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-align: center;
}
@media screen and (min-width: 768px) {
  .feature-details .feature-detail p {
    text-align: left;
  }
}
.highlight-text-container {
  width: 820px;
  max-width: 90%;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 48px) 0;
}
.highlight-text-container h2 {
  margin: 0 0 16px 0;
  color: var(--darkBlue);
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  line-height: 36px;
}
.highlight-text-container .btn {
  text-transform: none;
  padding: 12px 24px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  /* ~20px when 14px */
  font-weight: 700;
}
.titan-experiences-section {
  padding: 60px 20px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section {
    padding: 80px 40px;
  }
}
.titan-experiences-section .container-title-notification {
  text-align: center;
  margin-bottom: 48px;
}
.titan-experiences-section .container-title-notification .title {
  color: var(--lightBlue);
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px 0;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .container-title-notification .title {
    font-size: 32px;
  }
}
.titan-experiences-section .container-title-notification .subtitle {
  color: var(--darkBlue);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 700px;
}
.titan-experiences-section .small-hero {
  display: flex;
  gap: 16px;
  padding: 24px;
  margin: 0 auto 48px;
  max-width: 900px;
  align-items: flex-start;
  border-radius: 8px;
  border: 1px solid var(--solutionsBorder);
  background: #F8FAFC;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .small-hero {
    padding: 32px;
    gap: 24px;
  }
}
.titan-experiences-section .small-hero .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 119, 255, 0.1);
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .small-hero .icon {
    width: 56px;
    height: 56px;
  }
}
.titan-experiences-section .small-hero .text h3 {
  color: var(--lightBlue);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px 0;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .small-hero .text h3 {
    font-size: 20px;
  }
}
.titan-experiences-section .small-hero .text p {
  color: var(--darkBlue);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .small-hero .text p {
    font-size: 16px;
  }
}
.titan-experiences-section .experience-graph {
  display: flex;
  flex-direction: column;
  width: 900px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 0;
  }
}
.titan-experiences-section .experience-graph .graph-item {
  display: flex;
  gap: 16px;
  position: relative;
  padding: 24px 0;
  margin-bottom: 24px;
}
.titan-experiences-section .experience-graph .graph-item:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph .graph-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    gap: 16px;
    padding: 0;
    margin-bottom: 0;
  }
}
.titan-experiences-section .experience-graph .graph-item .graph-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph .graph-item .graph-icon {
    width: 56px;
    height: 56px;
  }
}
.titan-experiences-section .experience-graph .graph-item .graph-icon svg {
  width: 28px;
  height: 28px;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph .graph-item .graph-icon svg {
    width: 32px;
    height: 32px;
  }
}
.titan-experiences-section .experience-graph .graph-item .graph-content {
  padding-top: 4px;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph .graph-item .graph-content {
    padding-top: 0;
    max-width: 250px;
  }
}
.titan-experiences-section .experience-graph .graph-item .graph-content h4 {
  color: var(--lightBlue);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 8px 0;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph .graph-item .graph-content h4 {
    font-size: 20px;
  }
}
.titan-experiences-section .experience-graph .graph-item .graph-content p {
  color: var(--darkBlue);
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
.titan-experiences-section .experience-graph .connector-line {
  width: 0;
  border-left: 2px dashed var(--lightBlue);
  min-height: 8px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph .connector-line {
    border-left: none;
    border-top: 2px dashed var(--lightBlue);
  }
}
.titan-experiences-section .experience-graph .connector-arrow {
  position: absolute;
  z-index: 2;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.titan-experiences-section .experience-graph .connector-arrow svg {
  transform: rotate(90deg);
}
@media screen and (min-width: 768px) {
  .titan-experiences-section .experience-graph .connector-arrow svg {
    transform: none;
  }
}
@keyframes copilot-light-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.copilot-section {
  background: linear-gradient(135deg, #E8F4FF 0%, #F5FAFF 50%, #E0F0FF 100%);
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .copilot-section {
    background: linear-gradient(90deg, #E8F4FF 0%, #FFFFFF 25%, #E8F4FF 50%, #FFFFFF 75%, #E8F4FF 100%);
    background-size: 200% 100%;
    animation: copilot-light-move 8s ease-in-out infinite;
  }
}
.copilot-section .copilot-content {
  max-width: 90%;
  width: 1200px;
  margin: 0 auto;
  padding-block: clamp(64px, 12vw, 210px);
  padding-inline: clamp(16px, 8vw, 160px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 4vw, 32px);
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .copilot-section .copilot-content {
    flex-direction: row;
  }
}
.copilot-section .copilot-content .copilot-presentation .copilot-title {
  text-align: center;
  margin-bottom: 8px;
}
.copilot-section .copilot-content .copilot-presentation .copilot-title svg {
  width: 50px;
  height: 50px;
}
.copilot-section .copilot-content .copilot-presentation .copilot-title h3 {
  color: var(--T2-neutral-900);
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
  font-size: clamp(22px, 3.8vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  /* ~48px when 36px */
}
@media screen and (min-width: 768px) {
  .copilot-section .copilot-content .copilot-presentation .copilot-title {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    margin-bottom: 0;
  }
}
.copilot-section .copilot-content .copilot-presentation p {
  color: var(--darkBlue);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.45;
  /* ~18px when 14px */
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .copilot-section .copilot-content .copilot-presentation p {
    text-align: left;
  }
}
.copilot-section .copilot-content .copilot-features-container .copilot-feature {
  border-radius: 8px;
  padding: 0;
  text-align: center;
  /* was: 24px */
  margin-bottom: 24px;
  color: var(--darkBlue);
  font-family: "Open Sans", sans-serif;
  line-height: 18px;
  /* 133.333% */
}
@media screen and (min-width: 768px) {
  .copilot-section .copilot-content .copilot-features-container .copilot-feature {
    border: 1px solid var(--solutionsBorder);
    background: #F8FAFC;
    text-align: left;
    padding: clamp(16px, 3.5vw, 24px);
  }
}
.copilot-section .copilot-content .copilot-features-container .copilot-feature:last-child {
  margin-bottom: 0;
}
.copilot-section .copilot-content .copilot-features-container .copilot-feature .feature-name {
  color: var(--darkBlue);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.copilot-section .copilot-content .copilot-features-container .copilot-feature p {
  color: var(--darkBlue);
  font-size: 14px;
  margin: 0;
}
.other-services-container {
  padding-block: clamp(48px, 8vw, 90px);
  padding-inline: clamp(16px, 6vw, 100px);
}
@media (min-width: 768px) {
  .other-services-container {
    max-width: 1300px;
    margin: 0 auto;
  }
}
.other-services-container .title-container {
  margin-bottom: 40px;
}
.other-services-container .title-container h2 {
  color: var(--lightBlue);
  font-family: Poppins, sans-serif;
  font-size: clamp(28px, 5vw, 45px);
  line-height: 1.15;
  /* ~52px when 45px */
  font-weight: 600;
  margin: 0 0 8px 0;
}
.other-services-container .title-container p {
  margin: 0;
  color: var(--darkBlue);
  font-family: Poppins, sans-serif;
  font-size: clamp(18px, 3.6vw, 28px);
  line-height: 1.3;
  /* ~36px when 28px */
  font-weight: 600;
}
.other-services-container .pills-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.other-services-container .pills-container .pill {
  border-radius: 4px;
  border: 1px solid var(--solutionsBorder);
  display: flex;
  height: clamp(40px, 7vw, 48px);
  padding: clamp(10px, 2.5vw, 16px) clamp(14px, 4vw, 24px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  cursor: pointer;
}
.other-services-container .pills-container .pill:hover {
  box-shadow: 0 4px 12px 0 rgba(15, 23, 42, 0.1);
  transform: scale(1.05);
  border-color: var(--lightBlue);
  background-color: #cce4ff;
}
.other-services-container .pills-container .pill .pill-icon img {
  width: clamp(18px, 3.5vw, 21px);
  height: clamp(18px, 3.5vw, 21px);
}
.other-services-container .pills-container .pill .pill-content {
  color: var(--darkBlue);
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 600;
  line-height: 1.35;
  /* ~24px when 18px */
}
/*# sourceMappingURL=index.css.map */