/* Estilos generales del sidebar */
.bg-light.no-print {
    background-color: #f8f9fa !important; /* Un gris muy claro */
    border-right: 1px solid #e3e6f0; /* Borde sutil */
}

.link-dark {
    color: #3a3b45 !important; /* Un gris oscuro agradable */
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
    border-radius: 0.25rem; /* Bordes ligeramente redondeados */
    padding: 0.6rem 1rem;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
}

.link-dark i {
    margin-right: 0.7rem;
    font-size: 1rem;
    color: #6c757d; /* Un gris más claro para los iconos */
    transition: color 0.15s ease-in-out;
}

.link-dark:hover {
    background-color: #e9ecef; /* Gris muy claro al pasar el ratón */
    color: #212529 !important;
}

.link-dark:hover i {
    color: #0d6efd; /* Color primario para el icono al hacer hover */
}

.link-dark.active {
    background-color: #0d6efd; /* Color primario para el estado activo */
    color: #fff !important;
}

.link-dark.active i {
    color: #fff;
}

hr {
    border-top: 1px solid #e3e6f0;
    margin: 1rem 0;
}

h6 {
    font-size: 0.85rem;
    font-weight: bold;
    color: #6c757d;
    padding: 0 1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase; /* Opcional: poner en mayúsculas */
    letter-spacing: 0.05em; /* Espaciado entre letras sutil */
}

.lead name {
    font-weight: bold;
    color: #0d6efd; /* Resaltar el nombre del usuario */
}

/* Estilos para el botón de menú móvil */
.btn-dark.rounded-circle {
    /* Mantener estilos existentes */
}

.offcanvas-header {
    border-bottom: 1px solid #e3e6f0;
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    font-weight: bold;
    color: #3a3b45;
}

.offcanvas-body {
    padding: 1rem;
}

.offcanvas-body .lead {
    margin-bottom: 1rem;
}

/* Opcional: Estilos para minimizar el sidebar (necesitaría JS para la funcionalidad) */
.sidebar-expanded {
    width: 200px; /* Ancho normal */
    transition: width 0.3s ease-in-out;
}

.sidebar-collapsed {
    width: 60px; /* Ancho minimizado */
    transition: width 0.3s ease-in-out;
}

.sidebar-collapsed .link-dark span {
    display: none; /* Ocultar el texto al minimizar */
}

.sidebar-collapsed .lead {
    display: none;
}

.sidebar-collapsed hr,
.sidebar-collapsed h6 {
    display: none;
}

.sidebar-collapsed .link-dark i {
    margin-right: 0; /* Sin margen para el icono solo */
    justify-content: center; /* Centrar el icono */
    width: 100%;
}

/* Añadir un botón para colapsar/expandir (solo visible en escritorio) */
@media (min-width: 768px) {
    .collapse-btn {
        position: absolute;
        top: 1rem;
        right: -1rem; /* Sacarlo un poco del borde */
        background-color: #fff;
        color: #6c757d;
        border: 1px solid #e3e6f0;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.075);
        transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
        z-index: 1050; /* Asegurarse de que esté encima del sidebar */
    }

    .collapse-btn:hover {
        background-color: #e9ecef;
        color: #3a3b45;
    }
}
/* Fin Sidebar */



.wrapper {
    max-width: 90%;
    margin: 50px auto;
    padding: 20px 30px;
    min-height: 300px;
    background: linear-gradient(to bottom, #ffffff, #f5f5f5);
    border-top: 1px solid #ffffff6e;
    border-left: 1px solid #ffffff6e;
    border-radius: 15px
}

.wrapper .h5 {
    color: #000;
}

.wrapper .form-groups {
    margin-bottom: .2rem
}
.wrapper .form-select-cr {
    background-color: rgba(0, 0, 0, 0);
    position: relative;
        display: block;
        width: 170px;
        font-size: 16px;
        font-weight: 300;
        line-height: 16px;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s;
        left: -3rem;
        padding-left: 2.5rem;
        top: 0.35rem;
  }
  .wrapper .form-select-crw {
        left: -2rem;
  }

  

  .wrapper .form-select-cr .options {
    position: absolute;
        display: block;
        top: 100%; left: 0; right: 0;
        margin: 15px 0;
        border-radius: 4px;
        box-sizing: border-box;
        box-shadow: 0 2px 1px rgba(0,0,0,.07);
        background-color: rgba(0, 0, 0, 0);
        transition: all 0.4s ease-in-out;
        margin-left: 20px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-15px);
  }

  @media(max-width: 1200px) {
    
    .wrapper .form-select-cr {
        background-color: rgba(0, 0, 0, 0);
        position: relative;
            display: block;
            width: 150px;
            font-size: 16px;
            font-weight: 300;
            line-height: 16px;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            left: -1.5rem;
            padding-left: 2.5rem;
            top: 0.35rem;
      }
      .wrapper .form-select-cr2 {
        margin-left: 2rem;
      }
}

.wrapper .form-group {
    border-bottom: 1px solid #000;
    margin-bottom: 1.5rem
}

.wrapper .form-group:hover {
    border-bottom: 1px solid #000;
}

.wrapper .form-group .icon {
    color: #000;
}

.wrapper .form-group .form-control {
    background: inherit;
    border: none;
    border-radius: 0px;
    box-shadow: none;
    color: #000;
}

.wrapper .form-group input::placeholder {
    color: #000;
}

.wrapper .form-group input:focus::placeholder {
    opacity: 0
}

.wrapper .form-group .fa-phone {
    transform: rotate(90deg)
}

.wrapper .option {
    color: #ccc;
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none
}

.wrapper .option:hover {
    color: #eee
}

.wrapper .option input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.wrapper .checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: inherit;
    border: 2px solid #ccc;
    border-radius: 2px
}

.wrapper .option input:checked~.checkmark {
    transition: 300ms ease-in-out all
}

.wrapper .checkmark:after {
    content: "\2713";
    position: absolute;
    display: none;
    font-weight: 600;
    color: #FFF;
    font-size: 0.9rem
}

.wrapper .option input:checked~.checkmark:after {
    display: block
}

.wrapper .option .checkmark:after {
    left: 2px;
    top: -4px;
    width: 5px;
    height: 10px
}

.wrapper .btn.btn-primary {
    position: relative;
    color: #eeeeee;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    border: 1px solid #ddd;
    background-color: #0784cd;
    box-shadow: none;
    overflow: hidden
}

.wrapper .btn.btn-primary:hover {
    background-color: #000000c7;
    color: #fff
}

.wrapper .terms {
    color: #bbb;
    font-size: 0.85rem;
    text-align: center
}

.wrapper .terms a {
    text-decoration: none;
    color: #eee
}

.wrapper .terms a:hover {
    color: #fff
}

.wrapper .connect {
    position: relative
}

.wrapper .connect::after {
    content: "or";
    position: absolute;
    top: -12px;
    width: 80px;
    left: 39%;
    text-align: center;
    color: #eee;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.315);
    background-color: #1f5588
}

.wrapper .social-links {
    margin-top: 50px;
    position: relative;
    list-style: none;
    display: flex;
    justify-content: space-around
}

.wrapper .social-links li a {
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    background-color: #ffffff17;
    border: 1px solid #ffffff66;
    border-right: 1px solid #ffffff33;
    border-bottom: 1px solid #ffffff33;
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 6px;
    box-shadow: 0 5px 30px #004683e0;
    transition: 0.5s;
    overflow: hidden
}

.wrapper .social-links li a:hover {
    transform: translateY(-20px)
}

.wrapper .social-links li a::before,
.wrapper .btn.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    transform: skew(45deg) translateX(130px);
    transition: .5s;
    opacity: 0
}

.wrapper .social-links li a:hover:before,
.wrapper .btn.btn-primary:hover::before {
    opacity: 1;
    transform: skew(45deg) translateX(-130px)
}



@media(max-width: 460px) {
    .wrapper {
        margin: 15px;
        padding: 20px
    }

    .wrapper .connect::after {
        left: 38%
    }
}

@media(max-width: 345px) {
    .wrapper .connect::after {
        left: 32%
    }
}

.bg-danger-card
{
    background: linear-gradient(to right, #ffbf96, #fe7096);
}

.card.card-img-holder {
    position: relative;
  }

  .card-img-absolute {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
  }

  .float-right-card {
    float: right !important;
  }

  .bg-success-card {
    background: linear-gradient(to right, #84d9d2, #07cdae);
  }

  .ms-panel {
    box-shadow: 0 1px 6px 1px rgba(69, 65, 78, 0.1);
    margin-bottom: 30px;
    border-radius: 1em;
    background-image: url('../img/circle.svg');
    background-position: 0;
    background-size:cover;
  }

  .ms-panel-body, .ms-panel-footer {
    position: relative;
    padding: 1.5rem;
  }

  .ms-panel-header {
    position: relative;
    padding: 1.5rem;
      padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .ms-panel-header.header-mini {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .ms-identifier-widget .ms-panel-body {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.ms-identifier-widget .ms-panel-header h6, .ms-identifier-widget .ms-panel-body p, .ms-identifier-widget .ms-panel-body i {

    color: #fff;

}
.ms-panel-header h6 {

    margin-bottom: 0;
    text-transform: uppercase;
    font-weight: 700;

}

.ms-identifier-widget .ms-panel-body i::before {
    margin-top: 2rem;
    display: block;
    font-size: 3rem;
  }

  .ms-identifier-widget .ms-panel-body p {
    margin: 3rem 0;
  }

  .btns.btns-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    transform: skew(45deg) translateX(130px);
    transition: .5s;
    opacity: 0
}

.btns.btsn-primary:hover::before {
    opacity: 1;
    transform: skew(45deg) translateX(-130px)
}

.lab-bg{
    background-image: linear-gradient(to right top, #37050c, #5c0026, #790053, #7c0097, #121beb);
    background-attachment: fixed
}

.card-lab {
    width: 500px;
    height: 500px;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer
}

.card-lab:hover .clip-path-lab {
    clip-path: circle(500px at center 0)
}

.clip-path-lab {
    position: relative;
    width: 100%;
    height: 100%;
    clip-path: circle(350px at center 0);
    background-image: linear-gradient(to right top, #4fb9ff,  #121beb);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s
}

.clip-path-lab h2 {
    color: #fff;
    font-size: 30px
}

.content-lab {
    padding: 15px
}

.content-lab p {
    font-size: 14px
}


.box-lab {
    text-decoration: none;
    color: #000;
    display: inline-block;
    padding: 10px 20px;
    border-right: 1px solid;
    border-left: 1px solid;
    background: linear-gradient(to right, #000 calc(50% - 5px), transparent calc(50% - 5px), transparent calc(50% + 5px), #000 calc(50% + 5px)), linear-gradient(to right, #000 calc(50% - 5px), transparent calc(50% - 5px), transparent calc(50% + 5px), #000 calc(50% + 5px));
    background-size: 150% 1px;
    background-position: top left, bottom right;
    background-repeat: no-repeat;
    transition: .8s all
}

.box-lab:hover {
    background-position: top right, bottom left;
    cursor: pointer
}


.form-control-edit:focus {
    box-shadow: none;
    border-color: #BA68C8
}

.profile-button-edit {
    background: rgb(99, 39, 120);
    box-shadow: none;
    border: none
}

.profile-button-edit:hover {
    background: #682773
}

.profile-button-edit:focus {
    background: #682773;
    box-shadow: none
}

.profile-button-edit:active {
    background: #682773;
    box-shadow: none
}

.back-edit:hover {
    color: #682773;
    cursor: pointer
}

.labels-edit {
    font-size: 11px
}

.add-experience-edit:hover {
    background: #BA68C8;
    color: #fff;
    cursor: pointer;
    border: solid 1px #BA68C8
}

.gft{
    position: relative;
min-width: 0;
word-wrap: break-word;
background-color: #fff;
background-clip: border-box;
border: 1px solid rgba(0,0,0,.125);
border-radius: .25rem;
    width: 108mm;
    height: 172mm;
}

.upper-gft-1a{
    height: 20mm;
    background-image: linear-gradient(to right top, #5eff4f,  #19d300);
     border-bottom-left-radius: 80mm;
}
.upper-gft-1b{
    height: 20mm;
    background-image: linear-gradient(to right top, #ff4f4f,  #eb1212);
     border-bottom-left-radius: 80mm;
}
.upper-gft-2{
    height: 20mm;
    background-image: linear-gradient(to right top, #ffed4f,  #ebcb12);
     border-bottom-left-radius: 80mm;
}
.upper-gft-3{
    height: 20mm;
    background-image: linear-gradient(to right top, #292929,  #000000);
     border-bottom-left-radius: 80mm;
}
.upper-gft-nozone{
    height: 20mm;
    background-image: linear-gradient(to right top, #858585,  #4b4b4b);
     border-bottom-left-radius: 80mm;
}

.project-gft{
position: absolute;
text-align: center;
font-size: 14pt;
font-weight: 200;
font-family: 'Poppins', sans-serif;
top: 15mm;
left: 40mm;
}
.gft-photo{
    width: 50mm ;
    height: 50mm !important;
}
.circle-gft{
    position: absolute;
    width: 50mm !important;
    height: 50mm !important;
    top: 37mm;
    left: 29mm;
}

.logoap-gft{
    position:absolute;
    top:130mm;
    left: 5mm;
    width: 30mm;
    z-index: 500;
}
.logosss-gft{
    position:absolute;
    top:130mm;
    left: 70mm;
    width: 30mm;
    z-index: 500;
}

.prename-gft{
    width: 100%;
    text-align: center;
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 8pt;
    top:135mm;
}

.preposition-gft{
    width: 100%;
    text-align: center;
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-weight: 200;
    font-size: 8pt;
    top:150mm;
}
.name-gft{
    width: 100%;
    text-align: center;
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    top:138mm;
}

.name-gfts{
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
}

.position-gft{
    width: 100%;
    text-align: center;
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    top:153mm;
}
.consecutive-gft{
    width: 100%;
    text-align: right;
    padding-right: 0.5rem;
    position: absolute;
    font-family: 'Poppins', sans-serif;
    font-size: 0.5rem;
    top:164.5mm;
}

.gft-1a{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #5eff4f,  #19d300);
    color: #FFF;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 18mm;    
}
.gft-1a p{
    margin-top: 5mm;  
    font-size: 2rem;   
}

.gft-1b{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #ff4f4f,  #eb1212);
    color: #FFF;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 18mm;  
}


.gft-1b p{
    margin-top: 5mm;
    font-size: 2rem;  
}

.gft-2{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #ffed4f,  #ebcb12);
    color: #000;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 18mm;  
}
.gft-2 p{
    margin-top: 5mm;  
    font-size: 2rem;  
}

.gft-3{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #292929,  #000000);
    color: #FFF;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 18mm;  
}
.gft-3 p{
    margin-top: 5mm;
    font-size: 2rem;    
}

.gft-nozone{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #858585,  #4b4b4b);
    color: #FFF;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 18mm;  
}
.gft-nozone p{
    margin-top: 5mm;  
    font-size: 2rem; 
}


.gft{
    width: 108mm;
    height: 172mm;
}

.upper-gft-1a{
    height: 20mm;
    background-image: linear-gradient(to right top, #5eff4f,  #19d300);
     border-bottom-left-radius: 80mm;
}
.upper-gft-1b{
    height: 20mm;
    background-image: linear-gradient(to right top, #ff4f4f,  #eb1212);
     border-bottom-left-radius: 80mm;
}
.upper-gft-2{
    height: 20mm;
    background-image: linear-gradient(to right top, #ffed4f,  #ebcb12);
     border-bottom-left-radius: 80mm;
}
.upper-gft-3{
    height: 20mm;
    background-image: linear-gradient(to right top, #292929,  #000000);
     border-bottom-left-radius: 80mm;
}
.upper-gft-nozone{
    height: 20mm;
    background-image: linear-gradient(to right top, #858585,  #4b4b4b);
     border-bottom-left-radius: 80mm;
}

.barcode-gft{
    width: 108mm;
}

.barcode-gft div{
    max-width: 108mm;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16mm;
}



.app-widget-profile-card-night{
    max-width: 340px;
    margin: auto;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    background-image: linear-gradient(0deg, #ffffff 0%, #b8b8b8 50%,#ffffff 100%);
    display: flex;
    transition: 0.3s;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.2);
}
.app-widget-profile-card-night img{
  border-radius:125px;
  transition:all 0.5s;
  width:125px;
  height:125px;
  margin:10px;
  background-position:cenetr;
  margin-left: auto;
  margin-right: auto;
  box-shadow:1px 1px 10px 1px rgb(12, 12, 12),1px 1px 20px 1px rgb(51, 51, 51);
  z-index:1;
}
.app-widget-profile-card-night hr{
  position:relative;
  bottom:120px;
  background-color:rgba(51, 51, 51, 0.44);
  height:2px;
  border:none;
  box-shadow:1px 1px 4px 1px rgb(0, 0, 0);
}
.app-widget-profile-card-night h1{
  text-transform: uppercase;
  font-size:28px;
  color:rgb(51, 51, 51);
  font-family:arial;
  text-align:center;
  position:relative;
  bottom:30px;
  font-family: 'Poppins', sans-serif;
}
.app-widget-profile-card-night ul li{
 color:rgb(53, 53, 53); 
  font-size:15px;
  position:relative;
  right:-20px;
  font-family: 'Poppins', sans-serif;
}

.app-widget-profile-card-night h2{
  text-transform: uppercase;
  font-size:12px;
  color:rgba(53, 53, 53, 1);
  font-family:arial;
  text-align:center;
  position:relative;
  bottom:40px;
  font-family: 'Poppins', sans-serif;
}
.app-widget-profile-card-night h3{
  text-transform: uppercase;
  font-size:20px;
  color:rgba(53, 53, 53, 1);
  font-family:arial;
  text-align:center;
  position:relative;
  bottom:-40px;
  font-family: 'Poppins', sans-serif;
}


.app-widget-profile-card-night h4{
  text-transform: uppercase;
  font-size:14px;
  color:rgba(53, 53, 53, 1);
  font-family:arial;
  text-align:center;
  position:relative;
  bottom:60px;
  font-family: 'Poppins', sans-serif;
}
.app-widget-profile-card-night button{
  width:100%;
  z-index:2;
  bottom:190px;
  position:relative;
  height:60px;
  font-size:22px;
  background-color:rgba(11, 10, 45);
  border:none;
  cursor:pointer;
  transition:all 2s;
  display:none;
  color:aqua;
  box-shadow:1px 1px 100px 1px aqua;
}
.app-widget-profile-card-night button:hover{
  box-shadow:1px 1px 100px 1px blue;
}

.profiles-1a{
    width: 100%;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #5eff4f,  #19d300);
    color: #FFF;
    bottom: 0; 
    margin-top: 40px;
    border-top-left-radius: 10px;  
    border-top-right-radius: 10px;  
}
.profiles-1a p{
    margin-top: 15px;
    font-size: 1.2rem;   
}

.profiles-1b{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #ff4f4f,  #eb1212);
    color: #FFF;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 15mm;
}


.profiles-1b p{
    margin-top: 5mm;
    font-size: 2rem;  
}

.profiles-2{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #ffed4f,  #ebcb12);
    color: #000;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 15mm;
}
.profiles-2 p{
    margin-top: 5mm;  
    font-size: 2rem;  
}

.profiles-3{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #292929,  #000000);
    color: #FFF;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 15mm;
}
.profiles-3 p{
    margin-top: 5mm;
    font-size: 2rem;    
}

.profiles-nozone{
    width: 100%;
    height: 20mm;
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to right top, #858585,  #4b4b4b);
    color: #FFF;
    bottom: 0;
    border-top-right-radius: 80mm;
    margin-top: 15mm;
}
.profiles-nozone p{
    margin-top: 5mm;  
    font-size: 2rem; 
}

.circle-crud-gft{
    width: 30px !important;
    height: 30px !important;
    border-radius: 45%;
}

small {
    display: block;
    margin: 5rem 1rem;
}
  
small a {
      color: #000;
      font-family: "poppins";
      font-size: 1rem;
      text-decoration: none;
      box-shadow: inset 0 0 0 2px #000;
      padding: 1rem;
      border-radius: 1rem;
}
small a:hover,small a:focus {
        outline: none;
        box-shadow: inset 0 0 0 2px gold;
        color: gold;
}

.content-wr{
    font-family: 'Poppins', sans-serif;
}
.content-login{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #FFF;
}

.row-wr{
    padding-left: 4%;
    padding-right: 4%;
}

.row-usr{
    height: 10px !important;
}
.back-form1{
    background-color: #35A8E0;
}
.back-form2{
    background-color: #98B5DF;
}
.back-form3{
    background-color: #6A95CE;
}
.back-form4{
    background-color: #4174B8;
}

.main-msg{
    text-align: center;
    padding: 100px;
}

@media print {
   
    .no-print {
        display: none;
    }

    #printpdfhm{
        height: 215.9mm;
        width: 279.4mm;
        font-size:7px !important;
    }
   
}
.head-rl{
    background: #F9F9F9; border-radius: 0.5rem;
    padding-top: 0.5rem; padding-bottom: 0.5rem;
    box-shadow:  0.03rem 0.03rem 0.3rem 0.03rem rgba(0, 0, 0, 0.2);
}

.main-rl{
    padding-top: 1em;
    padding-left: 1em;
    padding-right: 1em;
    font-size: 12px;
}

.main-hm{
    padding-top: 1rem;
    font-size: 12px;
}
.head-hm{
    background: #F9F9F9; border-radius: 0.5rem;
    padding-top: 0.5rem; padding-bottom: 0.5rem;
    box-shadow:  0.03rem 0.03rem 0.3rem 0.03rem rgba(0, 0, 0, 0.2);
}

.client-hm{
    padding-top: 0.3rem;
}

.title-hm{
    text-align: center;
    font-size: 1.2rem;
    padding-top: 0.5rem;
}

.cclogo-hm{
    padding-top: 0.35rem;
}

.containerb-hm{
    padding: 1rem; background: #F9F9F9; font-size:12px;
}

.table-heredo{
    font-size: 12px;
    text-align: center;
}

@media(max-width: 1200px) {
    .main-hm{
        padding-top: 1rem;
        font-size: 10px;
    }
    .head-hm{
        background: #F9F9F9; border-radius: 0.5rem;
        padding-top: 0.5rem; padding-bottom: 0.5rem;
        box-shadow:  0.03rem 0.03rem 0.3rem 0.03rem rgba(0, 0, 0, 0.2);
    }
    
    .client-hm{
        padding-top: 0.3rem;
    }
    
    .title-hm{
        text-align: center;
        font-size: 1.2rem;
        padding-top: 0.5rem;
    }
    
    .cclogo-hm{
        padding-top: 0.35rem;
    }
    
    .containerb-hm{
        padding: 1rem; background: #F9F9F9; font-size:11px;
    }
    
    .table-heredo{
        font-size: 9px;
        text-align: center;
    }
}

.profile-card-2 {
    max-width: 300px;
    background-color: #FFF;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    background-position: center;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    cursor:default;
    border-radius: 10px;
}

.profile-card-2 img {
    transition: all linear 0.25s;
}
.profile-card-2 .profile-logo-container {
    position: absolute;
    bottom: 62%;
	width: 100%;
	height: 150px;
	background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.24693627450980393) 55%, rgba(0,0,0,1) 100%);
    font-size: 19px;
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}
.profile-card-2 .profile-text-container {
    position: absolute;
    bottom: 0%;
	width: 100%;
	height: 200px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.24693627450980393) 55%, rgba(0,0,0,1) 100%);
    font-size: 19px;
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}
.profile-card-2 .profile-logo {
    position: absolute;
    left: 1%;
    bottom: 88%;
    font-size: 19px;
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}
.profile-card-2 .profile-logo-client {
    position: absolute;
    left: 70%;
    bottom: 90%;
    font-size: 19px;
    color: #FFF;
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-name {
    position: absolute;
    left: 30px;
    bottom: 55px;
    font-size: 19px;
    color: #FFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: bold;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-icons {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #FFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    transition: all linear 0.25s;
}

.profile-card-2 .profile-username {
    position: absolute;
    bottom: 45px;
    left: 30px;
    color: #FFF;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-size: 13px;
    transition: all linear 0.25s;
}

.profile-card-2 .profile-icons .fa {
    margin: 5px;
}

.profile-card-2:hover img {
    filter: grayscale(100%);
}

.profile-card-2:hover .profile-name {
    bottom: 60px;
}

.profile-card-2:hover .profile-username {
    bottom: 50px;
}

.profile-card-2:hover .profile-icons {
    left: 25px;
}
.data-basic{
font-size: 11px;
font-weight: bold;
}

.display-5 {
    font-size: calc(1.075rem + 2.7vw);
    font-weight: 300;
    line-height: 1.2;
  }

.home-img{
    text-align: center;
    font-size: 13pt;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    }

.input-home {
        width: 0.1px;
        height: 0.1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1;
}

.file-input__input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
  }
  
  .file-input__label {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    font-size: 14px;
    padding: 10px 12px;
    background-color: #4245a8;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.25);
  }
  
  .file-input__label svg {
    height: 16px;
    margin-right: 4px;
  }