/* Scroll */
/* Analizar el body:not(.ps) para no afectar al perfect scrollbar*/ 

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #0064ef;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #005ad7;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

body {
    overflow-x: hidden;
}