@font-face {
  font-family: "apercu";
  src: url("./fonts/apercu-regular.eot");
  src: url("./fonts/apercu-regular.eot?#iefix") format("embedded-opentype"),
       url("./fonts/apercu-regular.woff") format("woff"),
       url("./fonts/apercu-regular.woff2") format("woff2"),
       url("./fonts/apercu-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "apercu";
  src: url("./fonts/apercu-medium.eot");
  src: url("./fonts/apercu-medium.eot?#iefix") format("embedded-opentype"),
       url("./fonts/apercu-medium.woff") format("woff"),
       url("./fonts/apercu-medium.woff2") format("woff2"),
       url("./fonts/apercu-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "apercu";
  src: url("./fonts/apercu-bold.eot");
  src: url("./fonts/apercu-bold.eot?#iefix") format("embedded-opentype"),
       url("./fonts/apercu-bold.woff") format("woff"),
       url("./fonts/apercu-bold.woff2") format("woff2"),
       url("./fonts/apercu-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

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

a {
  color: #333333;;
}

body {
  font-family: "apercu", sans-serif;
  font-weight: 400;
  color: #333333;
  background-color: #F8F8F8;
}

p {
  font-size: 1rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
  line-height: 1.5;
}

h1 {
  color: #333333;
}

.support {
  position: absolute;
  padding: 1.5rem 4rem 4rem 4rem;
  top: 20px;
  left: 50%;
  transition: 200ms ease-in-out;
  transform: translate(-50%, 0%);
  min-width: 700px;
}

.support-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.support-title {
  margin-bottom: 1rem;
}

.support-close-button {
  cursor: pointer;
}

.support-close-button p {
  padding: 0;
}

.accordion-title {
  font-family: "apercu", sans-serif;
  background-color: transparent;
  color: #333333;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.1rem;
  line-height: 1.6;
  transition: 0.4s;
  border-bottom: 1px #CCCCCC solid;
  font-weight: 500;
  }

  .accordion-title:before {
    content: '+';
    color: #26999B;
    font-weight: bold;
    float: left;
    margin-right: 1rem;
    width: 12px;

  }
  
  .active-list:before {
    content: "-"; /* Unicode character for "minus" sign (-) */
    font-weight: 500;
    width: 12px;
  }
  
  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
  .active-list {
    background-color: white;
  }

  .accordion-title:hover {
    background-color: rgb(238, 237, 237);
  }
  
  /* Style the accordion panel. Note: hidden by default */
  .accordion-textbox {
    padding: 0 2.9rem;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .headlogo {
    width: 125px;
    margin-bottom: 5rem;;
  }

  