/* *****************************************************

    ** Custom Stylesheet **

    Any custom styling you want to apply should be
    defined here.

***************************************************** */

.aviso-testimonio {
  font-size: 10px;
  text-align: center;
}

/*******************************************************************************
 * Estilos para el formulario de retirada de fondos de afiliado
 ******************************************************************************/
#form-formas-de-pago,
#form-afiliados-no-vip {
  background-color: #f9f9f9;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  padding: 10px 50px 35px 50px;
  margin-top: 40px;
  border: 1px solid #dddddd;
}

#form-formas-de-pago .cabecera,
#form-afiliados-no-vip .cabecera {
  border-top: 1px solid #ddd;
  text-align: center;
  height: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

#form-formas-de-pago .cabecera span,
#form-afiliados-no-vip .cabecera span {
  color: #058;
  font-size: 16px;
  display: inline-block;
  top: -11px;
  background: #f9f9f9;
  position: relative;
  padding: 0 17px;
}

/*
.custom-control-label {
    font-size: 16px;
}

.custom-radio {
    margin: 30px 0 10px 0;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #618d62;
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #618d62;
}

.row-transferencia {
    margin-right: -5px;
    margin-left: -5px;
}

.col-transferencia {
    padding-left: 5px;
    padding-right: 5px;
}

.textarea-pago {
    resize: none;
}

.btn-pagar {
    background-color: rgba(228, 143, 142, 1);
    border-color: rgba(228, 143, 142, 1);
    text-transform: uppercase;
    margin-top: 20px;
}

.btn-pagar:hover {
    background-color: rgba(228, 143, 142, .8);
    border-color: rgba(228, 143, 142, .8);
}
*/

/*******************************************************************************
 * Estilos para FAQs de WHMCS - PR4314
 * Modificado con issue #458
 ******************************************************************************/

.kb-article-title h2 {
  font-size: 23pt;
  color: #058;
}

.kb-article-title .fa-print {
  vertical-align: text-top;
  font-size: 13pt;
}

.kb-article-content h3 {
  padding-top: 5px;
  font-size: 19pt;
  color: #058;
}

.kb-article-content h4 {
  padding-top: 5px;
  font-size: 17pt;
  color: #058;
}

.kb-article-content h5 {
  padding-top: 5px;
  font-size: 15pt;
  color: #058;
}

.kb-article-content h6 {
  padding-top: 5px;
  font-size: 13pt;
  color: #058;
}

.kb-article-content {
  font-size: 11pt;
}

.kb-article-content p {
  text-align: justify;
  line-height: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
}

.kb-article-content ul {
  padding-top: 1px;
}

.kb-article-content ol {
  padding-top: 1px;
}

.kb-article-content li {
  line-height: 20px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.kb-article-content a {
  font-weight: 400;
  color: #058;
}

.kb-article-content img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
  margin-left: auto;
  margin-right: auto;
}

.kb-article-content video {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
  margin-left: auto;
  margin-right: auto;
}

.kb-article-content code {
  font-family: 'Cascadia Code', 'Courier New', Courier, monospace;
}

.kb-article-content pre {
  font-family: 'Cascadia Code', 'Courier New', Courier, monospace;
  font-size: 10pt;
}

.kb-article-content blockquote {
  font-family: 'Cascadia Code', 'Courier New', Courier, monospace;
  font-size: 10pt;
  margin: 5px 0px 5px 0px;
}

.kb-article-details li {
  display: none;
}

.kb-article-content .kb-img-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.7);
}

.kb-article-content .kb-img-modal-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.kb-article-content .kb-img-modal-image {
  max-height: 95%;
  max-width: 95%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/* ::::::::::::::::::::::::::::::: */
/* ::::::::: GD-WHMCS279 ::::::::: */
/* ::::::::::::::::::::::::::::::: */

/* Ocultamos label y select para el contacto de facturación */
form[action='?action=details'] div.form-group label[for='inputBillingContact'],
form[action='?action=details'] div.form-group select#inputBillingContact {
  display: none;
}

/* ::::::::::::::::::::::::::::::: */
/* :::: Modificaciones Raiola :::: */
/* ::::::::::::::::::::::::::::::: */

/* :::::: ESTILOS GENERALES :::::: */
/* Flexbox */
.flex {
  display: flex;
  display: -webkit-flex;
}

.flex-start {
  justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.flex-end {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.inline-flex {
  display: inline-flex;
  display: -webkit-inline-flex;
}

.center-hv {
  /* Para centrar vertical y horizontalmente el contenido de una row con display flex */
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}

.center-v {
  /* Centrar verticalmente con flex*/
  align-items: center;
  -webkit-align-items: center;
}
/* Flexbox */

.xpadding-10 {
  padding: 0 10px;
}

.mayusculas {
  text-transform: uppercase;
}

.minusculas {
  text-transform: none;
}

.display-tablet {
  display: none;
}

/* Banderas idiomas */
.img-idioma-seleccionado {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.img-idioma-lista {
  display: inline-block;
  width: 12px;
  margin-right: 3px;
  margin-top: -2px;
}

.language-popover .popover-content li {
  padding: 0 20px 0 30px;
}
/* Banderas idiomas */

.btn.active,
.btn:active {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0) !important;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0) !important;
}

/* Fix superposicion input */
#frmDomainHomepage .input-group .form-control {
  z-index: 0;
}
/* :::::: ESTILOS GENERALES :::::: */

/* ::::::::;::: HEADER ::::::::::: */
/* Pre-menu y menu */
section#main-menu .navbar-main *:not(i),
section#header *:not(i) {
  font-family: 'Roboto', sans-serif;
}

section#header,
section#main-menu {
  width: 100%;
  position: relative;
  border-radius: 0;
}
/* Pre-menu y menu */

/* Pre-menu */
section#header .logout-admin {
  position: fixed;
  left: 15px;
  bottom: 20px;
  background: #e7b04f;
  padding: 4px 1px 1px 0;
  border-radius: 3px;
}

section#header #accountNotifications {
  background-color: #e7b04f;
}

section#header #accountNotifications:hover {
  background-color: #fff;
  color: #0c0c0c;
}

section#header a,
section#header .falso-link {
  color: #fff;
  font-size: 0.8em;
}

section#header .falso-link {
  padding-right: 15px;
  text-transform: none;
}

section#header ul.dropdown-menu,
section#main-menu ul.dropdown-menu {
  padding: 10px 0 7px 0;
  border-top: 5px solid transparent;
}

section#header ul.dropdown-menu li a {
  color: #333;
  font-size: 1em;
  line-height: 1.2em;
  padding: 7px 20px;
}

section#header ul.dropdown-menu li a {
  text-decoration: none !important;
}

section#header ul.dropdown-menu li a:focus {
  background-color: inherit !important;
}

section#header .nav .open > a,
section#header .nav .open > a:focus,
section#header .nav .open > a:hover {
  background-color: inherit !important;
}

section#header ul.top-nav a.btn {
  background-color: #e7b04f;
  border-radius: 0px;
}

section#header ul.top-nav a.btn:hover {
  background-color: #fff;
  color: #0c0c0c;
}

section#header ul.top-nav > li.primary-action {
  border-left: 1px solid #ffffff8c;
  padding-left: 11px;
  margin-left: 2px;
}

section#header .navbar-usuario {
  font-size: 0.9em;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

section#header .navbar-usuario li.account {
  text-transform: initial;
}

section#header .navbar-usuario li a:hover {
  text-decoration: underline;
}

section#header .navbar-usuario li:not(:last-child) {
  border-right: 1px solid #ffffff8c;
}

section#header .navbar-usuario i {
  font-size: 1.1em;
  vertical-align: initial;
  margin: 0 2px;
}

section#header .navbar-nav > li > a {
  padding-top: 0px;
  padding-bottom: 0px;
  border: 0px solid transparent;
  text-transform: uppercase;
}

section#header .navbar-nav > li:first-child > a {
  padding-left: 0;
}

section#header ul.top-nav > li > a {
  padding: 6px 10px;
  line-height: unset;
}

section#header #languageChooser i {
  padding-left: 3px;
}

section#header .nav > li > a:focus,
.nav > li > a:hover {
  background-color: transparent;
  outline: unset;
}

section#header #accountNotifications {
  overflow: visible;
}

.popover-user-notifications i {
  color: #e7b04f;
}

section#header .label-notificacion {
  position: absolute;
  font-size: 1em;
  right: -6px;
  top: -6px;
  width: 16px;
  height: 16px;
  padding: 0;
  text-align: center;
  line-height: 15px;
  border-radius: 50%;
}
/* Pre-menu */

/* Menu */
section#header {
  background-color: transparent;
  background-image: linear-gradient(
    130deg,
    #0ba7dc 50%,
    rgba(255, 255, 255, 0) 0%
  );
  padding: 0;
  z-index: 1;
}

section#main-menu {
  background-color: #196ca1;
  padding: 70px 0 20px 0;
  margin-top: -50px;
}

section#main-menu .logo-cabecera {
  width: 100%;
}

section#main-menu .texto-area-de-cliente {
  font-family: 'Roboto', sans-serif;
  position: absolute;
  right: 17px;
  bottom: -8px;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 0.65em;
  letter-spacing: 0.02em;
}

section#main-menu .navbar-main {
  background-color: transparent;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

section#main-menu .navbar-main .navbar-nav > li:not(:last-child) {
  margin-right: 15px;
}

section#main-menu .navbar-main .navbar-nav > li > a {
  text-transform: uppercase;
  font-size: 0.85em;
  font-weight: 500;
  padding: 3px 8px;
}

section#main-menu .navbar-main .navbar-nav > li > a:hover,
section#main-menu .navbar-main .navbar-nav > li > a:focus {
  background-color: #e7b04f;
  border-radius: 5px;
}
/* Menu */
/* :::::::::::: HEADER ::::::::::: */

/* :::::::::::: FOOTER ::::::::::: */
section#footer {
  font-family: 'Roboto', sans-serif;
  padding: 80px 10px 60px 10px;
  border-top: 0px solid #ddd;
  color: #fff;
  background-color: transparent;
  background-image: url('../img/bg-footer-hexagonos.svg'),
    linear-gradient(130deg, #0ab1e4 45%, #0f2977 100%);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

section#footer * {
  color: #fff;
}

section#footer .logo-footer {
  max-width: 140px;
  margin-top: -12px;
}

section#footer .titulo-footer {
  font-size: 1.1em;
  line-height: 1em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}

section#footer .lista-footer {
  font-weight: 300;
  margin-bottom: 20px;
}

section#footer .lista-footer-icono {
  margin-left: 2em;
  padding-left: 0;
}

section#footer .lista-footer li {
  line-height: 1.5em;
  margin-top: 5px;
  position: relative;
}

section#footer .lista-footer p {
  line-height: 1.5em;
  margin-bottom: 5px;
}

section#footer .lista-footer li span {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

section#footer .lista-footer li i {
  margin-right: 5px;
}

section#footer .lista-footer li a {
  font-size: 1em;
}

section#footer .lista-footer li a:hover {
  text-decoration: none;
  opacity: 0.8;
}

section#footer .icono-location-footer {
  margin-left: -14px;
}

section#post-footer {
  background-color: #0e428b;
  text-align: center;
  padding: 20px 0 10px;
  color: #fff;
}

section#post-footer p {
  font-size: 0.7em;
}

section#post-footer a {
  color: #fff;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

section#post-footer a:hover {
  opacity: 0.8;
}

section#post-footer .back-to-top {
  float: right;
  margin-top: -45px;
}

section#post-footer .back-to-top i {
  padding: 10px;
  background-color: #ddd;
  color: #888;
  border-radius: 3px;
  opacity: 0.7;
}
/* :::::::::::: FOOTER ::::::::::: */

/* :::::::::::: AREA DE CLIENTE (MI CUENTA) ::::::::::: */
.panel-sidebar .list-group-item.active,
.panel-sidebar .list-group-item.active:focus,
.panel-sidebar .list-group-item.active:hover {
  z-index: 0;
}
/* :::::::::::: AREA DE CLIENTE (MI CUENTA) ::::::::::: */

/* :::::::::::: RESPONSIVE ::::::::::: */
/* Large desktops and laptops */
@media (min-width: 1200px) {
}

@media (max-width: 992px) {
  /* General */
  .no-padding-mobile {
    padding: 0;
  }

  /* Main body */
  section#main-body,
  section#home-banner {
    padding-top: 30px;
  }
  /* Main body */

  /* Banderas idiomas */
  .img-idioma-seleccionado {
    display: inline-block;
    width: 28px;
    height: 28px;
    margin-top: -3px;
    margin-right: 5px;
  }
  /* Banderas idiomas */

  .icono-acceso-no-login,
  .icono-registro-no-login {
    vertical-align: middle;
    height: 16px;
  }

  .icono-registro-no-login {
    font-size: 1.8em !important;
  }

  .icono-acceso-no-login {
    margin-right: 4px;
  }

  .texto-registro-acceso-no-login {
    font-size: 1.2em;
  }
  /* General */

  /* Pre-menu */
  section#header {
    background-image: unset !important;
    background-color: #0ba7dc !important;
    position: fixed;
    top: 0px;
    padding: 3px 0;
    z-index: 3;
  }

  section#header .container-header {
    width: auto;
  }

  section#header a {
    text-transform: uppercase;
    font-size: 0.7em;
  }

  section#header .navbar-nav > li:first-child > a {
    padding-left: 15px;
  }

  section#header .top-nav {
    margin: 0;
    padding: 0;
  }

  section#header
    .top-nav
    li:not(.li_logout_mobile):not(#Secondary_Navbar-Account) {
    margin: 0 2px;
  }

  section#header .top-nav li:not(.account):not(.li-carrito) a.btn {
    background-color: transparent !important;
  }

  section#header .row-header-mobile {
    padding: 10px 0;
  }

  section#header .row-header-mobile button.navbar-toggle .icon-bar {
    width: 20px;
    height: 3px;
  }

  section#header .row-header-mobile i {
    font-size: 2em;
  }

  section#header .flecha-menus {
    font-size: 1.2em !important;
  }

  section#header ul.top-nav a.btn,
  section#header ul.top-nav > li > a {
    padding: 6px 7px 1px 4px;
    border-radius: 3px;
    line-height: 20px !important;
    vertical-align: top;
    border: 0px;
  }

  section#header #accountNotificationsContentMobile {
    right: -52px;
    top: 43px;
    position: absolute;
    background-color: #fff;
    padding: 15px;
    width: 100vw;
    max-width: 100vw;
  }

  section#header #accountNotificationsContentMobile ul.client-alerts .none {
    text-transform: uppercase;
  }

  section#header
    #accountNotificationsContentMobile
    ul.client-alerts
    li:not(:last-child) {
    margin-bottom: 11px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
  }

  section#header #accountNotificationsContentMobile a {
    color: #333 !important;
    font-size: 1em;
    line-height: 1.6em;
    white-space: normal;
  }

  section#header #accountNotificationsContentMobile i {
    font-size: 1.2em;
    color: #e7b04f;
    float: left;
    margin-right: 5px;
  }

  section#header #accountNotificationsContentMobile .message {
    text-indent: -1px;
    margin-left: 25px;
  }

  section#header .label-notificacion {
    font-size: 1em;
    right: 7px;
    top: 0px;
    width: 15px;
    height: 15px;
    line-height: 15px;
    background-color: #e7b04f;
  }

  section#main-menu {
    display: flex;
    top: 0 !important;
    margin-top: 54px !important;
    padding: 12px 0 17px 0;
  }

  /* Fix z-index desplegable idiomas */
  #registration .prepend-icon .field-icon {
    z-index: 2 !important;
  }
  /* Fix z-index desplegable idiomas */
  /* Pre-menu */

  /* Menu */
  section#main-menu {
    top: 62px;
  }

  section#main-menu > .container > .row {
    display: block;
  }

  section#main-menu .logo-cabecera {
    max-width: 200px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  section#main-menu .texto-area-de-cliente {
    left: 50%;
    transform: translateX(22px);
  }

  .navbar-main-mobile {
    display: inline-block;
    min-height: auto;
    background-color: transparent;
  }

  .navbar-main-mobile .navbar-toggle {
    padding: 0px;
    margin: 0;
    margin-right: 10px;
    border: 0;
    border-radius: 0;
    float: none;
  }

  .navbar-main-mobile .navbar-toggle:focus .icon-bar,
  .navbar-main-mobile .navbar-toggle:hover .icon-bar {
    background-color: #fff;
  }

  /* Menu desplegable en movil */
  section#header .navbar-collapse {
    position: absolute;
    width: 103vw;
    background-color: #fff;
    top: 37px;
    left: -15px;
    padding: 0;
    margin: 0;
  }

  section#header .navbar-collapse ul.nav {
    margin: 0px;
  }

  section#header .navbar-collapse li a {
    padding: 14px 35px 10px 16px;
  }

  section#header .navbar-collapse > .nav > li:hover > a {
    background-color: #196ca1;
    color: #fff !important;
  }

  section#header .navbar-collapse > .nav > li > a:focus {
    color: #fff !important;
    background-color: #196ca1 !important;
  }

  section#header .navbar-collapse li:hover a,
  section#header .navbar-collapse .dropdown-menu li:hover a {
    color: #;
    background-color: transparent;
  }

  section#header .navbar-collapse li:not(:last-child) {
    border-bottom: 1px solid #e8e8e8;
  }

  section#header .navbar-collapse a {
    color: #494c4f;
    font-size: 0.85em;
    font-weight: 500;
    padding: 10px 20px;
  }

  section#header .navbar-collapse .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  section#header .navbar-collapse .dropdown-menu li {
    padding: 0;
  }

  section#header .navbar-collapse .dropdown-menu li.nav-divider {
    display: none;
  }

  section#header .navbar-collapse .dropdown-menu a {
    color: #575a5d !important;
    padding: 10px 30px 7px 30px;
    font-size: 0.85em;
  }

  section#header .navbar-collapse .nav li a b.caret {
    border-top: 5px dashed;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    float: right;
    margin-top: 7px;
  }

  section#header #accountNotifications:hover,
  section#header ul.top-nav a.btn:hover {
    color: #fff;
  }

  section#header ul .li-carrito a:hover {
    color: #212121 !important;
  }

  /* Idiomas */
  a.choose-language {
    font-size: 1em !important;
  }

  #languageChooserMobile i {
    font-size: 1.2em !important;
  }

  #languageChooserContentMobile {
    position: absolute;
    background-color: #fff;
    width: 100vw;
    left: -49px;
    top: 45px;
    padding: 15px 20px;
    font-size: 1.4em;
  }

  #languageChooserContentMobile ul {
    columns: 3;
  }

  #languageChooserContentMobile ul li {
    padding: 5px 0px;
  }

  #languageChooserContentMobile ul li a {
    color: #494c4f;
  }
  /* Idiomas */
  /* Menu desplegable en movil */
  /* Menu */

  /* Sombra para todos los desplegables */
  section#header .navbar-collapse,
  section#header #accountNotificationsContentMobile,
  section#header #languageChooserContentMobile,
  #languageChooserContent {
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  }
  /* Sombra para todos los desplegables */

  /* Footer */
  section#footer .icono-location-footer {
    margin-left: 0;
  }
  /* Footer */
}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
  /* Menu */
  section#main-menu .navbar-main .navbar-nav > li > a {
    font-size: 0.7em;
  }
  /* Menu */
}

@media (min-width: 540px) and (max-width: 991px) {
  .display-tablet {
    display: inline-block;
  }

  .menu-movil-icono-texto {
    transform: translateY(-3px);
    padding-left: 4px;
  }
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
  /* Footer */
  section#footer .col-footer {
    text-align: center;
    margin-bottom: 20px;
  }

  section#footer .col-footer:first-child {
    margin-bottom: -10px;
  }

  section#footer .col-footer:last-child {
    margin-bottom: 0;
  }

  section#footer .titulo-footer {
    text-align: center;
  }

  section#footer .logo-footer {
    display: inline-block;
    max-width: 200px;
    margin-bottom: 20px;
  }

  section#footer .lista-footer-icono {
    margin-left: 0;
    padding-left: 0;
  }

  section#footer .lista-footer li {
    position: unset;
  }

  section#footer .lista-footer li span {
    position: unset;
    width: 0;
  }
  /* Footer */
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
  /* Footer */
  section#footer .col-footer {
    text-align: center;
    margin-bottom: 20px;
  }

  section#footer .col-footer:first-child {
    margin-bottom: -10px;
  }

  section#footer .col-footer:last-child {
    margin-bottom: 0;
  }

  section#footer .titulo-footer {
    text-align: center;
  }

  section#footer .logo-footer {
    display: inline-block;
    max-width: 200px;
    margin-bottom: 20px;
  }

  section#footer .lista-footer-icono {
    margin-left: 0;
    padding-left: 0;
  }

  section#footer .lista-footer li {
    position: unset;
  }

  section#footer .lista-footer li span {
    position: unset;
    width: 0;
  }
  /* Footer */
}

/* Portrait phones and smaller */
@media (max-width: 480px) {
}
/* :::::::::::: RESPONSIVE ::::::::::: */

/* ::::::::::::::::::::::::::::::: */
/* :::: Modificaciones Raiola :::: */
/* ::::::::::::::::::::::::::::::: */

/* ===== Aviso 2FA en sidebar ===== */
/* La alerta llena el cuerpo del panel, sin margen blanco alrededor */
.panel-body:has(> .aviso-2fa) {
    padding: 0;
}
/* Encabezado del panel en rojo (estilo "danger") */
.panel:has(.aviso-2fa) {
    border-color: #d43f3a;
}
.panel:has(.aviso-2fa) > .panel-heading {
    background-color: #d9534f;
    border-color: #d43f3a;
    color: #fff;
}
.panel:has(.aviso-2fa) > .panel-heading .panel-title,
.panel:has(.aviso-2fa) > .panel-heading .panel-title a,
.panel:has(.aviso-2fa) > .panel-heading i {
    color: #fff;
}
/* Selector específico para ganar a `.panel-sidebar .alert` del tema padre */
.panel-sidebar .alert.aviso-2fa {
    text-align: left;
    margin: 0;
    border: 0;
    border-radius: 0 0 3px 3px;
}
.aviso-2fa > :last-child {
    margin-bottom: 0;
}
.aviso-2fa__texto {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.4;
}
.aviso-2fa__texto i.fa-exclamation-triangle {
    margin-right: 4px;
}
.aviso-2fa__boton {
    margin-top: 8px;
}
.aviso-2fa__boton i {
    margin-right: 4px;
}
