@font-face {
    font-family: FontBold;
    src: url(fonts/bold.otf);
}

@font-face {
    font-family: FontSemiBold;
    src: url(fonts/semibold.otf);
}

@font-face {
    font-family: FontBold;
    src: url(fonts/bold.otf);
}

@font-face {
    font-family: FontRegular;
    src: url(fonts/regular.otf);
}

@font-face {
    font-family: FontLight;
    src: url(fonts/light.otf);
}

@font-face {
    font-family: Molot;
    src: url(fonts/Molot.otf);
}

* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	
	background: #000;
}

#preloader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

#preloaderAnim {
  width: 160px;
  height: 160px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

#preloaderAnim.hidden {
	opacity: 0;
}

#preloader.loaded .sectionLeft {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
#preloader.loaded .sectionRight {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

#preloader.loadedHidden {
  visibility: hidden;
  pointer-events: none;
  display: none;
  z-index: -50;
}

.preloaderSection {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #020202;
  -webkit-transform: translate(0);
  transform: translate(0);
  -webkit-transition: -webkit-transform 2s ease;
  transition: -webkit-transform 2s ease;
  transition: transform 2s ease;
  transition: transform 2s ease,-webkit-transform 2s ease;
}

.sectionLeft {
  left: 0;
}
.sectionRight {
  right: 0;
}

#app {
  width: 100%;
  height: 100%;
}

#app.preloading {
  overflow: hidden;
}

::-moz-selection { /* Code for Firefox */
  color: #000;
  background: #0095c4;
}
::selection {
  color: #000;
  background: #0095c4;
}
.hoverDark *::-moz-selection { /* Code for Firefox */
  color: #FFF;
}
.hoverDark *::selection {
  color: #FFF;
}

#firstDiv {
    height: 100%;
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    background: #c0392b;
    /* Fallback for old browsers. */
    background: -webkit-linear-gradient(to right, #7d27c8, #fd0181);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #25b5a8, #ffb6d5);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.topBar {
    width: 100%;
    height: 66px;
    background-color: #000;
    position: fixed;
    z-index: 90;
}

.topBarImg {
    display: none;
    height: 50%;
    margin-left: 15px;
    margin-top: 17px;
    float: left;
}

.topBar-Get, .topBar-About, .topBar-Commands {
    float: right;
    line-height: 61px;
}

.topBar>a {
    font-family: FontBold;
    font-size: 28px;
    color: white;
    margin-left: 35px;
    line-height: 60px;
    margin-right: 25px;
}

.topBar-Get, .topBar-About, .topBar-Commands {
    height: 100%;
    padding-left: 22px;
    padding-right: 22px;
    font-family: FontSemiBold;
    color: white;
    font-size: 20px;
    text-align: center;
}

.topBar-Commands, .topBar-About {
    color: #fff;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: color 100ms linear;
    -moz-transition: color 100ms linear;
    -o-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}

.topBar-Commands:hover, .topBar-About:hover {
    background-color: #fff;
	color: #000;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: background-color 100ms linear;
    -moz-transition: background-color 100ms linear;
    -o-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
    -webkit-transition: color 100ms linear;
    -moz-transition: color 100ms linear;
    -o-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}

.topBar-Get {
    background-color: #fff;
    color: #000;
    cursor: pointer;
    cursor: hand;
    -webkit-transition: background-color 100ms linear;
    -moz-transition: background-color 100ms linear;
    -o-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
    -webkit-transition: color 100ms linear;
    -moz-transition: color 100ms linear;
    -o-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}

.topBar-Get:hover {
    background-color: #000;
    color: #fff;
    -webkit-transition: background-color 100ms linear;
    -moz-transition: background-color 100ms linear;
    -o-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
    -webkit-transition: color 100ms linear;
    -moz-transition: color 100ms linear;
    -o-transition: color 100ms linear;
    -ms-transition: color 100ms linear;
    transition: color 100ms linear;
}

.topBar-Commands {
    padding-left: 20px;
}

.banner {
    height: 55%;
    width: 55%;
    margin: 0 auto;
    margin-top: 104px;
}

.banner>img {
    max-width: 100%;
    max-height: 100%;
	pointer-events: none;
	-webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.quote {
    color: #000;
    font-size: 28px;
    font-family: FontBold;
    text-align: center;
    margin-top: 55px;
}

.stats {
    height: 95px;
    width: 485px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 50px;
    border-radius: 2px;
}

.stats>div {
    height: 100%;
    width: 33.3%;
    float: left;
    text-align: center;
    font-family: FontSemiBold;
    font-size: 28px;
    color: white;
}

.num {
    font-family: FontRegular;
}

.statsServers>div, .statsUsers>div, .statsChannels>div {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -5px;
    color: white;
}

.statsServersNum, .statsUsersNum, .statsChannelsNum {
    color: white;
}

.discordServerImg {
    right: 0;
    position: absolute;
    bottom: 0;
    margin-right: 10px;
    margin-bottom: 10px;
}

.firstDiv-Center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#commands {
    width: 100%;
    background: #000;
}

#commands>.tabela {
    max-width: 900px;
	padding: 0 60px 0 60px;
	width: auto;
    margin: 0 auto;
}

.tabela>.commandsTitle {
    text-align: center;
    font-family: FontBold;
    font-size: 28px;
    color: white;
    padding-top: 50px;
    padding-bottom: 20px;
}
.contactsTitle {
    text-align: center;
    font-family: FontBold;
    font-size: 28px;
    color: black;
    padding-top: 50px;
    padding-bottom: 20px;
}

table {
    border-collapse: collapse;
    margin: 12px;
    padding: 0;
    width: calc(100% - 24px);
    table-layout: fixed;
    font-family: FontRegular;
}

.tableOutline {
    margin-top: 20px;
    border: 4px #fff solid;
}
.noBottomBorder {
	border-bottom: 0;
}

table th {
    background-color: #0095c4;
    color: #fff;
    font-size: 15px;
}

table tr {
    padding: .35em;
    color: #fff;
	border-bottom: 1px rgba(255, 255, 255, 0.5) solid;
}

table td {
    padding: .625em;
	padding-bottom: .775em;
    text-align: center;
}

table th {
    font-size: .85em;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .625em;
	padding-bottom: .9125em;
    text-align: center;
}

a:link {
    color: #0095c4;
    text-decoration: none;
}

.quoteHelp {
    color: white;
    font-size: 20px;
    font-family: FontRegular;
    text-align: center;
    margin-top: 25px;
    padding-bottom: 45px;
}

#about {
    background: #FFF;
    width: 100%;
    text-align: center;
    font-family: FontRegular;
    font-size: 20px;
    color: white;
}

.aboutWrapper {
    max-width: 900px;
	padding: 0 60px 0 60px;
	width: auto;
    margin: 0 auto;
}

.aboutTitle {
    text-align: center;
    font-family: FontBold;
    font-size: 28px;
    color: black;
    padding-top: 50px;
    padding-bottom: 20px;
}

.aboutContent {
    padding-bottom: 50px;
	color: #666666;
}

footer {
    background-color: #111111;
    text-align: center;
    font-family: FontRegular;
    color: white;
    font-size: 14px;
}

footer>p {
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 900px;
	padding: 0 60px 0 60px;
	width: auto;
	margin-left: auto;
    margin-right: auto;
}

footer>p>span {
    color: #ffb6d5;
}

footer>p>br {
    line-height: 170%;
}

footer>p>a {
    color: #ffb6d5;
}

hr {
    border: 0;
    height: 1px;
    background: #333;
    background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

.serverA {
    color: #0095c4 !important;
    font-weight: bold;
}

.serverA:visited, .serverA:hover, .serverA:active {
    color: #0095c4;
}

#contacts {
    background: #000;
    width: 100%;
    text-align: center;
    font-family: FontRegular;
    font-size: 20px;
    color: white;
}

.dropbtn {
    color: white;
    font-family: FontRegular;
    font-size: 16px;
    cursor: pointer;
    background-color: inherit;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 25px;
}

.dropbtn-txt {
    margin-top: -3px;
}

.dropbtn-arrow {
    font-size: 10px;
    margin-top: 1px;
}

.dropbtn>img {
    margin-top: 1px;
    width: auto;
    height: 16px;
    margin-right: 10px;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    width: 160px;
}

.dropdown-content {
    display: none;
    position: absolute;
    z-index: 2;
    height: 200px;
    width: 175px;
    overflow: auto;
    margin-left: -15px;
}

.dropdown-content a {
    color: #000;
    font-family: FontRegular;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    list-style-type: none;
    margin-left: 15px;
    background-color: #f5f5f6;
    cursor: pointer;
}

.dropdown-content a img {
    height: 16px;
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.dropdown-content a:hover {
    background-color: #ececec;
}

.lang-dropdown:hover .dropdown-content {
    display: block;
}

.lang-name {
    vertical-align: bottom;
}

.ps>.ps__rail-x, .ps>.ps__rail-y {
    opacity: 0.6 !important;
}

@media screen and (max-width: 660px) {
    .pinkBg {
        background-color: #ffb6d5;
        color: white;
		border-bottom: 0;
    }

    table {
        border: 0;
    }

    table caption {
        font-size: 1.3em;
    }
    
    table thead {
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    table tr {
        display: block;
        margin-bottom: .625em;
        border: 0;
        padding: 0;
    }

    table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: right;
    }

    table td:before {
        content: attr(data-label);
        float: left;
        font-weight: bold;
        text-transform: uppercase;
    }

    table td:last-child {
        border-bottom: 0;
    }

    .banner {
        height: 85%;
        width: 85%;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .quote {
        font-size: 18px;
        font-family: FontBold;
        text-align: center;
        margin-top: -100px;
        margin-bottom: 20px;
    }

    .stats {
        height: 95px;
        width: 300px;
        background-color: #000;
        margin: 0 auto;
        border-radius: 10px;
    }

    .stats>div {
        height: 100%;
        width: 33.3%;
        float: left;
        text-align: center;
        font-family: FontBold;
        font-size: 20px;
        color: white;
    }

    .discordServerImg {
        display: none;
    }

    .footer {
        background-color: #1A1A1A;
        text-align: center;
        font-family: FontLight;
        color: white;
        font-size: 5px;
        font-weight: bold;
    }

    footer>p {
        font-size: 12px;
    }
}

@media screen and (max-width: 833px) {
    .topBar-About, .topBar-Commands {
        display: none;
    }
}

@media screen and (max-width: 566px) {
    .topBar-Title {
        display: none;
    }

    .topBarImg {
        display: flex;
    }
    
    .statsTitle {
        font-size: 17px;
    }
}

@media screen and (max-width: 362px) {
    .topBar-Get {
        font-size: 95%;
        padding-left: 13px;
        padding-right: 13px;
    }
}

@media screen and (max-width: 326px) {
    .topBar-Get {
        font-size: 85%;
        padding-left: 12px;
        padding-right: 12px;
    }
}