/**********************************/
/***** CRMPAM CSS FRAMEWORK *****/
/**********************************/

/*HEADER*/
.crmpam-appBar {
  background: var(--header-background);
  height: var(--crmpam-header-height);
}

.crmpam-appBar>div {
  max-width: var(--crmpam-page-width);
}

.crmpam-appBar .crmpam-appBar-mobile {
  display: none;
}

.crmpam-appBar .header-logo {
  max-width: 100%;
  height: auto !important;
}

@media (max-width: 1200px) {

  .crmpam-appBar .crmpam-appBar-desktop,
  .crmpam-appBar .crmpam-main-menu {
    display: none;
  }

  .crmpam-appBar .crmpam-appBar-mobile {
    display: flex;
    gap: var(--crmpam-small);
  }
}

/*PAGE CONTENTS*/
.crmpam-page-content {
  padding-top: var(--crmpam-header-height);
  background-color: var(--crmpam-background-primary);
}

/*HEADER*/
.crmpam-main-menu>.crmpam-link {
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.crmpam-main-menu>.crmpam-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--crmpam-color-primary-light);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

.crmpam-main-menu>.crmpam-link:not(.active):hover::after {
  visibility: visible;
  transform: scaleX(1);
}

.crmpam-main-menu>.crmpam-link.active::after {
  visibility: visible;
  transform: scaleX(1);
}

/*FOOTER*/
.crmpam-footer {
  width: 90%;
  margin: 0 auto;
}

.footer-methods-img img {
  max-width: 70px;
}

.footer-chat-icon svg {
  color: #fff;
  width: 36px;
  height: 36px;
}

.segob {
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.crmpam-img-segob {
  width: calc(100% - 40px);
  max-width: 400px;
}

.crmpam-img-18,
.crmpam-img-juegoseguro {
  width: calc(1.3 * (100% - 40px)) !important;
  max-width: calc(1.3 * 400px) !important;
  transform: scale(1.3) !important;
}

@media (max-width: 1000px) {
  .crmpam-footer>div.crmpam-flex.crmpam-row {
    flex-direction: column;
  }
}

.crmpam-fragment * {
  color: #22004c !important;
}

.footer-afiliado {
  color: #00b6ff !important;
}

/*BANNER*/
.crmpam-banner-slider .splide__slide,
.crmpam-banner-slider .splide__slide a,
.banner-slide,
.banner-slide img {
  width: calc(100%) !important;
  max-width: calc(100%) !important;
}

/*USER MENU*/
.crmpam-float-menu .MuiModal-backdrop {
  background: rgba(0, 0, 0, 0.5);
}

.crmpam-user-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 0;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 100%;
  border: 2px solid #8011ff;
  color: #fff;
  font-size: 24px;
}

.crmpam-user-image:after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg,
      rgba(236, 34, 173, 1) 0%,
      rgba(130, 17, 254, 1) 100%);
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}

/*LOBBY*/
.crmpam-machine {
  overflow: hidden;
  border-radius: var(--crmpam-border-radius-small);
  margin: var(--crmpam-small);
  transition: 0.2s;
  position: relative;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.crmpam-machine:hover {
  transform: scale(1.05);
}

.crmpam-machine-image {
  width: 160px;
  min-width: 160px;
  height: 160px;
  min-height: 160px;
}

.crmpam-machine-description {
  max-width: calc(160px - 62px);
}

.crmpam-machine-favs-button {
  position: absolute;
  right: 0;
  top: 0px;
  color: var(--crmpam-color-septenary);
  background: radial-gradient(circle, rgb(35 8 79) 10%, rgb(0 0 0 / 0%) 70%);
}

.crmpam-machine-favs-button svg {
  stroke: var(--crmpam-color-septenary);
}

.crmpam-icon-footer {
  color: var(--text-primary) !important;
  font-size: 40px !important;
}

.crmpam-machine-play-button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
  background: rgb(0 0 0 / 60%);
}

.crmpam-machine:hover .crmpam-machine-play-button {
  opacity: 1;
}

.crmpam-lobby-filter {
  gap: var(--crmpam-medium);
  display: flex;
  padding-bottom: var(--crmpam-medium);
}

@media (max-width: 800px) {
  .crmpam-lobby-filter {
    flex-direction: column;
  }

  .crmpam-lobby-filter>div {
    width: 100%;
  }

  .crmpam-copy-container {
    flex-direction: column;
  }

  .segob .crmpam-gap-xlarge {
    gap: 10px;
  }

  .crmpam-img-18 {
    width: 45px !important;
    height: 45px;
    transform: scale(1.1);
  }

  .crmpam-img-juegoseguro {
    width: 110px !important;
    height: 40px;
    transform: scale(1.1);
  }
}

@media (max-width: 768px) {
  .crmpam-footer-methods-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 600px) {
  .crmpam-machine-image {
    width: 140px;
    min-width: 140px;
    height: 140px;
    min-height: 140px;
  }

  .footer-methods-img,
  .crmpam-logo-footer {
    padding: 0px !important;
  }

  .crmpam-footer-methods-container img {
    width: 60px;
    height: 52px;
  }
}

/*LOBBY SLIDER*/
.title-arrows .splide__arrows {
  position: absolute;
  display: flex;
  right: 0px;
  top: -24px;
}

.title-arrows .splide__arrow {
  border-radius: var(--crmpam-border-radius-small);
  border: 1px solid rgb(255 255 255 / 30%);
  transition: 0.3s;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.title-arrows .splide__arrows .splide__arrow--prev {
  right: 34px;
  left: auto;
}

.title-arrows .splide__arrows .splide__arrow--next {
  right: 0;
  left: auto;
}

/*GAME IFRAME*/
.crmpam-game-iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #000000;
}

.crmpam-game-iframe iframe {
  height: calc(100% - 44px);
  border: none;
}

/*FLOAT MOBILE MENU*/
.crmpam-mobile-navigation-content {
  background: var(--crmpam-bg-primary);
  border-top: 1px solid rgb(0 0 0 / 20%);
  overflow: auto;
}

.crmpam-mobile-navigation-content a {
  width: 20%;
}

.crmpam-mobile-navigation-element img {
  width: 28px;
  height: 28px;
  margin-bottom: 5px;
  filter: brightness(0.8);
}

.crmpam-mobile-navigation-element p {
  font-size: 8px;
  line-height: 10px;
  max-width: 68px;
}

@media (max-width: 900px) {
  .crmpam-mobile-navigation.crmpam-hidden {
    display: block !important;
  }
}

/* MENU LOGIN, USUARIO, Y DEPOSITAR */
.user-appBar {
  margin-top: 10px;
  margin-bottom: 10px;
}

.user-appBar .crmpam-appBar-desktop {
  gap: 20px;
}

.user-appBar .crmpam-flex.crmpam-column.crmpam-ml-medium.crmpam-mr-small p {
  color: var(--crmpam-color-senary);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

/*ASIDE MOBILE MENU*/
.crmpam-mobile-aside .MuiPaper-root {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--crmpam-background-primary);
  background-image: var(--mobile-drawer-background);
}

.crmpam-mobile-main-menu {
  min-width: 200px;
}

.crmpam-mobile-main-menu .crmpam-main-menu {
  flex-direction: column;
  align-items: flex-start;
}

.crmpam-mobile-main-menu .crmpam-main-menu a {
  margin-bottom: var(--crmpam-medium);
}

/*PAYMENTS*/
.crmpam-dialog.payment-dialog .MuiDialog-paper {
  width: 100%;
  max-width: 810px;
}

.crmpam-dialog.payment-dialog .MuiDialogContent-root {
  /* padding-left: 0;
  padding-right: 0;
  padding-bottom: 0; */
  overflow: hidden;
}

.depositLobbyListItem,
.payoutLobbyListItem {
  padding-left: var(--crmpam-large);
  padding-right: var(--crmpam-large);
  border-bottom: 1px solid rgb(0 0 0 / 15%);
}

.depositLobbyListItem:last-child,
.payoutLobbyListItem:last-child {
  border-bottom: none;
}

.crmpam-deposit-icons img {
  height: auto !important;
  max-height: 20px;
  max-width: 70px;
}

.paymentIframeResponse {
  width: 100%;
  min-height: 530px;
  height: calc(100vh - 210px);
  border: none;
}

.paymentImageResponse {
  max-width: 100%;
}

.paymentLoader {
  min-height: 300px;
  padding-bottom: 65px;
}

.crmpam-dialog.payment-dialog .crmpam-list-item-border {
  border: 1px solid rgb(0 0 0 / 25%);
  border-radius: 8px;
}

.crmpam-dialog.payment-dialog .pending-payout-list .MuiListItem-root {
  padding: 0;
}

.addBankAccountForm {
  padding: 20px;
  border-radius: var(--crmpam-border-radius-small) !important;
  background: rgb(0 0 0 / 5%);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.account-delete-icon {
  color: var(--crmpam-bg-color-error);
}

.crmpam-select-label .select-bank-account .MuiInputBase-input .account-delete-icon {
  display: none;
}

#errorMessageRegister {
  padding: 10px;
  background-color: var(--crmpam-bg-color-error);
  color: #eee;
  border-radius: var(--crmpam-border-radius-small);
}

.crmpam-dialog.register-dialog .MuiDialog-paper {
  width: 100%;
  max-width: 370px;
  width: 100%;
  max-height: calc(100vh - 30px);
}

.crmpam-dialog-title {
  width: 100%;
  height: 80px;
  background-color: #8011ff;
  font-family: var(--crmpam-font);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  color: #fff;
  padding: 12px 13px;
  font-size: 14px;
  margin-bottom: 16px;
  margin-top: -8px;
  margin-left: -8px;













































  div p a {
    color: #FFF;
  }
}

/* Contenedor principal */
.ya-register {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.ya-step {
  position: absolute;
  right: 16px;
  top: 8px;
  font-size: 12px;
  opacity: 0.9;
}

.ya-progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0 12px;
}

.ya-progress {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: #E9EDF3;
}

.ya-progress .MuiLinearProgress-bar {
  border-radius: 999px;
  background: #F5C505;
}

.ya-step-label {
  font-size: 12px;
  color: #9AA0A6;
  white-space: nowrap;
}

.ya-step-label--ok {
  color: #16a34a;
  font-weight: 700;
}

.ya-progress .MuiLinearProgress-bar {
  background-color: #fdd835;
  transition: width .25s ease;
}

/* Cuerpo */
.login-popup .MuiDialogContent-root {
  margin-right: 0px !important;
  padding-right: 24px !important;
}

.ya-form {
  background: #fff;
  border-radius: 12px;
  padding: 12px;
}

.ya-field {
  margin-bottom: 16px;
}

.ya-field-label {
  font-weight: 700;
  font-size: 12px;
  color: #242a31;
  margin-bottom: 6px;
  display: block;
}

.ya-field-span {
  font-size: 12px;
}

.ya-label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.ya-help {
  font-size: 10px;
  color: #8a8a8a;
  margin-top: 6px;
  margin-bottom: 8px;
}

.ya-dob {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 8px;
}

.no-toggle-fcl.MuiFormControlLabel-root {
  pointer-events: none;
}

.no-toggle-fcl .MuiCheckbox-root,
.no-toggle-fcl input[type="checkbox"],
.no-toggle-fcl .MuiFormControlLabel-label a {
  pointer-events: auto;
}

.crmpam-link-primary {
  color: var(--crmpam-btn-color-primary);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--crmpam-font);
}

/* CTA verde */
.ya-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}

.ya-cta {
  background: #14B35F !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
}

.ya-cta:hover {
  filter: brightness(1.05);
}

.ya-cta-disabled {
  opacity: 0.6;
}

.ya-cta[aria-disabled="true"] {
  cursor: not-allowed;
}

.ya-back {
  text-transform: none;
}

.ya-adornment {
  background: #eef2f7;
  border-radius: 10px;
  padding: 2px 4px;
  margin-right: 2px;
}

.ya-valid-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: #e6f7ed;
  color: #16a34a;
}

.ya-promos-optin .MuiFormControlLabel-root {
  margin-left: 2px;
}

.ya-input .MuiOutlinedInput-root {
  background: #f6f8fc;
  border-radius: 12px;
  min-height: 48px;
  border: 1px solid #e5eaf1;
}

.ya-input .MuiOutlinedInput-notchedOutline {
  border-color: transparent;
}

.ya-input .MuiOutlinedInput-root:hover .MuiOutlinedInput-notchedOutline {
  border-color: #dde3ea;
}

.ya-input .MuiOutlinedInput-root.Mui-focused {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(106, 25, 255, 0.12);
}

.ya-input .MuiOutlinedInput-root.Mui-focused .MuiOutlinedInput-notchedOutline {
  border-color: #6a19ff;
}

.ya-lock-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #4b5563;
  margin-top: 8px;
}

.ya-lock-icon {
  color: #6a19ff;
}

.ya-footer {
  text-align: center;
  margin: 24px 0;
  font-size: 12px;
  padding: 8px;
}

.ya-link {
  color: #6a19ff;
  text-decoration: underline;
  text-align: center;
}

.disabled-click {
  pointer-events: none;
}

/* Tel input ancho completo como en Figma */
.crmpam-phone-input {
  width: 100%;
}

/* Dialog â€“ estrecho como mÃ³vil */
.register-dialog .MuiDialog-paper {
  width: 420px;
  max-width: calc(100vw - 24px);
  border-radius: 14px;
  overflow: hidden;
}

/*Promotions*/
.crmpam-card-promotions {
  background-color: var(--crmpam-color-primary-dark);
  border-radius: var(--crmpam-border-radius-small);
  width: calc((100% / 3) - (var(--crmpam-small) * 2));
  border: 2px solid #ffffff;
}

.crmpam-card-promotions * {
  background-position: top left;
  text-decoration: none;
  color: var(--crmpam-color-primary-light);
}

.crmpam-card-promotions .MuiCardMedia-root {
  min-height: 190px;
  background-size: contain;
  background-position: top center;
}

@media (max-width: 1100px) {
  .crmpam-card-promotions {
    width: calc((100% / 2) - (var(--crmpam-small) * 2));
  }
}

@media (max-width: 700px) {
  .crmpam-card-promotions {
    width: 100%;
  }
}

.form-page {
  max-width: 600px;
  margin: auto;
}

/*LIGHT MODE*/
.crmpam-dialog .crmpam-link {
  color: var(--crmpam-color-senary);
}

.crmpam-dialog .crmpam-btn-primary {
  background: var(--text-primary) !important;
  color: var(--crmpam-btn-color-primary);
  border: 2px solid var(--crmpam-btn-color-primary);
}

.white-layout * {
  background: var(--crmpam-background-primary) !important;
}

/*INDEX FEATURES*/
.index-features-card {
  width: calc((100% / 3) - var(--crmpam-xlarge));
  min-width: 290px;
  max-width: 350px;
  border: 2px solid #ffffff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}

.features-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.features-title p {
  font-weight: bold;
  font-size: 30px;
}

.features-title p:first-child {
  background: rgba(236, 34, 173, 1);
  padding: 0px 25px 0px 15px;
  margin-right: 10px;
}

/*CHAT BUTTON*/
.chatButton {
  height: 30px;
  width: 30px;
  min-width: 30px;
  border-radius: var(--crmpam-border-radius-small);
  background: var(--crmpam-btn-color-primary);
  border: 1px solid var(--crmpam-btn-color-primary);
}

.chatButton svg {
  width: 20px;
  height: 20px;
  color: var(--text-primary) !important;
}

.chatButton:hover {
  background: var(--crmpam-btn-color-primary-hover);
  border: 1px solid var(--crmpam-btn-color-primary);
  color: var(--crmpam-color-primary);
  filter: brightness(1.1);
  opacity: 0.8;
}

/*MARKETING POPUP*/
:root {
  --fucsia: #ef22ab;
  --purple: #8011ff;
  --mint: #1cd373;
}

.clmcpam-marketing-dialog-title {
  background: linear-gradient(135deg, var(--fucsia), var(--purple));
  color: #fff;
  padding: 20px;
  font-weight: 700;
  font-size: 20px;
}

.clmcpam-marketing-dialog-title div div {
  text-align: center;
  width: 100%;
}

.clmcpam-marketing-dialog-title div div p:first-child {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
  opacity: 0.7;
  text-align: center;
  width: 100%;
}

.clmcpam-marketing-dialog-title div div p:last-child {
  display: block;
  text-align: center;
  font-size: 28px;
  line-height: 30px;
  color: #fff;
  font-weight: 700;
  margin-top: 10px;
}

.clmcpam-marketing-dialog-title button {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 20px;
  background: #ad44f0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}

.clmcpam-marketing-dialog-title button:active {
  background-color: var(--fucsia);
  transform: rotate(180deg) scale(0.8);
}

.clmcpam-marketing-dialog-title button:hover {
  background-color: var(--fucsia);
  transform: rotate(180deg);
}

.crmpam-dialog.clmcpam-marketing-dialog .crmpam-btn-primary {
  display: flex;
  margin: 20px auto;
  width: 100%;
  max-width: 240px;
  height: 50px;
  background: var(--mint) !important;
  opacity: 1 !important;
  color: #fff;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.crmpam-dialog.clmcpam-marketing-dialog .crmpam-btn-primary:hover {
  background-color: var(--purple) !important;
  transform: scale(1.1);
}

.clmcpam-marketing-dialog .clmcpam-marketing-dialog-content {
  padding-top: 24px;
}

.clmcpam-marketing-dialog-subject {
  font-size: 16px;
}

.clmcpam-marketing-dialog-body {
  font-size: 14px;
}

/*WELCOME PAGE*/
.welcome-page {
  position: relative;
  background: #fff;
  padding-bottom: 100px;
}

.welcome-page * {
  z-index: 1;
}

.welcome-page:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 46%;
  background: linear-gradient(106.76deg, #ef22ab -1.26%, #8011ff 100%);
  z-index: 0;
}

p.welcome-title {
  font-family: var(--crmpam-font);
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgb(255 255 255 / 70%);
}

p.welcome-subtitle {
  font-family: var(--crmpam-font);
  font-weight: 800;
  font-style: ExtraBold;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 30px;
  max-width: 500px;
  color: #ffffff;
  text-shadow: 0px 2px 8px rgb(26 0 47 / 25%);
}

.welcome-promo-cards {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 650px;
  gap: 20px;
  margin-bottom: 30px;
}

.welcome-promo-cards .welcome-promo-card {
  width: calc(315px - 62px);
  height: calc(244px - 52px);
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  border-width: 1px;
  padding: 20px 30px 30px 30px;
  border: 1px solid #dddddd;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.welcome-promo-cards .welcome-promo-card.active-bono {
  border: 1px solid #20b05e !important;
  background: #f2fff8 !important;
  box-shadow: 0 2px 6px #0000000d !important;
  transform: scale(1.01) !important;
}

.welcome-promo-cards .welcome-promo-card:hover {
  border: 1px solid #000000;
  background: #ffffff;
  box-shadow: 0 2px 6px #0000000d;
  transform: scale(1.01);
}

p.welcome-promo-card-tag {
  font-family: var(--crmpam-font);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

p.welcome-promo-card-title {
  font-family: var(--crmpam-font);
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
}

p.welcome-promo-card-desc {
  font-family: var(--crmpam-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  margin-bottom: 10px;
}

p.welcome-promo-card-desc span {
  font-weight: 700;
}

a.welcome-promo-card-link {
  font-family: var(--crmpam-font);
  font-weight: 700;
  font-style: Bold;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  color: #8011ff;
}

.welcome-continue-button {
  width: 100%;
  max-width: 450px;
  height: 49px;
  opacity: 1;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: var(--crmpam-font);
  background: #14b35f !important;
  font-weight: 800;
  font-size: 14px;
  color: #FFF;
  margin-bottom: 32px;
}

.welcome-continue-button:hover {
  filter: brightness(1.2);
  color: #CCC;
}

.welcome-payments-methods img {
  max-height: 70px;
}

@media (max-width: 780px) {
  .welcome-page {
    padding: 40px 30px 100px 30px;
  }

  .welcome-page:before {
    height: 34%;
  }

  .welcome-promo-cards {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .welcome-promo-cards .welcome-promo-card {
    width: 50%;
    height: auto;
  }

  .welcome-payments-methods {
    max-width: 100%;
    gap: 40px;
  }
}

/* ===== Deposit success (contenedor + tarjeta) ===== */
.deposit-result {
  max-width: 840px;
  margin: 0 auto;
}

.deposit-success-wrap {
  max-width: 520px;
  width: 100%;
}

.deposit-success-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 12px;
  padding: 20px 32px 32px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* Logos*/
.welcome-payments-methods {
  flex-wrap: wrap;
  gap: 20px 28px;
}

.welcome-payments-methods img {
  height: 45px;
  object-fit: contain;
}

/* ===== MOBILE (â‰¤480px) ===== */
@media (max-width: 480px) {
  .deposit-result {
    padding: 16px 12px;
  }

  .deposit-result svg {
    width: 44px;
    height: 44px;
  }

  .deposit-result .crmpam-text-large {
    font-size: 22px;
    line-height: 26px;
    margin-top: 10px;
  }

  .deposit-success-wrap {
    max-width: 360px;
  }

  .deposit-success-card {
    max-width: 100%;
    padding: 16px 14px 16px 14px;
    border-radius: 12px;
  }

  .deposit-success-card .crmpam-text-xsmall {
    font-size: 11px;
    line-height: 16px;
  }

  .deposit-success-card .crmpam-text-medium {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }

  .welcome-continue-button {
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
  }

  /* Logos en dos filas */
  .welcome-payments-methods {
    gap: 16px 24px;
  }

  .welcome-payments-methods img {
    height: 45px;
  }
}

/* ===== VERY SMALL (â‰¤360px) ===== */
@media (max-width: 360px) {
  .deposit-success-wrap {
    max-width: 320px;
  }

  .deposit-success-card {
    padding: 14px 12px 14px;
  }

  .welcome-continue-button {
    height: 42px;
    font-size: 13px;
  }
}

/* ==== FIX: Evitar que white-layout machaque la tarjeta ==== */
.white-layout .deposit-success-card {
  background: #fff !important;
  border-color: #DDD;
}

.white-layout .deposit-result,
.white-layout .deposit-result * {
  background: transparent !important;
}

.white-layout .welcome-continue-button {
  background: #14b35f !important;
  /* asegura el verde del CTA */
}

/* ==== Responsive del bloque Ã©xito ==== */
.deposit-result {
  max-width: 840px;
  margin: 0 auto;
}

.deposit-success-wrap {
  max-width: 520px;
  width: 100%;
}

.deposit-success-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 12px;
  padding: 20px 32px 32px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.welcome-payments-methods {
  flex-wrap: wrap;
  gap: 20px 28px;
}

.welcome-payments-methods img {
  height: 45px;
  object-fit: contain;
}

/* ===== MOBILE (â‰¤480px) ===== */
@media (max-width: 480px) {
  .deposit-result {
    padding: 16px 12px;
  }

  .deposit-result svg {
    width: 44px;
    height: 44px;
  }

  .deposit-result .crmpam-text-large {
    font-size: 22px;
    line-height: 26px;
    margin-top: 10px;
  }

  .deposit-success-wrap {
    max-width: 360px;
  }

  .deposit-success-card {
    max-width: 100%;
    padding: 16px 14px;
    border-radius: 12px;
  }

  .deposit-success-card .crmpam-text-xsmall {
    font-size: 11px;
    line-height: 16px;
  }

  .deposit-success-card .crmpam-text-medium {
    font-size: 14px;
    line-height: 20px;
    margin-top: 10px;
  }

  .welcome-continue-button {
    width: 100%;
    height: 44px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 10px;
  }

  .welcome-payments-methods {
    gap: 16px 24px;
  }
}

/* ===== VERY SMALL (â‰¤360px) ===== */
@media (max-width: 360px) {
  .deposit-success-wrap {
    max-width: 320px;
  }

  .deposit-success-card {
    padding: 14px 12px;
  }

  .welcome-continue-button {
    height: 42px;
    font-size: 13px;
  }
}

/* === KYC Tiles (verificaciÃ³n) === */
.kyc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 700px) {
  .kyc-grid {
    grid-template-columns: 1fr;
  }
}

.kyc-tile {
  position: relative;
  background: #fff;
  border: 1px solid #dddddd;
  border-radius: 12px;
  padding: 16px 16px 18px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.kyc-status-chip {
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
}

.kyc-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kyc-leading-icon {
  color: #333;
}

.kyc-title {
  font-weight: 800;
  font-size: 14px;
  margin: 0;
}

.kyc-desc {
  font-size: 12px;
  color: #2b2b2b;
  margin: 0 0 12px 0;
}

.kyc-btn {
  background: #14B35F !important;
  color: #fff !important;
  font-weight: 800 !important;
  border-radius: 10px !important;
  height: 40px;
}

.kyc-btn:hover {
  filter: brightness(1.05);
}

/* =============================== */
/* ==== KYC MODAL / UPLOAD UI ==== */
/* =============================== */

/* Papel del diÃ¡logo â€” ancho, padding, radios como en mock */
.crmpam-dialog .MuiDialog-paper {
  max-width: 720px;
  width: calc(100% - 32px);
  border-radius: 16px;
  padding: 8px 8px 16px;
}

/* TÃ­tulo del diÃ¡logo */
.crmpam-dialog .MuiDialogTitle-root p {
  font-weight: 800;
  font-size: 22px;
  line-height: 1.25;
  margin: 6px 0;
}

/* Texto de ayuda del modal */
.kyc-help {
  font-size: 14px;
  line-height: 20px;
  color: #111827;
  margin: 8px 0 14px 0;
}

/* Caja de â€œarrastrar o pulsaâ€ y las 3 cajas de identidad */
.crmpam-drag-drop.uploadDocumentDropArea,
.uploadDocumentDropArea {
  background: #eef1f7;
  border: 2px dashed #b9c0ce;
  border-radius: 12px;
  min-height: 60px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .2s ease, background .2s ease;
}

.uploadDocumentDropArea:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

/* Labels interiores */
.uploadDocumentDropArea label {
  width: 100%;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 10px;
  user-select: none;
  cursor: pointer;
  color: #111827;
}

/* Eliminar documento (icono X) */
.uploadDocumentDropArea .deleteDoc {
  position: absolute;
  right: 10px;
  top: 8px;
  cursor: pointer;
  color: #6b7280;
}

/* Botones del modal */
.crmpam-dialog .crmpam-btn-secondary {
  background: #cfaeff !important;
  color: #fff !important;
  font-weight: 800 !important;
  border-radius: 12px !important;
  height: 44px;
}

.crmpam-dialog .crmpam-btn-secondary.crmpam-disabled {
  opacity: .6;
  filter: grayscale(20%);
  pointer-events: none;
}

.crmpam-dialog .crmpam-btn-primary {
  background: transparent !important;
  color: #6a19ff !important;
  border: 2px solid #6a19ff !important;
  border-radius: 12px !important;
  height: 44px;
  font-weight: 800 !important;
}

/* Espaciado entre cajas de identidad */
.uploadDocumentDropArea.identityDrop {
  margin-bottom: 12px;
}

/* ===== Mobile modal (â‰¤480px) ===== */
@media (max-width: 480px) {
  .crmpam-dialog .MuiDialog-paper {
    max-width: 380px;
    width: calc(100% - 24px);
    border-radius: 16px;
    padding: 6px 6px 14px;
  }

  .crmpam-dialog .MuiDialogTitle-root p {
    font-size: 20px;
  }

  .kyc-help {
    font-size: 13px;
    line-height: 18px;
  }

  .uploadDocumentDropArea label {
    padding: 12px;
  }

  .crmpam-dialog .crmpam-btn-secondary,
  .crmpam-dialog .crmpam-btn-primary {
    height: 46px;
    font-size: 14px;
    border-radius: 12px !important;
    background: #8011ff;
  }
}

/* CTA morado activo (habilitado) */
.crmpam-dialog .crmpam-btn-secondary:not(.Mui-disabled) {
  background: #8011ff !important;
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(106, 25, 255, 0.25);
  transition: filter .15s ease, box-shadow .15s ease, transform .02s ease;
}

.crmpam-dialog .crmpam-btn-secondary:not(.Mui-disabled):hover {
  filter: brightness(1.05);
}

/* CTA deshabilitado (cuando faltan archivos) */
.crmpam-dialog .crmpam-btn-secondary.Mui-disabled {
  background: #e7dbff !important;
  color: #ffffff !important;
  box-shadow: none;
  opacity: 1;
}


/* FOOTER */
.footer {
  background-color: #222631 !important;
  width: 100%;
  position: relative;
  z-index: 1;
}

.footerContent {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.chatImage {
  width: 240px;
  height: 137px;
  align-items: center;
  justify-content: start;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.chatImage:hover {
  background-color: #271356 !important;
}

.chatImage p {
  font-size: 14px !important;
  font-weight: 700;
  color: inherit;
  margin: 0;
  font-family: 'Inter', sans-serif !important;
}

.chatImage img {
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.socialMediaContainer {
  flex-direction: row !important;
  align-items: center !important;
}

.socialIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Media Queries */
@media (max-width: 964px) {
  .chatImage {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .socialMediaContainer {
    flex-direction: column !important;
  }
}

.crmpam-footer {
  background-image: linear-gradient(to bottom,
      #35116f,
      #2e1264,
      #281359,
      #22134e,
      #1d1243);
}

/*KAN-316*/
.crmpam-footer-logo {
  width: 100%;
  height: 100%;
  max-width: 30px;
  max-height: 30px;
  object-fit: contain;
}

a.icon-wrapper {
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 8px;
  display: inline-block;
  background-color: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  width: 46px;
  height: 46px;
  box-sizing: border-box;
}

a.icon-wrapper:hover {
  background-color: #c1199e !important;
  border: 2px solid #c1199e !important;
}

.crmpam-flex-end {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.crmpam-footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 var(--crmpam-xlarge) var(--crmpam-large);
  /* top right/bottom left */
  gap: 12px;
}

.crmpam-footer-col a {
  color: var(--crmpam-text-color);
  text-decoration: inherit;

  &:hover {
    color: #a6adc2 !important;
    text-decoration: underline;
  }
}

.crmpam-footer-cols {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.crmpam-footer-col-title {
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--crmpam-color-secondary);
}

.custom-hr {
  position: relative;
  z-index: 1;
  width: 250px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 20px auto;
  display: none;
}

.footer-redes p {
  margin-bottom: 10px;
}

.footer-text {
  max-width: 250px;
  line-height: 18px;
}

.crmpam-footer-col .crmpam-bold.crmpam-uppercase.crmpam-mb20.crmpam-pb10 {
  color: var(--crmpam-btn-color-primary);
}


.back-to-top-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: auto;
  margin-bottom: var(--crmpam-large);
  margin-top: var(--crmpam-large);
  color: var(--crmpam-text-color)
}

.img-align a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.chatImage {
  width: 240px;
  height: 137px;
  align-items: center;
  justify-content: start;
  transition: background-color 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.chatImage:hover {
  background-color: #271356 !important;
}

.chatImage p {
  font-size: 14px !important;
  font-weight: 700;
  color: inherit;
  margin: 0;
  font-family: 'Inter', sans-serif !important;
}

.chatImage img {
  height: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.socialIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}


.socialMediaContainer {
  flex-direction: row !important;
  align-items: center !important;
}


@media (max-width: 600px) {
  .socialMediaContainer {
    flex-direction: column !important;
  }
}

.crmpam-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--crmpam-medium) var(--crmpam-xlarge);
}

.options-footer {
  text-align: center;
  flex-direction: column;
}

.options-footer div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.options-footer p {
  margin: 10px 0;
  color: #a6adc2;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 400;
}

@media (max-width: 1000px) {
  .crmpam-footer>div.crmpam-footer-cols.crmpam-pt-large {
    flex-direction: column;

    >div.crmpam-footer-col {
      padding: var(--crmpam-medium);
      align-items: start;
    }
  }

  ;

}