@import './colors/base.scss';

$font-color: $gray-80;

body {
  font-family: "Nunito Sans", "Opens Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-weight: 300;
  overflow-x: hidden;
  color: $font-color;
}

h1, h2, h3, h4, h5, h6 {
  color: $primary-color;
  font-weight: 400;
}

h1 {
  font-size: 1.75em;
}
h2 {
  color: $primary-color;
  font-size: 1.5em;
}
h3 {
  color: $primary-color;
  font-size: 1.25em;
}
h4 {
  font-size: 1em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.75em;
}
p {
  font-size: 1em;
}
caption {
  font-size: 0.85em;
}
small {
  font-size: 0.75em;
}

// displays classes
.display1 {
  font-size: 4em;
}
.display2 {
  font-size: 3.5em;
}
.display3 {
  font-size: 3em;
}

// accessory classes
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.bold {
  font-weight: 800;
}

a {
  color: $primary-color;

  &:hover, &:active, &:visited, &:focus {
    cursor: pointer;
    text-decoration: none;
  }
}

label {
  font-weight: 300;
}

.fx-breadcrumb {
  position: absolute;
  margin-bottom: 0;
  right: 25px;
  bottom: 0;
  font-size: 14px;
    span {
      &:hover {
        cursor: pointer;
        color: $primary-color-hover;
      }
    }
}

.tooltip {
  background-color: transparent;
}

.input-tooltip {
  font-size: 12px;
}
