/********************************************************************************/
/*                                                                              */
/* Plataforma e-ducativa.  Version 14.05.00-153 - Argentina                     */
/*                                                                              */
/* Copyright (c)  de e-ducativa Educación Virtual S.A.                          */
/*                                                                              */
/********************************************************************************/
/* Reset general */
body {
    position: static;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: normal;
}
/* HACK para IE y Edge - Elimina la X en los inputs */
::-ms-clear { display: none; }

input[type="text"]:focus,
textarea:focus { outline: none; }

address { font-style: normal; }

/* ------
   Layout
   ------ */
html,
body {
    height: 100%;
    font-family: 'Roboto', sans-serif;
}
body {
    color: #000000;
    background-color: #f3f3f3;
}
button,
input,
select { font-family: 'Roboto', sans-serif; }

.alinear_derecha { text-align: right; }

.centrado {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}
/* La medida del calc en px esta atada al alto del footer + su margin */
#wrapper {
    min-height: calc(100% - 169px);
    padding-top: 5em;
    box-sizing: border-box;
}
#nav {
    float: left;
    position: relative;
    width: 20%;
    margin-top: 34px;
    padding-left: 10px;
    box-sizing: border-box;
    overflow: hidden;
    overscroll-behavior: contain;
    z-index: 3;
}
#section {
    float: left;
    width: 78%;
    margin-left: 2%;
    box-sizing: border-box;
}
#main > .offset {
    display: flex;
    flex-flow: row wrap;
}
#main > .offset > * {
    width: 100%;
    box-sizing: border-box;
}
#Contenido-Encabezado {
    order: -3;
    transition-duration: 1s;
}
#actions {
    order: -1;
    margin: 20px 0 10px;
}
.contenido {
    order: 1;
    min-height: 286px;
    padding: 20px 20px 32px;
    border: 1px solid #d2d2d2;
    border-top: none;
    background-color: #ffffff;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.10);
    transition-duration: .2s;
}
/* ------
   Footer
   ------ */
.footer_wrapper {
    display: inline-block;
    width: 100%;
    margin-top: 40px;
}
#footer .footer_text {
    padding: 12px 10px;
    text-align: center;
    font-weight: 300;
    font-size: .875rem;
    color: #000000;
    border-top: 1px solid #d9d9d9;
    background: #cecece;
    background: linear-gradient(0deg, rgba(206,206,206,1) 0%, rgba(228,228,228,1) 100%);
}
#footer .revision {
    font-size: .9rem;
    color: #737373;
}
#footer .powered_by {
    padding: 20px 10px 12px;
    text-align: center;
    background-color: #303030;
}
#footer a {
    display: inline-block;
    padding: 4px 0;
    vertical-align: middle;
    text-decoration: none;
    opacity: .7;
    transition-duration: .4s;
}
#footer a:last-child { margin-left: 20px; }

#footer a:hover {
    padding: 4px 0;
    opacity: 1;
}
/* Para axis */
#footer a#educativa_mobile_footer {
    position: absolute;
    right: 0;
    margin-right: 20px;
}
/* --------- */

.logos:not(.infd) #footer .powered_by { background-color: transparent; }

.logos:not(.infd) #footer .logos { margin: 10px 0; }

.logos:not(.infd) #footer .logos .infd { margin-left: 32px; }

.logos:not(.infd) #footer a {
    text-decoration: none;
    opacity: 1;
}
/*--------------------------------------------------------------------*/

/* Secciones sin menu */
#section.no_menu {
    float: none;
    margin: 0 auto;
}
#section.no_menu #main {
    float: none;
    width: auto;
}
#section.no_menu #main>.offset {
    display: block;
    width: auto;
    padding: 0 10px;
}
#section.no_menu #actions > .offset {
    padding: 0;
    transition: all .2s;
}

/* Hack para IE11 */
@media screen and (min-width:0\0) {
    #nav,
    #section,
    #Contenido-Encabezado,
    .contenido { transition-duration: 0; }
}

.fade-out {
    animation: fade-out 0.2s forwards;
}

.fade-in {
    animation: fade-in 0.2s forwards;
}

.hidden {
    display: none !important;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
