
.bodylogin {
  background-image: url(/static/images/fondo1.jpg);
}
body .back-arrow {
  position: fixed !important;
  top: 20px !important;
  left: 20px !important;
  font-size: 24px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  z-index: 9999 !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  display: inline-block !important;
}
 
 
/* Estilos para dispositivos móviles */
@media screen and (max-width: 768px) {
  body .back-arrow {
      top: 10px !important; /* Ajusta la posición vertical */
      left: 10px !important; /* Ajusta la posición horizontal */
      font-size: 20px !important; /* Reduce el tamaño de la fuente */
      background-color: rgba(255, 255, 255, 0.8) !important; /* Fondo semi-transparente */
      padding: 5px 10px !important; /* Añade un poco de padding */
      border-radius: 50% !important; 
      box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important; /* Añade una sombra sutil */
  }
}
 
/* Si la flecha es un elemento <i> dentro de .back-arrow */
body .back-arrow i {
  font-size: inherit !important;
}
 
.flash-messages1 {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 90%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
 
.flash1 {
  padding: 20px 30px;
  border-radius: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  background-color: #f8d7da;
  color: #000000;
  position: relative;
  width: 100%;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
 
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #721c24;
}
 
.flash1.success {
  background-color: #d4edda;
  color: #155724;
}
 
.flash1.danger {
  background-color: #f8d7da;
  color: #721c24;
}
 
.flash1.warning {
  background-color: #fff3cd;
  color: #856404;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #000000;
    background-color: #ffffff;
    padding-bottom: 80px; /* Ajusta según la altura del footer */
  }
 
  .layout_padding {
    padding: 75px 0;
  }
  
  .layout_padding2 {
    padding: 45px 0;
  }
  
  .layout_padding2-top {
    padding-top: 45px;
  }
  
  .layout_padding2-bottom {
    padding-bottom: 45px;
  }
  
  .layout_padding-top {
    padding-top: 75px;
  }
  
  .layout_padding-bottom {
    padding-bottom: 75px;
  }
  
  .custom_heading-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .custom_heading-container h3 {
    text-transform: uppercase;
    font-weight: bold;
    color: #000000;
    position: relative;
  }
  
  .custom_heading-container h3::before {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 50%;
    width: 50px;
    height: 7px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #ff4f5a;
    border-radius: 15px;
  }
  
  .btn-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: "Poppins", sans-serif;
  }
  
  .btn-box a {
    color: #1d1d1d;
    margin-right: 15px;
    font-size: 18px;
  }
  
  .btn-box hr {
    width: 75px;
    height: 1.2px;
    border: none;
    background-color: #464646;
    margin: 0;
  }
  
  /*header section*/
  .sub_page .hero_area {
    height: auto;
  }
  
  .hero_area.sub_pages {
    height: auto;
  }
  
  .header_section {
    background-color: #000000;
    font-family: "Poppins", sans-serif;
  }
  
  .header_section .container-fluid {
    padding-right: 25px;
    padding-left: 25px;
  }
  
  .header_section .nav_container {
    margin: 0 auto;
  }
  
  /*estilos para las opciones del navbar */
  .custom_nav-container .navbar-nav .nav-item .nav-link {
    padding: 20px 40px;
    color: #ffffff;
    text-align: center;
    position: relative;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link::before {
    content: "";
    display: none;
    position: absolute;
    bottom: 7px;
    left: 50%;
    width: 17px;
    height: 4px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #39E0EC;
    border-radius: 5px;
  }
  
  .custom_nav-container .navbar-nav .nav-item .nav-link:hover::before {
    display: block;
  }
  
  .custom_nav-container .navbar-nav .nav-item.active a::before {
    display: block;
  }
  
  a,
  a:hover,
  a:focus {
    text-decoration: none;
  }
  
  a:hover,
  a:focus {
    color: initial;
  }
  
  .btn,
  .btn:focus {
    outline: none !important;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  
  .custom_nav-container .nav_search-btn {
    background-image: url(../images/search-icon.png);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position-y: 7px;
    width: 35px;
    height: 35px;
    padding: 0;
    border: none;
  }
  
  .navbar-brand {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .navbar-brand img {
    width: 125px;
    margin-right: 35px;
  }
  /*logo micelu*/
  .navbar-brand span {
    font-weight: bold;
    font-size: 24px;
    color: #ffffff;
  }
  #nav-points{
    font-size: 25px;
    color: #000000;
  }
  
  .custom_nav-container {
    z-index: 99999;
    padding: 5px 0;
  }
  
  .custom_nav-container .navbar-toggler {
    outline: none;
  }
  
  .custom_nav-container .navbar-toggler .navbar-toggler-icon {
    background-image: url(../images/menu.png);
    background-size: 42px;
  }
  
  /*end header section*/
  /* slider section */
  .slider_section .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section .img-box img {
    width: 100%;
  }
  
  .slider_section .detail-box h1 {
    font-weight: bold;
    font-size: 4rem;
    color: #178db8;
  }
  
  .slider_section .detail-box h1 span {
    color: #ff4f5a;
  }
  
  .slider_section .slider_nav-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .slider_section .slider_nav-box .custom_carousel-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  
  .slider_section .carousel-control-prev,
  .slider_section .carousel-control-next {
    position: unset;
    width: 50px;
    height: 50px;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: center;
  }
  
  .slider_section .carousel-control-prev {
    left: 2%;
    background-image: url(../images/left-arrow-black.png);
  }
  
  .slider_section .carousel-control-prev:hover {
    background-image: url(../images/left-arrow.png);
  }
  
  .slider_section .carousel-control-next {
    right: 2%;
    background-image: url(../images/right-arrow-black.png);
  }
  
  .slider_section .carousel-control-next:hover {
    background-image: url(../images/right-arrow.png);
  }
  
  /* end slider section */
  .bg {
    background-image: url(../images/bg.jpg);
    background-size: cover;
  }
  
  .about_section {
    text-align: center;
  }
  
  .about_section .img-box img {
    width: 350px;
  }
  
  .service_section {
    text-align: center;
    position: relative;
  }
  
  .service_section .custom_heading-container {
    margin-bottom: 15px;
  }
  
  .service_section .service_container {
    padding: 45px 0 75px 0;
  }
  
  .service_section .box.b-2 .detail-box {
    width: 60%;
    text-align: right;
    overflow: hidden;
  }
  
  .service_section .box.b-2 .detail-box p {
    height: 52px;
    overflow: hidden;
  }
  
  .service_section .box.b-2 .detail-box a {
    min-width: 100px;
  }
  
  .service_section .box.b-3 .detail-box {
    width: 70%;
    margin-left: auto;
    overflow: hidden;
    text-align: left;
  }
  
  .service_section .box.b-3 .detail-box p {
    height: 52px;
    overflow: hidden;
  }
  
  .service_section .box.b-3 .detail-box a {
    min-width: 100px;
  }
  
  .service_section .img-box img {
    height: 200px;
  }
  
  .service_section .detail-box {
    height: 118px;
    margin-top: 10px;
  }
  
  .service_section .detail-box h6 {
    font-weight: bold;
  }
  
  .service_section .detail-box .btn-box a {
    color: #ff4f5a;
  }
  
  .service_section .detail-box .btn-box hr {
    background-color: #ff4f5a;
  }
  
  .service_section::before {
    content: "";
    width: 200px;
    height: 175px;
    position: absolute;
    bottom: 95px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    background-size: cover;
    background-image: url(../images/worker.png);
  }
  
  .work_section {
    background-color: #ff4f5a;
  }
  
  .work_section .custom_heading-container h3 {
    color: #ffffff;
  }
  
  .work_section .custom_heading-container h3::before {
    background-color: #ffffff;
  }
  
  .work_section .work_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 45px 0;
  }
  
  .work_section .work_container .box {
    width: 275px;
    height: 275px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 35px 0 20px 0;
    background-color: #ffffff;
    border-radius: 5px;
    margin: 45px 10px;
    -webkit-box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.1);
            box-shadow: 0 0 8px 0px rgba(0, 0, 0, 0.1);
  }
  
  .work_section .work_container .box .img-box {
    width: 150px;
  }
  
  .work_section .work_container .box .img-box img {
    width: 100%;
  }
  
  .work_section .work_container .box .name {
    margin-top: 10px;
  }
  
  .work_section .work_container .box.b-1, .work_section .work_container .box.b-3 {
    -webkit-animation: odd-box-animate 2s infinite;
            animation: odd-box-animate 2s infinite;
  }
  
  .work_section .work_container .box.b-2, .work_section .work_container .box.b-4 {
    -webkit-animation: even-box-animate 2s infinite;
            animation: even-box-animate 2s infinite;
  }
  
  @-webkit-keyframes odd-box-animate {
    0% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    50% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
    100% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
  }
  
  @keyframes odd-box-animate {
    0% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    50% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
    100% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
  }
  
  @-webkit-keyframes even-box-animate {
    0% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
    50% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    100% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
  }
  
  @keyframes even-box-animate {
    0% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
    50% {
      -webkit-transform: translateY(45px);
              transform: translateY(45px);
    }
    100% {
      -webkit-transform: translateY(-45px);
              transform: translateY(-45px);
    }
  }
  
  .work_section .btn-box a {
    color: #ffffff;
  }
  
  .work_section .btn-box hr {
    background-color: #ffffff;
  }
  
  .contact_section input,
  .contact_section select {
    width: 100%;
    border: 0;
    padding: 15px 12px;
    background-color: #f2f2f2;
    outline: none;
    margin: 10px 0;
  }
  
  .contact_section input::-webkit-input-placeholder,
  .contact_section select::-webkit-input-placeholder {
    color: #3a3a3a;
  }
  
  .contact_section input:-ms-input-placeholder,
  .contact_section select:-ms-input-placeholder {
    color: #3a3a3a;
  }
  
  .contact_section input::-ms-input-placeholder,
  .contact_section select::-ms-input-placeholder {
    color: #3a3a3a;
  }
  
  .contact_section input::placeholder,
  .contact_section select::placeholder {
    color: #3a3a3a;
  }
  
  .contact_section button {
    background-color: #ff4f5a;
    padding: 12px 55px;
    outline: none;
    border: none;
    border: 1px solid #ff4f5a;
    color: #fff;
    margin-top: 25px;
  }
  
  .contact_section button:hover {
    color: #ff4f5a;
    background-color: transparent;
  }
  
  .client_section .client_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 600px;
    border: 1px solid #cccccc;
    padding: 45px 35px 35px 25px;
    background-color: #ffffff;
    margin: 0 auto;
  }
  
  .client_section .client_container .detail-box p {
    text-align: center;
  }
  
  .client_section .client_container .client_id {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 25px;
  }
  
  .client_section .client_container .client_id .img-box {
    width: 75px;
    margin-right: 10px;
  }
  
  .client_section .client_container .client_id .img-box img {
    width: 100%;
  }
  
  .client_section .client_container .client_id .name h5 {
    text-transform: uppercase;
  }
  
  .client_section .client_container .client_id .name h6 {
    color: #ff4f5a;
  }
  
  .info_section {
    background-color: #1a2e35;
    color: #ffffff;
  }
  
  .info_section a {
    color: #ffffff;
  }
  
  .info_section h4 {
    text-transform: uppercase;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
  }
  
  .info_section .info-logo h2 {
    font-weight: bold;
    font-size: 2rem;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 5px;
    margin-right: 15px;
  }
  
  .info_section .info-nav ul {
    padding-left: 15px;
  }
  
  .info_section .info-nav ul li {
    list-style-type: none;
    position: relative;
    margin: 3px 0;
  }
  
  .info_section .info-nav ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: -15px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    border-radius: 100%;
  }
  
  .info_section .info-contact h6 {
    color: #000000;
    font-size: 18px;
  }
  
  .info_section .info-contact .call {
    margin-top: 20px;
  }
  
  .info_section .discover ul {
    padding: 0;
  }
  
  .info_section .discover ul li {
    list-style-type: none;
    margin: 5px 0;
  }
  
  /* footer section*/
  .footer_section {
    background-color: #ffffff;
    padding: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
  }
  
  .footer_section p {
    color: #171717;
    margin: 0;
    text-align: center;
  }
  
  .footer_section a {
    color: #171717;
  }
  
  /* end footer section*/
  /*# sourceMappingURL=style.css.map */
  
  .container2 {
    display: flex; 
    height: auto;
    width: auto; 
    overflow: hidden; 
    border-radius: 0.9vw;
    background-color: rgb(255, 255, 255);
  }
  
  
  
  .half {
  flex: 1; 
  padding: 0.90vw;
  align-items: center;
  text-decoration: none;
  }

  .half a {
    align-items: center;
    text-decoration: none;
    color: white; /* Establece el color del texto del enlace a blanco */
  }
  .half svg {
    fill: #25D366; /* Establece el color del ícono a verde */
  }
  
  .half a:hover svg,
  .half a:focus svg {
    fill: #25D366; /* Mantiene el color verde del ícono al pasar el cursor o hacer clic */
  }
  
  .half a:active {
    color: white; /* Mantiene el color del texto blanco al hacer clic */
  }

  
  
    .tipo {
      color: #ff4f5a;
      font-family: "Poppins", sans-serif;
    }
  
    .tipo2 {
      color: #1a2e35;
      font-family: "Poppins", sans-serif;
    }
  
    .item1{
      padding: 0.05vw;
      height: auto;
      width: auto;
      border: 0.15vw solid rgb(71, 58, 45);
      border-radius: 1vw;
      font-size: 13px;
      overflow: auto;
      }
    .no-wrap {
        white-space: nowrap;
        text-align: left;
      } 
  
      .container {
        width: 80%;
        margin: 0 auto;
        position: relative; /* Necesario para que los encabezados fijos se posicionen correctamente */
  
    }
  
  
    /* Estilo para el botón de copiar */
  .boton-copiar {
    background-color: #ff4f5a; /* Color de fondo del botón */
    color: white; 
    border: none;
    padding: 10px 20px; 
    text-align: center; 
    text-decoration: none; 
    display: inline-block; 
    font-size: 16px; 
    margin: 4px 2px; 
    cursor: pointer; 
    border-radius: 5px; 
  }
  
  /* Estilo para el icono dentro del botón */
  .boton-copiar i {
    margin-right: 5px; /* Espaciado a la derecha del icono */
  }
  
  .boton-copiar:active {
    background-color: #ff4f5a; /* Cambia el color de fondo cuando está clickeado */
    transform: scale(0.95); /* Reduce ligeramente el tamaño del botón cuando está clickeado */
  }
  
  .alert-success {
    background-color: #dff0d8;
    border-color: #d0e9c6;
    color: #3c763d;
  }
  
  
  /*div disponible*/
  .Principal1  {
      display: flex; 
      overflow: hidden; 
      background-color: #9EA6B4;
      color: #fff;
      
  }
  
  
  
  /*historial*/
  
  .historial{
    width: 95%;
    margin: 35px;
    
  }
  
  .titulohistorial{
    display: block; 
    text-align: center; 
    margin: 0 auto; 
    font-weight: bold;
    font-size: 30px;
    color: #185F64;
    width: 100%;
    margin: 10px;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  th, td {
    padding: 8px 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
  }
  th {
    background-color: #f4f4f4;
  }
  
  /* Estilo responsivo para vista móvil */
  @media (max-width: 600px) {
    table, thead, tbody, th, td, tr {
        display: block;
        width: 100%;
    }
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    tr {
        margin-bottom: 10px;
        border: 1px solid #ccc;
        padding: 8px 0;
    }
    td {
        border: none;
        padding-left: 50%;
        position: relative;
        text-align: right;
    }
    td:before {
        position: absolute;
        top: 8px;
        left: 10px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        content: attr(data-label);
        text-align: left;
        font-weight: bold;
    }
  }
  
  
 /*menu*/
 .content {
  flex: 1;
}
.footer1{
  margin-top: 15px;
}
.footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #000000;
  color: #fff;
  text-align: center;
  border: 1px solid black;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 45px;

}
.Principalfooter {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 70px;
}
.social-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.icon-whatsapp i, .icon-tiktok i, .icon-instagram i {
  font-size: 24px;
}
.icon-whatsapp i { color: #25D366; }
.icon-tiktok i { color: #ffffff; }
.icon-instagram i { color: #C13584; }
.text-icono {
  margin: 0;
  color: #ffffff;
}
.footer-link {
  color: #ffffff;
  text-decoration: none;
  
  
}
.footer-link + .footer-link {
  margin-left: 10px;
}
.footer-link:hover, .footer-link:focus, .footer-link:active {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .Principalfooter {
      flex-direction: column;
      gap: 45px;
  }
  .social-icons {
      width: 100%;
      justify-content: space-around;
  }
  .social-item {
      flex-direction: column;
  }
}

/* css mi perfil */
.custom-dropdown-toggle {
  color: white !important;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.custom-dropdown-toggle:hover,
.custom-dropdown-toggle:focus {
  color: white !important;
}

.custom-icon,
.custom-icon-arrow {
  color: white;
}

.custom-icon-arrow {
  font-size: 18px;
  margin-left: 2px;
}

.custom-dropdown-item {
  color: #218293 !important;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.custom-dropdown-item:hover {
  background-color: #f4f4f4;
}

.dropdown {
  position: relative;
}
/*-----Nuevo CSS-----------*/
.dropdown {
  position: relative;
}
 
.dropdown-menu {
  position: absolute;
  right: 0;
  left: auto;
  min-width: 120px;
  text-align: center;
  padding: 5px;
  margin-top: 5px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: rgb(255, 255, 255);
  border: 1.5px solid #000000;
  font-family: "Poppins", sans-serif;
}
 
.custom-dropdown-item {
  display: block;
  padding: 10px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s;
}
 
.custom-dropdown-item:hover {
  background-color: #ffffff;
  border-radius: 5px;
}
 
.profile_section h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 38px;
  margin: 20px;
  color: #185F64;
  
}
 
.profile-item:last-child {
  border-bottom: none;
}
 
/* Estilo para las etiquetas de los campos */
.profile-label {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 14px;
}
 
.profile-value {
  text-align: right;
  display: flex;
  align-items: right;
  justify-content: flex-end;
}
 
/* Estilo para las imágenes en los valores */
.profile-value img {
  max-width: 40%;
  height: auto;
}
 
.poppins-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
/*------------------- estilos tabla------------------------*/
.profile_section {
  padding: 2px;
  background-color: #f8f9fa;
}

.poppins-bold {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.custom-table {
  width: 100%;
  border-collapse: separate;

}

.custom-table tr {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.custom-table tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
/**/
.custom-table th, .custom-table td {
  padding: 5px;
  vertical-align: middle;
}

.custom-table th {
  text-align: left;
  font-weight: 600;
  color: #185F64;
  font-family: 'Poppins', sans-serif;
}

.custom-table td {
  text-align: right;
  color: #185F64;
  width: 100%;
  font-family: 'Poppins', sans-serif;
}

.edit-btn, .save-btn {
  background-color: #2a7dd5;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-right: 10px;
}

.edit-btn:hover, .save-btn:hover {
  background-color: #0056b3;
}

input[type="email"], input[type="tel"] {
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .profile-label {
    width: 40%;
    margin-bottom: 0;
  }
 
  .profile-value {
    width: 40%;
   
  }
}
 
/*---------MODAL RECUPERAR CONTRASEÑA------*/
.modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: white;
  

}
 
.modal-body input {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  padding: 10px;
}
 
.btn-primary, .btn-secondary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
 
.btn-primary {
  background-color: #000; /* Botón negro */
}
 
.btn-secondary {
  background-color: #555; /* Botón gris oscuro */
}
 
.btn-primary:hover, .btn-secondary:hover {
  background-color: #333; /* Cambia a un tono más claro en hover */
  transform: scale(1.05);
}
 
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.95);
  background-color: #222; /* Más oscuro en active */
}
 
 
/*--------BOTON EDITAR PERFIL---------*/
.profile-value {
  display: flex;
  align-items: center;
  gap: 5px;
}
 
.edit-btn, .save-btn {
  padding: 4px 8px;
  border: none;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
}
 
.edit-btn {
  background-color: #185F64;
  color: white;
}
 
.edit-btn:hover {
  background-color: #218293 ;
  transform: translateY(-1px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
 
.save-btn {
  background-color: #000;
  color: white;
}
 
.save-btn:hover {
  background-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
 
#email-input, #telefono-input {
  padding: 4px 8px;
  border: 1px solid #0033A0;
  border-radius: 12px;
  font-size: 12px;
  outline: none;
  transition: all 0.2s ease;
}
 
#email-input:focus, #telefono-input:focus {
  border-color: #0033A0;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.1);
}
 
.fas {
  font-size: 10px;
}
/*________*/
 
.error-message {
  color: #dc3545;
  margin-top: 10px;
  display: none;
}
 
#captcha-image{
  width: 100%;
}
.tabla-redimir {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
 
}
/*---estilos historial totalpuntos*/
.fw-bold1{
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  color: #000000;

}
/*--- estilos para el cuadro de los puntos*/
.custom-badge {
  display: inline-block; 
  width: 95%; 
  height: 25px; 
  font-size: 20px; 
  line-height: 35px; 
  text-align: center; 
  padding: 0; 
  background-color: #31C0CA; 
  color: #ffffff; 
}
.custom-badge1 {
  display: inline-block; 
  width: 100%; 
  height: 25px; 
  font-size: 20px; 
  line-height: 32px; 
  text-align: center; 
  padding: 0; 
  background-color: #31C0CA; 
  color: #ffffff; 
}
#nav-points{
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 1px;
}
.tarjeta {
  width: 8rem;
  height: auto; /* Ajusta la altura según lo que necesites */
  margin: 10px;
  border: solid 1px #000000;
  padding: 35px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  

}
.tarjeta:hover {
  transform: scale(1.05); 
  box-shadow: 0 8px 25px #72b1f5; 
}

.img-top1 {
  height: 15rem; 
  object-fit: cover; 
}
.container-fluid1 {
  width: 96%;
}
/* Estilo para pantallas pequeñas */
@media (max-width: 600px) {
  .historial {
      width: 90%;
      margin: 20px;
  }
}

/* Estilo para pantallas medianas ( tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
  .historial {
      width: 90%;
      margin: 25px;
  }
}
/*----pantalla loading*/
.redime{
  text-align: center;
  margin: 20px;
  width: 97%;
  height: 100px;
}
/*estilos para el mensaje del nombre*/
.card {
  display: flex; 
  margin-top: 5px, 3px;
  
 
}
.icon-text-container {
  display: flex; 
  align-items: center; 
  padding-bottom: 5px;
}
.fa-circle-user {
  margin-left: 5px;
  margin-right: 5px; 
  color: #74C0FC; 
  font-size: 1.5rem; 
  
}
/*-- COLORES DEL NAVBAR */
.navbar-nav .nav-item .nav-link.login-button {
  border: 2px solid #39E0EC; /* Color del borde */
  border-radius: 5px; 
  transition: all 0.3s ease; 
}

.navbar-nav .nav-item .nav-link.login-button:hover {
  background-color: #185F64; /* Color de fondo al pasar el mouse */
  color: white; 
}
.modal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0,25rem;
}

.modal-footer .btn {
    min-width: 100px; 
}
/*cerrar sesion modal*/
.custom-logout-modal-dialog {
  max-width: 400px; 
  margin: 0 auto;
  z-index: 10000;
  position: fixed;
  top: 35%; /* Centrado vertical */
  left: 40%;

}
@media (max-width: 600px) and (max-width: 1024px) {
  .custom-logout-modal-dialog{
    max-width: 90%; 
    max-height: 90vh; 
    height: auto; 
    margin-top: 5px;
    top: 50%; 
    left: 10%; 
    transform: translate(-50%, -50%); 
    z-index: 9999;
  }

}

.modal-header {
  background-color: #31C0CA; 
  color: white; 
  
}

.modal-title {
  font-size: 1.25rem; 
  text-align: center; 
  font-family: 'Poppins', sans-serif;
}

.modal-body {
  text-align: center; 

}

.modal-footer {
  text-align: center; 
  font-family: 'Poppins', sans-serif;
}


#carouselExampleInterval {
  background-color: #000000;  /* Fondo negro */
}
#coberturaLink {
  background-color: #31C0CA; 
  color: #ffffff;          
  font-weight: bold;        
  border-radius: 2px;       
  padding: 8px 12px;        
  text-align: center;       
  transition: background-color 0.3s ease, color 0.3s ease; 
  margin-top: 13px;
  font-family: 'Poppins', sans-serif;
}
#coberturaLink:hover {
  background-color: #1A9BA4;
  color: #ffffff;          
  text-decoration: none;    
}
