.input-form{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
}

.form-heading{
    background-color: white;
    padding: 30px;
    width: 100%;
    max-width: 1000px;
    border: 1px solid lightgrey;
    border-radius: 20px; 
    margin: 200px 0 0 0;
    height: fit-content;
}


.abrirBuscador{
  border: none;
  background-color: transparent;
  color: black;
}

.popup-personas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Caja blanca */

.popup-contenido {
  background: white;
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
  padding: 15px;
}

/* Header */

.popup-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* Scroll tabla */

.tabla-container {
  max-height: 400px;
  overflow-y: auto;
}

/* Tabla */

#tablaPersonas {
  width: 100%;
  border-collapse: collapse;
}

#tablaPersonas th,
#tablaPersonas td {
  border: 1px solid #ddd;
  padding: 8px;
}

#tablaPersonas tr:hover {
  background: #f5f5f5;
}

#tablaPersonasBody tr {

    cursor: pointer;

}

.btnEliminar {

    background-color: #e74c3c;
    color: white;

    border: none;
    padding: 5px 8px;

    cursor: pointer;

    border-radius: 4px;

}

.btnEliminar:hover {

    background-color: #c0392b;

}

.submit-btn{
    width: 100%;
    padding: 20px;
    background-color: #f18718;
    border: 3px solid #f18718;
    color: white;
    font-weight: 700;
    transition: all 500ms;
}

.submit-btn:hover{
    background-color: white;
    color: #f18718;
}

#name{
    width: 80%;
}

#born_date{
    width: 20%;
}

#name2{
    width: 80%;
}

#born_date2{
    width: 20%;
}

.botonFooter{
    padding: 10px 20px;
    background-color: #f18719;
    color: #fff;
    border: 3px solid #f18719;
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 10px;
    transition: all 0.5s;
}

.botonFooter:hover{
    background-color: #fff;
    color: #f18719;
}

.formulario{
    display: flex;
    justify-content: start;
}

.form-row {
    display: flex; 
    width: 100%;
}

.form-row input {
    margin: 5px;
    padding: 10px;
}

.form-row > :first-child {
    margin: 5px 5px 5px 0;
}

#submit{
    background-color: #f18719;
    color: white;
    border: 2px solid #f18719;
    padding: 10px 20px;
    transition: all 200ms;
    font-weight: 600;
}

#submit:hover{
    background-color: #f1871900;
    color: #f18719;
}

#resultados{
    justify-items: center;
}

.datosConjuntos{
    margin: 30px 0 40px 0;
    display: flex;
    width: 100%;
    max-width: 800px;
    justify-content: space-around;
}

.datosConjuntos div{
    width: 25%;
    text-align: center;
    align-self: center;
}

.senderoConjunto{
    width: 100px;
    height: auto;
}

#numeroKarmicoRelacionesConj{
    background-color: #f18719;
    padding: 20px 30px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 24px;
    color: white;
}

.datos{
    text-align: center;
}

section{
    max-width: 1150px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-right: 20px;
    margin-left: 20px;
    flex-direction: column;
}

#formulario{
    flex-direction: row !important;
}

.mainsection{
    display: flex;
    max-width: 1100px;
    width: 100%;
}

.section1-senderos{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cajaseccion{
    border: 2px solid #ccc;
    border-radius: 20px;
    padding: 10px;
    margin-top: 25px;
    flex-direction: column;
    align-items: center;
    width: 400px;
}

.arbolVida{
    width: 400px;
    position: relative;
    display: flex;
    justify-content: center;
    height: 678px;
}

.sefirot{
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: white;
    z-index: 10;
    border: solid 2px black;
    border-radius: 50%;
}

.sendero{
    position: absolute;
    height: 25px;
    background-color: white;
    border: solid 2px black;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.tituloSendero{
    display: flex;
    align-items: center;
    flex-direction: row !important;
}

.senderoLeyenda{
    margin-left: 10px;
    margin-right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.sendero p{
    color: black;
}

.senderotransversal{
    width: 284px;
}

.senderolateral{
    width: 25px;
    height: 127px;
}

.keter{
    top: 0;
    left: 42%;
}

.binah{
    top: 62px;
    left: 0;
    background-color: #191B1C;
}

.jokmah{
    top: 62px;
    right: 0;
    background-color: #f5f5f5;
}

.guevurah{
    top: 230px;
    left: 0;
    background-color: #E41B1C;
}

.jesed{
    top: 230px;
    right: 0;
    background-color: #0094FF;
}

.hod{
    top: 398px;
    left: 0;
    background-color: #f18719;
}

.netzaj{
    top: 398px;
    right: 0;
    background-color: #39AB45;
}

.tiferet{
    top: 313px;
    left: 42%;
    background-color: #FFFF78;
}

.yesod{
    top: 469px;
    left: 42%;
    background-color: #642684;
}

.malhut{
    top: 610px;
    left: 42%;
    background: radial-gradient(#39AB45, #f18719, #E41B1C);
}

.sendero1{
    width: 181px;
    top: 51px;
    left: 0px;
    transform: rotate(-19deg);
}

.senderoLabel1{
    transform: rotate(19deg);
}

.sendero2{
    top: 54px;
    left: 46.5%;
    width: 25px;
    height: 264px;
}

.sendero3{
    top: 79px;
}

.senderoLabel3{
    margin-left: -100px;
}

.sendero4{
    width: 25px;
    height: 257px;
    transform: rotate(33deg);
    top: 92px;
    right: 103px;
}

.senderoLabel4{
    transform: rotate(-33deg);
}

.sendero5{
    top: 113px;
    right: 16px;
}

.sendero6{
    width: 25px;
    height: 254px;
    transform: rotate(-32deg);
    top: 92px;
    left: 100px;
}

.senderoLabel6{
    transform: rotate(32deg);
}

.sendero7{
    top: 113px;
    left: 16px;
}

.sendero8{
    top: 248px;
}

.sendero9{
    width: 25px;
    height: 143px;
    transform: rotate(64deg);
    top: 236px;
    right: 99px;
}

.senderoLabel9{
    transform: rotate(-64deg);
}

.sendero10{
    top: 281px;
    right: 16px;
}

.sendero11{
    width: 25px;
    height: 143px;
    transform: rotate(-64deg);
    top: 236px;
    left: 99px;
}

.senderoLabel11{
    transform: rotate(64deg);
}

.sendero12{
    top: 281px;
    left: 16px;
}

.sendero13{
    width: 25px;
    height: 143px;
    transform: rotate(-64deg);
    top: 315px;
    right: 105px;
}

.senderoLabel13{
    transform: rotate(64deg);
}

.sendero14{
    top: 366px;
    left: 46.5%;
    width: 25px;
    height: 109px;
}

.senderoLabel14{
    margin-top: -40px;
}

.sendero15{
    width: 25px;
    height: 143px;
    transform: rotate(64deg);
    top: 316px;
    left: 99px;
}

.senderoLabel15{
    transform: rotate(-64deg);
}

.sendero16{
    top: 415px;
}

.sendero17{
    width: 25px;
    height: 154px;
    transform: rotate(67deg);
    top: 395px;
    right: 100px;
}

.senderoLabel17{
    transform: rotate(-67deg);
}

.sendero18{
    width: 25px;
    height: 246px;
    transform: rotate(40deg);
    top: 414px;
    right: 92px;
}

.senderoLabel18{
    transform: rotate(-40deg);
}

.sendero19{
    width: 25px;
    height: 141px;
    transform: rotate(-64deg);
    top: 402px;
    left: 100px;
}

.senderoLabel19{
    transform: rotate(64deg);
}

.sendero20{
    width: 25px;
    height: 246px;
    transform: rotate(-40deg);
    top: 414px;
    left: 88px;
}

.senderoLabel20{
    transform: rotate(40deg);
}

.sendero21{
    top: 523px;
    left: 46.5%;
    width: 25px;
    height: 95px;
}

.sendero22{
    width: 181px;
    top: 51px;
    right: 0px;
    transform: rotate(19deg);
}

.senderoLabel22{
    transform: rotate(-19deg);
}

.seccionArcanos{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 400px;
}

.seccionArcanos div{
    max-width: 300px;
    align-items: center;
    display: flex;
    flex-direction: column;
}

.seccionArcanos h3 {
    padding: 10px 0px;
    text-align: center;
    font-size: 16px;
}

.cajaArcanos{
    display: flex;
    flex-direction: row !important;
}

#comparativa-mm .arcanoPrincipal{
    height: 200px;
}

.cajaArcanosSecundarios{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#comparativa-mm .arcanoSecundario{
    height: 100px;
}

.estructura-alma-all{
    display: flex;
    justify-content:center;
}

.caja-estructura{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

.estructura-alma {
    position: relative;
    width: 300px;
    height: 300px;
    border: 1px solid #ccc; /* Opcional: solo para visualización */
    border-radius: 50%; /* Opcional: hace el div circular */
    display: flex;
    justify-content: center;
    align-items: center;
}

.portal {
    position: absolute;
    display: flex;
    justify-content: start;
    align-items: start;
}

.portal2 {
    position: absolute;
    display: flex;
    justify-content: start;
    align-items: start;
}

.portal p{
    font-size: 22px;
}

.portal2 p{
    font-size: 22px;
}


.tareadisplay{
    position: absolute;
    bottom: 8px;
    right: -16px;
    font-size: 12px !important;
}

.escudoProtector{
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 0;
    right: 7px;
}

.estructura-alma-tareas{
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.estructura-dinamicos{
    position: absolute;
}

#dinamico-1{
    top: 51px;
    right: 60px;
}

#dinamico-2{
    top: 26px;
    right: 131px;
}

#dinamico-3{
    top: 51px;
    left: 87px;
}

#dinamico-4{
    top: 109px;
    left: 43px;
}

#dinamico-5{
    bottom: 95px;
    left: 43px;
}

#dinamico-6{
    bottom: 14px;
    right: 131px;
    bottom: 36px;
    left: 85px;
}

#dinamico-7{
    bottom: 14px;
    right: 131px;
}

#dinamico-8{
    bottom: 36px;
    right: 60px;
}

#dinamico-9{
    bottom: 95px;
    right: 19px;
}

#dinamico-0{
    top: 109px;
    right: 10px;
}

#dinamico2-1{
    top: 51px;
    right: 60px;
}

#dinamico2-2{
    top: 26px;
    right: 131px;
}

#dinamico2-3{
    top: 51px;
    left: 87px;
}

#dinamico2-4{
    top: 109px;
    left: 43px;
}

#dinamico2-5{
    bottom: 95px;
    left: 43px;
}

#dinamico2-6{
    bottom: 36px;
    left: 85px;
}

#dinamico2-7{
    bottom: 14px;
    right: 131px;
}

#dinamico2-8{
    bottom: 36px;
    right: 60px;
}

#dinamico2-9{
    bottom: 95px;
    right: 19px;
}

#dinamico2-0{
    top: 109px;
    right: 10px;
}

.estructura-num{
    border-radius: 50%;
    width: 100px;
    height: 100px;
    border: 2px solid #ccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tareasEstructura{
    width: 270px;
    margin-top: 20px;
}

.tareasEstructura h3{
    text-align: center;
}

.tarea{
    display: flex;
    margin-left: 10px;
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
}

.razoneskarmicas{
    position: relative;
    padding-top: 1px;
    width: fit-content;
}

.razones-karmicas-circulos{
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tabla-razones-karmicas{
    border-collapse: collapse !important;
    margin-top: 50px;
}

.tabla-razones-karmicas td{
    border: 2px solid black;
    border-collapse: collapse !important;
    padding: 20px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

.caja-imagen{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.caja-imagen .row{
    display: flex;
}

.caja-imagen .row .caja{
    padding: 30px;
    padding-top: 27px;
    padding-bottom: 27px;
    display: flex;
    max-width: 72px;
    position: relative;
}

.caja-imagen .row .corner{
    border: solid 3px black;
}

.caja-imagen .row .side{
    border-left: solid 3px black;
    border-right: solid 3px black;
}

.caja-imagen .row .updown{
    border-top: solid 3px black;
    border-bottom: solid 3px black;
}

.caja-imagen .row .caja-10{
    width: 216px;
    border-bottom: solid 3px black;
    border-right: solid 3px black;
    border-left: solid 3px black;
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dinamic{
    font-size: 10px;
    margin-left:5px;
}

.imagenAyuda{
    position: absolute;
    top: 5px;
    left: 5px;
    display: flex;
}

.imagenAyuda p{
    font-size: 12px;
    border: solid 2px red;
    padding: 1px 4px;
    border-radius: 99px;
}

.puntoVerde{
    min-width: 7px;
    min-height: 7px;
    background-color:green;
    position: absolute;
    bottom: 5px;
    left: 5px;
    border-radius: 99px;
}

.cajaOtrosDatos{
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.section1-data{
    display: flex;
    flex-direction: column;
    align-items: center;    
}

.numero-vibracion-item{
    width: 300px;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    border: 2px solid #ccc;
    margin-top: 10px;
}

.numero-vibracion-label{
    font-weight: 600;
}

.numero-vibracion-result{
    color: #f18719;
    font-weight: 600;
    font-style: italic;
}

.tarea-desc{
    color: red;
}

#cajaCuentasPendientes{
    display: none;
}

#cuentaPendienteCaja{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 650px;
    flex-wrap: wrap;
}

.cuentaPendiente{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 200px;
    margin-right: 16px;
    margin-top: 10px;
}

.cuentaPendienteNum{
    border: 2px solid black;
    border-radius: 25%;
    padding: 5px 20px;
    font-size: 18px;
    font-weight: 600;
    background-color: #fff;
    z-index: 10;
}

.cuentaPendienteRep{
    border: 2px solid black;
    border-radius: 35%;
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 600;
    margin-top: -10px;
    color: #f18719; 
}

.botonImprimir{
    padding: 10px 20px;
    background-color: #f18719;
    color: #fff;
    border: 3px solid #f18719;
    font-size: 24px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 10px;
    transition: all 0.5s;
}

.botonImprimir:hover{
    background-color: #fff;
    color: #f18719;
}

.seccionrazones{
    display: flex;
    justify-content: space-evenly;
}

.rzk1{
    top: 0;
    left: 34px;
}

.rzk2{
    top: 0;
    left: 92px;
}

.calculadora{
    position: absolute;
    z-index: 9999;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    top: 100px;
    left: 100px;
}

.calculadora-nav{
    background-color: #f18719;
    width: 600px;
    display: flex;
    padding: 10px 20px;
    border-radius: 10px 10px 0px 0px;
    color: white;
    justify-content: space-between;
    cursor: move;
    user-select: none;
    -webkit-user-select: none;
}

.icon-hov:hover{
    cursor: pointer;
}

.calculadora-content{
    background-color: white;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    transition: max-height 0.3 ease;
}

.colapse{
    max-height: 0;
    padding: 0 10px;
    display: none;
}

.calculadora-numero{
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 35%;
}

.calculadora-numero input{
    padding: 10px;
    text-align: center;
}

.calculadora-numero button{
    background-color: #39AB45;
    color: white;
    width: 100%;
    border: solid 3px #39AB45;
    font-weight: 600;
    padding: 10px;
    transition: all 0.2s;
}

.calculadora-numero button:hover{
    background-color: white;
    color: #39AB45;
    cursor: pointer;
}

.calculadora-resultado{
    border: solid 1px black;
    width: 60%;
    padding: 10px;
    display: flex;
    gap: 80px;
}

.calculadora-desglose{
    padding: 5px 0 5px 10px;
    border-left: 1px solid #f18719;
    margin-left: 5px;
}

.btn-calculadora{
    padding: 10px 20px;
    color: white;
    background-color: #39AB45;
    border: solid 3px #39AB45;
    margin-top: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-calculadora:hover{
    cursor: pointer;
    color: #39AB45;
    background-color: white;
}

.tensionypolos{
    border: 2px solid lightgray;
    margin-top: 5px;
    padding: 5px;
}

.tensionypolos div{
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.tensionypolos div p{
    padding: 3px 10px;
    background-color: lightgray;
    border-radius: 5px;
    font-size: 14px;
}

@media  (max-width: 718px){
    
    .form-row {
        display: block; 
        width: 100%;
    }
    
    .form-row input {
        margin: 0 0 5px 0;
        padding: 10px;
    }
    
    .form-row > :first-child {
        margin: none;
    }

    #name{
        width: 100%;
    }
    
    #born_date{
        width: 100%;
    }
    
    #name2{
        width: 100%;
    }
    
    #born_date2{
        width:100%;
    }    

    .datos{
        padding-left: 20px;
        padding-right: 20px;
    }

    .tituloSendero{
        flex-direction: row !important;
    }
    
    #formulario{
        flex-direction: column !important;
    }

    #submit{
        padding: 15px;
        align-self: center !important;
        margin-left: 0;
    }

    .arbolVida{
        width: 200px;
        height: 350px;
    }

    .sefirot{
        width: 30px;
        height: 30px;
    }

    .sendero{
        height: 12px;
    }

    .binah{
        top: 36px;
    }

    .jokmah{
        top: 36px;
    }

    .guevurah{
        top: 115px;
    }

    .jesed{
        top: 115px;
    }

    .tiferet{
        top: 155px;
    }

    .hod{
        top: 200px;
    }

    .netzaj{
        top: 200px;
    }

    .yesod{
        top:245px;
    }

    .malhut{
        top: 315px;
    }

    .senderotransversal {
        width: 163px;
    }

    .senderolateral {
        width: 12px;
        height: 72px !important;
    }

    .sendero p{
        font-size: 10px;
    }

    .sendero1 {
        width: 94px;
        top: 30px;
        left: 6px;
        transform: rotate(-23deg);
    }

    .sendero2 {
        top: 20px;
        left: 46.5%;
        width: 12px;
        height: 154px !important;
    }

    .sendero3 {
        top: 47px;
    }

    .sendero4 {
        width: 12px;
        height: 144px !important;
        transform: rotate(33deg);
        top: 38px;
        right: 52px;
    }

    .sendero5 {
        top: 57px;
        right: 9px;
    }

    .sendero6 {
        width: 12px;
        height: 144px !important;
        transform: rotate(-32deg);
        top: 38px;
        left: 52px;
    }

    .sendero7 {
        top: 57px;
        left: 9px;
    }

    .sendero8 {
        top: 125px;
    }

    .sendero9 {
        width: 12px;
        height: 83px !important;
        transform: rotate(64deg);
        top: 114px;
        right: 49px;
    }

    .sendero10 {
        top: 139px;
        right: 9px;
    }

    .sendero11 {
        width: 12px;
        height: 83px !important;
        transform: rotate(-64deg);
        top: 114px;
        left: 49px;
    }

    .sendero12 {
        top: 139px;
        left: 9px;
    }

    .sendero13 {
        width: 12px;
        height: 87px !important;
        transform: rotate(-64deg);
        top: 149px;
        right: 55px;
    }

    .sendero14 {
        top: 182px;
        left: 46.5%;
        width: 12px;
        height: 75px !important;
    }

    .sendero15 {
        width: 12px;
        height: 87px !important;
        transform: rotate(64deg);
        top: 149px;
        left: 55px;
    }

    .sendero16 {
        top: 211px;
    }

    .sendero17 {
        width: 12px;
        height: 83px !important;
        transform: rotate(64deg);
        top: 197px;
        right: 49px;
    }

    .sendero18 {
        width: 12px;
        height: 125px !important;
        transform: rotate(37deg);
        top: 212px;
        right: 48px;
    }

    .sendero19 {
        width: 12px;
        height: 83px !important;
        transform: rotate(-64deg);
        top: 197px;
        left: 49px;
    }

    .sendero20 {
        width: 12px;
        height: 125px !important;
        transform: rotate(-37deg);
        top: 212px;
        left: 48px;
    }

    .sendero21 {
        top: 273px;
        left: 46.5%;
        width: 12px;
        height: 44px !important;
    }

    .sendero22 {
        width: 94px;
        top: 30px;
        right: 6px;
        transform: rotate(23deg);
    }

    .seccionArcanos{
        width: 200px;
    }

    .cajaseccion{
        width: 200px;
    }

    .estructura-alma{
        width: 150px;
        height: 150px;
    }

    .estructura-alma-tareas{
        width: 150px;
        height: 150px;
    }

    .portal p {
        font-size: 16px;
    }

    .portal2 p {
        font-size: 16px;
    }

    .tareadisplay{
        right: -7px;
    }

    .escudoProtector {
        width: 10px;
        height: 10px;
    }

    .estructura-dinamicos{
        font-size: 12px;
    }

    #dinamico-1 {
        top: 27px;
        right: 28px;
    }

    #dinamico-2 {
        top: 17px;
        right: 61px;
    }

    #dinamico-3 {
        top: 25px;
        left: 45px;
    }

    #dinamico-4 {
        top: 55px;
        left: 22px;
    }

    #dinamico-5 {
        bottom: 41px;
        left: 23px;
    }

    #dinamico-6 {
        bottom: 10px;
        left: 45px;
    }

    #dinamico-7 {
        bottom: -1px;
        right: 63px;
    }

    #dinamico-8 {
        bottom: 10px;
        right: 27px;
    }

    #dinamico-9 {
        bottom: 42px;
        right: 6px;
    }

    #dinamico-9 {
        bottom: 42px;
        right: 6px;
    }

    #dinamico-0 {
        top: 57px;
        right: 1px;
    }

    #dinamico2-1 {
        top: 27px;
        right: 28px;
    }

    #dinamico2-2 {
        top: 17px;
        right: 61px;
    }

    #dinamico2-3 {
        top: 25px;
        left: 45px;
    }

    #dinamico2-4 {
        top: 55px;
        left: 22px;
    }

    #dinamico2-5 {
        bottom: 41px;
        left: 23px;
    }

    #dinamico2-6 {
        bottom: 10px;
        left: 45px;
    }

    #dinamico2-7 {
        bottom: -1px;
        right: 63px;
    }

    #dinamico2-8 {
        bottom: 10px;
        right: 27px;
    }

    #dinamico2-9 {
        bottom: 42px;
        right: 6px;
    }

    #dinamico2-9 {
        bottom: 42px;
        right: 6px;
    }

    #dinamico2-0 {
        top: 57px;
        right: 1px;
    }

    .estructura-num{
        width: 80px;
        height: 80px;
    }

    .tareasEstructura {
        width: 180px;
    }

    .tarea{
        text-align: center;
    }

    .tabla-razones-karmicas {
        margin-top: 30px;
    }

    .tabla-razones-karmicas td {
        padding: 10px;
    }

    .razones-karmicas-circulos{
        width: 30px;
        height: 30px;
    }

    .rzk1{
        top: 0;
        left: 24px;
    }
    
    .rzk2{
        top: 0;
        left: 63px;
    }

    .caja{
        max-width: 50px !important;
        justify-content: center;
    }

    .caja-imagen .row .caja-10 {
        width: 192px;
    }

    .numero-vibracion-item {
        width: 180px;
        display: unset;
    }
}