/*

--- 01 TYPOGRAPHY SYSTEM

Font Weights
Default: 400

Line Heights
Default: 1

Font Sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

--- 02 COLORS

- Primary: #e67e22
- Tints:  #fdf2e9
- Shades: #cf711f
- Accents
- Grays: #555
#333


--- 05 SHADOWS


--- 06 BORDER-RADIUS


--- 07 WHITE SPACE

SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

      */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: Rubik, sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #404040;
}

/********************/
/* REUSABLE COMPONENTS */
/*********************/

heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #344c3d;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.container {
  /* common also to use 1140px */
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  row-gap: 9.6rem;
  column-gap: 6.4rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
}

.grid--center-v {
  align-items: center;
}

.styled-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 1.6rem;
  line-height: 1.2;
  font-family: sans-serif;
  min-width: 400px;
  max-width: 900px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 9.6rem;
}

.styled-table thead tr {
  background-color: #738a6e;
  color: #ffffff;
  text-align: left;
}

.styled-table th,
.styled-table td {
  padding: 15px 15px;
}

.styled-table tbody tr {
  border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
  background-color: #f3eee9;
}

.styled-table tbody tr:last-of-type {
  border-bottom: 2px solid #344c3d;
}

.styled-table tbody tr.active-row {
  font-weight: 500;
  color: #344c3d;
  line-height: 1.5;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -75px;
  opacity: 0;
  transition: opacity 0.3s;
}

/*******************************/
/*    HELPER/SETTING CLASSES   */
/*******************************/

strong {
  font-weight: 500;
}

.margin-right-sm {
  margin-right: 1.6rem !important;
  /* helper class that we can use in specific situations */
}

.center-text {
  text-align: center;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}
