* {
    font-family: helvetica neue, sans-serif;
    font-size: 20px;
    font-weight: 400;
  }

  body {
    margin: 10%;
    background-color: #F6F0EC;
  }

  .description {
    width: 80%;
    padding: 0 0 50px 0;
    line-height: 1.75em;
  }
  
  .info {
    opacity: 0.5;
  }
  
  h1 {
    font-size: 28px;
    font-weight: 500;
  }

  h2 {
    line-height: 1.75em;;
  }
  
  h3 {
      /* font-size: 12px; */
      padding: 0 0 40px 0;
      font-weight: 500;
      /* text-transform: uppercase; */
  }  
  
  a {
    color: black !important;
    border-bottom: 1px dotted black;
    text-decoration: none;
  }

  a:hover {
    border-bottom: 1px solid black;
  }
  
  .button {
    color: black !important;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 18px;
    margin: 20px 0;
    border-radius: 4px;
    border: 1px solid black;
    background-color: #F6F0EC;
  }
  
  .button:hover {
    color: #fff !important;
    background-color: black;
  }
  
  input {
    color: black !important;
    background-color: #F6F0EC;
    border: 0;
    border-bottom: 1px solid black;
    border-radius: 0px;
  }
  
  .section {
      border-top: 2px solid black;
      padding: 40px 0;
      /* border: 1px solid red; */
  }
  
  .section h2 {
      padding: 0 0 20px 0;
  }

  /* Accordion * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  
  .accordionblock {
    margin: 30px 0 0 0;
  }

  .accordioncontainer {
    padding: 10px 0 25px 0;
    /* border: 1px solid orange; */
  }
  
  .accordion {
    cursor: pointer;
    border: 0px;
    width: 100%;
    text-align: left;
    padding: 0 0 25px 0;
    background-color: #F6F0EC;
    /* border: 1px solid purple; */
  }
  
  .active, .accordion:hover {
    background-color: #F6F0EC;
    /* border: 1px solid green; */
  }
  
  .accordion:after {
    content: '\002B';
    margin: -26px 0 0 0;
    float: right;
    /* border: 1px solid blue; */
  }
  
  .active:after {
    content: "\2212";
    /* border: 1px solid red; */
  }

  .panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid black;
    margin: 0;
    /* border: 1px solid red; */
  }
  
  .panelLastChild {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 0px;
    margin: 0;
    /* border: 1px solid red; */
  }
  
  .panel p, .panel li, .panelLastChild li {
    /* color:blue; */
    padding: 0 0 20px 0;
    line-height: 1.5em;
  }

  .disclaimer {
    font-size: 12px;
  }

  /* Mediaqueries * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  
  @media (width <= 700px) {
  
    body {
      margin: 60px 25px 25px 25px;
    }

    .description {
    width: 100% !important;
    line-height: 1.5em;
    }

    .disclaimer {
    font-size: 10px !important;
    }

    h3 {
      /* font-size: 12px; */
      padding: 0 0 30px 0;
      font-weight: 500;
      /* text-transform: uppercase; */
  }  
  
  }