html, body {
  overscroll-behavior: none;
}
body {
	background-color: #13151e;
  color: #fff;
  overscroll-behavior: none;
}
.back {
  background-image: url('/assets/img/back.jpg');
  min-height: 100vh;
  overflow: auto;
  max-height: 100vh;
  background-position: right center;
  background-size: cover;
  position: relative;
}
.back:before {
  content: '';
  background-color: #13151e;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.back div {
  position: relative;
  z-index: 1;
}

.block {
  margin: 0px 0px 0px 0px;
	position: relative;
	color: #fff;
	padding: 10px 15px;
  border-radius: 8px;
	background-repeat: no-repeat;
	background-color: #14161f;
}

.hero {
  background-image: url('/assets/img/hero.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0px 0px 30px 0px;
  padding: 25px 15px;
}

.hero h1 {
  margin: 0px 0px 10px 0px;
  font-size: 24px;
  font-weight: 700;
  max-width: 60%;
}

.hero h2 {
  margin: 0px;
  font-size: 16px;
  max-width: 50%;
  font-weight: 400;
}

.hero:before {
  content: '';
  background-color: #13151e;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.hero * {
  position: relative;
  z-index: 1;
}

.server-btn {
	padding: 4px 8px;
	text-align: center;
	border: 1px #282e3b solid;
	border-radius: 4px;
	background-color: #191d27;
	color: #fff;
	position: relative;
	outline: none;
  margin: 0px 0px 0px 5px;
}
.server-btn:before {
	position: absolute;
	content: 'Скопировать';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	opacity: 0;
	transition: all .3s ease-in-out;
	background-color: #22c55f;
	color: #000;
	font-weight: 700;
}
.server-btn:hover:before {
	opacity: 1;
}

.header-logo svg {
  width: 100%;
  height: auto;
  width: 120px;
}

.header {
  padding: 15px 0px 30px 0px;
}

.menu {
  padding: 0px;
    margin: 0px;
    list-style: none;
}

.menu.menu--header {
    display: flex;
    align-items: center;
    justify-content: end;
}
.menu.menu--header li a {
position: relative;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    background-repeat: no-repeat;
    background-color: #14161f;
    margin: 0px 15px 0px 0px;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
}

.menu.menu--footer a {
  color: #fff !important;
  text-decoration: none !important;
  transition: all .3s ease-in-out;
}
.menu.menu--footer a:hover {
  padding: 0px 0px 0px 15px;
}

tbody, td, tfoot, th, thead, tr {
    border-color: #191d27;
}

.table>:not(:last-child)>:last-child>* {
    border-bottom-color: #191d27;
}

.menu.menu--header li a:hover {
  background-color: #28397f !important;
}

.content, .sidebar {
  margin: 0px 0px 30px 0px;
}



table span {
  padding: 4px 8px;
  text-align: center;
  border: 1px #282e3b solid;
  border-radius: 4px;
  background-color: #191d27;
  color: #fff;
  white-space: nowrap;
}

.play svg {
  width: 20px;
  height: auto;
}

table.table {
  color: #fff;
}

.server-name {
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 300px;
    color: #fff !important;
    text-decoration: none !important;
    transition: all .3s ease-in-out;
}
.server-name:hover {
    color: #22c55f !important;
}

.footer {
  margin: 0px 0px 30px 0px;
}

.pagination-block {
  margin: 30px 0px 0px 0px;
}

.hb-block {
  margin: 0px 0px 30px 0px;
}

.hb-block img {
  width: 100%;
}

.page-item.active .page-link {
    z-index: 3;
    color: #14161f;
    background-color: #22c55f;
    border-color: #22c55f;
}

.page-link {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    background-color: #191d27;
    border: 1px solid #282e3b;
}

.page-link:hover {
    z-index: 2;
    background-color: #2b3141;
    border-color: #282e3b;
    color: #fff;
}

.map {
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
    max-width: 150px;
}

@media screen and (max-width: 991px) {
  .pagination {
    flex-wrap: wrap;
  }
  .header {
    padding: 15px 0px 0px 0px;
  }
  .header-logo {
    display: block;
    text-align: center;
  }
  .header-menu {
    margin: 15px 0px 0px 0px;
  }
  .menu.menu--header li a {
    display: block;
    margin: 0px 15px 15px 0px;
  }
  .menu.menu--header {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero h1, .hero h2 {
    max-width: 100%;
  }
}