@charset "UTF-8";
:root {
  --topbar-height: 6rem;
  --topbar-bg-color: #1C1917;
  --topbar-text-color: #E7E5E4;
  --topbar-border-bottom: none;
  --logo-img-height: 50%;
  --body-font-family: BlinkMacSystemFont,-apple-system,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Helvetica,Arial,sans-serif;
  --nav-font-family: inherit;
  --nav-font-size: 1.5rem;
  --heading-1-font-size: 3rem;
  --heading-2-font-size: 2.5rem;
  --heading-3-font-size: 2rem;
  --heading-1-font-family: inherit;
  --heading-2-font-family: inherit;
  --heading-3-font-family: inherit;
  --footer-font-color: #cecece;
  --footer-background-color: #222222;
  --site-width: 115rem;
  --section-padding: 5.3rem 0 6rem;
  --primary-color: #f2b382;
  --secondary-button-color: var(--primary-color);
  --primary-button-color: var(--primary-color);
  --soft-background-color: #fff6ed;
  --soft-background-color-border: #ffe8d1;
}

/* MIXIN SNIPPETS
re-usable css snippets that are often used in the design
NOT tied to a certain element.
Used to make the css more clean.
 */
/****************** FIRST SOME GENERAL CSS FOR THE WHOLE SITE *************/
* {
  box-sizing: border-box;
  word-break: break-word;
}

html {
  font-size: 10px;
  background-color: #f4f4f4;
  -webkit-text-size-adjust: 100%;
}
html.no-scroll {
  height: 100vh;
  overflow: hidden;
}

@media screen and (min-width: 2500px) {
  html {
    font-size: 15px;
  }
}
@media screen and (min-width: 2000px) {
  html {
    font-size: 12px;
  }
}
img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
a img {
  border: none;
}

body {
  display: flex;
  flex-direction: column;
  font-family: Helvetica, Arial;
  font-family: var(--body-font-family);
  letter-spacing: 0.01rem;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  color: #333;
  max-width: 1920px;
  min-height: 100vh;
  background-color: White;
  font-size: 1.4rem;
}

#content {
  flex: 1;
}

blockquote, dl, dd, h1, h2, h3, h4, h5, h6, hr, figure, p, pre {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/******************  *************/
.flash_message {
  background-color: #d9edf7;
  color: #535353;
  padding: 1.5rem 1rem;
  font-weight: bold;
  border-radius: 0.5rem;
}
.flash_message::first-letter {
  text-transform: capitalize;
}

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
}

/* ELEMENT CLASSES
design of elements that re-occur in many different places
TIED to certain element
 */
.site-width {
  max-width: var(--site-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.8rem;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 0;
  -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
  transition: filter 0.25s ease-out, color 0.25s ease-out;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #484848;
  border-radius: 9999px;
  color: #fefefe;
  padding: 0.7em 1.3em;
  font-size: inherit;
}
.button:hover {
  filter: brightness(150%);
}
.button.secondary {
  background-color: var(--secondary-button-color, #a4a4a4);
}
.button.secondary:hover {
  filter: brightness(110%);
}
.button.hollow {
  background-color: transparent;
  border: 1px solid #a4a4a4;
  color: #a4a4a4 !important;
}
.button.hollow:hover {
  filter: brightness(50%);
}
.button.small {
  padding: 0.7em 1em;
  font-size: 0.8em;
}
.button.large {
  padding: 0.8em 1.2em;
  font-size: 1.2em;
}

.heading-1 {
  font-size: var(--heading-1-font-size);
  font-family: var(--heading-1-font-family);
  line-height: 1.2em;
  margin-bottom: 3rem;
  text-overflow: ellipsis;
}
@supports (font-size: clamp(3rem, 3.25vw, var(--heading-1-font-size))) {
  .heading-1 {
    font-size: clamp(3rem, 3.25vw, var(--heading-1-font-size));
  }
}

.heading-2 {
  font-size: var(--heading-2-font-size);
  font-family: var(--heading-2-font-family);
  line-height: 1.2em;
  margin-bottom: 3rem;
}

.heading-3 {
  font-size: var(--heading-3-font-size);
  font-family: var(--heading-3-font-family);
  font-weight: bold;
  margin-top: 2rem;
  line-height: 1.2em;
}

.box-heading {
  font-size: var(--heading-3-font-size);
  font-family: var(--heading-3-font-family);
  line-height: 1em;
}

/**/
.section-padding {
  padding: var(--section-padding);
}

body.tight_sections .section-padding:not(:first-child) {
  padding-top: 1.5rem;
}
body.tight_sections .section-padding:not(:last-child) {
  padding-bottom: 1.5rem;
}

.table-container {
  max-width: 100%;
  overflow-x: scroll;
  position: relative;
  -webkit-overflow-scrolling: touch;
}
.table-container table {
  margin-top: 2rem;
  border-collapse: collapse;
  color: #333;
}
.table-container table a {
  outline: none;
  display: inline-block;
  padding-top: 0.1em;
}
.table-container table tr {
  border: 1px solid #ddd;
  vertical-align: top;
}
.table-container table tr:nth-child(2n) {
  background-color: #f8f8f8;
}
.table-container table tr td, .table-container table tr th {
  padding: 1.1rem;
  padding-right: 5rem;
  border: 1px solid #ddd;
  text-align: left;
  word-break: normal;
  white-space: nowrap;
}
.table-container table tr td:last-child, .table-container table tr th:last-child {
  padding-right: 1.1rem;
}
.table-container table tr th {
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.list-style ul {
  padding-left: 4rem;
  margin-bottom: 2rem;
  /* For some reason I need double here to get 1rem */
}
.list-style ul li {
  margin-bottom: 0.5rem;
  /* From https://www.w3schools.com/howto/howto_css_bullet_color.asp */
}
.list-style ul li:before {
  content: "•";
  /* Add content: \2022 is the CSS Code/unicode for a bullet */
  color: #999;
  /* Change the color */
  font-weight: bold;
  /* If you want it to be bold */
  display: inline-block;
  /* Needed to add space between the bullet and the text */
  width: 1em;
  /* Also needed for space (tweak if needed) */
  margin-left: -1em;
  /* Also needed for space (tweak if needed) */
}

.body-font {
  font-size: 1.8rem;
  line-height: 1.3em;
}
.body-font p {
  margin-bottom: 1em;
}
.body-font p:last-child {
  margin-bottom: 0;
}
.body-font a {
  color: #0059b3;
}
.body-font a:hover {
  text-decoration: underline;
}

#topbar-container {
  width: 100%;
  height: var(--topbar-height);
  flex-shrink: 0;
  background-color: var(--topbar-bg-color);
  color: var(--topbar-text-color);
  border-bottom: var(--topbar-border-bottom);
  box-sizing: content-box;
  position: relative;
}
#topbar-container .login_box {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  color: Green;
}

body.no_topbar_border #topbar-container {
  border-bottom: none;
}

body.topbar-fixed #content {
  padding-top: var(--topbar-height);
}
body.topbar-fixed #topbar-container {
  position: fixed;
  z-index: 99;
}

#logo-img {
  height: var(--logo-img-height);
  margin-right: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#logo-img img {
  max-height: 100%;
}

#logo-text {
  flex-shrink: 0;
  font-size: 3rem;
  white-space: nowrap;
}

.nav_overlay {
  position: fixed;
  background-color: transparent;
}

#topbar {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* DESKTOP VERSION */
  /* MOBILE VERSION */
}
@media screen and (min-width: 1024px) {
  #topbar nav {
    height: 100%;
    font-size: var(--nav-font-size);
    font-family: var(--nav-font-family);
    margin-right: -1.7rem;
    /* compensate for a padding */
  }
  #topbar nav ul {
    height: 100%;
  }
  #topbar nav ul li {
    display: inline-block;
    height: 100%;
    cursor: pointer;
  }
  #topbar nav ul li a {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 0rem 1.7rem;
    text-decoration: none;
    color: inherit;
    height: 100%;
  }
  #topbar #menu_button {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  #topbar nav {
    position: fixed;
    z-index: 99999;
    top: 0;
    padding-top: var(--topbar-height);
    right: -28rem;
    width: 28rem;
    max-width: 100%;
    transition: all 0.3s ease;
    font-family: var(--nav-font-family);
    height: 100vh;
  }
  #topbar nav.show {
    right: 0;
  }
  #topbar nav ul {
    background-color: White;
    height: 100%;
    border-left: 1px solid #e7e7e7;
    border-top: 1px solid #e7e7e7;
    overflow-y: scroll;
  }
  #topbar nav ul li {
    display: block;
  }
  #topbar nav ul li a {
    display: block;
    color: #666666;
    padding: 1rem 1rem 1rem 1.5rem;
  }
  #topbar nav ul li a:hover {
    background-color: #eee;
  }
  #topbar .menu_button {
    text-align: right;
  }
  #topbar .nav_overlay.show {
    display: block;
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: #000000bd;
    transition: all 0.5s ease;
    z-index: 9999;
  }
}

#menu_button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 100%;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  flex-shrink: 0;
  z-index: 9999999;
  /* ANIMATION */
}
#menu_button .burger {
  width: 100%;
  height: 0.2rem;
  background: var(--topbar-text-color);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}
#menu_button .burger::before, #menu_button .burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0.2rem;
  background: var(--topbar-text-color);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
#menu_button .burger::before {
  transform: translateY(-0.8rem);
}
#menu_button .burger::after {
  transform: translateY(0.8rem);
}
#menu_button.open .burger {
  background: transparent;
}
#menu_button.open .burger::before {
  transform: rotate(45deg);
}
#menu_button.open .burger::after {
  transform: rotate(-45deg);
}

footer {
  color: var(--footer-font-color);
  background-color: var(--footer-background-color);
  position: relative;
  font-size: 1.2rem;
  padding: 2.5rem 2rem;
  text-align: center;
}
footer .footer_cols {
  text-align: center;
  display: inline-flex;
}
footer .footer_cols .col {
  padding: 0 4rem;
  border-right: 1px solid var(--footer-font-color);
}
footer .footer_cols .col:first-child {
  padding-left: 0;
}
footer .footer_cols .col:last-child {
  padding-right: 0;
  border-right: none;
}
footer .link {
  position: absolute;
  font-size: 1rem;
  bottom: 0.3rem;
}
footer .link.right {
  right: 0.3rem;
}
footer .link.left {
  left: 0.3rem;
}
@media screen and (max-width: 1025px) {
  footer .footer_cols {
    flex-direction: column;
  }
  footer .footer_cols .col {
    padding: 0;
    padding-top: 0.3rem;
    border: 0;
  }
  footer .footer_cols .col:first-child {
    padding: 0;
  }
}

/******************** MARGINS ****************************/
.m-0 {
  margin: 0rem;
}

.m-0\.5 {
  margin: 0.5rem;
}

.m-1 {
  margin: 1rem;
}

.m-1\.5 {
  margin: 1.5rem;
}

.m-2 {
  margin: 2rem;
}

.m-2\.5 {
  margin: 2.5rem;
}

.m-3 {
  margin: 3rem;
}

.m-4 {
  margin: 4rem;
}

.m-5 {
  margin: 5rem;
}

.m-6 {
  margin: 6rem;
}

.m-7 {
  margin: 7rem;
}

.m-8 {
  margin: 8rem;
}

.m-9 {
  margin: 9rem;
}

.m-10 {
  margin: 10rem;
}

.mr-0 {
  margin-right: 0rem;
}

.mr-0\.5 {
  margin-right: 0.5rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-1\.5 {
  margin-right: 1.5rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-2\.5 {
  margin-right: 2.5rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.mr-5 {
  margin-right: 5rem;
}

.mr-6 {
  margin-right: 6rem;
}

.mr-7 {
  margin-right: 7rem;
}

.mr-8 {
  margin-right: 8rem;
}

.mr-9 {
  margin-right: 9rem;
}

.mr-10 {
  margin-right: 10rem;
}

.ml-0 {
  margin-left: 0rem;
}

.ml-0\.5 {
  margin-left: 0.5rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-1\.5 {
  margin-left: 1.5rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-2\.5 {
  margin-left: 2.5rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.ml-5 {
  margin-left: 5rem;
}

.ml-6 {
  margin-left: 6rem;
}

.ml-7 {
  margin-left: 7rem;
}

.ml-8 {
  margin-left: 8rem;
}

.ml-9 {
  margin-left: 9rem;
}

.ml-10 {
  margin-left: 10rem;
}

.mt-0 {
  margin-top: 0rem;
}

.mt-0\.5 {
  margin-top: 0.5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-1\.5 {
  margin-top: 1.5rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-2\.5 {
  margin-top: 2.5rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.mt-6 {
  margin-top: 6rem;
}

.mt-7 {
  margin-top: 7rem;
}

.mt-8 {
  margin-top: 8rem;
}

.mt-9 {
  margin-top: 9rem;
}

.mt-10 {
  margin-top: 10rem;
}

.mb-0 {
  margin-bottom: 0rem;
}

.mb-0\.5 {
  margin-bottom: 0.5rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-1\.5 {
  margin-bottom: 1.5rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-2\.5 {
  margin-bottom: 2.5rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.mb-7 {
  margin-bottom: 7rem;
}

.mb-8 {
  margin-bottom: 8rem;
}

.mb-9 {
  margin-bottom: 9rem;
}

.mb-10 {
  margin-bottom: 10rem;
}
