/* Font  */
@font-face {
    font-family: 'MyFontHead';
    src: url('/font/BiomePro-Black.woff2') format('woff2'),
    url('/font/BiomePro-Black.woff') format('woff'),
    url('/font/biome-pro-black.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MyFontHeadItalic';
    src: url('/font/BiomePro-BlackItalic.woff2') format('woff2'),
    url('/font/BiomePro-BlackItalic.woff') format('woff'),
    url('/font/biome-pro-black-italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'MyFontBold';
    src: url('/font/BiomeW04-Bold.woff2') format('woff2');
url('/font/BiomeW04-Bold.woff') format('woff'),
url('/font/biome-pro-bold.otf') format('opentype'),
url('/font/Biome-W04-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MyFontBoldItalic';
    src: url('/font/BiomePro-BoldItalic.woff2') format('woff2'),
    url('/font/BiomePro-BoldItalic.woff') format('woff'),
    url('/font/biome-pro-bold-italic.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'MyFontBody';
    src: url('/font/BiomePro-Light.woff2') format('woff2'),
    url('/font/BiomePro-Light.woff') format('woff'),
    url('/font/biome-pro-light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MyFontBodyItalic';
    src: url('/font/BiomePro-Italic.woff2') format('woff2'),
    url('/font/BiomePro-Italic.woff') format('woff'),
    url('/font/biome-pro-italic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.VeryImprt {
    font-family: 'MyFontHead', serif;
}

.Imprt {
    font-family: 'MyFontBold', serif;
}

.MedImp {
    font-family: 'MyFontBody', serif;
}

/* Font  */


.mainHead {
    /* Header */
    background-color: #001B4B;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.mainFoot {
    /* Footer */
    background-color: #001B4B;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
}

/* Menú lateral */
.MnLatAc {
    margin: 2% 0% 2% 0%;
    text-align: center;
}

.MnSupAc {
    padding: 2%;
    font-size: small;
}

.MnSupAcCel {
    padding: 1%;
    font-size: xx-small;
}

/* Menú lateral  */


.esquinas-H {
    border-radius: 2% / 25%;
}

.esquinas-MH {
    border-radius: 5% / 20%;
}

.esquinas-C {
    border-radius: 10%;
}

.esquinas-V {
    border-radius: 10% / 5%;
}

/* Imágenes */
.MyHomeImage {
    max-height: 500px;
    width: 100%;
    border-top: 6px #B3B2B1 solid;
    border-bottom: 6px #B3B2B1 solid
}

.circulitosImg {
    border-radius: 50%;
}

.logosImg {
    max-height: 250px;
    max-width: 250px;
    width: 100%;
    padding: 10%;
}

/* Imágenes */

/* Líneas HR */
.MyHrPc {
    background-color: black;
    height: 2px;
    margin-left: 15%;
    margin-right: 15%;
}

.MyHrRed {
    background-color: #BF4140;
    height: 4px;
    margin-left: 25%;
    margin-right: 25%;
}

/* Líneas HR */


/* Cajas grises de texto */
.gryfnd {
    background-color: #EFEDEC;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
}

.gryfndJ {
    background-color: #EFEDEC;
    text-align: justify;
    font-weight: 400;
    font-style: normal;
    display: flex;
    align-items: center;
}

.gryfndwF {
    background-color: #EFEDEC;
    text-align: center;
    font-weight: 400;
    font-style: normal;
    display: inline-flex;
    align-items: center;
}

.gryfndJwF {
    background-color: #EFEDEC;
    text-align: justify;
    font-weight: 400;
    font-style: normal;
    border-radius: 5% / 20%;

}

.Mycontainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.gryfndDrk {
    background-color: gray;
    color: white;
    font-weight: 800;
    padding: 5%;
    font-style: normal;
}

.gryBrdrBx {
    border: 1px solid gray;
    border-radius: 5px;
}

/* Cajas grises de texto */


/* Forms */
.MyBdStyPhoto {
    --opacidad-negro: 0.2;
    background-image: linear-gradient(rgba(0, 0, 0, var(--opacidad-negro)), rgba(0, 0, 0, var(--opacidad-negro))), url("../images/Fondo2.png");
    background-size: auto 100%;
}

.MySpclTxtBx {
    border: 0px;
    border-bottom: solid 2px black;
    width: 80%;
    margin: 3%;
}

.MyBtnsFrm {
    margin-top: 2%;
    width: 75%;
}

.MyBtnsFrmW {
    margin-top: 2%;
    width: 100%;
}

.MyLstItms {
    display: flex;
    align-items: center;
}

.MyUpBtnE {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 1em; /* Rounded corners */
    background-color: green; /* Badge color */
    color: white; /* Text color */
    font-weight: bold; /* Bold text */
    font-size: 0.5em; /* Font size */
    position: relative; /* Positioning context */
    text-align: center; /* Center the text */
}

.MyUpBtnE::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1em; /* Optional, decorative element */
    height: 1em; /* Optional, decorative element */
    border: 2px solid #fff; /* Optional, decorative element */
    border-radius: 50%; /* Optional, decorative element */
}

.MyUpBtnX {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 1em; /* Rounded corners */
    background-color: darkred; /* Badge color */
    color: white; /* Text color */
    font-weight: bold; /* Bold text */
    font-size: 0.5em; /* Font size */
    position: relative; /* Positioning context */
    text-align: center; /* Center the text */
}

.MyUpBtnX::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1em; /* Optional, decorative element */
    height: 1em; /* Optional, decorative element */
    border: 2px solid #fff; /* Optional, decorative element */
    border-radius: 50%; /* Optional, decorative element */
}

.MyUpBtnLU {
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 1em; /* Rounded corners */
    background-color: blue; /* Badge color */
    color: white; /* Text color */
    font-weight: bold; /* Bold text */
    font-size: 0.5em; /* Font size */
    position: relative; /* Positioning context */
    text-align: center; /* Center the text */
}

.MyUpBtnLU::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1em; /* Optional, decorative element */
    height: 1em; /* Optional, decorative element */
    border: 2px solid #fff; /* Optional, decorative element */
    border-radius: 50%; /* Optional, decorative element */
}

.MyUpBtnH {
    display: inline-block;
    padding: 0.4em 0.4em;
    border-radius: 1em; /* Rounded corners */
    background-color: purple; /* Badge color */
    color: white; /* Text color */
    font-weight: bold; /* Bold text */
    font-size: 0.8em; /* Font size */
    position: relative; /* Positioning context */
    text-align: center; /* Center the text */
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 500,
  'GRAD' 200,
  'opsz' 24
}

.MysLatSleOn {
    text-decoration: none;
    color: blue;
    border-bottom: green;
    font-size: large;
    font-weight: bolder;
}

.MysLatSleOn2 {
    text-decoration: none;
    color: blue;
    font-weight: bolder;
}

.MysLatSleOf {
    text-decoration: none;
    color: gray;
}

.contenedor-barraProg {
      width: 100%;
      background-color: #e0e0e0;
      border-radius: 20px;
      overflow: hidden;
      height: 30px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
    }
    /** Desde Style debe ingresarse la propiedad width con el porcentaje de avance width: <?= $porcentaje ?>%. El contenedor está al 100%.
     <div class="contenedor-barraProg">
  <div class="barraProg"><?= $porcentaje ?>%</div>
</div>
     */
    .barraProg {
      height: 100%;
      background-color: #4CAF50;
      text-align: center;
      color: white;
      line-height: 30px;
      transition: width 0.5s ease;
    }
/* Forms */

/* Portal */
.MyPrtlBdy {
    margin-top: 35px;
    padding-bottom: 30px;
}

.MyWrkArea {
    margin-top: 5%;
    text-align: center;
    padding: 2%;
}

.FillWrkArea {
    font-family: "Helvetica Neue";
}

.FillWrkArea form {
    margin-top: 2%;
}

.FillWrkArea label {
    margin-top: 1%;
}

.Ifry {
    width: 100%;
    seamless: true;
    height: 700px;
    border: none;
}

.Ifry2 {
    seamless: true;
    border: none;
    width: 800px;
    height: 700px;
}

.MdlWdw { /* Dialog Modal */
    margin: auto;
    top: 20%;
    max-width: 80%;
    min-width: 60%;
    overflow-x: auto;
    border-radius: 5% / 20%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    text-align: justify;
    padding: 2%;
    max-height: 70vh;
    overflow-y: auto;
    background-color: white; /* o cualquier color sólido */
    opacity: 0;
    z-index: 10000000;
  transition:
    display 1s allow-discrete,
    overlay 1s allow-discrete,
    translate 1s,
    opacity 1s;
  translate: 0 50%;
  will-change: translate, opacity;
}

.MdlWdw::backdrop {
    background: linear-gradient(#000d, #000a);
    opacity: 0.1;
  transition:
    display 1s allow-discrete,
    opacity 1s;

  @starting-style { opacity: 0 }
}

.MdlWdw0 {
    /* Formato en ventana Modal Dialog */
    text-align: center;
    padding: 2%;
}

.MdlWdw1 {
    /* Formato en ventana en Pestaña nueva */
    text-align: center;
    padding: 2%;
}

.MdlWdw[open] {
  opacity: 1;
  translate: 0;
  @starting-style {
    opacity: 0;
    translate: 0 50%;
  }
}

.MdlWdw:not([open])::backdrop {
  opacity: 0;
}

.MyToast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    opacity: 0;
    z-index: 9999;
    font-family: sans-serif;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateY(20px);
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left-color: #09f;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
  transition: opacity 0.3s ease;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.Red {
    border-style: dashed;
    border-color: red;
    border-width: 0px 1px 2px 0px;
}

.Yel {
    border-style: dot-dash;
    border-color: yellow;
    border-width: 0px 1px 2px 0px;
}

.DBrd1 {
    font-size: smaller;
    text-align: justify;
}

/* Portal */


/* Navbar */
.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    float: left;
    display: flex;
    align-items: center;
}

.navbar a {
    color: whitesmoke;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 20%;
}

.navbar a:hover {
    display: flow;
    align-items: center;
    background-color: #001B4B;
    font-weight: bolder;
    color: white;
    border-radius: 5% / 20%;
    padding-bottom: 20%;
    height: 110%;
}

/* Navbar */


.Periq {
    display: none;
}

.NoPeriq {
    display: block;
}

@media screen and (max-width: 600px) {
    .Periq {
        display: block;
    }

    .NoPeriq {
        display: none;
    }
}