@import url(https://fonts.googleapis.com/css?family=Nunito); /* Fonts */

@font-face {
    font-family: "Nutmeg-ExtraBold";
    src: url("/vendor/fonts/nutmeg/Nutmeg-ExtraBold.woff") format("woff"), url("/vendor/fonts/nutmeg/Nutmeg-ExtraBold.ttf") format("truetype");
}

@font-face {
    font-family: "Nutmeg-Bold";
    src: url("/vendor/fonts/nutmeg/Nutmeg-Bold.woff") format("woff"), url("/vendor/fonts/nutmeg/Nutmeg-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Nutmeg-Book";
    src: url("/vendor/fonts/nutmeg/Nutmeg-Book.woff") format("woff"), url("/vendor/fonts/nutmeg/Nutmeg-Book.ttf") format("truetype");
}

#app {
    width: 100%;
    height: 100%;
    position: relative;
}

#app #nav-main {
    display: block;
    padding: 0px;
    width: 240px;
    background-color: #CD42A5 !important;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 1;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

#app #nav-main .logo {
    height: 70px;
    background-color: #CD42A5;
    text-align: center;
    z-index: 3;
    width: 100%;
}

#app #nav-main .logo img {
    margin-top: 13px;
    width: 120px;
}

#app #nav-main .logo .button-menu {
    float: right;
    font-size: 30px;
    padding: 0px 10px;
    margin-top: 12px;
    display: none;
}

#app #nav-main .logo .button-menu #btn-menu-check {
    display: none;
}

#app #nav-main .logo .button-menu label {
    cursor: pointer;
    height: 35px;
    color: #fff;
}

#app #nav-main .logo .button-menu label .bar1,
#app #nav-main .logo .button-menu label .bar2,
#app #nav-main .logo .button-menu label .bar3 {
    width: 35px;
    height: 5px;
    background-color: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

#app #nav-main .logo .button-menu .change .bar1 {
    transform: rotate(-45deg) translate(-9px, 6px);
}

#app #nav-main .logo .button-menu .change .bar2 {
    opacity: 0;
}

#app #nav-main .logo .button-menu .change .bar3 {
    transform: rotate(45deg) translate(-8px, -8px);
}

#app #nav-main #container-menu {
    position: absolute;
    top: 70px;
    background-color: #CD42A5;
    width: 100%;
    z-index: 1;
}

#app #nav-main #container-menu .menu {
    width: 240px;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
    box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.4);
}

#app #nav-main #container-menu .menu li {
    list-style: none;
    width: 100%;
}

#app #nav-main #container-menu .menu li a {
    padding: 10px 30px;
    width: 100%;
    display: block;
    color: white;
    text-decoration: none;
    position: relative;
    transition: opacity 0.45s ease;
}

#app #nav-main #container-menu .menu li a:hover {
    background-color: #fff;
    color: #CD42A5;
}

#app #nav-main #container-menu .menu li a .logout-icon {
    margin-right: 12px;
    margin-left: 10px;
}

#app #nav-main #container-menu .menu li a img {
    position: relative;
    z-index: 1;
    transition: opacity 0.45s ease;
}

#app #nav-main #container-menu .menu li a:hover img {
    opacity: 0;
}

#app #nav-main #container-menu .menu li a img.hover {
    position: absolute;
    opacity: 0;
    top: 10px;
    left: 30px;
}

#app #nav-main #container-menu .menu li a:hover img.hover {
    opacity: 1;
}

#app #nav-main #container-menu .menu li.selected a {
    background-color: white;
    color: #CD42A5;
    text-decoration: none;
}

#app #nav-main #container-menu .menu li.selected a img.hover {
    opacity: 1;
}

#app #nav-main #container-menu .menu li.logout-li {
    display: none;
}

#app #nav-main .footer {
    width: 100%;
    position: absolute;
    bottom: 0px;
    left: 0px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

#app #nav-main .footer .slogan {
    padding-bottom: 10px;
    width: 70%;
    margin: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

#app #nav-main .footer .slogan img {
    width: 135px;
}

#app #nav-main .footer .copyright {
    padding-top: 25px;
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    #app #nav-main {
        width: 100%;
        background-color: #CD42A5;
        height: auto;
        position: fixed;
        left: 0px;
        z-index: 30000;
        display: flex !important;
    }

    #app #nav-main .logo {
        padding: 0px 20px;
    }

    #app #nav-main .logo a {
        float: left;
    }

    #app #nav-main .logo .button-menu {
        display: block !important;
    }

    #app #nav-main #container-menu {
        top: -198%;
    }

    #app #nav-main #container-menu .menu {
        width: 100% !important;
    }

    #app #nav-main #container-menu .menu a.list-item img {
        width: 35px !important;
    }

    #app #nav-main #container-menu .menu .logout-li {
        display: block !important;
    }

    #app #nav-main #container-menu.open {
        top: 100% !important;
        transition: all 0.5s;
    }

    #app #nav-main #container-menu.closed {
        top: -198% !important;
        transition: all 0.5s;
    }
}

#app #container-main {
    padding-left: 240px;
    width: 100%;
    height: 100%;
    position: relative;
}

#app #container-main nav.header {
    width: 100%;
    height: 70px;
    background-color: #fff;
    position: fixed;
    z-index: 1;
    box-shadow: 0 -1px 10px 3px rgba(0, 0, 0, 0.2);
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    #app #container-main {
        padding-left: 0px !important;
    }
}

.contener-app {
    padding: 110px 30px 30px;
    overflow-y: hidden;
}

@media only screen and (min-width: 320px) and (max-width: 768px) {
    .contener-app {
        padding: 110px 20px 30px !important;
    }
}

button:focus {
    outline: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
}

body {
    font-family: 'Nexa', sans-serif !important;
    background-color: #F7F7F7;
    padding: 0;
    height: 100%;
}

.card-body img {
    margin: auto;
    align: center;
    text-align: center;
}

.login-component {
    margin-top: -300px;
}

.app-primary-color {
    color: #CD42A5;
}

.app-secondary-color {
    color: #C4A0D8;
}

.app-btn-secondary {
    background-color: #C4A0D8;
    color: #ffffff;
    padding: 5px;
}

footer {
    color: #ffffff;
    background-color: #CD42A5;
}

.app-color-primary {
    background-color: #CD42A5;
}

.container-fluid .app-btn-secondary {
    padding: 0.84rem 2.14rem;
    background-color: #C4A0D8;
    cursor: pointer;
    width: 100%;
    margin: 0;
    margin-top: 11px;
    border-radius: 11px;
}

.container-fluid .app-btn-secondary:hover {
    color: white;
    background-color: #9C60BE;
}

.sidebar-menu {
    position: fixed;
    height: 100%;
    background-color: #CD42A5;
    color: #ffffff;
    padding: 0;
}

.sidebar-menu ul {
    width: 100%;
    padding: 0;
}

.sidebar-menu ul li {
    list-style-type: none;
    font-size: 16px;
    font-weight: 500;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
    background-repeat: no-repeat;
    background-position: left center;
    background-position-x: 20%;
    cursor: pointer;
}

.sidebar-menu ul li a {
    color: white;
    text-decoration: none;
    width: auto;
    display: flex;
    align-items: center;
    padding-left: 50px;
}

.sidebar-menu ul li a img {
    margin-right: 10px;
}

.sidebar-menu ul li a img.img-hover {
    display: none;
}

.sidebar-menu ul li:hover img.img-hover,
.sidebar-menu ul li.selected a img.img-hover {
    display: block;
}

.sidebar-menu ul li:hover img.img-no-hover,
.sidebar-menu ul li.selected a img.img-no-hover {
    display: none;
}

.sidebar-menu ul li.selected a {
    color: #CD42A5;
    text-decoration: none;
}

.sidebar-menu ul li.selected,
.sidebar-menu ul li:hover {
    background-color: #F7F7F7;
    color: #CD42A5;
}

.sidebar-menu ul li:hover a {
    color: #CD42A5;
}

.content {
    color: #343434;
}

.hide {
    display: none;
}

.header {
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #ffffff;
}

.header .logo-jalisco-small {
    height: 40px;
}

.submenu-item {
    background-repeat: no-repeat;
    background-position: center;
    background-position-x: 10%;
    font-size: 16px;
    padding: 20px 0px 20px 70px;
    color: #C4A0D8;
    border-radius: 13px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 2px;
}

.submenu-item.active,
.submenu-item:hover {
    background-color: #C4A0D8;
    color: #ffffff;
}

.submenu-item.active span {
    color: #ffffff;
}

h4,
h5 {
    color: #676767;
    font-weight: bold;
}

/**
* Toast
*/

.toast-app {
    visibility: hidden;
    max-width: 50px;
    height: 50px;
    /*margin: auto;*/
    background-color: #0ab40ab3;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    z-index: 6000;
    /*left: 0;*/
    top: 35px;
    right: 35px;
    bottom: 30px;
    font-size: 17px;
    white-space: nowrap;
}

.toast-app.success {
    background-color: #0ab40ab3;
}

.toast-app.info {
    background-color: #0a90b4b3;
}

.toast-app.error {
    background-color: #e41010b3;
}

.toast-app .img-toast {
    width: 50px;
    height: 50px;
    float: left;
    padding-top: 16px;
    padding-bottom: 16px;
    box-sizing: border-box;
    background-color: #2fae2f;
    color: #fff;
}

.toast-app.success .img-toast {
    background-color: #2fae2f;
}

.toast-app.info .img-toast {
    background-color: #2f86ae;
}

.toast-app.error .img-toast {
    background-color: #ae2f2f;
}

.toast-app .desc-toast {
    color: #fff;
    padding: 16px;
    overflow: hidden;
    white-space: nowrap;
}

.toast-app {
    overflow: hidden;
}

.toast-app .desc-toast {
    opacity: 0.8;
    background-color: green;
}

.toast-app .desc-toast.error {
    opacity: 0.8;
    background-color: #ae2f2f;
}

.toast-app.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 2s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes expand {
    from {
        min-width: 50px;
    }

    to {
        min-width: 350px;
    }
}

@keyframes expand {
    from {
        min-width: 50px;
    }

    to {
        min-width: 350px;
    }
}

@-webkit-keyframes stay {
    from {
        min-width: 350px;
    }

    to {
        min-width: 350px;
    }
}

@keyframes stay {
    from {
        min-width: 350px;
    }

    to {
        min-width: 350px;
    }
}

@-webkit-keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@keyframes shrink {
    from {
        min-width: 350px;
    }

    to {
        min-width: 50px;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}

.md-form label.active {
    transform: translateY(-117%) !important;
}

.md-form label {
    transform: translateY(-117%) !important;
}

.md-form.input-group label {
    top: 11px !important;
}

.cycle-label {
    padding-right: 15px;
    border-right: 1px solid #a1a1a1;
    color: gray;
}

.stage-label {
    padding-left: 15px;
    font-weight: bold;
    color: gray;
}

.btn-session-close {
    color: #CD42A5;
    background-color: #fff;
    text-decoration: none;
    padding: 7px 15px 7px 50px;
    border-radius: 10px;
    font-weight: 500;
    background-image: url("/images/salir.png");
    background-repeat: no-repeat;
    background-size: 20px;
    background-position-y: 6px;
    background-position-x: 18px;
    margin-top: 2px;
    font-size: 14px;
}

.btn-session-close:hover {
    background-image: url("/images/salir-hover.png");
    color: #fff;
    background-color: #CD42A5;
}

/**
* MEDIA QUERY
**/

@media (max-width: 576px) {
    header .logo-jalisco-small {
        float: right;
    }
}

@media only screen and (min-device-width: 375px) and (max-device-width: 667px) {
    #pagina-home-info .col-header-titulo {
        margin-bottom: 30px !important;
    }

    #pagina-home-info .preguntas-palabra {
        display: inline !important;
    }
}

@media (max-width: 834px) {
    header .logo-jalisco-small {
        float: right;
    }

    #barra-lateral .icono-header {
        padding: 20px !important;
    }

    #barra-lateral .ul-menu a.list-item {
        padding-left: 25px !important;
    }

    #barra-lateral .icono-footer {
        max-width: 149px !important;
    }

    #barra-lateral .icono-footer .texto h4 {
        font-size: 6px !important;
    }

    #barra-contenido .col-cerrar-cont {
        padding: 0px !important;
        margin-left: -40px;
        margin-right: 10px;
    }

    #barra-contenido .col-cerrar-cont #dropdownExit .texts {
        width: 70px !important;
    }

    #barra-contenido .col-cerrar-cont #dropdownExit .image {
        padding-top: 7px;
        width: 30px !important;
    }

    #barra-contenido .col-logo-cont {
        padding: 0px 0px 0px 10px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

.login-failed {
    font-size: 80%;
    color: #dc3545;
    font-weight: bold;
}

.text-align-center {
    text-align: center;
}

body {
    font-family: 'Nexa', sans-serif !important;
    height: 100vh;
}

.app-h-50 {
    max-height: 50%;
    height: 50vh;
}

.background-img {
    background-image: url("/images/portada.png");
    background-size: cover;
}

.app-bg-primary {
    background-color: #CD42A5;
    color: #ffffff;
}

.container-second {
    position: absolute;
    display: flex;
    min-height: 100%;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.container-second .center-box {
    border-radius: 15px;
    background-color: white;
    width: 90%;
    max-width: 370px;
    padding-left: 40px;
    padding-right: 40px;
    margin-top: -108px;
    padding-top: 40px;
    min-height: 443px;
}

.login-footer {
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .container-second .center-box {
        padding: 30px 10px;
        margin-top: -80px;
    }
}

.text-transform-upper,
.text-transform-upper input {
    text-transform: uppercase !important;
}

.background-secondary {
    background-color: #C4A0D8;
}

.background-third {
    background-color: #FF8300;
}

.app-modal-lg {
    max-width: 90%;
}

.app-modal-lg .modal-body {
    height: 700px;
    overflow: auto;
    overflow-x: hidden;
}

.app-modal-lg .modal-content .modal-header {
    padding-left: 50px;
}

#barra-lateral .icono-header {
    background-color: #CD42A5;
    padding: 19px 50px;
    height: 80px;
    text-align: center;
}

#barra-lateral .icono-header img {
    width: 100%;
    max-width: 150px;
    height: auto;
}

#barra-lateral .ul-menu li img {
    width: 30px;
}

#barra-lateral .icono-footer {
    position: fixed;
    bottom: 0px;
    max-width: 249px;
}

#barra-lateral .icono-footer .imagen {
    width: 100%;
    text-align: center;
}

#barra-lateral .icono-footer .imagen img {
    width: 50%;
    height: auto;
}

#barra-lateral .icono-footer .cont-barra {
    width: 100%;
    text-align: center;
    padding-left: 20%;
}

#barra-lateral .icono-footer .cont-barra .barra {
    margin-top: 10px;
    height: 1px;
    border: 1px solid white;
    width: 80%;
}

#barra-lateral .icono-footer .texto {
    margin: 20px 0px;
    text-align: center;
    width: 100%;
}

#barra-lateral .icono-footer .texto a.politics-priv {
    color: white;
    font-size: 13px;
    font-weight: bold;
}

#barra-lateral .icono-footer .texto h4 {
    font-size: 10px;
    color: white;
    margin: 15px 0 0 0;
}

#barra-contenido {
    padding: 0;
}

#barra-contenido .header-barra {
    z-index: 1;
}

#barra-contenido .header-barra .col-ciclos-cont {
    display: flex;
    align-items: center;
    text-align: center;
}

#barra-contenido .header-barra .col-cerrar-cont {
    padding: 0px 15px 0px 0px;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit {
    float: right;
    margin-right: 0px;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit a.btn {
    width: 100%;
    padding: 0px 15px 0px 0px;
    box-shadow: none;
    margin: 0px;
    background-color: white;
    border: none;
    -webkit-appearance: none;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit a.btn .texts {
    float: left;
    text-align: right;
    width: 140px;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit a.btn .texts h5 {
    font-size: 12px;
    margin: 8px 0px 6px 0px;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 16px;
    max-height: 10px;
    max-width: 140px;
    white-space: nowrap;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit a.btn .texts h6 {
    font-size: 10px;
    color: gray;
    margin: 0px;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit a.btn .image {
    float: left;
    margin-left: 10px;
    width: 40px;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit a.btn .image img {
    width: 100%;
    height: auto;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit a.btn::after {
    font-family: "Font Awesome 5 Free";
    content: "\F107";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    border: none;
    position: absolute;
    top: 10px;
    right: 0px;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit .dropdown-menu {
    padding: 0px;
    width: 100%;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit .dropdown-menu a.dropdown-item {
    padding-left: 15px;
}

#barra-contenido .header-barra .col-cerrar-cont .dropdown-exit .dropdown-menu a.dropdown-item i.fas {
    margin-right: 7px;
}

#barra-contenido .header-barra .col-logo-cont {
    border-left: 1px solid gray;
}

#barra-contenido .contenido-clclo-etapa {
    position: fixed;
    top: 70px;
    z-index: 1029;
    background-color: #CD42A5 !important;
}

#barra-contenido .contenido-clclo-etapa .row .contenedor-ciclo-etapa {
    text-align: center;
    width: 100%;
}

#barra-contenido .contenido-clclo-etapa .row .contenedor-ciclo-etapa .cycle-label,
#barra-contenido .contenido-clclo-etapa .row .contenedor-ciclo-etapa .stage-label {
    color: white;
}

#barra-contenido .status-config {
    font-size: 15px;
    margin-left: 30px;
}

#barra-contenido .status-config .status {
    margin-left: 10px;
    display: inline-block;
    font-weight: bold;
}

#barra-contenido .status-config .status .fas {
    color: #FF8300;
}

#barra-contenido .status-config .status .fas.closed {
    color: #676767;
}

@media (max-width: 793px) {
    #barra-contenido .header-barra {
        font-size: 10px !important;
    }

    #barra-contenido .contenido-clclo-etapa {
        height: 24px;
    }
}

@media (max-width: 1095px) {
    #barra-contenido .header-barra {
        font-size: 14px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1135px) {
    #barra-contenido .header-barra {
        padding-top: 10px !important;
    }
}

.select2-container .select2-selection__arrow {
    padding-top: 2px;
    font-size: 25px;
}

.select2-container .select2-dropdown {
    top: -65px;
}

.select2-container .select2-dropdown input.select2-search__field {
    background-image: url("/images/triangle_icon.png");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: right;
}

#barra-lateral-phone {
    padding: 0px;
}

#barra-lateral-phone .navbar {
    top: 0;
    border-width: 0 0 1px;
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030;
    background-color: #CD42A5 !important;
}

#barra-lateral-phone .navbar .imagen-logo {
    width: 113px;
}

#barra-lateral-phone .navbar a {
    color: white;
    font-weight: bold;
}

#barra-lateral-phone .navbar .nav-item.active a {
    color: #CD42A5 !important;
    background-color: white !important;
}

.app-modal-lg-student .modal-body {
    height: auto !important;
}

button, input, optgroup, select, textarea {
    font-family: "Nexa", sans-serif !important;
}