/* SVG style */
.title {
  cursor: pointer;
  box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.2);
  animation: MoveUpDown 5s linear infinite;
}

@keyframes MoveUpDown {
  50%, 62%, 75% {
    transform: translateY(0);
  }
  56%, 68% {
    transform: translateY(-5px);
  }
}

/* Popups style */
#popup,
#popups {
  display: none;
  opacity: 0;
}

#popup {
  position: absolute;
  z-index: 999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
}
#popup .wrapper {
  position: relative;
  margin: auto;
  max-width: 80%;
  height: auto;
  border: 2px solid #777777;
  border-radius: 10px;
  background: rgba(255, 255, 255, 1);
  padding: 15px 15px 18px 15px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15pt;
  line-height: 1.3em;
  color: #58585a;
}
#popup .content .header {
  display: flex;
  align-items: center;
  margin-bottom: 12pt;
}
#popup .content .header .icon {
  height: 75pt;
  width: auto;
}
#popup .content .header h2 {
  margin-left: 12pt;
  padding: 6pt 12pt;
  color: #ffffff;
  font-size: 20pt;
  border: 2px solid #000000;
}
#popup .content .text {
  padding: 10pt 16pt;
  border: 2px solid;
  border-radius: 5px;
}
#popup .content h3 {
  margin: 1em 0 0.1em 0;
  font-size: 18pt;
}
#popup .content p {
  margin: 0;
}
#popup .content ul {
  list-style: none;
  margin: 0;
  padding-left: 0.8em;
}
#popup .content ul > li::before {
  display: inline-block;
  content: "-";
  width: 0.8em;
  margin-left: -0.8em;
}
#popup .close {
  position: absolute;
  top: -0.5em;
  right: -0.5em;
  width: 1.4em;
  height: 1.4em;
  background: #777777;
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
}
#popup .close::before {
  display: inline-block;
  content: "x";
  width: 100%;
  text-align: center;
  height: 100%;
}
