:root {
  --grey: #495057;
  --light-grey:#e7e5e5;
  --white: #ffffff;
  --green-blue: #007196;
  --green:#91d500;
  --orange: #ff9119;
  --purple: #7b57c4;
  --dark-blue: #004775;
  --pink: #db4586;
  --light-blue: #7fd9df;
}

#main-content {
  font-family: 'Work Sans', sans-serif;
  font-size: 14px;
  color: var(--green-blue);
  background-color: #ffffff;
  margin-left: 24%;
  margin-right: 5%;
  line-height: 1.5;
}

#main-content h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: 20px;
  color: var(--dark-blue);
}

#main-content h5 {
font-family: 'Work Sans', sans-serif;
font-size: 16px;
margin-left: 180px;
color: var(--pink);
line-height: 1.5;
}

.container {
display: flex;
align-items: center;
justify-content: center;
gap: -10px;
margin-top: 0px;
}

.chart-container-top {
  display: flex;
  width: 70vw;
  }

#container {
width: 200px;
min-height: 300px;
}

.intro-text {
font-size: 14px;
}

.tabs {
    display: flex;
    border-bottom: 2px solid var(--light-blue);
  }
  .tab {
    padding: 8px 3.6vw;
    font-family: 'Work Sans', sans-serif;
    cursor: pointer;
    border: var(--light-blue);
    background: none;
    font-size: 17px;
    color: var(--green-blue);
    font-weight: bold;
    line-height: 1.5;
  }
  .tab.active {
    background-color: var(--green-blue);
    border: var(--light-blue);
    font-weight: bold;
    color: var(--white);
  }
  .tab-content {
    font-family: 'Work Sans', sans-serif;
    display: none;
    padding: 20px 0;
    color: var(--green-blue);
    line-height: 1.3;
  }
  .tab-content.active {
    display: block;
  }

  .tab:hover {
    background-color: var(--dark-blue);
    color:#e7e5e5;
  }


.text-box {
  background-color: rgb(0, 71, 117, 0.1);
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 13px;
  width: 900px;
}

.small-box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 900px;
  color: var(--grey);
}

.comparator {
  width: 900px;
  background-color: var(--blue);
  margin-left: 180px;
  border: var(--grey);
}


blockquote {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 5px solid #ccc;
}

.accordion {
    width: 100%;
    border: 1px solid var(--white);
    margin-left: -100px;
  }

  .accordion-item {
    border-bottom: 1px solid #ffffff;
  }

  .accordion-content {
    font-family: 'Work Sans', sans-serif;
    display: none;
    padding: 15px;
    background-color: #f5f5f5;
    font-size: 16px;
    color: var(--green-blue);
    line-height: 1.5;
    margin-left: -80px;
    margin-right: 120px;
  }

  .active + .accordion-content {
    display: block;
    color: var(--green-blue);
    line-height: 1.5;
  }

.accordion-header {
  font-family: 'Work Sans', sans-serif;
  background-color: #f3f3f3;
  border-top: 10px solid var(--light-blue);
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
  color: var(--green-blue);
  margin-left: -80px;
  margin-right: 120px;
}
 
.accordion-header.active {
  background-color: var(--green-blue);
  color: var(--white);
  border-top: 10px solid var(--light-blue);
  padding: 15px;
}

/* Symbol on the right */
.accordion-header::after {
  content: "+";
  font-size: 30px;
  color: var(--light-blue);
  position: absolute;
  right: 250px;
}
 
/* Change to minus when active */
.accordion-header.active::after {
  content: "-";
  color: var(--light-blue); 
}

.comp-footer {
    margin-left: 3%;
    margin-right: 5%;
    line-height: 1.5;
    font-size: 12px;
    color: var(--purple);
}

#QuestionFilter {
    width: 90%;
    max-width: 600px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    }

#QuestionFilter2 {
    width: 90%;
    max-width: 600px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    }

#QuestionFilter4 {
    width: 90%;
    max-width: 600px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    }

#QuestionFilter5 {
    width: 90%;
    max-width: 600px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    }

#QuestionFilter6 {
    width: 90%;
    max-width: 600px;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    }

@media print {
  nav, .navigation, #navigation {
    display: none !important;
  }

  .chart-container-top {
  display: flex;
  margin-left: -100px;
  width: 1000px;
  }

  #main-content, #banner {
    margin-left: 0 !important;
    width: 100% !important;
  }
}