/*////////////////////////////*/
/* GENERAL */
/*////////////////////////////*/

:root {
  --color-principal: #494949;
  --color-acento: #494949;
  --color-texto: #8a8989;
  --color-exito: #5779ff;
  --color-valido: #4caf50;
  --color-error: #d10729;
  --color-fondo: #080808;
  --color-blanco: #fff;
  --color-negro: #000;
  --box-shadow: 0 5px 10px var(--color-acento);
  --fuente-texto: "Inter", sans-serif;
  --tamano-h1: 36px;
  --tamano-h2: 24px;
  --tamano-h3: 20px;
  --tamano-h4: 20px;
  --tamano-h5: 20px;
  --tamano-h6: 20px;
  --tamano-texto: 15px;
  --tamano-texto-pequeno: 13px;
  --padding-base: 10px;
  --border-radius: 5px;
  --transition-base: all 0.5s;
}

.color_error {
  color: var(--color-error);
}

.color_valido {
  color: var(--color-valido);
}

html {
  font-family: var(--fuente-texto);
  box-sizing: content-box;
  scrollbar-width: thin;
  scrollbar-color: var(--color-acento) var(--color-blanco);
}

.sidenav-dark.sidenav-main .sidenav {
  scrollbar-width: thin;
  scrollbar-color: var(--color-acento) var(--color-negro);
}

body {
  background: var(--color-negro);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0;
  overflow: hidden;
}

a {
  color: var(--color-acento);
}

.btn {
  background-color: var(--color-acento) !important;
  color: var(--color-blanco) !important;
}

.btn:hover {
  background-color: var(--color-negro) !important;
  color: var(--color-blanco) !important;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: var(--color-blanco);
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-acento);
  border-radius: var(--border-radius);
}

::-webkit-scrollbar-thumb:hover {
  background-color: #b5845e;
}

.sidenav-dark.sidenav-main .sidenav::-webkit-scrollbar {
  width: 10px;
}

.sidenav-dark.sidenav-main .sidenav::-webkit-scrollbar-track {
  background-color: var(--color-blanco);
}

.sidenav-dark.sidenav-main .sidenav::-webkit-scrollbar-thumb {
  background-color: var(--color-acento);
  border-radius: var(--border-radius);
}

.sidenav-dark.sidenav-main .sidenav::-webkit-scrollbar-thumb:hover {
  background-color: #b5845e;
}

.avatar-status img {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.spuser_alert_multiple {
  width: 100%;
}

.hyp-register-input label small {
  font-size: 10px;
}

/*////////////////////////////*/
/* Login */
/*////////////////////////////*/

.login-bg {
  background-image: url(../img/fondo.jpg);
  background-position: center center;
  background-size: cover;
}

.login-bg .login-card {
  width: 400px;
}

.row.crca_row_login {
  background-color: #f9f9f9;
  margin: var(--padding-base) 0;
  display: flex;
  align-items: center;
}

.row.crca_row_login .crca_input_login,
.row.crca_row_login .crca_input_login:focus {
  margin: 0;
  border: none;
  box-shadow: none;
}

.row.crca_row_login .input-field {
  padding: var(--padding-base) !important;
  margin-top: -5px;
}

.login-card .showpass {
  top: 15px;
  right: 10px;
}

button#send_login,
button#send_recovery {
  width: 100% !important;
  margin-top: 5px !important;
  height: auto;
  text-align: left;
  background-color: var(--color-negro) !important;
  padding: 3px 10px !important;
  border-radius: 0;
}

.input-field.col.s12.nmbm {
  padding: 0 !important;
}

.logo-login {
  width: 200px;
  margin: auto;
}

/*////////////////////////////*/
/* Dashboard */
/*////////////////////////////*/

.footer-light .footer-copyright {
  color: var(--color-negro);
}

#main {
  background-color: var(--color-blanco);
  padding-left: 0;
  width: calc(100% - 260px);
  margin: 0;
  min-height: calc(100vh - 134px);
  height: calc(100vh - 134px);
  max-height: calc(100vh - 134px);
  overflow: auto;
}

header#header {
  width: calc(100% - 250px);
  padding: 0;
  margin-left: 260px;
  position: relative;
  height: 64px;
}

.sidenav-dark {
  width: 260px;
  margin: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  top: -64px;
  height: 100vh;
  z-index: 999;
  justify-content: space-between;
}

.sidenav-dark .brand-sidebar {
  background-color: var(--color-fondo);
  box-shadow: none;
  height: 150px;
}

.sidenav-dark.sidenav-main .sidenav {
  background-color: var(--color-negro);
  box-shadow: none;
  padding: 20px 10px;
  min-height: calc(100vh - 70px);
  box-sizing: border-box;
  position: relative;
  transform: none;
  top: 0;
  max-height: max-content;
  display: block;
  overflow-y: auto;
}

a.brand-logo.darken-1 {
  box-sizing: border-box;
  text-align: center;
  top: 10px;
}

.brand-sidebar .logo-wrapper a.brand-logo img {
  width: 150px;
  position: relative;
  margin: 0;
  top: 0;
}

.sidenav li > a:not(.active):hover {
  background-color: #ddd !important;
  color: var(--color-negro) !important;
}

.sidenav-dark.sidenav-main .sidenav li > a {
  border-radius: var(--border-radius);
  margin: 5px;
  color: hsla(0, 0%, 100%, 1);
  background-color: transparent;
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 25px 10px !important;
  font-size: 18px;
  margin-bottom: 20px;
}

.sidenav-dark.sidenav-main .sidenav li > a > i {
  color: var(--color-acento);
  margin: 5px;
}

.sidenav-dark.sidenav-main .sidenav li.admin-logout {
  position: relative;
}

.sidenav-dark.sidenav-main .sidenav li.admin-logout > a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0;
}

.sidenav-dark.sidenav-main .sidenav li.current-menu-item > a {
  background-color: var(--color-acento) !important;
}

.sidenav-dark.sidenav-main .sidenav li > a:hover {
  background-color: var(--color-blanco) !important;
}

.sidenav-dark.sidenav-main .sidenav li > a:hover i {
  color: var(--color-acento) !important;
}

.navbar .navbar-main {
  box-shadow: none;
  width: 100%;
  position: relative;
  padding: 0 20px;
  box-sizing: border-box;
  background-color: var(--color-blanco);
  display: flex;
  justify-content: space-between;
}

.sidenav-dark.sidenav-main .sidenav li.simple-adpn > a {
  background-color: transparent !important;
  padding: 0 !important;
  height: 15px;
  line-height: 15px;
  text-decoration: underline;
  margin-top: 30px;
  color: #666666;
  font-size: 12px;
}

.nav-saludo {
  color: var(--color-principal);
  font-size: 30px;
  font-weight: 600;
}

.sutitle {
  display: block;
  color: var(--color-negro);
  top: 25px;
  position: relative;
  width: 100%;
  text-align: left;
  padding-left: 23px;
  font-size: 20px !important;
  opacity: 1;
  transition: var(--transition-base);
  white-space: nowrap;
}

.logo-wrapper {
  display: block;
  margin: 0;
}
.sidenav-dark.sidenav-main .sidenav.sidenav-logout {
  height: auto;
  padding: 10px;
}

.logo-wrapper span {
  display: none;
}

.adpnsy-404 {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.adpnsy-404 h2 {
  font-weight: bold;
  font-size: 60px;
  line-height: 60px;
  margin: 0;
}

.adpnsy-404 p {
  margin: 0;
  font-size: 20px;
}

/*////////////////////////////*/
/* Footer */
/*////////////////////////////*/

.footer-light.page-footer {
  transition: var(--transition-base);
  border-top: none !important;
  width: calc(100% - 260px);
  padding: 0;
  z-index: 999;
  position: fixed;
  bottom: 0;
  background: var(--color-blanco);
  margin-left: 260px;
  box-shadow: 0 0 10px var(--color-principal);
}

/*////////////////////////////*/
/* Tablas */
/*////////////////////////////*/

table th {
  background-color: var(--color-negro);
  color: var(--color-blanco);
  border-radius: 0;
}

table {
  overflow: hidden;
  border-bottom: none !important;
  border-spacing: 0 10px !important;
}

table thead th:first-child,
table tr td:first-child {
  border-bottom-left-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}

table thead th:last-child,
table tr td:last-child {
  border-bottom-right-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}

table td {
  background-color: #ddd;
  border-radius: 0;
  box-sizing: border-box;
}

.datepicker-date-display {
  background-color: var(--color-acento);
}

.datepicker-table td {
  border-radius: 50% !important;
  background-color: var(--color-blanco);
}

.datepicker-table {
  background-color: var(--color-blanco);
}

.datepicker-table td.is-selected,
.datepicker-table td:hover {
  background-color: var(--color-acento);
  color: var(--color-blanco);
}

/*////////////////////////////*/
/* Interno */
/*////////////////////////////*/

.breadcrumbs {
  box-sizing: border-box;
}

.crcar-btn-alt,
.box-btn {
  border: 2px solid #777777;
  padding: 2px 20px;
  font-size: 12px;
  font-weight: bold;
  color: #777777;
  display: block;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition-base);
  text-decoration: none;
  background-color: transparent;
}

.crcar-btn-alt:hover,
.box-btn:hover,
.box-radius:not(:checked) + span:hover {
  background-color: #a23c32;
  color: var(--color-blanco);
}

.crcar-order-status {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color-blanco);
  text-align: center;
  border-radius: var(--border-radius);
  transition: var(--transition-base);
}

.degradado {
  background: var(--color-negro);
  border-radius: 0;
}

.box_setting {
  border: 1px solid #ddd;
  height: 400px;
  overflow: auto;
  padding: var(--padding-base);
  width: 50%;
}

.box_setting_content,
.box-element {
  display: flex;
  gap: var(--padding-base);
  justify-content: space-between;
}

.box-element span {
  font-weight: bold;
  color: var(--color-negro);
  font-size: 13px;
}

.box-radius + span {
  border: 2px solid #777777;
  padding: 2px 20px !important;
  font-size: 11px !important;
  font-weight: bold;
  color: #777777;
  text-align: center;
  border-radius: var(--border-radius);
  transition: var(--transition-base) !important;
  height: auto !important;
}

.box-radius:checked + span {
  background-color: var(--color-negro);
  color: var(--color-blanco);
  cursor: no-drop;
}

.adp_modal_body {
  background-color: var(--color-blanco);
  color: var(--color-principal);
}

.adpn_modal_botton {
  background-color: var(--color-blanco);
  border-radius: 0;
  border-top: 0;
  flex-direction: row;
}

.adpn_modal_content {
  box-shadow: 0px 2px 10px 0 var(--color-acento);
  border-radius: 0px !important;
}

.adpn_modal_header h3 {
  font-size: 30px !important;
  text-align: left;
  font-weight: 400 !important;
}

.adpn_modal_botton .adp_modal_hide {
  background-color: var(--color-blanco) !important;
  color: var(--color-acento) !important;
  border-radius: 50px;
  width: auto;
  box-shadow: 0 2px 10px var(--color-acento);
}

.adpn_modal_botton .adpn_action {
  background-color: var(--color-acento) !important;
  color: var(--color-blanco) !important;
  border-radius: 50px;
  width: auto;
  box-shadow: 0 2px 10px var(--color-acento);
}

.adpn_modal_botton button:hover {
  background-color: var(--color-negro) !important;
  color: var(--color-blanco) !important;
}

.spuser_alert_close {
  background-color: var(--color-acento);
  top: 5px;
  right: 5px;
  border-radius: 5px;
  font-size: 30px;
  line-height: 25px;
}

.spuser_alert_img {
  font-size: 0;
  color: var(--color-acento);
  margin-left: -5px;
}

.spuser_alert_img:before {
  content: "gpp_maybe";
  font-size: 45px;
}

.spuser_alert_cont {
  box-shadow: 0 0 12px 0 rgb(195 151 105 / 50%);
}

.spuser_alert_img:before {
  content: "gpp_maybe";
  font-size: 45px;
}

.spuser_alert_cont {
  padding-right: 50px;
}

.spuser_alert_cont .img-content {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/*////////////////////////////*/
/* Registro */
/*////////////////////////////*/

.hyp-register {
  background-color: var(--color-blanco);
  width: 500px;
  gap: 10px;
  margin: auto;
  top: 50%;
  position: relative;
  max-width: 90%;
  border-radius: 20px;
  padding: 30px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  display: flex;
}

.hyp-register-header h1,
.hyp-register-header h2 {
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  margin: 0;
}

.hyp-register-header img {
  width: 200px;
}

.hyp-register-seleccion {
  display: flex;
  gap: 10px;
  margin: 10px 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.hyp-register-seleccion > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
  background-color: var(--color-blanco);
  height: 170px;
  box-shadow: var(--box-shadow);
  justify-content: center;
  border-radius: 15px;
  position: relative;
  box-sizing: border-box;
  padding: 20px;
  gap: 15px;
  cursor: pointer;
  transition: all 0.5s;
}

.hyp-register-seleccion > div > i {
  font-size: 70px;
  color: var(--color-acento);
}

.hyp-register-seleccion > div > i {
  font-size: 70px;
  color: var(--color-acento);
}

.hyp-register-seleccion > div > span {
  font-size: 16px;
  background-color: var(--color-acento);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  border: none;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 100%;
}

.hyp-register-seleccion > div:hover {
  background-color: var(--color-negro);
}

.hyp-register-seleccion > div:hover i {
  color: var(--color-blanco);
}

.hyp-register-seleccion > div:hover span {
  background-color: var(--color-blanco);
  color: var(--color-acento);
}

.hyp-register-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hyp-register-content input {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  height: 16px !important;
  padding: 15px 0 !important;
  padding-bottom: 10px !important;
}

.hyp-register-content textarea {
  margin-bottom: -8px !important;
  margin-top: 0 !important;
  padding: 15px 0 !important;
  padding-bottom: 10px !important;
  max-height: 130px;
  overflow: auto;
}

.hyp-register-content .input-field .character-counter {
  position: absolute;
  right: 0px;
  font-size: 10px !important;
  top: -5px;
}

.hyp-register-content .input-field {
  margin: 0;
}

.hyp-register-input {
  width: 100%;
  padding: 0 20px;
  border: 1px solid var(--color-acento);
  border-radius: 30px;
  overflow: hidden;
  padding-top: 5px;
}

.hyp-register-content {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.hyp-register-inputs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.hyp-btn-primary,
.hyp-btn-primary:focus {
  font-size: 16px;
  background-color: var(--color-acento);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  border: none;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 100%;
  transition: all 0.5s;
}

.hyp-btn-primary:hover {
  background-color: var(--color-negro);
}

.hyp-btn-secondary,
.hyp-btn-secondary:focus {
  font-size: 16px;
  background-color: var(--color-blanco);
  padding: 7px 20px;
  border-radius: 50px;
  font-weight: 500;
  color: var(--color-acento);
  display: flex;
  align-items: center;
  border: none;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  width: 100%;
  transition: all 0.5s;
  border: 1px solid var(--color-acento);
}

.hyp-btn-secondary:hover {
  color: var(--color-blanco);
  background-color: var(--color-negro);
}

.hyp-register-politica {
  display: block;
  width: 100%;
}

.hyp-hiden {
  display: none;
}

.hyp-register-input .input-field > label:not(.label-icon) {
  top: -2px;
}

.hyp-register-input .input-field > label:not(.label-icon).active {
  -webkit-transform: translateY(-1px) scale(0.8);
  -ms-transform: translateY(-1px) scale(0.8);
  transform: translateY(-1px) scale(0.8);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

.code_send {
  position: absolute;
  right: -15px;
  width: 170px !important;
  top: -1px;
  z-index: 9;
}

.code_send[disabled] {
  background-color: var(--color-principal);
  cursor: no-drop;
}

/*////////////////////////////*/
/* Anuncios */
/*////////////////////////////*/

.hyp-map {
  height: 200px;
  width: 100%;
  margin-top: 10px;
  border-radius: 20px;
}

.hyp-register-fselect {
  margin-top: 10px;
  position: relative;
  width: 100%;
}

.hyp-register-content .fs-label-wrap .fs-label {
  padding: 10px 15px 10px;
}

.hyp-register-fselect .fs-label-wrap {
  border-radius: 50px;
}

.hyp-register-fselect > label {
  position: absolute;
  top: 3px;
  z-index: 9;
  left: 15px;
  font-size: 10px;
}

.msl_intTab_filter {
  display: flex;
  background-color: var(--color-blanco);
  align-items: center;
  width: calc(100% - 30px);
  margin: 0 auto 10px;
  border-radius: 10px;
  gap: 10px;
}

.msl_intTab_filter .fs-label-wrap {
  background-color: var(--color-blanco);
  margin: 0;
  border-radius: 10px;
  padding: 0 8px;
  color: var(--color-negro);
  border-color: var(--color-acento);
  border: 1px solid;
  height: 39px;
}

.msl_intTab_filter .fs-label-wrap .fs-label {
  padding: 6px 22px 6px 8px;
  height: 27px;
  display: flex;
  align-items: center;
}

.hyp-register-input.hyp-txtformat {
  height: 150px;
  padding: 0;
  max-height: 150px;
}

.hyp-register-input.hyp-txtformat .ql-container {
  height: 105px;
  overflow: auto;
}

.adpnsy-loading-box {
  width: calc(25% - 10px);
  height: 100px;
  aspect-ratio: 433/500;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: 5px;
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  display: flex;
  background-color: #a9a9a9bf;
}

img.adpnsy-progress-bar {
  width: 100%;
}

.adpnsy-loading-box img {
  height: 100%;
  opacity: 0;
  cursor: all-scroll;
  object-fit: cover;
  width: 100%;
}

.adpnsy-loading-box:not(.complete) img {
  width: 100%;
}

.adpnsy-loading-box p {
  position: absolute;
  margin: 0;
  font-size: 10px;
  width: 90%;
  left: 5%;
  bottom: 8px;
  z-index: 10;
  text-align: center;
  color: var(--color-blanco);
}

.adpnsy-progress-bar {
  position: absolute;
  bottom: 10px;
  width: 90%;
  left: 5%;
  z-index: 9;
}

.adpnsy-progress-bar div {
  background-color: var(--color-acento);
  height: 10px;
  width: 0%;
  border-radius: 5px;
  transition: width 0.3s;
}

.hyp-register-media {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  max-height: 275px;
  overflow: auto;
  justify-content: flex-start;
}

.hyp-register-media-scroll {
  display: none;
}

.adpnsy-loading-box.faild:before {
  background-color: #cc0000;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 8;
  opacity: 0.5;
}

.hyp-media-loader {
  width: 100%;
  border: 2px dotted var(--color-acento);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.hyp-media-loader input {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100% !important;
  left: 0;
  top: 0;
  cursor: pointer;
}

.hyp-media-loader span {
  font-size: 40px;
  color: var(--color-acento);
}

.adpnsy-actions-img {
  background-color: #0000004f;
  display: flex;
  width: 100%;
  padding: 5px;
  align-items: center;
  justify-content: space-evenly;
  color: var(--color-blanco);
  transition: all 0.5s;
  flex-wrap: wrap;
  gap: 5px;
  position: absolute;
  height: 100%;
  opacity: 0;
  cursor: all-scroll;
}

.adpnsy-loading-box:hover .adpnsy-actions-img {
  opacity: 1;
}

.adpnsy-actions-img > span {
  width: calc(50% - 5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  padding: 4px;
  border: 1px solid var(--color-blanco);
  border-radius: 5px;
}

.adpnsy-actions-img span:hover {
  color: var(--color-negro);
  cursor: pointer;
  background-color: var(--color-blanco);
  border-radius: 5px;
}

.adpnsy-actions-img > span i {
  font-size: 20px;
}

.adpnsy-actions-img .__1 {
  color: var(--color-negro);
  border-color: var(--color-negro);
}

.adpnsy-loading-box.complete.noChange img {
  cursor: no-drop;
}

.adpnsy-loading-box.complete.noChange .adpnsy-actions-img > span {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

.adpnsy-loading-box.complete.noChange .adpnsy-actions-img > span i {
  font-size: 30px;
}

.custom-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 998;
}
.custom-modal {
  position: relative;
  width: 433px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
}

.custom-modal-loader {
  font-weight: bold;
  position: absolute;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 20px);
  z-index: 1;
}

.custom-modal .hyp-register-inputs {
  position: absolute;
  width: 100%;
  bottom: 0;
}

._cv {
  z-index: 2;
  position: relative;
  display: none;
}

#__newDif {
  cursor: crosshair;
  width: 100%;
}

.custom-modal-content {
  position: relative;
  height: 100%;
}

.custom-modal-content iframe,
.custom-modal-content img {
  object-fit: contain;
  position: relative;
  height: 100%;
  width: auto;
  display: block;
  object-position: center;
  margin: auto;
}
.close-modal {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-blanco);
  background-color: var(--color-acento);
  width: 30px;
  border-radius: 5px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

/*////////////////////////////*/
/* Pagos */
/*////////////////////////////*/

.hyp-register-header .hyp-register-pago-icon {
  font-size: 100px;
  color: var(--color-acento);
}

.hyp-register-header .hyp-register-intruccion {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

/*////////////////////////////////////
/* -- InnerTable
////////////////////////////////////*/

.msl_intTab_leyenda {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

.msl_intTab_leyenda span {
  position: relative;
  width: auto;
  display: flex;
  flex-direction: row;
  gap: 5px;
  font-weight: bold;
  align-items: center;
  font-size: 10px;
}

.msl_intTab_leyenda span i {
  position: initial;
}

div#hyp-anuncios {
  height: calc(100vh - 135px);
  overflow: hidden;
  position: relative;
}

.msl_intTab_cont {
  display: flex;
  flex-direction: row;
  width: calc(100% - 30px);
  margin: auto;
  height: calc(100% - 90px);
  overflow: auto;
  flex-wrap: wrap;
  gap: 20px;
  align-content: flex-start;
}

.msl_intTab_filter + .msl_intTab_cont {
  height: calc(100% - 150px);
}

.msl_intTab_row {
  display: flex;
  background-color: var(--color-blanco);
  border-radius: 10px;
  align-items: stretch;
  border: 1px solid var(--color-acento);
  flex-wrap: wrap;
  column-gap: 5px;
  overflow: hidden;
  position: relative;
  width: calc(33.33% - 20px);
  height: auto;
}

.msl_intTab_alert {
  width: 20px;
  height: 20px;
  background-color: gray;
  top: 5px;
  right: 3px;
  border-radius: 50%;
  position: absolute;
}

.msl_intTab_alert.t2 {
  position: relative;
  display: block;
  top: 0;
  right: 0;
  margin: auto;
}

.msl_intTab_alert.__0 {
  background-color: red;
}

.msl_intTab_alert.__1 {
  background-color: orange;
}

.msl_intTab_alert.__2 {
  background-color: green;
}

.msl_intTab_img {
  width: 100%;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  height: 150px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.msl_intTab_img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  filter: blur(10px);
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  z-index: 0;
}

.msl_intTab_img img {
  display: block;
  width: 100%;
  object-fit: contain;
  object-position: center center;
  height: 100%;
  z-index: 1;
}

.msl_intTab_img i {
  font-size: 60px;
  width: 80px;
  text-align: center;
  height: 80px;
  line-height: 60px;
  color: #fff;
  z-index: 1;
}

.msl_intTab_img.msl_intTab_img_none {
  background-color: #9b9b9b;
  align-items: center;
  justify-content: center;
}

.msl_intTab_data {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: var(--color-negro);
  padding: 5px;
  box-sizing: border-box;
  gap: 5px;
  position: relative;
}

.msl_intTab_data h3 {
  font-size: 20px;
  margin: 0;
  font-weight: bold;
}

.msl_intTab_data p {
  font-size: 12px;
  display: flex;
  align-items: center;
  margin: 0;
  gap: 5px;
  justify-content: space-between;
  padding-left: 20px;
  position: relative;
}

.msl_intTab_data p i {
  font-size: 12px;
  position: absolute;
  left: 0;
}

.msl_intTab_data p span {
  display: flex;
  gap: 5px;
  align-items: center;
}

.msl_intTab_action {
  padding: 0 5px;
  display: flex;
  justify-content: space-around;
  width: 100%;
  background-color: var(--color-acento);
  flex-wrap: wrap;
}

.msl_intTab_action a {
  text-decoration: none;
  font-size: 10px;
  color: var(--color-blanco);
  width: 100%;
  text-align: center;
  padding: 5px;
  display: flex;
  flex-direction: column;
  width: calc(33.333% - 10px);
}

.msl_intTab_action a span {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.msl_intTab_action a i {
  font-size: 20px;
}

.msl_intTab_search {
  display: flex;
  background-color: var(--color-blanco);
  align-items: center;
  width: calc(100% - 30px);
  margin: 0 auto 10px;
  border-radius: 10px;
}

#msl_intTab_search_text {
  background-color: var(--color-blanco);
  margin: 0;
  border-radius: 10px;
  padding: 0 8px;
  color: var(--color-negro);
  border-color: var(--color-acento);
  border: 1px solid;
  height: 39px;
}

.msl_intTab_search a {
  background-color: var(--color-acento);
  font-size: 25px;
  margin-left: 10px;
  border-radius: 10px;
  color: #fff;
  text-align: center;
  padding: 7px;
}

.msl_intTab_loading {
  background-color: var(--color-acento);
  color: #fff;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
}

@media (max-width: 864px) {
  .msl_intTab_row {
    width: 100%;
  }
  .msl_intTab_filter {
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    z-index: 999;
    display: flex;
    justify-content: center;
    padding: 0;
    border: none;
    margin-left: 10px;
    width: calc(100% - 50px);
    height: 0;
    overflow: hidden;
  }

  .msl_intTab_filter.open:before {
    content: "Filtros";
  }

  .msl_intTab_filter:after {
    font-family: "Material Symbols Outlined";
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    content: "filter_list";
    position: fixed;
    background-color: #000000;
    bottom: 90px;
    z-index: 99999;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    right: 20px;
  }

  .msl_intTab_filter.open {
    height: auto;
    padding: 10px;
    border: 3px solid #000;
    overflow: visible;
  }

  .msl_intTab_filter.open:after {
    content: "close";
    bottom: auto;
    position: absolute;
    top: 10px;
    padding: 5px;
    font-size: 15px;
    right: 10px;
  }
}

/*////////////////////////////////////
/* -- Horarios
////////////////////////////////////*/

.hyp-horarios {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

.hyp-horario-dia {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.hyp-horario-dia label {
  min-width: 50px;
}

.hyp-horario-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 70px);
  justify-content: flex-end;
}

.hyp-horario-inputs select {
  width: calc(33.33% - 10px);
  font-size: 12px;
}

.hyp-horario-inputs input[type="time"] {
  padding: 5px;
  font-size: 12px;
  width: calc(33.33% - 10px);
}

.add-horario,
.remove-horario {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

.add-horario:disabled {
  color: #ccc;
  cursor: not-allowed;
}

/*////////////////////////////////////
/* -- Planes
////////////////////////////////////*/

.hyp-planes-modal h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.hyp-planes-modal h2 span {
  color: var(--color-acento);
}

.hyp-planes-modal-plan {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  border-radius: 10px;
  background-color: var(--color-negro);
  color: var(--color-blanco);
  gap: 10px;
  border: 1px solid var(--color-acento);
}

.hyp-planes-modal-plan h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  width: 160px;
  color: var(--color-negro);
}

.hyp-planes-modal-plan:nth-child(2n) {
  background-color: var(--color-acento);
}

.hyp-planes-modal-plan h4 {
  width: calc(100% - 170px);
  margin: 0;
  font-size: 15px;
  color: var(--color-negro);
  text-align: right;
}

.hyp-planes-modal {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hyp-planes-modal-plan-elementos {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#modal-planes .adp_modal_body {
  padding: 10px;
  max-height: 80vh;
}

#modal-planes .adpn_modal_botton {
  display: none;
}

.hyp-planes-modal-plan-elementos > div {
  background-color: var(--color-blanco);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  gap: 5px;
  border-radius: 10px;
  color: var(--color-negro);
  cursor: pointer;
  border: 3px solid;
}

.hyp-planes-modal-plan-elementos .activo {
  border-color: var(--color-acento);
}

.hyp-planes-modal-plan-elementos > div span {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.hyp-planes-modal-plan-elementos > .activo:hover {
  background-color: var(--color-acento);
  border-color: var(--color-blanco);
  color: var(--color-blanco);
}

.hyp-planes-modal > h3 {
  font-size: 20px;
  text-align: center;
  width: 280px;
  margin: 0 auto;
  font-weight: bold;
}

.hyp-planes-modal-plan-elementos .inactivo {
  background-color: var(--color-principal);
  color: var(--color-texto);
  cursor: no-drop;
}
.hyp-planes-modal-plan.free {
  align-items: center;
}
.hyp-planes-modal-plan.free > div {
  background-color: var(--color-blanco);
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  color: var(--color-negro);
  cursor: pointer;
  border: 3px solid;
  text-align: center;
  font-weight: bold;
}

.hyp-planes-modal-plan.free h3 {
  width: calc(100% - 120px);
  font-size: 18px;
  text-align: center;
  padding: 10px;
}

.hyp-planes-modal-plan.free .inactivo {
  background-color: var(--color-principal);
  color: var(--color-texto);
  cursor: no-drop;
}

.activo .hyp-planes-modal-plan-elementos .activo {
  border-color: var(--color-acento);
}

.hyp-register-media-scroll {
  display: none;
}

.textarea-hyp {
  height: 150px;
  border-color: var(--color-acento);
  border-radius: 5px;
}

#__register_plan {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#__register_plan .hyp-planes-modal-plan-elementos > div span {
  font-size: 15px;
  line-height: 18px;
}

#__register_plan .hyp-planes-modal-plan-elementos > div {
  padding: 5px;
}

#__register_plan .hyp-planes-modal-plan h4 {
  font-size: 12px;
}

#__register_plan .hyp-planes-modal-plan.free h3 {
  font-size: 15px;
}

.hyp-register-input select:not(.regular-text),
.hyp-register-input .select2-container--default .select2-selection--single {
  height: 42px;
}

div#card-element {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid var(--color-acento);
  border-radius: 30px;
  overflow: hidden;
}

div#card-expiry-element {
  width: calc(33.33% - 5px);
  padding: 10px 20px;
  border: 1px solid var(--color-acento);
  border-radius: 30px;
  overflow: hidden;
}

div#card-cvc-element {
  width: calc(33.33% - 5px);
  padding: 10px 20px;
  border: 1px solid var(--color-acento);
  border-radius: 30px;
  overflow: hidden;
}

div#postal-code-element {
  padding: 10px 20px;
  width: calc(33.33% - 5px);
  border: 1px solid var(--color-acento);
  border-radius: 30px;
  overflow: hidden;
}
.pay-content {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 15px;
  margin-bottom: -30px;
}

/* Tarjeta contenedora */
.hyp-card-select {
  border: 2px solid #ddd;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  margin-bottom: 15px;
  transition: all 0.2s ease;
  justify-content: space-between;
}

/* Hover */
.hyp-card-select:hover {
  border-color: #999;
  background: #fafafa;
}

/* Seleccionada */
.hyp-card-select.hyp-selected {
  border-color: #007bff;
  background: #e9f2ff;
}

/* Icono/marca */
.hyp-card-brand {
  font-size: 20px;
  font-weight: bold;
}

/* Datos de la tarjeta */
.hyp-card-info {
  font-size: 14px;
  line-height: 1.3em;
}

/* Contenedor de todas las tarjetas */
#hyp-tarjetas-container {
  margin-top: 20px;
}

.hyp-back-link {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 15px;
    display: flex;
    padding: 5px 10px;
    background-color: #494949;
    border-radius: 10px;
    font-weight: bold;
    color: #fff;
}

/*////////////////////////////////////
/* -- Responsive
////////////////////////////////////*/

@media (max-width: 550px) {
  .hyp-register-media {
    gap: 10px;
    padding: 10px;
  }

  .adpnsy-loading-box {
    margin: 0;
    width: calc(50% - 5px);
  }
}

@media (max-width: 864px) {
  .sidenav-dark {
    width: 50px;
    top: -56px;
  }

  .sidenav-dark.sidenav-main .sidenav {
    width: 50px;
    padding: 5px;
    min-height: calc(100vh - 120px);
  }

  .sidenav-dark.sidenav-main .sidenav li > a {
    padding: 0px !important;
    font-size: 0;
  }

  #main {
    width: calc(100% - 50px);
    margin: 0;
    min-height: calc(100vh - 125px);
    height: calc(100vh - 125px);
    max-height: calc(100vh - 125px);
    min-height: calc(100dvh - 125px);
    height: calc(100dvh - 125px);
    max-height: calc(100dvh - 125px);
  }

  .footer-light.page-footer {
    width: calc(100% - 50px);
    margin-left: 50px;
  }

  header#header {
    width: calc(100% - 50px);
    margin-left: 50px;
    height: 56px;
  }

  .nav-saludo {
    font-size: 20px;
  }

  .crud_header h5 {
    font-size: 20px !important;
  }

  .crud_header h5 span {
    font-size: 14px;
  }

  #modal-planes .adpn_modal_content {
    width: 100%;
    height: 100vh;
    max-height: 100%;
  }

  #modal-planes .adp_modal_body {
    max-height: none;
    height: calc(100% - 63px);
  }

  .hyp-planes-modal-plan-elementos > div span {
    font-size: 14px;
  }

  .hyp-planes-modal-plan h4 {
    font-size: 12px;
    width: calc(100% - 120px);
  }

  .hyp-planes-modal-plan h3 {
    font-size: 15px;
    width: 110px;
  }

  .hyp-planes-modal {
    display: flex;
    justify-content: space-between;
    height: 100%;
  }

  .hyp-planes-modal > h3 {
    font-size: 16px;
  }

  .hyp-planes-modal > h2 {
    font-size: 18px;
  }
}

@media (max-width: 550px) {
  h1.logo-wrapper img {
    width: 50px;
    height: 50px;
    padding: 5px;
  }

  .hyp-register {
    height: calc(100vh - 90px);
    padding-top: 60px;
  }

  .hyp-register-inputs:not(:last-child) {
    display: flex;
    flex-wrap: wrap;
  }

  .hyp-register-content {
    max-height: calc(100% - 150px);
    overflow: auto;
    min-height: 300px;
  }

  .hyp-register.is-step2 .hyp-register-header {
    margin-top: 20vh;
  }

  .hyp-register-header img {
    width: 100px;
  }

  .hyp-register-header h1,
  .hyp-register-header h2 {
    font-size: 15px;
  }

  .adpnsy-loading-box {
    width: 100%;
  }

  .hyp-register-media-scroll {
    display: block;
    position: absolute;
    color: var(--color-acento);
    z-index: 10;
    right: 0;
    top: 50%;
    transform: translate(0px, -50%);
  }

  .hyp-register-media {
    padding-right: 20px;
    position: relative;
  }

  .hyp-horario-inputs *:not(span) {
    font-size: 8px !important;
  }

  .navbar #profile-dropdown {
    width: 250px !important;
    right: 0 !important;
    left: auto !important;
    height: auto !important;
  }
}

.whatsapp_dinamico {
  display: none;
}
.whatsapp-activo .whatsapp_dinamico {
  display: block;
}
