:root {
  --PRI: #00961c;
  --PAN: #1364d3;
  --PRD: #eee727;
  --PT: #f11112;
  --PVEM: #876e36;
  --MC: #df690e;
  --PANAL: #70c7da;
  --RED: #b402c3;
  --IND2: #fbaa01;
  --NULOS: #cbbbbb;
  --VERDE1:#009900;
  --VERDE2: #00e600;
  --VERDE3: #99ff99;
  --VERDE4: #e6ffe6;
     
}
@import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');
body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.4;
    color:#000;
    background-color: #f1f1f1;
    /* font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; */
    font-family: 'Open Sans', sans-serif;
    }

a {
    color: #5e5e5e;
    text-decoration: none;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
a:hover {
    color: #c9c9c9;
    text-decoration: none;
    background-color: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.btn {
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 0.84rem 1.14rem;
}
.login-principal {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #f5f5f5;
  }
  .fondogris {
    background-color: #f5f5f5;
  }
/*# sourceMappingURL=bootstrap.css.map */
.form-signin {
    width: 100%;
    max-width: 420px;
    padding: 15px;
    margin: auto;
  }
  
  .form-label-group {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .form-label-group > input,
  .form-label-group > label {
    height: 3.125rem;
    padding: .75rem;
  }
  
  .form-label-group > label {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    margin-bottom: 0; /* Override default `<label>` margin */
    line-height: 1.5;
    color: #495057;
    pointer-events: none;
    cursor: text; /* Match the input under the label */
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: all .1s ease-in-out;
  }
  
  .form-label-group input::-webkit-input-placeholder {
    color: transparent;
  }
  
  .form-label-group input:-ms-input-placeholder {
    color: transparent;
  }
  
  .form-label-group input::-ms-input-placeholder {
    color: transparent;
  }
  
  .form-label-group input::-moz-placeholder {
    color: transparent;
  }
  
  .form-label-group input::placeholder {
    color: transparent;
  }
  
  .form-label-group input:not(:placeholder-shown) {
    padding-top: 1.25rem;
    padding-bottom: .25rem;
  }
  
  .form-label-group input:not(:placeholder-shown) ~ label {
    padding-top: .25rem;
    padding-bottom: .25rem;
    font-size: 12px;
    color: #777;
  }
  
  /* Fallback for Edge
  -------------------------------------------------- */
  @supports (-ms-ime-align: auto) {
    .form-label-group > label {
      display: none;
    }
    .form-label-group input::-ms-input-placeholder {
      color: #777;
    }
  }
  
  /* Fallback for IE
  -------------------------------------------------- */
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .form-label-group > label {
      display: none;
    }
    .form-label-group input:-ms-input-placeholder {
      color: #777;
    }
  }
  


/******************************************************************/
.form-radio2
{
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     display: inline-block;
     position: relative;
     background-color: #c0c0c0;
     color: #666;
     top: 5px;
     height: 20px;
     width: 20px;
     border: 0;
     border-radius: 50px;
     cursor: pointer;     
     /* border: solid 1px #d8d8d8; */
     outline: none;
     -webkit-transition: all 0.5s ease-in-out;
     -moz-transition: all 0.5s ease-in-out;
     -o-transition: all 0.5s ease-in-out;
     transition: all 0.5s ease-in-out;
}
.form-radio2:checked::before
{
     position: absolute;
     font: 14px/1 'Fira Sans', sans-serif;
     left: 6px;
     top: 2px;
     content: '\02143';
     transform: rotate(40deg);
     -webkit-transition: all 0.5s ease-in-out;
     -moz-transition: all 0.5s ease-in-out;
     -o-transition: all 0.5s ease-in-out;
     transition: all 0.5s ease-in-out;
}
.form-radio2:hover
{
    background-color: #e3e3e3;
     -webkit-transition: all 0.5s ease-in-out;
     -moz-transition: all 0.5s ease-in-out;
     -o-transition: all 0.5s ease-in-out;
     transition: all 0.5s ease-in-out;
}
.form-radio2:checked
{
     background-color: #28a745;
     -webkit-transition: all 0.1s ease-in-out;
     -moz-transition: all 0.1s ease-in-out;
     -o-transition: all 0.1s ease-in-out;
     transition: all 0.1s ease-in-out;
     color: #fff;
}
/******************************************************/
.btn-lg2 > .btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.3rem;
    
  }
.card {
    border:none;
    
}
.navbar-brand {
    font-size: 1.7rem;
}
.sombra{
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.16), 0 2px 10px 0 rgba(0,0,0,.12);
  margin: 0 16px;
}

.card-body {
    
    padding: 0;
}
.table th, .table td {
    padding: 0.30rem;
}
.oscuro {
    background-color: #343a40;
    color: #fff;

}
.card-text {
    font-weight: bold;
    color:#343a40;
}
.form-control {
    font-size: 1.1em;
}
.alert {
    
    padding: .5em 0 0 0 ;
    margin: 0;
}
#box-date {
    display: inline-block;
  }
#box-time {
    display: inline-block;
}
.navbar {
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}
.btn-danger {
  background-color: #ff012c;
}
.tile-stats.tile-neon-red {
  background: #ff012c;
}
.tile-stats.tile-green {
  background: #00a65a;
}
.tile-stats {
  position: relative;
  display: block;
  background: #303641;
  padding: 5px;
  margin-bottom: 12px;
  overflow: hidden;
  /* border-radius: 5px; */
  text-align: center;
}
.tile-stats .icon {
  color: rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 5px;
  bottom: 5px;
  z-index: 1;
}
.tile-stats .num {
  font-size: 28px;
  font-weight: bold;
}
.tile-stats .num, .tile-stats h6, .tile-stats p {
  position: relative;
  color: #fff;
  z-index: 5;
  margin: 0;
  padding: 0;
}
.blockquote {
  padding: .5rem 1rem;
  border-left: .25rem solid #ff012c;
}
.color-pri {
    background-color: #00961c;
}
.color-pan {
  background-color: #1364d3;
}
.color-prd {
  background-color: #eee727;
}
.color-pt {
  background-color: #f11112;
}
.color-pvem {
  background-color: #876e36;
}
.color-mc {
  background-color: #df690e;
}
.color-panal {
  background-color: #70c7da;
}
.color-red {
  background-color: #b402c3;
}
.color-ind2 {
  background-color: #fbaa01;
}
.color-nulos {
  background-color: #cbbbbb;
}
.color-verde1 {
  background-color: #009900;
}
.color-verde2 {
  background-color: #00e600;
}
.color-verde3 {
  background-color: #99ff99;
  color:#000000;
}
.color-verde4 {
  background-color: #e6ffe6;
  color:#000000;
}



.badge {
  box-shadow: none;
  padding: 7px;
}

.img-circle {
  border-radius: 50%;
  vertical-align: middle;
}
.card-icon {
  border-radius: 3px;
  background-color: #999;
  padding: 15px;
  margin-top: -30px;
  margin-right: 15px;
  float: left;
}

.card-icon {
  background-color:#00a65a;
}
.card-header-icon i {
  width: 33px;
  text-align: center;
  
}
.navbarpartidos {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  
  
}
#switcher {
  height: 50px;
  padding: 0;
  background: #1a1a1a;
  border-bottom: 1px solid #353535;
  z-index: 99999;
  position: fixed;
  width: 100%;
  bottom: 0;
}
.responsive {
  float: left;
  margin-left: 14px;
  padding: 7px 0;
  margin-top: 3px;
}
.responsive a.active, .responsive a:hover {
  opacity: 1;
  color: #fff;
}
.responsive a.desktop {
  background: url('../img/devices.png') no-repeat 0 0;
  width: 20px;
  height: 19px;
}
.responsive a {
  opacity: 0.5;
  float: left;
  margin: 0 6px;
}
.responsive a.tabletlandscape {
  background: url('../img/devices.png') no-repeat -30px -3px;
  width: 17px;
  height: 14px;
  margin-top: 2px;
}
.responsive a.tabletportrait {
  background: url(../img/devices.png) no-repeat -59px -1px;
  width: 14px;
  height: 17px;
  margin-top: 1px;
}
.responsive a.mobilelandscape {
  background: url(../img/devices.png) no-repeat -87px -4px;
  width: 14px;
  height: 11px;
  margin-top: 5px;
}
.responsive a.mobileportrait {
  background: url(../img/devices.png) no-repeat -117px -3px;
  width: 11px;
  height: 14px;
  margin-top: 3px;
}
#iframe {
  margin: 0 auto;
  display: block;
  padding-bottom: 51px;
  height: 100%;
  width: 100%;
  transition: all 0.4s;
}

.icon-big.icon-primary {
  background: #177dff;
  border-radius: 5px;
  color: #fff;
}
.icon-big {
  width: 100%;
  height: 100%;
  font-size: 2.2em;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar {
  width: 4rem;
  height: 4rem;
  position: relative;
  display: inline-block;
  margin-right: -10px;
  
}
.avatar-2 {
  width: 3rem;
  height: 3rem;
  position: relative;
  display: inline-block;
}
.avatar .avatar-title {
  font-size: 18px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.avatar-title {
  display: flex;
  width: 100%;
  height: 100%;
  color: #fff;
  
  align-items: center;
  justify-content: center;
}
.avatar.avatar-away::before, .avatar.avatar-offline::before, .avatar.avatar-online::before {
  border-width: 3px;
}

.avatar-online::before {
  background-color: #35cd3a;
}
.avatar-offline::before {
  background-color: red;
}
.avatar-away::before, .avatar-offline::before, .avatar-online::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 30%;
  height: 30%;
  content: '';
  border: 3px solid #fff;
  border-radius: 50%;
}
.img-thumbnail-padd {
  padding: 0;
}
.dtHorizontalExampleWrapper {
  max-width: 600px;
  margin: 0 auto;
  }
  #dtHorizontalExample th, td {
  white-space: nowrap;
  }
  
  table.dataTable thead .sorting:after,
  table.dataTable thead .sorting:before,
  table.dataTable thead .sorting_asc:after,
  table.dataTable thead .sorting_asc:before,
  table.dataTable thead .sorting_asc_disabled:after,
  table.dataTable thead .sorting_asc_disabled:before,
  table.dataTable thead .sorting_desc:after,
  table.dataTable thead .sorting_desc:before,
  table.dataTable thead .sorting_desc_disabled:after,
  table.dataTable thead .sorting_desc_disabled:before {
  bottom: .5em;
  }
  .siguiente {
    color: green;
  }
  .sinsombra {
    box-shadow:  none;
  }
.abajo {
  margin-bottom: 0;
}

.navbar-light {
  background-color: #e0e0e0!important;
}
table td {
  font-size: 1em;
}