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

html {
    background: var(--background-color);
    direction: rtl;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-body);
}

[x-cloak] {
    display: none !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}