

/* inicio - estilo da barra de rolagem ****************************/
::-webkit-scrollbar {
    width:12px; height:12px; box-shadow: 0px 1px 1px 1px rgb(0, 0, 0,.1);
}
     
/*fundo da barra ***********/
::-webkit-scrollbar-track {
    background:rgba(213, 234, 247, 0.4);
}
     
/*cor da barra ********************/
::-webkit-scrollbar-thumb {
    background: rgba(15, 72, 107, 0.6);  
    border-radius: 3px !important; 
    border:1px solid rgb(0,0,0,.1);
    box-shadow:rgb(0,0,0,.3) !important;
}
::-webkit-scrollbar-thumb:active{
    background: rgba(7, 66, 102, 0.849); 
}
/* fim - estilo da barra de rolagem ****************************/

/***ao passar o mouse aumenta *********
-webkit-transform: scale(1.1);
-ms-transform: scale(1.1);
 transform: scale(1.1);
/***/

.icon-box:hover{
    -webkit-transform: scale(1.1) !important;
    -ms-transform: scale(1.1) !important;
    transform: scale(1.1) !important;

    transition: 0.6s ease all;
}