:root {
    --color-primario: rgba(0, 0, 139, 1);
    --color-primario-hover: rgba(0, 0, 139, 0.8);
    --color-primario-active: rgb(1, 1, 121);
    --fuente-principal: Arial, sans-serif;
    
  }
  body {
    margin-top: 64px; /* Ajusta el valor según la altura de tu encabezado */
    overflow-x: hidden;
  }
  input[type=number]::-webkit-inner-spin-button, 
  input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none; 
    margin: 0; 
  }

  input[type=number] { -moz-appearance:textfield; }
  * {
    margin: 0;
    padding: 0;

  }

  html{
    height: 100vh;
    width: 100vw;
  }
  
  body {
    height: 100vh;
    width: 100vw;
  }
  
  /* .header {
    flex-direction: row;
    position: relative;
    align-items: center;
    display: flex;
    max-width: 100%;
    height: 20%;

  }

  .img {
    max-width: 100%;
    height: auto;
    background: transparent;
    font-size: 100%;
    font-weight: inherit;
    vertical-align: baseline;
  } */

  header {
    width: 100vw;
    height: 64px;
    overflow: hidden;
    box-shadow: 2px 2px 15px 5px #ddd;
    position: fixed;
    top: 0; /* Asegura que el encabezado esté en la parte superior */
    /* Opcional: agregar un z-index para asegurar que el encabezado esté por encima de otros elementos */
    z-index: 10;
    background-color: #ffffff;
  }

.logo-container{
  width: 100%;
  height: 100%;
}

  header img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left;
  }

  
  .form,
  .resultado {
    width: 480px;
    height: fit-content;
    margin: 0 auto;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
  }

  @media (max-width: 425px) {
    .form {
      width: 90%;
    }
  }
  
  .container {
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .rows {
    display: flex;
    flex-direction: row; 
    padding: 0px 4px;
  }

  .column {
    display: flex;
    flex-direction: column;
    
  }

  .label {
    font-family: 'calibri';
    padding: 12px 0px 0px 4px;
  }
  
  .input-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
  }

  .mr {
    margin-right: 10px;
  }

  hr{
    border: 0px solid rgb(255, 255, 255);
    margin: 10px 0px 20px 0px;
  }
  

  .input,
  .input-select,
  textarea {
    border: 1px solid rgb(0 56 139 / 45%);
    outline-color: var(--color-primario);
  }
  
  .input {
    height: 25px;
  }

  .input-select {
    background-color: #ffffff;
  }
  
  textarea {
    padding: 20px;
  }
  
  .btn {
    border: transparent;
    background-color: var(--color-primario);
    cursor: pointer;
    width: 90%;

    font-weight: 700;
    padding: 0.6rem 1.25rem;
    transition: all 0.4s ease-in-out;

    background: #098dcf;
    text-decoration: none;
    color: #fff;
    border-radius: 0.25rem;

    &:hover {
      background-color: var(--color-primario-hover);
    }
    &:active {
      background-color: var(--color-primario-active);
    }
  }

  .check-container {
    width: 20px;
    height: 20px;
    background-color: green;
    border-radius: 50%; /* Hace el contenedor redondo */
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  
  .checkmark {
    color: white;
    font-size: 16px;
    font-weight: bold;
    line-height: 1; /* Ajusta la altura de línea para centrar verticalmente */
  }
  .radio-option{
    font-family: 'calibri';
    padding: 0px 0px 0px 12%;
    display: flex;
    /* flex-direction: column; */
    gap: 8px;
    width: 100%;
    font-size: 14px;
    color: #555;
    background-color: #fff;
    background-image: none;
    border-radius: 4px;
  }


  .alertify .ajs-dialog {
    top: 30%;
    margin: auto;
}
