/* ========================================= */
/* AkbarBin UI Framework */
/* Version : 1.0.0 */
/* ========================================= */

/* ========================================= */
/* BOX MODEL */
/* ========================================= */

*,
*::before,
*::after {
  /* outline: 2px solid red !important; */
  box-sizing: border-box;
}

/* ========================================= */
/* RESET SPACING */
/* ========================================= */

* {
  margin: 0;
  padding: 0;
}

/* ========================================= */
/* ROOT */
/* ========================================= */

html {
  font-size: 62.5%;

  -webkit-text-size-adjust: 100%;
}

/* ========================================= */
/* BODY */
/* ========================================= */

body {
  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  text-rendering: optimizeLegibility;
}

/* ========================================= */
/* FORM */
/* ========================================= */

button,
input,
textarea,
select {
  font:inherit;
}
