div.loader{
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite; 
    position: absolute;
    top: 53%;
    left:47%;
    z-index:20;
}

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

div { text-align: center; }

    #subir{
    position:fixed;
    bottom:0px;
    right:0px;
} 

.navbar {
    padding-top: 12px;
    padding-bottom: 12px;
}

.pisca {

    opacity: 1;
    animation: blink .9s infinite;
  }

  @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
  }

body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
    background-color: #CCCCCC;
}
body::-webkit-scrollbar-button {
    border: 1px #FF0000 dashed;
    color: #CCCCCC;
}
body::-webkit-scrollbar-track {
    background: #CCCCCC;
}
body::-webkit-scrollbar-track-piece {
    background: #CCCCCC;
}
body::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 5px;
}
body::-webkit-scrollbar-corner {
    background: #FF0000;
    border-radius: 5px;
}


/* TOOLPIT */ 

[data-tooltip] {
    position: relative;
    font-weight: bold;
  }
  
  [data-tooltip]:after {
    /* display: none;
    position: absolute;
    top: -5px;
    padding: 5px;
    border-radius: 3px;
    left: calc(100% + 2px);
    content: attr(data-tooltip);
    white-space: nowrap;
    background-color: #0095ff;
    color: White; */
    display: none;
    width: 120px;
    background-color: #613cc080;
    color: #fff;
    text-align: center;
    padding: 5px 5px 5px 5px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
    font-size: 12px;
    content: attr(data-tooltip);
    font-family: sans-serif;
    /* white-space: nowrap; */
  }
  
  [data-tooltip]:hover:after {
    display: block;
  }

  /* TOOLPIT */