.web-dl-modal {
  position: absolute;
  width: 800px;
  height: 500px;
  top: 50%;
  left: 50%;
  margin-top: -250px;
  margin-left: -400px;
  opacity: 1;
  transition: opacity 0.5s 1.5s ease-in-out;
}
.web-dl-modal * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: normal;
}
.web-dl-modal h1, .web-dl-modal p {
  margin: 0;
  cursor: default;
}
.web-dl-modal.hidden {
  opacity: 0;
}
.web-dl-modal .window-controls {
  position: absolute;
  right: 0px;
  top: 0px;
}
.web-dl-modal .window-controls a {
  width: 30px;
  height: 30px;
  cursor: default;
  display: block;
  color: #B2B2B2;
  background-color: transparent;
  transition: .15s;
}
.web-dl-modal .window-controls a .icon {
  width: 100%;
  height: 100%;
  fill: currentcolor;
}
.web-dl-modal .window-controls a:hover {
  background: #D34037;
  color: #ffffff;
}
.web-dl-modal .app-window {
  font-family: 'Lato';
  width: 800px;
  height: 500px;
  padding-top: 30px;
  position: relative;
  background: #1A1A1A;
  border: 1px solid #333333;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.web-dl-modal .app-window:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: solid 1px #333333;
  pointer-events: none;
}
.web-dl-modal .download-illustration-area {
  width: 145px;
  height: 115px;
  margin-bottom: 24px;
}
.web-dl-modal article {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  color: #0D0D0D;
  padding-top: 67px;
  padding-bottom: 27px;
  font-family: Lato, sans-serif;
}
.web-dl-modal article h1 {
  font-size: 24px;
  line-height: 36px;
  font-family: Madera, sans-serif;
  font-weight: bold;
  color: #E5E5E5;
  margin-bottom: 5px;
}
.web-dl-modal article p {
  color: #B2B2B2;
}
.web-dl-modal article footer {
  margin-top: auto;
}
.web-dl-modal article footer p {
  margin-top: 4px;
  font-size: 14px;
  line-height: 20px;
}
.web-dl-modal article footer p strong {
  font-weight: bold;
  color: #E5E5E5;
}
.web-dl-modal a {
  color: inherit;
  text-underline-offset: 3px;
  text-decoration: underline;
  cursor: pointer;
}
.web-dl-modal a:hover {
  color: #E5E5E5;
}
