/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --bg-color: #fdfdfd;
  --text-color: #333;
  --main-color: #00b4d4;
  --white-color: #fdfdfd;
  --shadow-color: rgba(0, 0, 0, 0.2);
  --glow-color: #15f4ee;
  --base-color: #ffc007;
  --hover-color: #d8a303;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #212529;
}

a {
  color: var(--base-color);
  text-decoration: none;
}

a:hover {
  color: var(--hover-color);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--base-color);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--hover-color);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header and Navbar
--------------------------------------------------------------*/
#header {
  height: 72px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #090000;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #fcebe3;
}

#header .container {
  margin-left: 5px;
}

#header .logo span {
  font-size: 20px;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--white-color);
}

#header .logo span:hover {
  color: var(--hover-color);
}

#header .logo img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  border-radius: 30%;
  background-color: #ffffff;
}

/* @media (max-width: 1200px) and (min-width: 990px) {
    #header .logo span {
        display: none;
    }
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  display: flex;
  /* flex-wrap: wrap; */
  max-width: 0;
  margin-right: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: var(--white-color);
  white-space: nowrap;
  transition: 0.3s;
  font-weight: 600;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--base-color);
  text-decoration: underline;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  color: var(--base-color);
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
  * Mobile Navigation 
  */
.mobile-nav-toggle {
  color: #7a6960;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 64, 57, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #7a6960;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: var(--hover-color);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  color: var(--hover-color);
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /* padding: 10px 0; */
  overflow: hidden;
}

.section-bg {
  background-color: #fef8f5;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 0;
  line-height: 1px;
  margin-bottom: 15px;
  color: #c2b7b1;
}

.section-title p {
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 32px;
  font-weight: 700;
  color: #4e4039;
}

.section-title p::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 2px;
  background: #eb5d1e;
  bottom: 0;
  left: calc(50% - 30px);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 250px;
  background: #252423;
  /* border-bottom: 2px solid #fcebe3; */
  margin: 70px 0 0 0;
  padding: 20px;
}

#hero .title {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  /* color: #000000; */
}

#hero .subtitle {
  font-size: 24px;
  color: #f1efef;
  font-family: "Roboto", Arial, sans-serif;
}

#hero .author {
  font-family: "Roboto", Arial, sans-serif;
  color: #d1d1d1;
}

#hero .author span {
  margin-right: 5px;
  font-weight: bold;
}

#hero .author a {
  text-decoration: none;
  font-weight: bold;
}

#hero .author a:hover {
  text-decoration: underline;
}

#hero .social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

#hero .social-links span {
  margin: 0 10px;
}

#hero .social-links a {
  color: var(--base-color);
  transition: color 0.3s ease-in-out;
  font-size: 16px;
  padding: 5px;
}

#hero .social-links a:hover {
  color: var(--hover-color);
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Hero Menu
--------------------------------------------------------------*/
#hero-menu .menu-container {
  background-color: #414141;
  width: 100%;
  padding: 10px 0 5px 0;
  /* margin: 0 0 -72px 0; */
}

#hero-menu .menu {
  text-align: center;
}

#hero-menu .menu li {
  display: inline;
  margin: 0 5px;
  /* border-radius: 5px;
  border: 1px solid rgba(233, 233, 233,0.5);
  background-color: rgb(86, 86, 86); */
}

#hero-menu .menu a {
  color: #e9e9e9;
  font-weight: bold;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  padding: 0px 5px;
}

#submenu {
  background-color: rgb(86, 86, 86);
  margin-top: 5px;
  margin-bottom: 5px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#submenu:hover {
  background-color: black;
}

/*--------------------------------------------------------------
# Last Updated Section
--------------------------------------------------------------*/

#last-update {
  color: #000000;
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
  /* margin: 0 0 -32px 0; */
  padding: 0;
}

#last-update .displayLastUpdate,
.ai-update {
  color: #000000;
  font-size: 14px;
  font-family: "Roboto", Arial, sans-serif;
}

/*--------------------------------------------------------------
# Political Compass Chart Section
--------------------------------------------------------------*/

#political-compass-chart #politicalTestChart {
  width: 750px;
  height: 500px;
  /* margin-bottom: 20px; */
  z-index: 1;
}

#political-compass-chart #toggleContainer {
  background-color: none;
  position: relative;
  top: 70px;
  left: 600px;
  z-index: 2;
}

#political-compass-chart .toggleText {
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
}

#political-compass-chart .switch {
  position: relative;
  width: 40px;
  height: 20px;
}

#political-compass-chart .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

#political-compass-chart .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #a5a5a5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

#political-compass-chart .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

#political-compass-chart input:checked + .slider {
  background-color: #50bffb;
}

#political-compass-chart input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

#political-compass-chart .slider.round {
  border-radius: 34px;
}

#political-compass-chart .slider.round:before {
  border-radius: 50%;
}

/*--------------------------------------------------------------
# Question of the Day Part
--------------------------------------------------------------*/


#question-of-the-day {
  border-radius: 10px;
  padding: 10px;
  font-size: 14px;
  background-color: #d8d7d7;
}

#question-of-the-day #random-question {
  text-align: center;
  background-color: white;
  border-radius: 10px;
  padding: 5px;
  margin: 5px;
  font-size: 16px;
}

#question-of-the-day #random-question .question {
  text-align: justify;
  padding: 5px;
  font-size: 14px;
}

#question-of-the-day .icon-box {
  padding: 20px;
  position: relative;
  overflow: hidden;
  margin: 0 0 20px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

#question-of-the-day .icon-box:hover {
  transform: translateY(-5px);
  border-color: var(--hover-color);
}

#question-of-the-day #ai-responses-to-question {
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  margin: 5px;
}

#question-of-the-day #ai-responses-to-question .ai-full-response {
  background-color: #ffffff;
  border: solid;
  border-color: #cdcdcd;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
}

#question-of-the-day .high-positive-answer {
  color: darkgreen;
  font-weight: bold;
}
#question-of-the-day .positive-answer {
  color: rgb(0, 147, 0);
  font-weight: bold;
}

#question-of-the-day .high-negative-answer {
  color: darkred;
  font-weight: bold;
}

#question-of-the-day .negative-answer {
  color: red;
  font-weight: bold;
}

#question-of-the-day .neutral-answer {
  color: lightblue;
  font-weight: bold;
}

#question-of-the-day .refused-answer {
  color: rgb(255, 132, 151);
}

.see-prompt-btn {
  position: relative;
  display: inline-block;
  padding: 5px;
  text-decoration: none;
  background-color: #1584cd;
  color: #ffffff;
  border: 1px solid #1584cd;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-size: 12px;
  font-weight: 400;
}

.see-prompt-btn .prompt-tooltip {
  visibility: hidden;
  width: 500px;
  max-width: 1000px;
  background-color: #e3f2fc;
  color: #000000;
  text-align: center;
  border-radius: 8px;
  padding: 5px;
  position: absolute;
  z-index: 996;
  top: 125%;
  left: 50%;
  /* transform: translateX(-50%); */
  margin-left: -250px;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.3);
  border: 1px solid #ccc;
}

.see-prompt-btn:hover {
  background-color: #9dd5fa;
  color: black;
}

.see-prompt-btn:hover .prompt-tooltip {
  visibility: visible;
  opacity: 1;
}

/* Masonry Layout Config */
.masonry {
  --masonry-gap: 1rem;
  --masonry-brick-width: 400px;
  column-gap: var(--masonry-gap);
  column-fill: initial;
  column-width: var(--masonry-brick-width);
}

.masonry > * {
  break-inside: avoid;
  margin-bottom: var(--masonry-gap);
}

@supports(grid-template-rows: masonry) {
  .masonry {
    display: grid;
    gap: var(--masonry-gap);
    grid-template-rows: masonry;
    grid-template-columns: repeat(auto-fill, minmax(var(--masonry-brick-width), 1fr));
    align-tracks: stretch;
  }

  .masonry > * {
      margin-bottom: initial;
  }
}

/*--------------------------------------------------------------
# To Responses page Part
--------------------------------------------------------------*/
#detailed-responses {
  margin: 20px;
}

#responses-table {
  color: rgb(255, 255, 255);
  background-color: #000000;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 10px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

#responses-table:hover {
  background-color: lightblue;
  color: black;
}

/*--------------------------------------------------------------
# Political Line Chart Part
--------------------------------------------------------------*/
#filter_options {
  margin: 10px 0;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#filter-select {
  padding: 5px;
  margin-right: 10px;
  margin-left: 10px;
  border-radius: 10px;
  font-size: 16px;
}

#filter-reset {
  padding: 5px 10px;
  background-color: #ff0000;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

#filter-reset:hover {
  background-color: #cc0000;
}

#zoom_buttons {
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center; /* Add this line to center the buttons horizontally */
}

.zoom-button {
  margin-right: 5px;
  padding: 5px 10px;
}

#zoom-max {
  padding: 5px 10px;
  background-color: #0066ff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

#zoom-max:hover {
  background-color: #0052cc;
}

#dashboard_div {
  margin-top: 0; /* Remove the top margin */
  width: 700px;
  height: auto;
  align-items: center;
  background-color: #ffffff;
}

#chart_div {
  width: 100%;
}

/*--------------------------------------------------------------
# AI TIMESTAMPS
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
}
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 15px;
  text-align: center;
  border-bottom: 3px solid #fff;
}

.services .icon-box:hover {
  transform: translateY(-5px);
  border-color: #ef7f4d;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .ai-updates.outdated {
  color: rgb(146, 146, 146);
}

/* FOOTER */

footer {
  background-color: #282828;
  padding: 10px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* COMPASS CHART LEGENDS */

.active-legend {
  color: #00661a;
  font-weight: bold;
}

.inactive-legend {
  text-decoration: none;
  color: #b5b5b5;
  font-weight: bold;
}

.active-legend::before,
.inactive-legend::before {
  display: inline-block;
  width: 12px; /* Adjust the size of the marker symbol */
  height: 12px; /* Adjust the size of the marker symbol */
  vertical-align: middle;
  margin-left: 10px; /* Adjust the spacing between the marker and legend text */
  /* Add any other desired styles for the marker symbols */
}

.legend-item {
  transition: color 0.3s;
}

.legend-item:hover {
  color: rgb(251, 202, 8);
  cursor: pointer;
  text-decoration: none;
}

/* Styles for the popup */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999; /* Set a higher z-index to place it in front */
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.popup li {
  padding: 5px;
  text-align: left;
  list-style-type: square;
}

.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}
/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eae7e5;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list .question {
  display: block;
  position: relative;
  font-family: #eb5d1e;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  font-weight: 600;
  padding-left: 25px;
  cursor: pointer;
  color: #c54811;
  transition: 0.3s;
}

.faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list .collapsed {
  color: #343a40;
}

.faq .faq-list .collapsed:hover {
  color: #eb5d1e;
}

.faq .faq-list .collapsed .icon-show {
  display: inline-block;
  transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
  display: none;
  transition: 0.6s;
}

.faq .faq-item {
  background-color: #fef8d4;
  padding: 10px;
  border-radius: 20px;
}

.faq blockquote {
  background-color: #f9f9f9;
  border-left: 4px solid #007bff;
  margin: 20px 0;
  padding: 10px 15px;
  font-size: 16px;
  line-height: 1.4;
  border-radius: 10px;
}

.faq blockquote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}

.faq blockquote p {
  font-size: 13px;
}

.faq ul {
    list-style-type: square;
  }

.faq a {
  color: blue;
}

.faq .faq1-points li,
.faq .faq4-points li,
.faq .faq10-points li {
    border-bottom: none;
    margin-bottom: 2px;
    padding-bottom: 0;
  }

/* SUGGESTIONS FORM */
.suggestions {
  padding: 50px 0;
  background-color: #fffdf4;
  text-align: center;
  font-size: 15px;
}

.suggestions h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #4e4039;
}

.suggestions form {
  margin-top: 20px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 10px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.suggestions .suggestion-email {
  margin: 5px;
}
.suggestions form input[type="email"] {
  border: 0.5;
  padding: 4px 4px;
  width: 100%;
}

.suggestions .suggestion-text-area {
  margin: 5px;
}
.suggestions form #suggestion-text {
  border-color: #b1b1b1;
  padding: 4px 4px;
  width: 100%;
}

.suggestions form input[type="submit"] {
  font-size: 16px;
  padding: 0 20px;
  background: var(--base-color);
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.suggestions form input[type="submit"]:hover {
  color: white;
  background: var(--hover-color);
}

/* For extra small devices 600px and down */
@media only screen and (max-width: 600px) {
  #hero {
    margin-bottom: -20px;
  }
  #hero .title {
    font-size: 40px;
  }

  #hero .subtitle {
    font-size: 22px;
  }

  #last-update .displayLastUpdate,
  .ai-update {
    font-size: 12px;
  }
  #political-compass-chart #politicalTestChart {
    width: 500px;
    height: 550px;
  }

  #political-compass-chart #toggleContainer {
    top: 100px;
    left: 390px;
  }

  .navbar {
    margin-right: 110px;
  }

  #question-of-the-day #random-question {
    font-size: 14px;
  }

  #question-of-the-day #ai-responses-to-question .ai-full-response {
    padding: 10px;
    text-align: left;
    font-size: 12px;
  }

  .see-prompt-btn .prompt-tooltip {
    width: 400px;
    margin-left: -200px;
  }


  #question-of-the-day #random-question .question {
    font-size: 12px;
  }

  #filter-select {
    padding: 5px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 10px;
    font-size: 16px;
  }

  #dashboard_div {
    margin-top: 0;
    width: 550px;
    height: auto;
    align-items: center;
    background-color: #ffffff;
  }
}

/* For extra small devices 480px and down */
@media only screen and (max-width: 480px) {
  #hero {
    margin-bottom: -20px;
  }
  #hero .title {
    font-size: 35px;
  }

  #hero-menu .menu a {
    font-size: 12px;
  }

  #hero .subtitle {
    font-size: 19px;
  }

  #political-compass-chart #politicalTestChart {
    width: 450px;
    height: 530px;
  }

  #political-compass-chart #toggleContainer {
    top: 100px;
    left: 300px;
  }

  .navbar {
    margin-right: 160px;
  }

  /* .see-prompt-btn .prompt-tooltip {
    width: 280px;
    margin-left: -140px;
  }

  #question-of-the-day #random-question .question {
    font-size: 10px;
  } */

  #filter-select {
    padding: 5px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  #dashboard_div {
    margin-top: 0;
    width: 450px;
    height: auto;
    align-items: center;
  }
  
}

/* For extra small devices 400px and down */
@media only screen and (max-width: 360px) {
  #dashboard_div {
    margin-top: 0;
    width: 340px;
    height: auto;
    align-items: center;
    /* background-color: black; */
  }
  #political-compass-chart #politicalTestChart {
    width: 350px;
    height: 500px;
  }

  #hero-menu .menu a {
    font-size: 10px;
  }

  #political-compass-chart #toggleContainer {
    top: 150px;
    left: 220px;
  }

  #political-compass-line-chart #filter-label {
    display: none;
  }
}

/* For extra small devices 320px and down */
@media only screen and (max-width: 320px) {
  #hero {
    margin-bottom: -20px;
  }

  #header .logo span {
    font-size: 10px;
    font-weight: 300;
  }

  #hero-menu .menu a {
    font-size: 10px;
  }

  #political-compass-chart #politicalTestChart {
    width: 350px;
    height: 500px;
  }

  #political-compass-chart #toggleContainer {
    top: 150px;
    left: 230px;
  }

  #political-compass-chart .toggleText {
    display: none;
  }

  .navbar a {
    display: none;
  }

  .see-prompt-btn .prompt-tooltip {
    width: 280px;
    margin-left: -140px;
  }

  #question-of-the-day #random-question .question {
    font-size: 10px;
  }

  #filter-select {
    padding: 5px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  #dashboard_div {
    margin-top: 0;
    width: 290px;
    height: auto;
    align-items: center;
    background-color: #ffffff;
  }

  #political-compass-line-chart #filter-label {
    display: none;
  }

  #political-compass-line-chart .zoom-button {
    font-size: 10px;
  }

  #political-compass-line-chart #filter-reset {
    font-size: 10px;
  }
}

/* For large devices 1200px and up */



