@import url("//fonts.googleapis.com/css?family=Righteous&display=swap&subset=latin-ext");
@import url("//fonts.googleapis.com/css?family=Montserrat:300,400,400i,700&display=swap&subset=latin-ext");
html, body {
  margin: 0;
  padding: 0;
}

html {
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 600px) {
  html {
    font-size: 16px;
  }
}

body {
  background: #111;
  color: #fff;
}

h1, h2, h3, h4 {
  font-family: "Righteous", cursive;
}

img {
  max-width: 100%;
}

a {
  color: #e10000;
  font-weight: 300;
}

p {
  line-height: 1.5;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

header {
  padding: 1.5rem 0 1rem;
}
header a:has(.logo) {
  display: inline-block;
}
header .logo {
  width: auto;
  height: 100px;
}

.row {
  display: flex;
}

.col-6 {
  flex: 0 0 50%;
}

.online {
  color: #238823;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.offline {
  color: #d2222d;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.server {
  border: 1px solid #333;
  padding: 0.5rem 1rem 0.5rem 3rem;
  display: flex;
  position: relative;
  text-decoration: none;
  font-weight: 400;
  color: #fff;
  background-color: #111;
  background-position: left top, left center;
  background-size: auto, auto 100%;
  background-repeat: no-repeat, no-repeat;
}
.server:before, .server:after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  transition: all 0.4s linear;
  background: #e10000;
}
.server:before {
  right: 0;
  top: 0;
}
.server:after {
  left: 0;
  bottom: 0;
}
.server:hover:before, .server:hover:after {
  width: 100%;
  transition-delay: 0s;
}
.server p, .server h3 {
  margin: 0;
  padding: 0.5rem;
}
.server p:before, .server p:after, .server h3:before, .server h3:after {
  line-height: initial;
}
.server .server-left {
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
}
.server .server-right {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}
.server .server-right .server-top, .server .server-right .server-bottom {
  display: flex;
}
.server .server-right .server-top p, .server .server-right .server-bottom p {
  flex: 25%;
  text-align: center;
  /*&:last-child{
      text-align: right;
  }*/
}
.server .server-right .server-top p:first-child, .server .server-right .server-bottom p:first-child {
  flex: 50%;
}
.server .server-right .server-top, .server .server-right .server-top p {
  line-height: 2rem;
}
@media screen and (max-width: 980px) {
  .server {
    flex-direction: column;
    padding: 0.5rem 1rem;
  }
  .server .server-left, .server .server-right {
    text-align: center;
    flex: auto;
  }
}
.server .servername {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
}
.server .servername img {
  margin-right: 0.5rem;
}
.server .address span {
  margin-left: 0.5rem;
}
.server + .server {
  margin-top: 1.5rem;
}

.players strong {
  margin-left: 0.2rem;
  font-size: 1.5rem;
  font-weight: 400;
}
.players span {
  color: #555;
}

footer {
  margin-top: 3rem;
  padding: 0.5rem 0;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .container a {
  color: #fff;
  font-size: 1.5rem;
}

.categories {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 1rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.categories a {
  margin: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  border: 1px solid #282828;
  background: #222;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
}

.visits {
  margin: 0;
  font-size: 0.8rem;
  text-align: right;
  color: #666;
}

.advert {
  text-align: center;
  min-height: 50px;
  max-height: 250px;
  border: 1px solid #333;
  position: relative;
  margin: 1.5rem 0;
}
.advert:before {
  position: absolute;
  left: -1px;
  top: -0.5rem;
  display: block;
  height: 1rem;
  line-height: 1rem;
  font-size: 0.75rem;
  color: #555;
  background: #333;
  padding: 0 0.25rem;
  content: "REKLAMA";
}

.vote {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
.vote input {
  padding: 1rem;
  border-radius: 0.75rem;
  background: #333;
  border: 1px solid #555;
  color: #fff;
  margin-bottom: 0.2rem;
}
.vote button {
  padding: 1rem;
  font-size: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom, #228f22, #2b7325 90%, #308026 100%);
  color: #fff;
  border: 1px solid #1c5c1c;
  cursor: pointer;
  transition: background 0.5s;
  font-family: "Righteous", cursive;
  text-align: center;
  display: block;
}
.vote button strong {
  display: block;
  font-size: 1.5rem;
}
.vote button:hover {
  background: linear-gradient(to top, #228f22, #2b7325 90%, #308026 100%);
}
.vote button[disabled] {
  background: #333;
  color: #777;
  cursor: default;
  border: 1px solid #444;
}
.vote button[disabled]:hover {
  background: #333;
}

.sms {
  margin-top: 5rem;
}

.text-center {
  text-align: center;
}

.precise {
  font-family: "Lucida Console", monospace;
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: #eee;
  background: #222;
  padding: 0.2rem 0.4rem;
}
.precise span {
  border-bottom: 1px solid #555;
}

.server-detail {
  margin-bottom: 2rem;
}
.server-detail .description {
  margin-left: 1rem;
}

pre {
  background: #222;
  padding: 1rem;
  border-radius: 0.25rem;
  white-space: pre-wrap;
}

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