.sh{
    box-shadow: 2px 2px 4px black;
}

.sh-l{
    box-shadow: 1px 1px 1px hsl(0deg 0% 50%);
}

.sh-d{
    box-shadow: 2px 0px 4px black;
}

.no-text{
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -khtml-user-select: none !important;
    -ms-user-select:none !important;
    user-select:none !important;
}

/*Scrolls*/
/* Tamaño del scroll */
.scrpe::-webkit-scrollbar {
    width: 4px;
  }
  
    /* Estilos barra (thumb) de scroll */
  .scrpe::-webkit-scrollbar-thumb {
    background: hsl(0,0%,80%);
    border-radius: 0px;
  }
  
  .scrpe::-webkit-scrollbar-thumb:active {
    background-color: #999999;
  }
  
  .scrpe::-webkit-scrollbar-thumb:hover {
    background: hsl(207deg,90%,54%);
    box-shadow: 0 0 2px 1px hsl(207deg,90%,54%);
  }
  
    /* Estilos track de scroll */
  .scrpe::-webkit-scrollbar-track {
    background: hsl(0,0%,100%);
    border-radius: 0px;
  }
  
  .scrpe::-webkit-scrollbar-track:hover, 
  .scrpe::-webkit-scrollbar-track:active {
    background: hsl(207deg,90%,83%);
  }