*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    max-width: 1600px;
    width: 100%;
    margin: auto;
}
.bg-pegasus{
    background: #005ba1;
    color: aliceblue;
}

button:hover{
    background: #007bff;
}
.textoMedio{
    font-size: 12px;
}
.container{
    padding: 0;
    margin: auto;
}
table tbody{
    height: 300px;
    overflow:hidden;  
}
.exportExcel{
    padding: 5px;
    border: 1px solid grey;
    margin: 5px;
    cursor: pointer;
  }
  
 #tipo-actividades{
     position: relative;
 } 

/*  LOADER */

.loader{
    z-index: 10;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    color: #005ba1;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loader i{
      animation: spin 1.4s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.overlay{
    opacity: 1.01;
    display: block;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 3002;
}

.loader-page {
    position: fixed;
    z-index: 25000;
    background: rgb(255, 255, 255, .5);
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:all .3s ease;
  }
  .loader-page::before {
    content: "";
    position: absolute;
    border: 2px solid rgb(50, 150, 176);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176,0);
    border-top: 2px solid rgba(50, 150, 176,0);
    animation: rotarload 0.5s linear infinite;
    transform: rotate(0deg);
  }
  @keyframes rotarload {
      0%   {transform: rotate(0deg)}
      100% {transform: rotate(360deg)}
  }
  .loader-page::after {
    content: "";
    position: absolute;
    border: 2px solid rgba(50, 150, 176,.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-sizing: border-box;
    border-left: 2px solid rgba(50, 150, 176, 0);
    border-top: 2px solid rgba(50, 150, 176, 0);
    animation: rotarload 1s ease-out infinite;
    transform: rotate(0deg);
  }