:root {
  --easing: cubic-bezier(0.23, 1, 0.32, 1);

  --primaryColor: #230060;
  --primaryShade: #5C6BC0;
  --primaryShadeOpacity: #F8F9Fc;

  --lightGray: #DBDBDB;
  --gray: #B9CDE1;
  --darkgray: #8d9aa7;
  --darkestgray: #6d7782;
  --blue: #036FDB;
  --green: #55C4C2;
  --yellow: #ffc000;
  --orange: #F3B071;
  --red: #ED6D6D;
  --lightblue: #EEF5FC;
  --white: #fff;

  --bgColor: #fff;
  --fontColor: #4C5054;

	--shadowColor: rgba(0,0,0,0.03);
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
body {
  position: relative;
  min-height: 100vh;

  font-family: 'proxima-nova', sans-serif;
  background-color: var(--bgColor);
  color: var(--fontColor);
}
input, select, textarea, button { font-family: inherit !important; }
a {
  text-decoration: none;
}
