/* Explain: Base reset and typography defaults. - */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
}

body {
    overflow-x: hidden;
    width: 100%;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.dir-ltr {
    direction: ltr;
    display: inline-block;
    text-align: left;
}
