@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
body { font-family: 'Roboto Condensed', sans-serif; background: #f2f2f2; font-size: 14px; }
label {
    display: inline-block !important;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    text-align: left;
}
.custom-file-label:lang(es):after {
    content: "Seleccionar";
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.btn {
    color: #fff !important;
}
.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da;
}
.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc;
}
.pace {
    -webkit-pointer-events: none;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}
.pace-inactive {
    display: none;
}
.pace .pace-progress {
    background: #e82020;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 100%;
    width: 100%;
    height: 2px;
}
.pace .pace-progress-inner {
    display: block;
    position: absolute;
    right: 0px;
    width: 100px;
    height: 100%;
    box-shadow: 0 0 10px #e82020, 0 0 5px #e82020;
    opacity: 1.0;
    -webkit-transform: rotate(3deg) translate(0px, -4px);
    -moz-transform: rotate(3deg) translate(0px, -4px);
    -ms-transform: rotate(3deg) translate(0px, -4px);
    -o-transform: rotate(3deg) translate(0px, -4px);
    transform: rotate(3deg) translate(0px, -4px);
}
.pace .pace-activity {
    display: block;
    position: fixed;
    z-index: 2000;
    top: 15px;
    right: 15px;
    width: 14px;
    height: 14px;
    border: solid 2px transparent;
    border-top-color: #e82020;
    border-left-color: #e82020;
    border-radius: 10px;
    -webkit-animation: pace-spinner 400ms linear infinite;
    -moz-animation: pace-spinner 400ms linear infinite;
    -ms-animation: pace-spinner 400ms linear infinite;
    -o-animation: pace-spinner 400ms linear infinite;
    animation: pace-spinner 400ms linear infinite;
}
@-webkit-keyframes pace-spinner {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-moz-keyframes pace-spinner {
    0% { -moz-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -moz-transform: rotate(360deg); transform: rotate(360deg); }
}
@-o-keyframes pace-spinner {
    0% { -o-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -o-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes pace-spinner {
    0% { -ms-transform: rotate(0deg); transform: rotate(0deg); }
    100% { -ms-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes pace-spinner {
    0% { transform: rotate(0deg); transform: rotate(0deg); }
    100% { transform: rotate(360deg); transform: rotate(360deg); }
}
.sidenav {
    height: 100%;
    width: 210px;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #f2f2f2;
    overflow-x: hidden;
    -webkit-box-shadow: 3px 0px 10px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 0px 10px -5px rgba(0,0,0,0.75);
    box-shadow: 3px 0px 10px -5px rgba(0,0,0,0.75);
}
.sidenav a {
    padding: 6px 8px 6px 16px;
    text-decoration: none;
    color: #818181;
    display: block;
    border-bottom: 1px #ddd solid;
    transition: all .4s;
}
.sidenav a:hover {
    color: white;
    background-color: #e82020;
    -webkit-box-shadow: 3px 0px 10px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 3px 0px 10px -1px rgba(0,0,0,0.75);
    box-shadow: 3px 0px 10px -1px rgba(0,0,0,0.75);
}
.main {
    margin-left: 210px; 
    padding: 0px 10px;
}
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
.footter{
    position: absolute;
    bottom: 0px;
    font-size: 10px;
    margin: 12px;
}
.subtitle{
    margin: 20px 0;
    font-size: 11px;
}
.session {
    color: white;
}
.session a{
    color: white;
    background-color: #e82020;
}
.session .logout{
    background-color: black;
}
.header{
    border-bottom: 5px solid black;
    height: 170px;
    text-align: center;
    padding: 20px;
}
.active{}
.sidenav a.active {
    background: #e82020;
    color: white;
}
.panel{
    border-radius: 0;
}
.contenedor{
    margin: 0 20px;
}
.user{
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.required:after {
    content: "*";
    color: red;
}

.radiolist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.radiolist li {
    display: inline-flex;
    width: 30%;
    margin: 20px auto;
}
input[type=radio].radiotype + label {
    border: 1px solid #BBB;
    border-radius: 3px;
    padding: 15px;
    font-size: 20px;
    color: #999;
    text-align: center;
    display: block;
    cursor: pointer;
    width: 100%;
}
input[type=radio].radiotype + label:hover {
    border-color: #46b8da;
    color: #46b8da;
}
input[type=radio].radiotype:checked + label {
    background: #5bc0de;
    border-color: #46b8da;
    color: #FFF;
}

.bootstrap-select {
    width: 100% !important;
}
.bootstrap-select > .dropdown-toggle {
    background: #FFF;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    color: inherit !important;
}
.dropdown-item.active, .dropdown-item:active {
    background-color: #5bc0de;
}

#autocomplete .list-group-item {
    cursor: pointer;
    padding: .4rem .8rem;
}
#autocomplete .list-group-item:hover {
    background: #eee;
}