/* Responsive media by default */
img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* Full screen background image */
body, html {
  height: 100%;
  background: #2B2D30 url("/assets/background.jpg") no-repeat fixed center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
@supports (background-image: url("/assets/background.webp")) {
  body, html {
    background-image: url("/assets/background.webp");
  }
}

a, a:hover {
  color: #16A3DE;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

.content {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 1em;
}

@media only screen and (min-width: 992px) { /* Bootstrap large breakpoint for responsive content media */
  .content img {
    max-width: 70%;
  }
}
.gallery img {
  max-width: 100%;
  max-height: 200px; /* 100% does not respect the height of the enclosing div */
}

.bg-asylum-dark {
  background-color: #2E6B73;
}

.post-info {
  color: #6c757d;
  font-size: 0.9rem;
}

.no-link {
  text-decoration: none !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sidebar-text {
  color: lightgray;
  font-weight: bold;
}

.server-status {
  color: lightgray;
  font-weight: bold;
}
.server-status table {
  width: 100%;
}
.server-status .online {
  color: green;
}
.server-status .offline {
  color: red;
}

.bootstrap_paymentmeter {
  position: relative;
}
.bootstrap_paymentmeter .progress-title {
  font-size: 15px;
  font-weight: 700;
  color: lightgray;
}
.bootstrap_paymentmeter .progress-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: lightgray;
  display: block;
  margin: 10px 0 0 0;
}
.bootstrap_paymentmeter .progress-subtitle .donate-link {
  color: #16A3DE;
  font-weight: 700;
}
.bootstrap_paymentmeter .progress {
  height: 10px;
  background: rgb(151, 151, 151);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  margin-bottom: 4px;
}
.bootstrap_paymentmeter .progress-bar {
  position: relative;
  animation: animate-positive 2s;
}
.bootstrap_paymentmeter .progress-bar.hoverprogress {
  background-color: red;
}
.bootstrap_paymentmeter .last_update_stamp {
  font-size: 10pt;
  color: #979797;
  display: block;
}
.bootstrap_paymentmeter .playerdonationdetail {
  display: block;
  font-size: 10px;
  font-weight: bold;
  margin-top: 5px;
  height: 2.4em;
  color: transparent;
}
.bootstrap_paymentmeter .playerdonationdetail.visible {
  color: white;
}
.bootstrap_paymentmeter .playerpaymentrow {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: flex-end;
}
.bootstrap_paymentmeter .playerimg {
  border-radius: 2px;
  cursor: pointer;
}

.widget-error {
  color: #979797;
  font-size: 14px;
}

@keyframes animate-positive {
  0% {
    width: 0;
  }
}

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