*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --this-prefix: "klsflx";
}

html,
body {
  box-sizing: inherit;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Make images easier to work with */
img {
  display: block;
  height: auto;
  max-width: 100%;
  border-style: none;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/* Transitions */
.nav > li > a,
a,
a:hover,
.btn,
.btn:hover,
.button,
.button:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html {
    scroll-behavior: initial;
  }
}

/* FORMS */

label.klsflx {
  font-weight: 700;
}

label.klsflx.label-full {
  display: block;
  width: 100%;
}

/* POSITIONING */

/* HELPERS */
.klsflx.full-width {
  display: block;
  width: 100%;
}

.klsflx.text-light {
  font-weight: 300;
}

.klsflx.text-lighter {
  font-weight: 400;
}

.klsflx.text-stronger {
  font-weight: 600;
}

.klsflx.text-strong {
  font-weight: 700;
}

.klsfl.text-smaller {
  font-size: 0.8em;
}

.klsflx.link-pointer {
  cursor: pointer;
}

.klsflx.help-pointer {
  cursor: help;
}
