/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */


 
.thinbar{
    scrollbar-width: thin;
}


.fade-in{
    opacity: 0;
    filter: blur(.25rem);
    animation: fade-in forwards ease-in; 
    animation-duration: 0.75s;
    animation-delay: .25s;
}

.fade-in-slow{
    opacity: 0;
    animation: fade-in forwards;
    animation-duration: 0.75s;
    animation-delay: 0.7s;
}

@keyframes fade-in {
    0%{opacity: 0; filter: blur(.25rem);}
    100%{opacity: 1; filter: blur(0);}
}

.button-depth{
    box-shadow: inset 0 1px 0 hsl(222, 20%, 90%);
    box-shadow: 0 1px 3px hsla(0%, 0%, 0%, 2);
}