body {
  background: #202020;
  color: #999999;
  font-family: monospace, monospace;
  font-size: 16px;
  margin: 2em auto;
  max-width: 800px;
  padding: 1em;
  line-height: 1.4;
  text-align: justify;
}

a {
  color: #3f81ef;
}

h2 {
  color: #dedede;
  font-weight: bold;
  font-size: 1.3em;
}

.container {
  display: flex;
  flex-wrap: wrap;
}

.item {
  flex-shrink: 3;
  margin: 0.2em 0.7em 0.7em 0;
  padding: 1em;
  border: 1px solid #3d3d3d;
}

.item-title {
  color: #dedede;
  font-weight: bold;
}

.item-icon {
  user-select: none;
  width: 13px;
  height: 13px;
}

.dev {
  font-weight: bold;
  color: #F38649
}

.message {
  border: 1px solid #F38649;
  padding: 1em;
  margin-bottom: 1em;
}

.message-text {
  margin-left: 1em;
}

.close {
  width: 11px;
  height: 11px;
  cursor: pointer;
  user-select: none;
}

@media screen and (max-width: 500px) {
  body {
    text-align: left;
  }

  .item {
    flex-grow: 1
  }
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }
    100% {
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: linear-gradient(to right, #bfbfbf 10%, #adadad 18%, #999999 33%);
    background-size: 800px 104px;
    height: 18px;
    position: relative;
}

.content-wrapper {
  transform: translateY(+21%);
  border-radius: 0.3em;
  overflow: hidden;
  display: inline-block;
  width: 100px;
}

#suspicious-container {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #202020;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #3d3d3d;
  width: 50%;
}

.modal-close {
  color: #666666;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
