html {
  overflow: hidden; }

body {
  background-color: #f7f4f3;
  color: #110c09;
  font-size: 14px;
  overflow: hidden;
  height: 100vh;
  margin: 0;
  font-family: sans-serif; }

header {
  display: flex;
  justify-content: space-between;
  align-items: baseline; }

h1 {
  margin: 0.3em 0; }

p {
  text-align: justify; }

.editor-container {
  background-color: #c0c0c0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  box-sizing: border-box;
  border-top: 2px solid #f7f4f3;
  border-left: 2px solid #f7f4f3;
  border-bottom: 2px solid #110c09;
  border-right: 2px solid #110c09; }

.top-bar {
  background-color: #001180;
  color: white;
  font-weight: bolder;
  display: flex;
  justify-content: space-between;
  margin: 0.2em;
  padding: 0.2em; }
  .top-bar > div {
    display: flex;
    align-items: center; }

.resume-container {
  background-color: lightgray;
  overflow-y: scroll;
  margin: 1em;
  border-top: 2px solid #110c09;
  border-left: 2px solid #110c09;
  border-bottom: 2px solid #f7f4f3;
  border-right: 2px solid #f7f4f3; }
  .resume-container > div {
    min-height: 100vh;
    max-width: 60em;
    margin: 0.1em auto;
    background-color: white;
    padding: 4em 5em;
    border: 1px solid #939393; }

button {
  background-color: #c0c0c0;
  color: #110c09;
  border-top: 2px solid #f7f4f3;
  border-left: 2px solid #f7f4f3;
  border-bottom: 2px solid #110c09;
  border-right: 2px solid #110c09;
  display: flex;
  justify-content: center;
  align-items: center; }
  button.square {
    width: 2.5em;
    height: 2.5em; }
    button.square > i:before {
      font-size: 1.5em; }

button:active {
  border-top: 2px solid #110c09;
  border-left: 2px solid #110c09;
  border-bottom: 2px solid #f7f4f3;
  border-right: 2px solid #f7f4f3; }
  button:active > i {
    position: relative;
    left: calc(2px / 2);
    top: calc(2px / 2); }

.control-container {
  margin: 1em 1em 0 1em;
  display: flex;
  justify-content: space-between; }
  .control-container > div {
    display: flex; }

.company {
  font-weight: normal;
  font-style: italic; }

.dates {
  float: right;
  font-weight: normal; }

.leftish {
  padding-left: 4px; }

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
  /* If you want dots under the hoverable text */ }

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  background-color: black;
  color: #fff;
  text-align: center;
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%; }

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  top: 100%;
  left: 50%;
  transition-delay: 1100ms; }

#iaq-modal {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2em; }
  #iaq-modal > div {
    background-color: #c0c0c0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    border-top: 2px solid #f7f4f3;
    border-left: 2px solid #f7f4f3;
    border-bottom: 2px solid #110c09;
    border-right: 2px solid #110c09; }
  #iaq-modal.visible {
    display: flex;
    background-color: rgba(0, 0, 0, 0.5); }

.questions-container {
  background-color: white;
  border-top: 2px solid #110c09;
  border-left: 2px solid #110c09;
  border-bottom: 2px solid #f7f4f3;
  border-right: 2px solid #f7f4f3;
  padding: 1em 2em;
  box-sizing: border-box;
  min-width: 70vw;
  min-height: 70vh;
  max-width: 60em;
  overflow-y: scroll; }
  .questions-container p {
    margin-left: 1em; }
