@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --colorLetra: #002C3C;
    --colorFondo: #ffffff;
    --colorFondoIconos: #FFFFF6;
    --colorTopMenu: #002C3C;
    --colorBottomMenu: #002C3C;
    --colorTextMenu: #FFFFF6;
    --bs-secondary-color: #bbbbbb;
}

* {
    padding: 0px;
    margin: 0px;
    color: var(--colorLetra);
    font-family: "Open Sans", sans-serif;
}

#logotipo {
    width: 100%;
    height: 100%;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background: url(../icons/logo.png) fixed no-repeat center center #ffffff;
    background-size: contain;
    -webkit-animation: loader 4s forwards;
    -moz-animation: loader 4s forwards;
    animation: loader 4s forwards;
    z-index: 99999;
}

@-webkit-keyframes loader {
    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        z-index: -1;
    }
}

@-moz-keyframes loader {
    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        z-index: -1;
    }
}

@keyframes loader {
    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        z-index: -999;
    }
}

article {
    text-align: center;
    border-radius: 10px;
    font-size: 10px;
    min-width: 8em;
    padding: 10px 10px;
}

article .letra {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: var(--colorLetra);
    width: 100%;
    display: inline-table;
    -webkit-margin-before: 0em;
    -webkit-margin-after: 0em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -moz-margin-before: 0em;
    -moz-margin-after: 0em;
    -moz-margin-start: 0px;
    -moz-margin-end: 0px;
}

.fondo {
    background-color: var(--colorFondo) !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    text-align: center;
    color: var(--colorLetra);
}


/* Edición de botones de submenu principal */
nav {
    background: var(--colorTopMenu);
    background: -moz-linear-gradient(top, var(--colorTopMenu) 0%, var(--colorBottomMenu) 99%);
    background: -webkit-linear-gradient(top, var(--colorTopMenu) 0%, var(--colorBottomMenu) 99%);
    background: linear-gradient(to bottom, var(--colorTopMenu) 0%, var(--colorBottomMenu) 99%);
    z-index: 1000;
    width: 100%;
    margin: auto;
    text-align: center;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.miNegocio, .fa-spinner {
    font-size: 20px;
    color: var(--colorTextMenu);
    font-weight: bold;
    padding-left: 1rem;
}

.fa-spinner {
    font-size: 20px;
    color: var(--colorTextMenu);
}

.miboton {
    width: 100%;
    max-width: 300px;
    margin: 10px auto;
    text-align: center;
    display: block;
    padding: 1em;
    border-radius: 5px;
    border: 0;
    font-weight: bold;
    color: var(--colorTextMenu);
    box-sizing: border-box;
    background: var(--colorTopMenu);
    background: -moz-linear-gradient(top, var(--colorTopMenu) 0%, var(--colorBottomMenu) 99%);
    background: -webkit-linear-gradient(top, var(--colorTopMenu) 0%, var(--colorBottomMenu) 99%);
    background: linear-gradient(to bottom, var(--colorTopMenu) 0%, var(--colorBottomMenu) 99%);
}

/*
.fondo {
     background: url("../icons/logo.png") fixed center top no-repeat #fff; 
}
*/
.animate-in-2 {
    -webkit-animation: fadeIn 1s ease-in;
    animation: fadeIn 1s ease-in;
}

.animate-out {
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
    opacity: 0;
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.main-option {
    background: transparent;
    height: auto;
    width: 95%;
    min-width: 100px;
    max-width: 1000px;
    margin: 1rem auto;
}

.capa {
    height: auto;
    width: 100%;
    overflow-x: hidden;
}

section ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1rem;
}

section ul li {
    display: inline-block;
    position: relative;
    width: 19%;
    min-width: 121px;
    margin-bottom: .125rem;
    padding: .25rem;
    border: 1px solid gray;
    max-width: 175px;
    border-radius: .5rem;
    background-color: var(--colorFondoIconos);
}
section ul li:hover {
    box-shadow: 1px 1px 5px gray;
    border-radius: .75rem;
}
section ul li img {
    height: 60px;
    width: 60px;
}
@keyframes aniImage {
    0%   {height: 60px; width: 60px;}
    
    50%  {height: 62px; width: 62px;}
   
    100% {height: 60px; width: 60px;}
  }
/*section ul li:hover img {
    animation-name: aniImage;
    animation-duration: .5s;
    animation-iteration-count: infinite;
}*/

ul {
    margin: 0px;
    padding: 0px;
}

.iconoestilo {
    font-size: 60px;
}

nav ul {
    list-style: none;
    margin: 0px !important;
    padding-right: 1rem;
}

nav ul li.unico {
    list-style: none;
    width: 10%;
    display: inline-block;
    background: red;
}

nav ul li {
    position: relative;
    width: 24%;
    padding: 5px 5px;
    display: inline-block;
    /*text-align: justify;*/
    vertical-align: middle;
    color: #fff;
}

nav ul li img, nav ul li .fas {
    height: 15px;
    /*width: 15px;*/
    padding: 0px 0px 0px 10px;
    vertical-align: middle;
}

nav ul li:hover {
    background: transparent;
}

nav ul li a {
    color: #fff;
    display: block;
    text-decoration: none;
    margin-right: 1px;

}


nav ul li:hover .children {
    display: block;
}

nav ul li .children {
    display: none;
    background: #343434;
    position: absolute;
    width: 12em;
    z-index: 1000;
}

nav ul li .children li {
    display: block;
    overflow: hidden;
    border-bottom: 1px solid transparent;
}

nav ul li .children li a {
    display: block;
}

nav ul li .children li a span {
    float: right;
    position: relative;
    top: 3px;
    margin-right: 0;
    margin-left: 10px;
}

nav ul li .caret {
    position: relative;
    top: 3px;
    margin-left: 10px;
    margin-right: 0px;
}

.opciones {
    font-size: 20px;
    background: transparent;
    height: 30px;
    width: 100px;
    border: 0;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

a {
    text-decoration: none;
    color: var(--colorTextMenu) !important;
}

div.content-iframe {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 1000px;
    max-height: 564px;
    margin: 0px auto;
}
.iframe {
    position: absolute;
    top:0;
    left: 0;
    max-width: 1000px;
    max-height: 564px;
    width: 100%;
    height: 100%;
}

.separacion {
    padding: 10px 0px;
    width: auto;
}
.separacion span, .separacion i {
    color: var(--colorTextMenu);
}

.ret-dos {
    transition-delay: 2s;
    -webkit-transition-delay: 2s;
    /* Safari */
    -moz-transition-delay: 2s;
    /* Mozilla */
    -o-transition-delay: 2s;
    /* Opera */
    -ms-transition-delay: 2s;
    /* IE */
}

.social {
    background: transparent;
    text-align: center;
    margin-bottom: 1em;
    border: 1px solid transparent;
    box-shadow: 2px 2px 0px 0px transparent;
    -webkit-box-shadow: 2px 2px 0px 0px transparent;
    -moz-box-shadow: 2px 2px 0px 0px transparent;
    border-radius: 10px;
    font-size: 10px;
    height: 12.5em;
    min-width: 8em;
}

.detalle {
    overflow-x: hidden;
    transition: 1s;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -ms-transition: 1s;
    -o-transition: 1s;
}

.detalle2 {
    overflow-x: hidden;
    transition: 2s;
    -webkit-transition: 2s;
    -moz-transition: 2s;
    -ms-transition: 2s;
    -o-transition: 2s;
}

footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #3f3f3f;
}
footer a {
    text-align: center;
}

dialog {
    margin: auto;
    padding: 1rem;
    border-radius: 1rem;
    border-color: gray;
    background-color: var(--colorFondo);
    max-width: 550px;
    border-width: 1px;
}

dialog h2 {
    color: var(--colorLetra);
    border-bottom: 1px solid var(--colorLetra);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
}
dialog div.bodyModal {
    text-align: center;
}
dialog button {
    padding-top: 1rem;
}

dialog img {
    width: 100%;
    height: auto;
}
/* .xdsoft_time:nth-child(3n - 1), .xdsoft_time:nth-child(3n) { display: none;} */
@media  only screen and (max-width: 575px) {
    nav ul li img, nav ul li .fas {
        height: 20px;
        font-size: 20px !important;
    }
    nav ul li span {
        display: none;
    }
    .fa-undo {
        font-size: 1.87rem !important;
    }
    .pt-4 { padding-top: 0 !important;}
    dialog {
        max-width: 350px;
    }
}
@media  only screen and (min-width: 1000px) {
    div.content-iframe {
        padding-bottom: 564px;
    }
}


