@charset "UTF-8";
@font-face {
  font-family: "Volta Modern";
  src: local("VoltaModernDiplay"), url(fonts/VoltaModernDisplay-55Roman.ttf) format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Volta Modern";
  src: local("VoltaModernDiplay"), url(fonts/VoltaModernDisplay-56Italic.ttf) format("truetype");
  font-style: italic;
}
@font-face {
  font-family: "Volta Modern";
  src: local("VoltaModernDiplay"), url(fonts/VoltaModernDisplay-75Bold.ttf) format("truetype");
  font-weight: bold;
}
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
}

img {
  max-width: 100%;
  display: block;
}

body {
  font-family: "Volta Modern", "Arial", sans-serif;
}

#app {
  position: relative;
  max-width: 960px;
  margin: auto;
}

#patients {
  display: flex;
  gap: 45px;
  justify-content: space-between;
}
@media (max-width: 500px) {
  #patients {
    gap: 15px;
  }
}

.patient {
  position: relative;
  cursor: pointer;
}

.patient__desc {
  font-size: 0.8rem;
  padding: 15px;
  text-align: center;
  position: absolute;
  top: 0;
  width: 100%;
  color: #fff;
  left: 0;
}
.patient__desc h1 {
  margin-bottom: 5px;
}
.patient__desc sup {
  font-size: 0.5rem;
  vertical-align: top;
}

.patient__line {
  display: inline-block;
  height: 10px;
  background-color: #fff;
  width: 1px;
}

#pop__backdrop {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  position: absolute;
}

#popup {
  position: absolute;
  top: 5px;
  right: 5px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 2;
  background-color: #fff;
  border: 5px solid #414136;
  left: 5px;
  padding: 15px;
  bottom: 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#popup h2 {
  font-size: 1.25rem;
  margin-bottom: 15px;
}

#popup__close {
  position: absolute;
  border: 4px solid #414136;
  border-radius: 0 0 0 20px;
  cursor: pointer;
  padding: 7px;
  top: -4px;
  right: -4px;
  font-size: 1.5rem;
  color: #414136;
}

#popup__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 30px;
}
@media (max-width: 750px) {
  #popup__header {
    flex-direction: column;
  }
}
#popup__header img {
  max-width: 200px;
}

#symptoms {
  grid-gap: 10px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 750px) {
  #symptoms {
    flex-direction: column;
  }
}

.symptom {
  flex: 33%;
  font-weight: bold;
  text-align: center;
  padding: 15px 20px;
  line-height: 1.25rem;
  color: #0360aa;
  background-color: #eaeff9;
}
@media (max-width: 750px) {
  .symptom {
    flex: 1;
  }
}

#popup__said {
  margin: 25px 0;
}
#popup__said blockquote {
  position: relative;
  font-style: italic;
  font-size: 1.375rem;
  padding-left: 20px;
  text-align: center;
}
#popup__said blockquote #quotes {
  position: relative;
  top: -5px;
  display: inline-flex;
  margin-right: 5px;
  gap: 3px;
}
#popup__said blockquote #quotes .quote {
  height: 25px;
  width: 10px;
  background-color: #eaeff9;
  transform: skew(15deg);
}

#popup__nosaid {
  padding-right: 80px;
}
#popup__nosaid ul {
  list-style-type: none;
  padding-left: 30px;
}
#popup__nosaid ul li {
  position: relative;
  margin-bottom: 8px;
}
#popup__nosaid ul li:last-child {
  margin-bottom: 0;
}
#popup__nosaid ul li:before {
  position: absolute;
  left: -15px;
  content: "•";
  color: #0360aa;
}

footer {
  text-align: right;
  margin-top: 25px;
  cursor: pointer;
  user-select: none;
  padding-right: 100px;
  font-style: italic;
  position: relative;
}
footer img {
  right: 0;
  bottom: 0;
  position: absolute;
  opacity: 0.75;
  max-width: 75px;
}

/*# sourceMappingURL=main.css.map */
