@font-face {
  font-family: 'Avenir';
  font-style: normal;
  font-weight: 400;
  src: url('/static/fonts/Avenir-Book.woff') format('woff');
}

@font-face {
  font-family: 'Avenir';
  font-style: normal;
  font-weight: 500;
  src: url('/static/fonts/Avenir-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Avenir';
  font-style: normal;
  font-weight: 700;
  src: url('/static/fonts/Avenir-Black.woff') format('woff');
}

:root {
  --base_white: #ffffff;
  --base_blue: #253255;
  --base_blue_opacity_50: #939aac;
  --base_teal: #1AB2BF;
  --base_teal_opacity_12: #e4f6f8;
  --base_grey_light: #eee;
  --base_red: #E83854;
  --base_green: #9CC21C;
  --base_yellow: #F5C22E;
  --base_brown: #d89645;
  --base_black: #000000;
  --base_red_with_opacity: rgba(232, 56, 84, 0.5);
}

html {
  font-size: 18px;
  line-height: 1.4;
}

body {
  font-family: 'Avenir', sans-serif;
  margin: 0;
  background: var(--base_white);
  color: var(--base_blue);
}

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--base_teal);
  font-weight: 500;
}

h1 {
  font-weight: 700;
}

p {
  margin-top: 1.4em;
  min-height: 1em;
  margin-bottom: 0;
}

a {
  color: var(--base_teal);
  text-underline-position: under;
}

.clearfix:after {
  clear: both;
  content: " ";
  height: 0;
  display: block;
}

.button {
  font-size: 1em;
  font-family: inherit;
  background: var(--base_teal);
  color: var(--base_white);
  border: none;
  border-radius: 10px;
  padding: 8px 10px 6px 20px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}


.button_inverse {
  background:var(--base_white) ;
  color: var(--base_teal);
  border: 1px solid var(--base_teal);
  border-radius: 10px;
  padding: 8px 20px 6px 10px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

.button_even_padding {
  padding: 8px 15px 6px;
}

.button_archive {
  background: #fff;
  color: var(--base_red);
  border: 1px solid var(--base_red);
  border-radius: 10px;
  padding: 8px 15px 6px;
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
}

.button_archive::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('/static/images/archive.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2px;
  margin-top: 4px;
  vertical-align: top;
}

.button_right_teal {
  padding: 8px 10px 6px 20px;
}

.button_right_teal::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('/static/images/chevron_right_teal.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 2px;
  vertical-align: top;
}

.button_right_white::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('/static/images/chevron_right_white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 2px;
  vertical-align: top;
}

.button_left_teal::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('/static/images/chevron_left_teal.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2px;
  vertical-align: top;
}

.button_left_white::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('/static/images/chevron_left_white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 2px;
  vertical-align: top;
}

.button_left_gap {
  margin-left: 50px;
}

