.title_block{
    text-transform:uppercase;
    font-size:23px;
    cursor:default;
    -moz-user-select: none;
    -webkit-user-select: none;
}

::-webkit-scrollbar{ /* 1 */ 
    width: 6px;
    height: 6px;
    background:rgba(255,255,255,0.0);
}
::-webkit-scrollbar-button{  /* 2 */   
}
::-webkit-scrollbar-track{  /* 3 */  
}
::-webkit-scrollbar-track-piece{  /* 4 */   
}
::-webkit-scrollbar-thumb{  /* 5 */ 
    background-color: rgb(85,175,50);
    border-radius:4px;
}
::-webkit-scrollbar-corner{  /* 6 */
    background-color: rgba(0,0,0,0);
}
::-webkit-resizer{  /* 7 */  
}

@media only screen and (max-width: 768px){  
    .title_block{
        font-size: 19px;
    }
}