.carousel {
    overflow: hidden;
    height: 100%;
    box-shadow: 0 2px 4px rgba(20, 22, 26, .04), 0 8px 20px rgba(20, 22, 26, .07);
}

.inner {
    white-space: nowrap;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    width: 100%;
}

.carousel-item {
    display: inline-block;
    height: 100%;
    vertical-align: top;
    background-color: #FFFFFF;
}

.carousel-item .MuiTypography-root {
    white-space: normal;
}

#root {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    height: 100%;
    width: 100%;
    margin: 0px;
    background-color: #F3F3F1;
    color: #14161A;
    -webkit-font-smoothing: antialiased;
}

:focus-visible {
    outline: 2px solid #1A7F5A;
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

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

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #E3E4E0;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9AA0A6;
}

