@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --secundario: #14aa6c;
    --principal: #0E794C;
    --fondo: #8390A2;
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    box-sizing: border-box;
}


.main-container {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-container > .hero-body {
    height: auto;
    width: 100%;
    max-width: 400px;
    min-width: 300px;
}

/*****************VISTA********************/

.contenidovt {
    width: 100%;
    background-color: white;
    border-radius: 7px;
}

.cabecera-botone{
    margin-top: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.texto {
    margin-top: 10px;
}

.iconos {
    margin-top: 10px;
    font-size: 35px;
}

.iconos i{
    color: #0E794C;
}

.contenedor-tabla {
    padding-bottom: 15px;
}

.contenedor-tabla-ps {
    padding: 30px;
}

.contenedor-formularios {
    padding: 0 80px 80px 80px;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table thead {
    background: #efefef;
    text-align: left;
}

th, td{
    font-size: 18px;
    padding: 10px;
    color: black;
}

td {
    font-size: 16px;
}

td i {
    cursor: pointer;
    color: var(--principal);
    font-size: 30px;
    transition: all 0.4s;
}

td i:hover {
    transform: scale(1.4);
}

.list-i a{
    font-size: 20px;
}

.list-i i{
    font-size: 35px;
    color: #0E794C;
}

/**************Buscador*****************/

.contenido-buscar {
    width: 70%;
    margin: 0 auto;
}

.buscador {
    width: 100%;
}















.bxs--user-badge {
    display: inline-block;
    width: 1em;
    height: 1em;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M17.988 22a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2zM9 5h6v2H9zm5.25 6.25A2.26 2.26 0 0 1 12 13.501c-1.235 0-2.25-1.015-2.25-2.251S10.765 9 12 9a2.259 2.259 0 0 1 2.25 2.25M7.5 18.188c0-1.664 2.028-3.375 4.5-3.375s4.5 1.711 4.5 3.375v.563h-9z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }