/* GENERAL SETTINGS & VARIABLES*/
@import url("bootstrap-grid.css");
* {
  border: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "ManropeMedium";
  font-size: 1.6rem;
}
html {
  visibility: hidden;
}
a {
  color: #3a3a3b;
  font-family: "ManropeMedium";
  font-size: 13px;
  text-decoration: none;
}
a:hover {
  color: #6176fe;
}
.form-control:focus {
  border-color: #6176fe !important;
}
.form-item > .radio {
  display: grid;
  align-content: center;
  align-items: center;
}
.radio input[type='radio'] {
  /* remove standard background appearance */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* create custom radiobutton appearance */
  display: inline-block;
  width: 18px;
  height: 18px;
  padding: 2px;
  background-clip: content-box;
  border: 2px solid #ff6cf9;
  background-color: transparent;
  border-radius: 50%;
  margin-left: -22px;
  margin-top: 2px;
}
.radio input[type='radio']:checked {
  background-color: #ff6cf9;
}
.radio input[type='radio']:focus,
.radio input[type='radio']:focus-visible {
  outline: none;
}
@keyframes move-gradient-b {
  0% {
    background-position: -25% top;
    /*transform: rotate(0deg);*/
  }
  25% {
    background-position: 45% top;
  }
  50% {
    background-position: 140% top;
  }
  60% {
    background-position: 45% top;
  }
  75% {
    background-position: -25% top;
  }
  100% {
    background-position: 0 0;
    /*transform: rotate(360deg)*/
  }
}
@keyframes move-gradient-p {
  0% {
    background-position: 140% top;
    /*transform: rotate(0deg);*/
  }
  25% {
    background-position: 100% top;
  }
  50% {
    background-position: -25% top;
  }
  60% {
    background-position: 100% top;
  }
  75% {
    background-position: 140% top;
  }
  100% {
    background-position: 0 0;
    /*transform: rotate(360deg)*/
  }
}
.page-404,
.page-403 {
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
}
.page-404 .text-404,
.page-403 .text-404,
.page-404 .text-403,
.page-403 .text-403 {
  width: 100vw;
  margin: 5rem 0 0rem auto;
  font-size: 20rem;
  color: white;
  text-align: center;
  padding: 0;
  font-family: "SpaceGroteskBold";
  line-height: normal;
}
.page-404 h1,
.page-403 h1 {
  color: white;
  text-align: center;
  padding: 0;
  font-family: "SpaceGroteskBold";
  font-size: 40px;
}
@media (max-width: 992px) {
  .page-404 .text-404,
  .page-403 .text-404,
  .page-404 .text-403,
  .page-403 .text-403 {
    font-size: 15rem;
  }
  .page-404 h1,
  .page-403 h1 {
    font-size: 30px;
  }
}
.radial-blue {
  --speed: 25s;
  --easing: cubic-bezier(0.2, 0.2, 0.2, 0.2);
  background-image: radial-gradient(at top center, #34f6cb 8%, transparent 67%);
  height: 340px;
  position: absolute;
  width: 90%;
  background-position: -25% top;
  background-size: 80%;
  background-repeat: no-repeat;
  opacity: 0.6;
  filter: blur(61px);
  z-index: 0;
}
@media (max-width: 768px) {
  .radial-blue {
    margin: 0 5%;
    animation: none;
  }
}
.radial-pink {
  --speed: 25s;
  --easing: cubic-bezier(0.2, 0.2, 0.2, 0.2);
  background-image: radial-gradient(at top center, #ff35f7de 8%, transparent 67%);
  height: 340px;
  position: absolute;
  width: 90%;
  background-position: 140% top;
  background-size: 80%;
  background-repeat: no-repeat;
  opacity: 0.7;
  top: 0;
  filter: blur(33px);
  z-index: 0;
}
@media (max-width: 768px) {
  .radial-pink {
    margin: 0 5%;
    animation: none;
  }
}
.dialog-off-canvas-main-canvas {
  width: 100vw;
  display: grid;
  grid-template-rows: 65px 1fr 60px;
  grid-template-columns: 1fr;
  min-height: 100vh;
}
@media (max-width: 992px) {
  .dialog-off-canvas-main-canvas {
    overflow-x: hidden;
  }
}
.main-container.container-fluid {
  position: relative;
  z-index: 2;
}
.main-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 992px) {
  .main-content {
    padding: 0 15px;
    width: 100vw;
    height: calc(100% - 60px);
  }
}
header {
  transition: all 0.5s linear;
  background-color: transparent !important;
  padding: 0;
  height: 65px;
  z-index: 3;
}
header.container-fluid {
  padding-left: 80px !important;
  padding-right: 80px !important;
  width: 100%;
}
@media (max-width: 768px) {
  header.container-fluid {
    padding: 0 !important;
    height: 60px;
    width: 100vw;
  }
}
header .navbar-header {
  width: 27%;
}
@media (max-width: 768px) {
  header .navbar-header {
    width: 50%;
    height: 60px;
    margin-left: 0 !important;
    margin-right: auto;
  }
  header .navbar-header .logo {
    margin: 0;
  }
  header .navbar-header .logo img {
    height: 60px;
  }
}
header .navbar-header img {
  width: auto;
  height: 65px;
}
header .navbar-toggle {
  display: none;
}
header .navbar-nav,
header .navbar-right {
  float: none !important;
  margin: 0;
}
header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
  z-index: 2;
  position: relative;
  padding-top: 2px;
}
@media (max-width: 768px) {
  header .top-bar {
    height: 60px;
    margin: 0;
    padding: 0;
    justify-content: start;
    align-items: center;
    width: 100vw;
  }
}
header .top-bar .navbar-collapse {
  display: flex !important;
  width: 100%;
  align-items: center;
  justify-content: end;
  padding: 0;
}
header .top-bar .navbar-collapse .region-navigation-collapsible {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 360px) and (max-width: 992px) {
  header .top-bar .navbar-collapse .region-navigation-collapsible {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    height: 100%;
  }
}
header .top-bar .menu-icon {
  max-width: 46px;
}
header #block-asist-main-menu {
  width: 70%;
  margin: 0;
  display: flex;
  justify-content: center;
}
header #block-asist-account-menu {
  width: 27%;
  display: flex;
  justify-content: end;
}
header #block-asist-account-menu ul li a[href="/user/edit"] {
  display: none;
}
header #block-asist-menudecuentadeusuario2,
header #block-asist-misenlaces-header {
  display: none;
}
@media (min-width: 360px) and (max-width: 992px) {
  header #block-asist-account-menu,
  header #block-asist-main-menu,
  header #block-asist-menudecuentadeusuario2,
  header #block-asist-misenlaces-header {
    width: 100%;
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }
  header #block-asist-account-menu ul,
  header #block-asist-main-menu ul,
  header #block-asist-menudecuentadeusuario2 ul,
  header #block-asist-misenlaces-header ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    flex-direction: column;
    align-content: flex-end;
    align-items: flex-end;
    width: 100%;
    border-bottom: 1px solid #ffffff42;
    padding-bottom: 2rem;
  }
  header #block-asist-account-menu ul li,
  header #block-asist-main-menu ul li,
  header #block-asist-menudecuentadeusuario2 ul li,
  header #block-asist-misenlaces-header ul li {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
    align-items: flex-start;
    margin-top: 1.5rem;
    width: 100%;
  }
  header #block-asist-account-menu ul li a,
  header #block-asist-main-menu ul li a,
  header #block-asist-menudecuentadeusuario2 ul li a,
  header #block-asist-misenlaces-header ul li a {
    font-size: 120%;
    width: 100%;
    display: flex;
  }
  header #block-asist-account-menu ul li a[data-drupal-link-system-path="user/logout"],
  header #block-asist-main-menu ul li a[data-drupal-link-system-path="user/logout"],
  header #block-asist-menudecuentadeusuario2 ul li a[data-drupal-link-system-path="user/logout"],
  header #block-asist-misenlaces-header ul li a[data-drupal-link-system-path="user/logout"] {
    transition: all 0.1s ease-in-out;
    text-align: center;
    justify-content: center;
    margin-top: 1.5rem;
  }
  header #block-asist-account-menu ul li a[data-drupal-link-system-path="user/logout"]:hover,
  header #block-asist-main-menu ul li a[data-drupal-link-system-path="user/logout"]:hover,
  header #block-asist-menudecuentadeusuario2 ul li a[data-drupal-link-system-path="user/logout"]:hover,
  header #block-asist-misenlaces-header ul li a[data-drupal-link-system-path="user/logout"]:hover {
    text-align: center;
    margin-top: 1.5rem;
    background-image: none;
  }
  header #block-asist-account-menu ul li.last a,
  header #block-asist-main-menu ul li.last a,
  header #block-asist-menudecuentadeusuario2 ul li.last a,
  header #block-asist-misenlaces-header ul li.last a {
    transition: all 0.1s ease-in-out;
    text-align: center;
    margin-top: 1.5rem;
  }
  header #block-asist-account-menu ul li.last a:hover,
  header #block-asist-main-menu ul li.last a:hover,
  header #block-asist-menudecuentadeusuario2 ul li.last a:hover,
  header #block-asist-misenlaces-header ul li.last a:hover {
    background-image: none;
    text-align: center;
    margin-top: 1.5rem;
  }
  header #block-asist-account-menu {
    order: 1;
    margin-top: 0;
  }
  header #block-asist-account-menu ul li.first {
    margin-top: 0;
  }
  header #block-asist-misenlaces-header {
    order: 2;
    margin-top: 1rem;
  }
  header #block-asist-main-menu {
    order: 3;
    margin-top: 1rem;
  }
  header #block-asist-menudecuentadeusuario2 {
    order: 4;
    height: 100%;
    align-items: stretch;
    flex-direction: row;
  }
  header #block-asist-menudecuentadeusuario2 ul {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
header .menu--account li,
header .menu--main li,
header .menu--misenlaces li {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
header .menu--account li.first,
header .menu--main li.first,
header .menu--misenlaces li.first {
  margin-left: 0;
  margin-right: 5px;
}
header .menu--account li a,
header .menu--main li a,
header .menu--misenlaces li a {
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 14px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  display: flex;
}
header .menu--account li a:hover,
header .menu--main li a:hover,
header .menu--misenlaces li a:hover,
header .menu--account li a.is-active,
header .menu--main li a.is-active,
header .menu--misenlaces li a.is-active {
  background-color: #ffffff;
  color: #022856;
}
header .menu--account li a[href="/user"]::after,
header .menu--main li a[href="/user"]::after,
header .menu--misenlaces li a[href="/user"]::after {
  font-family: 'icomoon';
  content: '\e90c';
  margin-left: 5px;
  margin-right: 0;
  font-size: 20px;
  vertical-align: middle;
}
header .menu--account li a[data-drupal-link-system-path="user/logout"],
header .menu--main li a[data-drupal-link-system-path="user/logout"],
header .menu--misenlaces li a[data-drupal-link-system-path="user/logout"] {
  border: 1px solid white;
}
header .menu--account li a[data-drupal-link-system-path="user/logout"]::after,
header .menu--main li a[data-drupal-link-system-path="user/logout"]::after,
header .menu--misenlaces li a[data-drupal-link-system-path="user/logout"]::after {
  font-family: 'icomoon';
  content: '\e908';
  margin-left: 5px;
  margin-right: 0;
  font-size: 16px;
  font-size: 20px;
  display: flex;
  align-items: center;
}
header .menu--account li a[data-drupal-link-system-path="user/logout"]:hover,
header .menu--main li a[data-drupal-link-system-path="user/logout"]:hover,
header .menu--misenlaces li a[data-drupal-link-system-path="user/logout"]:hover {
  background-color: #ffffff !important;
  color: #022856;
  background-image: none;
}
header .menu--account li a[href="#modulos"]::before,
header .menu--main li a[href="#modulos"]::before,
header .menu--misenlaces li a[href="#modulos"]::before {
  font-family: 'icomoon';
  content: '\e90a';
  margin-left: 0px;
  margin-right: 12px;
  font-size: 21px;
  vertical-align: middle;
}
header .menu--account li a[href="#asistentes"]::before,
header .menu--main li a[href="#asistentes"]::before,
header .menu--misenlaces li a[href="#asistentes"]::before {
  font-family: 'icomoon';
  content: '\e900';
  margin-left: -2px;
  margin-right: 12px;
  font-size: 23px;
  vertical-align: middle;
}
header .menu--account li a[href="#suscripciones"]::before,
header .menu--main li a[href="#suscripciones"]::before,
header .menu--misenlaces li a[href="#suscripciones"]::before {
  font-family: 'icomoon';
  content: '\e901';
  margin-left: 0px;
  margin-right: 12px;
  font-size: 21px;
  vertical-align: middle;
}
header .menu--account li a[href="#ordenes"]::before,
header .menu--main li a[href="#ordenes"]::before,
header .menu--misenlaces li a[href="#ordenes"]::before {
  content: '\F491';
  font-family: "bootstrap-icons";
  margin-left: 0px;
  margin-right: 12px;
  font-size: 18px;
  vertical-align: middle;
}
header .menu--account li a[href="#direcciones"]::before,
header .menu--main li a[href="#direcciones"]::before,
header .menu--misenlaces li a[href="#direcciones"]::before {
  content: "\F194";
  font-family: "bootstrap-icons";
  margin-left: 0px;
  margin-right: 12px;
  font-size: 18px;
  vertical-align: middle;
}
header .menu--account li a[href="#conversaciones"]::before,
header .menu--main li a[href="#conversaciones"]::before,
header .menu--misenlaces li a[href="#conversaciones"]::before {
  content: "\F267";
  font-family: "bootstrap-icons";
  margin-left: 0px;
  margin-right: 12px;
  font-size: 18px;
  vertical-align: middle;
}
header .menu--account .last,
header .menu--main .last,
header .menu--misenlaces .last {
  margin-right: 0;
}
header .menu--account .last a:not(.menu--main .last a),
header .menu--main .last a:not(.menu--main .last a),
header .menu--misenlaces .last a:not(.menu--main .last a) {
  border: 1px solid white;
}
header .name {
  display: none;
}
@media (min-width: 360px) and (max-width: 992px) {
  header {
    grid-row: 1/2;
  }
  header .top-bar .blur-wrapper {
    position: fixed;
    top: 60px;
    width: 100%;
    height: 100%;
    left: 0px;
    visibility: hidden;
    opacity: 0;
    background-color: #0000009c;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.35s ease-in-out;
  }
  header .top-bar .blur-wrapper.open {
    visibility: visible;
    opacity: 1;
  }
  header .top-bar .navbar-collapse {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: end;
    position: fixed;
    right: -500px;
    visibility: hidden;
    opacity: 0;
    top: 60px;
    min-width: 80%;
    margin-right: 0;
    width: 80%;
    padding: 12px;
    background-color: #022856;
    border-radius: 0;
    height: calc(100vh - 60px);
    align-items: flex-start;
    align-content: flex-start;
    transition: all 0.35s ease-in-out;
    overflow-y: auto;
    background-image: linear-gradient(to left, rgba(255, 53, 247, 0.16) 43%, #34f6cb94 148%);
  }
  header .top-bar .navbar-collapse.open {
    visibility: visible;
    opacity: 1;
    right: -5px;
  }
  header .top-bar .navbar-collapse .user-info {
    width: 100%;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 1rem;
  }
  header .top-bar .navbar-collapse .user-info img {
    border-radius: 50%;
  }
  header .top-bar .navbar-collapse .user-info .full-name {
    color: #ffffff;
    font-family: "ManropeBold";
    margin: 0px;
    font-size: 20px;
  }
  header .top-bar .navbar-collapse .user-info a.perfil-link {
    color: #ffffff;
    margin-left: 0px;
    font-family: "ManropeRegular";
    margin-top: 10px;
    display: flex;
    font-size: 1.3rem;
  }
}
#block-asist-misenlaces .menu--misenlaces li a {
  padding-left: 2rem;
  font-size: 100%;
  color: #022856;
  display: flex;
}
body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw;
  overflow-x: hidden;
  background: #022856;
}
body.toolbar-fixed.user-logged-in .dialog-off-canvas-main-canvas {
  margin-top: 8rem !important;
}
body .asist-form {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  color: #022856;
}
body .asist-form .field--name-field-imagen,
body .asist-form .field--name-field-script,
body .asist-form .field--name-field-modulos,
body .asist-form .field--name-field-formato {
  width: 100%;
}
body .asist-form .field--name-field-imagen .form-element,
body .asist-form .field--name-field-script .form-element,
body .asist-form .field--name-field-modulos .form-element,
body .asist-form .field--name-field-formato .form-element {
  width: 100%;
}
body .asist-form .field--name-field-asistente,
body .asist-form .field--name-title,
body .asist-form .field--name-field-country,
body .asist-form .field--name-field-formato,
body .asist-form .field--name-field-telegram-phone,
body .asist-form #edit-field-imagen-wrapper,
body .asist-form .field--name-field-token-telegram,
body .asist-form .field--name-field-bot-name,
body .asist-form #edit-field-tema-wrapper,
body .asist-form #edit-field-modulos-wrapper {
  float: left;
  width: 50%;
}
@media (max-width: 768px) {
  body .asist-form .field--name-field-asistente,
  body .asist-form .field--name-title,
  body .asist-form .field--name-field-country,
  body .asist-form .field--name-field-formato,
  body .asist-form .field--name-field-telegram-phone,
  body .asist-form #edit-field-imagen-wrapper,
  body .asist-form .field--name-field-token-telegram,
  body .asist-form .field--name-field-bot-name,
  body .asist-form #edit-field-tema-wrapper,
  body .asist-form #edit-field-modulos-wrapper {
    width: 100%;
  }
}
body .asist-form .field--name-field-asistente .form-item,
body .asist-form .field--name-title .form-item,
body .asist-form .field--name-field-country .form-item,
body .asist-form .field--name-field-formato .form-item,
body .asist-form .field--name-field-telegram-phone .form-item,
body .asist-form #edit-field-imagen-wrapper .form-item,
body .asist-form .field--name-field-token-telegram .form-item,
body .asist-form .field--name-field-bot-name .form-item,
body .asist-form #edit-field-tema-wrapper .form-item,
body .asist-form #edit-field-modulos-wrapper .form-item {
  width: 95%;
}
body .asist-form fieldset > legend > span {
  font-weight: 600;
}
body .asist-form fieldset > legend > span::after {
  content: ":";
}
body .asist-form #telegram-request-code,
body .asist-form #telegram-verify-code {
  margin-left: 15px;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file {
  display: flex;
  flex-direction: column;
  width: 100%;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file > label {
  margin-bottom: 2rem;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file > label::after {
  content: ":";
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .description {
  margin-top: 2rem;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file input[type="file"] {
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 170px;
  height: 45px;
  color: #ffffff !important;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button {
  /* the button to select file */
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  content: '';
  margin: 0;
  height: 45px;
  border: 0;
  margin-right: 2rem;
  width: 170px;
  float: none;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:hover,
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .preview {
  padding: 0 0 0 15px;
}
@media (max-width: 992px) {
  body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .preview {
    width: 25% !important;
  }
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data > .form-type-textfield {
  display: none;
}
@media (max-width: 992px) {
  body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data {
    width: 65% !important;
  }
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data span.file {
  display: flex;
  gap: 10px;
  align-items: center;
  align-content: center;
}
@media (max-width: 992px) {
  body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data span.file {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data button {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  margin-top: 1rem;
  height: 45px;
  width: 150px !important;
  padding: 5px 15px;
  background-image: none;
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data button:hover,
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data button:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file .data button {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
body .asist-form #edit-field-imagen-wrapper .form-type-managed-file .form-managed-file button[id*='edit-field-user-picture-0-upload-button'] {
  display: none;
}
@media (max-width: 992px) {
  body .asist-form #edit-field-tema-wrapper #edit-field-tema {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: start;
    align-content: start;
  }
  body .asist-form #edit-field-tema-wrapper #edit-field-tema .form-item-field-tema {
    margin: 0 0 2rem 0;
  }
}
@media (max-width: 992px) {
  body .asist-form #edit-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  body .asist-form #edit-actions a {
    min-width: 200px;
  }
}
form *:not(a, button) {
  color: #022856 !important;
}
@media (max-width: 992px) {
  main[role="main"],
  div[role="main"] {
    margin-top: 60px;
    grid-row: 2/3;
  }
  main[role="main"].user-account,
  div[role="main"].user-account {
    z-index: 1;
  }
  main[role="main"].checkout .main-content,
  div[role="main"].checkout .main-content {
    padding: 0 10px;
  }
}
@media (max-width: 992px) {
  main[role="main"].edit,
  div[role="main"].edit {
    width: 100vw;
    padding: 0 15px;
  }
}
.frontpage {
  /* margin-top: 82px; */
  padding-top: 0rem;
  padding-bottom: 0rem;
  min-height: auto;
  width: 99.1vw;
  position: relative;
  z-index: 2;
}
.frontpage .main-content {
  width: 100%;
  margin: 0 auto;
  padding: 0 80px;
}
@media (max-width: 768px) {
  .frontpage .main-content {
    padding: 0 20px;
  }
}
@media (max-width: 992px) {
  .frontpage {
    width: 100vw;
  }
  .frontpage section.testimony-wrapper {
    display: flex;
    flex-wrap: wrap;
    border: 0;
    margin: 0 -20px;
    padding: 0 20px;
  }
  .frontpage section.testimony-wrapper .testimony-button {
    order: 3;
    margin-bottom: 4rem;
    margin-top: 1rem;
  }
  .frontpage section.testimony-wrapper .views-element-container {
    order: 2;
  }
  .frontpage section.testimony-wrapper .views-element-container .view {
    margin-bottom: 2rem;
  }
}
.btn-default {
  border-radius: 10px;
  border: solid 1px #ededed;
  background-color: #ffffff;
  color: #022856;
  font-family: "ManropeMedium";
  font-size: 16px;
}
.btn-default:hover {
  background-color: #ededed;
}
.btn-white {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 5px 15px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
}
.btn-blue {
  background-color: #022856;
  color: #ffffff;
  border-radius: 5px;
  padding: 5px 15px;
  border: 1px solid #ffffff;
  height: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
}
.btn-blue:hover {
  background-color: #ffffff;
  color: #022856;
}
.btn-blue:focus {
  color: #ffffff;
}
.btn-blue.onwhitebg {
  border: 1px solid #022856;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
}
.btn:active {
  box-shadow: none;
}
.home-cards {
  display: flex;
  justify-content: space-between;
  margin: 8rem auto;
  flex-wrap: wrap;
}
.home-cards .home-card-gradient {
  min-height: 250px;
  position: absolute;
  width: 90%;
  transform: rotate(-180deg);
  opacity: 0.67;
  -webkit-filter: blur(200px);
  filter: blur(200px);
  background-image: conic-gradient(from 0.25turn, rgba(255, 53, 247, 0.73), rgba(52, 246, 203, 0.41) 0.8turn, rgba(255, 53, 247, 0.73));
  z-index: 0;
}
.home-cards .card-wrapper {
  z-index: 1;
  max-width: 32%;
}
@media (max-width: 768px) {
  .home-cards .card-wrapper {
    max-width: 100%;
    margin-bottom: 5rem;
  }
}
.home-cards .card {
  border-radius: 10px;
  min-height: 250px;
  padding: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.home-cards .card.shadow-left {
  box-shadow: -12px -12px 16px 1px rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .home-cards .card.shadow-left {
    box-shadow: 0px -12px 16px 1px rgba(255, 255, 255, 0.2);
  }
}
.home-cards .card.shadow-center {
  box-shadow: 0px -12px 16px 1px rgba(255, 255, 255, 0.2);
}
.home-cards .card.shadow-right {
  box-shadow: 12px -12px 16px 1px rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
  .home-cards .card.shadow-right {
    box-shadow: 0px -12px 16px 1px rgba(255, 255, 255, 0.2);
  }
}
.home-cards .card img {
  width: calc(100% + 40px);
  margin-top: -20px;
  margin-bottom: 2rem;
}
.home-cards .card h4 {
  margin-bottom: 2rem;
  font-size: 18px;
}
.home-cards .card p {
  font-size: 14px;
  min-height: 40px;
}
.home-cards.inicio {
  margin-bottom: 0;
}
.home-steps {
  display: flex;
  justify-content: space-between;
  margin: 8rem auto;
}
.home-steps .step-wrapper {
  max-width: 20%;
  z-index: 1;
}
.home-steps .step-wrapper .step {
  min-width: 25%;
}
.home-steps .step-wrapper .step .step-icon {
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: #3a547a;
  margin: 0 auto 2rem auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-steps .step-wrapper .step .step-icon img {
  width: 60px;
  height: auto;
}
.home-steps .step-wrapper .step .step-title h4 {
  font-weight: bold;
}
.home-steps .step-wrapper .step .step-text {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.home-steps .step-wrapper .step .step-text .vin {
  text-align: center;
  display: block;
}
.home-steps .step-wrapper .step .txt-mt {
  margin-bottom: 1.6rem;
}
.steps-mobile {
  margin-left: -25px;
  margin-right: -25px;
}
.circle-shadow-top {
  box-shadow: 0px -12px 25px 2px rgba(255, 255, 255, 0.2);
}
.circle-shadow-bot {
  box-shadow: 0px 12px 25px 2px rgba(255, 255, 255, 0.2);
}
.line-h {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  width: 100%;
  position: absolute;
  z-index: 0;
  margin-top: 3%;
  left: 0;
}
.home-beneficts {
  min-height: 690px;
  margin: 8rem -80px 8rem -80px;
  background: url('../images/beneficios.webp') no-repeat center top;
  background-size: 100%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
}
.home-beneficts .benefict-info {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  margin-left: 120px;
}
.home-beneficts .benefict-info h1 {
  text-transform: uppercase;
  font-family: "ManropeBold";
  font-size: 40px;
}
.home-beneficts .benefict-info p {
  font-family: "ManropeBold";
  font-size: 18px;
}
.home-beneficts .benefict-info img {
  width: 67px;
}
@media (max-width: 992px) {
  .home-beneficts .benefict-info {
    margin-left: 0;
  }
  .home-beneficts .benefict-info h1 {
    font-size: 24px;
  }
  .home-beneficts .benefict-info p {
    font-size: 14px;
    width: 56%;
  }
}
@media (max-width: 992px) {
  .home-beneficts {
    height: 415px;
    min-height: 415px;
    margin: 0 -20px;
    background-attachment: unset;
    background-size: 184%;
  }
}
.view-testimonios-carrusel .testimony {
  padding: 20px 30px;
  text-align: left;
  z-index: 1;
}
@media (max-width: 768px) {
  .view-testimonios-carrusel .testimony {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .view-testimonios-carrusel {
    margin-top: 2rem !important;
  }
}
.container-form,
.img-form,
.layout-checkout-form {
  display: flex;
  /* Utiliza flexbox para el contenedor */
  flex-direction: column;
  justify-content: center;
  /* Centra horizontalmente */
  align-items: center;
  margin-top: 3rem;
  /* Centra verticalmente */
  margin-bottom: 4rem;
}
.card-form {
  width: 100%;
}
@media (min-width: 360px) and (max-width: 700px) {
  .card-form {
    width: 100%;
  }
}
.card-form .card-footer {
  padding: 20px;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.card-form .card-footer .error {
  width: fit-content;
  padding: 20px 15px;
  border-radius: 5px;
  margin: 0 auto;
  box-shadow: 0px 0px 10px 0px;
  font-family: "ManropeBold";
  font-size: 1.6rem;
}
.card-form .card-footer .btn-form-blue {
  margin-top: 0;
}
.card-form-summary {
  width: 60%;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .card-form-summary {
    width: 100%;
  }
}
.card-form-summary .card-header {
  padding: 20px;
  border-bottom: solid 1px #c9c9c9;
  border-radius: 8px 8px 0 0;
  background-color: #f6f8fb;
}
.card-form-summary .card-header .card-title {
  font-family: "ManropeBold";
  font-size: 20px;
  text-transform: uppercase;
  text-align: left;
  color: #022856;
}
.card-form-summary .card-body {
  padding: 20px;
}
.card-form-summary .card-body .btn-form-light {
  margin-top: 3rem;
}
.card-form-summary .card-body .categorys h4 {
  color: #022856;
  font-family: "ManropeBold";
  font-size: 20px;
}
.card-form-summary .card-body .categorys h5 {
  color: #022856;
  font-family: "ManropeBold";
  font-size: 18px;
  margin-top: 3rem;
}
.card-form-summary .card-body .categorys ul {
  list-style-type: none;
  margin-top: 2rem;
}
.card-form-summary .card-body .categorys ul li {
  display: flex;
  align-content: center;
  padding: 3px 12px;
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.card-form-summary .card-body .categorys ul li label,
.card-form-summary .card-body .categorys ul li span {
  color: #022856;
  font-size: 16px;
  font-family: "ManropeMedium";
}
.card-form-summary .card-body .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
@media (max-width: 991px) {
  .card-form-summary .card-body .actions {
    justify-content: space-between;
    margin-top: 3rem;
  }
}
.card-form-summary .card-body .actions .btn {
  min-width: 137px;
}
@media (max-width: 768px) {
  .card-form-summary .card-body .actions .btn {
    min-width: 35%;
    width: auto;
    font-size: 20px;
    margin-top: 0;
    border-radius: 10px;
  }
}
@media (min-width: 360px) and (max-width: 700px) {
  .card-form-summary {
    width: 100%;
  }
}
.commerce-checkout-flow-multistep-default {
  width: 100%;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information,
.commerce-checkout-flow-multistep-default .checkout-pane-review {
  width: 100%;
  border: 0;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-heading,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-heading {
  padding: 3rem 1.5rem;
  border-bottom: solid 1px #c9c9c9;
  background-color: transparent;
  margin-left: 1.5rem;
  margin-bottom: 3rem;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-heading .panel-title,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-heading .panel-title {
  font-family: "ManropeBold";
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
  text-transform: uppercase;
  padding: 0;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body {
  font-family: "ManropeMedium";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: space-between;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method .credit-card-form,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method .credit-card-form {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 992px) {
  .commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method .credit-card-form,
  .commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method .credit-card-form {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 2rem;
  }
}
@media (min-width: 993px) {
  .commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method .credit-card-form,
  .commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method .credit-card-form {
    flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information {
  position: relative;
  min-height: 1px;
  padding: 15px;
  border-radius: 10px;
  border: solid 1px #c9c9c9;
  background-color: #f6f8fb;
}
@media (max-width: 992px) {
  .commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information,
  .commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information {
    flex: 0 0 100%;
    max-width: 100%;
    margin-top: 2rem;
    margin-left: 15px;
    margin-right: 15px;
    max-width: calc(100% - 30px) !important;
  }
}
@media (min-width: 993px) {
  .commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information,
  .commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information {
    flex: 0 0 37%;
    max-width: 37%;
  }
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information .profile .field--name-address p.address,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #edit-payment-information-add-payment-method #edit-payment-information-add-payment-method-billing-information .profile .field--name-address p.address {
  line-height: 1.7;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body legend span,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body legend span {
  font-family: "ManropeMedium";
  font-size: 20px;
  color: #022856;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #qr_image,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #qr_image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body #qr_image canvas,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body #qr_image canvas {
  margin: 30px;
  border: 1px solid #02286D;
  border-radius: 10px;
  padding: 10px;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information .panel-body .btn,
.commerce-checkout-flow-multistep-default .checkout-pane-review .panel-body .btn {
  float: inline-end;
}
.commerce-checkout-flow-multistep-default .checkout-pane-payment-information label,
.commerce-checkout-flow-multistep-default .checkout-pane-review label {
  font-family: "ManropeMedium";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
}
.layout-checkout-form .layout-region {
  width: 100%;
}
.layout-checkout-form .checkout-pane-review .panel {
  box-shadow: none;
  max-width: 50%;
  margin: 0 auto;
  margin-bottom: 0px;
  border: 1px solid #c9c9c9;
  margin-bottom: 4rem;
  border-radius: 10px;
  padding: 0px;
}
@media (max-width: 768px) {
  .layout-checkout-form .checkout-pane-review .panel {
    max-width: 100%;
  }
}
.layout-checkout-form .checkout-pane-review .panel .panel-heading {
  background-color: #f6f8fb;
  margin: 0;
  border-radius: 10px 10px 0 0;
}
.layout-checkout-form .checkout-pane-review .panel .panel-heading .panel-title {
  margin: 0;
}
.layout-checkout-form .checkout-pane-review .panel .panel-heading .panel-title a {
  margin: 0 3px;
}
.layout-checkout-form .checkout-pane-review #edit-review-payment-information .panel-body article .field:not(:last-child) {
  border-bottom: 1px solid #c9c9c9;
  margin-bottom: 1rem;
  padding-bottom: 10px;
}
.layout-checkout-form .checkout-pane-review #edit-review-payment-information .panel-body article .profile .field--name-address p.address {
  line-height: 1.7;
}
.card-form h3,
.card-form-summary h3,
.checkout-pane-payment-information h3 {
  font-family: "SpaceGroteskBold";
}
.card-form #result-container,
.card-form-summary #result-container,
.checkout-pane-payment-information #result-container {
  background-color: #022856;
}
.card-form #result-container h4,
.card-form-summary #result-container h4,
.checkout-pane-payment-information #result-container h4,
.card-form #result-container .result,
.card-form-summary #result-container .result,
.checkout-pane-payment-information #result-container .result {
  color: white;
  font-family: "SpaceGroteskBold";
  margin-left: 1rem;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .card-form #result-container,
  .card-form-summary #result-container,
  .checkout-pane-payment-information #result-container {
    border-radius: 10px;
    margin-top: 2rem;
  }
}
.card-form #result-summary,
.card-form-summary #result-summary,
.checkout-pane-payment-information #result-summary {
  border-radius: 10px;
  background-color: #f6f8fb;
  padding: 10px;
  margin-top: 3rem;
  margin-left: -5px;
  margin-right: -5px;
}
.card-form #result-summary h4,
.card-form-summary #result-summary h4,
.checkout-pane-payment-information #result-summary h4 {
  color: #022856;
  font-family: "ManropeBold";
  font-size: 20px;
}
.card-form #result-summary h4.pull-right,
.card-form-summary #result-summary h4.pull-right,
.checkout-pane-payment-information #result-summary h4.pull-right {
  color: #ff6cf9;
}
#summary-container {
  display: none;
}
.custom-checkbox {
  display: flex;
  margin-bottom: 0.5rem;
  box-shadow: 0 3px 3px 1px rgba(60, 64, 67, 0.15);
  border-radius: 6px;
  padding: 6px;
}
.custom-checkbox input {
  margin-right: 1rem;
}
.custom-checkbox label {
  margin-bottom: 0;
}
.buttons {
  display: flex;
  width: 60%;
  margin-top: 1rem;
}
.buttons .btn-form-dark {
  width: 50%;
  background-color: black;
  color: white;
}
.buttons .btn-light {
  width: 50%;
}
.buttons #show-summary {
  width: 100%;
  background-color: black;
  color: white;
}
.btn-form-blue {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
}
.btn-form-blue:hover,
.btn-form-blue:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  .btn-form-blue {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
.btn-primary {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  width: auto;
  margin-top: 0;
}
.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  .btn-primary {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
.btn-danger {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  margin-top: 0;
  margin-left: 1rem;
  width: auto;
  border-radius: 10px !important;
  color: #ffffff;
  background-color: #d9534f;
  border-color: #d43f3a;
}
.btn-danger:hover,
.btn-danger:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  .btn-danger {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
.btn-danger:hover,
.btn-danger:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, #ffd0d0, #d9534f);
}
.btn-form-gray {
  border-radius: 10px;
  border: 0;
  background-color: #f3f4f6;
  color: #022856;
}
.btn-form-gray:hover,
.btn-form-gray:focus {
  color: #ffffff;
  background-color: gray;
}
.btn-form-gray::before {
  font-family: 'icomoon';
  content: "\e908";
  margin-right: 5px;
  vertical-align: middle;
  font-size: 130%;
}
.btn-form-gray.back::before {
  content: '\e90d';
  transform: rotate(180deg);
  display: inline-flex;
}
.btn-form-gray.edit {
  margin-top: 15px;
}
.btn-form-gray.edit::before {
  font-family: 'icomoon';
  content: "\e907";
  margin-right: 5px;
  vertical-align: middle;
  font-size: 130%;
}
.btn-form-light,
.address-book-edit-button {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #f6f8fb;
  color: #022856;
}
.btn-form-light:hover,
.address-book-edit-button:hover {
  background-color: #c9c9c9;
}
.btn-form-light:focus,
.address-book-edit-button:focus {
  color: #022856;
  background-color: #f6f8fb;
}
.btn-form-light.comienza,
.address-book-edit-button.comienza {
  border: 0;
  color: #022856;
  font-size: 18px;
  background-color: #ffffff;
  padding: 10px 24px;
}
.btn-form-light.comienza:hover,
.address-book-edit-button.comienza:hover {
  background-color: #ffffff;
}
.btn-form-light.comienza:focus,
.address-book-edit-button.comienza:focus {
  background-color: #ffffff;
}
.link-contact {
  border: 1px solid transparent;
  color: #ffffff;
  font-size: 18px;
  background-color: transparent;
  text-decoration: none;
  padding: 10px 24px;
}
.link-contact:hover {
  background-color: transparent;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.link-contact:focus {
  background-color: transparent;
}
.link-contact.lowlight {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.panel-default > .panel-heading {
  background-color: transparent;
  border-color: transparent;
}
.panel-default > .panel-heading .cat-color {
  width: 40px;
  min-height: 40px;
  border-radius: 50%;
  margin-right: 3rem;
}
.panel-title {
  font-size: 24px;
  font-weight: bold;
}
.card-cat-color {
  height: 15px;
  margin: -15px -15px 0;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 992px) {
  .card-cat-color {
    display: flex;
    margin: 0;
    border-radius: 10px;
    height: 20px;
    width: 30%;
  }
}
.mod-cat-color {
  width: 1.5rem;
  height: 90px;
  display: block;
  border-radius: 10px;
  margin-left: -24px;
}
@media (max-width: 992px) {
  .mod-cat-color {
    margin-left: 0;
    display: inline-flex;
  }
}
#accordion .card .free-try {
  font-size: 11px;
  clip-path: polygon(75% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
  background-image: linear-gradient(to right, #ffda60, #f2c841 50%, #fede75 75%, #ffda60);
  width: fit-content;
  padding: 7px 7px 7px 15px;
  border-radius: 0 5px 5px 0;
  font-family: "ManropeBold";
  position: absolute;
  right: 9px;
  margin-top: -148px;
}
@media (max-width: 992px) {
  #accordion .card .free-try {
    margin-top: -16px !important;
    right: 8px !important;
    height: 19px !important;
    width: 94px !important;
    padding-top: 0px !important;
    border-radius: 10px !important;
  }
}
#edit-actions #edit-actions-next {
  width: auto;
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  color: #ffffff;
  order: 2;
}
#edit-actions #returnPlan,
#edit-actions .link--previous {
  border-radius: 10px;
  margin-right: 1rem;
}
#edit-actions .link--previous {
  padding: 6px 3rem;
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #f6f8fb;
  color: #022856;
  margin-right: 10px;
  font-size: 16px;
  order: 1;
}
#edit-actions .link--previous:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}
.card-categorys {
  position: relative;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Sombra para darle profundidad */
  border-radius: 8px;
  margin-bottom: 1rem;
}
.card-categorys h3,
.card-categorys h4 {
  font-weight: bold;
}
.card-categorys a,
.card-categorys #hire-module {
  width: 100%;
}
.card-categorys .module-button-wrapper {
  margin-top: 1rem;
}
.card-categorys .card-header {
  border-radius: 8px 8px 0 0;
  padding: 28px 10px 24px 21px;
  border: solid 1px #ededed;
  background-color: #022562;
  color: white;
}
.card-categorys .card-body {
  padding: 1rem;
}
.card-categorys .card-body .card-title {
  font-family: "ManropeMedium";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
}
.card-categorys .card-body button {
  width: auto;
  border-radius: 3px;
  border: solid 1px #ededed;
  background-color: #f6f8fb;
  color: #ff6cf9;
}
.btn-dark {
  background-color: black;
  color: white;
}
.span-Cancelado {
  background-color: #c7bf0b;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.5rem 1rem;
  border-radius: 20px;
}
.span-Activado {
  background-color: #2b8d2b;
  color: white;
  position: absolute;
  top: 0;
  right: 0;
  margin: 0.5rem 1rem;
  border-radius: 20px;
}
.items-modules {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.items-modules span {
  font-size: larger;
}
.items-modules button {
  width: 40%;
}
.w-40 {
  width: 40% !important;
}
.w-60 {
  width: 60% !important;
}
.w-100 {
  width: 100%;
}
.container-email .title {
  background-color: #1eb4eb;
  color: white;
  margin: 1rem;
}
.container-email h4 {
  color: #1eb4eb;
  font-weight: bold;
}
.text-script {
  width: 100%;
  height: 8rem;
}
.checkout-pane-completion-message {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.checkout-pane-completion-message .chk-complete {
  min-height: 300px;
}
.checkout-pane-completion-message .chk-complete a {
  width: auto;
}
.checkout-pane-completion-message .chk-complete a span.glyphicon::before {
  color: white;
  font-weight: normal;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .checkout-pane-completion-message .chk-complete {
    width: 100%;
  }
  .checkout-pane-completion-message .chk-complete .btn-form-blue {
    width: auto;
  }
}
.checkout-pane-completion-message .chk-complete .panel {
  border-radius: 10px;
}
.checkout-pane-completion-message .chk-complete .panel .panel-heading {
  background-color: #022856;
  color: white !important;
  border: solid 1px #ededed;
  border-radius: 8px 8px 0 0;
}
.checkout-pane-completion-message .chk-complete .panel .panel-heading .panel-title {
  font-family: "ManropeMedium";
  font-size: 20px;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #fff !important;
}
@media (max-width: 768px) {
  .checkout-pane-completion-message .chk-complete .panel .panel-heading .panel-title {
    font-size: 18px;
  }
}
.checkout-pane-completion-message .chk-complete .panel .panel-body {
  padding: 4rem 2rem;
}
.checkout-pane-completion-message .chk-complete .bottom a {
  font-size: 16px;
}
.checkout-pane-completion-message .chk-complete .bottom p {
  color: #c9c9c9;
  font-size: 14px;
  margin-top: 2rem;
}
.seccion-title {
  color: white;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.custom-card {
  background-color: rgba(173, 216, 230, 0.5);
  /* Azul claro con transparencia */
  border: none;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(173, 216, 230, 0.5);
  height: 100%;
  color: white;
  /* Texto oscuro para contraste */
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.custom-card p {
  font-weight: bold;
}
.custom-card .field--name-field-imagen {
  display: flex;
  justify-content: center;
}
.custom-card .field--name-field-imagen img {
  width: 60%;
}
/* Ajustes responsivos */
@media (max-width: 768px) {
  .custom-card {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cards {
    display: flex;
    align-items: stretch;
  }
}
* {
  box-sizing: border-box;
}
.tabs-container {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
}
/* Style the tab */
.tab-menu {
  float: left;
  width: 30%;
}
/* Style the buttons that are used to open the tab content */
.tab-menu button {
  display: block;
  background-color: inherit;
  color: white;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}
/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #ccc;
}
/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 70%;
  border-left: none;
}
.tabcontent {
  display: none;
}
.tabcontent.active {
  display: block;
}
.footer-container {
  color: white;
  background: #022856;
  width: 99.1vw;
}
.footer-container .copyright {
  padding: 1.5rem 0;
  width: 99.1vw;
  margin: 0 auto;
}
.footer-container .copyright span {
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer-container .copyright span {
    width: 100%;
    margin: 3px auto;
  }
}
.footer-container .regions-footer {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  .footer-container .regions-footer {
    padding-bottom: 0;
    padding-top: 0;
  }
}
.footer-container .regions-footer footer > .row {
  justify-content: space-between;
  align-items: flex-start;
}
.footer-container .regions-footer footer > .row .footer-links {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .footer-container .regions-footer footer > .row .footer-links {
    max-width: 50%;
  }
}
.footer-container .regions-footer footer > .row .footer-links #block-asist-footerproduct .menu,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footercompany .menu,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footersupport .menu {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: 0;
  margin-top: 10px;
}
.footer-container .regions-footer footer > .row .footer-links #block-asist-footerproduct .menu li,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footercompany .menu li,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footersupport .menu li {
  width: 100%;
}
.footer-container .regions-footer footer > .row .footer-links #block-asist-footerproduct .menu li a,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footercompany .menu li a,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footersupport .menu li a {
  color: #ffffff;
  padding: 0;
  margin-bottom: 10px;
}
.footer-container .regions-footer footer > .row .footer-links #block-asist-footerproduct .menu li a:hover,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footercompany .menu li a:hover,
.footer-container .regions-footer footer > .row .footer-links #block-asist-footersupport .menu li a:hover {
  color: #6176fe;
  background-color: transparent;
}
.footer-container .regions-footer .footer-logo img {
  width: auto;
  height: 65px;
}
@media (max-width: 992px) {
  .footer-container {
    grid-row: 3/4;
  }
}
.space-footer {
  height: 2rem;
  background-image: linear-gradient(to right, #34f6cb, #6176fe 51%, #ff35f7de);
}
section .highlighted {
  position: relative;
  z-index: 5;
}
.section-init {
  color: white;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.section-init h1.seccion-title {
  font-size: 48px;
  font-family: "SpaceGroteskBold" !important;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  .section-init h1.seccion-title {
    font-size: 170%;
    text-align: left;
    line-height: 1.6;
    margin-top: 0;
  }
}
.section-init .block-buttons {
  width: 50%;
  justify-content: space-evenly;
  margin: 6rem auto;
}
@media (max-width: 768px) {
  .section-init .block-buttons {
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 5rem;
    flex-direction: column;
    margin-left: 0;
    align-items: start;
  }
  .section-init .block-buttons a {
    margin: 1rem 0;
  }
}
.section-init.testimony-wrapper .testimony-button {
  margin-top: -6rem;
}
.section-init p.reduced {
  width: 60%;
  margin: 2rem auto;
  font-size: 120%;
}
@media (max-width: 768px) {
  .section-init p.reduced {
    width: 100%;
    text-align: left;
    font-size: 100%;
    margin-top: 4rem;
  }
}
.section-init p.reduced.center {
  text-align: center;
}
.section-init h2.seccion-title {
  font-size: 40px;
  font-family: "SpaceGroteskBold";
}
.section-init h3.seccion-title {
  font-size: 34px;
  font-family: "SpaceGroteskBold";
}
@media (max-width: 768px) {
  .section-init h3.seccion-title {
    font-size: 26px;
    line-height: 1.5;
  }
}
.section-init.claves {
  padding: 8rem 0;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  flex-direction: column;
  align-content: center;
}
.section-init.claves h1 {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 992px) {
  .section-init.claves h1 {
    font-size: 34px;
    text-align: center;
  }
}
.section-init.claves h4 {
  font-size: 32px;
}
@media (max-width: 992px) {
  .section-init.claves h4 {
    font-size: 30px;
    text-align: center;
  }
}
.section-init.claves h3 {
  font-size: 24px;
  font-family: "SpaceGroteskMedium";
}
.section-init.claves img {
  border-radius: 10px;
}
.section-init.claves p {
  font-size: 16px;
  font-family: "ManropeMedium";
}
.section-init.claves .not-first {
  margin-top: 6rem;
}
@media (max-width: 992px) {
  .section-init.claves .mobile {
    margin-bottom: 6rem;
  }
}
@media (max-width: 992px) {
  .section-init.claves {
    margin: 0;
    padding: 8rem 0;
  }
}
.section-init.modules h2 {
  font-size: 40px;
}
.section-init.modules h2.sub-sgb {
  font-family: "SpaceGroteskBold";
}
.section-init.modules h2.sub-sgr {
  font-family: "SpaceGroteskRegular";
}
.section-init.modules ul {
  flex-wrap: wrap;
  flex-direction: column;
  font-size: 18px;
  margin-top: 3rem;
}
.section-init.modules ul li {
  margin: 5px 0;
}
.section-init.modules .pad-6 {
  padding-left: 6rem;
}
@media (max-width: 992px) {
  .section-init.modules {
    padding-bottom: 6rem;
  }
  .section-init.modules h1 {
    font-size: 36px !important;
    text-align: center;
  }
  .section-init.modules .sub-sgb {
    font-size: 32px;
  }
  .section-init.modules .sub-sgr {
    font-size: 32px;
  }
  .section-init.modules .order-xs-2 {
    order: 2;
  }
  .section-init.modules .pad-6 {
    order: 1;
    padding-left: 15px;
  }
}
.section-init.grad-left {
  background: radial-gradient(at left, #35daff4f, #ff35f74f 22%, transparent 52%);
  background-size: 60% 123%;
  background-repeat: no-repeat;
  overflow-x: visible;
  margin-left: -80px;
  margin-right: -80px;
  padding-right: 80px;
  padding-left: 80px;
}
@media (max-width: 768px) {
  .section-init.grad-left {
    background-size: 100% 123%;
  }
}
.section-init .grad-right {
  width: 100%;
  height: 320px;
  flex-grow: 0;
  transform: rotate(-180deg);
  opacity: 0.7;
  -webkit-filter: blur(200px);
  filter: blur(120px);
  background-image: linear-gradient(to bottom, rgba(255, 53, 247, 0.73) -4%, rgba(52, 246, 203, 0.41) 77%);
  position: absolute;
  right: 0;
  margin-top: 25%;
}
@media (max-width: 768px) {
  .section-init {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.nuestra-ia {
  z-index: 1;
}
@media (max-width: 992px) {
  .nuestra-ia {
    width: 100vw;
    margin-top: 0 !important;
  }
}
.full-init {
  color: white;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-left: -80px;
  margin-right: -80px;
}
.full-init.banner {
  min-height: 564px;
  background: #050c19;
  background-image: url("../images/277-min.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.full-init.banner.historia {
  min-height: 573px;
  padding: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  background-image: url("../images/historia-de-centauro-min.jpg");
}
@media (max-width: 992px) {
  .full-init.banner.historia {
    background-image: url("../images/historia de centaur mobile-min.jpg");
  }
  .full-init.banner.historia .seccion-title {
    font-size: 36px !important;
    line-height: 1.2;
  }
}
.full-init.banner.historia .seccion-title {
  font-size: 40px;
}
.full-init.banner.historia p {
  margin-top: 4rem;
}
.full-init.obvia {
  padding: 8rem 0;
  min-height: 580px;
  background: #050c19;
}
.full-init.obvia .table {
  width: 70%;
}
.full-init.obvia .table .t-cell {
  padding: 16px 24px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}
.full-init.obvia .table .t-cell.bg-gray {
  font-size: 15px;
  text-align: center;
  background-color: #303f44;
}
@media (max-width: 992px) {
  .full-init.obvia .table .t-cell.bg-gray {
    background-color: transparent;
    font-size: 14px;
  }
}
.full-init.obvia .table .t-cell.bg-gray-m {
  font-size: 18px;
  font-family: "ManropeBold";
}
@media (max-width: 992px) {
  .full-init.obvia .table .t-cell.bg-gray-m {
    background-color: #303f44;
    font-size: 14px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .full-init.obvia {
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .full-init.obvia h1 {
    text-align: center !important;
    font-size: 34px;
  }
  .full-init.obvia .table {
    width: 100%;
  }
}
.full-init.obvia.historia {
  padding: 0;
  margin: 0 -80px;
}
.full-init.obvia.historia .seccion-title {
  font-size: 40px;
}
@media (max-width: 992px) {
  .full-init.obvia.historia .seccion-title {
    font-size: 34px;
    text-align: left !important;
  }
}
.full-init.obvia.historia .table {
  width: 100%;
  margin-bottom: 0;
}
.full-init.obvia.historia .table .t-cell {
  border: 0;
  padding: 0;
}
.full-init.obvia.historia .table .text-izq {
  padding-left: 80px;
  padding-right: 60px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .full-init.obvia.historia .table .text-izq {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 4rem;
    order: 13;
    margin: 4rem 0;
  }
}
.full-init.obvia.historia .table .text-der {
  padding-left: 60px;
  padding-right: 80px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .full-init.obvia.historia .table .text-der {
    padding-left: 15px;
    padding-right: 15px;
    margin: 4rem 0;
  }
}
.full-init.obvia.historia .table p {
  margin-top: 2rem;
}
@media (max-width: 992px) {
  .full-init.obvia.historia {
    margin: 0 -20px;
  }
}
.full-init.unic {
  background-image: url("../images/50-min.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 700px;
  margin-top: 6rem;
  margin-bottom: 0;
  padding: 8rem 0;
}
@media (max-width: 992px) {
  .full-init.unic {
    background-image: url("../images/50 mobile-min.jpg");
    padding: 1rem 0;
    margin-top: 0;
    padding-bottom: 6rem;
    background-position: center;
  }
}
.full-init.unic.hitoria {
  min-height: 289px;
  background-color: #ffffff;
  background-image: none;
  margin: 0 -80px;
}
.full-init.unic.hitoria .seccion-title {
  font-size: 40px;
}
@media (max-width: 992px) {
  .full-init.unic.hitoria .seccion-title {
    font-size: 32px;
  }
}
.full-init.unic.hitoria .seccion-title,
.full-init.unic.hitoria p {
  color: black;
}
@media (max-width: 992px) {
  .full-init.unic.hitoria {
    margin: 0 -20px;
  }
  .full-init.unic.hitoria .col-xs-12 {
    margin: 4rem 0;
  }
}
@media (min-width: 993px) {
  .full-init .sep-v::before {
    content: "_______";
    transform: rotate(270deg);
    color: black;
    width: 0px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-left: -35px;
    margin-top: 80px;
    position: absolute;
  }
  .full-init .sep-v::after {
    content: "_______";
    transform: rotate(270deg);
    color: black;
    width: 0px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    right: 8px;
    margin-top: -15px;
    position: absolute;
  }
}
@media (max-width: 992px) {
  .full-init .sep-h::before {
    content: "_______";
    transform: rotate(360deg);
    color: black;
    width: 0px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-left: 30%;
    margin-top: -18%;
    position: absolute;
  }
  .full-init .sep-h::after {
    content: "_______";
    transform: rotate(360deg);
    color: black;
    width: 0px;
    display: block;
    font-size: 14px;
    font-weight: bold;
    right: 60%;
    bottom: -45px;
    position: absolute;
  }
}
.full-init.words {
  min-height: 540px;
  padding: 8rem 0;
  background: #050c19;
  margin-top: 0;
}
.full-init.words h2 {
  font-size: 20px;
  font-family: "ManropeRegular";
  line-height: 1.5;
}
.full-init.words h2 strong {
  font-size: 20px;
}
@media (min-width: 992px) {
  .full-init.words h2.w-lg-60 {
    width: 60%;
  }
}
.full-init.words .icon-user::before {
  font-size: 60px;
}
@media (max-width: 992px) {
  .full-init.words {
    padding-left: 15px;
    padding-right: 15px;
  }
  .full-init.words h3 {
    font-size: 24px;
  }
  .full-init.words h2 {
    font-size: 20px;
  }
}
.full-init.words.historia {
  background-color: #022856;
  background-image: linear-gradient(35deg, rgba(255, 255, 255, 0.15), transparent, transparent, rgba(255, 255, 255, 0.15));
  min-height: auto;
}
.full-init.words.historia .seccion-title {
  font-size: 40px;
  text-align: center;
  margin-top: 0;
}
.full-init.words.historia p {
  width: 52%;
  margin: 0 auto;
  text-align: center;
}
.full-init.words.historia .frame {
  display: flex;
  margin-top: 5rem;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  align-items: stretch;
  width: 50%;
  padding: 30px 60px;
  border-radius: 16px;
  box-shadow: 4px 4px 100px 0 rgba(0, 0, 0, 0.25);
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}
.full-init.words.historia .frame p {
  width: 100%;
}
.full-init.words.historia .btn-blue {
  display: flex;
  width: fit-content;
  margin-top: 4rem;
}
@media (max-width: 992px) {
  .full-init.words.historia .seccion-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 4rem;
  }
  .full-init.words.historia .frame,
  .full-init.words.historia p {
    width: 100%;
  }
}
.full-init.ready {
  min-height: 520px;
  padding: 8rem 80px;
  background: #022856;
  margin-top: 0;
  background-image: linear-gradient(35deg, rgba(255, 255, 255, 0.15), #022856, #022856, rgba(255, 255, 255, 0.15));
  display: flex;
  justify-content: center;
  align-items: center;
}
.full-init.ready .frame {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 64px;
  border-radius: 16px;
  box-shadow: 4px 4px 100px 0 rgba(0, 0, 0, 0.25);
  border: solid 1px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .full-init.ready {
    padding-left: 15px;
    padding-right: 15px;
  }
  .full-init.ready .frame {
    padding: 20px;
  }
  .full-init.ready .frame h1 {
    text-align: center;
    margin-bottom: 0;
  }
  .full-init.ready .frame .d-flex {
    flex-wrap: wrap;
  }
  .full-init.ready .frame a {
    display: block;
    width: 100%;
    margin: 10px 0 !important;
  }
}
.full-init .subtitle {
  font-size: 20px;
  font-family: "SpaceGroteskBold";
}
.full-init h1.seccion-title {
  font-size: 48px;
  font-family: "SpaceGroteskBold" !important;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.27;
  letter-spacing: normal;
}
@media (max-width: 768px) {
  .full-init h1.seccion-title {
    font-size: 170%;
    text-align: left;
    line-height: 1.6;
    margin-top: 0;
  }
}
.full-init.grad-left {
  background: radial-gradient(at left, #35daff4f, #ff35f74f 22%, transparent 52%);
  background-size: 60% 123%;
  background-repeat: no-repeat;
  overflow-x: visible;
  margin-left: -80px;
  padding-left: 80px;
}
@media (max-width: 768px) {
  .full-init.grad-left {
    background-size: 100% 123%;
  }
}
.full-init .grad-right {
  width: 100%;
  height: 320px;
  flex-grow: 0;
  transform: rotate(-180deg);
  opacity: 0.7;
  -webkit-filter: blur(200px);
  filter: blur(120px);
  background-image: linear-gradient(to bottom, rgba(255, 53, 247, 0.73) -4%, rgba(52, 246, 203, 0.41) 77%);
  position: absolute;
  right: 0;
  margin-top: 25%;
}
@media (max-width: 992px) {
  .full-init {
    width: 100vw;
    margin: 2rem -20px;
  }
}
@media (max-width: 992px) {
  .mobile {
    margin-bottom: 6rem;
  }
}
.login-page,
.forgot-password,
.register-page,
.reset-password {
  width: 100%;
  margin: 8rem auto 0 auto;
  padding: 0 80px;
  z-index: 2;
}
.login-page section,
.forgot-password section,
.register-page section,
.reset-password section {
  justify-content: center;
}
@media (max-width: 992px) {
  .login-page,
  .forgot-password,
  .register-page,
  .reset-password {
    padding: 0px;
    width: 100vw;
    margin-top: 0rem !important;
  }
  .login-page section,
  .forgot-password section,
  .register-page section,
  .reset-password section {
    margin: 0 auto;
  }
}
.login,
.register,
.planes-wrapper,
.user-pass-reset,
#user-form {
  margin-top: 3rem;
  margin-bottom: 4rem;
  background-color: white;
  /* Color de fondo del contenedor */
  padding: 20px;
  /* Espaciado interno */
  border-radius: 10px;
  /* Bordes redondeados */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Sombra suave */
}
.login img,
.register img,
.planes-wrapper img,
.user-pass-reset img,
#user-form img {
  margin-bottom: 20px;
}
.login input,
.register input,
.planes-wrapper input,
.user-pass-reset input,
#user-form input {
  height: 45px;
}
.login input[type="text"]:not(.iti__search-input),
.register input[type="text"]:not(.iti__search-input),
.planes-wrapper input[type="text"]:not(.iti__search-input),
.user-pass-reset input[type="text"]:not(.iti__search-input),
#user-form input[type="text"]:not(.iti__search-input),
.login input[type="password"],
.register input[type="password"],
.planes-wrapper input[type="password"],
.user-pass-reset input[type="password"],
#user-form input[type="password"],
.login input[type="tel"],
.register input[type="tel"],
.planes-wrapper input[type="tel"],
.user-pass-reset input[type="tel"],
#user-form input[type="tel"] {
  height: 52px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 4px;
  border: solid 1px #acacb1;
  font-family: "ManropeMedium";
  font-size: 16px;
  color: #8c8c8c;
}
.login .form-item-field-country select,
.register .form-item-field-country select,
.planes-wrapper .form-item-field-country select,
.user-pass-reset .form-item-field-country select,
#user-form .form-item-field-country select {
  height: 52px;
  line-height: 1.7;
}
.login .field--name-field-new-user,
.register .field--name-field-new-user,
.planes-wrapper .field--name-field-new-user,
.user-pass-reset .field--name-field-new-user,
#user-form .field--name-field-new-user {
  display: none;
}
.login .form-type-tel,
.register .form-type-tel,
.planes-wrapper .form-type-tel,
.user-pass-reset .form-type-tel,
#user-form .form-type-tel {
  width: 100%;
}
.login .iti__tel-input,
.register .iti__tel-input,
.planes-wrapper .iti__tel-input,
.user-pass-reset .iti__tel-input,
#user-form .iti__tel-input {
  width: 100%;
  padding-left: 75px !important;
}
.login .iti__country-container,
.register .iti__country-container,
.planes-wrapper .iti__country-container,
.user-pass-reset .iti__country-container,
#user-form .iti__country-container {
  max-width: 75px;
  width: 75px;
  text-align: center;
}
.login .iti__country-container .iti__selected-country,
.register .iti__country-container .iti__selected-country,
.planes-wrapper .iti__country-container .iti__selected-country,
.user-pass-reset .iti__country-container .iti__selected-country,
#user-form .iti__country-container .iti__selected-country {
  max-width: 75px;
  width: 75px;
}
.login .iti__country-container .iti__selected-country-primary,
.register .iti__country-container .iti__selected-country-primary,
.planes-wrapper .iti__country-container .iti__selected-country-primary,
.user-pass-reset .iti__country-container .iti__selected-country-primary,
#user-form .iti__country-container .iti__selected-country-primary {
  width: 100%;
  padding-left: 20px;
}
.login button:not(.iti__selected-country),
.register button:not(.iti__selected-country),
.planes-wrapper button:not(.iti__selected-country),
.user-pass-reset button:not(.iti__selected-country),
#user-form button:not(.iti__selected-country) {
  height: 52px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 30px 0 20px 0;
  padding: 13px 130px;
  border-radius: 5px;
  background-image: linear-gradient(to right, #ff35f7, #6176fe 50%, #34f6cb);
  font-family: "ManropeMedium" !important;
  font-size: 16px;
  color: #ffffff;
  border: 0;
  width: 100%;
}
.login button:not(.iti__selected-country) span,
.register button:not(.iti__selected-country) span,
.planes-wrapper button:not(.iti__selected-country) span,
.user-pass-reset button:not(.iti__selected-country) span,
#user-form button:not(.iti__selected-country) span {
  display: none;
}
.login button:not(.iti__selected-country):focus,
.register button:not(.iti__selected-country):focus,
.planes-wrapper button:not(.iti__selected-country):focus,
.user-pass-reset button:not(.iti__selected-country):focus,
#user-form button:not(.iti__selected-country):focus {
  outline: none;
}
.login h2,
.register h2,
.planes-wrapper h2,
.user-pass-reset h2,
#user-form h2 {
  text-align: center;
  font-family: "SpaceGroteskBold";
  font-stretch: normal;
  font-style: normal;
  line-height: 1.2;
  letter-spacing: normal;
  color: #022856;
  margin-bottom: 20px;
}
.login .register-link,
.register .register-link,
.planes-wrapper .register-link,
.user-pass-reset .register-link,
#user-form .register-link {
  display: flex;
  justify-content: center;
  font-family: "ManropeMedium";
  font-size: 16px;
  align-items: center;
}
.login .register-link a,
.register .register-link a,
.planes-wrapper .register-link a,
.user-pass-reset .register-link a,
#user-form .register-link a {
  color: #022856;
  font-size: 16px !important;
}
.login a[href^="/user/password"],
.register a[href^="/user/password"],
.planes-wrapper a[href^="/user/password"],
.user-pass-reset a[href^="/user/password"],
#user-form a[href^="/user/password"],
.login a[href^="/user/register"],
.register a[href^="/user/register"],
.planes-wrapper a[href^="/user/register"],
.user-pass-reset a[href^="/user/register"],
#user-form a[href^="/user/register"] {
  color: #3a3a3b;
  font-family: "ManropeMedium";
  font-size: 13px;
  text-decoration: none;
}
.login a[href^="/user/password"]:hover,
.register a[href^="/user/password"]:hover,
.planes-wrapper a[href^="/user/password"]:hover,
.user-pass-reset a[href^="/user/password"]:hover,
#user-form a[href^="/user/password"]:hover,
.login a[href^="/user/register"]:hover,
.register a[href^="/user/register"]:hover,
.planes-wrapper a[href^="/user/register"]:hover,
.user-pass-reset a[href^="/user/register"]:hover,
#user-form a[href^="/user/register"]:hover {
  color: #6176fe;
}
.login .sep-wrapper,
.register .sep-wrapper,
.planes-wrapper .sep-wrapper,
.user-pass-reset .sep-wrapper,
#user-form .sep-wrapper {
  display: grid;
  grid-template-columns: 1fr 30px 1fr;
  width: 100%;
  column-gap: 2rem;
  align-items: center;
  margin: 3rem auto;
}
.login .sep-wrapper .linesep,
.register .sep-wrapper .linesep,
.planes-wrapper .sep-wrapper .linesep,
.user-pass-reset .sep-wrapper .linesep,
#user-form .sep-wrapper .linesep {
  background: #3a3a3b;
  height: 1px;
}
.login .sep-wrapper .letter,
.register .sep-wrapper .letter,
.planes-wrapper .sep-wrapper .letter,
.user-pass-reset .sep-wrapper .letter,
#user-form .sep-wrapper .letter {
  color: #3a3a3b;
  text-align: center;
}
.login .google-login,
.register .google-login,
.planes-wrapper .google-login,
.user-pass-reset .google-login,
#user-form .google-login {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 3rem;
}
.login .google-login .btn-google,
.register .google-login .btn-google,
.planes-wrapper .google-login .btn-google,
.user-pass-reset .google-login .btn-google,
#user-form .google-login .btn-google {
  height: 52px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 4px;
  border: solid 1px #acacb1;
  font-family: "ManropeMedium";
  color: #3a3a3b;
  width: 100%;
}
.login .google-login .btn-google img,
.register .google-login .btn-google img,
.planes-wrapper .google-login .btn-google img,
.user-pass-reset .google-login .btn-google img,
#user-form .google-login .btn-google img {
  width: 44px;
  height: auto;
  vertical-align: middle;
  margin: 0;
  display: inline-block;
}
.login .form-item-field-user-picture-0 .preview img,
.register .form-item-field-user-picture-0 .preview img,
.planes-wrapper .form-item-field-user-picture-0 .preview img,
.user-pass-reset .form-item-field-user-picture-0 .preview img,
#user-form .form-item-field-user-picture-0 .preview img {
  border-radius: 50%;
  width: 130px;
  height: 130px;
}
.login .form-item-field-user-picture-0 .preview,
.register .form-item-field-user-picture-0 .preview,
.planes-wrapper .form-item-field-user-picture-0 .preview,
.user-pass-reset .form-item-field-user-picture-0 .preview,
#user-form .form-item-field-user-picture-0 .preview {
  padding: 0 0 0 15px;
}
.login .form-item-field-user-picture-0 .data > .form-type-textfield,
.register .form-item-field-user-picture-0 .data > .form-type-textfield,
.planes-wrapper .form-item-field-user-picture-0 .data > .form-type-textfield,
.user-pass-reset .form-item-field-user-picture-0 .data > .form-type-textfield,
#user-form .form-item-field-user-picture-0 .data > .form-type-textfield {
  display: none;
}
.login .form-item-field-user-picture-0 .data span.file,
.register .form-item-field-user-picture-0 .data span.file,
.planes-wrapper .form-item-field-user-picture-0 .data span.file,
.user-pass-reset .form-item-field-user-picture-0 .data span.file,
#user-form .form-item-field-user-picture-0 .data span.file {
  display: flex;
  gap: 10px;
  align-items: center;
  align-content: center;
}
.login .form-item-field-user-picture-0 .data button,
.register .form-item-field-user-picture-0 .data button,
.planes-wrapper .form-item-field-user-picture-0 .data button,
.user-pass-reset .form-item-field-user-picture-0 .data button,
#user-form .form-item-field-user-picture-0 .data button {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  margin-top: 1rem;
  height: 45px;
  width: 150px !important;
  padding: 5px 15px;
  background-image: none;
}
.login .form-item-field-user-picture-0 .data button:hover,
.register .form-item-field-user-picture-0 .data button:hover,
.planes-wrapper .form-item-field-user-picture-0 .data button:hover,
.user-pass-reset .form-item-field-user-picture-0 .data button:hover,
#user-form .form-item-field-user-picture-0 .data button:hover,
.login .form-item-field-user-picture-0 .data button:focus,
.register .form-item-field-user-picture-0 .data button:focus,
.planes-wrapper .form-item-field-user-picture-0 .data button:focus,
.user-pass-reset .form-item-field-user-picture-0 .data button:focus,
#user-form .form-item-field-user-picture-0 .data button:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  .login .form-item-field-user-picture-0 .data button,
  .register .form-item-field-user-picture-0 .data button,
  .planes-wrapper .form-item-field-user-picture-0 .data button,
  .user-pass-reset .form-item-field-user-picture-0 .data button,
  #user-form .form-item-field-user-picture-0 .data button {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
.login .form-item-field-user-picture-0 button[id*='edit-field-user-picture-0-upload-button'],
.register .form-item-field-user-picture-0 button[id*='edit-field-user-picture-0-upload-button'],
.planes-wrapper .form-item-field-user-picture-0 button[id*='edit-field-user-picture-0-upload-button'],
.user-pass-reset .form-item-field-user-picture-0 button[id*='edit-field-user-picture-0-upload-button'],
#user-form .form-item-field-user-picture-0 button[id*='edit-field-user-picture-0-upload-button'] {
  display: none;
}
.login .js-form-submit {
  width: 100%;
}
.register .form-item-field-user-picture-0 {
  display: none;
}
.register > form {
  margin-left: 4rem;
  margin-right: 4rem;
}
@media (max-width: 768px) {
  .register > form {
    margin: 0;
  }
}
.register > form #edit-actions {
  justify-content: center;
  display: flex;
}
.register > form #edit-actions .js-form-submit {
  width: 75%;
}
.register > form #edit-field-user-picture-0--description a {
  font-family: "ManropeRegular" !important;
  font-size: 100%;
}
.register > form #edit-field-user-picture-0--description a span {
  vertical-align: top;
}
.popover {
  font-family: "ManropeMedium";
}
.popover .popover-content ul li {
  font-family: "ManropeRegular";
  font-size: 80%;
}
.user-pass-reset p {
  font-size: 16px;
  color: #022856;
}
#accordion {
  max-height: 500px;
  min-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  #accordion {
    max-height: 600px;
    min-height: 300px;
  }
}
#accordion .panel {
  margin-bottom: 0;
  border-bottom: 1px solid #c9c9c9;
  border-left: none;
  /* Sin borde izquierdo */
  border-right: none;
  /* Sin borde derecho */
  border-top: none;
}
#accordion .panel .panel-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
#accordion .card {
  padding: 15px;
  border-radius: 10px;
  border: solid 1px #c9c9c9;
  margin-bottom: 3rem;
}
#accordion .card.paid {
  background-color: rgba(255, 53, 247, 0.04);
  border-color: #ff35f7de;
}
#accordion .card.paid .card-footer {
  justify-content: center !important;
}
@media (max-width: 992px) {
  #accordion .card {
    padding: 5px;
  }
}
#accordion .card .card-img-top {
  max-height: 142px;
  height: 142px;
  width: auto;
  margin: 0 auto;
  display: flex;
}
@media (max-width: 768px) {
  #accordion .card .card-img-top {
    max-height: 90px;
  }
}
#accordion .card .free-try {
  font-size: 11px;
  clip-path: polygon(75% 0%, 100% 0%, 100% 100%, 0% 100%, 10% 50%, 0% 0%);
  background-image: linear-gradient(to right, #ffda60, #f2c841 50%, #fede75 75%, #ffda60);
  width: fit-content;
  padding: 7px 7px 7px 15px;
  border-radius: 0 5px 5px 0;
  font-family: "ManropeBold";
  position: absolute;
  right: 9px;
  margin-top: -148px;
}
#accordion .card .card-title {
  color: #022856;
  font-family: "ManropeBold";
  font-size: 18px;
  margin-bottom: 5px;
  width: 100%;
}
#accordion .card .card-body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#accordion .card .more {
  text-decoration: none;
  color: #ff35f7de;
}
#accordion .card .more:hover {
  color: #6176fe;
}
#accordion .card .card-text {
  color: #ff35f7de;
  font-size: 14px;
  margin-bottom: 5px;
}
#accordion .card .card-footer {
  padding: 15px 0 0 0;
  border-top: 1px solid #c9c9c9;
  margin-top: 15px;
  justify-content: space-between;
}
#accordion .card .card-footer .btn {
  padding: 0px 12px;
  font-size: 16px;
}
#accordion .card .card-footer .btn:focus {
  outline: none;
}
#accordion .card .card-footer .btn:hover {
  color: #ffffff;
  background-color: #022856;
}
@media (max-width: 992px) {
  #accordion .card .card-footer {
    align-items: center;
    align-content: center;
  }
  #accordion .card .card-footer .btn {
    margin-bottom: 0;
  }
}
#accordion .card.mod-selected {
  border-color: #d944f8;
  border-width: 1px;
  box-shadow: 0 0 15px 0px #736ffe;
}
#accordion h4.panel-title {
  font-family: "ManropeBold";
  font-size: 18px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
  width: 100%;
  padding: 0;
}
#accordion h4.panel-title a {
  font-family: "ManropeBold";
  font-size: 18px;
  padding: 25px 25px 25px 0;
  text-decoration: none;
  width: 100%;
  display: block;
}
#accordion h4.panel-title a::after {
  content: "\e90d";
  transform: rotate(90deg);
  font-family: 'icomoon';
  float: right;
  margin-top: 5px;
}
#accordion h4.panel-title a[aria-expanded="true"]::after {
  content: "\e90d";
  transform: rotate(-90deg);
  font-family: 'icomoon';
  float: right;
  margin-top: 5px;
}
@media (max-width: 768px) {
  #accordion h4.panel-title a {
    font-size: 2rem;
  }
}
.text-subscription {
  font-family: "ManropeMedium";
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
}
#processPay {
  margin-left: 1rem;
}
.view-testimonios-carrusel {
  margin: 8rem auto;
}
.view-testimonios-carrusel .view-content {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.testimony {
  margin-top: 2rem;
  margin-bottom: 0.7rem;
  padding: 1.5rem;
  border-radius: 7px;
  box-shadow: 4px 4px 100px 0 rgba(0, 0, 0, 0.25);
  border: solid 0.5px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.testimony .testimony-body {
  font-family: "ManropeMedium";
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff;
  margin-bottom: 2rem;
  min-height: 66px;
}
.testimony .testimony-author .col-xs-3 {
  max-width: 68px;
}
.testimony .testimony-author .field--name-field-autor-img img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.testimony .testimony-author h4 {
  margin: 0;
}
.testimony .testimony-author h4 .field--name-field-name {
  font-family: "ManropeBold";
  font-size: 16px;
}
.testimony .testimony-author p,
.testimony .testimony-author .field--name-field-position {
  font-size: 14px;
}
.textos {
  font-family: "ManropeMedium";
  font-size: 18px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
}
.small-text {
  font-family: "ManropeMedium";
  font-size: 16px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: center;
  color: #022856;
}
.nav-tabs {
  border: none;
  /* Quitar bordes de la lista */
}
.nav-tabs .tab-content {
  padding-top: 3rem;
}
.nav-tabs > li {
  width: 50%;
}
.nav-tabs > li.active > a {
  border: none;
  /* Quitar borde del tab activo */
  border-bottom: 2px solid #007bff;
  /* Línea debajo del tab activo */
  color: #022856;
  /* Color del texto del tab activo (puedes cambiarlo) */
}
.nav-tabs > li > a {
  border: none;
  /* Quitar borde de los enlaces */
  border-radius: 0;
  /* Sin bordes redondeados */
  margin-bottom: -1px;
  /* Para que la línea esté justo debajo */
  color: #022856;
  /* Color del texto (puedes cambiarlo) */
  background-color: transparent;
  /* Fondo transparente */
}
.nav-tabs > li > a:hover {
  background-color: transparent;
  /* Sin cambio de fondo al hacer hover */
  color: #022856;
  /* Color del texto al hacer hover (puedes cambiarlo) */
}
.nav-tabs > li.active > a:focus {
  background-color: transparent;
  /* Sin cambio de fondo al hacer hover */
  color: #022856;
  /* Color del texto al hacer hover (puedes cambiarlo) */
}
.planes .main-content {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media (max-width: 992px) {
  .planes .main-content {
    padding: 0 10px;
  }
}
.borde-gris-derecho {
  border-right: 2px solid #c9c9c9;
  display: flex;
}
#selection-modules,
#summary-container,
#account-wrapper,
.container-pay,
.assistant-wrapper,
.node-edit-wrapper,
#general-wrapper,
.page-wrapper {
  margin-top: 6rem;
  margin-bottom: 6rem;
  background-color: white;
  /* Color de fondo del contenedor */
  padding: 20px;
  /* Espaciado interno */
  border-radius: 10px;
  /* Bordes redondeados */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* Sombra suave */
  z-index: 2;
  position: relative;
}
@media (max-width: 992px) {
  #selection-modules,
  #summary-container,
  #account-wrapper,
  .container-pay,
  .assistant-wrapper,
  .node-edit-wrapper,
  #general-wrapper,
  .page-wrapper {
    margin-top: 0;
    padding: 10px;
  }
  #selection-modules .row-wrapper,
  #summary-container .row-wrapper,
  #account-wrapper .row-wrapper,
  .container-pay .row-wrapper,
  .assistant-wrapper .row-wrapper,
  .node-edit-wrapper .row-wrapper,
  #general-wrapper .row-wrapper,
  .page-wrapper .row-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  #selection-modules .row-wrapper .content-wrapper.config,
  #summary-container .row-wrapper .content-wrapper.config,
  #account-wrapper .row-wrapper .content-wrapper.config,
  .container-pay .row-wrapper .content-wrapper.config,
  .assistant-wrapper .row-wrapper .content-wrapper.config,
  .node-edit-wrapper .row-wrapper .content-wrapper.config,
  #general-wrapper .row-wrapper .content-wrapper.config,
  .page-wrapper .row-wrapper .content-wrapper.config {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  #selection-modules .row-wrapper .content-wrapper.config .row.content,
  #summary-container .row-wrapper .content-wrapper.config .row.content,
  #account-wrapper .row-wrapper .content-wrapper.config .row.content,
  .container-pay .row-wrapper .content-wrapper.config .row.content,
  .assistant-wrapper .row-wrapper .content-wrapper.config .row.content,
  .node-edit-wrapper .row-wrapper .content-wrapper.config .row.content,
  #general-wrapper .row-wrapper .content-wrapper.config .row.content,
  .page-wrapper .row-wrapper .content-wrapper.config .row.content {
    margin: 0;
    justify-content: start !important;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  #selection-modules .row-wrapper .content-wrapper.config .row.content .node-module-files-form,
  #summary-container .row-wrapper .content-wrapper.config .row.content .node-module-files-form,
  #account-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form,
  .container-pay .row-wrapper .content-wrapper.config .row.content .node-module-files-form,
  .assistant-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form,
  .node-edit-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form,
  #general-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form,
  .page-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form {
    width: 100% !important;
    display: flex !important;
    padding: 0;
  }
  #selection-modules .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value,
  #summary-container .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value,
  #account-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value,
  .container-pay .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value,
  .assistant-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value,
  .node-edit-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value,
  #general-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value,
  .page-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form #edit-field-welcome-message-0-value {
    font-size: 14px;
    margin: 1rem auto;
  }
  #selection-modules .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root,
  #summary-container .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root,
  #account-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root,
  .container-pay .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root,
  .assistant-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root,
  .node-edit-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root,
  #general-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root,
  .page-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  #selection-modules .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard,
  #summary-container .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard,
  #account-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard,
  .container-pay .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard,
  .assistant-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard,
  .node-edit-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard,
  #general-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard,
  .page-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  #selection-modules .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner,
  #summary-container .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner,
  #account-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner,
  .container-pay .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner,
  .assistant-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner,
  .node-edit-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner,
  #general-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner,
  .page-wrapper .row-wrapper .content-wrapper.config .row.content .node-module-files-form .uppy-Root .uppy-Dashboard .uppy-Dashboard-inner {
    width: 100% !important;
    height: 320px !important;
    margin-bottom: 2rem;
  }
}
#selection-modules .step-mobile,
#summary-container .step-mobile,
#account-wrapper .step-mobile,
.container-pay .step-mobile,
.assistant-wrapper .step-mobile,
.node-edit-wrapper .step-mobile,
#general-wrapper .step-mobile,
.page-wrapper .step-mobile {
  justify-content: center;
  margin: 0;
}
#selection-modules .step-mobile .col-3,
#summary-container .step-mobile .col-3,
#account-wrapper .step-mobile .col-3,
.container-pay .step-mobile .col-3,
.assistant-wrapper .step-mobile .col-3,
.node-edit-wrapper .step-mobile .col-3,
#general-wrapper .step-mobile .col-3,
.page-wrapper .step-mobile .col-3 {
  align-content: center;
  font-size: 13px;
  font-family: "ManropeBold";
  padding-bottom: 10px;
}
@media (min-width: 769px) {
  #selection-modules .step-mobile .col-3,
  #summary-container .step-mobile .col-3,
  #account-wrapper .step-mobile .col-3,
  .container-pay .step-mobile .col-3,
  .assistant-wrapper .step-mobile .col-3,
  .node-edit-wrapper .step-mobile .col-3,
  #general-wrapper .step-mobile .col-3,
  .page-wrapper .step-mobile .col-3 {
    font-size: 16px;
  }
}
#selection-modules .step-mobile .col-3.normal,
#summary-container .step-mobile .col-3.normal,
#account-wrapper .step-mobile .col-3.normal,
.container-pay .step-mobile .col-3.normal,
.assistant-wrapper .step-mobile .col-3.normal,
.node-edit-wrapper .step-mobile .col-3.normal,
#general-wrapper .step-mobile .col-3.normal,
.page-wrapper .step-mobile .col-3.normal {
  border-bottom: 2px solid #c9c9c9;
  color: #c9c9c9;
}
#selection-modules .step-mobile .col-3.active,
#summary-container .step-mobile .col-3.active,
#account-wrapper .step-mobile .col-3.active,
.container-pay .step-mobile .col-3.active,
.assistant-wrapper .step-mobile .col-3.active,
.node-edit-wrapper .step-mobile .col-3.active,
#general-wrapper .step-mobile .col-3.active,
.page-wrapper .step-mobile .col-3.active {
  border-bottom: 2px solid #022856;
  color: #022856;
}
#selection-modules .step-mobile .col-3.active:before,
#summary-container .step-mobile .col-3.active:before,
#account-wrapper .step-mobile .col-3.active:before,
.container-pay .step-mobile .col-3.active:before,
.assistant-wrapper .step-mobile .col-3.active:before,
.node-edit-wrapper .step-mobile .col-3.active:before,
#general-wrapper .step-mobile .col-3.active:before,
.page-wrapper .step-mobile .col-3.active:before {
  content: "\e074";
  font-family: "Glyphicons Halflings";
  transform: rotate(45deg);
  position: absolute;
  bottom: -8px;
  width: 25%;
}
#selection-modules .step-mobile .col-3.active.pay:before,
#summary-container .step-mobile .col-3.active.pay:before,
#account-wrapper .step-mobile .col-3.active.pay:before,
.container-pay .step-mobile .col-3.active.pay:before,
.assistant-wrapper .step-mobile .col-3.active.pay:before,
.node-edit-wrapper .step-mobile .col-3.active.pay:before,
#general-wrapper .step-mobile .col-3.active.pay:before,
.page-wrapper .step-mobile .col-3.active.pay:before {
  width: 10%;
}
#account-wrapper,
#general-wrapper,
.page-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
#account-wrapper.edit-user,
#general-wrapper.edit-user,
.page-wrapper.edit-user {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
#account-wrapper.edit-user > .head-title,
#general-wrapper.edit-user > .head-title,
.page-wrapper.edit-user > .head-title {
  display: none;
}
#account-wrapper.edit-user .edit-profile .user-form,
#general-wrapper.edit-user .edit-profile .user-form,
.page-wrapper.edit-user .edit-profile .user-form {
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  padding-left: 5px;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-name,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-name,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-name,
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-surname,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-surname,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-surname {
  flex: 0 0 48%;
}
#account-wrapper.edit-user .edit-profile .user-form #edit-account,
#general-wrapper.edit-user .edit-profile .user-form #edit-account,
.page-wrapper.edit-user .edit-profile .user-form #edit-account {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
#account-wrapper.edit-user .edit-profile .user-form #edit-account .form-item-current-pass,
#general-wrapper.edit-user .edit-profile .user-form #edit-account .form-item-current-pass,
.page-wrapper.edit-user .edit-profile .user-form #edit-account .form-item-current-pass,
#account-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-email,
#general-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-email,
.page-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-email {
  flex: 0 0 48%;
}
#account-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm,
#general-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm,
.page-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
}
#account-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm .form-item-pass-pass1,
#general-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm .form-item-pass-pass1,
.page-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm .form-item-pass-pass1,
#account-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm .form-item-pass-pass2,
#general-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm .form-item-pass-pass2,
.page-wrapper.edit-user .edit-profile .user-form #edit-account .form-type-password-confirm .form-item-pass-pass2 {
  flex: 0 0 48%;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 {
  flex: 0 0 100%;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture > label,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture > label,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture > label,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 > label,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 > label,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 > label {
  margin-bottom: 2rem;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture > label::after,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture > label::after,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture > label::after,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 > label::after,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 > label::after,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 > label::after {
  content: ":";
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0 {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0 .description,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0 .description,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0 .description,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0 .description,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0 .description,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0 .description {
  margin-top: 2rem;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0 .description a,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0 .description a,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-item-field-user-picture-0 .description a,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0 .description a,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0 .description a,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-item-field-user-picture-0 .description a {
  font-family: "ManropeMedium" !important;
  font-size: 12px;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"],
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"],
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"],
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"],
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"],
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"] {
  border: none;
  box-shadow: none;
  padding: 0;
  max-width: 170px;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button {
  /* the button to select file */
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  content: '';
  margin: 0;
  height: 45px;
  border: 0;
  margin-right: 2rem;
  width: 170px;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:hover,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:hover,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:hover,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:hover,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:hover,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:hover,
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:focus,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:focus,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:focus,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:focus,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:focus,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  #account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
  #general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
  .page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
  #account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
  #general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button,
  .page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file input[type="file"]::file-selector-button {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .preview,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .preview,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .preview,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .preview,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .preview,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .preview {
  padding: 0 0 0 15px;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data > .form-type-textfield,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data > .form-type-textfield,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data > .form-type-textfield,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data > .form-type-textfield,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data > .form-type-textfield,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data > .form-type-textfield {
  display: none;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data span.file,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data span.file,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data span.file,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data span.file,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data span.file,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data span.file {
  display: flex;
  gap: 10px;
  align-items: center;
  align-content: center;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  margin-top: 1rem;
  height: 45px;
  width: 150px !important;
  padding: 5px 15px;
  background-image: none;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button:hover,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button:hover,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button:hover,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button:hover,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button:hover,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button:hover,
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button:focus,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button:focus,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button:focus,
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button:focus,
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button:focus,
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  #account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button,
  #general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button,
  .page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file .data button,
  #account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button,
  #general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button,
  .page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file .data button {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file button[id*='edit-field-user-picture-0-upload-button'],
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file button[id*='edit-field-user-picture-0-upload-button'],
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-user-picture .form-type-managed-file .form-managed-file button[id*='edit-field-user-picture-0-upload-button'],
#account-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file button[id*='edit-field-user-picture-0-upload-button'],
#general-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file button[id*='edit-field-user-picture-0-upload-button'],
.page-wrapper.edit-user .edit-profile .user-form .form-item-field-user-picture-0 .form-type-managed-file .form-managed-file button[id*='edit-field-user-picture-0-upload-button'] {
  display: none;
}
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-company-name,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-company-name,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-company-name,
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-country,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-country,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-country,
#account-wrapper.edit-user .edit-profile .user-form .field--name-field-phone,
#general-wrapper.edit-user .edit-profile .user-form .field--name-field-phone,
.page-wrapper.edit-user .edit-profile .user-form .field--name-field-phone {
  flex: 0 0 48%;
}
#account-wrapper.edit-user .edit-profile .user-form .form-actions,
#general-wrapper.edit-user .edit-profile .user-form .form-actions,
.page-wrapper.edit-user .edit-profile .user-form .form-actions {
  flex: 0 0 100%;
  display: flex;
  justify-content: end;
  border-top: 1px solid #ddd;
  margin-top: 2rem;
}
#account-wrapper.edit-user .edit-profile .user-form .form-actions button,
#general-wrapper.edit-user .edit-profile .user-form .form-actions button,
.page-wrapper.edit-user .edit-profile .user-form .form-actions button {
  border-radius: 10px;
  border: solid 1px #022856;
  background-color: #022856;
  margin-top: 3rem;
  width: 205px;
  color: white;
  background-image: none;
  height: 40px;
}
#account-wrapper.edit-user .edit-profile .user-form .form-actions button:hover,
#general-wrapper.edit-user .edit-profile .user-form .form-actions button:hover,
.page-wrapper.edit-user .edit-profile .user-form .form-actions button:hover,
#account-wrapper.edit-user .edit-profile .user-form .form-actions button:focus,
#general-wrapper.edit-user .edit-profile .user-form .form-actions button:focus,
.page-wrapper.edit-user .edit-profile .user-form .form-actions button:focus {
  color: #ffffff;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
}
@media (max-width: 768px) {
  #account-wrapper.edit-user .edit-profile .user-form .form-actions button,
  #general-wrapper.edit-user .edit-profile .user-form .form-actions button,
  .page-wrapper.edit-user .edit-profile .user-form .form-actions button {
    margin-top: 1rem;
    width: 150px;
    font-size: 2rem;
  }
}
#account-wrapper.edit-user .edit-profile .user-form .form-actions a.btn-form-light,
#general-wrapper.edit-user .edit-profile .user-form .form-actions a.btn-form-light,
.page-wrapper.edit-user .edit-profile .user-form .form-actions a.btn-form-light {
  height: 40px;
  margin-right: 15px;
  font-size: 16px;
  font-family: "ManropeMedium";
  border-radius: 10px;
  margin-top: 3rem;
}
@media (max-width: 992px) {
  #account-wrapper.edit-user .edit-profile .user-form .form-actions,
  #general-wrapper.edit-user .edit-profile .user-form .form-actions,
  .page-wrapper.edit-user .edit-profile .user-form .form-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
  #account-wrapper.edit-user .edit-profile .user-form .form-actions a.btn-form-light,
  #general-wrapper.edit-user .edit-profile .user-form .form-actions a.btn-form-light,
  .page-wrapper.edit-user .edit-profile .user-form .form-actions a.btn-form-light {
    width: 262px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  #account-wrapper.edit-user,
  #general-wrapper.edit-user,
  .page-wrapper.edit-user {
    max-width: 100%;
  }
  #account-wrapper.edit-user .head-title-col,
  #general-wrapper.edit-user .head-title-col,
  .page-wrapper.edit-user .head-title-col {
    text-align: center;
    margin-bottom: 3rem;
  }
  #account-wrapper.edit-user .edit-profile a.back,
  #general-wrapper.edit-user .edit-profile a.back,
  .page-wrapper.edit-user .edit-profile a.back {
    width: 100%;
    height: 52px;
    margin-top: -4rem;
    display: flex;
    align-content: ce;
    align-items: center;
    justify-content: center;
  }
  #account-wrapper.edit-user .user-form,
  #general-wrapper.edit-user .user-form,
  .page-wrapper.edit-user .user-form {
    padding: 0 !important;
  }
  #account-wrapper.edit-user .user-form .field--name-field-name,
  #general-wrapper.edit-user .user-form .field--name-field-name,
  .page-wrapper.edit-user .user-form .field--name-field-name,
  #account-wrapper.edit-user .user-form .field--name-field-surname,
  #general-wrapper.edit-user .user-form .field--name-field-surname,
  .page-wrapper.edit-user .user-form .field--name-field-surname,
  #account-wrapper.edit-user .user-form .form-item-current-pass,
  #general-wrapper.edit-user .user-form .form-item-current-pass,
  .page-wrapper.edit-user .user-form .form-item-current-pass,
  #account-wrapper.edit-user .user-form .form-type-email,
  #general-wrapper.edit-user .user-form .form-type-email,
  .page-wrapper.edit-user .user-form .form-type-email,
  #account-wrapper.edit-user .user-form .form-item-pass-pass1,
  #general-wrapper.edit-user .user-form .form-item-pass-pass1,
  .page-wrapper.edit-user .user-form .form-item-pass-pass1,
  #account-wrapper.edit-user .user-form .form-item-pass-pass2,
  #general-wrapper.edit-user .user-form .form-item-pass-pass2,
  .page-wrapper.edit-user .user-form .form-item-pass-pass2,
  #account-wrapper.edit-user .user-form .field--name-field-company-name,
  #general-wrapper.edit-user .user-form .field--name-field-company-name,
  .page-wrapper.edit-user .user-form .field--name-field-company-name,
  #account-wrapper.edit-user .user-form .field--name-field-country,
  #general-wrapper.edit-user .user-form .field--name-field-country,
  .page-wrapper.edit-user .user-form .field--name-field-country,
  #account-wrapper.edit-user .user-form .field--name-field-phone,
  #general-wrapper.edit-user .user-form .field--name-field-phone,
  .page-wrapper.edit-user .user-form .field--name-field-phone,
  #account-wrapper.edit-user .user-form .form-actions,
  #general-wrapper.edit-user .user-form .form-actions,
  .page-wrapper.edit-user .user-form .form-actions {
    flex: 0 0 100% !important;
  }
  #account-wrapper.edit-user .user-form #edit-current-pass--description,
  #general-wrapper.edit-user .user-form #edit-current-pass--description,
  .page-wrapper.edit-user .user-form #edit-current-pass--description {
    display: flex;
    flex-wrap: wrap;
  }
  #account-wrapper.edit-user .user-form #edit-current-pass--description > .placeholder,
  #general-wrapper.edit-user .user-form #edit-current-pass--description > .placeholder,
  .page-wrapper.edit-user .user-form #edit-current-pass--description > .placeholder,
  #account-wrapper.edit-user .user-form #edit-current-pass--description a,
  #general-wrapper.edit-user .user-form #edit-current-pass--description a,
  .page-wrapper.edit-user .user-form #edit-current-pass--description a {
    display: block;
    width: 100%;
    font-size: 12px;
    font-style: normal;
  }
}
#account-wrapper .my-account,
#general-wrapper .my-account,
.page-wrapper .my-account,
#account-wrapper .region-content,
#general-wrapper .region-content,
.page-wrapper .region-content {
  max-width: 100%;
}
#account-wrapper .my-account .account-info,
#general-wrapper .my-account .account-info,
.page-wrapper .my-account .account-info,
#account-wrapper .region-content .account-info,
#general-wrapper .region-content .account-info,
.page-wrapper .region-content .account-info,
#account-wrapper .my-account .content-wrapper,
#general-wrapper .my-account .content-wrapper,
.page-wrapper .my-account .content-wrapper,
#account-wrapper .region-content .content-wrapper,
#general-wrapper .region-content .content-wrapper,
.page-wrapper .region-content .content-wrapper {
  max-width: 100%;
}
#account-wrapper .my-account .account-info .head-title,
#general-wrapper .my-account .account-info .head-title,
.page-wrapper .my-account .account-info .head-title,
#account-wrapper .region-content .account-info .head-title,
#general-wrapper .region-content .account-info .head-title,
.page-wrapper .region-content .account-info .head-title,
#account-wrapper .my-account .content-wrapper .head-title,
#general-wrapper .my-account .content-wrapper .head-title,
.page-wrapper .my-account .content-wrapper .head-title,
#account-wrapper .region-content .content-wrapper .head-title,
#general-wrapper .region-content .content-wrapper .head-title,
.page-wrapper .region-content .content-wrapper .head-title {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 3rem;
}
#account-wrapper .my-account .account-info .user-info,
#general-wrapper .my-account .account-info .user-info,
.page-wrapper .my-account .account-info .user-info,
#account-wrapper .region-content .account-info .user-info,
#general-wrapper .region-content .account-info .user-info,
.page-wrapper .region-content .account-info .user-info,
#account-wrapper .my-account .content-wrapper .user-info,
#general-wrapper .my-account .content-wrapper .user-info,
.page-wrapper .my-account .content-wrapper .user-info,
#account-wrapper .region-content .content-wrapper .user-info,
#general-wrapper .region-content .content-wrapper .user-info,
.page-wrapper .region-content .content-wrapper .user-info {
  margin-bottom: 34px;
}
#account-wrapper .my-account .account-info .user-info .full-name,
#general-wrapper .my-account .account-info .user-info .full-name,
.page-wrapper .my-account .account-info .user-info .full-name,
#account-wrapper .region-content .account-info .user-info .full-name,
#general-wrapper .region-content .account-info .user-info .full-name,
.page-wrapper .region-content .account-info .user-info .full-name,
#account-wrapper .my-account .content-wrapper .user-info .full-name,
#general-wrapper .my-account .content-wrapper .user-info .full-name,
.page-wrapper .my-account .content-wrapper .user-info .full-name,
#account-wrapper .region-content .content-wrapper .user-info .full-name,
#general-wrapper .region-content .content-wrapper .user-info .full-name,
.page-wrapper .region-content .content-wrapper .user-info .full-name {
  color: #022856;
}
#account-wrapper .my-account .account-info .user-info img,
#general-wrapper .my-account .account-info .user-info img,
.page-wrapper .my-account .account-info .user-info img,
#account-wrapper .region-content .account-info .user-info img,
#general-wrapper .region-content .account-info .user-info img,
.page-wrapper .region-content .account-info .user-info img,
#account-wrapper .my-account .content-wrapper .user-info img,
#general-wrapper .my-account .content-wrapper .user-info img,
.page-wrapper .my-account .content-wrapper .user-info img,
#account-wrapper .region-content .content-wrapper .user-info img,
#general-wrapper .region-content .content-wrapper .user-info img,
.page-wrapper .region-content .content-wrapper .user-info img {
  border-radius: 50%;
}
#account-wrapper .my-account .account-info .form-item-,
#general-wrapper .my-account .account-info .form-item-,
.page-wrapper .my-account .account-info .form-item-,
#account-wrapper .region-content .account-info .form-item-,
#general-wrapper .region-content .account-info .form-item-,
.page-wrapper .region-content .account-info .form-item-,
#account-wrapper .my-account .content-wrapper .form-item-,
#general-wrapper .my-account .content-wrapper .form-item-,
.page-wrapper .my-account .content-wrapper .form-item-,
#account-wrapper .region-content .content-wrapper .form-item-,
#general-wrapper .region-content .content-wrapper .form-item-,
.page-wrapper .region-content .content-wrapper .form-item- {
  display: none;
}
#account-wrapper .my-account .account-info .field,
#general-wrapper .my-account .account-info .field,
.page-wrapper .my-account .account-info .field,
#account-wrapper .region-content .account-info .field,
#general-wrapper .region-content .account-info .field,
.page-wrapper .region-content .account-info .field,
#account-wrapper .my-account .content-wrapper .field,
#general-wrapper .my-account .content-wrapper .field,
.page-wrapper .my-account .content-wrapper .field,
#account-wrapper .region-content .content-wrapper .field,
#general-wrapper .region-content .content-wrapper .field,
.page-wrapper .region-content .content-wrapper .field {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid #ededed;
}
#account-wrapper .my-account .account-info .field .field--label,
#general-wrapper .my-account .account-info .field .field--label,
.page-wrapper .my-account .account-info .field .field--label,
#account-wrapper .region-content .account-info .field .field--label,
#general-wrapper .region-content .account-info .field .field--label,
.page-wrapper .region-content .account-info .field .field--label,
#account-wrapper .my-account .content-wrapper .field .field--label,
#general-wrapper .my-account .content-wrapper .field .field--label,
.page-wrapper .my-account .content-wrapper .field .field--label,
#account-wrapper .region-content .content-wrapper .field .field--label,
#general-wrapper .region-content .content-wrapper .field .field--label,
.page-wrapper .region-content .content-wrapper .field .field--label {
  font-size: 18px;
  font-family: "ManropeMedium";
  color: #022856;
  position: relative;
  width: 100%;
  max-width: 33%;
}
#account-wrapper .my-account .account-info .field .field--label::after,
#general-wrapper .my-account .account-info .field .field--label::after,
.page-wrapper .my-account .account-info .field .field--label::after,
#account-wrapper .region-content .account-info .field .field--label::after,
#general-wrapper .region-content .account-info .field .field--label::after,
.page-wrapper .region-content .account-info .field .field--label::after,
#account-wrapper .my-account .content-wrapper .field .field--label::after,
#general-wrapper .my-account .content-wrapper .field .field--label::after,
.page-wrapper .my-account .content-wrapper .field .field--label::after,
#account-wrapper .region-content .content-wrapper .field .field--label::after,
#general-wrapper .region-content .content-wrapper .field .field--label::after,
.page-wrapper .region-content .content-wrapper .field .field--label::after {
  content: ':';
}
#account-wrapper .my-account .account-info .field .field--item,
#general-wrapper .my-account .account-info .field .field--item,
.page-wrapper .my-account .account-info .field .field--item,
#account-wrapper .region-content .account-info .field .field--item,
#general-wrapper .region-content .account-info .field .field--item,
.page-wrapper .region-content .account-info .field .field--item,
#account-wrapper .my-account .content-wrapper .field .field--item,
#general-wrapper .my-account .content-wrapper .field .field--item,
.page-wrapper .my-account .content-wrapper .field .field--item,
#account-wrapper .region-content .content-wrapper .field .field--item,
#general-wrapper .region-content .content-wrapper .field .field--item,
.page-wrapper .region-content .content-wrapper .field .field--item {
  font-size: 18px;
  font-family: "ManropeRegular";
  color: #022856;
  position: relative;
  width: 100%;
  max-width: 66%;
}
#account-wrapper .my-account .account-info .field.field--name-field-user-picture,
#general-wrapper .my-account .account-info .field.field--name-field-user-picture,
.page-wrapper .my-account .account-info .field.field--name-field-user-picture,
#account-wrapper .region-content .account-info .field.field--name-field-user-picture,
#general-wrapper .region-content .account-info .field.field--name-field-user-picture,
.page-wrapper .region-content .account-info .field.field--name-field-user-picture,
#account-wrapper .my-account .content-wrapper .field.field--name-field-user-picture,
#general-wrapper .my-account .content-wrapper .field.field--name-field-user-picture,
.page-wrapper .my-account .content-wrapper .field.field--name-field-user-picture,
#account-wrapper .region-content .content-wrapper .field.field--name-field-user-picture,
#general-wrapper .region-content .content-wrapper .field.field--name-field-user-picture,
.page-wrapper .region-content .content-wrapper .field.field--name-field-user-picture {
  display: none;
}
@media (max-width: 768px) {
  #account-wrapper .my-account,
  #general-wrapper .my-account,
  .page-wrapper .my-account,
  #account-wrapper .region-content,
  #general-wrapper .region-content,
  .page-wrapper .region-content {
    max-width: 100%;
  }
  #account-wrapper .my-account .account-info .head-title h3,
  #general-wrapper .my-account .account-info .head-title h3,
  .page-wrapper .my-account .account-info .head-title h3,
  #account-wrapper .region-content .account-info .head-title h3,
  #general-wrapper .region-content .account-info .head-title h3,
  .page-wrapper .region-content .account-info .head-title h3 {
    text-align: center;
  }
  #account-wrapper .my-account .account-info .user-info .user-pic,
  #general-wrapper .my-account .account-info .user-info .user-pic,
  .page-wrapper .my-account .account-info .user-info .user-pic,
  #account-wrapper .region-content .account-info .user-info .user-pic,
  #general-wrapper .region-content .account-info .user-info .user-pic,
  .page-wrapper .region-content .account-info .user-info .user-pic {
    height: 72px;
  }
  #account-wrapper .my-account .account-info .user-info .user-pic img,
  #general-wrapper .my-account .account-info .user-info .user-pic img,
  .page-wrapper .my-account .account-info .user-info .user-pic img,
  #account-wrapper .region-content .account-info .user-info .user-pic img,
  #general-wrapper .region-content .account-info .user-info .user-pic img,
  .page-wrapper .region-content .account-info .user-info .user-pic img {
    width: 72px;
    height: 72px;
  }
  #account-wrapper .my-account .account-info .user-info .full-name,
  #general-wrapper .my-account .account-info .user-info .full-name,
  .page-wrapper .my-account .account-info .user-info .full-name,
  #account-wrapper .region-content .account-info .user-info .full-name,
  #general-wrapper .region-content .account-info .user-info .full-name,
  .page-wrapper .region-content .account-info .user-info .full-name {
    margin-top: 5px;
  }
  #account-wrapper .my-account .account-info .field,
  #general-wrapper .my-account .account-info .field,
  .page-wrapper .my-account .account-info .field,
  #account-wrapper .region-content .account-info .field,
  #general-wrapper .region-content .account-info .field,
  .page-wrapper .region-content .account-info .field {
    max-width: 100%;
  }
  #account-wrapper .my-account .account-info .field .field--label,
  #general-wrapper .my-account .account-info .field .field--label,
  .page-wrapper .my-account .account-info .field .field--label,
  #account-wrapper .region-content .account-info .field .field--label,
  #general-wrapper .region-content .account-info .field .field--label,
  .page-wrapper .region-content .account-info .field .field--label,
  #account-wrapper .my-account .account-info .field .field--item,
  #general-wrapper .my-account .account-info .field .field--item,
  .page-wrapper .my-account .account-info .field .field--item,
  #account-wrapper .region-content .account-info .field .field--item,
  #general-wrapper .region-content .account-info .field .field--item,
  .page-wrapper .region-content .account-info .field .field--item {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  #account-wrapper .my-account .view-libreta-de-direcciones .profile-address,
  #general-wrapper .my-account .view-libreta-de-direcciones .profile-address,
  .page-wrapper .my-account .view-libreta-de-direcciones .profile-address,
  #account-wrapper .region-content .view-libreta-de-direcciones .profile-address,
  #general-wrapper .region-content .view-libreta-de-direcciones .profile-address,
  .page-wrapper .region-content .view-libreta-de-direcciones .profile-address {
    padding: 10px;
    flex-direction: column;
  }
  #account-wrapper .my-account .view-libreta-de-direcciones .profile-address .actions,
  #general-wrapper .my-account .view-libreta-de-direcciones .profile-address .actions,
  .page-wrapper .my-account .view-libreta-de-direcciones .profile-address .actions,
  #account-wrapper .region-content .view-libreta-de-direcciones .profile-address .actions,
  #general-wrapper .region-content .view-libreta-de-direcciones .profile-address .actions,
  .page-wrapper .region-content .view-libreta-de-direcciones .profile-address .actions {
    gap: 1rem;
    margin-top: 2rem;
  }
  #account-wrapper .my-account .view-libreta-de-direcciones .profile-address .actions .set-default-label,
  #general-wrapper .my-account .view-libreta-de-direcciones .profile-address .actions .set-default-label,
  .page-wrapper .my-account .view-libreta-de-direcciones .profile-address .actions .set-default-label,
  #account-wrapper .region-content .view-libreta-de-direcciones .profile-address .actions .set-default-label,
  #general-wrapper .region-content .view-libreta-de-direcciones .profile-address .actions .set-default-label,
  .page-wrapper .region-content .view-libreta-de-direcciones .profile-address .actions .set-default-label {
    font-size: 1.3rem;
  }
}
#account-wrapper .subscriptions .head-title,
#general-wrapper .subscriptions .head-title,
.page-wrapper .subscriptions .head-title,
#account-wrapper .modules .head-title,
#general-wrapper .modules .head-title,
.page-wrapper .modules .head-title,
#account-wrapper .asistents .head-title,
#general-wrapper .asistents .head-title,
.page-wrapper .asistents .head-title,
#account-wrapper .orders .head-title,
#general-wrapper .orders .head-title,
.page-wrapper .orders .head-title,
#account-wrapper .order-details .head-title,
#general-wrapper .order-details .head-title,
.page-wrapper .order-details .head-title,
#account-wrapper .direction .head-title,
#general-wrapper .direction .head-title,
.page-wrapper .direction .head-title,
#account-wrapper .conversation .head-title,
#general-wrapper .conversation .head-title,
.page-wrapper .conversation .head-title,
#account-wrapper .content-wrapper .head-title,
#general-wrapper .content-wrapper .head-title,
.page-wrapper .content-wrapper .head-title,
#account-wrapper .pagina-basica .head-title,
#general-wrapper .pagina-basica .head-title,
.page-wrapper .pagina-basica .head-title {
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  #account-wrapper .subscriptions .head-title,
  #general-wrapper .subscriptions .head-title,
  .page-wrapper .subscriptions .head-title,
  #account-wrapper .modules .head-title,
  #general-wrapper .modules .head-title,
  .page-wrapper .modules .head-title,
  #account-wrapper .asistents .head-title,
  #general-wrapper .asistents .head-title,
  .page-wrapper .asistents .head-title,
  #account-wrapper .orders .head-title,
  #general-wrapper .orders .head-title,
  .page-wrapper .orders .head-title,
  #account-wrapper .order-details .head-title,
  #general-wrapper .order-details .head-title,
  .page-wrapper .order-details .head-title,
  #account-wrapper .direction .head-title,
  #general-wrapper .direction .head-title,
  .page-wrapper .direction .head-title,
  #account-wrapper .conversation .head-title,
  #general-wrapper .conversation .head-title,
  .page-wrapper .conversation .head-title,
  #account-wrapper .content-wrapper .head-title,
  #general-wrapper .content-wrapper .head-title,
  .page-wrapper .content-wrapper .head-title,
  #account-wrapper .pagina-basica .head-title,
  #general-wrapper .pagina-basica .head-title,
  .page-wrapper .pagina-basica .head-title {
    margin-bottom: 0;
    border-bottom: none;
  }
  #account-wrapper .subscriptions .head-title .create_asist,
  #general-wrapper .subscriptions .head-title .create_asist,
  .page-wrapper .subscriptions .head-title .create_asist,
  #account-wrapper .modules .head-title .create_asist,
  #general-wrapper .modules .head-title .create_asist,
  .page-wrapper .modules .head-title .create_asist,
  #account-wrapper .asistents .head-title .create_asist,
  #general-wrapper .asistents .head-title .create_asist,
  .page-wrapper .asistents .head-title .create_asist,
  #account-wrapper .orders .head-title .create_asist,
  #general-wrapper .orders .head-title .create_asist,
  .page-wrapper .orders .head-title .create_asist,
  #account-wrapper .order-details .head-title .create_asist,
  #general-wrapper .order-details .head-title .create_asist,
  .page-wrapper .order-details .head-title .create_asist,
  #account-wrapper .direction .head-title .create_asist,
  #general-wrapper .direction .head-title .create_asist,
  .page-wrapper .direction .head-title .create_asist,
  #account-wrapper .conversation .head-title .create_asist,
  #general-wrapper .conversation .head-title .create_asist,
  .page-wrapper .conversation .head-title .create_asist,
  #account-wrapper .content-wrapper .head-title .create_asist,
  #general-wrapper .content-wrapper .head-title .create_asist,
  .page-wrapper .content-wrapper .head-title .create_asist,
  #account-wrapper .pagina-basica .head-title .create_asist,
  #general-wrapper .pagina-basica .head-title .create_asist,
  .page-wrapper .pagina-basica .head-title .create_asist {
    border-top: 1px solid #ededed;
    padding-top: 2rem;
  }
  #account-wrapper .subscriptions .head-title .create_asist .create-asist,
  #general-wrapper .subscriptions .head-title .create_asist .create-asist,
  .page-wrapper .subscriptions .head-title .create_asist .create-asist,
  #account-wrapper .modules .head-title .create_asist .create-asist,
  #general-wrapper .modules .head-title .create_asist .create-asist,
  .page-wrapper .modules .head-title .create_asist .create-asist,
  #account-wrapper .asistents .head-title .create_asist .create-asist,
  #general-wrapper .asistents .head-title .create_asist .create-asist,
  .page-wrapper .asistents .head-title .create_asist .create-asist,
  #account-wrapper .orders .head-title .create_asist .create-asist,
  #general-wrapper .orders .head-title .create_asist .create-asist,
  .page-wrapper .orders .head-title .create_asist .create-asist,
  #account-wrapper .order-details .head-title .create_asist .create-asist,
  #general-wrapper .order-details .head-title .create_asist .create-asist,
  .page-wrapper .order-details .head-title .create_asist .create-asist,
  #account-wrapper .direction .head-title .create_asist .create-asist,
  #general-wrapper .direction .head-title .create_asist .create-asist,
  .page-wrapper .direction .head-title .create_asist .create-asist,
  #account-wrapper .conversation .head-title .create_asist .create-asist,
  #general-wrapper .conversation .head-title .create_asist .create-asist,
  .page-wrapper .conversation .head-title .create_asist .create-asist,
  #account-wrapper .content-wrapper .head-title .create_asist .create-asist,
  #general-wrapper .content-wrapper .head-title .create_asist .create-asist,
  .page-wrapper .content-wrapper .head-title .create_asist .create-asist,
  #account-wrapper .pagina-basica .head-title .create_asist .create-asist,
  #general-wrapper .pagina-basica .head-title .create_asist .create-asist,
  .page-wrapper .pagina-basica .head-title .create_asist .create-asist {
    width: auto;
  }
}
#account-wrapper .subscriptions .head-title > h3,
#general-wrapper .subscriptions .head-title > h3,
.page-wrapper .subscriptions .head-title > h3,
#account-wrapper .modules .head-title > h3,
#general-wrapper .modules .head-title > h3,
.page-wrapper .modules .head-title > h3,
#account-wrapper .asistents .head-title > h3,
#general-wrapper .asistents .head-title > h3,
.page-wrapper .asistents .head-title > h3,
#account-wrapper .orders .head-title > h3,
#general-wrapper .orders .head-title > h3,
.page-wrapper .orders .head-title > h3,
#account-wrapper .order-details .head-title > h3,
#general-wrapper .order-details .head-title > h3,
.page-wrapper .order-details .head-title > h3,
#account-wrapper .direction .head-title > h3,
#general-wrapper .direction .head-title > h3,
.page-wrapper .direction .head-title > h3,
#account-wrapper .conversation .head-title > h3,
#general-wrapper .conversation .head-title > h3,
.page-wrapper .conversation .head-title > h3,
#account-wrapper .content-wrapper .head-title > h3,
#general-wrapper .content-wrapper .head-title > h3,
.page-wrapper .content-wrapper .head-title > h3,
#account-wrapper .pagina-basica .head-title > h3,
#general-wrapper .pagina-basica .head-title > h3,
.page-wrapper .pagina-basica .head-title > h3 {
  font-family: "ManropeBold";
  color: #022856;
  font-weight: bold;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  font-size: 24px;
}
@media (max-width: 768px) {
  #account-wrapper .subscriptions .head-title > h3,
  #general-wrapper .subscriptions .head-title > h3,
  .page-wrapper .subscriptions .head-title > h3,
  #account-wrapper .modules .head-title > h3,
  #general-wrapper .modules .head-title > h3,
  .page-wrapper .modules .head-title > h3,
  #account-wrapper .asistents .head-title > h3,
  #general-wrapper .asistents .head-title > h3,
  .page-wrapper .asistents .head-title > h3,
  #account-wrapper .orders .head-title > h3,
  #general-wrapper .orders .head-title > h3,
  .page-wrapper .orders .head-title > h3,
  #account-wrapper .order-details .head-title > h3,
  #general-wrapper .order-details .head-title > h3,
  .page-wrapper .order-details .head-title > h3,
  #account-wrapper .direction .head-title > h3,
  #general-wrapper .direction .head-title > h3,
  .page-wrapper .direction .head-title > h3,
  #account-wrapper .conversation .head-title > h3,
  #general-wrapper .conversation .head-title > h3,
  .page-wrapper .conversation .head-title > h3,
  #account-wrapper .content-wrapper .head-title > h3,
  #general-wrapper .content-wrapper .head-title > h3,
  .page-wrapper .content-wrapper .head-title > h3,
  #account-wrapper .pagina-basica .head-title > h3,
  #general-wrapper .pagina-basica .head-title > h3,
  .page-wrapper .pagina-basica .head-title > h3 {
    text-align: center;
  }
}
#account-wrapper .subscriptions .head-title > p,
#general-wrapper .subscriptions .head-title > p,
.page-wrapper .subscriptions .head-title > p,
#account-wrapper .modules .head-title > p,
#general-wrapper .modules .head-title > p,
.page-wrapper .modules .head-title > p,
#account-wrapper .asistents .head-title > p,
#general-wrapper .asistents .head-title > p,
.page-wrapper .asistents .head-title > p,
#account-wrapper .orders .head-title > p,
#general-wrapper .orders .head-title > p,
.page-wrapper .orders .head-title > p,
#account-wrapper .order-details .head-title > p,
#general-wrapper .order-details .head-title > p,
.page-wrapper .order-details .head-title > p,
#account-wrapper .direction .head-title > p,
#general-wrapper .direction .head-title > p,
.page-wrapper .direction .head-title > p,
#account-wrapper .conversation .head-title > p,
#general-wrapper .conversation .head-title > p,
.page-wrapper .conversation .head-title > p,
#account-wrapper .content-wrapper .head-title > p,
#general-wrapper .content-wrapper .head-title > p,
.page-wrapper .content-wrapper .head-title > p,
#account-wrapper .pagina-basica .head-title > p,
#general-wrapper .pagina-basica .head-title > p,
.page-wrapper .pagina-basica .head-title > p {
  font-family: "ManropeRegular";
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #8c8c8c;
}
@media (max-width: 768px) {
  #account-wrapper .subscriptions .head-title > p,
  #general-wrapper .subscriptions .head-title > p,
  .page-wrapper .subscriptions .head-title > p,
  #account-wrapper .modules .head-title > p,
  #general-wrapper .modules .head-title > p,
  .page-wrapper .modules .head-title > p,
  #account-wrapper .asistents .head-title > p,
  #general-wrapper .asistents .head-title > p,
  .page-wrapper .asistents .head-title > p,
  #account-wrapper .orders .head-title > p,
  #general-wrapper .orders .head-title > p,
  .page-wrapper .orders .head-title > p,
  #account-wrapper .order-details .head-title > p,
  #general-wrapper .order-details .head-title > p,
  .page-wrapper .order-details .head-title > p,
  #account-wrapper .direction .head-title > p,
  #general-wrapper .direction .head-title > p,
  .page-wrapper .direction .head-title > p,
  #account-wrapper .conversation .head-title > p,
  #general-wrapper .conversation .head-title > p,
  .page-wrapper .conversation .head-title > p,
  #account-wrapper .content-wrapper .head-title > p,
  #general-wrapper .content-wrapper .head-title > p,
  .page-wrapper .content-wrapper .head-title > p,
  #account-wrapper .pagina-basica .head-title > p,
  #general-wrapper .pagina-basica .head-title > p,
  .page-wrapper .pagina-basica .head-title > p {
    text-align: center;
  }
}
#account-wrapper .subscriptions .head-title .create-asist,
#general-wrapper .subscriptions .head-title .create-asist,
.page-wrapper .subscriptions .head-title .create-asist,
#account-wrapper .modules .head-title .create-asist,
#general-wrapper .modules .head-title .create-asist,
.page-wrapper .modules .head-title .create-asist,
#account-wrapper .asistents .head-title .create-asist,
#general-wrapper .asistents .head-title .create-asist,
.page-wrapper .asistents .head-title .create-asist,
#account-wrapper .orders .head-title .create-asist,
#general-wrapper .orders .head-title .create-asist,
.page-wrapper .orders .head-title .create-asist,
#account-wrapper .order-details .head-title .create-asist,
#general-wrapper .order-details .head-title .create-asist,
.page-wrapper .order-details .head-title .create-asist,
#account-wrapper .direction .head-title .create-asist,
#general-wrapper .direction .head-title .create-asist,
.page-wrapper .direction .head-title .create-asist,
#account-wrapper .conversation .head-title .create-asist,
#general-wrapper .conversation .head-title .create-asist,
.page-wrapper .conversation .head-title .create-asist,
#account-wrapper .content-wrapper .head-title .create-asist,
#general-wrapper .content-wrapper .head-title .create-asist,
.page-wrapper .content-wrapper .head-title .create-asist,
#account-wrapper .pagina-basica .head-title .create-asist,
#general-wrapper .pagina-basica .head-title .create-asist,
.page-wrapper .pagina-basica .head-title .create-asist {
  display: flex;
  justify-content: end;
}
@media (max-width: 992px) {
  #account-wrapper .subscriptions .head-title .create-asist,
  #general-wrapper .subscriptions .head-title .create-asist,
  .page-wrapper .subscriptions .head-title .create-asist,
  #account-wrapper .modules .head-title .create-asist,
  #general-wrapper .modules .head-title .create-asist,
  .page-wrapper .modules .head-title .create-asist,
  #account-wrapper .asistents .head-title .create-asist,
  #general-wrapper .asistents .head-title .create-asist,
  .page-wrapper .asistents .head-title .create-asist,
  #account-wrapper .orders .head-title .create-asist,
  #general-wrapper .orders .head-title .create-asist,
  .page-wrapper .orders .head-title .create-asist,
  #account-wrapper .order-details .head-title .create-asist,
  #general-wrapper .order-details .head-title .create-asist,
  .page-wrapper .order-details .head-title .create-asist,
  #account-wrapper .direction .head-title .create-asist,
  #general-wrapper .direction .head-title .create-asist,
  .page-wrapper .direction .head-title .create-asist,
  #account-wrapper .conversation .head-title .create-asist,
  #general-wrapper .conversation .head-title .create-asist,
  .page-wrapper .conversation .head-title .create-asist,
  #account-wrapper .content-wrapper .head-title .create-asist,
  #general-wrapper .content-wrapper .head-title .create-asist,
  .page-wrapper .content-wrapper .head-title .create-asist,
  #account-wrapper .pagina-basica .head-title .create-asist,
  #general-wrapper .pagina-basica .head-title .create-asist,
  .page-wrapper .pagina-basica .head-title .create-asist {
    justify-content: center;
  }
}
#account-wrapper .subscriptions .customer-information,
#general-wrapper .subscriptions .customer-information,
.page-wrapper .subscriptions .customer-information,
#account-wrapper .modules .customer-information,
#general-wrapper .modules .customer-information,
.page-wrapper .modules .customer-information,
#account-wrapper .asistents .customer-information,
#general-wrapper .asistents .customer-information,
.page-wrapper .asistents .customer-information,
#account-wrapper .orders .customer-information,
#general-wrapper .orders .customer-information,
.page-wrapper .orders .customer-information,
#account-wrapper .order-details .customer-information,
#general-wrapper .order-details .customer-information,
.page-wrapper .order-details .customer-information,
#account-wrapper .direction .customer-information,
#general-wrapper .direction .customer-information,
.page-wrapper .direction .customer-information,
#account-wrapper .conversation .customer-information,
#general-wrapper .conversation .customer-information,
.page-wrapper .conversation .customer-information,
#account-wrapper .content-wrapper .customer-information,
#general-wrapper .content-wrapper .customer-information,
.page-wrapper .content-wrapper .customer-information,
#account-wrapper .pagina-basica .customer-information,
#general-wrapper .pagina-basica .customer-information,
.page-wrapper .pagina-basica .customer-information,
#account-wrapper .subscriptions .order-information,
#general-wrapper .subscriptions .order-information,
.page-wrapper .subscriptions .order-information,
#account-wrapper .modules .order-information,
#general-wrapper .modules .order-information,
.page-wrapper .modules .order-information,
#account-wrapper .asistents .order-information,
#general-wrapper .asistents .order-information,
.page-wrapper .asistents .order-information,
#account-wrapper .orders .order-information,
#general-wrapper .orders .order-information,
.page-wrapper .orders .order-information,
#account-wrapper .order-details .order-information,
#general-wrapper .order-details .order-information,
.page-wrapper .order-details .order-information,
#account-wrapper .direction .order-information,
#general-wrapper .direction .order-information,
.page-wrapper .direction .order-information,
#account-wrapper .conversation .order-information,
#general-wrapper .conversation .order-information,
.page-wrapper .conversation .order-information,
#account-wrapper .content-wrapper .order-information,
#general-wrapper .content-wrapper .order-information,
.page-wrapper .content-wrapper .order-information,
#account-wrapper .pagina-basica .order-information,
#general-wrapper .pagina-basica .order-information,
.page-wrapper .pagina-basica .order-information {
  padding-bottom: 16px;
  border-bottom: 1px solid #ededed;
  margin-bottom: 3rem;
}
#account-wrapper .subscriptions .customer-information .detail-title,
#general-wrapper .subscriptions .customer-information .detail-title,
.page-wrapper .subscriptions .customer-information .detail-title,
#account-wrapper .modules .customer-information .detail-title,
#general-wrapper .modules .customer-information .detail-title,
.page-wrapper .modules .customer-information .detail-title,
#account-wrapper .asistents .customer-information .detail-title,
#general-wrapper .asistents .customer-information .detail-title,
.page-wrapper .asistents .customer-information .detail-title,
#account-wrapper .orders .customer-information .detail-title,
#general-wrapper .orders .customer-information .detail-title,
.page-wrapper .orders .customer-information .detail-title,
#account-wrapper .order-details .customer-information .detail-title,
#general-wrapper .order-details .customer-information .detail-title,
.page-wrapper .order-details .customer-information .detail-title,
#account-wrapper .direction .customer-information .detail-title,
#general-wrapper .direction .customer-information .detail-title,
.page-wrapper .direction .customer-information .detail-title,
#account-wrapper .conversation .customer-information .detail-title,
#general-wrapper .conversation .customer-information .detail-title,
.page-wrapper .conversation .customer-information .detail-title,
#account-wrapper .content-wrapper .customer-information .detail-title,
#general-wrapper .content-wrapper .customer-information .detail-title,
.page-wrapper .content-wrapper .customer-information .detail-title,
#account-wrapper .pagina-basica .customer-information .detail-title,
#general-wrapper .pagina-basica .customer-information .detail-title,
.page-wrapper .pagina-basica .customer-information .detail-title,
#account-wrapper .subscriptions .order-information .detail-title,
#general-wrapper .subscriptions .order-information .detail-title,
.page-wrapper .subscriptions .order-information .detail-title,
#account-wrapper .modules .order-information .detail-title,
#general-wrapper .modules .order-information .detail-title,
.page-wrapper .modules .order-information .detail-title,
#account-wrapper .asistents .order-information .detail-title,
#general-wrapper .asistents .order-information .detail-title,
.page-wrapper .asistents .order-information .detail-title,
#account-wrapper .orders .order-information .detail-title,
#general-wrapper .orders .order-information .detail-title,
.page-wrapper .orders .order-information .detail-title,
#account-wrapper .order-details .order-information .detail-title,
#general-wrapper .order-details .order-information .detail-title,
.page-wrapper .order-details .order-information .detail-title,
#account-wrapper .direction .order-information .detail-title,
#general-wrapper .direction .order-information .detail-title,
.page-wrapper .direction .order-information .detail-title,
#account-wrapper .conversation .order-information .detail-title,
#general-wrapper .conversation .order-information .detail-title,
.page-wrapper .conversation .order-information .detail-title,
#account-wrapper .content-wrapper .order-information .detail-title,
#general-wrapper .content-wrapper .order-information .detail-title,
.page-wrapper .content-wrapper .order-information .detail-title,
#account-wrapper .pagina-basica .order-information .detail-title,
#general-wrapper .pagina-basica .order-information .detail-title,
.page-wrapper .pagina-basica .order-information .detail-title {
  font-family: "ManropeBold";
  color: #022856;
  font-size: 18px;
}
#account-wrapper .subscriptions .contenedor-chat,
#general-wrapper .subscriptions .contenedor-chat,
.page-wrapper .subscriptions .contenedor-chat,
#account-wrapper .modules .contenedor-chat,
#general-wrapper .modules .contenedor-chat,
.page-wrapper .modules .contenedor-chat,
#account-wrapper .asistents .contenedor-chat,
#general-wrapper .asistents .contenedor-chat,
.page-wrapper .asistents .contenedor-chat,
#account-wrapper .orders .contenedor-chat,
#general-wrapper .orders .contenedor-chat,
.page-wrapper .orders .contenedor-chat,
#account-wrapper .order-details .contenedor-chat,
#general-wrapper .order-details .contenedor-chat,
.page-wrapper .order-details .contenedor-chat,
#account-wrapper .direction .contenedor-chat,
#general-wrapper .direction .contenedor-chat,
.page-wrapper .direction .contenedor-chat,
#account-wrapper .conversation .contenedor-chat,
#general-wrapper .conversation .contenedor-chat,
.page-wrapper .conversation .contenedor-chat,
#account-wrapper .content-wrapper .contenedor-chat,
#general-wrapper .content-wrapper .contenedor-chat,
.page-wrapper .content-wrapper .contenedor-chat,
#account-wrapper .pagina-basica .contenedor-chat,
#general-wrapper .pagina-basica .contenedor-chat,
.page-wrapper .pagina-basica .contenedor-chat {
  justify-content: center;
  align-items: center;
  width: 100%;
}
#account-wrapper .subscriptions .btn-live-chat,
#general-wrapper .subscriptions .btn-live-chat,
.page-wrapper .subscriptions .btn-live-chat,
#account-wrapper .modules .btn-live-chat,
#general-wrapper .modules .btn-live-chat,
.page-wrapper .modules .btn-live-chat,
#account-wrapper .asistents .btn-live-chat,
#general-wrapper .asistents .btn-live-chat,
.page-wrapper .asistents .btn-live-chat,
#account-wrapper .orders .btn-live-chat,
#general-wrapper .orders .btn-live-chat,
.page-wrapper .orders .btn-live-chat,
#account-wrapper .order-details .btn-live-chat,
#general-wrapper .order-details .btn-live-chat,
.page-wrapper .order-details .btn-live-chat,
#account-wrapper .direction .btn-live-chat,
#general-wrapper .direction .btn-live-chat,
.page-wrapper .direction .btn-live-chat,
#account-wrapper .conversation .btn-live-chat,
#general-wrapper .conversation .btn-live-chat,
.page-wrapper .conversation .btn-live-chat,
#account-wrapper .content-wrapper .btn-live-chat,
#general-wrapper .content-wrapper .btn-live-chat,
.page-wrapper .content-wrapper .btn-live-chat,
#account-wrapper .pagina-basica .btn-live-chat,
#general-wrapper .pagina-basica .btn-live-chat,
.page-wrapper .pagina-basica .btn-live-chat {
  border: solid 1px #022856;
  background-color: #022856;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
#account-wrapper .subscriptions .btn-live-chat:hover,
#general-wrapper .subscriptions .btn-live-chat:hover,
.page-wrapper .subscriptions .btn-live-chat:hover,
#account-wrapper .modules .btn-live-chat:hover,
#general-wrapper .modules .btn-live-chat:hover,
.page-wrapper .modules .btn-live-chat:hover,
#account-wrapper .asistents .btn-live-chat:hover,
#general-wrapper .asistents .btn-live-chat:hover,
.page-wrapper .asistents .btn-live-chat:hover,
#account-wrapper .orders .btn-live-chat:hover,
#general-wrapper .orders .btn-live-chat:hover,
.page-wrapper .orders .btn-live-chat:hover,
#account-wrapper .order-details .btn-live-chat:hover,
#general-wrapper .order-details .btn-live-chat:hover,
.page-wrapper .order-details .btn-live-chat:hover,
#account-wrapper .direction .btn-live-chat:hover,
#general-wrapper .direction .btn-live-chat:hover,
.page-wrapper .direction .btn-live-chat:hover,
#account-wrapper .conversation .btn-live-chat:hover,
#general-wrapper .conversation .btn-live-chat:hover,
.page-wrapper .conversation .btn-live-chat:hover,
#account-wrapper .content-wrapper .btn-live-chat:hover,
#general-wrapper .content-wrapper .btn-live-chat:hover,
.page-wrapper .content-wrapper .btn-live-chat:hover,
#account-wrapper .pagina-basica .btn-live-chat:hover,
#general-wrapper .pagina-basica .btn-live-chat:hover,
.page-wrapper .pagina-basica .btn-live-chat:hover {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), #022856);
  color: white;
  text-decoration: none;
  border: solid 1px #022856;
}
#account-wrapper .subscriptions .btn-live-chat .glyphicon,
#general-wrapper .subscriptions .btn-live-chat .glyphicon,
.page-wrapper .subscriptions .btn-live-chat .glyphicon,
#account-wrapper .modules .btn-live-chat .glyphicon,
#general-wrapper .modules .btn-live-chat .glyphicon,
.page-wrapper .modules .btn-live-chat .glyphicon,
#account-wrapper .asistents .btn-live-chat .glyphicon,
#general-wrapper .asistents .btn-live-chat .glyphicon,
.page-wrapper .asistents .btn-live-chat .glyphicon,
#account-wrapper .orders .btn-live-chat .glyphicon,
#general-wrapper .orders .btn-live-chat .glyphicon,
.page-wrapper .orders .btn-live-chat .glyphicon,
#account-wrapper .order-details .btn-live-chat .glyphicon,
#general-wrapper .order-details .btn-live-chat .glyphicon,
.page-wrapper .order-details .btn-live-chat .glyphicon,
#account-wrapper .direction .btn-live-chat .glyphicon,
#general-wrapper .direction .btn-live-chat .glyphicon,
.page-wrapper .direction .btn-live-chat .glyphicon,
#account-wrapper .conversation .btn-live-chat .glyphicon,
#general-wrapper .conversation .btn-live-chat .glyphicon,
.page-wrapper .conversation .btn-live-chat .glyphicon,
#account-wrapper .content-wrapper .btn-live-chat .glyphicon,
#general-wrapper .content-wrapper .btn-live-chat .glyphicon,
.page-wrapper .content-wrapper .btn-live-chat .glyphicon,
#account-wrapper .pagina-basica .btn-live-chat .glyphicon,
#general-wrapper .pagina-basica .btn-live-chat .glyphicon,
.page-wrapper .pagina-basica .btn-live-chat .glyphicon {
  font-size: 16px;
}
#account-wrapper .pagina-basica .head-title > h3,
#general-wrapper .pagina-basica .head-title > h3,
.page-wrapper .pagina-basica .head-title > h3 {
  margin-bottom: 0;
}
#account-wrapper .pagina-basica .head-title > h3 span,
#general-wrapper .pagina-basica .head-title > h3 span,
.page-wrapper .pagina-basica .head-title > h3 span {
  font-size: 2.5rem !important;
}
#account-wrapper .side-menu-account,
#general-wrapper .side-menu-account,
.page-wrapper .side-menu-account {
  border-right: 1px solid #c9c9c9;
  min-height: 100%;
  margin-right: 3rem;
  padding-left: 0;
  padding-right: 0;
  min-width: 225px;
}
#account-wrapper .side-menu-account li a[href="#suscripciones"]::before,
#general-wrapper .side-menu-account li a[href="#suscripciones"]::before,
.page-wrapper .side-menu-account li a[href="#suscripciones"]::before {
  font-family: 'icomoon';
  content: '\e901';
  margin-left: -15px;
  margin-right: 12px;
  font-size: 21px;
  vertical-align: middle;
}
#account-wrapper .side-menu-account li a[href="#ordenes"]::before,
#general-wrapper .side-menu-account li a[href="#ordenes"]::before,
.page-wrapper .side-menu-account li a[href="#ordenes"]::before {
  font-family: 'bootstrap-icons';
  content: '\F491';
  margin-left: -13px;
  margin-right: 12px;
  font-size: 115%;
  vertical-align: middle;
}
#account-wrapper .side-menu-account li a[href="#modulos"]::before,
#general-wrapper .side-menu-account li a[href="#modulos"]::before,
.page-wrapper .side-menu-account li a[href="#modulos"]::before {
  font-family: 'icomoon';
  content: '\e90a';
  margin-left: -15px;
  margin-right: 12px;
  font-size: 21px;
  vertical-align: middle;
}
#account-wrapper .side-menu-account li a[href="#asistentes"]::before,
#general-wrapper .side-menu-account li a[href="#asistentes"]::before,
.page-wrapper .side-menu-account li a[href="#asistentes"]::before {
  font-family: 'icomoon';
  content: '\e900';
  margin-left: -15px;
  margin-right: 12px;
  font-size: 21px;
  vertical-align: middle;
}
#account-wrapper .side-menu-account li a[href="#direcciones"]::before,
#general-wrapper .side-menu-account li a[href="#direcciones"]::before,
.page-wrapper .side-menu-account li a[href="#direcciones"]::before {
  font-family: 'bootstrap-icons';
  content: '\F194';
  margin-left: -13px;
  margin-right: 12px;
  font-size: 19px;
  vertical-align: middle;
}
#account-wrapper .side-menu-account li a[href="#conversaciones"]::before,
#general-wrapper .side-menu-account li a[href="#conversaciones"]::before,
.page-wrapper .side-menu-account li a[href="#conversaciones"]::before {
  font-family: 'bootstrap-icons';
  content: '\F267';
  margin-left: -13px;
  margin-right: 12px;
  font-size: 20px;
  vertical-align: middle;
}
#account-wrapper .side-menu-account .user-info img,
#general-wrapper .side-menu-account .user-info img,
.page-wrapper .side-menu-account .user-info img {
  border-radius: 50%;
  border: 2px solid black;
  background-color: white;
  padding: 3px;
}
#account-wrapper .side-menu-account .user-info .full-name,
#general-wrapper .side-menu-account .user-info .full-name,
.page-wrapper .side-menu-account .user-info .full-name {
  font-size: 110%;
  color: #022856;
  margin-top: 8px;
}
#account-wrapper .side-menu-account .user-info a,
#general-wrapper .side-menu-account .user-info a,
.page-wrapper .side-menu-account .user-info a {
  color: #c9c9c9;
  text-decoration: none;
}
#account-wrapper .account-edit,
#general-wrapper .account-edit,
.page-wrapper .account-edit {
  width: 100%;
  min-height: 450px;
  background-color: #ffffffc7;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  box-shadow: 0 0 30px 0px #00000061;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 768px) {
  #account-wrapper,
  #general-wrapper,
  .page-wrapper {
    margin-top: 0;
  }
}
.card-horizontal {
  position: relative;
  box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease;
  border-radius: 10px;
}
.card-horizontal .mod-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  min-width: 50%;
}
@media (max-width: 992px) {
  .card-horizontal .mod-content {
    width: 90%;
    max-width: 100%;
    flex-direction: row;
  }
  .card-horizontal .mod-content h1,
  .card-horizontal .mod-content h4 {
    width: 100%;
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.card-horizontal .action-group {
  display: flex;
  margin: 0 0 0 auto;
  justify-self: end;
  justify-content: space-between;
  min-width: 40%;
}
.card-horizontal .action-group .button-conf {
  display: flex;
  align-items: center;
}
.card-horizontal button {
  border-radius: 10px;
  background-color: #022856;
}
.card-horizontal button span {
  margin-right: 5px;
}
.card-horizontal .profile-address {
  padding: 2rem;
}
.card-horizontal .profile-address .address span {
  font-family: "ManropeRegular";
  font-size: 16px;
  text-align: left;
  color: #022856;
}
.card-horizontal .profile-address .address span.given-name,
.card-horizontal .profile-address .address span.family-name {
  font-family: "ManropeBold";
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
}
.card-horizontal .profile-address .actions {
  gap: 3rem;
  align-items: center;
  /* Estilo del check cuando está marcado */
}
.card-horizontal .profile-address .actions span {
  font-family: "ManropeRegular";
  font-size: 16px;
  text-align: left;
  color: #022856;
}
.card-horizontal .profile-address .actions a {
  display: inline-block;
  height: auto;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  font-size: 0;
  line-height: 1;
  color: inherit;
}
.card-horizontal .profile-address .actions a::before {
  display: inline-block;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1;
}
.card-horizontal .profile-address .actions a[href*="/edit"]::before {
  font-family: 'icomoon';
  content: "\e907";
}
.card-horizontal .profile-address .actions a[href*="/delete"]::before {
  font-family: 'Glyphicons Halflings';
  content: "\e020";
  font-size: 20px;
}
.card-horizontal .profile-address .actions a:hover::before {
  opacity: 0.8;
}
.card-horizontal .profile-address .actions .set-default-profile {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #007BFF;
  /* azul */
  background-color: transparent;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}
.card-horizontal .profile-address .actions .set-default-profile:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #007BFF;
  /* mismo azul que el borde */
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.card-horizontal:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 6px 3px rgba(0, 0, 0, 0.15);
  /* Sombra más fuerte al hacer hover */
}
.text-container {
  min-width: 75%;
  /* Asegura que el texto no se contraiga demasiado */
}
.text-container .title-submodule {
  font-family: "ManropeBold";
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: left;
  color: #022856;
}
.text-container .title-module {
  font-family: "ManropeRegular";
  font-size: 16px;
  text-align: left;
  color: #022856;
}
.text-container p.card-text {
  font-family: "ManropeRegular";
  font-size: 14px;
  text-align: left;
  color: #8c8c8c;
}
.icon-container {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.circle {
  position: relative;
  width: 30px;
  /* Diámetro del círculo */
  height: 30px;
  /* Diámetro del círculo */
  border-radius: 50%;
  /* Hacerlo circular */
  margin: 0;
}
.circle1 {
  background-color: #d9d9d9;
  /* Color del primer círculo */
}
.circle2 {
  background-color: #77808e;
  /* Color del segundo círculo */
  margin-left: -15px;
}
.circle3 {
  background-color: #f6f8fb;
  /* Color del tercer círculo */
  margin-left: -15px;
}
.card-asistent {
  border-bottom: 1px solid #ededed;
}
.card-asistent h3 {
  font-family: "ManropeBold";
  font-size: 18px;
  text-align: left;
  color: #022856;
}
.card-asistent #copy-script {
  border-radius: 10px;
  background-image: linear-gradient(to right, #6572c9, #7f90fe);
  border: 0;
  max-height: 40px;
  font-size: 14px;
  margin-right: 10px;
}
.card-asistent a,
.card-asistent button {
  border-radius: 0;
  max-height: 40px;
}
.card-asistent button.btn-help {
  font-size: 14px;
  background-color: #f6f8fb;
  color: #000;
}
.card-asistent button.btn-help span {
  margin-right: 5px;
}
.card-asistent .btn-icon-text {
  background-color: #022856;
  display: flex;
  align-items: center;
}
.card-asistent .btn-inline-icon {
  padding: 0;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  background-color: white;
}
.card-asistent li {
  border: none;
  padding: 1px 1px;
}
.card-asistent .assigned-modules span,
.card-asistent .assigned-modules ul,
.card-asistent .assigned-modules li,
.card-asistent .assigned-modules .glyphicon-chevron-down:before {
  font-size: 14px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .asistents #asistents > .col-xs-12 {
    margin-bottom: 3rem;
  }
  .asistents .head-title h3,
  .asistents .head-title p,
  .asistents .head-title a {
    text-align: center;
  }
  .asistents .card-asistent .btn-icon-text {
    background-color: #f6f8fb;
    color: #0a53be;
    /* Azul oscuro */
    border: solid 1px #ededed;
    margin-top: 0;
    height: 36px;
    width: 36px;
    justify-content: center;
    flex-wrap: nowrap;
    border-radius: 10px 0 0 10px;
    margin-right: -5px;
  }
  .asistents .card-asistent .btn-icon-text span {
    margin: 0 !important;
    padding: 0;
    width: 15px;
    height: 15px;
  }
  .asistents .card-asistent .btn-icon-text span::before {
    margin: 0 auto;
    font-size: 1.6rem;
    display: flex;
  }
  .asistents .card-asistent .btn-icon-text span.btn-text {
    display: none;
  }
  .asistents .card-asistent .col-izq {
    order: 1;
    padding: 0;
    max-width: calc(100% - 42px);
  }
  .asistents .card-asistent .col-izq .mod-name {
    align-items: start;
    display: flex;
    flex-wrap: wrap;
  }
  .asistents .card-asistent .col-izq .mod-name h3 {
    margin: 0;
    width: 100%;
  }
  .asistents .card-asistent .col-izq .col-script #copy-scrypt {
    margin: 0;
    width: auto;
  }
  .asistents .card-asistent .col-izq .col-script #copy-scrypt span {
    font-size: 1.5rem;
  }
  .asistents .card-asistent .col-izq .col-script .btn-help {
    margin-left: 10px;
    font-size: 1.5rem;
  }
  .asistents .card-asistent .col-izq .col-script .btn-help span::before {
    margin-right: 5px;
  }
  .asistents .card-asistent .col-der {
    order: 3;
    justify-content: start !important;
  }
  .asistents .card-asistent .col-der .assigned-modules {
    width: 100%;
  }
  .asistents .card-asistent .col-der .assigned-modules button span.me-1 {
    font-size: 1.5rem;
  }
  .asistents .card-asistent .col-btn {
    order: 2;
    position: relative;
    flex-wrap: wrap;
    padding: 0;
    align-items: start !important;
    max-width: 42px;
    align-content: start;
  }
  .asistents .card-asistent .col-btn .btn-danger {
    margin-top: 5px;
    height: 36px;
    width: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    border-radius: 10px 0 0 10px !important;
    margin-right: -5px;
  }
  .asistents .card-asistent .col-btn .btn-danger span {
    margin: 0 !important;
    padding: 0;
    display: flex;
    justify-content: center;
    width: 15px;
    height: 15px;
    align-items: center;
  }
  .asistents .card-asistent .col-btn .btn-danger span::before {
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
  }
  .asistents .card-asistent .col-btn .btn-danger span.btn-text {
    display: none;
  }
  .card-horizontal .d-flex {
    flex-direction: row;
    align-items: flex-start;
  }
  .card-horizontal .d-flex .action-group {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 1rem;
  }
  .card-horizontal .d-flex .action-group .circle1,
  .card-horizontal .d-flex .action-group .circle2,
  .card-horizontal .d-flex .action-group .circle3 {
    transform: none;
  }
  .card-horizontal .d-flex .action-group .button-conf {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .card-horizontal .d-flex .action-group .button-conf button {
    width: 32px;
    height: 32px;
  }
  .card-horizontal .d-flex .action-group .button-conf button span {
    margin: 0;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
  }
  .card-horizontal .d-flex .action-group .button-conf button span.btn-text {
    display: none;
  }
  .card-horizontal .d-flex .action-group .button-conf a {
    width: auto;
    min-width: 42px;
    margin: 0;
  }
  .card-horizontal .d-flex .action-group .button-conf a span {
    font-size: 2rem;
    margin: 0 !important;
  }
  .icon-container {
    min-width: 50%;
    /* flex: 1 1 100%; */
    text-align: left;
    display: flex;
    justify-content: flex-start;
    margin-left: 0px;
    margin-left: 2.5rem;
  }
  .btn-icon-text .btn-text {
    display: none;
  }
  /* Asegura que el icono quede centrado cuando no hay texto */
  .btn-icon-text {
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }
  .text-container {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
.asistents a,
.modules a {
  border-radius: 10px;
}
.asistents h3,
.modules h3 {
  font-family: "ManropeBold";
  font-size: 20px;
  text-align: left;
  color: #022856;
}
@media (max-width: 768px) {
  .asistents h3,
  .modules h3 {
    font-size: 18px;
  }
}
.asistents h4,
.modules h4 {
  font-size: 20px;
  font-family: "ManropeBold";
  color: #022856;
}
.asistents p,
.modules p {
  font-family: "ManropeRegular";
  font-size: 14px;
  text-align: left;
  color: #8c8c8c;
}
.asistents img.rounded-circle,
.modules img.rounded-circle {
  width: 52px;
  height: 52px;
  border: solid 0.5px #d9d9d9;
  background-color: #bfc6d2;
  display: block;
}
/* Ocultar backdrop del modal */
#descriptionModal.show ~ .modal-backdrop,
#descriptionModal:target ~ .modal-backdrop,
.modal-backdrop {
  display: none !important;
}
@media (min-width: 768px) {
  .layout-region-checkout-main {
    width: 100%;
    float: none;
    padding-left: 3rem;
    padding-right: 0;
  }
}
.layout-region-checkout-footer {
  float: none;
  padding: 0;
  display: flex;
  justify-content: end;
  width: 100%;
}
.layout-region-checkout-footer .form-actions {
  width: 100%;
  display: flex;
  justify-content: end;
}
.assistant-wrapper .title-form,
.general-wrapper .title-form {
  margin: 2rem 4rem 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #ededed;
  font-size: 20px;
  font-family: "ManropeBold";
  color: #022856;
}
.assistant-wrapper .node-form *:not(span.glyphicon),
.general-wrapper .node-form *:not(span.glyphicon) {
  font-family: "ManropeMedium" !important;
  font-size: 16px;
  color: #022856;
}
.assistant-wrapper .node-form .form-group.form-wrapper,
.general-wrapper .node-form .form-group.form-wrapper {
  margin-bottom: 4rem;
}
.assistant-wrapper .node-form fieldset legend,
.general-wrapper .node-form fieldset legend {
  border-bottom: none;
}
.assistant-wrapper .node-form select,
.general-wrapper .node-form select {
  line-height: 1.3;
  font-size: 16px;
}
.assistant-wrapper .node-form .description.help-block a,
.general-wrapper .node-form .description.help-block a,
.assistant-wrapper .node-form .description,
.general-wrapper .node-form .description {
  font-size: 14px !important;
}
.assistant-wrapper .node-form #edit-submit,
.general-wrapper .node-form #edit-submit {
  border-radius: 10px;
  border: solid 1px #022856 !important;
  background-color: #022856 !important;
  min-width: 200px;
  color: white !important;
}
.assistant-wrapper .node-form #edit-preview,
.general-wrapper .node-form #edit-preview,
.assistant-wrapper .node-form .field--name-field-module,
.general-wrapper .node-form .field--name-field-module {
  display: none;
}
.assistant-wrapper .node-module-files-form,
.general-wrapper .node-module-files-form {
  width: 100% !important;
}
.assistant-wrapper .node-module-files-form .form-wrapper,
.general-wrapper .node-module-files-form .form-wrapper {
  width: 100% !important;
}
.assistant-wrapper .node-module-files-edit-form .vertical-tabs,
.general-wrapper .node-module-files-edit-form .vertical-tabs,
.assistant-wrapper .node-asistente-edit-form .vertical-tabs,
.general-wrapper .node-asistente-edit-form .vertical-tabs {
  display: none;
}
.assistant-wrapper #edit-field-imagen-wrapper [type="file"]::file-selector-button,
.general-wrapper #edit-field-imagen-wrapper [type="file"]::file-selector-button {
  position: absolute;
  margin-right: 0;
  margin-left: 29.2%;
  height: 34px;
  margin-top: -7px;
  content: "Examinar";
}
.assistant-wrapper #edit-field-asistente,
.general-wrapper #edit-field-asistente {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.assistant-wrapper #edit-field-asistente .asist-preview,
.general-wrapper #edit-field-asistente .asist-preview {
  margin-left: 120%;
}
@media (min-width: 993px) {
  .assistant-wrapper #edit-field-asistente .asist-preview,
  .general-wrapper #edit-field-asistente .asist-preview {
    margin-top: -8rem;
  }
}
.assistant-wrapper .uppy-size--md .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload,
.general-wrapper .uppy-size--md .uppy-StatusBar.is-waiting .uppy-StatusBar-actionBtn--upload {
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 6px 21px;
  border-radius: 5px;
  border: solid 1px #022856;
  background-color: #f6f8fb;
}
.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 500px;
  /* ajusta según tu diseño */
  display: block;
}
#user-orders-table tr,
#user-subscription-table tr {
  height: 76px;
}
#user-orders-table th,
#user-subscription-table th {
  height: 27px;
  align-self: stretch;
  flex-grow: 0;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  color: #022856;
}
#user-orders-table td,
#user-subscription-table td,
#user-orders-table td a,
#user-subscription-table td a {
  height: 80px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  color: #022856;
}
#user-orders-table #cancel-subscription,
#user-subscription-table #cancel-subscription {
  padding: 13px 8px;
  border-radius: 10px;
  background-color: #dc4516;
}
@media (max-width: 992px) {
  #user-orders-table,
  #user-subscription-table {
    display: none !important;
  }
}
.subscriptions tr {
  height: 76px;
}
.subscriptions th {
  height: 27px;
  align-self: stretch;
  flex-grow: 0;
  font-size: 18px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: normal;
  text-align: center;
  vertical-align: middle;
  color: #022856;
}
.subscriptions .table > tbody > tr > td,
.subscriptions td a {
  height: 80px;
  font-size: 16px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
  color: #022856;
}
.subscriptions .mobile-view {
  display: none;
}
.subscriptions .mobile-view .views-row {
  margin: 8px 1px 23px;
  padding: 12px 5px;
  border-radius: 10px;
  background-color: #f6f8fb;
}
.subscriptions .mobile-view .views-row .views-field {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}
.subscriptions .mobile-view .views-row .views-field .views-label {
  font-family: "ManropeRegular";
  font-weight: bold;
  color: #022856;
  margin-bottom: 4px;
  font-size: 14px;
}
.subscriptions .mobile-view .views-row .views-field .field-content {
  font-family: "ManropeRegular";
  color: #022856;
  font-size: 14px;
  line-height: 1.4;
  text-align: right;
}
.subscriptions .mobile-view .views-row .views-field-title {
  display: block;
  margin-bottom: 20px;
}
.subscriptions .mobile-view .views-row .views-field-title .views-label-title {
  font-family: "ManropeRegular";
  font-size: 16px;
  text-align: left;
  color: #022856;
}
.subscriptions .mobile-view .views-row .views-field-title .field-content {
  font-family: "ManropeRegular";
  font-weight: bold;
  font-size: 16px;
  text-align: left;
  color: #022856;
}
@media (max-width: 500px) {
  .subscriptions .desktop-view {
    display: none;
  }
  .subscriptions .mobile-view {
    display: block;
  }
}
#orders-table-mobile {
  width: 100%;
  flex-wrap: wrap;
}
#orders-table-mobile > .row {
  width: 100vw;
  flex-wrap: wrap;
  padding: 0 10px;
  margin: 2rem 0;
  border: 1px solid #ededed;
  border-radius: 10px;
  box-shadow: 0 0 33px 0 rgba(0, 0, 0, 0.09);
  background-color: #f6f8fb;
}
#orders-table-mobile .col-head {
  font-size: 16px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  color: #022856;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: start;
}
#orders-table-mobile .col-head.order {
  font-family: "ManropeBold";
}
#orders-table-mobile .col-data,
#orders-table-mobile .col-data > a {
  font-size: 14px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.5;
  color: #022856;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: end;
}
#orders-table-mobile .col-data {
  border-left: 1px solid #ededed;
}
#orders-table-mobile .col-head:not(:first-child),
#orders-table-mobile .col-data:not(.first) {
  border-top: 1px solid #ededed;
}
@media (min-width: 993px) {
  #orders-table-mobile {
    display: none !important;
  }
}
.messages__wrapper {
  position: fixed;
  top: 25%;
  right: 20px;
  z-index: 9999;
  max-width: 400px;
  width: auto;
  padding: 10px;
}
.messages__wrapper .alert {
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.3s ease-in-out;
}
.messages__wrapper button.close span {
  font-size: 20px;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-wrapper {
  padding-top: 8rem;
  display: flex;
  flex-wrap: wrap;
  padding-left: 2rem;
  padding-right: 2rem;
}
.contact-wrapper h1.seccion-title {
  width: 100%;
}
.contact-wrapper h1.regular {
  width: 100%;
  font-family: "SpaceGroteskRegular";
  font-size: 40px;
  text-align: center;
  margin: 0 auto 14rem auto;
}
.contact-wrapper p.reduced {
  margin: 2rem 0;
  width: 100%;
}
.contact-wrapper .contact-text-wrapper {
  flex-wrap: wrap;
  position: relative;
  flex: 0 0 40%;
  max-width: 40%;
  align-content: start;
}
.contact-wrapper .contact-form-wrapper {
  flex-wrap: wrap;
  position: relative;
  flex: 0 0 60%;
  max-width: 60%;
  justify-content: end;
}
.contact-wrapper #contact-message-contactenos-form {
  padding: 27px 33px 33px 40px;
  border-radius: 7px;
  box-shadow: 4px 4px 100px 0 rgba(0, 0, 0, 0.25);
  border: solid 0.5px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
}
.contact-wrapper #contact-message-contactenos-form .control-label {
  font-size: 18px;
  font-weight: normal;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.09;
  letter-spacing: normal;
  text-align: left;
  color: #ffffff !important;
  margin-bottom: 10px;
}
.contact-wrapper #contact-message-contactenos-form .form-text,
.contact-wrapper #contact-message-contactenos-form .form-email,
.contact-wrapper #contact-message-contactenos-form .form-phone,
.contact-wrapper #contact-message-contactenos-form .form-select,
.contact-wrapper #contact-message-contactenos-form .form-textarea {
  height: 62px;
  align-self: stretch;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  font-family: "ManropeRegular";
  padding: 16px 22px;
  border-radius: 7px;
  background-color: #fcfcfd;
  font-size: 1.6rem;
  margin-bottom: 2rem;
}
.contact-wrapper #contact-message-contactenos-form .form-phone {
  padding-left: 50px;
  width: 100%;
}
.contact-wrapper #contact-message-contactenos-form .form-textarea {
  height: auto;
}
.contact-wrapper #contact-message-contactenos-form .form-actions {
  display: flex;
  justify-content: end;
}
.contact-wrapper #contact-message-contactenos-form .form-actions .form-submit {
  background-color: black;
  color: white;
  background-color: transparent;
  border-radius: 7px;
  height: 44px;
  padding: 10px 24px;
  border-radius: 6px;
  margin-top: 2rem;
}
.contact-wrapper #contact-message-contactenos-form .form-actions .form-submit:hover {
  background-color: #ffffff;
  color: #022856;
}
.contact-wrapper #contact-message-contactenos-form .form-item {
  width: 100%;
}
@media (max-width: 992px) {
  .contact-wrapper {
    padding: 0;
    z-index: 1;
    position: relative;
  }
  .contact-wrapper h1.seccion-title {
    font-size: 38px;
    line-height: 1.15;
  }
  .contact-wrapper h1.regular {
    font-size: 36px;
    text-align: left;
    width: 100%;
    margin-bottom: 5rem;
  }
  .contact-wrapper .contact-text-wrapper,
  .contact-wrapper .contact-form-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .contact-wrapper .contact-text-wrapper h3,
  .contact-wrapper .contact-form-wrapper h3 {
    font-size: 36px;
  }
  .contact-wrapper .contact-text-wrapper p.reduced,
  .contact-wrapper .contact-form-wrapper p.reduced {
    margin-bottom: 5rem;
  }
  .contact-wrapper .contact-text-wrapper #contact-message-contactenos-form,
  .contact-wrapper .contact-form-wrapper #contact-message-contactenos-form {
    padding: 25px 15px;
  }
}
.contact-info {
  margin-left: -80px;
  margin-right: -80px;
  background-color: #050c19;
  margin-top: 8rem;
  min-height: 600px;
  padding: 8rem 0;
}
.contact-info .cel {
  background-color: transparent;
  background-image: url('../images/contact-img.webp');
  background-repeat: no-repeat;
  min-height: 750px;
  background-size: cover;
  width: 32%;
  position: absolute;
  min-width: 600px;
}
.contact-info .contact-box {
  min-height: 350px;
  margin: 170px 100px;
  padding: 30px 30px 30px 50%;
  border-radius: 10px;
  box-shadow: 4px 4px 100px 0 rgba(0, 0, 0, 0.25);
  border: solid 0.5px rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.2);
}
.contact-info .contact-box a {
  color: white;
  font-size: 1.6rem;
  margin-left: 5px;
}
.contact-info .contact-box a:hover {
  color: #6176fe;
}
@media (max-width: 992px) {
  .contact-info .contact-box {
    margin: 0 20px;
    margin-top: 0px;
    width: 100vw;
    display: flex;
    padding: 0px;
    margin-top: 150px;
    flex-wrap: wrap;
    flex-direction: row;
    min-height: auto;
    border-radius: 10px;
    box-shadow: none;
    border: none;
    background-color: transparent;
  }
  .contact-info .contact-box h4 a,
  .contact-info .contact-box h4 span {
    width: 100%;
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
  .contact-info .contact-box a {
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}
.contact-info .contact-box-mobile {
  display: none;
}
@media (max-width: 992px) {
  .contact-info {
    margin: 8rem -15px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .contact-info .contact-box-mobile {
    display: flex;
    border-radius: 10px;
    box-shadow: 4px 4px 100px 0 rgba(0, 0, 0, 0.25);
    border: solid 0.5px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.2);
    height: 170px;
    width: 100%;
    margin: 0 20px;
    margin-top: 0px;
    margin-top: 8rem;
  }
  .contact-info .cel {
    width: 100%;
    min-width: 360px;
    background-size: 125%;
    min-height: 460px;
    background-position: center;
    margin-top: -70px;
  }
}
