﻿/*
  base styles for all pages
*/

body {
  font-family: "proxima-nova", sans-serif;
  height: 100%;
  min-height: 100vh;
}

html,
body {
  font-size: 16px;
}

button,
input,
optgroup,
select,
textarea,
body {
  font-family: "proxima-nova";
}

* {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

input,
button,
select {
  border: none;
  background: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

select {
  text-overflow: '';
  border-radius: 0;
}

select::-ms-expand {
  display: none;
}

a,
a:hover {
  text-decoration: none;
}

h3 {
  font-size: 18px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

h5 {
  font-size: 14px;
  font-weight: 700;
}

p {
  font-size: 14px;
  line-height: 20px;
  margin-top: 0;
}
.tooltip {
    line-height: 1.2em;
    max-width: 200px;
    padding: 10px 15px;
}
sup {
    vertical-align: super;
}