/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) { 

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

label, h5{
    font-weight: 500;
}

html {
  font-size: 1rem;
}

/********** LOGIN **********/
.limiter-login {
    width: 100%;
    margin: 0 auto;
    background-color: #fff; /* For browsers that do not support gradients */
    /*background-color: #034489;  For browsers that do not support gradients */
    background-image: linear-gradient(#dfdfdf,#fff);    
}

.container-login {
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.wrap-login {
    width: 560px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    text-align: center;
}
/********** LOGIN **********/


/********** FOOTER **********/
.limiter-footer {
    /*background-color: #9a1911;*/
    background-color: #cfcfcf;
    
}

.container-footer {   
    min-height: 20vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
    margin-top: 20px;
}
/********** FOOTER **********/


/********** HEADER MENU **********/
/*.menu-background-color{
    background-color: #034489;  
}*/

/*.menu-path{
    background-color: #034489;  
    color: #fff;
}*/
/********** HEADER MENU **********/


/********** SIDEBAR **********/
/* Fixed sidenav, full height */
.sidenav {
    height: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn, .dismiss-btn, .home-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    /*font-size: 20px;*/
    font-size: 1.2rem;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.hyperlink {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    /*font-size: 20px;*/
    font-size: 1.2rem;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover, .dismiss-btn:hover, .home-btn:hover{
    color: #f1f1f1;
}

/*.home-btn:hover {
    background-color: #034489;
    color: white;
}*/

/* Add an active class to the active dropdown button */
.active-dropdown {
    background-color: #9a1911;
    color: white;
    border-color: red!important;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}

/* Optional: Style the arrow circle left  icon */
.fa-arrow-circle-left {
    float: right;
    padding-right: 8px;
}

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 2;
    display: none;  
}
/********** SIDEBAR **********/

/********** LOADER **********/
.spinner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #dc354547;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/********** LOADER **********/

/********** MAIN **********/
.limiter-main {
    width: 100%;
    margin: 0 auto;
}

.container-main{
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    /*padding: 15px;*/
    padding-top: 90px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}

.container-main-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding-top: 90px;
}


.wrap-main {
    /*width: 560px;*/
    height: fit-content;
    /*background: #e0e0e0;*/
    background: #f5f5f7;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.table-responsive{
    padding: 20px;
    background: #f5f5f7;
    border-radius: 10px;
    height: fit-content;
}
/********** MAIN **********/


/********** FLOATING BUTTONS **********/
.btn-floating.btn-sm {
    width: 36.15385px;
    height: 36.15385px;
}

.btn-floating {
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    position: relative;
    z-index: 1;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    transition: all .2s ease-in-out;
    /*margin: 10px;*/
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    /*width: 47px;*/
    /*height: 47px;*/
}

.btn-floating.btn-sm i {
    font-size: .96154rem;
    line-height: 36.15385px;
}

.btn-floating i {
    display: inline-block;
    width: inherit;
    text-align: center;
    color: #ffffff;
}
/********** FLOATING BUTTONS **********/


/********** BUTTONS **********/
.btn-a52c2c {
    background-color: #9a1911;
    font-weight: bold;
    color: #ffffff;
}

.btn-a52c2c:hover {
    color: #ffffff;
}
/********** BUTTONS **********/


/********** FORM **********/
.card-body {
    background-color: #d3d3d3;
}
/********** FORM **********/


/********** NAV **********/
.nav-pills .nav-link.active {
    background-color: #9a1911;
}


.nav-pills .nav-link {
    color: #b77077;
}
/********** NAV **********/


#opcion1, #opcion2, #opcion3, #opcion4{
    margin-left: -3%;
}


button:focus {
    outline: dotted 0px; 
    outline: -webkit-focus-ring-color auto 0px; 
}

.btn-primary {
    color: #fff;
    background-color: #960707 !important;
}

.list-item {
    list-style:lower-alpha;
    list-style-position: outside;
    margin-right: 100px;
}

/********** SIDEBAR **********/
/* Fixed sidenav, full height */
.sidenav {
    height: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    padding-top: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn, .dismiss-btn, .home-btn {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

.hyperlink {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover, .dismiss-btn:hover, .home-btn:hover{
    color: #f1f1f1;
}

/*.home-btn:hover {
    background-color: #034489;
    color: white;
}*/

/* Add an active class to the active dropdown button */
.active-dropdown {
    background-color: #a52c2c;
    color: white;
    border-color: red!important;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
    display: none;
    background-color: #262626;
    padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
    float: right;
    padding-right: 8px;
}

/* Optional: Style the arrow circle left  icon */
.fa-arrow-circle-left {
    float: right;
    padding-right: 8px;
}

.overlay{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 2;
    display: none;  
}
/********** SIDEBAR **********/

/********** LOADER **********/
.spinner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #dc354547;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/********** LOADER **********/

/********** MAIN **********/
.limiter-main {
    width: 100%;
    margin: 0 auto;
}

.container-main{
    min-height: 80vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    /*padding: 15px;*/
    padding-top: 90px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;
}

.container-main-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding-top: 90px;
}


.wrap-main {
    /*width: 560px;*/
    height: fit-content;
    /*background: #e0e0e0;*/
    background: #f5f5f7;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.table-responsive{
    padding: 20px;
    background: #f5f5f7;
    border-radius: 10px;
    height: fit-content;
}
/********** MAIN **********/


/********** FLOATING BUTTONS **********/
.btn-floating.btn-sm {
    width: 36.15385px;
    height: 36.15385px;
}

.btn-floating {
    box-shadow: 0 5px 11px 0 rgba(0,0,0,.18), 0 4px 15px 0 rgba(0,0,0,.15);
    position: relative;
    z-index: 1;
    vertical-align: middle;
    display: inline-block;
    overflow: hidden;
    transition: all .2s ease-in-out;
    /*margin: 10px;*/
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    /*width: 47px;*/
    /*height: 47px;*/
}

.btn-floating.btn-sm i {
    font-size: .96154rem;
    line-height: 36.15385px;
}

.btn-floating i {
    display: inline-block;
    width: inherit;
    text-align: center;
    color: #ffffff;
}
/********** FLOATING BUTTONS **********/


/********** BUTTONS **********/
.btn-a52c2c {
    background-color: #a52c2c;
    font-weight: bold;
    color: #ffffff;
}

.btn-a52c2c:hover {
    color: #ffffff;
}
/********** BUTTONS **********/


/********** FORM **********/
.card-body {
    background-color: #d3d3d3;
}
/********** FORM **********/


/********** NAV **********/
/*.nav-pills .nav-link.active {
    background-color: #a52c2c;
}

.nav-pills .nav-link {
    color: #b77077;
}*/

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #765e63;
    text-align: center;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #989293;
    border-color: #989293;
}

/********** NAV **********/


#opcion1, #opcion2, #opcion3, #opcion4{
    margin-left: -3%;
}


button:focus {
    outline: dotted 0px; 
    outline: -webkit-focus-ring-color auto 0px; 
}

.btn-primary {
    color: #fff;
    background-color: #960707 !important;
}


.btn-anterior-examen{
    position: fixed;
    left: 0%; 
    top: 55%;
    background-color: #0071BC;
    color: #FFFFFF;
    height: 0%;
    width: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
}

.btn-siguiente-examen{
    position: fixed;
    right: 0%; 
    top: 55%;
    background-color:#0071BC;
    color: #FFFFFF;
    height: 0%;
    width: 6%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
}

ul{
    color: #564344; 
}

a{
    color: #2F3291;  
}

a:hover{
    color: #2F3291; 
}

.a-azul{
    color: #2F3291;  
    a:hover #2F3291;
}

#pills-tab li.nav-item:not(.noResp){
    color: #00b2b9;
}

#pills-tab2 li.nav-item:not(.noResp){
    color: #00b2b9;
}

#pills-tab li.hidden{
    display:none;
}



.md-dialog-is-showing md-dialog{
    min-width: 75%;
}

input[type='radio']:after {
    width: 1.2em;
    height: 1.2em;
    border-radius: 1.2em;
    top: -7px;
    left: -4px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}
input[type='radio']:checked:after {
    width: 1.2em;
    height: 1.2em;
    border-radius: 1.2em;
    top: -7px;
    left: -4px;
    position: relative;
    background-color: #9e545f;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 2px solid white;
}

input[type='checkbox'] {
    
    
    /*background: gray;*/
    width: 1em;
    height: 1em;
    top: 0px;
    left: 0px;
    position: relative;
    background-color: #d1d3d1;
    content: '';
    /* display: inline-block; */
    visibility: visible;
    border: 0px solid white;
    font-weight: bold;
}

.btn-termina{
    background-color: #989293;
    text-transform: capitalize;
    padding: 5px 0px;
    width: 80px;
    font-size: 0.69rem !important;
    
}

.btn{
    /*text-transform: lowercase;*/
    text-transform: capitalize;
    font-family: Arial;
    
}

.btn:first-letter{
    text-transform: capitalize;
    font-family: Arial;
}

.lista-reactivos{
    background-color: #D7D7D7; 
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px;
}

.lista-reactivos-actividad{

    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    font-size: 0.8em;
    color: #fff;
    font-weight: bolder;
}

.contenido-examen-actividad{
    margin-top: 15%;
}

.contenido-examen{
    /*display: inline-block;*/
    position: relative;
    margin-top: 1%;
    margin-left: 0%;
    background-color: #FFFFFF;
    /*padding: 5%;*/
    height: auto;
    width: 100%;
    font-size: 1.1em;
}

.center{
    margin-left: auto;
    margin-right: auto;
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
}

.margen-superior{
    margin-top: 5%;
}

.margen-relleno{
    margin-top: 40%;
}

.container1{
    width: 100%;
    height: 100%;
    position:relative;
}

.contenedor-avatar1{
    background-color: white;
}

.imagen-inicio {

    top:15%;
    left:80%;
    width: 10%; 
    position:absolute;

}

.cabeza-examen{

    background-color: rgb(166 163 163 / 56%);
    color: #352626e0;
    font-size: 1rem;
    margin: 0px;
}

.btn-instrucciones {
    
    background-color: rgb(125 39 49);
    color: #FFFFFF;
    justify-content: center;
    
}

.btn:hover {
    color: #dfd9da;
    text-decoration: none;
}

.instrucciones-examen{
    /*position: absolute; */
    position: relative;
    margin-top: 3%;
    margin-left: 5%;
    background-color: #FFFFFF;
    padding: 5%;
    height: auto;
    width: 90%;
    /*font-weight: bold;*/
    font-size: 1.1em;
}

body {
    overscroll-behavior: contain;
}

.h-auto{
    height: auto;
    min-height: 100%;
    max-height: 100%;
}

.h-85{
    height: 85% !important;
}

.h-92{
    height: 93% !important;
}



.md-toolbar-tools{
    background-color: #671d27;
}

.md-dialog .md-dialog-content {
    padding: 0px!important;
}

.md-title {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .005em;
    background: #671d27;
    color: white;
}

table.table thead th {
    border-top: none;
    font-size: 1rem;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #989293;
    text-align: center;
}

.md-button.md-default-theme.md-primary, .md-button.md-primary {
    color: rgb(140 75 85);
}

