:root {
  --bg: #f5f5f5;
  --common: #f5f5f5;
  
  --accent: #f5f5f5;
  --accent2: #fafafa;
  --accent3: #ffffff;
  
  --accentD: #f0f0f0;
  --accentOdd: #2a2c2e;
  
  --blur: rgba(255,255,255,0.6);

  --border: #dee0e3;
  --border2: #dee0e3;
  --border3: #2a2c2e;
  
  --text1: #000000;
  --text2: #606263;
  --text3: #88898a;
  --text4: #ffffff;
  
  --logo: #000000;
  
  --svg: #2d2d33;
  --svgActive: #ffffff;
  
  --navIcon: #6c6c70;
  
  --activeColor: #0a0a12;
  --inactiveColor: #88898a;
  
  --btn1: #fff;
  --btn2: #0a0a12;
  
  --focus: rgba(0,0,0,0.3);
  --input: #f2f2f2;
  
  --gBg: #56b375;
  --rBg: #e83f3f;

  --g1: #40733d;
  --gLight: #82bf8e;
  --bBg: #6189c9;
  --r1: #ed1822;
  --rLight: #fa4b4b;
  --b1: #6f94d1;
  --yBg: #ffc72b;
  
  --reciptColor: #56b375;
}


*{
  font-family: "Google Sans", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: default;
  -webkit-tap-highlight-color: transparent;
  scrollbar-width: none;
  scroll-behavior: smooth;
  position: relative;
  font-style: normal;
  user-select: none;
}

h1{ font-size: 18px; font-weight: 600;}
h2{ font-size: 16px; font-weight: 600;}
h3{ font-size: 14px; font-weight: 600;}
h4{ font-size: 12px; font-weight: 600;}
p{ font-size: 14px;}

hr{
  border: none;
  width: 100%;
  background-color: var(--border);
  min-height: 1px;
  max-height: 1px;
}

html, body{
  display: flex;
  width: 100dvw;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  background-color: var(--bg);
  overflow: hidden;
}

