:root {
  --primary-color: #DF3619;
  --primary-color-darkened: #C83A19;
  --secondary-color: #DCF4FF;
  --black: #333333;
  --offwhite: #F4F2F0;
  --white: #FAFAFA;
  --lighter-gray: #E7E8EA;
  --light-gray: #D0D0D0;
  --gray: #888888;

  --success-color: #7bed9f;
  --warning-color: #eccc68;
  --danger-color: #ff6b81;

  --body-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --header-font-family: 'Public Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  --accent-font-family: 'Libre Baskerville', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--black);
  background-color: var(--offwhite);
  font-family: var(--body-font-family);
}

img {
  width: 100%;
  height: auto;
}


.button-v2 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  border-radius: 5px;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(.25, .8, .25, 1);
}

/* For tablet landscape up */
@media (min-width: 900px) {
  .button-v2 {
    font-size: 16px;
  }
}

.button-v2--full-width {
  width: 100%;
  display: block;
}

.button-v2--primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: 1px solid var(--primary-color);
}

.button-v2--primary:hover {
  background-color: var(--primary-color-darkened);
  border-color: var(--primary-color-darkened);
}

.button-v2--outline {
  background-color: inherit;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.button-v2--outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.button-v2--white {
  border: 1px solid var(--white);
  background-color: var(--white);
  color: var(--black);
}

.button-v2--white:hover {
  color: var(--white);
  background-color: inherit;
}

.button-v2--white:hover svg path {
  fill: var(--white);
}

.button-v2--with-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-v2--with-icon span {
  margin-left: 5px;
}

.button-v2--hidden {
  display: none;
}

table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 0.9em;
  font-family: var(--body-font-family);
  min-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  width: 100%;
}

table thead tr {
  background-color: var(--primary-color);
  color: #ffffff;
  text-align: left;
}

table th,
table td {
  padding: 12px 15px;
}

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

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

table tbody tr:last-of-type {
  border-bottom: 2px solid var(--primary-color);
}

table tbody tr.active-row {
  font-weight: bold;
  color: var(--primary-color);
}

/* FOR SANDBOX PAGE */
.sandbox-content__content a {
  color: var(--primary-color);
  text-decoration: underline;
}