html {
    overflow-x: hidden;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    font-family: sans-serif;
}

body {
    font-family: 'Open sans', 'Candara', 'Verdana';
    font-size: 14px;
    line-height: 1;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

main {
    margin-bottom: 7rem;
}

img {
    max-width: 100%;
}

time {
    padding-left: 0%;
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline;
}

a {
    text-decoration: none !important;
    color: #ffcc00;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: all;
}


a:focus, a:hover {
    color: #c36254;
    text-decoration: none !important;
}

#app {
    width: 100%;
    background: url(../images/bg-top3.jpg) center top no-repeat, url(../images/bg-bottom.jpg) center bottom no-repeat, #090402;
    font-family: 'Open sans', 'Candara', 'Verdana';
    background-size: 100%;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    overflow-x: hidden;
}

.header {
    min-height: 525px;
    position: relative;
}

.header .logo {
    margin: 0% 0 0 0;
    text-align: center;
    padding: 26.5% 0 0 0;
    z-index: 2;
    position: relative;
}

.header .download-block, .header .registration-block {
    display: flex;
    height: 160px;
    width: 388px;
    z-index: 2;
    padding-top: 53px;
    padding-left: 143px;
    margin-top: 2px;
}

.header .download-block:hover, .header .registration-block:hover {
    -webkit-filter: brightness(110%);
    filter: brightness(110%);
}

.header .download-block {
    background: url(../images/download-button.png) center no-repeat;
}

.header .registration-block {
    margin-left: 2px;
    background: url(../images/registration-button.png) center no-repeat;
}

.header .download-block span, .header .registration-block span {
    font-size: 16px;
    color: #ff5695;
    text-shadow: 0 1px 0 rgb(0 0 0 / 70%);
}

.header .download-block p, .header .registration-block p {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: rgb(0 0 0 / 70%) 0 1px 0;
}

.servertime-block {
    position: absolute;
    right: 1%;
    top: 70%;
    z-index: 3;
    width: 15%;
    padding: 2% 0;
    background: rgba(32, 27, 37, 0.9);
    border-radius: 2%;
    text-align: center;
    margin: 0 auto;
}

.server-bottom {
    font-size: 100%;
    color: #ffcc00;
}

.server-bottom span, .server-bottom time {
    color: #ffd700;
}

.server-bottom div {
    margin-bottom: 5%;
}

.server-bottom .server-name {
    font-size: 100%;
    color: #fff;
}

.sparks-sparks {
    position: absolute;
    width: 1200px;
    left: -55%;
    /*bottom: 40px;*/
}

.sparks {
    position: absolute;
}

.sparks-1 {
    background-image: url(../images/sparks/sparks-1.png);
    width: 764px;
    height: 313px;
    right: 0;
    bottom: -320px;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: spark-1 4s linear infinite;
    animation: spark-1 4s linear infinite;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.sparks-2 {
    background-image: url(../images/sparks/sparks-2.png);
    width: 179px;
    height: 335px;
    right: 230px;
    bottom: -320px;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: spark-1 4s linear infinite;
    animation: spark-1 4s linear infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.sparks-3 {
    background-image: url(../images/sparks/sparks-3.png);
    width: 128px;
    height: 165px;
    right: 280px;
    bottom: -140px;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: spark-3 4s linear infinite;
    animation: spark-3 4s linear infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

.sparks-4 {
    background-image: url(../images/sparks/sparks-4.png);
    width: 794px;
    height: 176px;
    right: 0;
    bottom: -180px;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: spark-5 4s linear infinite;
    animation: spark-5 4s linear infinite;
}

.sparks-5 {
    background-image: url(../images/sparks/sparks-4.png);
    width: 794px;
    height: 176px;
    right: 0;
    bottom: -180px;
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-animation: spark-5 4s linear infinite;
    animation: spark-5 4s linear infinite;
}

@-webkit-keyframes spark-1 {
    0% {
        bottom: -320px;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    25% {
        bottom: -240px;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -160px;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: -80px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 0px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes spark-1 {
    0% {
        bottom: -320px;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    25% {
        bottom: -240px;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -160px;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: -80px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 0px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes spark-3 {
    0% {
        bottom: -140px;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    25% {
        bottom: -80px;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -20px;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 40px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 100px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes spark-3 {
    0% {
        bottom: -140px;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    25% {
        bottom: -80px;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -20px;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 40px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 100px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@-webkit-keyframes spark-5 {
    0% {
        bottom: -180px;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    25% {
        bottom: -120px;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -60px;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 0px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 60px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes spark-5 {
    0% {
        bottom: -180px;
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 0;
    }
    25% {
        bottom: -120px;
        -webkit-transform: scale(0.7);
        transform: scale(0.7);
        opacity: 1;
    }
    50% {
        bottom: -60px;
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 1;
    }
    75% {
        bottom: 0px;
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0.5;
    }
    100% {
        bottom: 60px;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.stones-stones {
    position: absolute;
    /*bottom: 10px;*/
    left: 100px;
    z-index: 0;
}

.stones-stones .stone {
    opacity: 0;
    position: absolute;
    text-indent: -9999px;
    font-size: 0;
    line-height: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    z-index: 2;
}

.stones-stones .stone {
    transform-origin: center center;
    opacity: 1;
}

.stones-stones .stone {
    display: table;
    -webkit-transition: opacity 800ms ease;
    -moz-transition: opacity 800ms ease;
    transition: opacity 800ms ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.stone.stone-1 {
    background: url(../images/stones/stone-1.png) no-repeat 0 0;
    width: 300px;
    height: 197px;
    left: 0;
    bottom: -200px;
    z-index: 3;
    animation: 5s stone-1 linear infinite;
}

.stone.stone-2 {
    background: url(../images/stones/stone-2.png) no-repeat 0 0;
    width: 283px;
    height: 171px;
    left: 0;
    bottom: -200px;
    position: absolute;
    animation: 5s stone-2 linear infinite;
    animation-delay: 2s;
}

.stone.stone-3 {
    background: url(../images/stones/stone-3.png) no-repeat 0 0;
    width: 324px;
    height: 222px;
    left: 0;
    bottom: -200px;
    position: absolute;
    animation: 5s stone-3 linear infinite;
    animation-delay: 4s;
}

@keyframes stone-1 {
    0% {
        transform: scale(0.7) rotate(0deg);
        bottom: -200px;
        left: 250px;
    }
    33% {
        transform: scale(0.8) rotate(30deg);
        bottom: -100px;
        left: 500px;
    }
    66% {
        transform: scale(0.9) rotate(60deg);
        bottom: 0;
        left: 750px;
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(90deg);
        bottom: 100px;
        left: 1000px;
        opacity: 0;
    }
}

@keyframes stone-2 {
    0% {
        transform: scale(0.7) rotate(0deg);
        bottom: -200px;
        left: 250px;
    }
    33% {
        transform: scale(0.8) rotate(-30deg);
        bottom: -100px;
        left: 500px;
    }
    66% {
        transform: scale(0.9) rotate(-60deg);
        bottom: 0;
        left: 750px;
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(-90deg);
        bottom: 100px;
        left: 1000px;
        opacity: 0;
    }
}

@keyframes stone-3 {
    0% {
        transform: scale(0.7) rotate(0deg);
        bottom: -200px;
        left: 250px;
    }
    33% {
        transform: scale(0.8) rotate(-30deg);
        bottom: -100px;
        left: 500px;
    }
    66% {
        transform: scale(0.9) rotate(-60deg);
        bottom: 0;
        left: 750px;
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(-90deg);
        bottom: 100px;
        left: 1000px;
        opacity: 0;
    }
}

.server-load {
    background: url(../images/server-load-bg.png) no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 185px;
    width: 163px;
    padding-top: 30px;
}

.server-load .circle-online {
    text-align: center;
    position: relative;
    display: inline-block;
    margin-top: 5px;
    margin-left: 2px;
}

.server-load .serverInfo {
    position: absolute;
    width: 124px;
    height: 124px;
    padding-top: 30px;
}

.serverInfo span {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
}

.serverInfo .serverInfo__name {
    font-size: 14px;
    color: #fff;
    margin-bottom: 3px;
}

.serverInfo .serverInfo__online {
    color: #a2ff00;
    font-size: 14px;
    padding-top: 10px;
}

.background-circle {
    stroke: #4bcdb6 !important;
}

.navbar {
    padding: 0;
    background: rgba(32, 27, 37, 0.9);
    border-radius: 2%;
}

.navbar-brand:hover {
    webkit-filter: brightness(120%);
    filter: brightness(120%);
}

.navbar-dark .navbar-nav .nav-link {
    font-size: 16px;
    color: #ffcc00;
    text-transform: uppercase;
    text-decoration: none;
    padding: 35px 10px;
    display: block;
    font-weight: bold;
    border-top: 2px solid rgba(0, 0, 0, 0);
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
    border-top: 2px solid #ffe26e;
    text-shadow: 0 0 27px #ffe26e;
    color: #c36254;
}

.navbar-nav .dropdown-menu.show {
    /*left: 50%;*/
}

.navbar-nav .dropdown-menu {
    background-color: rgb(50 14 4 / 60%) !important;
    margin-top: -15px;
    margin-left: -55px;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: 10px 10px 64px -16px rgb(0 0 0 / 75%);
    min-width: 180px;
}

.navbar-nav .dropdown-menu:after {
    content: "";
    background: url(../images/menu-icon.png) no-repeat;
    width: 22px;
    height: 12px;
    top: -11px;
    left: 50%;
    margin-left: -11px;
    position: absolute;
}

.navbar-nav .dropdown-menu .dropdown-item {
    color: #fff !important;
    text-transform: uppercase;
    padding: 8px;
    border-top: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
    font-size: 14px;
    font-weight: bold;
}

.navbar-nav .dropdown-menu .dropdown-item:hover, .dropdown-item.active, .dropdown-item:active {
    color: #fff !important;
    background-color: rgb(29 27 20 / 54%) !important;
}

.navbar-nav .dropdown-menu .dropdown-item:hover {
    border-radius: 4px !important;
}

.main-content .dropdown-menu {
    width: auto;
}

div.dt-button-collection div.dropdown-menu {
    background: rgba(0, 0, 0, .9);
    border-radius: 0;
    border: none;
}

div.dt-button-collection .dt-button:first-child {
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

div.dt-button-collection .dt-button:last-child {
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

#footer {
    background: transparent;
}

#footer h5 {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 34px;
    font-weight: 500;
    color: #fff;
}

#footer .footer-copyright {
    background-color: transparent;
    font-size: 14px;
    line-height: 1;
    padding-bottom: 50px;
    margin-top: 200px;
}

#footer .footer-copyright a {
    color: #ff8a56;
}

#footer .footer-copyright a:hover {
    color: #542f1f;
}

#footer .footer-copyright p {
    color: #fff;
}

#footer .footer-copyright:before, #footer .footer-copyright:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}

.back-to-top {
    display: flex;
    justify-content: center;
    height: 42px;
    background: url(../images/totop.png) center no-repeat;
    align-items: center;
    margin-top: 103px;
    margin-bottom: 103px;
}

.toTop {
    background: #fff url(../images/to-top.png) center center no-repeat;
    width: 48px;
    height: 48px;
    /*margin: 4.85px 5.05px;*/
    border: 1px solid #363534;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
    transition: 0.5s;
    text-align: center;
    line-height: 2.2;
    cursor: pointer;
}

.toTop:hover {
    box-shadow: inset 0 0 10px 0 #a1af06;
    border: 1px solid #a1af06;
    background-color: #a1af06;
}

.sidebar li {
    font-size: 11px;
    padding: 3px 0;
}

.bottom-bar {
    margin-right: auto;
    margin-left: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.card {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 20px;
    background-color: #110d0c;
    border-radius: 0;
    border: none;
}

.main-content .container > .card:after {
    content: none;
    position: absolute;
    top: -32px;
    left: -32px;
    height: 117px;
    width: 854px;
    background: url(../images/card/card-top.jpg) center top repeat-x;
}

.main-content .container > .card {
    text-transform: uppercase;
    background: url(../images/card/card-top.jpg) top repeat-x, #110d0c;
}

.main-content .container div:not(:first-child) .card .card-header {
    background: rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: 5px;
    color: white;
}

.sidebar .card, .bottom-bar .card {
    margin-bottom: 10px;
}

.bottom-bar .card.card-bgs {
    background: url(../images/card/card-top.jpg) top repeat-x, #110d0c;
    width: 350px;
    box-shadow: 0 0 25px 0 rgb(0 0 0 / 80%);
    position: relative;
}

.bottom-bar .card.card-bgs .card-header, .bottom-bar .card.card-bgs .card-body, .bottom-bar .card.card-bgs .card-footer {

}

.bottom-bar .card .card-header {
    padding-top: 140px;
    padding-bottom: 35px;
}

.sidebar .card .card-header, .bottom-bar .card .card-header {
    color: #ffe26e;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

.sidebar .card .card-header p {
    font-size: 14px;
}

.bottom-bar .card .card-header p {
    font-size: 18px;
}

.sidebar .card .card-body, .bottom-bar .card .card-body {
    z-index: 0;
}

.card .card-header {
    margin-top: 10px;
    padding: 20px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    background: transparent;
    color: #ffe26e;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.card .card-header a {
    font-size: 0.9rem;
}

.card .card-body {
    padding: 0;
}

.card .card-header h4 {
    font-size: 18px;
}

.card .card-header h4, .card .card-header p {
    color: #ffe26e;
}

.card .card-header p {
    font-size: 15px;
    margin: 0;
}

.card .card-header p.small {
    font-size: 13px;
}

.sidebar .card .card-footer, .bottom-bar .card .card-footer {
    background: transparent;
}

.card .card-footer {
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    color: white;
    z-index: 0;
}

.discord-users {
    max-height: 385px;
    margin-bottom: 10px;
}

.discord-users li {
    border-bottom: 1px solid #1d1b14;
}

.discord-playing {
    max-width: 40%;
    text-align: end;
}

.discord-name {
    max-width: 60%;
}

/*.sidebar .table, .bottom-bar .table {
    width: 85%;
    margin-left: auto;
}*/

.sidebar .table thead th, .bottom-bar .table thead th {
    border-top: none;
    vertical-align: middle;
}

.sidebar .table thead, .sidebar .table tfoot, .bottom-bar .table thead, .bottom-bar .table tfoot {
    background-color: transparent;
}

.sidebar .table thead th:first-child, .bottom-bar .table thead th:first-child {
    width: 40px;
}

.sidebar .table th, .sidebar .table td, .bottom-bar .table th, .bottom-bar .table td {
    font-size: 15px;
}

.sidebar .table td, .bottom-bar .table td {
    border-top: none;
    vertical-align: middle;
}

.sidebar .table tr, .bottom-bar .table tr {
    height: 41px;
}

.sidebar .table a, .bottom-bar .table a {
    color: inherit;
    transition: none;
}

.sidebar .table tr, .bottom-bar .table tr {
    transition: 0.3s;
}

.sidebar .table a:hover, .bottom-bar .table a:hover {
    color: inherit;
    text-transform: none;
    font-weight: inherit;
}

.sidebar .table :not(thead) tr:hover, .bottom-bar .table :not(thead) tr:hover {
    background-color: #352a23 !important;
    box-shadow: 0 8px 10px -3px rgb(0 0 0 / 45%);
    color: #c0d107;
    height: 41px;
    position: relative;
    z-index: 5;
    margin: 0 -40px 0 -40px;
}

.sidebar .table :not(thead) tr, .bottom-bar .table :not(thead) tr {
    border-bottom: 1px solid #1d1b14;
}

.sidebar .table tr:hover td, .bottom-bar .table tr:hover td {
    /*color: #ff6928;*/
}

.table thead, .table tfoot {
    background-color: #1d1b14;
}

.table thead th {
    border-bottom: none;
}

.table td {
    border-top: 1px solid #1d1b14;
    color: #fff;
}

.table-bordered, .table-bordered td, .table-bordered th {
    border: 1px solid #1d1b14;
}

/*.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(75, 41, 49, 0.08);
}*/

table.table-bordered.dataTable {
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 0;
}

table.dataTable td, table.dataTable th {
    border-top: none;
}

.table a {
    color: #fff;
    text-decoration: none;
}

.table a:hover {
    color: #ffe26e;
    font-weight: initial;
}

.page-link {
    color: #fff;
    background-color: #1d1b14;
    border: 1px solid #1d1b14;
}

.page-item.disabled .page-link {
    color: #fff;
    background-color: #1d1b14;
    border-color: #1d1b14;
}

.page-item.active .page-link, .page-link:hover {
    color: #c36254;
    font-weight: initial;
    background-color: #1d1b14;
    border-color: #1d1b14;
}

.page-link:focus {
    box-shadow: 0 0 0 0.15rem #1d1b1440;
}

.dataTables_filter input,
.dataTables_length select,
.dt-button.btn,
div.dataTables_wrapper div.dataTables_length label,
div.dataTables_wrapper div.dataTables_filter label,
div.dataTables_wrapper div.dataTables_info {
    font-size: 0.7rem;
}

.download-image {
    background-color: rgba(0, 0, 0, .27);
    margin: 10px auto 20px;
    padding: 10px;
}

.web-inventory h5.card-title {
    font-size: 15px;
}

h5.card-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
}

.web-inventory .input-group .btn-primary {
    padding-top: 5px;
    padding-bottom: 4px;
}

.downloads {
    margin-top: 10px;
    margin-bottom: 15px;
    font-family: Exo, sans-serif;
    font-size: 24px;
    line-height: 50px;
    font-weight: 700;
    text-transform: none;
}

.downloads .card-text {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.u-vmenu ul li a:hover {
    background-color: #1d1b14 !important;
    font-weight: initial;
}

.u-vmenu > ul > li > a {
    background-color: #1d1b14 !important;
    color: #fff;
}

.u-vmenu ul li a {
    color: #fff !important;
}

.u-vmenu ul li a:hover {
    color: #fff !important;
    font-weight: initial;
}

.list-group, .list-group-item:first-child, .list-group-item:last-child {
    border-radius: 0;
}

.list-group-item {
    background-color: #1d1b14;
    color: #fff;
    border: none;
}

.list-group-item-action:focus, .list-group-item-action:hover {
    color: #c36254;
    background-color: #1d1b14;
}

.list-group-item:hover, .list-group-item.active {
    background-color: #1d1b14;
    border: none;
    color: #c36254;
    font-weight: initial;
}

.box-small-icon-alt .box-icon {
    border: 1px solid #c36254;
}

.box-small-icon-alt .box-icon:hover {
    border: 1px solid #1d1b14;
}

.box-icon-outline {
    -webkit-text-stroke: 1px #c36254;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.box-icon-outline:hover {
    -webkit-text-stroke: 1px #c36254;
    background-color: #1d1b14;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    background-color: #1d1b14;
    border-color: #1d1b14;
    border-bottom: none;
    color: #ffe26e;
    font-weight: initial;
}

.nav-tabs .nav-link, .nav-tabs {
    border-bottom: none;
    border-radius: 0;
}

.border-primary {
    border-color: #1d1b14;
}

.custom-control-input:checked ~ .custom-control-label:before {
    color: #fff;
    border-color: #1d1b14;
    background-color: #1d1b14;
}

.bottom-bar .card-bgs:before {
    content: "";
    position: absolute;
    width: 350px;
    height: 516px;
    top: -34px;
    right: 0;
}

.bottom-bar .card-bgs.guilds:before {
    background: url(../images/top-guilds-bg.png) top center repeat-x;
    background-size: contain;
}

.bottom-bar .card-bgs.players:before {
    background: url(../images/top-players-bg.png) top center repeat-x;
    background-size: contain;
}

.bottom-bar .card-bgs.discord:before {
    background: url(../images/discord-bg.png) top center repeat-x;
    background-size: contain;
}

.button-small {
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    text-transform: none;
    height: 40px;
    width: 115px;
    color: #fff;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    padding-top: 12px;
    background-color: #1d1b14;
    box-shadow: 0 10px 20px 0 rgb(0 0 0 / 50%);
}

.button-small:hover {
    -webkit-filter: brightness(120%);
    filter: brightness(120%);
    color: #fff !important;
    font-weight: initial;
}

.btn:hover {
    font-weight: initial;
}

.btn-toolbar {
    justify-content: center;
}

.downloads-table {
    /*background-color: #1d1b14 !important;*/
    border: 1px solid #2c2437 !important;
}

.downloads-table > tbody > tr > td,
.downloads-table > tbody > tr > th,
.downloads-table > tfoot > tr > td,
.downloads-table > tfoot > tr > th,
.downloads-table > thead > tr > td,
.downloads-table > thead > tr > th {
    /*background-color: #1d1b14 !important;*/
    border: 1px solid #2c2437 !important;
}

/*::-webkit-scrollbar {*/
/*    width: 14px;*/
/*    background: #110d0c;*/
/*}*/

/*::-webkit-scrollbar-thumb {*/
/*    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 50%);*/
/*    background: #1d1b14;*/
/*}*/

/*::-webkit-scrollbar-track {*/
/*    -webkit-box-shadow: inset 0 0 6px rgb(0 0 0 / 30%);*/
/*    background: #310f17;*/
/*}*/

::selection {
    color: #1d1b14;
    background: transparent;
}

@media (max-width: 1199px) {
    .server-load {
        left: 320px;
    }
}

@media (max-width: 991px) {
    #footer img {

    }

    .server-load {
        display: none;
    }

    .navbar-dark .navbar-nav .nav-link {
        font-size: 14px;
        padding: 10px;
    }

    .navbar-collapse {
        background: rgb(16 6 9/60%);
        z-index: 4;
    }

    .navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link.active {
        border-top: none;
    }

    .navbar-nav .dropdown-menu {
        position: relative;
        margin-top: 0;
        margin-left: 0;
    }

    .navbar-nav .dropdown-menu.show {
        left: 0;
    }
}

@media (max-width: 820px) {

    .header .logo {
        margin: 40% 0 0 0;
        max-width: 435px;
        visibility: hidden;

    }
}
@media (max-width: 767px) {
    #footer {
        text-align: initial;
    }

    .header .logo {
        max-width: 435px;

    }

    .servertime-block {
        top: 250px;
    }
}

@media (max-width: 575px) {
    .
    .bottom-bar {
        width: 100%;
        max-width: 100%;
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .bottom-bar .card.card-bgs .card-header, .bottom-bar .card.card-bgs .card-body, .bottom-bar .card.card-bgs .card-footer {
        width: 100%;
    }

    .bottom-bar .card.card-bgs {
        width: 100%;
        background-color: #110d0c;
    }

    .bottom-bar .card-bgs:before {
        background-size: cover !important;
        width: 100%;
    }
}

@media (max-width: 390px) {
    .header .download-block, .header .registration-block {
        width: 300px;
        background-size: contain;
        padding-left: 100px;
    }

    .header .server-bottom {
        padding: 20px 0 0 100px;
        height: 98px;
    }
}

