/* ridefinisco le scrollbar per renderle più eleganti */
::-webkit-scrollbar {
    width: 14px;
    height: 14px;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

::-webkit-scrollbar-corner {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    height: 6px;
    border: 4px solid transparent;
    background-clip: padding-box;
    border-radius: 7px;
    background-color: rgba(0,0,0,.2);
}
/* attivo le scrollbar */
.pvtContainer .frame-content-container {
  overflow: auto !important;
}
