.popover_header_box {
  border-bottom: solid var(--standard-border-width) var(--dark-gray);
}

.popover_header {
  margin: 1rem;
  margin-bottom: 0.25rem;
}

.piggy_bank {
  font-size: x-large;
}

.new_item_button {
  border: none;
  margin: var(--standard-margin);
  padding: var(--standard-padding);
  background-color: var(--primary-color);
  border-radius: var(--border-radius-xl);
  line-height: 0;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  text-align: center;
  color: var(--white);
  box-shadow: var(--slight-box-shadow);
  transform: rotate(0deg);
  transition: background-color 500ms linear, transform 500ms ease;
  z-index: var(--medium-high-content-z-index);
}

.new_item_button.new_item_button_editing {
  background-color: var(--dark-red);
  transform: rotate(45deg);
  transition: background-color 500ms linear, transform 500ms ease;
}

.new_item_button_holder {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: var(--high-content-z-index);
  margin-top: -1.5rem;
}

.attach_question_button_holder {
  display: flex;
  justify-content: center;
  width: 100%;
  z-index: var(--high-content-z-index);
}

.add_content_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  height: 1px;
}

.attach_question_container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.border_line {
  top: 0;
  width: 100%;
  border-bottom: solid var(--standard-border-width) var(--medium-gray);
}

.popover_content {
  margin-left: var(--large-margin);
  margin-right: var(--large-margin);
}
