#questions {
  width: 95%;
  max-width: 1300px;
  margin: 50px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#questions .nav .questionsGrouping:not(:last-child) {
  margin-bottom: 50px;
}
#questions .nav .questionsGrouping ul li {
  margin: 20px 0;
  cursor: pointer;
}
#questions .content {
  width: calc(100% - 320px);
  float: right;
}

#questions .warning {
  width: 100%;
  max-width: 600px;
  background-color: var(--dm-backgroundOffset);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 50px;
}
#questions .warning .header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#questions .warning .header img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
#questions .warning .listItemP:not(:last-child) {
  margin-bottom: 20px;
}
#questions h2 {
  text-align: center;
}

#questions h2:nth-child(2) {
  margin-bottom: 75px;
  color: var(--primary_color);
}

#questions .expandContainer {
  width: 90%;
  max-width: 900px;
  border-bottom: 1px solid var(--dm-text);
  /* padding-bottom: 20px; */
}
#questions .expandContainer:not(:last-child) {
  margin-bottom: 40px;
}

#questions .expandContainer .alwaysShow {
  width: 100%;
  display: flex;
  align-items: center;

  position: relative;
  margin-bottom: 40px;
}
#questions .expandContainer .expandContainerCover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#questions .expandContainer .expandIconContainer {
  background-color: var(--dm-backgroundOffset);
  padding: 10px;
  border-radius: 8px;
  margin-right: 15px;
}
#questions .expandContainer .alwaysShow p {
  width: calc(100% - 40px);
  margin-right: auto;
}

#questions .imageConstant {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7460%)
    hue-rotate(144deg) brightness(115%) contrast(102%);
}

.dropdownContent {
  height: 0;
  width: 100%;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  /* padding-top: 20px; */
}
.dropdownContent ul {
  width: calc(100% - 55px);
  margin-left: 45px;
  /* padding-top: 20px; */
  list-style: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.dropdownContent ul li a {
  width: 100%;
  height: 60px;
  line-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  /* padding-top: 20px; */
}
.dropdownContent ul li:last-child {
  padding-bottom: 20px;
}
.dropdownContent p {
  /* opacity: 0; */
  /* transition: all 0.3s ease-in-out; */
  padding-bottom: 20px;
}

#questions .dropdownContent .gridTitle {
  font-size: 18px;
  /* margin-bottom: 10px; */
  font-weight: 500;
}
#questions .dropdownContent table {
  width: 100%;
  color: var(--dm-text);
  font-family: var(--other_font);
  /* border: 1px solid gray; */
  row-gap: 10px;
  display: grid;
}
#questions .dropdownContent .gridContainer {
  width: 100%;
  color: var(--dm-text);
  font-family: var(--other_font);
  border-top: 1px solid gray;
  border-left: 1px solid gray;
  border-right: 1px solid gray;
  margin-bottom: 20px;
  display: grid;
}

#questions .dropdownContent .gridContainer p {
  font-size: 12px;
}
#questions .dropdownContent .gridContainer .gridRow {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  border-bottom: 1px solid gray;
}
#questions .dropdownContent .gridContainer .gridRow:nth-child(2n) {
  background-color: var(--dm-backgroundOffset);
}

#questions .dropdownContent .gridContainer .gridRow .gridHeader {
  text-align: center;
  padding: 10px 0;
}
#questions .dropdownContent .gridContainer .gridRow .gridHeader:first-child {
  border-right: 1px solid gray;
}
#questions .dropdownContent .gridContainer .gridRow .gridItem:first-child {
  border-right: 1px solid gray;
}
#questions .dropdownContent .gridContainer .gridRow .gridItem {
  padding: 10px;
  display: flex;
  align-items: center;
}

#questions .dropdownContent table thead {
  text-align: center;
  font-weight: 500;
  background-color: var(--dm-backgroundOffset);
  border: 1px solid gray;
}
#questions .dropdownContent table thead td {
  padding: 10px 0;
}
#questions .dropdownContent table tbody tr {
  height: 50px;
}
#questions .dropdownContent table tbody td {
  border-bottom: 1px solid gray;
}
#questions .dropdownContent table tbody td:first-child {
  border-right: 1px solid gray;
}

#questions .dropdownContent .seperator {
  height: 1px;
}
